This is a note to let you know that I've just added the patch titled
VFS: Handle lazytime in do_mount()
to the 4.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git%3Ba=su...
The filename of the patch is: vfs-handle-lazytime-in-do_mount.patch and it can be found in the queue-4.14 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree, please let stable@vger.kernel.org know about it.
From d7ee946942bdd12394809305e3df05aa4c8b7b8f Mon Sep 17 00:00:00 2001
From: Markus Trippelsdorf markus@trippelsdorf.de Date: Wed, 11 Oct 2017 07:01:31 +0200 Subject: VFS: Handle lazytime in do_mount()
From: Markus Trippelsdorf markus@trippelsdorf.de
commit d7ee946942bdd12394809305e3df05aa4c8b7b8f upstream.
Since commit e462ec50cb5fa ("VFS: Differentiate mount flags (MS_*) from internal superblock flags") the lazytime mount option doesn't get passed on anymore.
Fix the issue by handling the option in do_mount().
Reviewed-by: Lukas Czerner lczerner@redhat.com Signed-off-by: Markus Trippelsdorf markus@trippelsdorf.de Signed-off-by: Al Viro viro@zeniv.linux.org.uk Cc: Holger Hoffstätte holger@applied-asynchrony.com Signed-off-by: Greg Kroah-Hartman gregkh@linuxfoundation.org
--- fs/namespace.c | 1 + 1 file changed, 1 insertion(+)
--- a/fs/namespace.c +++ b/fs/namespace.c @@ -2826,6 +2826,7 @@ long do_mount(const char *dev_name, cons SB_DIRSYNC | SB_SILENT | SB_POSIXACL | + SB_LAZYTIME | SB_I_VERSION);
if (flags & MS_REMOUNT)
Patches currently in stable-queue which might be from markus@trippelsdorf.de are
queue-4.14/vfs-handle-lazytime-in-do_mount.patch
linux-stable-mirror@lists.linaro.org