From: Sage Weil Date: Thu, 19 Jun 2008 22:18:46 +0000 (-0700) Subject: kclient: be less noisy about dn splicing X-Git-Tag: v0.3~60 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6840401461783426586955c666282e0c10fa6a05;p=ceph.git kclient: be less noisy about dn splicing --- diff --git a/src/kernel/inode.c b/src/kernel/inode.c index 003051edd3c8..9dfb922d8c53 100644 --- a/src/kernel/inode.c +++ b/src/kernel/inode.c @@ -809,7 +809,7 @@ int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req, } realdn = d_materialise_unique(dn, in); if (realdn) { - derr(10, "dn %p (%d) spliced with %p (%d) " + dout(10, "dn %p (%d) spliced with %p (%d) " "inode %p ino %llx\n", dn, atomic_read(&dn->d_count), realdn, atomic_read(&realdn->d_count), @@ -927,9 +927,12 @@ retry_lookup: } new = d_materialise_unique(dn, in); if (new) { - derr(10, "dn %p spliced with %p inode %p " - "ino %llx\n", dn, new, new->d_inode, - ceph_ino(new->d_inode)); + dout(10, "dn %p (%d) spliced with %p (%d) " + "inode %p ino %llx\n", + dn, atomic_read(&dn->d_count), + new, atomic_read(&new->d_count), + new->d_inode, + ceph_ino(realdn->d_inode)); dput(dn); dn = new; ceph_init_dentry(dn);