lkml.org 
[lkml]   [2017]   [Jun]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] VFS: Differentiate mount flags (MS_*) from internal superblock flags
From
Date
On Fri, 2017-06-09 at 16:01 +0100, David Howells wrote:
> Differentiate the MS_* flags passed to mount(2) from the internal flags set
> in the super_block's s_flags. s_flags are now called SB_*, with the names
> and the values for the moment mirroring the MS_* flags that they're
> equivalent to.
>
> Note that this shows up some interesting issues:
>
> (1) Some MS_* flags get translated to MNT_* flags (such as MS_NODEV ->
> MNT_NODEV) without passing this on to the filesystem, but some
> filesystems set such flags anyway.
>

I guess you mean stuff like affs_fill_super which does:

sb->s_flags |= MS_NODEV | MS_NOSUID;

It seems like it's doing that too late to be useful.

That probably just reflects the fact that it's not very clear how to use
those flags. Probably the right thing is to go over them one by one and
clean up their usage.

> (2) The ->remount_fs() methods of some filesystems adjust the *flags
> argument by setting MS_* flags in it, such as MS_NOATIME - but these
> flags are then scrubbed by do_remount_sb() (only the occupants of
> MS_RMT_MASK are permitted: MS_RDONLY, MS_SYNCHRONOUS, MS_MANDLOCK,
> MS_I_VERSION and MS_LAZYTIME)
>
> I'm not sure what's the best way to solve all these cases.
>

...not sure on this one either.

This is a big patch, but I like this. It seems like a good conceptual
change to separate the external mount() API flags from the internal
implementation. That allows us to make changes to the internal flag
representation in the future without affecting the external API.

Acked-by: Jeff Layton <jlayton@redhat.com>

\
 
 \ /
  Last update: 2017-06-12 01:50    [W:0.082 / U:1.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site