Skip to content

Commit 7f0b238

Browse files
committed
Add MODULE_INIT_COMPRESSED_FILE definition
Signed-off-by: sinkingpoint <[email protected]>
1 parent 043e8a3 commit 7f0b238

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

libc-test/semver/android.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1229,6 +1229,7 @@ MNT_EXPIRE
12291229
MNT_FORCE
12301230
MODULE_INIT_IGNORE_MODVERSIONS
12311231
MODULE_INIT_IGNORE_VERMAGIC
1232+
MODULE_INIT_COMPRESSED_FILE
12321233
MPOL_BIND
12331234
MPOL_DEFAULT
12341235
MPOL_F_NUMA_BALANCING

libc-test/semver/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1459,6 +1459,7 @@ MNT_EXPIRE
14591459
MNT_FORCE
14601460
MODULE_INIT_IGNORE_MODVERSIONS
14611461
MODULE_INIT_IGNORE_VERMAGIC
1462+
MODULE_INIT_COMPRESSED_FILE
14621463
MON_1
14631464
MON_10
14641465
MON_11

src/unix/linux_like/android/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2921,6 +2921,7 @@ pub const SIOCPROTOPRIVATE: ::c_ulong = 0x000089E0;
29212921
// linux/module.h
29222922
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
29232923
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
2924+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
29242925

29252926
// linux/net_tstamp.h
29262927
pub const SOF_TIMESTAMPING_TX_HARDWARE: ::c_uint = 1 << 0;

src/unix/linux_like/linux/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3600,6 +3600,7 @@ pub const RTNLGRP_STATS: ::c_uint = 0x24;
36003600
// linux/module.h
36013601
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
36023602
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
3603+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
36033604

36043605
// linux/net_tstamp.h
36053606
pub const SOF_TIMESTAMPING_TX_HARDWARE: ::c_uint = 1 << 0;

0 commit comments

Comments
 (0)