Add definitions for security related MAGIC

Signed-off-by: Kenta Tada <Kenta.Tada@sony.com>
This commit is contained in:
Kenta Tada 2021-03-02 18:36:02 +09:00
parent e313587f1e
commit 6be7fa8037
1 changed files with 4 additions and 0 deletions

View File

@ -800,7 +800,9 @@ cfg_if! {
pub const QNX6_SUPER_MAGIC: ::c_long = 0x68191122;
pub const RDTGROUP_SUPER_MAGIC: ::c_long = 0x7655821;
pub const REISERFS_SUPER_MAGIC: ::c_long = 0x52654973;
pub const SECURITYFS_MAGIC: ::c_long = 0x73636673;
pub const SELINUX_MAGIC: ::c_long = 0xf97cff8c;
pub const SMACK_MAGIC: ::c_long = 0x43415d53;
pub const SMB_SUPER_MAGIC: ::c_long = 0x0000517b;
pub const SYSFS_MAGIC: ::c_long = 0x62656572;
pub const TMPFS_MAGIC: ::c_long = 0x01021994;
@ -852,7 +854,9 @@ cfg_if! {
pub const QNX6_SUPER_MAGIC: ::c_uint = 0x68191122;
pub const RDTGROUP_SUPER_MAGIC: ::c_uint = 0x7655821;
pub const REISERFS_SUPER_MAGIC: ::c_uint = 0x52654973;
pub const SECURITYFS_MAGIC: ::c_uint = 0x73636673;
pub const SELINUX_MAGIC: ::c_uint = 0xf97cff8c;
pub const SMACK_MAGIC: ::c_uint = 0x43415d53;
pub const SMB_SUPER_MAGIC: ::c_uint = 0x0000517b;
pub const SYSFS_MAGIC: ::c_uint = 0x62656572;
pub const TMPFS_MAGIC: ::c_uint = 0x01021994;