From: Djalal Harouni Date: Thu, 26 May 2016 20:38:25 +0000 (+0200) Subject: nspawn: a bench of special fileystems that should not be shifted X-Git-Tag: v231.3~121 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=43d2b2215658e538a238415c89dce37897e3fd35 nspawn: a bench of special fileystems that should not be shifted Add some special filesystems that should not be shifted, most of them relate to the host and not to containers. --- diff --git a/src/basic/missing.h b/src/basic/missing.h index 236ac3632..9cf0110b3 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -458,6 +458,18 @@ struct btrfs_ioctl_quota_ctl_args { #define MQUEUE_MAGIC 0x19800202 #endif +#ifndef SECURITYFS_MAGIC +#define SECURITYFS_MAGIC 0x73636673 +#endif + +#ifndef TRACEFS_MAGIC +#define TRACEFS_MAGIC 0x74726163 +#endif + +#ifndef BPF_FS_MAGIC +#define BPF_FS_MAGIC 0xcafe4a11 +#endif + #ifndef MS_MOVE #define MS_MOVE 8192 #endif