diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-03-11 18:05:42 +0400 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2013-03-11 18:09:48 +0400 |
commit | 3e64fe5b21852375f2f53e7244ba697f1fee2fcf (patch) | |
tree | 43c3cd480c7ed68aaf431980995a30f1f44ee637 /fs/cifs | |
parent | f6161aa153581da4a3867a2d1a7caf4be19b6ec9 (diff) | |
download | linux-3e64fe5b21852375f2f53e7244ba697f1fee2fcf.tar.xz |
fs: Limit sys_mount to only request filesystem modules. (Part 3)
Somehow I failed to add the MODULE_ALIAS_FS for cifs, hostfs, hpfs,
squashfs, and udf despite what I thought were my careful checks :(
Add them now.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifsfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 1a052c0eee8e..3cf8a15af916 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -777,6 +777,7 @@ struct file_system_type cifs_fs_type = { .kill_sb = cifs_kill_sb, /* .fs_flags */ }; +MODULE_ALIAS_FS("cifs"); const struct inode_operations cifs_dir_inode_ops = { .create = cifs_create, .atomic_open = cifs_atomic_open, |