diff options
author | David Howells <dhowells@redhat.com> | 2019-03-25 19:38:23 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-05-26 01:00:03 +0300 |
commit | c80fa7c8301c10ad10d997b9e86b4aeac5923b3e (patch) | |
tree | 58155c6c51f1dc3be0746dc801297188cb257424 /include | |
parent | 7cdfa44227b0d8842d46a775cebe4311150cb8f2 (diff) | |
download | linux-c80fa7c8301c10ad10d997b9e86b4aeac5923b3e.tar.xz |
vfs: Provide sb->s_iflags settings in fs_context struct
Provide a field in the fs_context struct through which bits in the
sb->s_iflags superblock field can be set.
Signed-off-by: David Howells <dhowells@redhat.com>
cc: linux-fsdevel@vger.kernel.org
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fs_context.h b/include/linux/fs_context.h index 1f966670c8dc..c995b852ba40 100644 --- a/include/linux/fs_context.h +++ b/include/linux/fs_context.h @@ -103,6 +103,7 @@ struct fs_context { void *s_fs_info; /* Proposed s_fs_info */ unsigned int sb_flags; /* Proposed superblock flags (SB_*) */ unsigned int sb_flags_mask; /* Superblock flags that were changed */ + unsigned int s_iflags; /* OR'd with sb->s_iflags */ unsigned int lsm_flags; /* Information flags from the fs to the LSM */ enum fs_context_purpose purpose:8; enum fs_context_phase phase:8; /* The phase the context is in */ |