summaryrefslogtreecommitdiffstats
path: root/net/sunrpc/cache.c
diff options
context:
space:
mode:
authorYanchuan Nian2013-01-04 12:45:35 +0100
committerJ. Bruce Fields2013-01-24 00:17:38 +0100
commitec1686761753ead775e9474a6265323a4c555bc6 (patch)
treed06029ef918aa6e63a9320e3b923819d150f595a /net/sunrpc/cache.c
parentnfsd: Don't unlock the state while it's not locked (diff)
downloadkernel-qcow2-linux-ec1686761753ead775e9474a6265323a4c555bc6.tar.gz
kernel-qcow2-linux-ec1686761753ead775e9474a6265323a4c555bc6.tar.xz
kernel-qcow2-linux-ec1686761753ead775e9474a6265323a4c555bc6.zip
nfsd: Remove write permission from file content
The write function doesn't be implemented in file content, and it's meaningless to write data into this file directly. Remove write permission from it. Signed-off-by: Yanchuan Nian <ycnian@gmail.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/cache.c')
-rw-r--r--net/sunrpc/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c
index 9afa4393c217..9f8470353362 100644
--- a/net/sunrpc/cache.c
+++ b/net/sunrpc/cache.c
@@ -1614,7 +1614,7 @@ static int create_cache_proc_entries(struct cache_detail *cd, struct net *net)
goto out_nomem;
}
if (cd->cache_show) {
- p = proc_create_data("content", S_IFREG|S_IRUSR|S_IWUSR,
+ p = proc_create_data("content", S_IFREG|S_IRUSR,
cd->u.procfs.proc_ent,
&content_file_operations_procfs, cd);
cd->u.procfs.content_ent = p;