File tree 4 files changed +9
-0
lines changed
4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -3766,3 +3766,5 @@ dirname
3766
3766
basename
3767
3767
eventfd_read
3768
3768
eventfd_write
3769
+ HUGETLB_FLAG_ENCODE_SHIFT
3770
+ MAP_HUGE_SHIFT
Original file line number Diff line number Diff line change @@ -1472,3 +1472,5 @@ utimensat
1472
1472
vhangup
1473
1473
vmsplice
1474
1474
waitid
1475
+ HUGETLB_FLAG_ENCODE_SHIFT
1476
+ MAP_HUGE_SHIFT
Original file line number Diff line number Diff line change @@ -3233,6 +3233,9 @@ pub const O_DIRECT: ::c_int = 0x00000800;
3233
3233
pub const O_LARGEFILE : :: c_int = 0x00001000 ;
3234
3234
pub const O_NOFOLLOW : :: c_int = 0x00000080 ;
3235
3235
3236
+ pub const HUGETLB_FLAG_ENCODE_SHIFT : u32 = 26 ;
3237
+ pub const MAP_HUGE_SHIFT : u32 = 26 ;
3238
+
3236
3239
// intentionally not public, only used for fd_set
3237
3240
cfg_if ! {
3238
3241
if #[ cfg( target_pointer_width = "32" ) ] {
Original file line number Diff line number Diff line change @@ -3320,6 +3320,8 @@ pub const NET_SCTP: ::c_int = 17;
3320
3320
pub const NET_LLC : :: c_int = 18 ;
3321
3321
pub const NET_NETFILTER : :: c_int = 19 ;
3322
3322
pub const NET_DCCP : :: c_int = 20 ;
3323
+ pub const HUGETLB_FLAG_ENCODE_SHIFT : :: c_int = 26 ;
3324
+ pub const MAP_HUGE_SHIFT : :: c_int = HUGETLB_FLAG_ENCODE_SHIFT ;
3323
3325
3324
3326
// Most `*_SUPER_MAGIC` constants are defined at the `linux_like` level; the
3325
3327
// following are only available on newer Linux versions than the versions
You can’t perform that action at this time.
0 commit comments