File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ pub const SMB_SUPER_MAGIC: FsType = FsType(libc::SMB_SUPER_MAGIC);
83
83
pub const TMPFS_MAGIC : FsType = FsType ( libc:: TMPFS_MAGIC ) ;
84
84
#[ cfg( all( target_os = "linux" , not( target_env = "musl" ) , not( target_arch = "s390x" ) ) ) ]
85
85
pub const USBDEVICE_SUPER_MAGIC : FsType = FsType ( libc:: USBDEVICE_SUPER_MAGIC ) ;
86
+ #[ cfg( all( target_os = "linux" , not( target_env = "musl" ) , not( target_arch = "s390x" ) ) ) ]
87
+ pub const CGROUP_SUPER_MAGIC : FsType = FsType ( libc:: CGROUP_SUPER_MAGIC ) ;
88
+ #[ cfg( all( target_os = "linux" , not( target_env = "musl" ) , not( target_arch = "s390x" ) ) ) ]
89
+ pub const CGROUP2_SUPER_MAGIC : FsType = FsType ( libc:: CGROUP2_SUPER_MAGIC ) ;
86
90
87
91
impl Statfs {
88
92
/// Magic code defining system type
You can’t perform that action at this time.
0 commit comments