From: Donald Buczek Date: Sun, 7 Jul 2019 19:26:07 +0000 (+0200) Subject: nfs: Fix copy-and-paste error in debug message X-Git-Tag: v5.4-rc1~511^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2eaf426debdce566df9302b218307483903ac534;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index d974ff3..620f8ff 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 *res = be32_to_cpup(p); bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME; } - dprintk("%s: file size=%u\n", __func__, (unsigned int)*res); + dprintk("%s: lease time=%u\n", __func__, (unsigned int)*res); return 0; }