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) {
31823182 // headers conflicts with linux/pidfd.h
31833183 "PIDFD_NONBLOCK" => true ,
31843184
3185+ // is a private value for kernel usage normally
3186+ "FUSE_SUPER_MAGIC" => true ,
3187+
31853188 _ => false ,
31863189 }
31873190 } ) ;
Original file line number Diff line number Diff line change @@ -867,6 +867,7 @@ cfg_if! {
867867 pub const EXT3_SUPER_MAGIC : :: c_long = 0x0000ef53 ;
868868 pub const EXT4_SUPER_MAGIC : :: c_long = 0x0000ef53 ;
869869 pub const F2FS_SUPER_MAGIC : :: c_long = 0xf2f52010 ;
870+ pub const FUSE_SUPER_MAGIC : :: c_long = 0x65735546 ;
870871 pub const FUTEXFS_SUPER_MAGIC : :: c_long = 0xbad1dea ;
871872 pub const HOSTFS_SUPER_MAGIC : :: c_long = 0x00c0ffee ;
872873 pub const HPFS_SUPER_MAGIC : :: c_long = 0xf995e849 ;
@@ -921,6 +922,7 @@ cfg_if! {
921922 pub const EXT3_SUPER_MAGIC : :: c_uint = 0x0000ef53 ;
922923 pub const EXT4_SUPER_MAGIC : :: c_uint = 0x0000ef53 ;
923924 pub const F2FS_SUPER_MAGIC : :: c_uint = 0xf2f52010 ;
925+ pub const FUSE_SUPER_MAGIC : :: c_uint = 0x65735546 ;
924926 pub const FUTEXFS_SUPER_MAGIC : :: c_uint = 0xbad1dea ;
925927 pub const HOSTFS_SUPER_MAGIC : :: c_uint = 0x00c0ffee ;
926928 pub const HPFS_SUPER_MAGIC : :: c_uint = 0xf995e849 ;
You can’t perform that action at this time.
0 commit comments