File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ libc_bitflags!(
53
53
MNT_FORCE ;
54
54
MNT_DETACH ;
55
55
MNT_EXPIRE ;
56
+ UMOUNT_NOFOLLOW ;
56
57
}
57
58
) ;
58
59
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ pub const EXT3_SUPER_MAGIC: FsType = FsType(libc::EXT3_SUPER_MAGIC as fs_type_t)
73
73
pub const EXT4_SUPER_MAGIC : FsType = FsType ( libc:: EXT4_SUPER_MAGIC as fs_type_t ) ;
74
74
#[ cfg( all( target_os = "linux" , not( target_env = "musl" ) ) ) ]
75
75
#[ allow( missing_docs) ]
76
+ pub const FUSE_SUPER_MAGIC : FsType = FsType ( libc:: FUSE_SUPER_MAGIC as fs_type_t ) ;
77
+ #[ cfg( all( target_os = "linux" , not( target_env = "musl" ) ) ) ]
78
+ #[ allow( missing_docs) ]
76
79
pub const HPFS_SUPER_MAGIC : FsType = FsType ( libc:: HPFS_SUPER_MAGIC as fs_type_t ) ;
77
80
#[ cfg( all( target_os = "linux" , not( target_env = "musl" ) ) ) ]
78
81
#[ allow( missing_docs) ]
You can’t perform that action at this time.
0 commit comments