diff options
author | Donald Buczek <buczek@molgen.mpg.de> | 2019-07-07 15:26:07 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-07-13 11:48:41 -0400 |
commit | 2eaf426debdce566df9302b218307483903ac534 (patch) | |
tree | 48d30fb8e55b0504310387e39fb1de106619d30a | |
parent | 1c316e39a03af7b3e397f45d65fe00653996c467 (diff) |
nfs: Fix copy-and-paste error in debug message
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>
-rw-r--r-- | fs/nfs/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index d974ff3164ba..620f8ff5684a 100644 --- 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 | |||
3427 | *res = be32_to_cpup(p); | 3427 | *res = be32_to_cpup(p); |
3428 | bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME; | 3428 | bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME; |
3429 | } | 3429 | } |
3430 | dprintk("%s: file size=%u\n", __func__, (unsigned int)*res); | 3430 | dprintk("%s: lease time=%u\n", __func__, (unsigned int)*res); |
3431 | return 0; | 3431 | return 0; |
3432 | } | 3432 | } |
3433 | 3433 | ||