File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -807,7 +807,10 @@ IN_CREATE
807
807
IN_DELETE
808
808
IN_DELETE_SELF
809
809
IN_DONT_FOLLOW
810
+ IN_EXCL_UNLINK
810
811
IN_IGNORED
812
+ IN_MASK_CREATE
813
+ IN_MASK_ADD
811
814
IN_ISDIR
812
815
IN_MODIFY
813
816
IN_MOVE
Original file line number Diff line number Diff line change @@ -909,7 +909,10 @@ IN_CREATE
909
909
IN_DELETE
910
910
IN_DELETE_SELF
911
911
IN_DONT_FOLLOW
912
+ IN_EXCL_UNLINK
912
913
IN_IGNORED
914
+ IN_MASK_CREATE
915
+ IN_MASK_ADD
913
916
IN_ISDIR
914
917
IN_MODIFY
915
918
IN_MOVE
Original file line number Diff line number Diff line change @@ -2615,10 +2615,10 @@ pub const IN_Q_OVERFLOW: u32 = 0x0000_4000;
2615
2615
pub const IN_IGNORED : u32 = 0x0000_8000 ;
2616
2616
pub const IN_ONLYDIR : u32 = 0x0100_0000 ;
2617
2617
pub const IN_DONT_FOLLOW : u32 = 0x0200_0000 ;
2618
- // pub const IN_EXCL_UNLINK: u32 = 0x0400_0000;
2618
+ pub const IN_EXCL_UNLINK : u32 = 0x0400_0000 ;
2619
2619
2620
- // pub const IN_MASK_CREATE: u32 = 0x1000_0000;
2621
- // pub const IN_MASK_ADD: u32 = 0x2000_0000;
2620
+ pub const IN_MASK_CREATE : u32 = 0x1000_0000 ;
2621
+ pub const IN_MASK_ADD : u32 = 0x2000_0000 ;
2622
2622
pub const IN_ISDIR : u32 = 0x4000_0000 ;
2623
2623
pub const IN_ONESHOT : u32 = 0x8000_0000 ;
2624
2624
Original file line number Diff line number Diff line change @@ -3061,7 +3061,7 @@ pub const IN_Q_OVERFLOW: u32 = 0x0000_4000;
3061
3061
pub const IN_IGNORED : u32 = 0x0000_8000 ;
3062
3062
pub const IN_ONLYDIR : u32 = 0x0100_0000 ;
3063
3063
pub const IN_DONT_FOLLOW : u32 = 0x0200_0000 ;
3064
- // pub const IN_EXCL_UNLINK: u32 = 0x0400_0000;
3064
+ pub const IN_EXCL_UNLINK : u32 = 0x0400_0000 ;
3065
3065
3066
3066
// linux/keyctl.h
3067
3067
pub const KEY_SPEC_THREAD_KEYRING : i32 = -1 ;
@@ -3107,8 +3107,8 @@ pub const KEYCTL_INSTANTIATE_IOV: u32 = 20;
3107
3107
pub const KEYCTL_INVALIDATE : u32 = 21 ;
3108
3108
pub const KEYCTL_GET_PERSISTENT : u32 = 22 ;
3109
3109
3110
- // pub const IN_MASK_CREATE: u32 = 0x1000_0000;
3111
- // pub const IN_MASK_ADD: u32 = 0x2000_0000;
3110
+ pub const IN_MASK_CREATE : u32 = 0x1000_0000 ;
3111
+ pub const IN_MASK_ADD : u32 = 0x2000_0000 ;
3112
3112
pub const IN_ISDIR : u32 = 0x4000_0000 ;
3113
3113
pub const IN_ONESHOT : u32 = 0x8000_0000 ;
3114
3114
You can’t perform that action at this time.
0 commit comments