Skip to content

Commit 8b35a41

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

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
@@ -1258,6 +1258,7 @@ MMAP_PAGE_ZERO
12581258
MNT_DETACH
12591259
MNT_EXPIRE
12601260
MNT_FORCE
1261+
MODULE_INIT_COMPRESSED_FILE
12611262
MODULE_INIT_IGNORE_MODVERSIONS
12621263
MODULE_INIT_IGNORE_VERMAGIC
12631264
MPOL_BIND

libc-test/semver/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1647,6 +1647,7 @@ MMAP_PAGE_ZERO
16471647
MNT_DETACH
16481648
MNT_EXPIRE
16491649
MNT_FORCE
1650+
MODULE_INIT_COMPRESSED_FILE
16501651
MODULE_INIT_IGNORE_MODVERSIONS
16511652
MODULE_INIT_IGNORE_VERMAGIC
16521653
MON_1

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)