File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
src/unix/linux_like/linux/gnu Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -3182,6 +3182,9 @@ fn test_linux(target: &str) {
3182
3182
// headers conflicts with linux/pidfd.h
3183
3183
"PIDFD_NONBLOCK" => true ,
3184
3184
3185
+ // is a private value for kernel usage normally
3186
+ "FUSE_SUPER_MAGIC" => true ,
3187
+
3185
3188
_ => false ,
3186
3189
}
3187
3190
} ) ;
Original file line number Diff line number Diff line change @@ -867,6 +867,7 @@ cfg_if! {
867
867
pub const EXT3_SUPER_MAGIC : :: c_long = 0x0000ef53 ;
868
868
pub const EXT4_SUPER_MAGIC : :: c_long = 0x0000ef53 ;
869
869
pub const F2FS_SUPER_MAGIC : :: c_long = 0xf2f52010 ;
870
+ pub const FUSE_SUPER_MAGIC : :: c_long = 0x65735546 ;
870
871
pub const FUTEXFS_SUPER_MAGIC : :: c_long = 0xbad1dea ;
871
872
pub const HOSTFS_SUPER_MAGIC : :: c_long = 0x00c0ffee ;
872
873
pub const HPFS_SUPER_MAGIC : :: c_long = 0xf995e849 ;
@@ -921,6 +922,7 @@ cfg_if! {
921
922
pub const EXT3_SUPER_MAGIC : :: c_uint = 0x0000ef53 ;
922
923
pub const EXT4_SUPER_MAGIC : :: c_uint = 0x0000ef53 ;
923
924
pub const F2FS_SUPER_MAGIC : :: c_uint = 0xf2f52010 ;
925
+ pub const FUSE_SUPER_MAGIC : :: c_uint = 0x65735546 ;
924
926
pub const FUTEXFS_SUPER_MAGIC : :: c_uint = 0xbad1dea ;
925
927
pub const HOSTFS_SUPER_MAGIC : :: c_uint = 0x00c0ffee ;
926
928
pub const HPFS_SUPER_MAGIC : :: c_uint = 0xf995e849 ;
You can’t perform that action at this time.
0 commit comments