diff mbox series

[1/4] nfs: Fix copy-and-paste error in debug message

Message ID 20190227145130.22323-2-buczek@molgen.mpg.de (mailing list archive)
State New, archived
Headers show
Series nfs4.0: Refetch lease_time after clientID reset | expand

Commit Message

Donald Buczek Feb. 27, 2019, 2:51 p.m. UTC
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>
---
 fs/nfs/nfs4xdr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c
index 2fc8f6fa25e4..34adaa899a8c 100644
--- a/fs/nfs/nfs4xdr.c
+++ b/fs/nfs/nfs4xdr.c
@@ -3471,7 +3471,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;
 out_overflow:
 	print_overflow_msg(__func__, xdr);