| From 9b00c64318cc337846a7a08a5678f5f19aeff188 Mon Sep 17 00:00:00 2001 |
| From: Patrick J. LoPresti <lopresti@gmail.com> |
| Date: Tue, 10 Aug 2010 17:28:01 -0400 |
| Subject: nfs: Add "lookupcache" to displayed mount options |
| |
| From: Patrick J. LoPresti <lopresti@gmail.com> |
| |
| commit 9b00c64318cc337846a7a08a5678f5f19aeff188 upstream. |
| |
| Running "cat /proc/mounts" fails to display the "lookupcache" option. |
| This oversight cost me a bunch of wasted time recently. |
| |
| The following simple patch fixes it. |
| |
| Signed-off-by: Patrick LoPresti <lopresti@gmail.com> |
| Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> |
| Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> |
| |
| --- |
| fs/nfs/super.c | 7 +++++++ |
| 1 file changed, 7 insertions(+) |
| |
| --- a/fs/nfs/super.c |
| +++ b/fs/nfs/super.c |
| @@ -648,6 +648,13 @@ static void nfs_show_mount_options(struc |
| |
| if (nfss->options & NFS_OPTION_FSCACHE) |
| seq_printf(m, ",fsc"); |
| + |
| + if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) { |
| + if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONE) |
| + seq_printf(m, ",lookupcache=none"); |
| + else |
| + seq_printf(m, ",lookupcache=pos"); |
| + } |
| } |
| |
| /* |