diff --git a/fs/ntfs/sysctl.c b/fs/ntfs/sysctl.c index aa4a821a117b..8c5c1b7cd483 100644 --- a/fs/ntfs/sysctl.c +++ b/fs/ntfs/sysctl.c @@ -27,7 +27,6 @@ static const struct ctl_table ntfs_sysctls[] = { .mode = 0644, /* Mode, proc handler. */ .proc_handler = proc_dointvec }, - {} }; /* Storage for the sysctls header. */ @@ -42,7 +41,7 @@ static struct ctl_table_header *sysctls_root_table; int ntfs_sysctl(int add) { if (add) { - sysctls_root_table = register_sysctl("fs", ntfs_sysctls); + sysctls_root_table = register_sysctl("fs/ntfs", ntfs_sysctls); if (!sysctls_root_table) return -ENOMEM; } else {