diff options
author | Andy Adamson <andros@netapp.com> | 2011-01-25 15:38:03 +0000 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2011-01-25 15:26:51 -0500 |
commit | b2a2897dc4a59684321de425652061c62a0569d0 (patch) | |
tree | c82399ed3ba4177b68b4606667c63fcf2fe52a4b /fs/nfs | |
parent | 2c4cdf8f6d3cfb48036400952329555099c8c92c (diff) | |
download | linux-3.10-b2a2897dc4a59684321de425652061c62a0569d0.tar.gz linux-3.10-b2a2897dc4a59684321de425652061c62a0569d0.tar.bz2 linux-3.10-b2a2897dc4a59684321de425652061c62a0569d0.zip |
NFS improve pnfs_put_deviceid_cache debug print
What we really want to know is the ref count.
Signed-off-by: Andy Adamson <andros@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/pnfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c index bc408976973..1b1bc1a0fb0 100644 --- a/fs/nfs/pnfs.c +++ b/fs/nfs/pnfs.c @@ -951,7 +951,7 @@ pnfs_put_deviceid_cache(struct nfs_client *clp) { struct pnfs_deviceid_cache *local = clp->cl_devid_cache; - dprintk("--> %s cl_devid_cache %p\n", __func__, clp->cl_devid_cache); + dprintk("--> %s ({%d})\n", __func__, atomic_read(&local->dc_ref)); if (atomic_dec_and_lock(&local->dc_ref, &clp->cl_lock)) { int i; /* Verify cache is empty */ |