projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c316e3
)
nfs: Fix copy-and-paste error in debug message
author
Donald Buczek
<buczek@molgen.mpg.de>
Sun, 7 Jul 2019 19:26:07 +0000
(21:26 +0200)
committer
Trond Myklebust
<trond.myklebust@hammerspace.com>
Sat, 13 Jul 2019 15:48:41 +0000
(11:48 -0400)
The debug message of decode_attr_lease_time incorrectly
says "file size". Fix it to "lease time".
Signed-off-by: Donald Buczek <buczek@molgen.mpg.de>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
fs/nfs/nfs4xdr.c
patch
|
blob
|
history
diff --git
a/fs/nfs/nfs4xdr.c
b/fs/nfs/nfs4xdr.c
index d974ff3164ba2dbd0bda3916ee779c53e00a4260..620f8ff5684a0e522bcf653c78766b2f42140c43 100644
(file)
--- a/
fs/nfs/nfs4xdr.c
+++ b/
fs/nfs/nfs4xdr.c
@@
-3427,7
+3427,7
@@
static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint
*res = be32_to_cpup(p);
bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
}
- dprintk("%s:
file siz
e=%u\n", __func__, (unsigned int)*res);
+ dprintk("%s:
lease tim
e=%u\n", __func__, (unsigned int)*res);
return 0;
}