diff options
author | Djalal Harouni <tixxdz@opendz.org> | 2016-05-26 22:38:25 +0200 |
---|---|---|
committer | Djalal Harouni <tixxdz@opendz.org> | 2016-05-26 22:38:25 +0200 |
commit | 87c05f365d0f11e7207e9ff03a50e5988e1af5ce (patch) | |
tree | bc4e83ae3f39b54e2e1c20e93ea9c8f21bb805d9 /src/basic/missing.h | |
parent | acc0269cad31d1aaef2034a055b34c07c88a353d (diff) |
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.
Diffstat (limited to 'src/basic/missing.h')
-rw-r--r-- | src/basic/missing.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/basic/missing.h b/src/basic/missing.h index 651e414395..2077ada72d 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -453,6 +453,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 |