diff options
Diffstat (limited to 'vendor/linux-raw-sys/src/powerpc/general.rs')
-rw-r--r-- | vendor/linux-raw-sys/src/powerpc/general.rs | 4441 |
1 files changed, 993 insertions, 3448 deletions
diff --git a/vendor/linux-raw-sys/src/powerpc/general.rs b/vendor/linux-raw-sys/src/powerpc/general.rs index 463a07ec5..5f75feec4 100644 --- a/vendor/linux-raw-sys/src/powerpc/general.rs +++ b/vendor/linux-raw-sys/src/powerpc/general.rs @@ -1,145 +1,938 @@ -/* automatically generated by rust-bindgen 0.59.2 */ +/* automatically generated by rust-bindgen 0.65.1 */ +pub type __s8 = crate::ctypes::c_schar; +pub type __u8 = crate::ctypes::c_uchar; +pub type __s16 = crate::ctypes::c_short; +pub type __u16 = crate::ctypes::c_ushort; +pub type __s32 = crate::ctypes::c_int; +pub type __u32 = crate::ctypes::c_uint; +pub type __s64 = crate::ctypes::c_longlong; +pub type __u64 = crate::ctypes::c_ulonglong; +pub type __kernel_sighandler_t = ::core::option::Option<unsafe extern "C" fn(arg1: crate::ctypes::c_int)>; +pub type __kernel_key_t = crate::ctypes::c_int; +pub type __kernel_mqd_t = crate::ctypes::c_int; +pub type __kernel_ipc_pid_t = crate::ctypes::c_short; +pub type __kernel_long_t = crate::ctypes::c_long; +pub type __kernel_ulong_t = crate::ctypes::c_ulong; +pub type __kernel_ino_t = __kernel_ulong_t; +pub type __kernel_mode_t = crate::ctypes::c_uint; +pub type __kernel_pid_t = crate::ctypes::c_int; +pub type __kernel_uid_t = crate::ctypes::c_uint; +pub type __kernel_gid_t = crate::ctypes::c_uint; +pub type __kernel_suseconds_t = __kernel_long_t; +pub type __kernel_daddr_t = crate::ctypes::c_int; +pub type __kernel_uid32_t = crate::ctypes::c_uint; +pub type __kernel_gid32_t = crate::ctypes::c_uint; +pub type __kernel_old_uid_t = __kernel_uid_t; +pub type __kernel_old_gid_t = __kernel_gid_t; +pub type __kernel_old_dev_t = crate::ctypes::c_uint; +pub type __kernel_size_t = crate::ctypes::c_uint; +pub type __kernel_ssize_t = crate::ctypes::c_int; +pub type __kernel_ptrdiff_t = crate::ctypes::c_int; +pub type __kernel_off_t = __kernel_long_t; +pub type __kernel_loff_t = crate::ctypes::c_longlong; +pub type __kernel_old_time_t = __kernel_long_t; +pub type __kernel_time_t = __kernel_long_t; +pub type __kernel_time64_t = crate::ctypes::c_longlong; +pub type __kernel_clock_t = __kernel_long_t; +pub type __kernel_timer_t = crate::ctypes::c_int; +pub type __kernel_clockid_t = crate::ctypes::c_int; +pub type __kernel_caddr_t = *mut crate::ctypes::c_char; +pub type __kernel_uid16_t = crate::ctypes::c_ushort; +pub type __kernel_gid16_t = crate::ctypes::c_ushort; +pub type __le16 = __u16; +pub type __be16 = __u16; +pub type __le32 = __u32; +pub type __be32 = __u32; +pub type __le64 = __u64; +pub type __be64 = __u64; +pub type __sum16 = __u16; +pub type __wsum = __u32; +pub type __poll_t = crate::ctypes::c_uint; +pub type cap_user_header_t = *mut __user_cap_header_struct; +pub type cap_user_data_t = *mut __user_cap_data_struct; +pub type __kernel_rwf_t = crate::ctypes::c_int; +pub type old_sigset_t = crate::ctypes::c_ulong; +pub type __signalfn_t = ::core::option::Option<unsafe extern "C" fn(arg1: crate::ctypes::c_int)>; +pub type __sighandler_t = __signalfn_t; +pub type __restorefn_t = ::core::option::Option<unsafe extern "C" fn()>; +pub type __sigrestore_t = __restorefn_t; +pub type stack_t = sigaltstack; +pub type sigval_t = sigval; +pub type siginfo_t = siginfo; +pub type sigevent_t = sigevent; +pub type cc_t = crate::ctypes::c_uchar; +pub type speed_t = crate::ctypes::c_uint; +pub type tcflag_t = crate::ctypes::c_uint; +pub type __fsword_t = __u32; +pub type termios2 = termios; #[repr(C)] #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] pub struct __BindgenBitfieldUnit<Storage> { storage: Storage, } -impl<Storage> __BindgenBitfieldUnit<Storage> { -#[inline] -pub const fn new(storage: Storage) -> Self { -Self { storage } +#[repr(C)] +#[derive(Default)] +pub struct __IncompleteArrayField<T>(::core::marker::PhantomData<T>, [T; 0]); +#[repr(C)] +#[repr(align(16))] +#[derive(Debug, Copy, Clone)] +pub struct __vector128 { +pub u: [__u32; 4usize], } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fd_set { +pub fds_bits: [crate::ctypes::c_ulong; 32usize], } -impl<Storage> __BindgenBitfieldUnit<Storage> -where -Storage: AsRef<[u8]> + AsMut<[u8]>, -{ -#[inline] -pub fn get_bit(&self, index: usize) -> bool { -debug_assert!(index / 8 < self.storage.as_ref().len()); -let byte_index = index / 8; -let byte = self.storage.as_ref()[byte_index]; -let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; -let mask = 1 << bit_index; -byte & mask == mask +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fsid_t { +pub val: [crate::ctypes::c_int; 2usize], } -#[inline] -pub fn set_bit(&mut self, index: usize, val: bool) { -debug_assert!(index / 8 < self.storage.as_ref().len()); -let byte_index = index / 8; -let byte = &mut self.storage.as_mut()[byte_index]; -let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; -let mask = 1 << bit_index; -if val { -*byte |= mask; -} else { -*byte &= !mask; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __user_cap_header_struct { +pub version: __u32, +pub pid: crate::ctypes::c_int, } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __user_cap_data_struct { +pub effective: __u32, +pub permitted: __u32, +pub inheritable: __u32, } -#[inline] -pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { -debug_assert!(bit_width <= 64); -debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); -debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); -let mut val = 0; -for i in 0..(bit_width as usize) { -if self.get_bit(i + bit_offset) { -let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; -val |= 1 << index; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct vfs_cap_data { +pub magic_etc: __le32, +pub data: [vfs_cap_data__bindgen_ty_1; 2usize], } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct vfs_cap_data__bindgen_ty_1 { +pub permitted: __le32, +pub inheritable: __le32, } -val +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct vfs_ns_cap_data { +pub magic_etc: __le32, +pub data: [vfs_ns_cap_data__bindgen_ty_1; 2usize], +pub rootid: __le32, } -#[inline] -pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { -debug_assert!(bit_width <= 64); -debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); -debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); -for i in 0..(bit_width as usize) { -let mask = 1 << i; -let val_bit_is_set = val & mask == mask; -let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; -self.set_bit(index + bit_offset, val_bit_is_set); +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct vfs_ns_cap_data__bindgen_ty_1 { +pub permitted: __le32, +pub inheritable: __le32, } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct f_owner_ex { +pub type_: crate::ctypes::c_int, +pub pid: __kernel_pid_t, } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct flock { +pub l_type: crate::ctypes::c_short, +pub l_whence: crate::ctypes::c_short, +pub l_start: __kernel_off_t, +pub l_len: __kernel_off_t, +pub l_pid: __kernel_pid_t, } #[repr(C)] -#[derive(Default)] -pub struct __IncompleteArrayField<T>(::core::marker::PhantomData<T>, [T; 0]); -impl<T> __IncompleteArrayField<T> { -#[inline] -pub const fn new() -> Self { -__IncompleteArrayField(::core::marker::PhantomData, []) +#[derive(Debug, Copy, Clone)] +pub struct flock64 { +pub l_type: crate::ctypes::c_short, +pub l_whence: crate::ctypes::c_short, +pub l_start: __kernel_loff_t, +pub l_len: __kernel_loff_t, +pub l_pid: __kernel_pid_t, } -#[inline] -pub fn as_ptr(&self) -> *const T { -self as *const _ as *const T +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct open_how { +pub flags: __u64, +pub mode: __u64, +pub resolve: __u64, } -#[inline] -pub fn as_mut_ptr(&mut self) -> *mut T { -self as *mut _ as *mut T +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct epoll_event { +pub events: __poll_t, +pub data: __u64, } -#[inline] -pub unsafe fn as_slice(&self, len: usize) -> &[T] { -::core::slice::from_raw_parts(self.as_ptr(), len) +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fscrypt_policy_v1 { +pub version: __u8, +pub contents_encryption_mode: __u8, +pub filenames_encryption_mode: __u8, +pub flags: __u8, +pub master_key_descriptor: [__u8; 8usize], } -#[inline] -pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { -::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len) +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fscrypt_key { +pub mode: __u32, +pub raw: [__u8; 64usize], +pub size: __u32, } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fscrypt_policy_v2 { +pub version: __u8, +pub contents_encryption_mode: __u8, +pub filenames_encryption_mode: __u8, +pub flags: __u8, +pub __reserved: [__u8; 4usize], +pub master_key_identifier: [__u8; 16usize], } -impl<T> ::core::fmt::Debug for __IncompleteArrayField<T> { -fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -fmt.write_str("__IncompleteArrayField") +#[repr(C)] +#[derive(Copy, Clone)] +pub struct fscrypt_get_policy_ex_arg { +pub policy_size: __u64, +pub policy: fscrypt_get_policy_ex_arg__bindgen_ty_1, } +#[repr(C)] +#[derive(Copy, Clone)] +pub struct fscrypt_key_specifier { +pub type_: __u32, +pub __reserved: __u32, +pub u: fscrypt_key_specifier__bindgen_ty_1, } #[repr(C)] -pub struct __BindgenUnionField<T>(::core::marker::PhantomData<T>); -impl<T> __BindgenUnionField<T> { -#[inline] -pub const fn new() -> Self { -__BindgenUnionField(::core::marker::PhantomData) +#[derive(Debug)] +pub struct fscrypt_provisioning_key_payload { +pub type_: __u32, +pub __reserved: __u32, +pub raw: __IncompleteArrayField<__u8>, } -#[inline] -pub unsafe fn as_ref(&self) -> &T { -::core::mem::transmute(self) +#[repr(C)] +pub struct fscrypt_add_key_arg { +pub key_spec: fscrypt_key_specifier, +pub raw_size: __u32, +pub key_id: __u32, +pub __reserved: [__u32; 8usize], +pub raw: __IncompleteArrayField<__u8>, } -#[inline] -pub unsafe fn as_mut(&mut self) -> &mut T { -::core::mem::transmute(self) +#[repr(C)] +#[derive(Copy, Clone)] +pub struct fscrypt_remove_key_arg { +pub key_spec: fscrypt_key_specifier, +pub removal_status_flags: __u32, +pub __reserved: [__u32; 5usize], } +#[repr(C)] +#[derive(Copy, Clone)] +pub struct fscrypt_get_key_status_arg { +pub key_spec: fscrypt_key_specifier, +pub __reserved: [__u32; 6usize], +pub status: __u32, +pub status_flags: __u32, +pub user_count: __u32, +pub __out_reserved: [__u32; 13usize], } -impl<T> ::core::default::Default for __BindgenUnionField<T> { -#[inline] -fn default() -> Self { -Self::new() +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct mount_attr { +pub attr_set: __u64, +pub attr_clr: __u64, +pub propagation: __u64, +pub userns_fd: __u64, } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct file_clone_range { +pub src_fd: __s64, +pub src_offset: __u64, +pub src_length: __u64, +pub dest_offset: __u64, } -impl<T> ::core::clone::Clone for __BindgenUnionField<T> { -#[inline] -fn clone(&self) -> Self { -Self::new() +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fstrim_range { +pub start: __u64, +pub len: __u64, +pub minlen: __u64, } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct file_dedupe_range_info { +pub dest_fd: __s64, +pub dest_offset: __u64, +pub bytes_deduped: __u64, +pub status: __s32, +pub reserved: __u32, } -impl<T> ::core::marker::Copy for __BindgenUnionField<T> {} -impl<T> ::core::fmt::Debug for __BindgenUnionField<T> { -fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -fmt.write_str("__BindgenUnionField") +#[repr(C)] +#[derive(Debug)] +pub struct file_dedupe_range { +pub src_offset: __u64, +pub src_length: __u64, +pub dest_count: __u16, +pub reserved1: __u16, +pub reserved2: __u32, +pub info: __IncompleteArrayField<file_dedupe_range_info>, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct files_stat_struct { +pub nr_files: crate::ctypes::c_ulong, +pub nr_free_files: crate::ctypes::c_ulong, +pub max_files: crate::ctypes::c_ulong, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct inodes_stat_t { +pub nr_inodes: crate::ctypes::c_long, +pub nr_unused: crate::ctypes::c_long, +pub dummy: [crate::ctypes::c_long; 5usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fsxattr { +pub fsx_xflags: __u32, +pub fsx_extsize: __u32, +pub fsx_nextents: __u32, +pub fsx_projid: __u32, +pub fsx_cowextsize: __u32, +pub fsx_pad: [crate::ctypes::c_uchar; 8usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct futex_waitv { +pub val: __u64, +pub uaddr: __u64, +pub flags: __u32, +pub __reserved: __u32, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct robust_list { +pub next: *mut robust_list, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct robust_list_head { +pub list: robust_list, +pub futex_offset: crate::ctypes::c_long, +pub list_op_pending: *mut robust_list, +} +#[repr(C)] +#[derive(Debug)] +pub struct inotify_event { +pub wd: __s32, +pub mask: __u32, +pub cookie: __u32, +pub len: __u32, +pub name: __IncompleteArrayField<crate::ctypes::c_char>, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pollfd { +pub fd: crate::ctypes::c_int, +pub events: crate::ctypes::c_short, +pub revents: crate::ctypes::c_short, +} +#[repr(C)] +#[derive(Debug)] +pub struct rand_pool_info { +pub entropy_count: crate::ctypes::c_int, +pub buf_size: crate::ctypes::c_int, +pub buf: __IncompleteArrayField<__u32>, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_timespec { +pub tv_sec: __kernel_time64_t, +pub tv_nsec: crate::ctypes::c_longlong, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_itimerspec { +pub it_interval: __kernel_timespec, +pub it_value: __kernel_timespec, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_old_timeval { +pub tv_sec: __kernel_long_t, +pub tv_usec: __kernel_long_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_old_timespec { +pub tv_sec: __kernel_old_time_t, +pub tv_nsec: crate::ctypes::c_long, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_old_itimerval { +pub it_interval: __kernel_old_timeval, +pub it_value: __kernel_old_timeval, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_sock_timeval { +pub tv_sec: __s64, +pub tv_usec: __s64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timespec { +pub tv_sec: __kernel_old_time_t, +pub tv_nsec: crate::ctypes::c_long, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timeval { +pub tv_sec: __kernel_old_time_t, +pub tv_usec: __kernel_suseconds_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerspec { +pub it_interval: timespec, +pub it_value: timespec, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerval { +pub it_interval: timeval, +pub it_value: timeval, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timezone { +pub tz_minuteswest: crate::ctypes::c_int, +pub tz_dsttime: crate::ctypes::c_int, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct rusage { +pub ru_utime: __kernel_old_timeval, +pub ru_stime: __kernel_old_timeval, +pub ru_maxrss: __kernel_long_t, +pub ru_ixrss: __kernel_long_t, +pub ru_idrss: __kernel_long_t, +pub ru_isrss: __kernel_long_t, +pub ru_minflt: __kernel_long_t, +pub ru_majflt: __kernel_long_t, +pub ru_nswap: __kernel_long_t, +pub ru_inblock: __kernel_long_t, +pub ru_oublock: __kernel_long_t, +pub ru_msgsnd: __kernel_long_t, +pub ru_msgrcv: __kernel_long_t, +pub ru_nsignals: __kernel_long_t, +pub ru_nvcsw: __kernel_long_t, +pub ru_nivcsw: __kernel_long_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct rlimit { +pub rlim_cur: __kernel_ulong_t, +pub rlim_max: __kernel_ulong_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct rlimit64 { +pub rlim_cur: __u64, +pub rlim_max: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct clone_args { +pub flags: __u64, +pub pidfd: __u64, +pub child_tid: __u64, +pub parent_tid: __u64, +pub exit_signal: __u64, +pub stack: __u64, +pub stack_size: __u64, +pub tls: __u64, +pub set_tid: __u64, +pub set_tid_size: __u64, +pub cgroup: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigset_t { +pub sig: [crate::ctypes::c_ulong; 2usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct old_sigaction { +pub sa_handler: __sighandler_t, +pub sa_mask: old_sigset_t, +pub sa_flags: crate::ctypes::c_ulong, +pub sa_restorer: __sigrestore_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigaction { +pub sa_handler: __sighandler_t, +pub sa_flags: crate::ctypes::c_ulong, +pub sa_restorer: __sigrestore_t, +pub sa_mask: sigset_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigaltstack { +pub ss_sp: *mut crate::ctypes::c_void, +pub ss_flags: crate::ctypes::c_int, +pub ss_size: __kernel_size_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sig_dbg_op { +pub dbg_type: crate::ctypes::c_int, +pub dbg_value: crate::ctypes::c_ulong, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_1 { +pub _pid: __kernel_pid_t, +pub _uid: __kernel_uid32_t, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_2 { +pub _tid: __kernel_timer_t, +pub _overrun: crate::ctypes::c_int, +pub _sigval: sigval_t, +pub _sys_private: crate::ctypes::c_int, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_3 { +pub _pid: __kernel_pid_t, +pub _uid: __kernel_uid32_t, +pub _sigval: sigval_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_4 { +pub _pid: __kernel_pid_t, +pub _uid: __kernel_uid32_t, +pub _status: crate::ctypes::c_int, +pub _utime: __kernel_clock_t, +pub _stime: __kernel_clock_t, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_5 { +pub _addr: *mut crate::ctypes::c_void, +pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { +pub _dummy_bnd: [crate::ctypes::c_char; 4usize], +pub _lower: *mut crate::ctypes::c_void, +pub _upper: *mut crate::ctypes::c_void, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { +pub _dummy_pkey: [crate::ctypes::c_char; 4usize], +pub _pkey: __u32, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3 { +pub _data: crate::ctypes::c_ulong, +pub _type: __u32, +pub _flags: __u32, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_6 { +pub _band: crate::ctypes::c_long, +pub _fd: crate::ctypes::c_int, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_7 { +pub _call_addr: *mut crate::ctypes::c_void, +pub _syscall: crate::ctypes::c_int, +pub _arch: crate::ctypes::c_uint, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo { +pub __bindgen_anon_1: siginfo__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { +pub si_signo: crate::ctypes::c_int, +pub si_errno: crate::ctypes::c_int, +pub si_code: crate::ctypes::c_int, +pub _sifields: __sifields, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigevent { +pub sigev_value: sigval_t, +pub sigev_signo: crate::ctypes::c_int, +pub sigev_notify: crate::ctypes::c_int, +pub _sigev_un: sigevent__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { +pub _function: ::core::option::Option<unsafe extern "C" fn(arg1: sigval_t)>, +pub _attribute: *mut crate::ctypes::c_void, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct statx_timestamp { +pub tv_sec: __s64, +pub tv_nsec: __u32, +pub __reserved: __s32, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct statx { +pub stx_mask: __u32, +pub stx_blksize: __u32, +pub stx_attributes: __u64, +pub stx_nlink: __u32, +pub stx_uid: __u32, +pub stx_gid: __u32, +pub stx_mode: __u16, +pub __spare0: [__u16; 1usize], +pub stx_ino: __u64, +pub stx_size: __u64, +pub stx_blocks: __u64, +pub stx_attributes_mask: __u64, +pub stx_atime: statx_timestamp, +pub stx_btime: statx_timestamp, +pub stx_ctime: statx_timestamp, +pub stx_mtime: statx_timestamp, +pub stx_rdev_major: __u32, +pub stx_rdev_minor: __u32, +pub stx_dev_major: __u32, +pub stx_dev_minor: __u32, +pub stx_mnt_id: __u64, +pub stx_dio_mem_align: __u32, +pub stx_dio_offset_align: __u32, +pub __spare3: [__u64; 12usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct termios { +pub c_iflag: tcflag_t, +pub c_oflag: tcflag_t, +pub c_cflag: tcflag_t, +pub c_lflag: tcflag_t, +pub c_cc: [cc_t; 19usize], +pub c_line: cc_t, +pub c_ispeed: speed_t, +pub c_ospeed: speed_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ktermios { +pub c_iflag: tcflag_t, +pub c_oflag: tcflag_t, +pub c_cflag: tcflag_t, +pub c_lflag: tcflag_t, +pub c_cc: [cc_t; 19usize], +pub c_line: cc_t, +pub c_ispeed: speed_t, +pub c_ospeed: speed_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sgttyb { +pub sg_ispeed: crate::ctypes::c_char, +pub sg_ospeed: crate::ctypes::c_char, +pub sg_erase: crate::ctypes::c_char, +pub sg_kill: crate::ctypes::c_char, +pub sg_flags: crate::ctypes::c_short, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct tchars { +pub t_intrc: crate::ctypes::c_char, +pub t_quitc: crate::ctypes::c_char, +pub t_startc: crate::ctypes::c_char, +pub t_stopc: crate::ctypes::c_char, +pub t_eofc: crate::ctypes::c_char, +pub t_brkc: crate::ctypes::c_char, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ltchars { +pub t_suspc: crate::ctypes::c_char, +pub t_dsuspc: crate::ctypes::c_char, +pub t_rprntc: crate::ctypes::c_char, +pub t_flushc: crate::ctypes::c_char, +pub t_werasc: crate::ctypes::c_char, +pub t_lnextc: crate::ctypes::c_char, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct winsize { +pub ws_row: crate::ctypes::c_ushort, +pub ws_col: crate::ctypes::c_ushort, +pub ws_xpixel: crate::ctypes::c_ushort, +pub ws_ypixel: crate::ctypes::c_ushort, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct termio { +pub c_iflag: crate::ctypes::c_ushort, +pub c_oflag: crate::ctypes::c_ushort, +pub c_cflag: crate::ctypes::c_ushort, +pub c_lflag: crate::ctypes::c_ushort, +pub c_line: crate::ctypes::c_uchar, +pub c_cc: [crate::ctypes::c_uchar; 10usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct iovec { +pub iov_base: *mut crate::ctypes::c_void, +pub iov_len: __kernel_size_t, +} +#[repr(C, packed)] +#[derive(Copy, Clone)] +pub struct uffd_msg { +pub event: __u8, +pub reserved1: __u8, +pub reserved2: __u16, +pub reserved3: __u32, +pub arg: uffd_msg__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct uffd_msg__bindgen_ty_1__bindgen_ty_1 { +pub flags: __u64, +pub address: __u64, +pub feat: uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffd_msg__bindgen_ty_1__bindgen_ty_2 { +pub ufd: __u32, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffd_msg__bindgen_ty_1__bindgen_ty_3 { +pub from: __u64, +pub to: __u64, +pub len: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffd_msg__bindgen_ty_1__bindgen_ty_4 { +pub start: __u64, +pub end: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffd_msg__bindgen_ty_1__bindgen_ty_5 { +pub reserved1: __u64, +pub reserved2: __u64, +pub reserved3: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffdio_api { +pub api: __u64, +pub features: __u64, +pub ioctls: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffdio_range { +pub start: __u64, +pub len: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffdio_register { +pub range: uffdio_range, +pub mode: __u64, +pub ioctls: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffdio_copy { +pub dst: __u64, +pub src: __u64, +pub len: __u64, +pub mode: __u64, +pub copy: __s64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffdio_zeropage { +pub range: uffdio_range, +pub mode: __u64, +pub zeropage: __s64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffdio_writeprotect { +pub range: uffdio_range, +pub mode: __u64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct uffdio_continue { +pub range: uffdio_range, +pub mode: __u64, +pub mapped: __s64, } +#[repr(C)] +#[derive(Debug)] +pub struct linux_dirent64 { +pub d_ino: crate::ctypes::c_ulonglong, +pub d_off: crate::ctypes::c_longlong, +pub d_reclen: __u16, +pub d_type: __u8, +pub d_name: __IncompleteArrayField<crate::ctypes::c_char>, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __old_kernel_stat { +pub st_dev: crate::ctypes::c_ushort, +pub st_ino: crate::ctypes::c_ushort, +pub st_mode: crate::ctypes::c_ushort, +pub st_nlink: crate::ctypes::c_ushort, +pub st_uid: crate::ctypes::c_ushort, +pub st_gid: crate::ctypes::c_ushort, +pub st_rdev: crate::ctypes::c_ushort, +pub st_size: crate::ctypes::c_ulong, +pub st_atime: crate::ctypes::c_ulong, +pub st_mtime: crate::ctypes::c_ulong, +pub st_ctime: crate::ctypes::c_ulong, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct stat { +pub st_dev: crate::ctypes::c_ulong, +pub st_ino: __kernel_ino_t, +pub st_mode: __kernel_mode_t, +pub st_nlink: crate::ctypes::c_ushort, +pub st_uid: __kernel_uid32_t, +pub st_gid: __kernel_gid32_t, +pub st_rdev: crate::ctypes::c_ulong, +pub st_size: crate::ctypes::c_long, +pub st_blksize: crate::ctypes::c_ulong, +pub st_blocks: crate::ctypes::c_ulong, +pub st_atime: crate::ctypes::c_ulong, +pub st_atime_nsec: crate::ctypes::c_ulong, +pub st_mtime: crate::ctypes::c_ulong, +pub st_mtime_nsec: crate::ctypes::c_ulong, +pub st_ctime: crate::ctypes::c_ulong, +pub st_ctime_nsec: crate::ctypes::c_ulong, +pub __unused4: crate::ctypes::c_ulong, +pub __unused5: crate::ctypes::c_ulong, } -impl<T> ::core::hash::Hash for __BindgenUnionField<T> { -fn hash<H: ::core::hash::Hasher>(&self, _state: &mut H) {} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct stat64 { +pub st_dev: crate::ctypes::c_ulonglong, +pub st_ino: crate::ctypes::c_ulonglong, +pub st_mode: crate::ctypes::c_uint, +pub st_nlink: crate::ctypes::c_uint, +pub st_uid: crate::ctypes::c_uint, +pub st_gid: crate::ctypes::c_uint, +pub st_rdev: crate::ctypes::c_ulonglong, +pub __pad2: crate::ctypes::c_ushort, +pub st_size: crate::ctypes::c_longlong, +pub st_blksize: crate::ctypes::c_int, +pub st_blocks: crate::ctypes::c_longlong, +pub st_atime: crate::ctypes::c_int, +pub st_atime_nsec: crate::ctypes::c_uint, +pub st_mtime: crate::ctypes::c_int, +pub st_mtime_nsec: crate::ctypes::c_uint, +pub st_ctime: crate::ctypes::c_int, +pub st_ctime_nsec: crate::ctypes::c_uint, +pub __unused4: crate::ctypes::c_uint, +pub __unused5: crate::ctypes::c_uint, } -impl<T> ::core::cmp::PartialEq for __BindgenUnionField<T> { -fn eq(&self, _other: &__BindgenUnionField<T>) -> bool { -true +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct statfs { +pub f_type: __u32, +pub f_bsize: __u32, +pub f_blocks: __u32, +pub f_bfree: __u32, +pub f_bavail: __u32, +pub f_files: __u32, +pub f_ffree: __u32, +pub f_fsid: __kernel_fsid_t, +pub f_namelen: __u32, +pub f_frsize: __u32, +pub f_flags: __u32, +pub f_spare: [__u32; 4usize], } +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct statfs64 { +pub f_type: __u32, +pub f_bsize: __u32, +pub f_blocks: __u64, +pub f_bfree: __u64, +pub f_bavail: __u64, +pub f_files: __u64, +pub f_ffree: __u64, +pub f_fsid: __kernel_fsid_t, +pub f_namelen: __u32, +pub f_frsize: __u32, +pub f_flags: __u32, +pub f_spare: [__u32; 4usize], } -impl<T> ::core::cmp::Eq for __BindgenUnionField<T> {} -pub const LINUX_VERSION_CODE: u32 = 393728; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct compat_statfs64 { +pub f_type: __u32, +pub f_bsize: __u32, +pub f_blocks: __u64, +pub f_bfree: __u64, +pub f_bavail: __u64, +pub f_files: __u64, +pub f_ffree: __u64, +pub f_fsid: __kernel_fsid_t, +pub f_namelen: __u32, +pub f_frsize: __u32, +pub f_flags: __u32, +pub f_spare: [__u32; 4usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_desc { +pub entry_number: crate::ctypes::c_uint, +pub base_addr: crate::ctypes::c_uint, +pub limit: crate::ctypes::c_uint, +pub _bitfield_align_1: [u8; 0], +pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, +pub __bindgen_padding_0: [u8; 3usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct kernel_sigset_t { +pub sig: [crate::ctypes::c_ulong; 2usize], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct kernel_sigaction { +pub sa_handler_kernel: __kernel_sighandler_t, +pub sa_flags: crate::ctypes::c_ulong, +pub sa_restorer: __sigrestore_t, +pub sa_mask: kernel_sigset_t, +} +pub const LINUX_VERSION_CODE: u32 = 393984; pub const LINUX_VERSION_MAJOR: u32 = 6; -pub const LINUX_VERSION_PATCHLEVEL: u32 = 2; +pub const LINUX_VERSION_PATCHLEVEL: u32 = 3; pub const LINUX_VERSION_SUBLEVEL: u32 = 0; pub const AT_DCACHEBSIZE: u32 = 19; pub const AT_ICACHEBSIZE: u32 = 20; @@ -178,8 +971,9 @@ pub const AT_SECURE: u32 = 23; pub const AT_BASE_PLATFORM: u32 = 24; pub const AT_RANDOM: u32 = 25; pub const AT_HWCAP2: u32 = 26; +pub const AT_RSEQ_FEATURE_SIZE: u32 = 27; +pub const AT_RSEQ_ALIGN: u32 = 28; pub const AT_EXECFN: u32 = 31; -pub const __BITS_PER_LONG: u32 = 32; pub const __FD_SETSIZE: u32 = 1024; pub const _LINUX_CAPABILITY_VERSION_1: u32 = 429392688; pub const _LINUX_CAPABILITY_U32S_1: u32 = 1; @@ -327,6 +1121,7 @@ pub const F_SEAL_SHRINK: u32 = 2; pub const F_SEAL_GROW: u32 = 4; pub const F_SEAL_WRITE: u32 = 8; pub const F_SEAL_FUTURE_WRITE: u32 = 16; +pub const F_SEAL_EXEC: u32 = 32; pub const F_GET_RW_HINT: u32 = 1035; pub const F_SET_RW_HINT: u32 = 1036; pub const F_GET_FILE_RW_HINT: u32 = 1037; @@ -640,119 +1435,6 @@ pub const FUTEX_OP_CMP_LT: u32 = 2; pub const FUTEX_OP_CMP_LE: u32 = 3; pub const FUTEX_OP_CMP_GT: u32 = 4; pub const FUTEX_OP_CMP_GE: u32 = 5; -pub const __UAPI_DEF_IF_IFCONF: u32 = 1; -pub const __UAPI_DEF_IF_IFMAP: u32 = 1; -pub const __UAPI_DEF_IF_IFNAMSIZ: u32 = 1; -pub const __UAPI_DEF_IF_IFREQ: u32 = 1; -pub const __UAPI_DEF_IF_NET_DEVICE_FLAGS: u32 = 1; -pub const __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO: u32 = 1; -pub const __UAPI_DEF_IN_ADDR: u32 = 1; -pub const __UAPI_DEF_IN_IPPROTO: u32 = 1; -pub const __UAPI_DEF_IN_PKTINFO: u32 = 1; -pub const __UAPI_DEF_IP_MREQ: u32 = 1; -pub const __UAPI_DEF_SOCKADDR_IN: u32 = 1; -pub const __UAPI_DEF_IN_CLASS: u32 = 1; -pub const __UAPI_DEF_IN6_ADDR: u32 = 1; -pub const __UAPI_DEF_IN6_ADDR_ALT: u32 = 1; -pub const __UAPI_DEF_SOCKADDR_IN6: u32 = 1; -pub const __UAPI_DEF_IPV6_MREQ: u32 = 1; -pub const __UAPI_DEF_IPPROTO_V6: u32 = 1; -pub const __UAPI_DEF_IPV6_OPTIONS: u32 = 1; -pub const __UAPI_DEF_IN6_PKTINFO: u32 = 1; -pub const __UAPI_DEF_IP6_MTUINFO: u32 = 1; -pub const __UAPI_DEF_SOCKADDR_IPX: u32 = 1; -pub const __UAPI_DEF_IPX_ROUTE_DEFINITION: u32 = 1; -pub const __UAPI_DEF_IPX_INTERFACE_DEFINITION: u32 = 1; -pub const __UAPI_DEF_IPX_CONFIG_DATA: u32 = 1; -pub const __UAPI_DEF_IPX_ROUTE_DEF: u32 = 1; -pub const __UAPI_DEF_XATTR: u32 = 1; -pub const _K_SS_MAXSIZE: u32 = 128; -pub const SOCK_SNDBUF_LOCK: u32 = 1; -pub const SOCK_RCVBUF_LOCK: u32 = 2; -pub const SOCK_BUF_LOCK_MASK: u32 = 3; -pub const SOCK_TXREHASH_DEFAULT: u32 = 255; -pub const SOCK_TXREHASH_DISABLED: u32 = 0; -pub const SOCK_TXREHASH_ENABLED: u32 = 1; -pub const IP_TOS: u32 = 1; -pub const IP_TTL: u32 = 2; -pub const IP_HDRINCL: u32 = 3; -pub const IP_OPTIONS: u32 = 4; -pub const IP_ROUTER_ALERT: u32 = 5; -pub const IP_RECVOPTS: u32 = 6; -pub const IP_RETOPTS: u32 = 7; -pub const IP_PKTINFO: u32 = 8; -pub const IP_PKTOPTIONS: u32 = 9; -pub const IP_MTU_DISCOVER: u32 = 10; -pub const IP_RECVERR: u32 = 11; -pub const IP_RECVTTL: u32 = 12; -pub const IP_RECVTOS: u32 = 13; -pub const IP_MTU: u32 = 14; -pub const IP_FREEBIND: u32 = 15; -pub const IP_IPSEC_POLICY: u32 = 16; -pub const IP_XFRM_POLICY: u32 = 17; -pub const IP_PASSSEC: u32 = 18; -pub const IP_TRANSPARENT: u32 = 19; -pub const IP_RECVRETOPTS: u32 = 7; -pub const IP_ORIGDSTADDR: u32 = 20; -pub const IP_RECVORIGDSTADDR: u32 = 20; -pub const IP_MINTTL: u32 = 21; -pub const IP_NODEFRAG: u32 = 22; -pub const IP_CHECKSUM: u32 = 23; -pub const IP_BIND_ADDRESS_NO_PORT: u32 = 24; -pub const IP_RECVFRAGSIZE: u32 = 25; -pub const IP_RECVERR_RFC4884: u32 = 26; -pub const IP_PMTUDISC_DONT: u32 = 0; -pub const IP_PMTUDISC_WANT: u32 = 1; -pub const IP_PMTUDISC_DO: u32 = 2; -pub const IP_PMTUDISC_PROBE: u32 = 3; -pub const IP_PMTUDISC_INTERFACE: u32 = 4; -pub const IP_PMTUDISC_OMIT: u32 = 5; -pub const IP_MULTICAST_IF: u32 = 32; -pub const IP_MULTICAST_TTL: u32 = 33; -pub const IP_MULTICAST_LOOP: u32 = 34; -pub const IP_ADD_MEMBERSHIP: u32 = 35; -pub const IP_DROP_MEMBERSHIP: u32 = 36; -pub const IP_UNBLOCK_SOURCE: u32 = 37; -pub const IP_BLOCK_SOURCE: u32 = 38; -pub const IP_ADD_SOURCE_MEMBERSHIP: u32 = 39; -pub const IP_DROP_SOURCE_MEMBERSHIP: u32 = 40; -pub const IP_MSFILTER: u32 = 41; -pub const MCAST_JOIN_GROUP: u32 = 42; -pub const MCAST_BLOCK_SOURCE: u32 = 43; -pub const MCAST_UNBLOCK_SOURCE: u32 = 44; -pub const MCAST_LEAVE_GROUP: u32 = 45; -pub const MCAST_JOIN_SOURCE_GROUP: u32 = 46; -pub const MCAST_LEAVE_SOURCE_GROUP: u32 = 47; -pub const MCAST_MSFILTER: u32 = 48; -pub const IP_MULTICAST_ALL: u32 = 49; -pub const IP_UNICAST_IF: u32 = 50; -pub const MCAST_EXCLUDE: u32 = 0; -pub const MCAST_INCLUDE: u32 = 1; -pub const IP_DEFAULT_MULTICAST_TTL: u32 = 1; -pub const IP_DEFAULT_MULTICAST_LOOP: u32 = 1; -pub const __SOCK_SIZE__: u32 = 16; -pub const IN_CLASSA_NET: u32 = 4278190080; -pub const IN_CLASSA_NSHIFT: u32 = 24; -pub const IN_CLASSA_HOST: u32 = 16777215; -pub const IN_CLASSA_MAX: u32 = 128; -pub const IN_CLASSB_NET: u32 = 4294901760; -pub const IN_CLASSB_NSHIFT: u32 = 16; -pub const IN_CLASSB_HOST: u32 = 65535; -pub const IN_CLASSB_MAX: u32 = 65536; -pub const IN_CLASSC_NET: u32 = 4294967040; -pub const IN_CLASSC_NSHIFT: u32 = 8; -pub const IN_CLASSC_HOST: u32 = 255; -pub const IN_MULTICAST_NET: u32 = 3758096384; -pub const IN_CLASSE_NET: u32 = 4294967295; -pub const IN_CLASSE_NSHIFT: u32 = 0; -pub const IN_LOOPBACKNET: u32 = 127; -pub const INADDR_LOOPBACK: u32 = 2130706433; -pub const INADDR_UNSPEC_GROUP: u32 = 3758096384; -pub const INADDR_ALLHOSTS_GROUP: u32 = 3758096385; -pub const INADDR_ALLRTRS_GROUP: u32 = 3758096386; -pub const INADDR_ALLSNOOPERS_GROUP: u32 = 3758096490; -pub const INADDR_MAX_LOCAL_GROUP: u32 = 3758096639; -pub const __BIG_ENDIAN: u32 = 4321; pub const IN_ACCESS: u32 = 1; pub const IN_MODIFY: u32 = 2; pub const IN_ATTRIB: u32 = 4; @@ -780,173 +1462,6 @@ pub const IN_ONESHOT: u32 = 2147483648; pub const IN_ALL_EVENTS: u32 = 4095; pub const IN_CLOEXEC: u32 = 524288; pub const IN_NONBLOCK: u32 = 2048; -pub const IPTOS_TOS_MASK: u32 = 30; -pub const IPTOS_LOWDELAY: u32 = 16; -pub const IPTOS_THROUGHPUT: u32 = 8; -pub const IPTOS_RELIABILITY: u32 = 4; -pub const IPTOS_MINCOST: u32 = 2; -pub const IPTOS_PREC_MASK: u32 = 224; -pub const IPTOS_PREC_NETCONTROL: u32 = 224; -pub const IPTOS_PREC_INTERNETCONTROL: u32 = 192; -pub const IPTOS_PREC_CRITIC_ECP: u32 = 160; -pub const IPTOS_PREC_FLASHOVERRIDE: u32 = 128; -pub const IPTOS_PREC_FLASH: u32 = 96; -pub const IPTOS_PREC_IMMEDIATE: u32 = 64; -pub const IPTOS_PREC_PRIORITY: u32 = 32; -pub const IPTOS_PREC_ROUTINE: u32 = 0; -pub const IPOPT_COPY: u32 = 128; -pub const IPOPT_CLASS_MASK: u32 = 96; -pub const IPOPT_NUMBER_MASK: u32 = 31; -pub const IPOPT_CONTROL: u32 = 0; -pub const IPOPT_RESERVED1: u32 = 32; -pub const IPOPT_MEASUREMENT: u32 = 64; -pub const IPOPT_RESERVED2: u32 = 96; -pub const IPOPT_END: u32 = 0; -pub const IPOPT_NOOP: u32 = 1; -pub const IPOPT_SEC: u32 = 130; -pub const IPOPT_LSRR: u32 = 131; -pub const IPOPT_TIMESTAMP: u32 = 68; -pub const IPOPT_CIPSO: u32 = 134; -pub const IPOPT_RR: u32 = 7; -pub const IPOPT_SID: u32 = 136; -pub const IPOPT_SSRR: u32 = 137; -pub const IPOPT_RA: u32 = 148; -pub const IPVERSION: u32 = 4; -pub const MAXTTL: u32 = 255; -pub const IPDEFTTL: u32 = 64; -pub const IPOPT_OPTVAL: u32 = 0; -pub const IPOPT_OLEN: u32 = 1; -pub const IPOPT_OFFSET: u32 = 2; -pub const IPOPT_MINOFF: u32 = 4; -pub const MAX_IPOPTLEN: u32 = 40; -pub const IPOPT_NOP: u32 = 1; -pub const IPOPT_EOL: u32 = 0; -pub const IPOPT_TS: u32 = 68; -pub const IPOPT_TS_TSONLY: u32 = 0; -pub const IPOPT_TS_TSANDADDR: u32 = 1; -pub const IPOPT_TS_PRESPEC: u32 = 3; -pub const IPV4_BEET_PHMAXLEN: u32 = 8; -pub const IPV6_FL_A_GET: u32 = 0; -pub const IPV6_FL_A_PUT: u32 = 1; -pub const IPV6_FL_A_RENEW: u32 = 2; -pub const IPV6_FL_F_CREATE: u32 = 1; -pub const IPV6_FL_F_EXCL: u32 = 2; -pub const IPV6_FL_F_REFLECT: u32 = 4; -pub const IPV6_FL_F_REMOTE: u32 = 8; -pub const IPV6_FL_S_NONE: u32 = 0; -pub const IPV6_FL_S_EXCL: u32 = 1; -pub const IPV6_FL_S_PROCESS: u32 = 2; -pub const IPV6_FL_S_USER: u32 = 3; -pub const IPV6_FL_S_ANY: u32 = 255; -pub const IPV6_FLOWINFO_FLOWLABEL: u32 = 1048575; -pub const IPV6_FLOWINFO_PRIORITY: u32 = 267386880; -pub const IPV6_PRIORITY_UNCHARACTERIZED: u32 = 0; -pub const IPV6_PRIORITY_FILLER: u32 = 256; -pub const IPV6_PRIORITY_UNATTENDED: u32 = 512; -pub const IPV6_PRIORITY_RESERVED1: u32 = 768; -pub const IPV6_PRIORITY_BULK: u32 = 1024; -pub const IPV6_PRIORITY_RESERVED2: u32 = 1280; -pub const IPV6_PRIORITY_INTERACTIVE: u32 = 1536; -pub const IPV6_PRIORITY_CONTROL: u32 = 1792; -pub const IPV6_PRIORITY_8: u32 = 2048; -pub const IPV6_PRIORITY_9: u32 = 2304; -pub const IPV6_PRIORITY_10: u32 = 2560; -pub const IPV6_PRIORITY_11: u32 = 2816; -pub const IPV6_PRIORITY_12: u32 = 3072; -pub const IPV6_PRIORITY_13: u32 = 3328; -pub const IPV6_PRIORITY_14: u32 = 3584; -pub const IPV6_PRIORITY_15: u32 = 3840; -pub const IPPROTO_HOPOPTS: u32 = 0; -pub const IPPROTO_ROUTING: u32 = 43; -pub const IPPROTO_FRAGMENT: u32 = 44; -pub const IPPROTO_ICMPV6: u32 = 58; -pub const IPPROTO_NONE: u32 = 59; -pub const IPPROTO_DSTOPTS: u32 = 60; -pub const IPPROTO_MH: u32 = 135; -pub const IPV6_TLV_PAD1: u32 = 0; -pub const IPV6_TLV_PADN: u32 = 1; -pub const IPV6_TLV_ROUTERALERT: u32 = 5; -pub const IPV6_TLV_CALIPSO: u32 = 7; -pub const IPV6_TLV_IOAM: u32 = 49; -pub const IPV6_TLV_JUMBO: u32 = 194; -pub const IPV6_TLV_HAO: u32 = 201; -pub const IPV6_ADDRFORM: u32 = 1; -pub const IPV6_2292PKTINFO: u32 = 2; -pub const IPV6_2292HOPOPTS: u32 = 3; -pub const IPV6_2292DSTOPTS: u32 = 4; -pub const IPV6_2292RTHDR: u32 = 5; -pub const IPV6_2292PKTOPTIONS: u32 = 6; -pub const IPV6_CHECKSUM: u32 = 7; -pub const IPV6_2292HOPLIMIT: u32 = 8; -pub const IPV6_NEXTHOP: u32 = 9; -pub const IPV6_AUTHHDR: u32 = 10; -pub const IPV6_FLOWINFO: u32 = 11; -pub const IPV6_UNICAST_HOPS: u32 = 16; -pub const IPV6_MULTICAST_IF: u32 = 17; -pub const IPV6_MULTICAST_HOPS: u32 = 18; -pub const IPV6_MULTICAST_LOOP: u32 = 19; -pub const IPV6_ADD_MEMBERSHIP: u32 = 20; -pub const IPV6_DROP_MEMBERSHIP: u32 = 21; -pub const IPV6_ROUTER_ALERT: u32 = 22; -pub const IPV6_MTU_DISCOVER: u32 = 23; -pub const IPV6_MTU: u32 = 24; -pub const IPV6_RECVERR: u32 = 25; -pub const IPV6_V6ONLY: u32 = 26; -pub const IPV6_JOIN_ANYCAST: u32 = 27; -pub const IPV6_LEAVE_ANYCAST: u32 = 28; -pub const IPV6_MULTICAST_ALL: u32 = 29; -pub const IPV6_ROUTER_ALERT_ISOLATE: u32 = 30; -pub const IPV6_RECVERR_RFC4884: u32 = 31; -pub const IPV6_PMTUDISC_DONT: u32 = 0; -pub const IPV6_PMTUDISC_WANT: u32 = 1; -pub const IPV6_PMTUDISC_DO: u32 = 2; -pub const IPV6_PMTUDISC_PROBE: u32 = 3; -pub const IPV6_PMTUDISC_INTERFACE: u32 = 4; -pub const IPV6_PMTUDISC_OMIT: u32 = 5; -pub const IPV6_FLOWLABEL_MGR: u32 = 32; -pub const IPV6_FLOWINFO_SEND: u32 = 33; -pub const IPV6_IPSEC_POLICY: u32 = 34; -pub const IPV6_XFRM_POLICY: u32 = 35; -pub const IPV6_HDRINCL: u32 = 36; -pub const IPV6_RECVPKTINFO: u32 = 49; -pub const IPV6_PKTINFO: u32 = 50; -pub const IPV6_RECVHOPLIMIT: u32 = 51; -pub const IPV6_HOPLIMIT: u32 = 52; -pub const IPV6_RECVHOPOPTS: u32 = 53; -pub const IPV6_HOPOPTS: u32 = 54; -pub const IPV6_RTHDRDSTOPTS: u32 = 55; -pub const IPV6_RECVRTHDR: u32 = 56; -pub const IPV6_RTHDR: u32 = 57; -pub const IPV6_RECVDSTOPTS: u32 = 58; -pub const IPV6_DSTOPTS: u32 = 59; -pub const IPV6_RECVPATHMTU: u32 = 60; -pub const IPV6_PATHMTU: u32 = 61; -pub const IPV6_DONTFRAG: u32 = 62; -pub const IPV6_RECVTCLASS: u32 = 66; -pub const IPV6_TCLASS: u32 = 67; -pub const IPV6_AUTOFLOWLABEL: u32 = 70; -pub const IPV6_ADDR_PREFERENCES: u32 = 72; -pub const IPV6_PREFER_SRC_TMP: u32 = 1; -pub const IPV6_PREFER_SRC_PUBLIC: u32 = 2; -pub const IPV6_PREFER_SRC_PUBTMP_DEFAULT: u32 = 256; -pub const IPV6_PREFER_SRC_COA: u32 = 4; -pub const IPV6_PREFER_SRC_HOME: u32 = 1024; -pub const IPV6_PREFER_SRC_CGA: u32 = 8; -pub const IPV6_PREFER_SRC_NONCGA: u32 = 2048; -pub const IPV6_MINHOPCOUNT: u32 = 73; -pub const IPV6_ORIGDSTADDR: u32 = 74; -pub const IPV6_RECVORIGDSTADDR: u32 = 74; -pub const IPV6_TRANSPARENT: u32 = 75; -pub const IPV6_UNICAST_IF: u32 = 76; -pub const IPV6_RECVFRAGSIZE: u32 = 77; -pub const IPV6_FREEBIND: u32 = 78; -pub const IPV6_MIN_MTU: u32 = 1280; -pub const IPV6_SRCRT_STRICT: u32 = 1; -pub const IPV6_SRCRT_TYPE_0: u32 = 0; -pub const IPV6_SRCRT_TYPE_2: u32 = 2; -pub const IPV6_SRCRT_TYPE_3: u32 = 3; -pub const IPV6_SRCRT_TYPE_4: u32 = 4; -pub const IPV6_OPT_ROUTERALERT_MLD: u32 = 0; pub const ADFS_SUPER_MAGIC: u32 = 44533; pub const AFFS_SUPER_MAGIC: u32 = 44543; pub const AFS_SUPER_MAGIC: u32 = 1397113167; @@ -1131,109 +1646,6 @@ pub const MAP_HUGE_512MB: u32 = 1946157056; pub const MAP_HUGE_1GB: u32 = 2013265920; pub const MAP_HUGE_2GB: u32 = 2080374784; pub const MAP_HUGE_16GB: u32 = 2281701376; -pub const SO_RCVLOWAT: u32 = 16; -pub const SO_SNDLOWAT: u32 = 17; -pub const SO_RCVTIMEO_OLD: u32 = 18; -pub const SO_SNDTIMEO_OLD: u32 = 19; -pub const SO_PASSCRED: u32 = 20; -pub const SO_PEERCRED: u32 = 21; -pub const SIOCGSTAMP_OLD: u32 = 35078; -pub const SIOCGSTAMPNS_OLD: u32 = 35079; -pub const SOL_SOCKET: u32 = 1; -pub const SO_DEBUG: u32 = 1; -pub const SO_REUSEADDR: u32 = 2; -pub const SO_TYPE: u32 = 3; -pub const SO_ERROR: u32 = 4; -pub const SO_DONTROUTE: u32 = 5; -pub const SO_BROADCAST: u32 = 6; -pub const SO_SNDBUF: u32 = 7; -pub const SO_RCVBUF: u32 = 8; -pub const SO_SNDBUFFORCE: u32 = 32; -pub const SO_RCVBUFFORCE: u32 = 33; -pub const SO_KEEPALIVE: u32 = 9; -pub const SO_OOBINLINE: u32 = 10; -pub const SO_NO_CHECK: u32 = 11; -pub const SO_PRIORITY: u32 = 12; -pub const SO_LINGER: u32 = 13; -pub const SO_BSDCOMPAT: u32 = 14; -pub const SO_REUSEPORT: u32 = 15; -pub const SO_SECURITY_AUTHENTICATION: u32 = 22; -pub const SO_SECURITY_ENCRYPTION_TRANSPORT: u32 = 23; -pub const SO_SECURITY_ENCRYPTION_NETWORK: u32 = 24; -pub const SO_BINDTODEVICE: u32 = 25; -pub const SO_ATTACH_FILTER: u32 = 26; -pub const SO_DETACH_FILTER: u32 = 27; -pub const SO_GET_FILTER: u32 = 26; -pub const SO_PEERNAME: u32 = 28; -pub const SO_ACCEPTCONN: u32 = 30; -pub const SO_PEERSEC: u32 = 31; -pub const SO_PASSSEC: u32 = 34; -pub const SO_MARK: u32 = 36; -pub const SO_PROTOCOL: u32 = 38; -pub const SO_DOMAIN: u32 = 39; -pub const SO_RXQ_OVFL: u32 = 40; -pub const SO_WIFI_STATUS: u32 = 41; -pub const SCM_WIFI_STATUS: u32 = 41; -pub const SO_PEEK_OFF: u32 = 42; -pub const SO_NOFCS: u32 = 43; -pub const SO_LOCK_FILTER: u32 = 44; -pub const SO_SELECT_ERR_QUEUE: u32 = 45; -pub const SO_BUSY_POLL: u32 = 46; -pub const SO_MAX_PACING_RATE: u32 = 47; -pub const SO_BPF_EXTENSIONS: u32 = 48; -pub const SO_INCOMING_CPU: u32 = 49; -pub const SO_ATTACH_BPF: u32 = 50; -pub const SO_DETACH_BPF: u32 = 27; -pub const SO_ATTACH_REUSEPORT_CBPF: u32 = 51; -pub const SO_ATTACH_REUSEPORT_EBPF: u32 = 52; -pub const SO_CNX_ADVICE: u32 = 53; -pub const SCM_TIMESTAMPING_OPT_STATS: u32 = 54; -pub const SO_MEMINFO: u32 = 55; -pub const SO_INCOMING_NAPI_ID: u32 = 56; -pub const SO_COOKIE: u32 = 57; -pub const SCM_TIMESTAMPING_PKTINFO: u32 = 58; -pub const SO_PEERGROUPS: u32 = 59; -pub const SO_ZEROCOPY: u32 = 60; -pub const SO_TXTIME: u32 = 61; -pub const SCM_TXTIME: u32 = 61; -pub const SO_BINDTOIFINDEX: u32 = 62; -pub const SO_TIMESTAMP_OLD: u32 = 29; -pub const SO_TIMESTAMPNS_OLD: u32 = 35; -pub const SO_TIMESTAMPING_OLD: u32 = 37; -pub const SO_TIMESTAMP_NEW: u32 = 63; -pub const SO_TIMESTAMPNS_NEW: u32 = 64; -pub const SO_TIMESTAMPING_NEW: u32 = 65; -pub const SO_RCVTIMEO_NEW: u32 = 66; -pub const SO_SNDTIMEO_NEW: u32 = 67; -pub const SO_DETACH_REUSEPORT_BPF: u32 = 68; -pub const SO_PREFER_BUSY_POLL: u32 = 69; -pub const SO_BUSY_POLL_BUDGET: u32 = 70; -pub const SO_NETNS_COOKIE: u32 = 71; -pub const SO_BUF_LOCK: u32 = 72; -pub const SO_RESERVE_MEM: u32 = 73; -pub const SO_TXREHASH: u32 = 74; -pub const SO_RCVMARK: u32 = 75; -pub const SYS_SOCKET: u32 = 1; -pub const SYS_BIND: u32 = 2; -pub const SYS_CONNECT: u32 = 3; -pub const SYS_LISTEN: u32 = 4; -pub const SYS_ACCEPT: u32 = 5; -pub const SYS_GETSOCKNAME: u32 = 6; -pub const SYS_GETPEERNAME: u32 = 7; -pub const SYS_SOCKETPAIR: u32 = 8; -pub const SYS_SEND: u32 = 9; -pub const SYS_RECV: u32 = 10; -pub const SYS_SENDTO: u32 = 11; -pub const SYS_RECVFROM: u32 = 12; -pub const SYS_SHUTDOWN: u32 = 13; -pub const SYS_SETSOCKOPT: u32 = 14; -pub const SYS_GETSOCKOPT: u32 = 15; -pub const SYS_SENDMSG: u32 = 16; -pub const SYS_RECVMSG: u32 = 17; -pub const SYS_ACCEPT4: u32 = 18; -pub const SYS_RECVMMSG: u32 = 19; -pub const SYS_SENDMMSG: u32 = 20; -pub const __SO_ACCEPTCON: u32 = 65536; pub const POLLIN: u32 = 1; pub const POLLPRI: u32 = 2; pub const POLLOUT: u32 = 4; @@ -1247,156 +1659,6 @@ pub const POLLWRBAND: u32 = 512; pub const POLLMSG: u32 = 1024; pub const POLLREMOVE: u32 = 4096; pub const POLLRDHUP: u32 = 8192; -pub const PR_SET_PDEATHSIG: u32 = 1; -pub const PR_GET_PDEATHSIG: u32 = 2; -pub const PR_GET_DUMPABLE: u32 = 3; -pub const PR_SET_DUMPABLE: u32 = 4; -pub const PR_GET_UNALIGN: u32 = 5; -pub const PR_SET_UNALIGN: u32 = 6; -pub const PR_UNALIGN_NOPRINT: u32 = 1; -pub const PR_UNALIGN_SIGBUS: u32 = 2; -pub const PR_GET_KEEPCAPS: u32 = 7; -pub const PR_SET_KEEPCAPS: u32 = 8; -pub const PR_GET_FPEMU: u32 = 9; -pub const PR_SET_FPEMU: u32 = 10; -pub const PR_FPEMU_NOPRINT: u32 = 1; -pub const PR_FPEMU_SIGFPE: u32 = 2; -pub const PR_GET_FPEXC: u32 = 11; -pub const PR_SET_FPEXC: u32 = 12; -pub const PR_FP_EXC_SW_ENABLE: u32 = 128; -pub const PR_FP_EXC_DIV: u32 = 65536; -pub const PR_FP_EXC_OVF: u32 = 131072; -pub const PR_FP_EXC_UND: u32 = 262144; -pub const PR_FP_EXC_RES: u32 = 524288; -pub const PR_FP_EXC_INV: u32 = 1048576; -pub const PR_FP_EXC_DISABLED: u32 = 0; -pub const PR_FP_EXC_NONRECOV: u32 = 1; -pub const PR_FP_EXC_ASYNC: u32 = 2; -pub const PR_FP_EXC_PRECISE: u32 = 3; -pub const PR_GET_TIMING: u32 = 13; -pub const PR_SET_TIMING: u32 = 14; -pub const PR_TIMING_STATISTICAL: u32 = 0; -pub const PR_TIMING_TIMESTAMP: u32 = 1; -pub const PR_SET_NAME: u32 = 15; -pub const PR_GET_NAME: u32 = 16; -pub const PR_GET_ENDIAN: u32 = 19; -pub const PR_SET_ENDIAN: u32 = 20; -pub const PR_ENDIAN_BIG: u32 = 0; -pub const PR_ENDIAN_LITTLE: u32 = 1; -pub const PR_ENDIAN_PPC_LITTLE: u32 = 2; -pub const PR_GET_SECCOMP: u32 = 21; -pub const PR_SET_SECCOMP: u32 = 22; -pub const PR_CAPBSET_READ: u32 = 23; -pub const PR_CAPBSET_DROP: u32 = 24; -pub const PR_GET_TSC: u32 = 25; -pub const PR_SET_TSC: u32 = 26; -pub const PR_TSC_ENABLE: u32 = 1; -pub const PR_TSC_SIGSEGV: u32 = 2; -pub const PR_GET_SECUREBITS: u32 = 27; -pub const PR_SET_SECUREBITS: u32 = 28; -pub const PR_SET_TIMERSLACK: u32 = 29; -pub const PR_GET_TIMERSLACK: u32 = 30; -pub const PR_TASK_PERF_EVENTS_DISABLE: u32 = 31; -pub const PR_TASK_PERF_EVENTS_ENABLE: u32 = 32; -pub const PR_MCE_KILL: u32 = 33; -pub const PR_MCE_KILL_CLEAR: u32 = 0; -pub const PR_MCE_KILL_SET: u32 = 1; -pub const PR_MCE_KILL_LATE: u32 = 0; -pub const PR_MCE_KILL_EARLY: u32 = 1; -pub const PR_MCE_KILL_DEFAULT: u32 = 2; -pub const PR_MCE_KILL_GET: u32 = 34; -pub const PR_SET_MM: u32 = 35; -pub const PR_SET_MM_START_CODE: u32 = 1; -pub const PR_SET_MM_END_CODE: u32 = 2; -pub const PR_SET_MM_START_DATA: u32 = 3; -pub const PR_SET_MM_END_DATA: u32 = 4; -pub const PR_SET_MM_START_STACK: u32 = 5; -pub const PR_SET_MM_START_BRK: u32 = 6; -pub const PR_SET_MM_BRK: u32 = 7; -pub const PR_SET_MM_ARG_START: u32 = 8; -pub const PR_SET_MM_ARG_END: u32 = 9; -pub const PR_SET_MM_ENV_START: u32 = 10; -pub const PR_SET_MM_ENV_END: u32 = 11; -pub const PR_SET_MM_AUXV: u32 = 12; -pub const PR_SET_MM_EXE_FILE: u32 = 13; -pub const PR_SET_MM_MAP: u32 = 14; -pub const PR_SET_MM_MAP_SIZE: u32 = 15; -pub const PR_SET_PTRACER: u32 = 1499557217; -pub const PR_SET_CHILD_SUBREAPER: u32 = 36; -pub const PR_GET_CHILD_SUBREAPER: u32 = 37; -pub const PR_SET_NO_NEW_PRIVS: u32 = 38; -pub const PR_GET_NO_NEW_PRIVS: u32 = 39; -pub const PR_GET_TID_ADDRESS: u32 = 40; -pub const PR_SET_THP_DISABLE: u32 = 41; -pub const PR_GET_THP_DISABLE: u32 = 42; -pub const PR_MPX_ENABLE_MANAGEMENT: u32 = 43; -pub const PR_MPX_DISABLE_MANAGEMENT: u32 = 44; -pub const PR_SET_FP_MODE: u32 = 45; -pub const PR_GET_FP_MODE: u32 = 46; -pub const PR_FP_MODE_FR: u32 = 1; -pub const PR_FP_MODE_FRE: u32 = 2; -pub const PR_CAP_AMBIENT: u32 = 47; -pub const PR_CAP_AMBIENT_IS_SET: u32 = 1; -pub const PR_CAP_AMBIENT_RAISE: u32 = 2; -pub const PR_CAP_AMBIENT_LOWER: u32 = 3; -pub const PR_CAP_AMBIENT_CLEAR_ALL: u32 = 4; -pub const PR_SVE_SET_VL: u32 = 50; -pub const PR_SVE_SET_VL_ONEXEC: u32 = 262144; -pub const PR_SVE_GET_VL: u32 = 51; -pub const PR_SVE_VL_LEN_MASK: u32 = 65535; -pub const PR_SVE_VL_INHERIT: u32 = 131072; -pub const PR_GET_SPECULATION_CTRL: u32 = 52; -pub const PR_SET_SPECULATION_CTRL: u32 = 53; -pub const PR_SPEC_STORE_BYPASS: u32 = 0; -pub const PR_SPEC_INDIRECT_BRANCH: u32 = 1; -pub const PR_SPEC_L1D_FLUSH: u32 = 2; -pub const PR_SPEC_NOT_AFFECTED: u32 = 0; -pub const PR_SPEC_PRCTL: u32 = 1; -pub const PR_SPEC_ENABLE: u32 = 2; -pub const PR_SPEC_DISABLE: u32 = 4; -pub const PR_SPEC_FORCE_DISABLE: u32 = 8; -pub const PR_SPEC_DISABLE_NOEXEC: u32 = 16; -pub const PR_PAC_RESET_KEYS: u32 = 54; -pub const PR_PAC_APIAKEY: u32 = 1; -pub const PR_PAC_APIBKEY: u32 = 2; -pub const PR_PAC_APDAKEY: u32 = 4; -pub const PR_PAC_APDBKEY: u32 = 8; -pub const PR_PAC_APGAKEY: u32 = 16; -pub const PR_SET_TAGGED_ADDR_CTRL: u32 = 55; -pub const PR_GET_TAGGED_ADDR_CTRL: u32 = 56; -pub const PR_TAGGED_ADDR_ENABLE: u32 = 1; -pub const PR_MTE_TCF_NONE: u32 = 0; -pub const PR_MTE_TCF_SYNC: u32 = 2; -pub const PR_MTE_TCF_ASYNC: u32 = 4; -pub const PR_MTE_TCF_MASK: u32 = 6; -pub const PR_MTE_TAG_SHIFT: u32 = 3; -pub const PR_MTE_TAG_MASK: u32 = 524280; -pub const PR_MTE_TCF_SHIFT: u32 = 1; -pub const PR_SET_IO_FLUSHER: u32 = 57; -pub const PR_GET_IO_FLUSHER: u32 = 58; -pub const PR_SET_SYSCALL_USER_DISPATCH: u32 = 59; -pub const PR_SYS_DISPATCH_OFF: u32 = 0; -pub const PR_SYS_DISPATCH_ON: u32 = 1; -pub const SYSCALL_DISPATCH_FILTER_ALLOW: u32 = 0; -pub const SYSCALL_DISPATCH_FILTER_BLOCK: u32 = 1; -pub const PR_PAC_SET_ENABLED_KEYS: u32 = 60; -pub const PR_PAC_GET_ENABLED_KEYS: u32 = 61; -pub const PR_SCHED_CORE: u32 = 62; -pub const PR_SCHED_CORE_GET: u32 = 0; -pub const PR_SCHED_CORE_CREATE: u32 = 1; -pub const PR_SCHED_CORE_SHARE_TO: u32 = 2; -pub const PR_SCHED_CORE_SHARE_FROM: u32 = 3; -pub const PR_SCHED_CORE_MAX: u32 = 4; -pub const PR_SCHED_CORE_SCOPE_THREAD: u32 = 0; -pub const PR_SCHED_CORE_SCOPE_THREAD_GROUP: u32 = 1; -pub const PR_SCHED_CORE_SCOPE_PROCESS_GROUP: u32 = 2; -pub const PR_SME_SET_VL: u32 = 63; -pub const PR_SME_SET_VL_ONEXEC: u32 = 262144; -pub const PR_SME_GET_VL: u32 = 64; -pub const PR_SME_VL_LEN_MASK: u32 = 65535; -pub const PR_SME_VL_INHERIT: u32 = 131072; -pub const PR_SET_VMA: u32 = 1398164801; -pub const PR_SET_VMA_ANON_NAME: u32 = 0; pub const GRND_NONBLOCK: u32 = 1; pub const GRND_RANDOM: u32 = 2; pub const GRND_INSECURE: u32 = 4; @@ -1695,59 +1957,6 @@ pub const STATX_ATTR_AUTOMOUNT: u32 = 4096; pub const STATX_ATTR_MOUNT_ROOT: u32 = 8192; pub const STATX_ATTR_VERITY: u32 = 1048576; pub const STATX_ATTR_DAX: u32 = 2097152; -pub const SI_LOAD_SHIFT: u32 = 16; -pub const TCP_MSS_DEFAULT: u32 = 536; -pub const TCP_MSS_DESIRED: u32 = 1220; -pub const TCP_NODELAY: u32 = 1; -pub const TCP_MAXSEG: u32 = 2; -pub const TCP_CORK: u32 = 3; -pub const TCP_KEEPIDLE: u32 = 4; -pub const TCP_KEEPINTVL: u32 = 5; -pub const TCP_KEEPCNT: u32 = 6; -pub const TCP_SYNCNT: u32 = 7; -pub const TCP_LINGER2: u32 = 8; -pub const TCP_DEFER_ACCEPT: u32 = 9; -pub const TCP_WINDOW_CLAMP: u32 = 10; -pub const TCP_INFO: u32 = 11; -pub const TCP_QUICKACK: u32 = 12; -pub const TCP_CONGESTION: u32 = 13; -pub const TCP_MD5SIG: u32 = 14; -pub const TCP_THIN_LINEAR_TIMEOUTS: u32 = 16; -pub const TCP_THIN_DUPACK: u32 = 17; -pub const TCP_USER_TIMEOUT: u32 = 18; -pub const TCP_REPAIR: u32 = 19; -pub const TCP_REPAIR_QUEUE: u32 = 20; -pub const TCP_QUEUE_SEQ: u32 = 21; -pub const TCP_REPAIR_OPTIONS: u32 = 22; -pub const TCP_FASTOPEN: u32 = 23; -pub const TCP_TIMESTAMP: u32 = 24; -pub const TCP_NOTSENT_LOWAT: u32 = 25; -pub const TCP_CC_INFO: u32 = 26; -pub const TCP_SAVE_SYN: u32 = 27; -pub const TCP_SAVED_SYN: u32 = 28; -pub const TCP_REPAIR_WINDOW: u32 = 29; -pub const TCP_FASTOPEN_CONNECT: u32 = 30; -pub const TCP_ULP: u32 = 31; -pub const TCP_MD5SIG_EXT: u32 = 32; -pub const TCP_FASTOPEN_KEY: u32 = 33; -pub const TCP_FASTOPEN_NO_COOKIE: u32 = 34; -pub const TCP_ZEROCOPY_RECEIVE: u32 = 35; -pub const TCP_INQ: u32 = 36; -pub const TCP_CM_INQ: u32 = 36; -pub const TCP_TX_DELAY: u32 = 37; -pub const TCP_REPAIR_ON: u32 = 1; -pub const TCP_REPAIR_OFF: u32 = 0; -pub const TCP_REPAIR_OFF_NO_WP: i32 = -1; -pub const TCPI_OPT_TIMESTAMPS: u32 = 1; -pub const TCPI_OPT_SACK: u32 = 2; -pub const TCPI_OPT_WSCALE: u32 = 4; -pub const TCPI_OPT_ECN: u32 = 8; -pub const TCPI_OPT_ECN_SEEN: u32 = 16; -pub const TCPI_OPT_SYN_DATA: u32 = 32; -pub const TCP_MD5SIG_MAXKEYLEN: u32 = 80; -pub const TCP_MD5SIG_FLAG_PREFIX: u32 = 1; -pub const TCP_MD5SIG_FLAG_IFINDEX: u32 = 2; -pub const TCP_RECEIVE_ZEROCOPY_FLAG_TLB_CLEAN_HINT: u32 = 1; pub const TIOCM_LE: u32 = 1; pub const TIOCM_DTR: u32 = 2; pub const TIOCM_RTS: u32 = 4; @@ -1928,7 +2137,6 @@ pub const _VEOL2: u32 = 8; pub const _VSWTC: u32 = 9; pub const UIO_FASTIOV: u32 = 8; pub const UIO_MAXIOV: u32 = 1024; -pub const UNIX_PATH_MAX: u32 = 108; pub const __NR_restart_syscall: u32 = 0; pub const __NR_exit: u32 = 1; pub const __NR_fork: u32 = 2; @@ -2360,8 +2568,6 @@ pub const __NR_landlock_restrict_self: u32 = 446; pub const __NR_process_mrelease: u32 = 448; pub const __NR_futex_waitv: u32 = 449; pub const __NR_set_mempolicy_home_node: u32 = 450; -pub const __OLD_UTS_LEN: u32 = 8; -pub const __NEW_UTS_LEN: u32 = 64; pub const WNOHANG: u32 = 1; pub const WUNTRACED: u32 = 2; pub const WSTOPPED: u32 = 2; @@ -2414,6 +2620,8 @@ pub const XATTR_NAME_POSIX_ACL_DEFAULT: &[u8; 25usize] = b"system.posix_acl_defa pub const MFD_CLOEXEC: u32 = 1; pub const MFD_ALLOW_SEALING: u32 = 2; pub const MFD_HUGETLB: u32 = 4; +pub const MFD_NOEXEC_SEAL: u32 = 8; +pub const MFD_EXEC: u32 = 16; pub const MFD_HUGE_SHIFT: u32 = 26; pub const MFD_HUGE_MASK: u32 = 63; pub const MFD_HUGE_64KB: u32 = 1073741824; @@ -2464,79 +2672,6 @@ pub const UFFD_FEATURE_MINOR_SHMEM: u32 = 1024; pub const UFFD_FEATURE_EXACT_ADDRESS: u32 = 2048; pub const UFFD_FEATURE_WP_HUGETLBFS_SHMEM: u32 = 4096; pub const UFFD_USER_MODE_ONLY: u32 = 1; -pub const IORING_FILE_INDEX_ALLOC: i32 = -1; -pub const IORING_SETUP_IOPOLL: u32 = 1; -pub const IORING_SETUP_SQPOLL: u32 = 2; -pub const IORING_SETUP_SQ_AFF: u32 = 4; -pub const IORING_SETUP_CQSIZE: u32 = 8; -pub const IORING_SETUP_CLAMP: u32 = 16; -pub const IORING_SETUP_ATTACH_WQ: u32 = 32; -pub const IORING_SETUP_R_DISABLED: u32 = 64; -pub const IORING_SETUP_SUBMIT_ALL: u32 = 128; -pub const IORING_SETUP_COOP_TASKRUN: u32 = 256; -pub const IORING_SETUP_TASKRUN_FLAG: u32 = 512; -pub const IORING_SETUP_SQE128: u32 = 1024; -pub const IORING_SETUP_CQE32: u32 = 2048; -pub const IORING_SETUP_SINGLE_ISSUER: u32 = 4096; -pub const IORING_SETUP_DEFER_TASKRUN: u32 = 8192; -pub const IORING_URING_CMD_FIXED: u32 = 1; -pub const IORING_FSYNC_DATASYNC: u32 = 1; -pub const IORING_TIMEOUT_ABS: u32 = 1; -pub const IORING_TIMEOUT_UPDATE: u32 = 2; -pub const IORING_TIMEOUT_BOOTTIME: u32 = 4; -pub const IORING_TIMEOUT_REALTIME: u32 = 8; -pub const IORING_LINK_TIMEOUT_UPDATE: u32 = 16; -pub const IORING_TIMEOUT_ETIME_SUCCESS: u32 = 32; -pub const IORING_TIMEOUT_CLOCK_MASK: u32 = 12; -pub const IORING_TIMEOUT_UPDATE_MASK: u32 = 18; -pub const SPLICE_F_FD_IN_FIXED: u32 = 2147483648; -pub const IORING_POLL_ADD_MULTI: u32 = 1; -pub const IORING_POLL_UPDATE_EVENTS: u32 = 2; -pub const IORING_POLL_UPDATE_USER_DATA: u32 = 4; -pub const IORING_POLL_ADD_LEVEL: u32 = 8; -pub const IORING_ASYNC_CANCEL_ALL: u32 = 1; -pub const IORING_ASYNC_CANCEL_FD: u32 = 2; -pub const IORING_ASYNC_CANCEL_ANY: u32 = 4; -pub const IORING_ASYNC_CANCEL_FD_FIXED: u32 = 8; -pub const IORING_RECVSEND_POLL_FIRST: u32 = 1; -pub const IORING_RECV_MULTISHOT: u32 = 2; -pub const IORING_RECVSEND_FIXED_BUF: u32 = 4; -pub const IORING_SEND_ZC_REPORT_USAGE: u32 = 8; -pub const IORING_NOTIF_USAGE_ZC_COPIED: u32 = 2147483648; -pub const IORING_ACCEPT_MULTISHOT: u32 = 1; -pub const IORING_MSG_RING_CQE_SKIP: u32 = 1; -pub const IORING_CQE_F_BUFFER: u32 = 1; -pub const IORING_CQE_F_MORE: u32 = 2; -pub const IORING_CQE_F_SOCK_NONEMPTY: u32 = 4; -pub const IORING_CQE_F_NOTIF: u32 = 8; -pub const IORING_OFF_SQ_RING: u32 = 0; -pub const IORING_OFF_CQ_RING: u32 = 134217728; -pub const IORING_OFF_SQES: u32 = 268435456; -pub const IORING_SQ_NEED_WAKEUP: u32 = 1; -pub const IORING_SQ_CQ_OVERFLOW: u32 = 2; -pub const IORING_SQ_TASKRUN: u32 = 4; -pub const IORING_CQ_EVENTFD_DISABLED: u32 = 1; -pub const IORING_ENTER_GETEVENTS: u32 = 1; -pub const IORING_ENTER_SQ_WAKEUP: u32 = 2; -pub const IORING_ENTER_SQ_WAIT: u32 = 4; -pub const IORING_ENTER_EXT_ARG: u32 = 8; -pub const IORING_ENTER_REGISTERED_RING: u32 = 16; -pub const IORING_FEAT_SINGLE_MMAP: u32 = 1; -pub const IORING_FEAT_NODROP: u32 = 2; -pub const IORING_FEAT_SUBMIT_STABLE: u32 = 4; -pub const IORING_FEAT_RW_CUR_POS: u32 = 8; -pub const IORING_FEAT_CUR_PERSONALITY: u32 = 16; -pub const IORING_FEAT_FAST_POLL: u32 = 32; -pub const IORING_FEAT_POLL_32BITS: u32 = 64; -pub const IORING_FEAT_SQPOLL_NONFIXED: u32 = 128; -pub const IORING_FEAT_EXT_ARG: u32 = 256; -pub const IORING_FEAT_NATIVE_WORKERS: u32 = 512; -pub const IORING_FEAT_RSRC_TAGS: u32 = 1024; -pub const IORING_FEAT_CQE_SKIP: u32 = 2048; -pub const IORING_FEAT_LINKED_FILE: u32 = 4096; -pub const IORING_RSRC_REGISTER_SPARSE: u32 = 1; -pub const IORING_REGISTER_FILES_SKIP: i32 = -2; -pub const IO_URING_OP_SUPPORTED: u32 = 1; pub const DT_UNKNOWN: u32 = 0; pub const DT_FIFO: u32 = 1; pub const DT_CHR: u32 = 2; @@ -2545,74 +2680,18 @@ pub const DT_BLK: u32 = 6; pub const DT_REG: u32 = 8; pub const DT_LNK: u32 = 10; pub const DT_SOCK: u32 = 12; -pub const SHUT_RD: u32 = 0; -pub const SHUT_WR: u32 = 1; -pub const SHUT_RDWR: u32 = 2; pub const STAT_HAVE_NSEC: u32 = 1; -pub const SOCK_STREAM: u32 = 1; -pub const SOCK_DGRAM: u32 = 2; -pub const SOCK_RAW: u32 = 3; -pub const SOCK_RDM: u32 = 4; -pub const SOCK_SEQPACKET: u32 = 5; pub const F_OK: u32 = 0; pub const R_OK: u32 = 4; pub const W_OK: u32 = 2; pub const X_OK: u32 = 1; pub const UTIME_NOW: u32 = 1073741823; pub const UTIME_OMIT: u32 = 1073741822; -pub const MSG_DONTWAIT: u32 = 64; -pub const AF_UNSPEC: u32 = 0; -pub const AF_UNIX: u32 = 1; -pub const AF_INET: u32 = 2; -pub const AF_AX25: u32 = 3; -pub const AF_IPX: u32 = 4; -pub const AF_APPLETALK: u32 = 5; -pub const AF_NETROM: u32 = 6; -pub const AF_BRIDGE: u32 = 7; -pub const AF_ATMPVC: u32 = 8; -pub const AF_X25: u32 = 9; -pub const AF_INET6: u32 = 10; -pub const AF_ROSE: u32 = 11; -pub const AF_DECnet: u32 = 12; -pub const AF_NETBEUI: u32 = 13; -pub const AF_SECURITY: u32 = 14; -pub const AF_KEY: u32 = 15; -pub const AF_NETLINK: u32 = 16; -pub const AF_PACKET: u32 = 17; -pub const AF_ASH: u32 = 18; -pub const AF_ECONET: u32 = 19; -pub const AF_ATMSVC: u32 = 20; -pub const AF_RDS: u32 = 21; -pub const AF_SNA: u32 = 22; -pub const AF_IRDA: u32 = 23; -pub const AF_PPPOX: u32 = 24; -pub const AF_WANPIPE: u32 = 25; -pub const AF_LLC: u32 = 26; -pub const AF_CAN: u32 = 29; -pub const AF_TIPC: u32 = 30; -pub const AF_BLUETOOTH: u32 = 31; -pub const AF_IUCV: u32 = 32; -pub const AF_RXRPC: u32 = 33; -pub const AF_ISDN: u32 = 34; -pub const AF_PHONET: u32 = 35; -pub const AF_IEEE802154: u32 = 36; -pub const AF_MAX: u32 = 37; -pub const MSG_OOB: u32 = 1; -pub const MSG_PEEK: u32 = 2; -pub const MSG_DONTROUTE: u32 = 4; -pub const MSG_CTRUNC: u32 = 8; -pub const MSG_PROBE: u32 = 16; -pub const MSG_TRUNC: u32 = 32; -pub const MSG_EOR: u32 = 128; -pub const MSG_WAITALL: u32 = 256; -pub const MSG_FIN: u32 = 512; -pub const MSG_SYN: u32 = 1024; -pub const MSG_CONFIRM: u32 = 2048; -pub const MSG_RST: u32 = 4096; -pub const MSG_ERRQUEUE: u32 = 8192; -pub const MSG_NOSIGNAL: u32 = 16384; -pub const MSG_MORE: u32 = 32768; -pub const MSG_CMSG_CLOEXEC: u32 = 1073741824; +pub const MNT_FORCE: u32 = 1; +pub const MNT_DETACH: u32 = 2; +pub const MNT_EXPIRE: u32 = 4; +pub const UMOUNT_NOFOLLOW: u32 = 8; +pub const UMOUNT_UNUSED: u32 = 2147483648; pub const STDIN_FILENO: u32 = 0; pub const STDOUT_FILENO: u32 = 1; pub const STDERR_FILENO: u32 = 2; @@ -2643,9 +2722,6 @@ pub const EPOLLET: u32 = 2147483648; pub const TFD_SHARED_FCNTL_FLAGS: u32 = 526336; pub const TFD_CREATE_FLAGS: u32 = 526336; pub const TFD_SETTIME_FLAGS: u32 = 1; -pub const SCM_RIGHTS: u32 = 1; -pub const SCM_CREDENTIALS: u32 = 2; -pub const SCM_SECURITY: u32 = 3; pub const UFFD_API: u32 = 170; pub const UFFDIO_REGISTER_MODE_MISSING: u32 = 1; pub const UFFDIO_REGISTER_MODE_WP: u32 = 2; @@ -2657,240 +2733,6 @@ pub const SPLICE_F_MOVE: u32 = 1; pub const SPLICE_F_NONBLOCK: u32 = 2; pub const SPLICE_F_MORE: u32 = 4; pub const SPLICE_F_GIFT: u32 = 8; -pub const MNT_FORCE: u32 = 1; -pub const MNT_DETACH: u32 = 2; -pub const MNT_EXPIRE: u32 = 4; -pub const UMOUNT_NOFOLLOW: u32 = 8; -pub const UMOUNT_UNUSED: u32 = 2147483648; -pub type size_t = crate::ctypes::c_uint; -pub type ssize_t = crate::ctypes::c_int; -pub type __s8 = crate::ctypes::c_schar; -pub type __u8 = crate::ctypes::c_uchar; -pub type __s16 = crate::ctypes::c_short; -pub type __u16 = crate::ctypes::c_ushort; -pub type __s32 = crate::ctypes::c_int; -pub type __u32 = crate::ctypes::c_uint; -pub type __s64 = crate::ctypes::c_longlong; -pub type __u64 = crate::ctypes::c_ulonglong; -#[repr(C)] -#[repr(align(16))] -#[derive(Debug, Copy, Clone)] -pub struct __vector128 { -pub u: [__u32; 4usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_fd_set { -pub fds_bits: [crate::ctypes::c_ulong; 32usize], -} -pub type __kernel_sighandler_t = ::core::option::Option<unsafe extern "C" fn(arg1: crate::ctypes::c_int)>; -pub type __kernel_key_t = crate::ctypes::c_int; -pub type __kernel_mqd_t = crate::ctypes::c_int; -pub type __kernel_ipc_pid_t = crate::ctypes::c_short; -pub type __kernel_long_t = crate::ctypes::c_long; -pub type __kernel_ulong_t = crate::ctypes::c_ulong; -pub type __kernel_ino_t = __kernel_ulong_t; -pub type __kernel_mode_t = crate::ctypes::c_uint; -pub type __kernel_pid_t = crate::ctypes::c_int; -pub type __kernel_uid_t = crate::ctypes::c_uint; -pub type __kernel_gid_t = crate::ctypes::c_uint; -pub type __kernel_suseconds_t = __kernel_long_t; -pub type __kernel_daddr_t = crate::ctypes::c_int; -pub type __kernel_uid32_t = crate::ctypes::c_uint; -pub type __kernel_gid32_t = crate::ctypes::c_uint; -pub type __kernel_old_uid_t = __kernel_uid_t; -pub type __kernel_old_gid_t = __kernel_gid_t; -pub type __kernel_old_dev_t = crate::ctypes::c_uint; -pub type __kernel_size_t = crate::ctypes::c_uint; -pub type __kernel_ssize_t = crate::ctypes::c_int; -pub type __kernel_ptrdiff_t = crate::ctypes::c_int; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_fsid_t { -pub val: [crate::ctypes::c_int; 2usize], -} -pub type __kernel_off_t = __kernel_long_t; -pub type __kernel_loff_t = crate::ctypes::c_longlong; -pub type __kernel_old_time_t = __kernel_long_t; -pub type __kernel_time_t = __kernel_long_t; -pub type __kernel_time64_t = crate::ctypes::c_longlong; -pub type __kernel_clock_t = __kernel_long_t; -pub type __kernel_timer_t = crate::ctypes::c_int; -pub type __kernel_clockid_t = crate::ctypes::c_int; -pub type __kernel_caddr_t = *mut crate::ctypes::c_char; -pub type __kernel_uid16_t = crate::ctypes::c_ushort; -pub type __kernel_gid16_t = crate::ctypes::c_ushort; -pub type __le16 = __u16; -pub type __be16 = __u16; -pub type __le32 = __u32; -pub type __be32 = __u32; -pub type __le64 = __u64; -pub type __be64 = __u64; -pub type __sum16 = __u16; -pub type __wsum = __u32; -pub type __poll_t = crate::ctypes::c_uint; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __user_cap_header_struct { -pub version: __u32, -pub pid: crate::ctypes::c_int, -} -pub type cap_user_header_t = *mut __user_cap_header_struct; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __user_cap_data_struct { -pub effective: __u32, -pub permitted: __u32, -pub inheritable: __u32, -} -pub type cap_user_data_t = *mut __user_cap_data_struct; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct vfs_cap_data { -pub magic_etc: __le32, -pub data: [vfs_cap_data__bindgen_ty_1; 2usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct vfs_cap_data__bindgen_ty_1 { -pub permitted: __le32, -pub inheritable: __le32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct vfs_ns_cap_data { -pub magic_etc: __le32, -pub data: [vfs_ns_cap_data__bindgen_ty_1; 2usize], -pub rootid: __le32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct vfs_ns_cap_data__bindgen_ty_1 { -pub permitted: __le32, -pub inheritable: __le32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct f_owner_ex { -pub type_: crate::ctypes::c_int, -pub pid: __kernel_pid_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct flock { -pub l_type: crate::ctypes::c_short, -pub l_whence: crate::ctypes::c_short, -pub l_start: __kernel_off_t, -pub l_len: __kernel_off_t, -pub l_pid: __kernel_pid_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct flock64 { -pub l_type: crate::ctypes::c_short, -pub l_whence: crate::ctypes::c_short, -pub l_start: __kernel_loff_t, -pub l_len: __kernel_loff_t, -pub l_pid: __kernel_pid_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct open_how { -pub flags: __u64, -pub mode: __u64, -pub resolve: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct epoll_event { -pub events: __poll_t, -pub data: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct fscrypt_policy_v1 { -pub version: __u8, -pub contents_encryption_mode: __u8, -pub filenames_encryption_mode: __u8, -pub flags: __u8, -pub master_key_descriptor: [__u8; 8usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct fscrypt_key { -pub mode: __u32, -pub raw: [__u8; 64usize], -pub size: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct fscrypt_policy_v2 { -pub version: __u8, -pub contents_encryption_mode: __u8, -pub filenames_encryption_mode: __u8, -pub flags: __u8, -pub __reserved: [__u8; 4usize], -pub master_key_identifier: [__u8; 16usize], -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct fscrypt_get_policy_ex_arg { -pub policy_size: __u64, -pub policy: fscrypt_get_policy_ex_arg__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union fscrypt_get_policy_ex_arg__bindgen_ty_1 { -pub version: __u8, -pub v1: fscrypt_policy_v1, -pub v2: fscrypt_policy_v2, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct fscrypt_key_specifier { -pub type_: __u32, -pub __reserved: __u32, -pub u: fscrypt_key_specifier__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union fscrypt_key_specifier__bindgen_ty_1 { -pub __reserved: [__u8; 32usize], -pub descriptor: [__u8; 8usize], -pub identifier: [__u8; 16usize], -} -#[repr(C)] -#[derive(Debug)] -pub struct fscrypt_provisioning_key_payload { -pub type_: __u32, -pub __reserved: __u32, -pub raw: __IncompleteArrayField<__u8>, -} -#[repr(C)] -pub struct fscrypt_add_key_arg { -pub key_spec: fscrypt_key_specifier, -pub raw_size: __u32, -pub key_id: __u32, -pub __reserved: [__u32; 8usize], -pub raw: __IncompleteArrayField<__u8>, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct fscrypt_remove_key_arg { -pub key_spec: fscrypt_key_specifier, -pub removal_status_flags: __u32, -pub __reserved: [__u32; 5usize], -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct fscrypt_get_key_status_arg { -pub key_spec: fscrypt_key_specifier, -pub __reserved: [__u32; 6usize], -pub status: __u32, -pub status_flags: __u32, -pub user_count: __u32, -pub __out_reserved: [__u32; 13usize], -} #[repr(u32)] #[non_exhaustive] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] @@ -2904,935 +2746,41 @@ FSCONFIG_SET_FD = 5, FSCONFIG_CMD_CREATE = 6, FSCONFIG_CMD_RECONFIGURE = 7, } -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct mount_attr { -pub attr_set: __u64, -pub attr_clr: __u64, -pub propagation: __u64, -pub userns_fd: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct file_clone_range { -pub src_fd: __s64, -pub src_offset: __u64, -pub src_length: __u64, -pub dest_offset: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct fstrim_range { -pub start: __u64, -pub len: __u64, -pub minlen: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct file_dedupe_range_info { -pub dest_fd: __s64, -pub dest_offset: __u64, -pub bytes_deduped: __u64, -pub status: __s32, -pub reserved: __u32, -} -#[repr(C)] -#[derive(Debug)] -pub struct file_dedupe_range { -pub src_offset: __u64, -pub src_length: __u64, -pub dest_count: __u16, -pub reserved1: __u16, -pub reserved2: __u32, -pub info: __IncompleteArrayField<file_dedupe_range_info>, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct files_stat_struct { -pub nr_files: crate::ctypes::c_ulong, -pub nr_free_files: crate::ctypes::c_ulong, -pub max_files: crate::ctypes::c_ulong, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct inodes_stat_t { -pub nr_inodes: crate::ctypes::c_long, -pub nr_unused: crate::ctypes::c_long, -pub dummy: [crate::ctypes::c_long; 5usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct fsxattr { -pub fsx_xflags: __u32, -pub fsx_extsize: __u32, -pub fsx_nextents: __u32, -pub fsx_projid: __u32, -pub fsx_cowextsize: __u32, -pub fsx_pad: [crate::ctypes::c_uchar; 8usize], -} -pub type __kernel_rwf_t = crate::ctypes::c_int; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct futex_waitv { -pub val: __u64, -pub uaddr: __u64, -pub flags: __u32, -pub __reserved: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct robust_list { -pub next: *mut robust_list, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct robust_list_head { -pub list: robust_list, -pub futex_offset: crate::ctypes::c_long, -pub list_op_pending: *mut robust_list, -} -pub type __kernel_sa_family_t = crate::ctypes::c_ushort; -#[repr(C)] -#[derive(Copy, Clone)] -pub struct __kernel_sockaddr_storage { -pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union __kernel_sockaddr_storage__bindgen_ty_1 { -pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1, -pub __align: *mut crate::ctypes::c_void, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1 { -pub ss_family: __kernel_sa_family_t, -pub __data: [crate::ctypes::c_char; 126usize], -} -pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP; -pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP; -pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP; -pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP; -pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_TCP; -pub const IPPROTO_EGP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_EGP; -pub const IPPROTO_PUP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_PUP; -pub const IPPROTO_UDP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_UDP; -pub const IPPROTO_IDP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IDP; -pub const IPPROTO_TP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_TP; -pub const IPPROTO_DCCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_DCCP; -pub const IPPROTO_IPV6: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPV6; -pub const IPPROTO_RSVP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_RSVP; -pub const IPPROTO_GRE: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_GRE; -pub const IPPROTO_ESP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ESP; -pub const IPPROTO_AH: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_AH; -pub const IPPROTO_MTP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MTP; -pub const IPPROTO_BEETPH: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_BEETPH; -pub const IPPROTO_ENCAP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ENCAP; -pub const IPPROTO_PIM: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_PIM; -pub const IPPROTO_COMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_COMP; -pub const IPPROTO_L2TP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_L2TP; -pub const IPPROTO_SCTP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_SCTP; -pub const IPPROTO_UDPLITE: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_UDPLITE; -pub const IPPROTO_MPLS: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MPLS; -pub const IPPROTO_ETHERNET: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ETHERNET; -pub const IPPROTO_RAW: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_RAW; -pub const IPPROTO_MPTCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MPTCP; -pub const IPPROTO_MAX: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MAX; #[repr(u32)] #[non_exhaustive] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_1 { -IPPROTO_IP = 0, -IPPROTO_ICMP = 1, -IPPROTO_IGMP = 2, -IPPROTO_IPIP = 4, -IPPROTO_TCP = 6, -IPPROTO_EGP = 8, -IPPROTO_PUP = 12, -IPPROTO_UDP = 17, -IPPROTO_IDP = 22, -IPPROTO_TP = 29, -IPPROTO_DCCP = 33, -IPPROTO_IPV6 = 41, -IPPROTO_RSVP = 46, -IPPROTO_GRE = 47, -IPPROTO_ESP = 50, -IPPROTO_AH = 51, -IPPROTO_MTP = 92, -IPPROTO_BEETPH = 94, -IPPROTO_ENCAP = 98, -IPPROTO_PIM = 103, -IPPROTO_COMP = 108, -IPPROTO_L2TP = 115, -IPPROTO_SCTP = 132, -IPPROTO_UDPLITE = 136, -IPPROTO_MPLS = 137, -IPPROTO_ETHERNET = 143, -IPPROTO_RAW = 255, -IPPROTO_MPTCP = 262, -IPPROTO_MAX = 263, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct in_addr { -pub s_addr: __be32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ip_mreq { -pub imr_multiaddr: in_addr, -pub imr_interface: in_addr, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ip_mreqn { -pub imr_multiaddr: in_addr, -pub imr_address: in_addr, -pub imr_ifindex: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ip_mreq_source { -pub imr_multiaddr: __be32, -pub imr_interface: __be32, -pub imr_sourceaddr: __be32, -} -#[repr(C)] -pub struct ip_msfilter { -pub imsf_multiaddr: __be32, -pub imsf_interface: __be32, -pub imsf_fmode: __u32, -pub imsf_numsrc: __u32, -pub __bindgen_anon_1: ip_msfilter__bindgen_ty_1, -} -#[repr(C)] -pub struct ip_msfilter__bindgen_ty_1 { -pub imsf_slist: __BindgenUnionField<[__be32; 1usize]>, -pub __bindgen_anon_1: __BindgenUnionField<ip_msfilter__bindgen_ty_1__bindgen_ty_1>, -pub bindgen_union_field: u32, -} -#[repr(C)] -#[derive(Debug)] -pub struct ip_msfilter__bindgen_ty_1__bindgen_ty_1 { -pub __empty_imsf_slist_flex: ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1, -pub imsf_slist_flex: __IncompleteArrayField<__be32>, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 {} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct group_req { -pub gr_interface: __u32, -pub gr_group: __kernel_sockaddr_storage, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct group_source_req { -pub gsr_interface: __u32, -pub gsr_group: __kernel_sockaddr_storage, -pub gsr_source: __kernel_sockaddr_storage, -} -#[repr(C)] -pub struct group_filter { -pub __bindgen_anon_1: group_filter__bindgen_ty_1, -} -#[repr(C)] -pub struct group_filter__bindgen_ty_1 { -pub __bindgen_anon_1: __BindgenUnionField<group_filter__bindgen_ty_1__bindgen_ty_1>, -pub __bindgen_anon_2: __BindgenUnionField<group_filter__bindgen_ty_1__bindgen_ty_2>, -pub bindgen_union_field: [u32; 67usize], -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct group_filter__bindgen_ty_1__bindgen_ty_1 { -pub gf_interface_aux: __u32, -pub gf_group_aux: __kernel_sockaddr_storage, -pub gf_fmode_aux: __u32, -pub gf_numsrc_aux: __u32, -pub gf_slist: [__kernel_sockaddr_storage; 1usize], -} -#[repr(C)] -pub struct group_filter__bindgen_ty_1__bindgen_ty_2 { -pub gf_interface: __u32, -pub gf_group: __kernel_sockaddr_storage, -pub gf_fmode: __u32, -pub gf_numsrc: __u32, -pub gf_slist_flex: __IncompleteArrayField<__kernel_sockaddr_storage>, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct in_pktinfo { -pub ipi_ifindex: crate::ctypes::c_int, -pub ipi_spec_dst: in_addr, -pub ipi_addr: in_addr, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sockaddr_in { -pub sin_family: __kernel_sa_family_t, -pub sin_port: __be16, -pub sin_addr: in_addr, -pub __pad: [crate::ctypes::c_uchar; 8usize], -} -#[repr(C)] -#[derive(Debug)] -pub struct inotify_event { -pub wd: __s32, -pub mask: __u32, -pub cookie: __u32, -pub len: __u32, -pub name: __IncompleteArrayField<crate::ctypes::c_char>, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct iphdr { -pub _bitfield_align_1: [u8; 0], -pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -pub tos: __u8, -pub tot_len: __be16, -pub id: __be16, -pub frag_off: __be16, -pub ttl: __u8, -pub protocol: __u8, -pub check: __sum16, -pub __bindgen_anon_1: iphdr__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union iphdr__bindgen_ty_1 { -pub __bindgen_anon_1: iphdr__bindgen_ty_1__bindgen_ty_1, -pub addrs: iphdr__bindgen_ty_1__bindgen_ty_2, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct iphdr__bindgen_ty_1__bindgen_ty_1 { -pub saddr: __be32, -pub daddr: __be32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct iphdr__bindgen_ty_1__bindgen_ty_2 { -pub saddr: __be32, -pub daddr: __be32, -} -impl iphdr { -#[inline] -pub fn version(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -} -#[inline] -pub fn set_version(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(0usize, 4u8, val as u64) -} -} -#[inline] -pub fn ihl(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -} -#[inline] -pub fn set_ihl(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(4usize, 4u8, val as u64) -} -} -#[inline] -pub fn new_bitfield_1(version: __u8, ihl: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> { -let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -__bindgen_bitfield_unit.set(0usize, 4u8, { -let version: u8 = unsafe { ::core::mem::transmute(version) }; -version as u64 -}); -__bindgen_bitfield_unit.set(4usize, 4u8, { -let ihl: u8 = unsafe { ::core::mem::transmute(ihl) }; -ihl as u64 -}); -__bindgen_bitfield_unit -} -} -#[repr(C)] -#[derive(Debug)] -pub struct ip_auth_hdr { -pub nexthdr: __u8, -pub hdrlen: __u8, -pub reserved: __be16, -pub spi: __be32, -pub seq_no: __be32, -pub auth_data: __IncompleteArrayField<__u8>, -} -#[repr(C)] -#[derive(Debug)] -pub struct ip_esp_hdr { -pub spi: __be32, -pub seq_no: __be32, -pub enc_data: __IncompleteArrayField<__u8>, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ip_comp_hdr { -pub nexthdr: __u8, -pub flags: __u8, -pub cpi: __be16, +pub enum membarrier_cmd { +MEMBARRIER_CMD_QUERY = 0, +MEMBARRIER_CMD_GLOBAL = 1, +MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, +MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, +MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, +MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, +MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, +MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, +MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, +MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, +MEMBARRIER_CMD_GET_REGISTRATIONS = 512, } -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ip_beet_phdr { -pub nexthdr: __u8, -pub hdrlen: __u8, -pub padlen: __u8, -pub reserved: __u8, -} -pub const IPV4_DEVCONF_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_FORWARDING; -pub const IPV4_DEVCONF_MC_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_MC_FORWARDING; -pub const IPV4_DEVCONF_PROXY_ARP: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROXY_ARP; -pub const IPV4_DEVCONF_ACCEPT_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_REDIRECTS; -pub const IPV4_DEVCONF_SECURE_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SECURE_REDIRECTS; -pub const IPV4_DEVCONF_SEND_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SEND_REDIRECTS; -pub const IPV4_DEVCONF_SHARED_MEDIA: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SHARED_MEDIA; -pub const IPV4_DEVCONF_RP_FILTER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_RP_FILTER; -pub const IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE; -pub const IPV4_DEVCONF_BOOTP_RELAY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_BOOTP_RELAY; -pub const IPV4_DEVCONF_LOG_MARTIANS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_LOG_MARTIANS; -pub const IPV4_DEVCONF_TAG: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_TAG; -pub const IPV4_DEVCONF_ARPFILTER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARPFILTER; -pub const IPV4_DEVCONF_MEDIUM_ID: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_MEDIUM_ID; -pub const IPV4_DEVCONF_NOXFRM: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_NOXFRM; -pub const IPV4_DEVCONF_NOPOLICY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_NOPOLICY; -pub const IPV4_DEVCONF_FORCE_IGMP_VERSION: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_FORCE_IGMP_VERSION; -pub const IPV4_DEVCONF_ARP_ANNOUNCE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_ANNOUNCE; -pub const IPV4_DEVCONF_ARP_IGNORE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_IGNORE; -pub const IPV4_DEVCONF_PROMOTE_SECONDARIES: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROMOTE_SECONDARIES; -pub const IPV4_DEVCONF_ARP_ACCEPT: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_ACCEPT; -pub const IPV4_DEVCONF_ARP_NOTIFY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_NOTIFY; -pub const IPV4_DEVCONF_ACCEPT_LOCAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_LOCAL; -pub const IPV4_DEVCONF_SRC_VMARK: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SRC_VMARK; -pub const IPV4_DEVCONF_PROXY_ARP_PVLAN: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROXY_ARP_PVLAN; -pub const IPV4_DEVCONF_ROUTE_LOCALNET: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ROUTE_LOCALNET; -pub const IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL; -pub const IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL; -pub const IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN; -pub const IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST; -pub const IPV4_DEVCONF_DROP_GRATUITOUS_ARP: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_DROP_GRATUITOUS_ARP; -pub const IPV4_DEVCONF_BC_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_BC_FORWARDING; -pub const IPV4_DEVCONF_ARP_EVICT_NOCARRIER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_EVICT_NOCARRIER; -pub const __IPV4_DEVCONF_MAX: _bindgen_ty_2 = _bindgen_ty_2::__IPV4_DEVCONF_MAX; #[repr(u32)] #[non_exhaustive] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_2 { -IPV4_DEVCONF_FORWARDING = 1, -IPV4_DEVCONF_MC_FORWARDING = 2, -IPV4_DEVCONF_PROXY_ARP = 3, -IPV4_DEVCONF_ACCEPT_REDIRECTS = 4, -IPV4_DEVCONF_SECURE_REDIRECTS = 5, -IPV4_DEVCONF_SEND_REDIRECTS = 6, -IPV4_DEVCONF_SHARED_MEDIA = 7, -IPV4_DEVCONF_RP_FILTER = 8, -IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE = 9, -IPV4_DEVCONF_BOOTP_RELAY = 10, -IPV4_DEVCONF_LOG_MARTIANS = 11, -IPV4_DEVCONF_TAG = 12, -IPV4_DEVCONF_ARPFILTER = 13, -IPV4_DEVCONF_MEDIUM_ID = 14, -IPV4_DEVCONF_NOXFRM = 15, -IPV4_DEVCONF_NOPOLICY = 16, -IPV4_DEVCONF_FORCE_IGMP_VERSION = 17, -IPV4_DEVCONF_ARP_ANNOUNCE = 18, -IPV4_DEVCONF_ARP_IGNORE = 19, -IPV4_DEVCONF_PROMOTE_SECONDARIES = 20, -IPV4_DEVCONF_ARP_ACCEPT = 21, -IPV4_DEVCONF_ARP_NOTIFY = 22, -IPV4_DEVCONF_ACCEPT_LOCAL = 23, -IPV4_DEVCONF_SRC_VMARK = 24, -IPV4_DEVCONF_PROXY_ARP_PVLAN = 25, -IPV4_DEVCONF_ROUTE_LOCALNET = 26, -IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL = 27, -IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL = 28, -IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 29, -IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 30, -IPV4_DEVCONF_DROP_GRATUITOUS_ARP = 31, -IPV4_DEVCONF_BC_FORWARDING = 32, -IPV4_DEVCONF_ARP_EVICT_NOCARRIER = 33, -__IPV4_DEVCONF_MAX = 34, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct in6_addr { -pub in6_u: in6_addr__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union in6_addr__bindgen_ty_1 { -pub u6_addr8: [__u8; 16usize], -pub u6_addr16: [__be16; 8usize], -pub u6_addr32: [__be32; 4usize], -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct sockaddr_in6 { -pub sin6_family: crate::ctypes::c_ushort, -pub sin6_port: __be16, -pub sin6_flowinfo: __be32, -pub sin6_addr: in6_addr, -pub sin6_scope_id: __u32, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct ipv6_mreq { -pub ipv6mr_multiaddr: in6_addr, -pub ipv6mr_ifindex: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct in6_flowlabel_req { -pub flr_dst: in6_addr, -pub flr_label: __be32, -pub flr_action: __u8, -pub flr_share: __u8, -pub flr_flags: __u16, -pub flr_expires: __u16, -pub flr_linger: __u16, -pub __flr_pad: __u32, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct in6_pktinfo { -pub ipi6_addr: in6_addr, -pub ipi6_ifindex: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct ip6_mtuinfo { -pub ip6m_addr: sockaddr_in6, -pub ip6m_mtu: __u32, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct in6_ifreq { -pub ifr6_addr: in6_addr, -pub ifr6_prefixlen: __u32, -pub ifr6_ifindex: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ipv6_rt_hdr { -pub nexthdr: __u8, -pub hdrlen: __u8, -pub type_: __u8, -pub segments_left: __u8, -} -#[repr(C, packed)] -#[derive(Debug, Copy, Clone)] -pub struct ipv6_opt_hdr { -pub nexthdr: __u8, -pub hdrlen: __u8, -} -#[repr(C)] -pub struct rt0_hdr { -pub rt_hdr: ipv6_rt_hdr, -pub reserved: __u32, -pub addr: __IncompleteArrayField<in6_addr>, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct rt2_hdr { -pub rt_hdr: ipv6_rt_hdr, -pub reserved: __u32, -pub addr: in6_addr, -} -#[repr(C, packed)] -#[derive(Copy, Clone)] -pub struct ipv6_destopt_hao { -pub type_: __u8, -pub length: __u8, -pub addr: in6_addr, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct ipv6hdr { -pub _bitfield_align_1: [u8; 0], -pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -pub flow_lbl: [__u8; 3usize], -pub payload_len: __be16, -pub nexthdr: __u8, -pub hop_limit: __u8, -pub __bindgen_anon_1: ipv6hdr__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union ipv6hdr__bindgen_ty_1 { -pub __bindgen_anon_1: ipv6hdr__bindgen_ty_1__bindgen_ty_1, -pub addrs: ipv6hdr__bindgen_ty_1__bindgen_ty_2, +pub enum membarrier_cmd_flag { +MEMBARRIER_CMD_FLAG_CPU = 1, } #[repr(C)] #[derive(Copy, Clone)] -pub struct ipv6hdr__bindgen_ty_1__bindgen_ty_1 { -pub saddr: in6_addr, -pub daddr: in6_addr, +pub union fscrypt_get_policy_ex_arg__bindgen_ty_1 { +pub version: __u8, +pub v1: fscrypt_policy_v1, +pub v2: fscrypt_policy_v2, } #[repr(C)] #[derive(Copy, Clone)] -pub struct ipv6hdr__bindgen_ty_1__bindgen_ty_2 { -pub saddr: in6_addr, -pub daddr: in6_addr, -} -impl ipv6hdr { -#[inline] -pub fn version(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -} -#[inline] -pub fn set_version(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(0usize, 4u8, val as u64) -} -} -#[inline] -pub fn priority(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -} -#[inline] -pub fn set_priority(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(4usize, 4u8, val as u64) -} -} -#[inline] -pub fn new_bitfield_1(version: __u8, priority: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> { -let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -__bindgen_bitfield_unit.set(0usize, 4u8, { -let version: u8 = unsafe { ::core::mem::transmute(version) }; -version as u64 -}); -__bindgen_bitfield_unit.set(4usize, 4u8, { -let priority: u8 = unsafe { ::core::mem::transmute(priority) }; -priority as u64 -}); -__bindgen_bitfield_unit -} -} -pub const DEVCONF_FORWARDING: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORWARDING; -pub const DEVCONF_HOPLIMIT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_HOPLIMIT; -pub const DEVCONF_MTU6: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MTU6; -pub const DEVCONF_ACCEPT_RA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA; -pub const DEVCONF_ACCEPT_REDIRECTS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_REDIRECTS; -pub const DEVCONF_AUTOCONF: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_AUTOCONF; -pub const DEVCONF_DAD_TRANSMITS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DAD_TRANSMITS; -pub const DEVCONF_RTR_SOLICITS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICITS; -pub const DEVCONF_RTR_SOLICIT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_INTERVAL; -pub const DEVCONF_RTR_SOLICIT_DELAY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_DELAY; -pub const DEVCONF_USE_TEMPADDR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_TEMPADDR; -pub const DEVCONF_TEMP_VALID_LFT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_TEMP_VALID_LFT; -pub const DEVCONF_TEMP_PREFERED_LFT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_TEMP_PREFERED_LFT; -pub const DEVCONF_REGEN_MAX_RETRY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_REGEN_MAX_RETRY; -pub const DEVCONF_MAX_DESYNC_FACTOR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX_DESYNC_FACTOR; -pub const DEVCONF_MAX_ADDRESSES: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX_ADDRESSES; -pub const DEVCONF_FORCE_MLD_VERSION: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORCE_MLD_VERSION; -pub const DEVCONF_ACCEPT_RA_DEFRTR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_DEFRTR; -pub const DEVCONF_ACCEPT_RA_PINFO: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_PINFO; -pub const DEVCONF_ACCEPT_RA_RTR_PREF: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RTR_PREF; -pub const DEVCONF_RTR_PROBE_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_PROBE_INTERVAL; -pub const DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN; -pub const DEVCONF_PROXY_NDP: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_PROXY_NDP; -pub const DEVCONF_OPTIMISTIC_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_OPTIMISTIC_DAD; -pub const DEVCONF_ACCEPT_SOURCE_ROUTE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_SOURCE_ROUTE; -pub const DEVCONF_MC_FORWARDING: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MC_FORWARDING; -pub const DEVCONF_DISABLE_IPV6: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DISABLE_IPV6; -pub const DEVCONF_ACCEPT_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_DAD; -pub const DEVCONF_FORCE_TLLAO: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORCE_TLLAO; -pub const DEVCONF_NDISC_NOTIFY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_NOTIFY; -pub const DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL; -pub const DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL; -pub const DEVCONF_SUPPRESS_FRAG_NDISC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SUPPRESS_FRAG_NDISC; -pub const DEVCONF_ACCEPT_RA_FROM_LOCAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_FROM_LOCAL; -pub const DEVCONF_USE_OPTIMISTIC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_OPTIMISTIC; -pub const DEVCONF_ACCEPT_RA_MTU: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_MTU; -pub const DEVCONF_STABLE_SECRET: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_STABLE_SECRET; -pub const DEVCONF_USE_OIF_ADDRS_ONLY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_OIF_ADDRS_ONLY; -pub const DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT; -pub const DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN; -pub const DEVCONF_DROP_UNICAST_IN_L2_MULTICAST: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DROP_UNICAST_IN_L2_MULTICAST; -pub const DEVCONF_DROP_UNSOLICITED_NA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DROP_UNSOLICITED_NA; -pub const DEVCONF_KEEP_ADDR_ON_DOWN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_KEEP_ADDR_ON_DOWN; -pub const DEVCONF_RTR_SOLICIT_MAX_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_MAX_INTERVAL; -pub const DEVCONF_SEG6_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SEG6_ENABLED; -pub const DEVCONF_SEG6_REQUIRE_HMAC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SEG6_REQUIRE_HMAC; -pub const DEVCONF_ENHANCED_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ENHANCED_DAD; -pub const DEVCONF_ADDR_GEN_MODE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ADDR_GEN_MODE; -pub const DEVCONF_DISABLE_POLICY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DISABLE_POLICY; -pub const DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN; -pub const DEVCONF_NDISC_TCLASS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_TCLASS; -pub const DEVCONF_RPL_SEG_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RPL_SEG_ENABLED; -pub const DEVCONF_RA_DEFRTR_METRIC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RA_DEFRTR_METRIC; -pub const DEVCONF_IOAM6_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ENABLED; -pub const DEVCONF_IOAM6_ID: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ID; -pub const DEVCONF_IOAM6_ID_WIDE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ID_WIDE; -pub const DEVCONF_NDISC_EVICT_NOCARRIER: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_EVICT_NOCARRIER; -pub const DEVCONF_ACCEPT_UNTRACKED_NA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_UNTRACKED_NA; -pub const DEVCONF_MAX: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_3 { -DEVCONF_FORWARDING = 0, -DEVCONF_HOPLIMIT = 1, -DEVCONF_MTU6 = 2, -DEVCONF_ACCEPT_RA = 3, -DEVCONF_ACCEPT_REDIRECTS = 4, -DEVCONF_AUTOCONF = 5, -DEVCONF_DAD_TRANSMITS = 6, -DEVCONF_RTR_SOLICITS = 7, -DEVCONF_RTR_SOLICIT_INTERVAL = 8, -DEVCONF_RTR_SOLICIT_DELAY = 9, -DEVCONF_USE_TEMPADDR = 10, -DEVCONF_TEMP_VALID_LFT = 11, -DEVCONF_TEMP_PREFERED_LFT = 12, -DEVCONF_REGEN_MAX_RETRY = 13, -DEVCONF_MAX_DESYNC_FACTOR = 14, -DEVCONF_MAX_ADDRESSES = 15, -DEVCONF_FORCE_MLD_VERSION = 16, -DEVCONF_ACCEPT_RA_DEFRTR = 17, -DEVCONF_ACCEPT_RA_PINFO = 18, -DEVCONF_ACCEPT_RA_RTR_PREF = 19, -DEVCONF_RTR_PROBE_INTERVAL = 20, -DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN = 21, -DEVCONF_PROXY_NDP = 22, -DEVCONF_OPTIMISTIC_DAD = 23, -DEVCONF_ACCEPT_SOURCE_ROUTE = 24, -DEVCONF_MC_FORWARDING = 25, -DEVCONF_DISABLE_IPV6 = 26, -DEVCONF_ACCEPT_DAD = 27, -DEVCONF_FORCE_TLLAO = 28, -DEVCONF_NDISC_NOTIFY = 29, -DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL = 30, -DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL = 31, -DEVCONF_SUPPRESS_FRAG_NDISC = 32, -DEVCONF_ACCEPT_RA_FROM_LOCAL = 33, -DEVCONF_USE_OPTIMISTIC = 34, -DEVCONF_ACCEPT_RA_MTU = 35, -DEVCONF_STABLE_SECRET = 36, -DEVCONF_USE_OIF_ADDRS_ONLY = 37, -DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT = 38, -DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 39, -DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 40, -DEVCONF_DROP_UNSOLICITED_NA = 41, -DEVCONF_KEEP_ADDR_ON_DOWN = 42, -DEVCONF_RTR_SOLICIT_MAX_INTERVAL = 43, -DEVCONF_SEG6_ENABLED = 44, -DEVCONF_SEG6_REQUIRE_HMAC = 45, -DEVCONF_ENHANCED_DAD = 46, -DEVCONF_ADDR_GEN_MODE = 47, -DEVCONF_DISABLE_POLICY = 48, -DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, -DEVCONF_NDISC_TCLASS = 50, -DEVCONF_RPL_SEG_ENABLED = 51, -DEVCONF_RA_DEFRTR_METRIC = 52, -DEVCONF_IOAM6_ENABLED = 53, -DEVCONF_IOAM6_ID = 54, -DEVCONF_IOAM6_ID_WIDE = 55, -DEVCONF_NDISC_EVICT_NOCARRIER = 56, -DEVCONF_ACCEPT_UNTRACKED_NA = 57, -DEVCONF_MAX = 58, -} -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum socket_state { -SS_FREE = 0, -SS_UNCONNECTED = 1, -SS_CONNECTING = 2, -SS_CONNECTED = 3, -SS_DISCONNECTING = 4, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct pollfd { -pub fd: crate::ctypes::c_int, -pub events: crate::ctypes::c_short, -pub revents: crate::ctypes::c_short, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct prctl_mm_map { -pub start_code: __u64, -pub end_code: __u64, -pub start_data: __u64, -pub end_data: __u64, -pub start_brk: __u64, -pub brk: __u64, -pub start_stack: __u64, -pub arg_start: __u64, -pub arg_end: __u64, -pub env_start: __u64, -pub env_end: __u64, -pub auxv: *mut __u64, -pub auxv_size: __u32, -pub exe_fd: __u32, -} -#[repr(C)] -#[derive(Debug)] -pub struct rand_pool_info { -pub entropy_count: crate::ctypes::c_int, -pub buf_size: crate::ctypes::c_int, -pub buf: __IncompleteArrayField<__u32>, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_timespec { -pub tv_sec: __kernel_time64_t, -pub tv_nsec: crate::ctypes::c_longlong, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_itimerspec { -pub it_interval: __kernel_timespec, -pub it_value: __kernel_timespec, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_old_timeval { -pub tv_sec: __kernel_long_t, -pub tv_usec: __kernel_long_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_old_timespec { -pub tv_sec: __kernel_old_time_t, -pub tv_nsec: crate::ctypes::c_long, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_old_itimerval { -pub it_interval: __kernel_old_timeval, -pub it_value: __kernel_old_timeval, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __kernel_sock_timeval { -pub tv_sec: __s64, -pub tv_usec: __s64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct timespec { -pub tv_sec: __kernel_old_time_t, -pub tv_nsec: crate::ctypes::c_long, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct timeval { -pub tv_sec: __kernel_old_time_t, -pub tv_usec: __kernel_suseconds_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct itimerspec { -pub it_interval: timespec, -pub it_value: timespec, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct itimerval { -pub it_interval: timeval, -pub it_value: timeval, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct timezone { -pub tz_minuteswest: crate::ctypes::c_int, -pub tz_dsttime: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct rusage { -pub ru_utime: __kernel_old_timeval, -pub ru_stime: __kernel_old_timeval, -pub ru_maxrss: __kernel_long_t, -pub ru_ixrss: __kernel_long_t, -pub ru_idrss: __kernel_long_t, -pub ru_isrss: __kernel_long_t, -pub ru_minflt: __kernel_long_t, -pub ru_majflt: __kernel_long_t, -pub ru_nswap: __kernel_long_t, -pub ru_inblock: __kernel_long_t, -pub ru_oublock: __kernel_long_t, -pub ru_msgsnd: __kernel_long_t, -pub ru_msgrcv: __kernel_long_t, -pub ru_nsignals: __kernel_long_t, -pub ru_nvcsw: __kernel_long_t, -pub ru_nivcsw: __kernel_long_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct rlimit { -pub rlim_cur: __kernel_ulong_t, -pub rlim_max: __kernel_ulong_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct rlimit64 { -pub rlim_cur: __u64, -pub rlim_max: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct clone_args { -pub flags: __u64, -pub pidfd: __u64, -pub child_tid: __u64, -pub parent_tid: __u64, -pub exit_signal: __u64, -pub stack: __u64, -pub stack_size: __u64, -pub tls: __u64, -pub set_tid: __u64, -pub set_tid_size: __u64, -pub cgroup: __u64, -} -pub type old_sigset_t = crate::ctypes::c_ulong; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sigset_t { -pub sig: [crate::ctypes::c_ulong; 2usize], -} -pub type __signalfn_t = ::core::option::Option<unsafe extern "C" fn(arg1: crate::ctypes::c_int)>; -pub type __sighandler_t = __signalfn_t; -pub type __restorefn_t = ::core::option::Option<unsafe extern "C" fn()>; -pub type __sigrestore_t = __restorefn_t; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct old_sigaction { -pub sa_handler: __sighandler_t, -pub sa_mask: old_sigset_t, -pub sa_flags: crate::ctypes::c_ulong, -pub sa_restorer: __sigrestore_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sigaction { -pub sa_handler: __sighandler_t, -pub sa_flags: crate::ctypes::c_ulong, -pub sa_restorer: __sigrestore_t, -pub sa_mask: sigset_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sigaltstack { -pub ss_sp: *mut crate::ctypes::c_void, -pub ss_flags: crate::ctypes::c_int, -pub ss_size: __kernel_size_t, -} -pub type stack_t = sigaltstack; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sig_dbg_op { -pub dbg_type: crate::ctypes::c_int, -pub dbg_value: crate::ctypes::c_ulong, +pub union fscrypt_key_specifier__bindgen_ty_1 { +pub __reserved: [__u8; 32usize], +pub descriptor: [__u8; 8usize], +pub identifier: [__u8; 16usize], } #[repr(C)] #[derive(Copy, Clone)] @@ -3840,7 +2788,6 @@ pub union sigval { pub sival_int: crate::ctypes::c_int, pub sival_ptr: *mut crate::ctypes::c_void, } -pub type sigval_t = sigval; #[repr(C)] #[derive(Copy, Clone)] pub union __sifields { @@ -3853,42 +2800,6 @@ pub _sigpoll: __sifields__bindgen_ty_6, pub _sigsys: __sifields__bindgen_ty_7, } #[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __sifields__bindgen_ty_1 { -pub _pid: __kernel_pid_t, -pub _uid: __kernel_uid32_t, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct __sifields__bindgen_ty_2 { -pub _tid: __kernel_timer_t, -pub _overrun: crate::ctypes::c_int, -pub _sigval: sigval_t, -pub _sys_private: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct __sifields__bindgen_ty_3 { -pub _pid: __kernel_pid_t, -pub _uid: __kernel_uid32_t, -pub _sigval: sigval_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __sifields__bindgen_ty_4 { -pub _pid: __kernel_pid_t, -pub _uid: __kernel_uid32_t, -pub _status: crate::ctypes::c_int, -pub _utime: __kernel_clock_t, -pub _stime: __kernel_clock_t, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct __sifields__bindgen_ty_5 { -pub _addr: *mut crate::ctypes::c_void, -pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, -} -#[repr(C)] #[derive(Copy, Clone)] pub union __sifields__bindgen_ty_5__bindgen_ty_1 { pub _trapno: crate::ctypes::c_int, @@ -3898,44 +2809,6 @@ pub _addr_pkey: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2, pub _perf: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3, } #[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { -pub _dummy_bnd: [crate::ctypes::c_char; 4usize], -pub _lower: *mut crate::ctypes::c_void, -pub _upper: *mut crate::ctypes::c_void, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { -pub _dummy_pkey: [crate::ctypes::c_char; 4usize], -pub _pkey: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3 { -pub _data: crate::ctypes::c_ulong, -pub _type: __u32, -pub _flags: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __sifields__bindgen_ty_6 { -pub _band: crate::ctypes::c_long, -pub _fd: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __sifields__bindgen_ty_7 { -pub _call_addr: *mut crate::ctypes::c_void, -pub _syscall: crate::ctypes::c_int, -pub _arch: crate::ctypes::c_uint, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct siginfo { -pub __bindgen_anon_1: siginfo__bindgen_ty_1, -} -#[repr(C)] #[derive(Copy, Clone)] pub union siginfo__bindgen_ty_1 { pub __bindgen_anon_1: siginfo__bindgen_ty_1__bindgen_ty_1, @@ -3943,1398 +2816,114 @@ pub _si_pad: [crate::ctypes::c_int; 32usize], } #[repr(C)] #[derive(Copy, Clone)] -pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { -pub si_signo: crate::ctypes::c_int, -pub si_errno: crate::ctypes::c_int, -pub si_code: crate::ctypes::c_int, -pub _sifields: __sifields, -} -pub type siginfo_t = siginfo; -#[repr(C)] -#[derive(Copy, Clone)] -pub struct sigevent { -pub sigev_value: sigval_t, -pub sigev_signo: crate::ctypes::c_int, -pub sigev_notify: crate::ctypes::c_int, -pub _sigev_un: sigevent__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] pub union sigevent__bindgen_ty_1 { pub _pad: [crate::ctypes::c_int; 13usize], pub _tid: crate::ctypes::c_int, pub _sigev_thread: sigevent__bindgen_ty_1__bindgen_ty_1, } #[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { -pub _function: ::core::option::Option<unsafe extern "C" fn(arg1: sigval_t)>, -pub _attribute: *mut crate::ctypes::c_void, -} -pub type sigevent_t = sigevent; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct statx_timestamp { -pub tv_sec: __s64, -pub tv_nsec: __u32, -pub __reserved: __s32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct statx { -pub stx_mask: __u32, -pub stx_blksize: __u32, -pub stx_attributes: __u64, -pub stx_nlink: __u32, -pub stx_uid: __u32, -pub stx_gid: __u32, -pub stx_mode: __u16, -pub __spare0: [__u16; 1usize], -pub stx_ino: __u64, -pub stx_size: __u64, -pub stx_blocks: __u64, -pub stx_attributes_mask: __u64, -pub stx_atime: statx_timestamp, -pub stx_btime: statx_timestamp, -pub stx_ctime: statx_timestamp, -pub stx_mtime: statx_timestamp, -pub stx_rdev_major: __u32, -pub stx_rdev_minor: __u32, -pub stx_dev_major: __u32, -pub stx_dev_minor: __u32, -pub stx_mnt_id: __u64, -pub stx_dio_mem_align: __u32, -pub stx_dio_offset_align: __u32, -pub __spare3: [__u64; 12usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sysinfo { -pub uptime: __kernel_long_t, -pub loads: [__kernel_ulong_t; 3usize], -pub totalram: __kernel_ulong_t, -pub freeram: __kernel_ulong_t, -pub sharedram: __kernel_ulong_t, -pub bufferram: __kernel_ulong_t, -pub totalswap: __kernel_ulong_t, -pub freeswap: __kernel_ulong_t, -pub procs: __u16, -pub pad: __u16, -pub totalhigh: __kernel_ulong_t, -pub freehigh: __kernel_ulong_t, -pub mem_unit: __u32, -pub _f: [crate::ctypes::c_char; 8usize], +#[derive(Copy, Clone)] +pub union uffd_msg__bindgen_ty_1 { +pub pagefault: uffd_msg__bindgen_ty_1__bindgen_ty_1, +pub fork: uffd_msg__bindgen_ty_1__bindgen_ty_2, +pub remap: uffd_msg__bindgen_ty_1__bindgen_ty_3, +pub remove: uffd_msg__bindgen_ty_1__bindgen_ty_4, +pub reserved: uffd_msg__bindgen_ty_1__bindgen_ty_5, } #[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct tcphdr { -pub source: __be16, -pub dest: __be16, -pub seq: __be32, -pub ack_seq: __be32, -pub _bitfield_align_1: [u8; 0], -pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>, -pub window: __be16, -pub check: __sum16, -pub urg_ptr: __be16, -} -impl tcphdr { -#[inline] -pub fn doff(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u16) } -} -#[inline] -pub fn set_doff(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(0usize, 4u8, val as u64) -} -} -#[inline] -pub fn res1(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u16) } -} -#[inline] -pub fn set_res1(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(4usize, 4u8, val as u64) -} -} -#[inline] -pub fn cwr(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u16) } -} -#[inline] -pub fn set_cwr(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(8usize, 1u8, val as u64) -} -} -#[inline] -pub fn ece(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(9usize, 1u8) as u16) } -} -#[inline] -pub fn set_ece(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(9usize, 1u8, val as u64) -} -} -#[inline] -pub fn urg(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(10usize, 1u8) as u16) } -} -#[inline] -pub fn set_urg(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(10usize, 1u8, val as u64) -} -} -#[inline] -pub fn ack(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(11usize, 1u8) as u16) } -} -#[inline] -pub fn set_ack(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(11usize, 1u8, val as u64) -} -} -#[inline] -pub fn psh(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(12usize, 1u8) as u16) } -} -#[inline] -pub fn set_psh(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(12usize, 1u8, val as u64) -} -} -#[inline] -pub fn rst(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(13usize, 1u8) as u16) } -} -#[inline] -pub fn set_rst(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(13usize, 1u8, val as u64) -} -} -#[inline] -pub fn syn(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(14usize, 1u8) as u16) } +#[derive(Copy, Clone)] +pub union uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 { +pub ptid: __u32, } +impl<Storage> __BindgenBitfieldUnit<Storage> { #[inline] -pub fn set_syn(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(14usize, 1u8, val as u64) -} +pub const fn new(storage: Storage) -> Self { +Self { storage } } -#[inline] -pub fn fin(&self) -> __u16 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(15usize, 1u8) as u16) } } +impl<Storage> __BindgenBitfieldUnit<Storage> +where +Storage: AsRef<[u8]> + AsMut<[u8]>, +{ #[inline] -pub fn set_fin(&mut self, val: __u16) { -unsafe { -let val: u16 = ::core::mem::transmute(val); -self._bitfield_1.set(15usize, 1u8, val as u64) -} +pub fn get_bit(&self, index: usize) -> bool { +debug_assert!(index / 8 < self.storage.as_ref().len()); +let byte_index = index / 8; +let byte = self.storage.as_ref()[byte_index]; +let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; +let mask = 1 << bit_index; +byte & mask == mask } #[inline] -pub fn new_bitfield_1(doff: __u16, res1: __u16, cwr: __u16, ece: __u16, urg: __u16, ack: __u16, psh: __u16, rst: __u16, syn: __u16, fin: __u16) -> __BindgenBitfieldUnit<[u8; 2usize]> { -let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default(); -__bindgen_bitfield_unit.set(0usize, 4u8, { -let doff: u16 = unsafe { ::core::mem::transmute(doff) }; -doff as u64 -}); -__bindgen_bitfield_unit.set(4usize, 4u8, { -let res1: u16 = unsafe { ::core::mem::transmute(res1) }; -res1 as u64 -}); -__bindgen_bitfield_unit.set(8usize, 1u8, { -let cwr: u16 = unsafe { ::core::mem::transmute(cwr) }; -cwr as u64 -}); -__bindgen_bitfield_unit.set(9usize, 1u8, { -let ece: u16 = unsafe { ::core::mem::transmute(ece) }; -ece as u64 -}); -__bindgen_bitfield_unit.set(10usize, 1u8, { -let urg: u16 = unsafe { ::core::mem::transmute(urg) }; -urg as u64 -}); -__bindgen_bitfield_unit.set(11usize, 1u8, { -let ack: u16 = unsafe { ::core::mem::transmute(ack) }; -ack as u64 -}); -__bindgen_bitfield_unit.set(12usize, 1u8, { -let psh: u16 = unsafe { ::core::mem::transmute(psh) }; -psh as u64 -}); -__bindgen_bitfield_unit.set(13usize, 1u8, { -let rst: u16 = unsafe { ::core::mem::transmute(rst) }; -rst as u64 -}); -__bindgen_bitfield_unit.set(14usize, 1u8, { -let syn: u16 = unsafe { ::core::mem::transmute(syn) }; -syn as u64 -}); -__bindgen_bitfield_unit.set(15usize, 1u8, { -let fin: u16 = unsafe { ::core::mem::transmute(fin) }; -fin as u64 -}); -__bindgen_bitfield_unit -} -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union tcp_word_hdr { -pub hdr: tcphdr, -pub words: [__be32; 5usize], -} -pub const TCP_FLAG_CWR: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_CWR; -pub const TCP_FLAG_ECE: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_ECE; -pub const TCP_FLAG_URG: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_URG; -pub const TCP_FLAG_ACK: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_ACK; -pub const TCP_FLAG_PSH: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_PSH; -pub const TCP_FLAG_RST: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_RST; -pub const TCP_FLAG_SYN: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_SYN; -pub const TCP_FLAG_FIN: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_FIN; -pub const TCP_RESERVED_BITS: _bindgen_ty_4 = _bindgen_ty_4::TCP_RESERVED_BITS; -pub const TCP_DATA_OFFSET: _bindgen_ty_4 = _bindgen_ty_4::TCP_DATA_OFFSET; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_4 { -TCP_FLAG_CWR = 8388608, -TCP_FLAG_ECE = 4194304, -TCP_FLAG_URG = 2097152, -TCP_FLAG_ACK = 1048576, -TCP_FLAG_PSH = 524288, -TCP_FLAG_RST = 262144, -TCP_FLAG_SYN = 131072, -TCP_FLAG_FIN = 65536, -TCP_RESERVED_BITS = 251658240, -TCP_DATA_OFFSET = 4026531840, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct tcp_repair_opt { -pub opt_code: __u32, -pub opt_val: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct tcp_repair_window { -pub snd_wl1: __u32, -pub snd_wnd: __u32, -pub max_window: __u32, -pub rcv_wnd: __u32, -pub rcv_wup: __u32, -} -pub const TCP_NO_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_NO_QUEUE; -pub const TCP_RECV_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_RECV_QUEUE; -pub const TCP_SEND_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_SEND_QUEUE; -pub const TCP_QUEUES_NR: _bindgen_ty_5 = _bindgen_ty_5::TCP_QUEUES_NR; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_5 { -TCP_NO_QUEUE = 0, -TCP_RECV_QUEUE = 1, -TCP_SEND_QUEUE = 2, -TCP_QUEUES_NR = 3, -} -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum tcp_fastopen_client_fail { -TFO_STATUS_UNSPEC = 0, -TFO_COOKIE_UNAVAILABLE = 1, -TFO_DATA_NOT_ACKED = 2, -TFO_SYN_RETRANSMITTED = 3, +pub fn set_bit(&mut self, index: usize, val: bool) { +debug_assert!(index / 8 < self.storage.as_ref().len()); +let byte_index = index / 8; +let byte = &mut self.storage.as_mut()[byte_index]; +let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; +let mask = 1 << bit_index; +if val { +*byte |= mask; +} else { +*byte &= !mask; } -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum tcp_ca_state { -TCP_CA_Open = 0, -TCP_CA_Disorder = 1, -TCP_CA_CWR = 2, -TCP_CA_Recovery = 3, -TCP_CA_Loss = 4, } -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct tcp_info { -pub tcpi_state: __u8, -pub tcpi_ca_state: __u8, -pub tcpi_retransmits: __u8, -pub tcpi_probes: __u8, -pub tcpi_backoff: __u8, -pub tcpi_options: __u8, -pub _bitfield_align_1: [u8; 0], -pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>, -pub tcpi_rto: __u32, -pub tcpi_ato: __u32, -pub tcpi_snd_mss: __u32, -pub tcpi_rcv_mss: __u32, -pub tcpi_unacked: __u32, -pub tcpi_sacked: __u32, -pub tcpi_lost: __u32, -pub tcpi_retrans: __u32, -pub tcpi_fackets: __u32, -pub tcpi_last_data_sent: __u32, -pub tcpi_last_ack_sent: __u32, -pub tcpi_last_data_recv: __u32, -pub tcpi_last_ack_recv: __u32, -pub tcpi_pmtu: __u32, -pub tcpi_rcv_ssthresh: __u32, -pub tcpi_rtt: __u32, -pub tcpi_rttvar: __u32, -pub tcpi_snd_ssthresh: __u32, -pub tcpi_snd_cwnd: __u32, -pub tcpi_advmss: __u32, -pub tcpi_reordering: __u32, -pub tcpi_rcv_rtt: __u32, -pub tcpi_rcv_space: __u32, -pub tcpi_total_retrans: __u32, -pub tcpi_pacing_rate: __u64, -pub tcpi_max_pacing_rate: __u64, -pub tcpi_bytes_acked: __u64, -pub tcpi_bytes_received: __u64, -pub tcpi_segs_out: __u32, -pub tcpi_segs_in: __u32, -pub tcpi_notsent_bytes: __u32, -pub tcpi_min_rtt: __u32, -pub tcpi_data_segs_in: __u32, -pub tcpi_data_segs_out: __u32, -pub tcpi_delivery_rate: __u64, -pub tcpi_busy_time: __u64, -pub tcpi_rwnd_limited: __u64, -pub tcpi_sndbuf_limited: __u64, -pub tcpi_delivered: __u32, -pub tcpi_delivered_ce: __u32, -pub tcpi_bytes_sent: __u64, -pub tcpi_bytes_retrans: __u64, -pub tcpi_dsack_dups: __u32, -pub tcpi_reord_seen: __u32, -pub tcpi_rcv_ooopack: __u32, -pub tcpi_snd_wnd: __u32, -pub tcpi_rcv_wnd: __u32, -pub tcpi_rehash: __u32, -} -impl tcp_info { #[inline] -pub fn tcpi_snd_wscale(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } +pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { +debug_assert!(bit_width <= 64); +debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); +debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); +let mut val = 0; +for i in 0..(bit_width as usize) { +if self.get_bit(i + bit_offset) { +let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; +val |= 1 << index; } -#[inline] -pub fn set_tcpi_snd_wscale(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(0usize, 4u8, val as u64) } +val } #[inline] -pub fn tcpi_rcv_wscale(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } +pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { +debug_assert!(bit_width <= 64); +debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); +debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); +for i in 0..(bit_width as usize) { +let mask = 1 << i; +let val_bit_is_set = val & mask == mask; +let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; +self.set_bit(index + bit_offset, val_bit_is_set); } -#[inline] -pub fn set_tcpi_rcv_wscale(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(4usize, 4u8, val as u64) } } +impl<T> __IncompleteArrayField<T> { #[inline] -pub fn tcpi_delivery_rate_app_limited(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u8) } +pub const fn new() -> Self { +__IncompleteArrayField(::core::marker::PhantomData, []) } #[inline] -pub fn set_tcpi_delivery_rate_app_limited(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(8usize, 1u8, val as u64) -} +pub fn as_ptr(&self) -> *const T { +self as *const _ as *const T } #[inline] -pub fn tcpi_fastopen_client_fail(&self) -> __u8 { -unsafe { ::core::mem::transmute(self._bitfield_1.get(9usize, 2u8) as u8) } +pub fn as_mut_ptr(&mut self) -> *mut T { +self as *mut _ as *mut T } #[inline] -pub fn set_tcpi_fastopen_client_fail(&mut self, val: __u8) { -unsafe { -let val: u8 = ::core::mem::transmute(val); -self._bitfield_1.set(9usize, 2u8, val as u64) -} +pub unsafe fn as_slice(&self, len: usize) -> &[T] { +::core::slice::from_raw_parts(self.as_ptr(), len) } #[inline] -pub fn new_bitfield_1(tcpi_snd_wscale: __u8, tcpi_rcv_wscale: __u8, tcpi_delivery_rate_app_limited: __u8, tcpi_fastopen_client_fail: __u8) -> __BindgenBitfieldUnit<[u8; 2usize]> { -let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default(); -__bindgen_bitfield_unit.set(0usize, 4u8, { -let tcpi_snd_wscale: u8 = unsafe { ::core::mem::transmute(tcpi_snd_wscale) }; -tcpi_snd_wscale as u64 -}); -__bindgen_bitfield_unit.set(4usize, 4u8, { -let tcpi_rcv_wscale: u8 = unsafe { ::core::mem::transmute(tcpi_rcv_wscale) }; -tcpi_rcv_wscale as u64 -}); -__bindgen_bitfield_unit.set(8usize, 1u8, { -let tcpi_delivery_rate_app_limited: u8 = unsafe { ::core::mem::transmute(tcpi_delivery_rate_app_limited) }; -tcpi_delivery_rate_app_limited as u64 -}); -__bindgen_bitfield_unit.set(9usize, 2u8, { -let tcpi_fastopen_client_fail: u8 = unsafe { ::core::mem::transmute(tcpi_fastopen_client_fail) }; -tcpi_fastopen_client_fail as u64 -}); -__bindgen_bitfield_unit -} -} -pub const TCP_NLA_PAD: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_PAD; -pub const TCP_NLA_BUSY: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BUSY; -pub const TCP_NLA_RWND_LIMITED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_RWND_LIMITED; -pub const TCP_NLA_SNDBUF_LIMITED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SNDBUF_LIMITED; -pub const TCP_NLA_DATA_SEGS_OUT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DATA_SEGS_OUT; -pub const TCP_NLA_TOTAL_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TOTAL_RETRANS; -pub const TCP_NLA_PACING_RATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_PACING_RATE; -pub const TCP_NLA_DELIVERY_RATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERY_RATE; -pub const TCP_NLA_SND_CWND: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SND_CWND; -pub const TCP_NLA_REORDERING: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REORDERING; -pub const TCP_NLA_MIN_RTT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_MIN_RTT; -pub const TCP_NLA_RECUR_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_RECUR_RETRANS; -pub const TCP_NLA_DELIVERY_RATE_APP_LMT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERY_RATE_APP_LMT; -pub const TCP_NLA_SNDQ_SIZE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SNDQ_SIZE; -pub const TCP_NLA_CA_STATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_CA_STATE; -pub const TCP_NLA_SND_SSTHRESH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SND_SSTHRESH; -pub const TCP_NLA_DELIVERED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERED; -pub const TCP_NLA_DELIVERED_CE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERED_CE; -pub const TCP_NLA_BYTES_SENT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_SENT; -pub const TCP_NLA_BYTES_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_RETRANS; -pub const TCP_NLA_DSACK_DUPS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DSACK_DUPS; -pub const TCP_NLA_REORD_SEEN: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REORD_SEEN; -pub const TCP_NLA_SRTT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SRTT; -pub const TCP_NLA_TIMEOUT_REHASH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TIMEOUT_REHASH; -pub const TCP_NLA_BYTES_NOTSENT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_NOTSENT; -pub const TCP_NLA_EDT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_EDT; -pub const TCP_NLA_TTL: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TTL; -pub const TCP_NLA_REHASH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REHASH; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_6 { -TCP_NLA_PAD = 0, -TCP_NLA_BUSY = 1, -TCP_NLA_RWND_LIMITED = 2, -TCP_NLA_SNDBUF_LIMITED = 3, -TCP_NLA_DATA_SEGS_OUT = 4, -TCP_NLA_TOTAL_RETRANS = 5, -TCP_NLA_PACING_RATE = 6, -TCP_NLA_DELIVERY_RATE = 7, -TCP_NLA_SND_CWND = 8, -TCP_NLA_REORDERING = 9, -TCP_NLA_MIN_RTT = 10, -TCP_NLA_RECUR_RETRANS = 11, -TCP_NLA_DELIVERY_RATE_APP_LMT = 12, -TCP_NLA_SNDQ_SIZE = 13, -TCP_NLA_CA_STATE = 14, -TCP_NLA_SND_SSTHRESH = 15, -TCP_NLA_DELIVERED = 16, -TCP_NLA_DELIVERED_CE = 17, -TCP_NLA_BYTES_SENT = 18, -TCP_NLA_BYTES_RETRANS = 19, -TCP_NLA_DSACK_DUPS = 20, -TCP_NLA_REORD_SEEN = 21, -TCP_NLA_SRTT = 22, -TCP_NLA_TIMEOUT_REHASH = 23, -TCP_NLA_BYTES_NOTSENT = 24, -TCP_NLA_EDT = 25, -TCP_NLA_TTL = 26, -TCP_NLA_REHASH = 27, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct tcp_md5sig { -pub tcpm_addr: __kernel_sockaddr_storage, -pub tcpm_flags: __u8, -pub tcpm_prefixlen: __u8, -pub tcpm_keylen: __u16, -pub tcpm_ifindex: crate::ctypes::c_int, -pub tcpm_key: [__u8; 80usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct tcp_diag_md5sig { -pub tcpm_family: __u8, -pub tcpm_prefixlen: __u8, -pub tcpm_keylen: __u16, -pub tcpm_addr: [__be32; 4usize], -pub tcpm_key: [__u8; 80usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct tcp_zerocopy_receive { -pub address: __u64, -pub length: __u32, -pub recv_skip_hint: __u32, -pub inq: __u32, -pub err: __s32, -pub copybuf_address: __u64, -pub copybuf_len: __s32, -pub flags: __u32, -pub msg_control: __u64, -pub msg_controllen: __u64, -pub msg_flags: __u32, -pub reserved: __u32, -} -pub type cc_t = crate::ctypes::c_uchar; -pub type speed_t = crate::ctypes::c_uint; -pub type tcflag_t = crate::ctypes::c_uint; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct termios { -pub c_iflag: tcflag_t, -pub c_oflag: tcflag_t, -pub c_cflag: tcflag_t, -pub c_lflag: tcflag_t, -pub c_cc: [cc_t; 19usize], -pub c_line: cc_t, -pub c_ispeed: speed_t, -pub c_ospeed: speed_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ktermios { -pub c_iflag: tcflag_t, -pub c_oflag: tcflag_t, -pub c_cflag: tcflag_t, -pub c_lflag: tcflag_t, -pub c_cc: [cc_t; 19usize], -pub c_line: cc_t, -pub c_ispeed: speed_t, -pub c_ospeed: speed_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sgttyb { -pub sg_ispeed: crate::ctypes::c_char, -pub sg_ospeed: crate::ctypes::c_char, -pub sg_erase: crate::ctypes::c_char, -pub sg_kill: crate::ctypes::c_char, -pub sg_flags: crate::ctypes::c_short, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct tchars { -pub t_intrc: crate::ctypes::c_char, -pub t_quitc: crate::ctypes::c_char, -pub t_startc: crate::ctypes::c_char, -pub t_stopc: crate::ctypes::c_char, -pub t_eofc: crate::ctypes::c_char, -pub t_brkc: crate::ctypes::c_char, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ltchars { -pub t_suspc: crate::ctypes::c_char, -pub t_dsuspc: crate::ctypes::c_char, -pub t_rprntc: crate::ctypes::c_char, -pub t_flushc: crate::ctypes::c_char, -pub t_werasc: crate::ctypes::c_char, -pub t_lnextc: crate::ctypes::c_char, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct winsize { -pub ws_row: crate::ctypes::c_ushort, -pub ws_col: crate::ctypes::c_ushort, -pub ws_xpixel: crate::ctypes::c_ushort, -pub ws_ypixel: crate::ctypes::c_ushort, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct termio { -pub c_iflag: crate::ctypes::c_ushort, -pub c_oflag: crate::ctypes::c_ushort, -pub c_cflag: crate::ctypes::c_ushort, -pub c_lflag: crate::ctypes::c_ushort, -pub c_line: crate::ctypes::c_uchar, -pub c_cc: [crate::ctypes::c_uchar; 10usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct iovec { -pub iov_base: *mut crate::ctypes::c_void, -pub iov_len: __kernel_size_t, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct sockaddr_un { -pub sun_family: __kernel_sa_family_t, -pub sun_path: [crate::ctypes::c_char; 108usize], +pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { +::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len) } -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct oldold_utsname { -pub sysname: [crate::ctypes::c_char; 9usize], -pub nodename: [crate::ctypes::c_char; 9usize], -pub release: [crate::ctypes::c_char; 9usize], -pub version: [crate::ctypes::c_char; 9usize], -pub machine: [crate::ctypes::c_char; 9usize], } -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct old_utsname { -pub sysname: [crate::ctypes::c_char; 65usize], -pub nodename: [crate::ctypes::c_char; 65usize], -pub release: [crate::ctypes::c_char; 65usize], -pub version: [crate::ctypes::c_char; 65usize], -pub machine: [crate::ctypes::c_char; 65usize], +impl<T> ::core::fmt::Debug for __IncompleteArrayField<T> { +fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { +fmt.write_str("__IncompleteArrayField") } -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct new_utsname { -pub sysname: [crate::ctypes::c_char; 65usize], -pub nodename: [crate::ctypes::c_char; 65usize], -pub release: [crate::ctypes::c_char; 65usize], -pub version: [crate::ctypes::c_char; 65usize], -pub machine: [crate::ctypes::c_char; 65usize], -pub domainname: [crate::ctypes::c_char; 65usize], } impl membarrier_cmd { pub const MEMBARRIER_CMD_SHARED: membarrier_cmd = membarrier_cmd::MEMBARRIER_CMD_GLOBAL; } -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum membarrier_cmd { -MEMBARRIER_CMD_QUERY = 0, -MEMBARRIER_CMD_GLOBAL = 1, -MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, -MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, -MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, -MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, -MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, -MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, -MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, -MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, -} -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum membarrier_cmd_flag { -MEMBARRIER_CMD_FLAG_CPU = 1, -} -#[repr(C, packed)] -#[derive(Copy, Clone)] -pub struct uffd_msg { -pub event: __u8, -pub reserved1: __u8, -pub reserved2: __u16, -pub reserved3: __u32, -pub arg: uffd_msg__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union uffd_msg__bindgen_ty_1 { -pub pagefault: uffd_msg__bindgen_ty_1__bindgen_ty_1, -pub fork: uffd_msg__bindgen_ty_1__bindgen_ty_2, -pub remap: uffd_msg__bindgen_ty_1__bindgen_ty_3, -pub remove: uffd_msg__bindgen_ty_1__bindgen_ty_4, -pub reserved: uffd_msg__bindgen_ty_1__bindgen_ty_5, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct uffd_msg__bindgen_ty_1__bindgen_ty_1 { -pub flags: __u64, -pub address: __u64, -pub feat: uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 { -pub ptid: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffd_msg__bindgen_ty_1__bindgen_ty_2 { -pub ufd: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffd_msg__bindgen_ty_1__bindgen_ty_3 { -pub from: __u64, -pub to: __u64, -pub len: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffd_msg__bindgen_ty_1__bindgen_ty_4 { -pub start: __u64, -pub end: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffd_msg__bindgen_ty_1__bindgen_ty_5 { -pub reserved1: __u64, -pub reserved2: __u64, -pub reserved3: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffdio_api { -pub api: __u64, -pub features: __u64, -pub ioctls: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffdio_range { -pub start: __u64, -pub len: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffdio_register { -pub range: uffdio_range, -pub mode: __u64, -pub ioctls: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffdio_copy { -pub dst: __u64, -pub src: __u64, -pub len: __u64, -pub mode: __u64, -pub copy: __s64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffdio_zeropage { -pub range: uffdio_range, -pub mode: __u64, -pub zeropage: __s64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffdio_writeprotect { -pub range: uffdio_range, -pub mode: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct uffdio_continue { -pub range: uffdio_range, -pub mode: __u64, -pub mapped: __s64, -} -#[repr(C)] -pub struct io_uring_sqe { -pub opcode: __u8, -pub flags: __u8, -pub ioprio: __u16, -pub fd: __s32, -pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_1, -pub __bindgen_anon_2: io_uring_sqe__bindgen_ty_2, -pub len: __u32, -pub __bindgen_anon_3: io_uring_sqe__bindgen_ty_3, -pub user_data: __u64, -pub __bindgen_anon_4: io_uring_sqe__bindgen_ty_4, -pub personality: __u16, -pub __bindgen_anon_5: io_uring_sqe__bindgen_ty_5, -pub __bindgen_anon_6: io_uring_sqe__bindgen_ty_6, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union io_uring_sqe__bindgen_ty_1 { -pub off: __u64, -pub addr2: __u64, -pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_1__bindgen_ty_1, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_sqe__bindgen_ty_1__bindgen_ty_1 { -pub cmd_op: __u32, -pub __pad1: __u32, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union io_uring_sqe__bindgen_ty_2 { -pub addr: __u64, -pub splice_off_in: __u64, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union io_uring_sqe__bindgen_ty_3 { -pub rw_flags: __kernel_rwf_t, -pub fsync_flags: __u32, -pub poll_events: __u16, -pub poll32_events: __u32, -pub sync_range_flags: __u32, -pub msg_flags: __u32, -pub timeout_flags: __u32, -pub accept_flags: __u32, -pub cancel_flags: __u32, -pub open_flags: __u32, -pub statx_flags: __u32, -pub fadvise_advice: __u32, -pub splice_flags: __u32, -pub rename_flags: __u32, -pub unlink_flags: __u32, -pub hardlink_flags: __u32, -pub xattr_flags: __u32, -pub msg_ring_flags: __u32, -pub uring_cmd_flags: __u32, -} -#[repr(C, packed)] -#[derive(Copy, Clone)] -pub union io_uring_sqe__bindgen_ty_4 { -pub buf_index: __u16, -pub buf_group: __u16, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union io_uring_sqe__bindgen_ty_5 { -pub splice_fd_in: __s32, -pub file_index: __u32, -pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_5__bindgen_ty_1, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_sqe__bindgen_ty_5__bindgen_ty_1 { -pub addr_len: __u16, -pub __pad3: [__u16; 1usize], -} -#[repr(C)] -pub struct io_uring_sqe__bindgen_ty_6 { -pub __bindgen_anon_1: __BindgenUnionField<io_uring_sqe__bindgen_ty_6__bindgen_ty_1>, -pub cmd: __BindgenUnionField<[__u8; 0usize]>, -pub bindgen_union_field: [u64; 2usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_sqe__bindgen_ty_6__bindgen_ty_1 { -pub addr3: __u64, -pub __pad2: [__u64; 1usize], -} -pub const IOSQE_FIXED_FILE_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_FIXED_FILE_BIT; -pub const IOSQE_IO_DRAIN_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_DRAIN_BIT; -pub const IOSQE_IO_LINK_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_LINK_BIT; -pub const IOSQE_IO_HARDLINK_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_HARDLINK_BIT; -pub const IOSQE_ASYNC_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_ASYNC_BIT; -pub const IOSQE_BUFFER_SELECT_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_BUFFER_SELECT_BIT; -pub const IOSQE_CQE_SKIP_SUCCESS_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_CQE_SKIP_SUCCESS_BIT; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_7 { -IOSQE_FIXED_FILE_BIT = 0, -IOSQE_IO_DRAIN_BIT = 1, -IOSQE_IO_LINK_BIT = 2, -IOSQE_IO_HARDLINK_BIT = 3, -IOSQE_ASYNC_BIT = 4, -IOSQE_BUFFER_SELECT_BIT = 5, -IOSQE_CQE_SKIP_SUCCESS_BIT = 6, -} -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum io_uring_op { -IORING_OP_NOP = 0, -IORING_OP_READV = 1, -IORING_OP_WRITEV = 2, -IORING_OP_FSYNC = 3, -IORING_OP_READ_FIXED = 4, -IORING_OP_WRITE_FIXED = 5, -IORING_OP_POLL_ADD = 6, -IORING_OP_POLL_REMOVE = 7, -IORING_OP_SYNC_FILE_RANGE = 8, -IORING_OP_SENDMSG = 9, -IORING_OP_RECVMSG = 10, -IORING_OP_TIMEOUT = 11, -IORING_OP_TIMEOUT_REMOVE = 12, -IORING_OP_ACCEPT = 13, -IORING_OP_ASYNC_CANCEL = 14, -IORING_OP_LINK_TIMEOUT = 15, -IORING_OP_CONNECT = 16, -IORING_OP_FALLOCATE = 17, -IORING_OP_OPENAT = 18, -IORING_OP_CLOSE = 19, -IORING_OP_FILES_UPDATE = 20, -IORING_OP_STATX = 21, -IORING_OP_READ = 22, -IORING_OP_WRITE = 23, -IORING_OP_FADVISE = 24, -IORING_OP_MADVISE = 25, -IORING_OP_SEND = 26, -IORING_OP_RECV = 27, -IORING_OP_OPENAT2 = 28, -IORING_OP_EPOLL_CTL = 29, -IORING_OP_SPLICE = 30, -IORING_OP_PROVIDE_BUFFERS = 31, -IORING_OP_REMOVE_BUFFERS = 32, -IORING_OP_TEE = 33, -IORING_OP_SHUTDOWN = 34, -IORING_OP_RENAMEAT = 35, -IORING_OP_UNLINKAT = 36, -IORING_OP_MKDIRAT = 37, -IORING_OP_SYMLINKAT = 38, -IORING_OP_LINKAT = 39, -IORING_OP_MSG_RING = 40, -IORING_OP_FSETXATTR = 41, -IORING_OP_SETXATTR = 42, -IORING_OP_FGETXATTR = 43, -IORING_OP_GETXATTR = 44, -IORING_OP_SOCKET = 45, -IORING_OP_URING_CMD = 46, -IORING_OP_SEND_ZC = 47, -IORING_OP_SENDMSG_ZC = 48, -IORING_OP_LAST = 49, -} -pub const IORING_MSG_DATA: _bindgen_ty_8 = _bindgen_ty_8::IORING_MSG_DATA; -pub const IORING_MSG_SEND_FD: _bindgen_ty_8 = _bindgen_ty_8::IORING_MSG_SEND_FD; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_8 { -IORING_MSG_DATA = 0, -IORING_MSG_SEND_FD = 1, -} -#[repr(C)] -#[derive(Debug)] -pub struct io_uring_cqe { -pub user_data: __u64, -pub res: __s32, -pub flags: __u32, -pub big_cqe: __IncompleteArrayField<__u64>, -} -pub const IORING_CQE_BUFFER_SHIFT: _bindgen_ty_9 = _bindgen_ty_9::IORING_CQE_BUFFER_SHIFT; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_9 { -IORING_CQE_BUFFER_SHIFT = 16, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_sqring_offsets { -pub head: __u32, -pub tail: __u32, -pub ring_mask: __u32, -pub ring_entries: __u32, -pub flags: __u32, -pub dropped: __u32, -pub array: __u32, -pub resv1: __u32, -pub resv2: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_cqring_offsets { -pub head: __u32, -pub tail: __u32, -pub ring_mask: __u32, -pub ring_entries: __u32, -pub overflow: __u32, -pub cqes: __u32, -pub flags: __u32, -pub resv1: __u32, -pub resv2: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_params { -pub sq_entries: __u32, -pub cq_entries: __u32, -pub flags: __u32, -pub sq_thread_cpu: __u32, -pub sq_thread_idle: __u32, -pub features: __u32, -pub wq_fd: __u32, -pub resv: [__u32; 3usize], -pub sq_off: io_sqring_offsets, -pub cq_off: io_cqring_offsets, -} -pub const IORING_REGISTER_BUFFERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS; -pub const IORING_UNREGISTER_BUFFERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_BUFFERS; -pub const IORING_REGISTER_FILES: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES; -pub const IORING_UNREGISTER_FILES: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_FILES; -pub const IORING_REGISTER_EVENTFD: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_EVENTFD; -pub const IORING_UNREGISTER_EVENTFD: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_EVENTFD; -pub const IORING_REGISTER_FILES_UPDATE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES_UPDATE; -pub const IORING_REGISTER_EVENTFD_ASYNC: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_EVENTFD_ASYNC; -pub const IORING_REGISTER_PROBE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PROBE; -pub const IORING_REGISTER_PERSONALITY: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PERSONALITY; -pub const IORING_UNREGISTER_PERSONALITY: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_PERSONALITY; -pub const IORING_REGISTER_RESTRICTIONS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_RESTRICTIONS; -pub const IORING_REGISTER_ENABLE_RINGS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_ENABLE_RINGS; -pub const IORING_REGISTER_FILES2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES2; -pub const IORING_REGISTER_FILES_UPDATE2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES_UPDATE2; -pub const IORING_REGISTER_BUFFERS2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS2; -pub const IORING_REGISTER_BUFFERS_UPDATE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS_UPDATE; -pub const IORING_REGISTER_IOWQ_AFF: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_IOWQ_AFF; -pub const IORING_UNREGISTER_IOWQ_AFF: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_IOWQ_AFF; -pub const IORING_REGISTER_IOWQ_MAX_WORKERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_IOWQ_MAX_WORKERS; -pub const IORING_REGISTER_RING_FDS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_RING_FDS; -pub const IORING_UNREGISTER_RING_FDS: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_RING_FDS; -pub const IORING_REGISTER_PBUF_RING: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PBUF_RING; -pub const IORING_UNREGISTER_PBUF_RING: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_PBUF_RING; -pub const IORING_REGISTER_SYNC_CANCEL: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_SYNC_CANCEL; -pub const IORING_REGISTER_FILE_ALLOC_RANGE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILE_ALLOC_RANGE; -pub const IORING_REGISTER_LAST: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_LAST; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_10 { -IORING_REGISTER_BUFFERS = 0, -IORING_UNREGISTER_BUFFERS = 1, -IORING_REGISTER_FILES = 2, -IORING_UNREGISTER_FILES = 3, -IORING_REGISTER_EVENTFD = 4, -IORING_UNREGISTER_EVENTFD = 5, -IORING_REGISTER_FILES_UPDATE = 6, -IORING_REGISTER_EVENTFD_ASYNC = 7, -IORING_REGISTER_PROBE = 8, -IORING_REGISTER_PERSONALITY = 9, -IORING_UNREGISTER_PERSONALITY = 10, -IORING_REGISTER_RESTRICTIONS = 11, -IORING_REGISTER_ENABLE_RINGS = 12, -IORING_REGISTER_FILES2 = 13, -IORING_REGISTER_FILES_UPDATE2 = 14, -IORING_REGISTER_BUFFERS2 = 15, -IORING_REGISTER_BUFFERS_UPDATE = 16, -IORING_REGISTER_IOWQ_AFF = 17, -IORING_UNREGISTER_IOWQ_AFF = 18, -IORING_REGISTER_IOWQ_MAX_WORKERS = 19, -IORING_REGISTER_RING_FDS = 20, -IORING_UNREGISTER_RING_FDS = 21, -IORING_REGISTER_PBUF_RING = 22, -IORING_UNREGISTER_PBUF_RING = 23, -IORING_REGISTER_SYNC_CANCEL = 24, -IORING_REGISTER_FILE_ALLOC_RANGE = 25, -IORING_REGISTER_LAST = 26, -} -pub const IO_WQ_BOUND: _bindgen_ty_11 = _bindgen_ty_11::IO_WQ_BOUND; -pub const IO_WQ_UNBOUND: _bindgen_ty_11 = _bindgen_ty_11::IO_WQ_UNBOUND; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_11 { -IO_WQ_BOUND = 0, -IO_WQ_UNBOUND = 1, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_files_update { -pub offset: __u32, -pub resv: __u32, -pub fds: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_rsrc_register { -pub nr: __u32, -pub flags: __u32, -pub resv2: __u64, -pub data: __u64, -pub tags: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_rsrc_update { -pub offset: __u32, -pub resv: __u32, -pub data: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_rsrc_update2 { -pub offset: __u32, -pub resv: __u32, -pub data: __u64, -pub tags: __u64, -pub nr: __u32, -pub resv2: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_notification_slot { -pub tag: __u64, -pub resv: [__u64; 3usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_notification_register { -pub nr_slots: __u32, -pub resv: __u32, -pub resv2: __u64, -pub data: __u64, -pub resv3: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_probe_op { -pub op: __u8, -pub resv: __u8, -pub flags: __u16, -pub resv2: __u32, -} -#[repr(C)] -#[derive(Debug)] -pub struct io_uring_probe { -pub last_op: __u8, -pub ops_len: __u8, -pub resv: __u16, -pub resv2: [__u32; 3usize], -pub ops: __IncompleteArrayField<io_uring_probe_op>, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct io_uring_restriction { -pub opcode: __u16, -pub __bindgen_anon_1: io_uring_restriction__bindgen_ty_1, -pub resv: __u8, -pub resv2: [__u32; 3usize], -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union io_uring_restriction__bindgen_ty_1 { -pub register_op: __u8, -pub sqe_op: __u8, -pub sqe_flags: __u8, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_buf { -pub addr: __u64, -pub len: __u32, -pub bid: __u16, -pub resv: __u16, -} -#[repr(C)] -pub struct io_uring_buf_ring { -pub __bindgen_anon_1: io_uring_buf_ring__bindgen_ty_1, -} -#[repr(C)] -pub struct io_uring_buf_ring__bindgen_ty_1 { -pub __bindgen_anon_1: __BindgenUnionField<io_uring_buf_ring__bindgen_ty_1__bindgen_ty_1>, -pub bufs: __BindgenUnionField<[io_uring_buf; 0usize]>, -pub bindgen_union_field: [u64; 2usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_buf_ring__bindgen_ty_1__bindgen_ty_1 { -pub resv1: __u64, -pub resv2: __u32, -pub resv3: __u16, -pub tail: __u16, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_buf_reg { -pub ring_addr: __u64, -pub ring_entries: __u32, -pub bgid: __u16, -pub pad: __u16, -pub resv: [__u64; 3usize], -} -pub const IORING_RESTRICTION_REGISTER_OP: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_REGISTER_OP; -pub const IORING_RESTRICTION_SQE_OP: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_OP; -pub const IORING_RESTRICTION_SQE_FLAGS_ALLOWED: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_FLAGS_ALLOWED; -pub const IORING_RESTRICTION_SQE_FLAGS_REQUIRED: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_FLAGS_REQUIRED; -pub const IORING_RESTRICTION_LAST: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_LAST; -#[repr(u32)] -#[non_exhaustive] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub enum _bindgen_ty_12 { -IORING_RESTRICTION_REGISTER_OP = 0, -IORING_RESTRICTION_SQE_OP = 1, -IORING_RESTRICTION_SQE_FLAGS_ALLOWED = 2, -IORING_RESTRICTION_SQE_FLAGS_REQUIRED = 3, -IORING_RESTRICTION_LAST = 4, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_getevents_arg { -pub sigmask: __u64, -pub sigmask_sz: __u32, -pub pad: __u32, -pub ts: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_sync_cancel_reg { -pub addr: __u64, -pub fd: __s32, -pub flags: __u32, -pub timeout: __kernel_timespec, -pub pad: [__u64; 4usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_file_index_range { -pub off: __u32, -pub len: __u32, -pub resv: __u64, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct io_uring_recvmsg_out { -pub namelen: __u32, -pub controllen: __u32, -pub payloadlen: __u32, -pub flags: __u32, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct sockaddr { -pub __storage: __kernel_sockaddr_storage, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct linger { -pub l_onoff: crate::ctypes::c_int, -pub l_linger: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Debug)] -pub struct linux_dirent64 { -pub d_ino: crate::ctypes::c_ulonglong, -pub d_off: crate::ctypes::c_longlong, -pub d_reclen: __u16, -pub d_type: __u8, -pub d_name: __IncompleteArrayField<crate::ctypes::c_char>, -} -pub type socklen_t = crate::ctypes::c_uint; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct __old_kernel_stat { -pub st_dev: crate::ctypes::c_ushort, -pub st_ino: crate::ctypes::c_ushort, -pub st_mode: crate::ctypes::c_ushort, -pub st_nlink: crate::ctypes::c_ushort, -pub st_uid: crate::ctypes::c_ushort, -pub st_gid: crate::ctypes::c_ushort, -pub st_rdev: crate::ctypes::c_ushort, -pub st_size: crate::ctypes::c_ulong, -pub st_atime: crate::ctypes::c_ulong, -pub st_mtime: crate::ctypes::c_ulong, -pub st_ctime: crate::ctypes::c_ulong, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct stat { -pub st_dev: crate::ctypes::c_ulong, -pub st_ino: __kernel_ino_t, -pub st_mode: __kernel_mode_t, -pub st_nlink: crate::ctypes::c_ushort, -pub st_uid: __kernel_uid32_t, -pub st_gid: __kernel_gid32_t, -pub st_rdev: crate::ctypes::c_ulong, -pub st_size: crate::ctypes::c_long, -pub st_blksize: crate::ctypes::c_ulong, -pub st_blocks: crate::ctypes::c_ulong, -pub st_atime: crate::ctypes::c_ulong, -pub st_atime_nsec: crate::ctypes::c_ulong, -pub st_mtime: crate::ctypes::c_ulong, -pub st_mtime_nsec: crate::ctypes::c_ulong, -pub st_ctime: crate::ctypes::c_ulong, -pub st_ctime_nsec: crate::ctypes::c_ulong, -pub __unused4: crate::ctypes::c_ulong, -pub __unused5: crate::ctypes::c_ulong, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct stat64 { -pub st_dev: crate::ctypes::c_ulonglong, -pub st_ino: crate::ctypes::c_ulonglong, -pub st_mode: crate::ctypes::c_uint, -pub st_nlink: crate::ctypes::c_uint, -pub st_uid: crate::ctypes::c_uint, -pub st_gid: crate::ctypes::c_uint, -pub st_rdev: crate::ctypes::c_ulonglong, -pub __pad2: crate::ctypes::c_ushort, -pub st_size: crate::ctypes::c_longlong, -pub st_blksize: crate::ctypes::c_int, -pub st_blocks: crate::ctypes::c_longlong, -pub st_atime: crate::ctypes::c_int, -pub st_atime_nsec: crate::ctypes::c_uint, -pub st_mtime: crate::ctypes::c_int, -pub st_mtime_nsec: crate::ctypes::c_uint, -pub st_ctime: crate::ctypes::c_int, -pub st_ctime_nsec: crate::ctypes::c_uint, -pub __unused4: crate::ctypes::c_uint, -pub __unused5: crate::ctypes::c_uint, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct statfs { -pub f_type: __u32, -pub f_bsize: __u32, -pub f_blocks: __u32, -pub f_bfree: __u32, -pub f_bavail: __u32, -pub f_files: __u32, -pub f_ffree: __u32, -pub f_fsid: __kernel_fsid_t, -pub f_namelen: __u32, -pub f_frsize: __u32, -pub f_flags: __u32, -pub f_spare: [__u32; 4usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct statfs64 { -pub f_type: __u32, -pub f_bsize: __u32, -pub f_blocks: __u64, -pub f_bfree: __u64, -pub f_bavail: __u64, -pub f_files: __u64, -pub f_ffree: __u64, -pub f_fsid: __kernel_fsid_t, -pub f_namelen: __u32, -pub f_frsize: __u32, -pub f_flags: __u32, -pub f_spare: [__u32; 4usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct compat_statfs64 { -pub f_type: __u32, -pub f_bsize: __u32, -pub f_blocks: __u64, -pub f_bfree: __u64, -pub f_bavail: __u64, -pub f_files: __u64, -pub f_ffree: __u64, -pub f_fsid: __kernel_fsid_t, -pub f_namelen: __u32, -pub f_frsize: __u32, -pub f_flags: __u32, -pub f_spare: [__u32; 4usize], -} -pub type __fsword_t = __u32; -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct user_desc { -pub entry_number: crate::ctypes::c_uint, -pub base_addr: crate::ctypes::c_uint, -pub limit: crate::ctypes::c_uint, -pub _bitfield_align_1: [u8; 0], -pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -pub __bindgen_padding_0: [u8; 3usize], -} impl user_desc { #[inline] pub fn seg_32bit(&self) -> crate::ctypes::c_uint { @@ -5432,47 +3021,3 @@ useable as u64 __bindgen_bitfield_unit } } -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct msghdr { -pub msg_name: *mut crate::ctypes::c_void, -pub msg_namelen: crate::ctypes::c_int, -pub msg_iov: *mut iovec, -pub msg_iovlen: size_t, -pub msg_control: *mut crate::ctypes::c_void, -pub msg_controllen: size_t, -pub msg_flags: crate::ctypes::c_uint, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct cmsghdr { -pub cmsg_len: size_t, -pub cmsg_level: crate::ctypes::c_int, -pub cmsg_type: crate::ctypes::c_int, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct ucred { -pub pid: __u32, -pub uid: __u32, -pub gid: __u32, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct mmsghdr { -pub msg_hdr: msghdr, -pub msg_len: crate::ctypes::c_uint, -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct kernel_sigset_t { -pub sig: [crate::ctypes::c_ulong; 2usize], -} -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct kernel_sigaction { -pub sa_handler_kernel: __kernel_sighandler_t, -pub sa_flags: crate::ctypes::c_ulong, -pub sa_restorer: __sigrestore_t, -pub sa_mask: kernel_sigset_t, -} |