diff options
author | Eric Paris <eparis@redhat.com> | 2010-04-07 15:14:33 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-04-11 22:18:30 -0400 |
commit | 82dab10453d65ad9ca551de5b8925673ca05c7e9 (patch) | |
tree | 942bf24adb67b534fa3080dbbfa1ffe33b7c16bd /security | |
parent | 4b61d12c84293ac061909f27f567c1905e4d90e3 (diff) |
security: remove dead hook sb_post_remount
Unused hook. Remove.
Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/capability.c | 6 | ||||
-rw-r--r-- | security/security.c | 5 |
2 files changed, 0 insertions, 11 deletions
diff --git a/security/capability.c b/security/capability.c index 476d43030906..26fc92caa339 100644 --- a/security/capability.c +++ b/security/capability.c | |||
@@ -85,11 +85,6 @@ static int cap_sb_umount(struct vfsmount *mnt, int flags) | |||
85 | return 0; | 85 | return 0; |
86 | } | 86 | } |
87 | 87 | ||
88 | static void cap_sb_post_remount(struct vfsmount *mnt, unsigned long flags, | ||
89 | void *data) | ||
90 | { | ||
91 | } | ||
92 | |||
93 | static void cap_sb_post_addmount(struct vfsmount *mnt, struct path *path) | 88 | static void cap_sb_post_addmount(struct vfsmount *mnt, struct path *path) |
94 | { | 89 | { |
95 | } | 90 | } |
@@ -929,7 +924,6 @@ void security_fixup_ops(struct security_operations *ops) | |||
929 | set_to_cap_if_null(ops, sb_statfs); | 924 | set_to_cap_if_null(ops, sb_statfs); |
930 | set_to_cap_if_null(ops, sb_mount); | 925 | set_to_cap_if_null(ops, sb_mount); |
931 | set_to_cap_if_null(ops, sb_umount); | 926 | set_to_cap_if_null(ops, sb_umount); |
932 | set_to_cap_if_null(ops, sb_post_remount); | ||
933 | set_to_cap_if_null(ops, sb_post_addmount); | 927 | set_to_cap_if_null(ops, sb_post_addmount); |
934 | set_to_cap_if_null(ops, sb_pivotroot); | 928 | set_to_cap_if_null(ops, sb_pivotroot); |
935 | set_to_cap_if_null(ops, sb_post_pivotroot); | 929 | set_to_cap_if_null(ops, sb_post_pivotroot); |
diff --git a/security/security.c b/security/security.c index c1341fbe98ca..d9538d98736b 100644 --- a/security/security.c +++ b/security/security.c | |||
@@ -311,11 +311,6 @@ int security_sb_umount(struct vfsmount *mnt, int flags) | |||
311 | return security_ops->sb_umount(mnt, flags); | 311 | return security_ops->sb_umount(mnt, flags); |
312 | } | 312 | } |
313 | 313 | ||
314 | void security_sb_post_remount(struct vfsmount *mnt, unsigned long flags, void *data) | ||
315 | { | ||
316 | security_ops->sb_post_remount(mnt, flags, data); | ||
317 | } | ||
318 | |||
319 | void security_sb_post_addmount(struct vfsmount *mnt, struct path *mountpoint) | 314 | void security_sb_post_addmount(struct vfsmount *mnt, struct path *mountpoint) |
320 | { | 315 | { |
321 | security_ops->sb_post_addmount(mnt, mountpoint); | 316 | security_ops->sb_post_addmount(mnt, mountpoint); |