diff options
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r-- | fs/fuse/inode.c | 4 |
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; | |||
31 | struct list_head fuse_conn_list; | 31 | struct list_head fuse_conn_list; |
32 | DEFINE_MUTEX(fuse_mutex); | 32 | DEFINE_MUTEX(fuse_mutex); |
33 | 33 | ||
34 | static int set_global_limit(const char *val, struct kernel_param *kp); | 34 | static int set_global_limit(const char *val, const struct kernel_param *kp); |
35 | 35 | ||
36 | unsigned max_user_bgreq; | 36 | unsigned max_user_bgreq; |
37 | module_param_call(max_user_bgreq, set_global_limit, param_get_uint, | 37 | module_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 | ||
826 | static int set_global_limit(const char *val, struct kernel_param *kp) | 826 | static int set_global_limit(const char *val, const struct kernel_param *kp) |
827 | { | 827 | { |
828 | int rv; | 828 | int rv; |
829 | 829 | ||