diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2015-03-22 15:16:40 +0100 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2015-03-26 02:13:02 +0100 |
commit | 853695230e9847445ad42c330d023fca2324fd56 (patch) | |
tree | 5030d5702a9a8dae995146ca408d88ab8ae786de /fs/nfsd/blocklayout.c | |
parent | nfsd: return correct lockowner when there is a race on hash insert (diff) | |
download | linux-853695230e9847445ad42c330d023fca2324fd56.tar.xz linux-853695230e9847445ad42c330d023fca2324fd56.zip |
NFSD: Printk blocklayout length and offset as format 0x%llx
When testing pnfs with nfsd_debug on, nfsd print a negative number
of layout length and foff in nfsd4_block_proc_layoutget as,
"GET: -xxxx:-xxx 2"
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/blocklayout.c')
-rw-r--r-- | fs/nfsd/blocklayout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/blocklayout.c b/fs/nfsd/blocklayout.c index cdbc78c72542..03d647bf195d 100644 --- a/fs/nfsd/blocklayout.c +++ b/fs/nfsd/blocklayout.c @@ -137,7 +137,7 @@ nfsd4_block_proc_layoutget(struct inode *inode, const struct svc_fh *fhp, seg->offset = iomap.offset; seg->length = iomap.length; - dprintk("GET: %lld:%lld %d\n", bex->foff, bex->len, bex->es); + dprintk("GET: 0x%llx:0x%llx %d\n", bex->foff, bex->len, bex->es); return 0; out_error: |