aboutsummaryrefslogtreecommitdiffstats
path: root/security/security.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2018-12-01 23:06:57 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2018-12-21 11:45:41 -0500
commitc039bc3c2498724946304a8f964244a9b6af1043 (patch)
treece98ee8e698a28cbaed969460457941e8b34f2e3 /security/security.c
parent6be8750b4cba8c37170f46b29841d112f1be749b (diff)
LSM: lift extracting and parsing LSM options into the caller of ->sb_remount()
This paves the way for retaining the LSM options from a common filesystem mount context during a mount parameter parsing phase to be instituted prior to actual mount/reconfiguration actions. Reviewed-by: David Howells <dhowells@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security/security.c')
-rw-r--r--security/security.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/security/security.c b/security/security.c
index b5fc8e1e849c..3f50beb30fb1 100644
--- a/security/security.c
+++ b/security/security.c
@@ -390,9 +390,10 @@ int security_sb_copy_data(char *orig, char *copy)
390} 390}
391EXPORT_SYMBOL(security_sb_copy_data); 391EXPORT_SYMBOL(security_sb_copy_data);
392 392
393int security_sb_remount(struct super_block *sb, void *data) 393int security_sb_remount(struct super_block *sb,
394 struct security_mnt_opts *opts)
394{ 395{
395 return call_int_hook(sb_remount, 0, sb, data); 396 return call_int_hook(sb_remount, 0, sb, opts);
396} 397}
397 398
398int security_sb_kern_mount(struct super_block *sb, int flags, 399int security_sb_kern_mount(struct super_block *sb, int flags,