Commit 52f0300505

daurnimator <quae@daurnimator.com>
2019-07-07 06:29:21
std: add new linux 5.2 constants
1 parent 02b1aea
Changed files (3)
std/os/bits/linux/arm64.zig
@@ -289,6 +289,12 @@ pub const SYS_pidfd_send_signal = 424;
 pub const SYS_io_uring_setup = 425;
 pub const SYS_io_uring_enter = 426;
 pub const SYS_io_uring_register = 427;
+pub const SYS_open_tree = 428;
+pub const SYS_move_mount = 429;
+pub const SYS_fsopen = 430;
+pub const SYS_fsconfig = 431;
+pub const SYS_fsmount = 432;
+pub const SYS_fspick = 433;
 
 pub const O_CREAT = 0o100;
 pub const O_EXCL = 0o200;
std/os/bits/linux/x86_64.zig
@@ -352,6 +352,12 @@ pub const SYS_pidfd_send_signal = 424;
 pub const SYS_io_uring_setup = 425;
 pub const SYS_io_uring_enter = 426;
 pub const SYS_io_uring_register = 427;
+pub const SYS_open_tree = 428;
+pub const SYS_move_mount = 429;
+pub const SYS_fsopen = 430;
+pub const SYS_fsconfig = 431;
+pub const SYS_fsmount = 432;
+pub const SYS_fspick = 433;
 
 pub const O_CREAT = 0o100;
 pub const O_EXCL = 0o200;
std/os/bits/linux.zig
@@ -52,6 +52,9 @@ pub const AT_STATX_FORCE_SYNC = 0x2000;
 /// - Don't sync attributes with the server
 pub const AT_STATX_DONT_SYNC = 0x4000;
 
+/// Apply to the entire subtree
+pub const AT_RECURSIVE = 0x8000;
+
 pub const FUTEX_WAIT = 0;
 pub const FUTEX_WAKE = 1;
 pub const FUTEX_FD = 2;
@@ -1084,7 +1087,8 @@ pub const io_uring_sqe = extern struct {
     pub const union1 = extern union {
         rw_flags: kernel_rwf,
         fsync_flags: u32,
-        poll_event: u16,
+        poll_events: u16,
+        sync_range_flags: u32,
     };
     union1: union1,
     user_data: u64,
@@ -1100,6 +1104,9 @@ pub const io_uring_sqe = extern struct {
 /// use fixed fileset
 pub const IOSQE_FIXED_FILE = (1 << 0);
 
+/// issue after inflight IO
+pub const IOSQE_IO_DRAIN = (1 << 1);
+
 pub const IORING_OP_NOP = 0;
 pub const IORING_OP_READV = 1;
 pub const IORING_OP_WRITEV = 2;
@@ -1108,6 +1115,7 @@ pub const IORING_OP_READ_FIXED = 4;
 pub const IORING_OP_WRITE_FIXED = 5;
 pub const IORING_OP_POLL_ADD = 6;
 pub const IORING_OP_POLL_REMOVE = 7;
+pub const IORING_OP_SYNC_FILE_RANGE = 8;
 
 // io_uring_sqe.fsync_flags
 pub const IORING_FSYNC_DATASYNC = (1 << 0);
@@ -1135,3 +1143,5 @@ pub const IORING_REGISTER_BUFFERS = 0;
 pub const IORING_UNREGISTER_BUFFERS = 1;
 pub const IORING_REGISTER_FILES = 2;
 pub const IORING_UNREGISTER_FILES = 3;
+pub const IORING_REGISTER_EVENTFD = 4;
+pub const IORING_UNREGISTER_EVENTFD = 5;