Skip to content

Commit a9c80e2

Browse files
committed
Add MODULE_INIT_COMPRESSED_FILE definition
Signed-off-by: sinkingpoint <[email protected]>
1 parent 0e28c86 commit a9c80e2

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
@@ -1226,6 +1226,7 @@ MNT_EXPIRE
12261226
MNT_FORCE
12271227
MODULE_INIT_IGNORE_MODVERSIONS
12281228
MODULE_INIT_IGNORE_VERMAGIC
1229+
MODULE_INIT_COMPRESSED_FILE
12291230
MPOL_BIND
12301231
MPOL_DEFAULT
12311232
MPOL_F_NUMA_BALANCING

libc-test/semver/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1470,6 +1470,7 @@ MNT_EXPIRE
14701470
MNT_FORCE
14711471
MODULE_INIT_IGNORE_MODVERSIONS
14721472
MODULE_INIT_IGNORE_VERMAGIC
1473+
MODULE_INIT_COMPRESSED_FILE
14731474
MON_1
14741475
MON_10
14751476
MON_11

src/unix/linux_like/android/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2875,6 +2875,7 @@ pub const SIOCPROTOPRIVATE: ::c_ulong = 0x000089E0;
28752875
// linux/module.h
28762876
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
28772877
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
2878+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
28782879

28792880
// linux/net_tstamp.h
28802881
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
@@ -4043,6 +4043,7 @@ pub const RTNLGRP_STATS: ::c_uint = 0x24;
40434043
// linux/module.h
40444044
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
40454045
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
4046+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
40464047

40474048
// linux/net_tstamp.h
40484049
pub const SOF_TIMESTAMPING_TX_HARDWARE: ::c_uint = 1 << 0;

0 commit comments

Comments
 (0)