Skip to content

Commit cb167da

Browse files
sinkingpointtgross35
authored andcommitted
Add MODULE_INIT_COMPRESSED_FILE definition
Signed-off-by: sinkingpoint <[email protected]>
1 parent 0a8f04a commit cb167da

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
@@ -1260,6 +1260,7 @@ MNT_EXPIRE
12601260
MNT_FORCE
12611261
MODULE_INIT_IGNORE_MODVERSIONS
12621262
MODULE_INIT_IGNORE_VERMAGIC
1263+
MODULE_INIT_COMPRESSED_FILE
12631264
MPOL_BIND
12641265
MPOL_DEFAULT
12651266
MPOL_F_NUMA_BALANCING

libc-test/semver/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1649,6 +1649,7 @@ MNT_EXPIRE
16491649
MNT_FORCE
16501650
MODULE_INIT_IGNORE_MODVERSIONS
16511651
MODULE_INIT_IGNORE_VERMAGIC
1652+
MODULE_INIT_COMPRESSED_FILE
16521653
MON_1
16531654
MON_10
16541655
MON_11

src/unix/linux_like/android/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2941,6 +2941,7 @@ pub const SIOCPROTOPRIVATE: ::c_ulong = 0x000089E0;
29412941
// linux/module.h
29422942
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
29432943
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
2944+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
29442945

29452946
// linux/net_tstamp.h
29462947
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
@@ -4519,6 +4519,7 @@ pub const RTNLGRP_STATS: ::c_uint = 0x24;
45194519
// linux/module.h
45204520
pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
45214521
pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
4522+
pub const MODULE_INIT_COMPRESSED_FILE: ::c_uint = 0x0004;
45224523

45234524
// linux/net_tstamp.h
45244525
pub const SOF_TIMESTAMPING_TX_HARDWARE: ::c_uint = 1 << 0;

0 commit comments

Comments
 (0)