diff options
author | Eric Paris <eparis@redhat.com> | 2009-05-18 10:26:10 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-05-19 08:19:00 +1000 |
commit | 75834fc3b6fcff00327f5d2a18760c1e8e0179c5 (patch) | |
tree | 28b1085d2aa76517024709d2f077fdc41aeec4c2 /include/linux/magic.h | |
parent | c3d20103d08e5c0b6738fbd0acf3ca004e5356c5 (diff) | |
download | op-kernel-dev-75834fc3b6fcff00327f5d2a18760c1e8e0179c5.zip op-kernel-dev-75834fc3b6fcff00327f5d2a18760c1e8e0179c5.tar.gz |
SELinux: move SELINUX_MAGIC into magic.h
The selinuxfs superblock magic is used inside the IMA code, but is being
defined in two places and could someday get out of sync. This patch moves the
declaration into magic.h so it is only done once.
Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'include/linux/magic.h')
-rw-r--r-- | include/linux/magic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/magic.h b/include/linux/magic.h index 5b4e28b..927138c 100644 --- a/include/linux/magic.h +++ b/include/linux/magic.h @@ -9,6 +9,7 @@ #define DEBUGFS_MAGIC 0x64626720 #define SYSFS_MAGIC 0x62656572 #define SECURITYFS_MAGIC 0x73636673 +#define SELINUX_MAGIC 0xf97cff8c #define TMPFS_MAGIC 0x01021994 #define SQUASHFS_MAGIC 0x73717368 #define EFS_SUPER_MAGIC 0x414A53 |