summaryrefslogtreecommitdiffstats
path: root/fs/fuse/inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r--fs/fuse/inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 65c88379a3a1..7d67fc150edc 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -31,7 +31,7 @@ static struct kmem_cache *fuse_inode_cachep;
31struct list_head fuse_conn_list; 31struct list_head fuse_conn_list;
32DEFINE_MUTEX(fuse_mutex); 32DEFINE_MUTEX(fuse_mutex);
33 33
34static int set_global_limit(const char *val, struct kernel_param *kp); 34static int set_global_limit(const char *val, const struct kernel_param *kp);
35 35
36unsigned max_user_bgreq; 36unsigned max_user_bgreq;
37module_param_call(max_user_bgreq, set_global_limit, param_get_uint, 37module_param_call(max_user_bgreq, set_global_limit, param_get_uint,
@@ -823,7 +823,7 @@ static void sanitize_global_limit(unsigned *limit)
823 *limit = (1 << 16) - 1; 823 *limit = (1 << 16) - 1;
824} 824}
825 825
826static int set_global_limit(const char *val, struct kernel_param *kp) 826static int set_global_limit(const char *val, const struct kernel_param *kp)
827{ 827{
828 int rv; 828 int rv;
829 829