aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inotify.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/inotify.c')
-rw-r--r--fs/inotify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/inotify.c b/fs/inotify.c
index cdfff9067149..a8a714e48140 100644
--- a/fs/inotify.c
+++ b/fs/inotify.c
@@ -1032,7 +1032,7 @@ static int __init inotify_setup(void)
1032 panic("inotify: register_filesystem returned %d!\n", ret); 1032 panic("inotify: register_filesystem returned %d!\n", ret);
1033 1033
1034 inotify_mnt = kern_mount(&inotify_fs_type); 1034 inotify_mnt = kern_mount(&inotify_fs_type);
1035 if (unlikely(PTR_ERR(inotify_mnt))) 1035 if (IS_ERR(inotify_mnt))
1036 panic("inotify: kern_mount ret %ld!\n", PTR_ERR(inotify_mnt)); 1036 panic("inotify: kern_mount ret %ld!\n", PTR_ERR(inotify_mnt));
1037 1037
1038 inotify_max_queued_events = 16384; 1038 inotify_max_queued_events = 16384;