The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/3270
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Signed-off-by: Christian Brauner <[email protected]>
From 984b45e328656a944678e22fb2dc5771f248fc30 Mon Sep 17 00:00:00 2001 From: Christian Brauner <[email protected]> Date: Tue, 2 May 2017 22:43:20 +0200 Subject: [PATCH] storage utils: add MS_LAZYTIME to mount options Signed-off-by: Christian Brauner <[email protected]> --- lxd/storage_utils.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lxd/storage_utils.go b/lxd/storage_utils.go index a6db607..ef065e4 100644 --- a/lxd/storage_utils.go +++ b/lxd/storage_utils.go @@ -23,6 +23,7 @@ var MountOptions = map[string]mountOptions{ "diratime": {true, syscall.MS_NODIRATIME}, "dirsync": {false, syscall.MS_DIRSYNC}, "exec": {true, syscall.MS_NOEXEC}, + "lazytime": {false, syscall.MS_LAZYTIME}, "mand": {false, syscall.MS_MANDLOCK}, "noatime": {false, syscall.MS_NOATIME}, "nodev": {false, syscall.MS_NODEV},
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
