summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorOndrej Mosnacek <omosnace@redhat.com>2023-03-16 14:07:51 +0100
committerChristian Brauner (Microsoft) <brauner@kernel.org>2023-03-16 14:38:28 +0100
commit4e04143c869c5b6d499fbd5083caa860d5c942c3 (patch)
tree06538ecff81c10028e723c7f8a8cd122d3c4b8c1 /Documentation
parent74e60b8b2f0fe3702710e648a31725ee8224dbdf (diff)
downloadlwn-4e04143c869c5b6d499fbd5083caa860d5c942c3.tar.gz
lwn-4e04143c869c5b6d499fbd5083caa860d5c942c3.zip
fs_context: drop the unused lsm_flags member
This isn't ever used by VFS now, and it couldn't even work. Any FS that uses the SECURITY_LSM_NATIVE_LABELS flag needs to also process the value returned back from the LSM, so it needs to do its security_sb_set_mnt_opts() call on its own anyway. Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com> Signed-off-by: Christian Brauner (Microsoft) <brauner@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/filesystems/mount_api.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/Documentation/filesystems/mount_api.rst b/Documentation/filesystems/mount_api.rst
index 63204d2094fd..9aaf6ef75eb5 100644
--- a/Documentation/filesystems/mount_api.rst
+++ b/Documentation/filesystems/mount_api.rst
@@ -79,7 +79,6 @@ context. This is represented by the fs_context structure::
unsigned int sb_flags;
unsigned int sb_flags_mask;
unsigned int s_iflags;
- unsigned int lsm_flags;
enum fs_context_purpose purpose:8;
...
};