diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-05-13 18:35:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-07-21 13:10:01 -0400 |
commit | 28dd1f346b2f0fc2ab8285046ed0bd91e9b808d3 (patch) | |
tree | 7c2a4337b103067684f0345283d19c8e8e62afb2 /security/smack | |
parent | 9924f6e89823a41bfd272ab759636276b9f9ee9c (diff) |
sysfs: Create mountpoints with sysfs_create_mount_point
commit f9bb48825a6b5d02f4cabcc78967c75db903dcdc upstream.
This allows for better documentation in the code and
it allows for a simpler and fully correct version of
fs_fully_visible to be written.
The mount points converted and their filesystems are:
/sys/hypervisor/s390/ s390_hypfs
/sys/kernel/config/ configfs
/sys/kernel/debug/ debugfs
/sys/firmware/efi/efivars/ efivarfs
/sys/fs/fuse/connections/ fusectl
/sys/fs/pstore/ pstore
/sys/kernel/tracing/ tracefs
/sys/fs/cgroup/ cgroup
/sys/kernel/security/ securityfs
/sys/fs/selinux/ selinuxfs
/sys/fs/smackfs/ smackfs
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'security/smack')
-rw-r--r-- | security/smack/smackfs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c index d9682985349e..ac4cac7c661a 100644 --- a/security/smack/smackfs.c +++ b/security/smack/smackfs.c | |||
@@ -2241,16 +2241,16 @@ static const struct file_operations smk_revoke_subj_ops = { | |||
2241 | .llseek = generic_file_llseek, | 2241 | .llseek = generic_file_llseek, |
2242 | }; | 2242 | }; |
2243 | 2243 | ||
2244 | static struct kset *smackfs_kset; | ||
2245 | /** | 2244 | /** |
2246 | * smk_init_sysfs - initialize /sys/fs/smackfs | 2245 | * smk_init_sysfs - initialize /sys/fs/smackfs |
2247 | * | 2246 | * |
2248 | */ | 2247 | */ |
2249 | static int smk_init_sysfs(void) | 2248 | static int smk_init_sysfs(void) |
2250 | { | 2249 | { |
2251 | smackfs_kset = kset_create_and_add("smackfs", NULL, fs_kobj); | 2250 | int err; |
2252 | if (!smackfs_kset) | 2251 | err = sysfs_create_mount_point(fs_kobj, "smackfs"); |
2253 | return -ENOMEM; | 2252 | if (err) |
2253 | return err; | ||
2254 | return 0; | 2254 | return 0; |
2255 | } | 2255 | } |
2256 | 2256 | ||