From: Stéphane Graber Date: Wed, 3 Jun 2015 21:08:11 +0000 (-0400) Subject: Define MS_RELATIME for Android X-Git-Tag: lxc-1.1.3~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f95eee653f26bd57332a1eddb0adbd1845e2f07;p=thirdparty%2Flxc.git Define MS_RELATIME for Android Signed-off-by: Stéphane Graber --- diff --git a/src/lxc/cgfs.c b/src/lxc/cgfs.c index fcb3cde15..dd156afd3 100644 --- a/src/lxc/cgfs.c +++ b/src/lxc/cgfs.c @@ -55,6 +55,10 @@ #include #endif +#ifndef MS_RELATIME +#define MS_RELATIME (1<<21) +#endif + struct cgroup_hierarchy; struct cgroup_meta_data; struct cgroup_mount_point;