Skip to content

Commit 0663010

Browse files
sinkingpointtgross35
authored andcommitted
Add MODULE_INIT_COMPRESSED_FILE definition
Signed-off-by: sinkingpoint <colin@quirl.co.nz>
1 parent 16ee391 commit 0663010

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
@@ -2904,6 +2904,7 @@ pub const SIOCPROTOPRIVATE: ::c_ulong = 0x000089E0;
29042904
// linux/module.h
29052905
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
29062906
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
2907+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
29072908

29082909
// linux/net_tstamp.h
29092910
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
@@ -4072,6 +4072,7 @@ pub const RTNLGRP_STATS: ::c_uint = 0x24;
40724072
// linux/module.h
40734073
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
40744074
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
4075+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
40754076

40764077
// linux/net_tstamp.h
40774078
pub const SOF_TIMESTAMPING_TX_HARDWARE: ::c_uint = 1 << 0;

0 commit comments

Comments
 (0)