From f0938cbe68845ed340d63ede1aa1df41a85c2535 Mon Sep 17 00:00:00 2001 From: Lv Ying Date: Wed, 3 Aug 2022 03:22:59 +0800 Subject: [PATCH] Adapt to openEuler 22.09 Signed-off-by: Lv Ying (cherry picked from commit 994fb9d0d85f6c732fbb54911baba45198c1bd18) --- Drop-using-legacy-BPF-map-declaration.patch | 37 + atune_bpf_collection.spec | 14 +- ...-and-change-start_readahead_tune-s-d.patch | 79 + ...linux.h-instead-of-bpftool-gen-vmlin.patch | 83514 +++++++++------- 4 files changed, 45685 insertions(+), 37959 deletions(-) create mode 100644 Drop-using-legacy-BPF-map-declaration.patch create mode 100644 remove-spec-file-and-change-start_readahead_tune-s-d.patch diff --git a/Drop-using-legacy-BPF-map-declaration.patch b/Drop-using-legacy-BPF-map-declaration.patch new file mode 100644 index 0000000..adef7a2 --- /dev/null +++ b/Drop-using-legacy-BPF-map-declaration.patch @@ -0,0 +1,37 @@ +From 870d20f15defab4e3ff6f1cee721b8373ce2eb6d Mon Sep 17 00:00:00 2001 +From: Lv Ying +Date: Wed, 3 Aug 2022 08:14:25 +0800 +Subject: [PATCH] Drop using legacy BPF map declaration + https://github.com/libbpf/libbpf/wiki/Libbpf:-the-road-to-v1.0#drop-support-for-legacy-bpf-map-declaration-syntax + +Signed-off-by: Lv Ying +--- + readahead_tune.bpf.c | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +diff --git a/readahead_tune.bpf.c b/readahead_tune.bpf.c +index 24a6ff9..cb29f3d 100644 +--- a/readahead_tune.bpf.c ++++ b/readahead_tune.bpf.c +@@ -43,12 +43,12 @@ struct { + __uint(max_entries, MAP_ARRAY_SIZE); + } arraymap SEC(".maps"); + +-struct bpf_map_def SEC("maps") htab = { +- .type = BPF_MAP_TYPE_HASH, +- .key_size = sizeof(long), +- .value_size = sizeof(struct file_rd_hnode), +- .max_entries = MAX_HASH_TABLE_ENTRY, +-}; ++struct { ++ __uint(type, BPF_MAP_TYPE_HASH); ++ __type(key, u64); ++ __type(value, struct file_rd_hnode); ++ __uint(max_entries, MAX_HASH_TABLE_ENTRY); ++} htab SEC(".maps"); + + /* + * This first paramater should be the exact position of variable, otherwise the start +-- +2.33.0 + diff --git a/atune_bpf_collection.spec b/atune_bpf_collection.spec index a4063b8..22a745d 100644 --- a/atune_bpf_collection.spec +++ b/atune_bpf_collection.spec @@ -1,13 +1,15 @@ Name: A-Tune-BPF-Collection Version: 1.0.0 -Release: 3 +Release: 4 License: Mulan PSL v2 Summary: BPF program collection to adjust fine-grained kernel mode to get better performance URL: https://gitee.com/openeuler/A-Tune-BPF-Collection Source0: https://gitee.com/openeuler/A-Tune-BPF-Collection/repository/archive/v%{version}.tar.gz -Patch1: use-generated-vmlinux.h-instead-of-bpftool-gen-vmlin.patch -Patch2: Add-stack-protector-compile-option.patch +Patch1: remove-spec-file-and-change-start_readahead_tune-s-d.patch +Patch2: Drop-using-legacy-BPF-map-declaration.patch +Patch3: use-generated-vmlinux.h-instead-of-bpftool-gen-vmlin.patch +Patch4: Add-stack-protector-compile-option.patch BuildRequires: clang, llvm, libbpf-devel Requires: libbpf @@ -39,6 +41,12 @@ install -D -p -m 0644 readahead_tune.conf %{buildroot}%{_sysconfdir}/sysconfig/r %config(noreplace) %{_sysconfdir}/sysconfig/readahead_tune.conf %changelog +* Wed Aug 3 2022 lvying - 1.0.0-4 +- Type:enhancement +- ID:NA +- SUG:NA +- DESC: Adapt new kernel and BPF compatibility + * Wed Mar 9 2022 lvying - 1.0.0-3 - Type:enhancement - ID:NA diff --git a/remove-spec-file-and-change-start_readahead_tune-s-d.patch b/remove-spec-file-and-change-start_readahead_tune-s-d.patch new file mode 100644 index 0000000..67f6e5d --- /dev/null +++ b/remove-spec-file-and-change-start_readahead_tune-s-d.patch @@ -0,0 +1,79 @@ +From 6b8c86e0caf821c7b58d168a0161a6aab000c8f2 Mon Sep 17 00:00:00 2001 +From: Lv Ying +Date: Tue, 2 Aug 2022 19:18:17 +0800 +Subject: [PATCH] remove spec file and change start_readahead_tune's directory + +Signed-off-by: Lv Ying +--- + atune_bpf_collection.spec | 45 --------------------------------------- + start_readahead_tune | 3 +++ + 2 files changed, 3 insertions(+), 45 deletions(-) + delete mode 100644 atune_bpf_collection.spec + +diff --git a/atune_bpf_collection.spec b/atune_bpf_collection.spec +deleted file mode 100644 +index 0ce6dce..0000000 +--- a/atune_bpf_collection.spec ++++ /dev/null +@@ -1,45 +0,0 @@ +-Name: A-Tune-BPF-Collection +-Version: 0.1 +-Release: 1 +-License: Mulan PSL v2 +-Summary: BPF program collection to adjust fine-grained kernel mode to get better performance +-URL: https://gitee.com/openeuler/A-Tune-BPF-Collection +-Source0: https://gitee.com/openeuler/A-Tune-BPF-Collection/repository/archive/v%{version}.tar.gz +- +-BuildRequires: clang, llvm, libbpf-devel, bpftool, dwarves +-Requires: libbpf +-Provides: readahead_tune +- +-%define debug_package %{nil} +- +-%description +-A-Tune BPF Collection contains a set of BPF program which can interact with kernel in real time. +-It has the following capabilities: +-readahead_tune: trace file reading characteristics, then ajust file read mode to get maximum I/O efficency +- +-%prep +-%autosetup -n %{name}-%{version} -p1 +- +-%build +-make %{?_smp_mflags} +- +-%install +-install -D -p -m 0755 readahead_tune %{buildroot}/%{_sbindir}/readahead_tune +-install -D -p -m 0644 readahead_tune.bpf.o %{buildroot}/%{_sbindir}/readahead_tune.bpf.o +-install -D -p -m 0755 start_readahead_tune %{buildroot}/%{_sbindir}/start_readahead_tune +-install -D -p -m 0755 stop_readahead_tune %{buildroot}/%{_sbindir}/stop_readahead_tune +-install -D -p -m 0644 readahead_tune.conf %{buildroot}%{_sysconfdir}/sysconfig/readahead_tune.conf +- +-%files +-%{_sbindir}/readahead_tune +-%{_sbindir}/readahead_tune.bpf.o +-%{_sbindir}/start_readahead_tune +-%{_sbindir}/stop_readahead_tune +-%config(noreplace) %{_sysconfdir}/sysconfig/readahead_tune.conf +- +-%changelog +-* Tue Nov 9 2021 lvying - 0.1-1 +-- Type:feature +-- ID:NA +-- SUG:NA +-- DESC: Init A-Tune-BPF-Collection repo and add readahead_tune service +diff --git a/start_readahead_tune b/start_readahead_tune +index afae00c..5d5cd08 100755 +--- a/start_readahead_tune ++++ b/start_readahead_tune +@@ -1,5 +1,8 @@ + #!/bin/bash + ++# change working directory to current binary position ++cd "$(dirname "$0")" ++ + function usage() + { + echo "Usage: $0 [ -h | --help] [ -c | --config CONFIG_FILE ]" +-- +2.33.0 + diff --git a/use-generated-vmlinux.h-instead-of-bpftool-gen-vmlin.patch b/use-generated-vmlinux.h-instead-of-bpftool-gen-vmlin.patch index 719dfd1..ed957bb 100644 --- a/use-generated-vmlinux.h-instead-of-bpftool-gen-vmlin.patch +++ b/use-generated-vmlinux.h-instead-of-bpftool-gen-vmlin.patch @@ -1,17 +1,15 @@ -From 3c7be0b48c5bf00d7c9a2730d414006e17753093 Mon Sep 17 00:00:00 2001 +From 336eda54868461057ea416b2dd97406738892229 Mon Sep 17 00:00:00 2001 From: Lv Ying -Date: Fri, 10 Dec 2021 02:05:10 +0800 +Date: Wed, 3 Aug 2022 03:15:48 +0800 Subject: [PATCH] use generated vmlinux.h instead of bpftool gen vmlinux.h in compile env Signed-off-by: Lv Ying --- - Makefile | 22 +- - atune_bpf_collection.spec | 45 - - start_readahead_tune | 3 + - vmlinux.h | 97280 ++++++++++++++++++++++++++++++++++++ - 4 files changed, 97286 insertions(+), 64 deletions(-) - delete mode 100644 atune_bpf_collection.spec + Makefile | 22 +- + readahead_tune.bpf.c | 13 +- + vmlinux.h | 104908 ++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 104919 insertions(+), 24 deletions(-) create mode 100644 vmlinux.h diff --git a/Makefile b/Makefile @@ -59,77 +57,58 @@ index f5ba4bb..1e070a6 100644 $(call msg,BPF,$@) $(Q)$(CLANG) -D__KERNEL__ -D__ASM_SYSREG_H -D__TARGET_ARCH_$(ARCH) \ $(DEBUG_FLAGS) \ -diff --git a/atune_bpf_collection.spec b/atune_bpf_collection.spec -deleted file mode 100644 -index 0ce6dce..0000000 ---- a/atune_bpf_collection.spec -+++ /dev/null -@@ -1,45 +0,0 @@ --Name: A-Tune-BPF-Collection --Version: 0.1 --Release: 1 --License: Mulan PSL v2 --Summary: BPF program collection to adjust fine-grained kernel mode to get better performance --URL: https://gitee.com/openeuler/A-Tune-BPF-Collection --Source0: https://gitee.com/openeuler/A-Tune-BPF-Collection/repository/archive/v%{version}.tar.gz -- --BuildRequires: clang, llvm, libbpf-devel, bpftool, dwarves --Requires: libbpf --Provides: readahead_tune -- --%define debug_package %{nil} -- --%description --A-Tune BPF Collection contains a set of BPF program which can interact with kernel in real time. --It has the following capabilities: --readahead_tune: trace file reading characteristics, then ajust file read mode to get maximum I/O efficency -- --%prep --%autosetup -n %{name}-%{version} -p1 -- --%build --make %{?_smp_mflags} -- --%install --install -D -p -m 0755 readahead_tune %{buildroot}/%{_sbindir}/readahead_tune --install -D -p -m 0644 readahead_tune.bpf.o %{buildroot}/%{_sbindir}/readahead_tune.bpf.o --install -D -p -m 0755 start_readahead_tune %{buildroot}/%{_sbindir}/start_readahead_tune --install -D -p -m 0755 stop_readahead_tune %{buildroot}/%{_sbindir}/stop_readahead_tune --install -D -p -m 0644 readahead_tune.conf %{buildroot}%{_sysconfdir}/sysconfig/readahead_tune.conf -- --%files --%{_sbindir}/readahead_tune --%{_sbindir}/readahead_tune.bpf.o --%{_sbindir}/start_readahead_tune --%{_sbindir}/stop_readahead_tune --%config(noreplace) %{_sysconfdir}/sysconfig/readahead_tune.conf -- --%changelog --* Tue Nov 9 2021 lvying - 0.1-1 --- Type:feature --- ID:NA --- SUG:NA --- DESC: Init A-Tune-BPF-Collection repo and add readahead_tune service -diff --git a/start_readahead_tune b/start_readahead_tune -index afae00c..5d5cd08 100755 ---- a/start_readahead_tune -+++ b/start_readahead_tune -@@ -1,5 +1,8 @@ - #!/bin/bash +diff --git a/readahead_tune.bpf.c b/readahead_tune.bpf.c +index cb29f3d..ad71796 100644 +--- a/readahead_tune.bpf.c ++++ b/readahead_tune.bpf.c +@@ -9,9 +9,12 @@ + /* + * Need to keep consistent with definitions in include/linux/fs.h + * vmlinux.h does not contain macro ++ * openEuler 22.09 has changed these two macro definition + */ +-#define FMODE_RANDOM 0x1000 +-#define FMODE_WILLNEED 0x400000 ++/* File mode control flag, expect random access pattern */ ++#define FMODE_CTL_RANDOM ((fmode_t)0x1) ++/* File mode control flag, will try to read head of the file into pagecache */ ++#define FMODE_CTL_WILLNEED ((fmode_t)0x2) + + #define PREFIX_PATTERN "blk_" + #define MAX_HASH_TABLE_ENTRY 100000 +@@ -98,7 +101,7 @@ int fs_file_read(struct fs_file_read_args *args) + get_conf(file_read_conf + CONF_FILESZ, CONF_FILESZ); + + if (rd_ctx->i_size <= file_read_conf[CONF_FILESZ]) { +- rd_ctx->set_f_mode = FMODE_WILLNEED; ++ rd_ctx->set_f_ctl_mode = FMODE_CTL_WILLNEED; + return 0; + } + +@@ -134,9 +137,9 @@ int fs_file_read(struct fs_file_read_args *args) + if (now - hist->last_nsec >= file_read_conf[CONF_READ_TIME] || hist->tot_nr >= file_read_conf[CONF_TOTAL_READ]) { + if (hist->tot_nr >= file_read_conf[CONF_TOTAL_READ]) { + if (hist->seq_nr <= hist->tot_nr * file_read_conf[CONF_LOWER_BOUND] / HUNDRED_PERCENTAGE) { +- rd_ctx->set_f_mode = FMODE_RANDOM; ++ rd_ctx->set_f_ctl_mode = FMODE_CTL_RANDOM; + } else if (hist->seq_nr >= hist->tot_nr * file_read_conf[CONF_UPPER_BOUND] / HUNDRED_PERCENTAGE) { +- rd_ctx->clr_f_mode = FMODE_RANDOM; ++ rd_ctx->clr_f_ctl_mode = FMODE_CTL_RANDOM; + } + } -+# change working directory to current binary position -+cd "$(dirname "$0")" -+ - function usage() - { - echo "Usage: $0 [ -h | --help] [ -c | --config CONFIG_FILE ]" diff --git a/vmlinux.h b/vmlinux.h new file mode 100644 -index 0000000..bcb9d76 +index 0000000..b42210c --- /dev/null +++ b/vmlinux.h -@@ -0,0 +1,97280 @@ -+typedef signed char __s8; +@@ -0,0 +1,104908 @@ ++#ifndef __VMLINUX_H__ ++#define __VMLINUX_H__ ++ ++#ifndef BPF_NO_PRESERVE_ACCESS_INDEX ++#pragma clang attribute push (__attribute__((preserve_access_index)), apply_to = record) ++#endif + +typedef unsigned char __u8; + @@ -145,8 +124,6 @@ index 0000000..bcb9d76 + +typedef long long unsigned int __u64; + -+typedef __s8 s8; -+ +typedef __u8 u8; + +typedef __s16 s16; @@ -182,7 +159,7 @@ index 0000000..bcb9d76 + +typedef long long int __kernel_loff_t; + -+typedef __kernel_long_t __kernel_time_t; ++typedef long long int __kernel_time64_t; + +typedef __kernel_long_t __kernel_clock_t; + @@ -214,15 +191,13 @@ index 0000000..bcb9d76 + +typedef __kernel_ssize_t ssize_t; + -+typedef u8 uint8_t; -+ -+typedef u16 uint16_t; ++typedef s32 int32_t; + +typedef u32 uint32_t; + -+typedef long unsigned int sector_t; ++typedef u64 sector_t; + -+typedef long unsigned int blkcnt_t; ++typedef u64 blkcnt_t; + +typedef unsigned int gfp_t; + @@ -230,14 +205,12 @@ index 0000000..bcb9d76 + +typedef u64 phys_addr_t; + -+typedef phys_addr_t resource_size_t; -+ +typedef struct { + int counter; +} atomic_t; + +typedef struct { -+ long int counter; ++ s64 counter; +} atomic64_t; + +struct list_head { @@ -261,39 +234,100 @@ index 0000000..bcb9d76 + void (*func)(struct callback_head *); +}; + -+typedef int initcall_entry_t; ++struct lock_class_key {}; + -+typedef u64 jump_label_t; ++struct fs_context; + -+struct jump_entry { -+ jump_label_t code; -+ jump_label_t target; -+ jump_label_t key; ++struct fs_parameter_spec; ++ ++struct dentry; ++ ++struct super_block; ++ ++struct module; ++ ++struct file_system_type { ++ const char *name; ++ int fs_flags; ++ int (*init_fs_context)(struct fs_context *); ++ const struct fs_parameter_spec *parameters; ++ struct dentry * (*mount)(struct file_system_type *, int, const char *, void *); ++ void (*kill_sb)(struct super_block *); ++ struct module *owner; ++ struct file_system_type *next; ++ struct hlist_head fs_supers; ++ struct lock_class_key s_lock_key; ++ struct lock_class_key s_umount_key; ++ struct lock_class_key s_vfs_rename_key; ++ struct lock_class_key s_writers_key[3]; ++ struct lock_class_key i_lock_key; ++ struct lock_class_key i_mutex_key; ++ struct lock_class_key i_mutex_dir_key; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + -+struct static_key_mod; -+ -+struct static_key { -+ atomic_t enabled; ++struct qspinlock { + union { -+ long unsigned int type; -+ struct jump_entry *entries; -+ struct static_key_mod *next; ++ atomic_t val; ++ struct { ++ u8 locked; ++ u8 pending; ++ }; ++ struct { ++ u16 locked_pending; ++ u16 tail; ++ }; + }; +}; + -+struct static_key_true { -+ struct static_key key; ++typedef struct qspinlock arch_spinlock_t; ++ ++struct qrwlock { ++ union { ++ atomic_t cnts; ++ struct { ++ u8 wlocked; ++ u8 __lstate[3]; ++ }; ++ }; ++ arch_spinlock_t wait_lock; +}; + -+struct static_key_false { -+ struct static_key key; ++typedef struct qrwlock arch_rwlock_t; ++ ++struct raw_spinlock { ++ arch_spinlock_t raw_lock; ++}; ++ ++typedef struct raw_spinlock raw_spinlock_t; ++ ++struct spinlock { ++ union { ++ struct raw_spinlock rlock; ++ }; ++}; ++ ++typedef struct spinlock spinlock_t; ++ ++typedef struct { ++ arch_rwlock_t raw_lock; ++} rwlock_t; ++ ++struct ratelimit_state { ++ raw_spinlock_t lock; ++ int interval; ++ int burst; ++ int printed; ++ int missed; ++ long unsigned int begin; ++ long unsigned int flags; +}; + +typedef void *fl_owner_t; + -+struct module; -+ +struct file; + +struct kiocb; @@ -323,6 +357,7 @@ index 0000000..bcb9d76 + ssize_t (*write)(struct file *, const char *, size_t, loff_t *); + ssize_t (*read_iter)(struct kiocb *, struct iov_iter *); + ssize_t (*write_iter)(struct kiocb *, struct iov_iter *); ++ int (*iopoll)(struct kiocb *, bool); + int (*iterate)(struct file *, struct dir_context *); + int (*iterate_shared)(struct file *, struct dir_context *); + __poll_t (*poll)(struct file *, struct poll_table_struct *); @@ -346,76 +381,19 @@ index 0000000..bcb9d76 + long int (*fallocate)(struct file *, int, loff_t, loff_t); + void (*show_fdinfo)(struct seq_file *, struct file *); + ssize_t (*copy_file_range)(struct file *, loff_t, struct file *, loff_t, size_t, unsigned int); -+ int (*clone_file_range)(struct file *, loff_t, struct file *, loff_t, u64); -+ int (*dedupe_file_range)(struct file *, loff_t, struct file *, loff_t, u64); ++ loff_t (*remap_file_range)(struct file *, loff_t, struct file *, loff_t, loff_t, unsigned int); + int (*fadvise)(struct file *, loff_t, loff_t, int); -+ int (*iopoll)(struct kiocb *, bool); -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct qspinlock { -+ union { -+ atomic_t val; -+ struct { -+ u8 locked; -+ u8 pending; -+ }; -+ struct { -+ u16 locked_pending; -+ u16 tail; -+ }; -+ }; -+}; -+ -+typedef struct qspinlock arch_spinlock_t; -+ -+struct raw_spinlock { -+ arch_spinlock_t raw_lock; -+}; -+ -+struct spinlock { -+ union { -+ struct raw_spinlock rlock; -+ }; -+}; -+ -+typedef struct spinlock spinlock_t; -+ -+struct notifier_block; -+ -+struct atomic_notifier_head { -+ spinlock_t lock; -+ struct notifier_block *head; -+}; -+ -+enum system_states { -+ SYSTEM_BOOTING = 0, -+ SYSTEM_SCHEDULING = 1, -+ SYSTEM_RUNNING = 2, -+ SYSTEM_HALT = 3, -+ SYSTEM_POWER_OFF = 4, -+ SYSTEM_RESTART = 5, -+ SYSTEM_SUSPEND = 6, -+}; -+ -+struct taint_flag { -+ char c_true; -+ char c_false; -+ bool module; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +typedef __s64 time64_t; + -+struct timespec { -+ __kernel_time_t tv_sec; -+ long int tv_nsec; -+}; -+ -+struct timezone { -+ int tz_minuteswest; -+ int tz_dsttime; ++struct __kernel_timespec { ++ __kernel_time64_t tv_sec; ++ long long int tv_nsec; +}; + +struct timespec64 { @@ -429,7 +407,12 @@ index 0000000..bcb9d76 + TT_COMPAT = 2, +}; + -+struct compat_timespec; ++typedef s32 old_time32_t; ++ ++struct old_timespec32 { ++ old_time32_t tv_sec; ++ s32 tv_nsec; ++}; + +struct pollfd; + @@ -448,8 +431,8 @@ index 0000000..bcb9d76 + clockid_t clockid; + enum timespec_type type; + union { -+ struct timespec *rmtp; -+ struct compat_timespec *compat_rmtp; ++ struct __kernel_timespec *rmtp; ++ struct old_timespec32 *compat_rmtp; + }; + u64 expires; + } nanosleep; @@ -463,6 +446,864 @@ index 0000000..bcb9d76 + }; +}; + ++struct thread_info { ++ long unsigned int flags; ++ u32 status; ++ u32 cpu; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct refcount_struct { ++ atomic_t refs; ++}; ++ ++typedef struct refcount_struct refcount_t; ++ ++struct llist_node { ++ struct llist_node *next; ++}; ++ ++struct __call_single_node { ++ struct llist_node llist; ++ union { ++ unsigned int u_flags; ++ atomic_t a_flags; ++ }; ++ u16 src; ++ u16 dst; ++}; ++ ++struct load_weight { ++ long unsigned int weight; ++ u32 inv_weight; ++}; ++ ++struct rb_node { ++ long unsigned int __rb_parent_color; ++ struct rb_node *rb_right; ++ struct rb_node *rb_left; ++}; ++ ++struct sched_statistics { ++ u64 wait_start; ++ u64 wait_max; ++ u64 wait_count; ++ u64 wait_sum; ++ u64 iowait_count; ++ u64 iowait_sum; ++ u64 sleep_start; ++ u64 sleep_max; ++ s64 sum_sleep_runtime; ++ u64 block_start; ++ u64 block_max; ++ u64 exec_max; ++ u64 slice_max; ++ u64 nr_migrations_cold; ++ u64 nr_failed_migrations_affine; ++ u64 nr_failed_migrations_running; ++ u64 nr_failed_migrations_hot; ++ u64 nr_forced_migrations; ++ u64 nr_wakeups; ++ u64 nr_wakeups_sync; ++ u64 nr_wakeups_migrate; ++ u64 nr_wakeups_local; ++ u64 nr_wakeups_remote; ++ u64 nr_wakeups_affine; ++ u64 nr_wakeups_affine_attempts; ++ u64 nr_wakeups_passive; ++ u64 nr_wakeups_idle; ++ u64 nr_qos_smt_send_ipi; ++ u64 nr_qos_smt_expelled; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct util_est { ++ unsigned int enqueued; ++ unsigned int ewma; ++}; ++ ++struct sched_avg { ++ u64 last_update_time; ++ u64 load_sum; ++ u64 runnable_sum; ++ u32 util_sum; ++ u32 period_contrib; ++ long unsigned int load_avg; ++ long unsigned int runnable_avg; ++ long unsigned int util_avg; ++ struct util_est util_est; ++}; ++ ++struct cfs_rq; ++ ++struct sched_entity { ++ struct load_weight load; ++ struct rb_node run_node; ++ struct list_head group_node; ++ unsigned int on_rq; ++ u64 exec_start; ++ u64 sum_exec_runtime; ++ u64 vruntime; ++ u64 prev_sum_exec_runtime; ++ u64 nr_migrations; ++ struct sched_statistics statistics; ++ int depth; ++ struct sched_entity *parent; ++ struct cfs_rq *cfs_rq; ++ struct cfs_rq *my_q; ++ long unsigned int runnable_weight; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct sched_avg avg; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct rt_rq; ++ ++struct sched_rt_entity { ++ struct list_head run_list; ++ long unsigned int timeout; ++ long unsigned int watchdog_stamp; ++ unsigned int time_slice; ++ short unsigned int on_rq; ++ short unsigned int on_list; ++ struct sched_rt_entity *back; ++ struct sched_rt_entity *parent; ++ struct rt_rq *rt_rq; ++ struct rt_rq *my_q; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++typedef s64 ktime_t; ++ ++struct timerqueue_node { ++ struct rb_node node; ++ ktime_t expires; ++}; ++ ++enum hrtimer_restart { ++ HRTIMER_NORESTART = 0, ++ HRTIMER_RESTART = 1, ++}; ++ ++struct hrtimer_clock_base; ++ ++struct hrtimer_resvd; ++ ++struct hrtimer { ++ struct timerqueue_node node; ++ ktime_t _softexpires; ++ enum hrtimer_restart (*function)(struct hrtimer *); ++ struct hrtimer_clock_base *base; ++ u8 state; ++ u8 is_rel; ++ u8 is_soft; ++ u8 is_hard; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ size_t hrtimer_size_resvd; ++ struct hrtimer_resvd *_resvd; ++}; ++ ++struct sched_dl_entity { ++ struct rb_node rb_node; ++ u64 dl_runtime; ++ u64 dl_deadline; ++ u64 dl_period; ++ u64 dl_bw; ++ u64 dl_density; ++ s64 runtime; ++ u64 deadline; ++ unsigned int flags; ++ unsigned int dl_throttled: 1; ++ unsigned int dl_yielded: 1; ++ unsigned int dl_non_contending: 1; ++ unsigned int dl_overrun: 1; ++ struct hrtimer dl_timer; ++ struct hrtimer inactive_timer; ++ struct sched_dl_entity *pi_se; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct cpumask { ++ long unsigned int bits[128]; ++}; ++ ++typedef struct cpumask cpumask_t; ++ ++union rcu_special { ++ struct { ++ u8 blocked; ++ u8 need_qs; ++ u8 exp_hint; ++ u8 need_mb; ++ } b; ++ u32 s; ++}; ++ ++struct sched_info { ++ long unsigned int pcount; ++ long long unsigned int run_delay; ++ long long unsigned int last_arrival; ++ long long unsigned int last_queued; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct plist_node { ++ int prio; ++ struct list_head prio_list; ++ struct list_head node_list; ++}; ++ ++struct vmacache { ++ u64 seqnum; ++ struct vm_area_struct *vmas[4]; ++}; ++ ++struct task_rss_stat { ++ int events; ++ int count[4]; ++}; ++ ++struct prev_cputime { ++ u64 utime; ++ u64 stime; ++ raw_spinlock_t lock; ++}; ++ ++struct seqcount { ++ unsigned int sequence; ++}; ++ ++typedef struct seqcount seqcount_t; ++ ++enum vtime_state { ++ VTIME_INACTIVE = 0, ++ VTIME_IDLE = 1, ++ VTIME_SYS = 2, ++ VTIME_USER = 3, ++ VTIME_GUEST = 4, ++}; ++ ++struct vtime { ++ seqcount_t seqcount; ++ long long unsigned int starttime; ++ enum vtime_state state; ++ unsigned int cpu; ++ u64 utime; ++ u64 stime; ++ u64 gtime; ++}; ++ ++struct rb_root { ++ struct rb_node *rb_node; ++}; ++ ++struct rb_root_cached { ++ struct rb_root rb_root; ++ struct rb_node *rb_leftmost; ++}; ++ ++struct timerqueue_head { ++ struct rb_root_cached rb_root; ++}; ++ ++struct posix_cputimer_base { ++ u64 nextevt; ++ struct timerqueue_head tqhead; ++}; ++ ++struct posix_cputimers { ++ struct posix_cputimer_base bases[3]; ++ unsigned int timers_active; ++ unsigned int expiry_active; ++}; ++ ++struct posix_cputimers_work { ++ struct callback_head work; ++ unsigned int scheduled; ++}; ++ ++struct sem_undo_list; ++ ++struct sysv_sem { ++ struct sem_undo_list *undo_list; ++}; ++ ++struct sysv_shm { ++ struct list_head shm_clist; ++}; ++ ++typedef struct { ++ long unsigned int sig[1]; ++} sigset_t; ++ ++struct sigpending { ++ struct list_head list; ++ sigset_t signal; ++}; ++ ++typedef struct { ++ uid_t val; ++} kuid_t; ++ ++struct seccomp_filter; ++ ++struct seccomp { ++ int mode; ++ atomic_t filter_count; ++ struct seccomp_filter *filter; ++}; ++ ++struct wake_q_node { ++ struct wake_q_node *next; ++}; ++ ++struct task_io_accounting { ++ u64 rchar; ++ u64 wchar; ++ u64 syscr; ++ u64 syscw; ++ u64 read_bytes; ++ u64 write_bytes; ++ u64 cancelled_write_bytes; ++}; ++ ++typedef struct { ++ long unsigned int bits[16]; ++} nodemask_t; ++ ++struct seqcount_spinlock { ++ seqcount_t seqcount; ++}; ++ ++typedef struct seqcount_spinlock seqcount_spinlock_t; ++ ++typedef atomic64_t atomic_long_t; ++ ++struct optimistic_spin_queue { ++ atomic_t tail; ++}; ++ ++struct mutex { ++ atomic_long_t owner; ++ spinlock_t wait_lock; ++ struct optimistic_spin_queue osq; ++ struct list_head wait_list; ++}; ++ ++struct arch_tlbflush_unmap_batch { ++ struct cpumask cpumask; ++}; ++ ++struct tlbflush_unmap_batch { ++ struct arch_tlbflush_unmap_batch arch; ++ bool flush_required; ++ bool writable; ++}; ++ ++struct page_frag { ++ struct page *page; ++ __u32 offset; ++ __u32 size; ++}; ++ ++struct desc_struct { ++ u16 limit0; ++ u16 base0; ++ u16 base1: 8; ++ u16 type: 4; ++ u16 s: 1; ++ u16 dpl: 2; ++ u16 p: 1; ++ u16 limit1: 4; ++ u16 avl: 1; ++ u16 l: 1; ++ u16 d: 1; ++ u16 g: 1; ++ u16 base2: 8; ++}; ++ ++struct fregs_state { ++ u32 cwd; ++ u32 swd; ++ u32 twd; ++ u32 fip; ++ u32 fcs; ++ u32 foo; ++ u32 fos; ++ u32 st_space[20]; ++ u32 status; ++}; ++ ++struct fxregs_state { ++ u16 cwd; ++ u16 swd; ++ u16 twd; ++ u16 fop; ++ union { ++ struct { ++ u64 rip; ++ u64 rdp; ++ }; ++ struct { ++ u32 fip; ++ u32 fcs; ++ u32 foo; ++ u32 fos; ++ }; ++ }; ++ u32 mxcsr; ++ u32 mxcsr_mask; ++ u32 st_space[32]; ++ u32 xmm_space[64]; ++ u32 padding[12]; ++ union { ++ u32 padding1[12]; ++ u32 sw_reserved[12]; ++ }; ++}; ++ ++struct math_emu_info; ++ ++struct swregs_state { ++ u32 cwd; ++ u32 swd; ++ u32 twd; ++ u32 fip; ++ u32 fcs; ++ u32 foo; ++ u32 fos; ++ u32 st_space[20]; ++ u8 ftop; ++ u8 changed; ++ u8 lookahead; ++ u8 no_update; ++ u8 rm; ++ u8 alimit; ++ struct math_emu_info *info; ++ u32 entry_eip; ++}; ++ ++struct xstate_header { ++ u64 xfeatures; ++ u64 xcomp_bv; ++ u64 reserved[6]; ++}; ++ ++struct xregs_state { ++ struct fxregs_state i387; ++ struct xstate_header header; ++ u8 extended_state_area[0]; ++}; ++ ++union fpregs_state { ++ struct fregs_state fsave; ++ struct fxregs_state fxsave; ++ struct swregs_state soft; ++ struct xregs_state xsave; ++ u8 __padding[4096]; ++}; ++ ++struct fpu { ++ unsigned int last_cpu; ++ long unsigned int avx512_timestamp; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ union fpregs_state state; ++}; ++ ++struct perf_event; ++ ++struct io_bitmap; ++ ++struct thread_struct { ++ struct desc_struct tls_array[3]; ++ long unsigned int sp; ++ short unsigned int es; ++ short unsigned int ds; ++ short unsigned int fsindex; ++ short unsigned int gsindex; ++ long unsigned int fsbase; ++ long unsigned int gsbase; ++ struct perf_event *ptrace_bps[4]; ++ long unsigned int virtual_dr6; ++ long unsigned int ptrace_dr7; ++ long unsigned int cr2; ++ long unsigned int trap_nr; ++ long unsigned int error_code; ++ struct io_bitmap *io_bitmap; ++ long unsigned int iopl_emul; ++ unsigned int iopl_warn: 1; ++ unsigned int sig_on_uaccess_err: 1; ++ long: 62; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct fpu fpu; ++}; ++ ++struct sched_class; ++ ++struct task_group; ++ ++struct mm_struct; ++ ++struct pid; ++ ++struct completion; ++ ++struct cred; ++ ++struct key; ++ ++struct nameidata; ++ ++struct fs_struct; ++ ++struct files_struct; ++ ++struct io_uring_task; ++ ++struct nsproxy; ++ ++struct signal_struct; ++ ++struct sighand_struct; ++ ++struct audit_context; ++ ++struct rt_mutex_waiter; ++ ++struct bio_list; ++ ++struct blk_plug; ++ ++struct reclaim_state; ++ ++struct backing_dev_info; ++ ++struct io_context; ++ ++struct capture_control; ++ ++struct kernel_siginfo; ++ ++typedef struct kernel_siginfo kernel_siginfo_t; ++ ++struct css_set; ++ ++struct robust_list_head; ++ ++struct compat_robust_list_head; ++ ++struct futex_pi_state; ++ ++struct perf_event_context; ++ ++struct mempolicy; ++ ++struct numa_group; ++ ++struct rseq; ++ ++struct task_delay_info; ++ ++struct ftrace_ret_stack; ++ ++struct mem_cgroup; ++ ++struct request_queue; ++ ++struct uprobe_task; ++ ++struct vm_struct; ++ ++struct bpf_run_ctx; ++ ++struct task_struct_resvd; ++ ++struct task_struct { ++ struct thread_info thread_info; ++ volatile long int state; ++ void *stack; ++ refcount_t usage; ++ unsigned int flags; ++ unsigned int ptrace; ++ int on_cpu; ++ struct __call_single_node wake_entry; ++ unsigned int wakee_flips; ++ long unsigned int wakee_flip_decay_ts; ++ struct task_struct *last_wakee; ++ int recent_used_cpu; ++ int wake_cpu; ++ int on_rq; ++ int prio; ++ int static_prio; ++ int normal_prio; ++ unsigned int rt_priority; ++ const struct sched_class *sched_class; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct sched_entity se; ++ struct sched_rt_entity rt; ++ struct task_group *sched_task_group; ++ struct sched_dl_entity dl; ++ struct hlist_head preempt_notifiers; ++ unsigned int btrace_seq; ++ unsigned int policy; ++ int nr_cpus_allowed; ++ const cpumask_t *cpus_ptr; ++ cpumask_t cpus_mask; ++ int trc_reader_nesting; ++ int trc_ipi_to_cpu; ++ union rcu_special trc_reader_special; ++ bool trc_reader_checked; ++ struct list_head trc_holdout_list; ++ struct sched_info sched_info; ++ struct list_head tasks; ++ struct plist_node pushable_tasks; ++ struct rb_node pushable_dl_tasks; ++ struct mm_struct *mm; ++ struct mm_struct *active_mm; ++ struct vmacache vmacache; ++ struct task_rss_stat rss_stat; ++ int exit_state; ++ int exit_code; ++ int exit_signal; ++ int pdeath_signal; ++ long unsigned int jobctl; ++ unsigned int personality; ++ unsigned int sched_reset_on_fork: 1; ++ unsigned int sched_contributes_to_load: 1; ++ unsigned int sched_migrated: 1; ++ unsigned int sched_psi_wake_requeue: 1; ++ int: 28; ++ unsigned int sched_remote_wakeup: 1; ++ unsigned int in_execve: 1; ++ unsigned int in_iowait: 1; ++ unsigned int restore_sigmask: 1; ++ unsigned int in_user_fault: 1; ++ unsigned int no_cgroup_migration: 1; ++ unsigned int frozen: 1; ++ unsigned int use_memdelay: 1; ++ unsigned int in_memstall: 1; ++ long unsigned int atomic_flags; ++ struct restart_block restart_block; ++ pid_t pid; ++ pid_t tgid; ++ long unsigned int stack_canary; ++ struct task_struct *real_parent; ++ struct task_struct *parent; ++ struct list_head children; ++ struct list_head sibling; ++ struct task_struct *group_leader; ++ struct list_head ptraced; ++ struct list_head ptrace_entry; ++ struct pid *thread_pid; ++ struct hlist_node pid_links[4]; ++ struct list_head thread_group; ++ struct list_head thread_node; ++ struct completion *vfork_done; ++ int *set_child_tid; ++ int *clear_child_tid; ++ u64 utime; ++ u64 stime; ++ u64 gtime; ++ struct prev_cputime prev_cputime; ++ struct vtime vtime; ++ atomic_t tick_dep_mask; ++ long unsigned int nvcsw; ++ long unsigned int nivcsw; ++ u64 start_time; ++ u64 start_boottime; ++ long unsigned int min_flt; ++ long unsigned int maj_flt; ++ struct posix_cputimers posix_cputimers; ++ struct posix_cputimers_work posix_cputimers_work; ++ const struct cred *ptracer_cred; ++ const struct cred *real_cred; ++ const struct cred *cred; ++ struct key *cached_requested_key; ++ char comm[16]; ++ struct nameidata *nameidata; ++ struct sysv_sem sysvsem; ++ struct sysv_shm sysvshm; ++ long unsigned int last_switch_count; ++ long unsigned int last_switch_time; ++ struct fs_struct *fs; ++ struct files_struct *files; ++ struct io_uring_task *io_uring; ++ struct nsproxy *nsproxy; ++ struct signal_struct *signal; ++ struct sighand_struct *sighand; ++ sigset_t blocked; ++ sigset_t real_blocked; ++ sigset_t saved_sigmask; ++ struct sigpending pending; ++ long unsigned int sas_ss_sp; ++ size_t sas_ss_size; ++ unsigned int sas_ss_flags; ++ struct callback_head *task_works; ++ struct audit_context *audit_context; ++ kuid_t loginuid; ++ unsigned int sessionid; ++ struct seccomp seccomp; ++ u64 parent_exec_id; ++ u64 self_exec_id; ++ spinlock_t alloc_lock; ++ raw_spinlock_t pi_lock; ++ struct wake_q_node wake_q; ++ struct rb_root_cached pi_waiters; ++ struct task_struct *pi_top_task; ++ struct rt_mutex_waiter *pi_blocked_on; ++ void *journal_info; ++ struct bio_list *bio_list; ++ struct blk_plug *plug; ++ struct reclaim_state *reclaim_state; ++ struct backing_dev_info *backing_dev_info; ++ struct io_context *io_context; ++ struct capture_control *capture_control; ++ long unsigned int ptrace_message; ++ kernel_siginfo_t *last_siginfo; ++ struct task_io_accounting ioac; ++ unsigned int psi_flags; ++ u64 acct_rss_mem1; ++ u64 acct_vm_mem1; ++ u64 acct_timexpd; ++ nodemask_t mems_allowed; ++ seqcount_spinlock_t mems_allowed_seq; ++ int cpuset_mem_spread_rotor; ++ int cpuset_slab_spread_rotor; ++ struct css_set *cgroups; ++ struct list_head cg_list; ++ u32 closid; ++ u32 rmid; ++ struct robust_list_head *robust_list; ++ struct compat_robust_list_head *compat_robust_list; ++ struct list_head pi_state_list; ++ struct futex_pi_state *pi_state_cache; ++ struct mutex futex_exit_mutex; ++ unsigned int futex_state; ++ struct perf_event_context *perf_event_ctxp[2]; ++ struct mutex perf_event_mutex; ++ struct list_head perf_event_list; ++ struct mempolicy *mempolicy; ++ short int il_prev; ++ short int pref_node_fork; ++ int numa_scan_seq; ++ unsigned int numa_scan_period; ++ unsigned int numa_scan_period_max; ++ int numa_preferred_nid; ++ long unsigned int numa_migrate_retry; ++ u64 node_stamp; ++ u64 last_task_numa_placement; ++ u64 last_sum_exec_runtime; ++ struct callback_head numa_work; ++ struct numa_group *numa_group; ++ long unsigned int *numa_faults; ++ long unsigned int total_numa_faults; ++ long unsigned int numa_faults_locality[3]; ++ long unsigned int numa_pages_migrated; ++ struct rseq *rseq; ++ u32 rseq_sig; ++ long unsigned int rseq_event_mask; ++ struct tlbflush_unmap_batch tlb_ubc; ++ union { ++ refcount_t rcu_users; ++ struct callback_head rcu; ++ }; ++ struct pipe_inode_info *splice_pipe; ++ struct page_frag task_frag; ++ struct task_delay_info *delays; ++ int nr_dirtied; ++ int nr_dirtied_pause; ++ long unsigned int dirty_paused_when; ++ u64 timer_slack_ns; ++ u64 default_timer_slack_ns; ++ int curr_ret_stack; ++ int curr_ret_depth; ++ struct ftrace_ret_stack *ret_stack; ++ long long unsigned int ftrace_timestamp; ++ atomic_t trace_overrun; ++ atomic_t tracing_graph_pause; ++ long unsigned int trace; ++ long unsigned int trace_recursion; ++ struct mem_cgroup *memcg_in_oom; ++ gfp_t memcg_oom_gfp_mask; ++ int memcg_oom_order; ++ unsigned int memcg_nr_pages_over_high; ++ struct mem_cgroup *active_memcg; ++ struct request_queue *throttle_queue; ++ struct uprobe_task *utask; ++ int pagefault_disabled; ++ struct task_struct *oom_reaper_list; ++ struct vm_struct *stack_vm_area; ++ refcount_t stack_refcount; ++ int patch_state; ++ void *security; ++ struct bpf_run_ctx *bpf_ctx; ++ void *mce_vaddr; ++ __u64 mce_kflags; ++ u64 mce_addr; ++ __u64 mce_ripv: 1; ++ __u64 mce_whole_page: 1; ++ __u64 __mce_reserved: 62; ++ struct callback_head mce_kill_me; ++ int mce_count; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ u64 kabi_reserved9; ++ u64 kabi_reserved10; ++ u64 kabi_reserved11; ++ u64 kabi_reserved12; ++ u64 kabi_reserved13; ++ u64 kabi_reserved14; ++ u64 kabi_reserved15; ++ u64 kabi_reserved16; ++ size_t task_struct_size_resvd; ++ struct task_struct_resvd *_resvd; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct thread_struct thread; ++}; ++ +struct screen_info { + __u8 orig_x; + __u8 orig_y; @@ -514,17 +1355,6 @@ index 0000000..bcb9d76 + __u16 dseg_len; +}; + -+struct apm_info { -+ struct apm_bios_info bios; -+ short unsigned int connection_version; -+ int get_power_status_broken; -+ int get_power_status_swabinminutes; -+ int allow_ints; -+ int forbid_idle; -+ int realmode_power_off; -+ int disabled; -+}; -+ +struct edd_device_params { + __u16 length; + __u16 info_flags; @@ -635,13 +1465,6 @@ index 0000000..bcb9d76 + struct edd_device_params params; +} __attribute__((packed)); + -+struct edd { -+ unsigned int mbr_signature[16]; -+ struct edd_info edd_info[6]; -+ unsigned char mbr_signature_nr; -+ unsigned char edd_info_nr; -+}; -+ +struct ist_info { + __u32 signature; + __u32 command; @@ -692,6 +1515,7 @@ index 0000000..bcb9d76 + __u64 pref_address; + __u32 init_size; + __u32 handover_offset; ++ __u32 kernel_info_offset; +} __attribute__((packed)); + +struct sys_desc_table { @@ -729,7 +1553,8 @@ index 0000000..bcb9d76 + __u8 _pad2[4]; + __u64 tboot_addr; + struct ist_info ist_info; -+ __u8 _pad3[16]; ++ __u64 acpi_rsdp_addr; ++ __u8 _pad3[8]; + __u8 hd0_info[16]; + __u8 hd1_info[16]; + struct sys_desc_table sys_desc_table; @@ -751,7 +1576,7 @@ index 0000000..bcb9d76 + __u8 sentinel; + __u8 _pad6[1]; + struct setup_header hdr; -+ __u8 _pad7[40]; ++ __u8 _pad7[36]; + __u32 edd_mbr_sig_buffer[16]; + struct boot_e820_entry e820_table[128]; + __u8 _pad8[48]; @@ -797,20 +1622,11 @@ index 0000000..bcb9d76 + long unsigned int ss; +}; + -+struct desc_struct { -+ u16 limit0; -+ u16 base0; -+ u16 base1: 8; -+ u16 type: 4; -+ u16 s: 1; -+ u16 dpl: 2; -+ u16 p: 1; -+ u16 limit1: 4; -+ u16 avl: 1; -+ u16 l: 1; -+ u16 d: 1; -+ u16 g: 1; -+ u16 base2: 8; ++enum { ++ GATE_INTERRUPT = 14, ++ GATE_TRAP = 15, ++ GATE_CALL = 12, ++ GATE_TASK = 5, +}; + +struct idt_bits { @@ -821,6 +1637,13 @@ index 0000000..bcb9d76 + u16 p: 1; +}; + ++struct idt_data { ++ unsigned int vector; ++ unsigned int segment; ++ struct idt_bits bits; ++ const void *addr; ++}; ++ +struct gate_struct { + u16 offset_low; + u16 segment; @@ -879,14 +1702,12 @@ index 0000000..bcb9d76 + +struct address_space; + ++struct page_pool; ++ +struct kmem_cache; + -+struct mm_struct; -+ +struct dev_pagemap; + -+struct mem_cgroup; -+ +struct page { + long unsigned int flags; + union { @@ -897,6 +1718,13 @@ index 0000000..bcb9d76 + long unsigned int private; + }; + struct { ++ long unsigned int pp_magic; ++ struct page_pool *pp; ++ long unsigned int _pp_mapping_pad; ++ long unsigned int dma_addr; ++ atomic_long_t pp_frag_count; ++ }; ++ struct { + union { + struct list_head slab_list; + struct { @@ -922,10 +1750,11 @@ index 0000000..bcb9d76 + unsigned char compound_dtor; + unsigned char compound_order; + atomic_t compound_mapcount; ++ unsigned int compound_nr; + }; + struct { + long unsigned int _compound_pad_1; -+ long unsigned int _compound_pad_2; ++ atomic_t hpage_pinned_refcount; + struct list_head deferred_list; + }; + struct { @@ -940,8 +1769,7 @@ index 0000000..bcb9d76 + }; + struct { + struct dev_pagemap *pgmap; -+ long unsigned int hmm_data; -+ long unsigned int _zd_pad_1; ++ void *zone_device_data; + }; + struct callback_head callback_head; + }; @@ -952,864 +1780,15 @@ index 0000000..bcb9d76 + int units; + }; + atomic_t _refcount; -+ struct mem_cgroup *mem_cgroup; -+}; -+ -+struct paravirt_callee_save { -+ void *func; -+}; -+ -+struct pv_info { -+ unsigned int kernel_rpl; -+ int shared_kernel_pmd; -+ u16 extra_user_64bit_cs; -+ const char *name; -+}; -+ -+struct pv_init_ops { -+ unsigned int (*patch)(u8, u16, void *, long unsigned int, unsigned int); -+}; -+ -+struct pv_lazy_ops { -+ void (*enter)(); -+ void (*leave)(); -+ void (*flush)(); -+}; -+ -+struct pv_time_ops { -+ long long unsigned int (*sched_clock)(); -+ long long unsigned int (*steal_clock)(int); -+}; -+ -+struct thread_struct; -+ -+struct task_struct; -+ -+struct pv_cpu_ops { -+ long unsigned int (*get_debugreg)(int); -+ void (*set_debugreg)(int, long unsigned int); -+ long unsigned int (*read_cr0)(); -+ void (*write_cr0)(long unsigned int); -+ void (*write_cr4)(long unsigned int); -+ long unsigned int (*read_cr8)(); -+ void (*write_cr8)(long unsigned int); -+ void (*load_tr_desc)(); -+ void (*load_gdt)(const struct desc_ptr *); -+ void (*load_idt)(const struct desc_ptr *); -+ void (*set_ldt)(const void *, unsigned int); -+ long unsigned int (*store_tr)(); -+ void (*load_tls)(struct thread_struct *, unsigned int); -+ void (*load_gs_index)(unsigned int); -+ void (*write_ldt_entry)(struct desc_struct *, int, const void *); -+ void (*write_gdt_entry)(struct desc_struct *, int, const void *, int); -+ void (*write_idt_entry)(gate_desc *, int, const gate_desc *); -+ void (*alloc_ldt)(struct desc_struct *, unsigned int); -+ void (*free_ldt)(struct desc_struct *, unsigned int); -+ void (*load_sp0)(long unsigned int); -+ void (*set_iopl_mask)(unsigned int); -+ void (*wbinvd)(); -+ void (*io_delay)(); -+ void (*cpuid)(unsigned int *, unsigned int *, unsigned int *, unsigned int *); -+ u64 (*read_msr)(unsigned int); -+ void (*write_msr)(unsigned int, unsigned int, unsigned int); -+ u64 (*read_msr_safe)(unsigned int, int *); -+ int (*write_msr_safe)(unsigned int, unsigned int, unsigned int); -+ u64 (*read_pmc)(int); -+ void (*usergs_sysret64)(); -+ void (*iret)(); -+ void (*swapgs)(); -+ void (*start_context_switch)(struct task_struct *); -+ void (*end_context_switch)(struct task_struct *); -+}; -+ -+typedef struct { -+ long unsigned int seg; -+} mm_segment_t; -+ -+struct fregs_state { -+ u32 cwd; -+ u32 swd; -+ u32 twd; -+ u32 fip; -+ u32 fcs; -+ u32 foo; -+ u32 fos; -+ u32 st_space[20]; -+ u32 status; -+}; -+ -+struct fxregs_state { -+ u16 cwd; -+ u16 swd; -+ u16 twd; -+ u16 fop; -+ union { -+ struct { -+ u64 rip; -+ u64 rdp; -+ }; -+ struct { -+ u32 fip; -+ u32 fcs; -+ u32 foo; -+ u32 fos; -+ }; -+ }; -+ u32 mxcsr; -+ u32 mxcsr_mask; -+ u32 st_space[32]; -+ u32 xmm_space[64]; -+ u32 padding[12]; -+ union { -+ u32 padding1[12]; -+ u32 sw_reserved[12]; -+ }; -+}; -+ -+struct math_emu_info; -+ -+struct swregs_state { -+ u32 cwd; -+ u32 swd; -+ u32 twd; -+ u32 fip; -+ u32 fcs; -+ u32 foo; -+ u32 fos; -+ u32 st_space[20]; -+ u8 ftop; -+ u8 changed; -+ u8 lookahead; -+ u8 no_update; -+ u8 rm; -+ u8 alimit; -+ struct math_emu_info *info; -+ u32 entry_eip; -+}; -+ -+struct xstate_header { -+ u64 xfeatures; -+ u64 xcomp_bv; -+ u64 reserved[6]; -+}; -+ -+struct xregs_state { -+ struct fxregs_state i387; -+ struct xstate_header header; -+ u8 extended_state_area[0]; -+}; -+ -+union fpregs_state { -+ struct fregs_state fsave; -+ struct fxregs_state fxsave; -+ struct swregs_state soft; -+ struct xregs_state xsave; -+ u8 __padding[4096]; -+}; -+ -+struct fpu { -+ unsigned int last_cpu; -+ unsigned char initialized; -+ long: 24; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union fpregs_state state; -+}; -+ -+struct perf_event; -+ -+struct thread_struct { -+ struct desc_struct tls_array[3]; -+ long unsigned int sp; -+ short unsigned int es; -+ short unsigned int ds; -+ short unsigned int fsindex; -+ short unsigned int gsindex; -+ long unsigned int fsbase; -+ long unsigned int gsbase; -+ struct perf_event *ptrace_bps[4]; -+ long unsigned int debugreg6; -+ long unsigned int ptrace_dr7; -+ long unsigned int cr2; -+ long unsigned int trap_nr; -+ long unsigned int error_code; -+ long unsigned int *io_bitmap_ptr; -+ long unsigned int iopl; -+ unsigned int io_bitmap_max; -+ mm_segment_t addr_limit; -+ unsigned int sig_on_uaccess_err: 1; -+ unsigned int uaccess_err: 1; -+ long: 62; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct fpu fpu; -+}; -+ -+struct thread_info { -+ long unsigned int flags; -+ u32 status; -+}; -+ -+struct llist_node { -+ struct llist_node *next; -+}; -+ -+struct load_weight { -+ long unsigned int weight; -+ u32 inv_weight; -+}; -+ -+struct rb_node { -+ long unsigned int __rb_parent_color; -+ struct rb_node *rb_right; -+ struct rb_node *rb_left; -+}; -+ -+struct sched_statistics { -+ u64 wait_start; -+ u64 wait_max; -+ u64 wait_count; -+ u64 wait_sum; -+ u64 iowait_count; -+ u64 iowait_sum; -+ u64 sleep_start; -+ u64 sleep_max; -+ s64 sum_sleep_runtime; -+ u64 block_start; -+ u64 block_max; -+ u64 exec_max; -+ u64 slice_max; -+ u64 nr_migrations_cold; -+ u64 nr_failed_migrations_affine; -+ u64 nr_failed_migrations_running; -+ u64 nr_failed_migrations_hot; -+ u64 nr_forced_migrations; -+ u64 nr_wakeups; -+ u64 nr_wakeups_sync; -+ u64 nr_wakeups_migrate; -+ u64 nr_wakeups_local; -+ u64 nr_wakeups_remote; -+ u64 nr_wakeups_affine; -+ u64 nr_wakeups_affine_attempts; -+ u64 nr_wakeups_passive; -+ u64 nr_wakeups_idle; -+}; -+ -+struct util_est { -+ unsigned int enqueued; -+ unsigned int ewma; -+}; -+ -+struct sched_avg { -+ u64 last_update_time; -+ u64 load_sum; -+ u64 runnable_load_sum; -+ u32 util_sum; -+ u32 period_contrib; -+ long unsigned int load_avg; -+ long unsigned int runnable_load_avg; -+ long unsigned int util_avg; -+ struct util_est util_est; -+}; -+ -+struct cfs_rq; -+ -+struct sched_entity { -+ struct load_weight load; -+ long unsigned int runnable_weight; -+ struct rb_node run_node; -+ struct list_head group_node; -+ unsigned int on_rq; -+ u64 exec_start; -+ u64 sum_exec_runtime; -+ u64 vruntime; -+ u64 prev_sum_exec_runtime; -+ u64 nr_migrations; -+ struct sched_statistics statistics; -+ int depth; -+ struct sched_entity *parent; -+ struct cfs_rq *cfs_rq; -+ struct cfs_rq *my_q; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sched_avg avg; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct rt_rq; -+ -+struct sched_rt_entity { -+ struct list_head run_list; -+ long unsigned int timeout; -+ long unsigned int watchdog_stamp; -+ unsigned int time_slice; -+ short unsigned int on_rq; -+ short unsigned int on_list; -+ struct sched_rt_entity *back; -+ struct sched_rt_entity *parent; -+ struct rt_rq *rt_rq; -+ struct rt_rq *my_q; -+}; -+ -+typedef s64 ktime_t; -+ -+struct timerqueue_node { -+ struct rb_node node; -+ ktime_t expires; -+}; -+ -+enum hrtimer_restart { -+ HRTIMER_NORESTART = 0, -+ HRTIMER_RESTART = 1, -+}; -+ -+struct hrtimer_clock_base; -+ -+struct hrtimer { -+ struct timerqueue_node node; -+ ktime_t _softexpires; -+ enum hrtimer_restart (*function)(struct hrtimer *); -+ struct hrtimer_clock_base *base; -+ u8 state; -+ u8 is_rel; -+ u8 is_soft; -+}; -+ -+struct sched_dl_entity { -+ struct rb_node rb_node; -+ u64 dl_runtime; -+ u64 dl_deadline; -+ u64 dl_period; -+ u64 dl_bw; -+ u64 dl_density; -+ s64 runtime; -+ u64 deadline; -+ unsigned int flags; -+ unsigned int dl_throttled: 1; -+ unsigned int dl_boosted: 1; -+ unsigned int dl_yielded: 1; -+ unsigned int dl_non_contending: 1; -+ unsigned int dl_overrun: 1; -+ struct hrtimer dl_timer; -+ struct hrtimer inactive_timer; -+}; -+ -+struct cpumask { -+ long unsigned int bits[128]; -+}; -+ -+typedef struct cpumask cpumask_t; -+ -+struct sched_info { -+ long unsigned int pcount; -+ long long unsigned int run_delay; -+ long long unsigned int last_arrival; -+ long long unsigned int last_queued; -+}; -+ -+struct plist_node { -+ int prio; -+ struct list_head prio_list; -+ struct list_head node_list; -+}; -+ -+struct vmacache { -+ u64 seqnum; -+ struct vm_area_struct *vmas[4]; -+}; -+ -+struct task_rss_stat { -+ int events; -+ int count[4]; -+}; -+ -+typedef struct raw_spinlock raw_spinlock_t; -+ -+struct prev_cputime { -+ u64 utime; -+ u64 stime; -+ raw_spinlock_t lock; -+}; -+ -+struct seqcount { -+ unsigned int sequence; -+}; -+ -+typedef struct seqcount seqcount_t; -+ -+enum vtime_state { -+ VTIME_INACTIVE = 0, -+ VTIME_USER = 1, -+ VTIME_SYS = 2, -+}; -+ -+struct vtime { -+ seqcount_t seqcount; -+ long long unsigned int starttime; -+ enum vtime_state state; -+ u64 utime; -+ u64 stime; -+ u64 gtime; -+}; -+ -+struct task_cputime { -+ u64 utime; -+ u64 stime; -+ long long unsigned int sum_exec_runtime; -+}; -+ -+struct sem_undo_list; -+ -+struct sysv_sem { -+ struct sem_undo_list *undo_list; -+}; -+ -+struct sysv_shm { -+ struct list_head shm_clist; -+}; -+ -+typedef struct { -+ long unsigned int sig[1]; -+} sigset_t; -+ -+struct sigpending { -+ struct list_head list; -+ sigset_t signal; -+}; -+ -+typedef struct { -+ uid_t val; -+} kuid_t; -+ -+struct seccomp_filter; -+ -+struct seccomp { -+ int mode; -+ struct seccomp_filter *filter; -+}; -+ -+struct wake_q_node { -+ struct wake_q_node *next; -+}; -+ -+struct rb_root { -+ struct rb_node *rb_node; -+}; -+ -+struct rb_root_cached { -+ struct rb_root rb_root; -+ struct rb_node *rb_leftmost; -+}; -+ -+struct task_io_accounting { -+ u64 rchar; -+ u64 wchar; -+ u64 syscr; -+ u64 syscw; -+ u64 read_bytes; -+ u64 write_bytes; -+ u64 cancelled_write_bytes; -+}; -+ -+typedef struct { -+ long unsigned int bits[16]; -+} nodemask_t; -+ -+typedef atomic64_t atomic_long_t; -+ -+struct optimistic_spin_queue { -+ atomic_t tail; -+}; -+ -+struct mutex { -+ atomic_long_t owner; -+ spinlock_t wait_lock; -+ struct optimistic_spin_queue osq; -+ struct list_head wait_list; -+}; -+ -+struct arch_tlbflush_unmap_batch { -+ struct cpumask cpumask; -+}; -+ -+struct tlbflush_unmap_batch { -+ struct arch_tlbflush_unmap_batch arch; -+ bool flush_required; -+ bool writable; -+}; -+ -+struct refcount_struct { -+ atomic_t refs; -+}; -+ -+typedef struct refcount_struct refcount_t; -+ -+struct page_frag { -+ struct page *page; -+ __u32 offset; -+ __u32 size; -+}; -+ -+struct sched_class; -+ -+struct task_group; -+ -+struct pid; -+ -+struct completion; -+ -+struct cred; -+ -+struct nameidata; -+ -+struct fs_struct; -+ -+struct files_struct; -+ -+struct nsproxy; -+ -+struct signal_struct; -+ -+struct sighand_struct; -+ -+struct audit_context; -+ -+struct rt_mutex_waiter; -+ -+struct bio_list; -+ -+struct blk_plug; -+ -+struct reclaim_state; -+ -+struct backing_dev_info; -+ -+struct io_context; -+ -+struct siginfo; -+ -+typedef struct siginfo siginfo_t; -+ -+struct css_set; -+ -+struct robust_list_head; -+ -+struct compat_robust_list_head; -+ -+struct futex_pi_state; -+ -+struct perf_event_context; -+ -+struct mempolicy; -+ -+struct numa_group; -+ -+struct rseq; -+ -+struct task_delay_info; -+ -+struct ftrace_ret_stack; -+ -+struct request_queue; -+ -+struct uprobe_task; -+ -+struct vm_struct; -+ -+struct task_struct { -+ struct thread_info thread_info; -+ volatile long int state; -+ void *stack; -+ atomic_t usage; -+ unsigned int flags; -+ unsigned int ptrace; -+ struct llist_node wake_entry; -+ int on_cpu; -+ unsigned int cpu; -+ unsigned int wakee_flips; -+ long unsigned int wakee_flip_decay_ts; -+ struct task_struct *last_wakee; -+ int recent_used_cpu; -+ int wake_cpu; -+ int on_rq; -+ int prio; -+ int static_prio; -+ int normal_prio; -+ unsigned int rt_priority; -+ const struct sched_class *sched_class; -+ struct sched_entity se; -+ struct sched_rt_entity rt; -+ struct task_group *sched_task_group; -+ struct sched_dl_entity dl; -+ struct hlist_head preempt_notifiers; -+ unsigned int btrace_seq; -+ unsigned int policy; -+ int nr_cpus_allowed; -+ cpumask_t cpus_allowed; -+ struct sched_info sched_info; -+ struct list_head tasks; -+ struct plist_node pushable_tasks; -+ struct rb_node pushable_dl_tasks; -+ struct mm_struct *mm; -+ struct mm_struct *active_mm; -+ struct vmacache vmacache; -+ struct task_rss_stat rss_stat; -+ int exit_state; -+ int exit_code; -+ int exit_signal; -+ int pdeath_signal; -+ long unsigned int jobctl; -+ unsigned int personality; -+ unsigned int sched_reset_on_fork: 1; -+ unsigned int sched_contributes_to_load: 1; -+ unsigned int sched_migrated: 1; -+ unsigned int sched_remote_wakeup: 1; -+ int: 28; -+ unsigned int in_execve: 1; -+ unsigned int in_iowait: 1; -+ unsigned int restore_sigmask: 1; -+ unsigned int in_user_fault: 1; -+ unsigned int memcg_kmem_skip_account: 1; -+ unsigned int no_cgroup_migration: 1; -+ unsigned int use_memdelay: 1; -+ long unsigned int atomic_flags; -+ struct restart_block restart_block; -+ pid_t pid; -+ pid_t tgid; -+ long unsigned int stack_canary; -+ struct task_struct *real_parent; -+ struct task_struct *parent; -+ struct list_head children; -+ struct list_head sibling; -+ struct task_struct *group_leader; -+ struct list_head ptraced; -+ struct list_head ptrace_entry; -+ struct pid *thread_pid; -+ struct hlist_node pid_links[4]; -+ struct list_head thread_group; -+ struct list_head thread_node; -+ struct completion *vfork_done; -+ int *set_child_tid; -+ int *clear_child_tid; -+ u64 utime; -+ u64 stime; -+ u64 gtime; -+ struct prev_cputime prev_cputime; -+ struct vtime vtime; -+ atomic_t tick_dep_mask; -+ long unsigned int nvcsw; -+ long unsigned int nivcsw; -+ u64 start_time; -+ u64 real_start_time; -+ long unsigned int min_flt; -+ long unsigned int maj_flt; -+ struct task_cputime cputime_expires; -+ struct list_head cpu_timers[3]; -+ const struct cred *ptracer_cred; -+ const struct cred *real_cred; -+ const struct cred *cred; -+ char comm[16]; -+ struct nameidata *nameidata; -+ struct sysv_sem sysvsem; -+ struct sysv_shm sysvshm; -+ long unsigned int last_switch_count; -+ long unsigned int last_switch_time; -+ struct fs_struct *fs; -+ struct files_struct *files; -+ struct nsproxy *nsproxy; -+ struct signal_struct *signal; -+ struct sighand_struct *sighand; -+ sigset_t blocked; -+ sigset_t real_blocked; -+ sigset_t saved_sigmask; -+ struct sigpending pending; -+ long unsigned int sas_ss_sp; -+ size_t sas_ss_size; -+ unsigned int sas_ss_flags; -+ struct callback_head *task_works; -+ struct audit_context *audit_context; -+ kuid_t loginuid; -+ unsigned int sessionid; -+ struct seccomp seccomp; -+ u32 parent_exec_id; -+ u32 self_exec_id; -+ spinlock_t alloc_lock; -+ raw_spinlock_t pi_lock; -+ struct wake_q_node wake_q; -+ struct rb_root_cached pi_waiters; -+ struct task_struct *pi_top_task; -+ struct rt_mutex_waiter *pi_blocked_on; -+ void *journal_info; -+ struct bio_list *bio_list; -+ struct blk_plug *plug; -+ struct reclaim_state *reclaim_state; -+ struct backing_dev_info *backing_dev_info; -+ struct io_context *io_context; -+ long unsigned int ptrace_message; -+ siginfo_t *last_siginfo; -+ struct task_io_accounting ioac; -+ u64 acct_rss_mem1; -+ u64 acct_vm_mem1; -+ u64 acct_timexpd; -+ nodemask_t mems_allowed; -+ seqcount_t mems_allowed_seq; -+ int cpuset_mem_spread_rotor; -+ int cpuset_slab_spread_rotor; -+ struct css_set *cgroups; -+ struct list_head cg_list; -+ struct robust_list_head *robust_list; -+ struct compat_robust_list_head *compat_robust_list; -+ struct list_head pi_state_list; -+ struct futex_pi_state *pi_state_cache; -+ struct perf_event_context *perf_event_ctxp[2]; -+ struct mutex perf_event_mutex; -+ struct list_head perf_event_list; -+ struct mempolicy *mempolicy; -+ short int il_prev; -+ short int pref_node_fork; -+ int numa_scan_seq; -+ unsigned int numa_scan_period; -+ unsigned int numa_scan_period_max; -+ int numa_preferred_nid; -+ long unsigned int numa_migrate_retry; -+ u64 node_stamp; -+ u64 last_task_numa_placement; -+ u64 last_sum_exec_runtime; -+ struct callback_head numa_work; -+ struct numa_group *numa_group; -+ long unsigned int *numa_faults; -+ long unsigned int total_numa_faults; -+ long unsigned int numa_faults_locality[3]; -+ long unsigned int numa_pages_migrated; -+ struct rseq *rseq; -+ u32 rseq_len; -+ u32 rseq_sig; -+ long unsigned int rseq_event_mask; -+ struct tlbflush_unmap_batch tlb_ubc; -+ union { -+ refcount_t rcu_users; -+ struct callback_head rcu; -+ }; -+ struct pipe_inode_info *splice_pipe; -+ struct page_frag task_frag; -+ struct task_delay_info *delays; -+ int nr_dirtied; -+ int nr_dirtied_pause; -+ long unsigned int dirty_paused_when; -+ u64 timer_slack_ns; -+ u64 default_timer_slack_ns; -+ int curr_ret_stack; -+ int curr_ret_depth; -+ struct ftrace_ret_stack *ret_stack; -+ long long unsigned int ftrace_timestamp; -+ atomic_t trace_overrun; -+ atomic_t tracing_graph_pause; -+ long unsigned int trace; -+ long unsigned int trace_recursion; -+ struct mem_cgroup *memcg_in_oom; -+ gfp_t memcg_oom_gfp_mask; -+ int memcg_oom_order; -+ unsigned int memcg_nr_pages_over_high; -+ struct mem_cgroup *active_memcg; -+ struct request_queue *throttle_queue; -+ struct uprobe_task *utask; -+ int pagefault_disabled; -+ struct task_struct *oom_reaper_list; -+ struct vm_struct *stack_vm_area; -+ atomic_t stack_refcount; -+ int patch_state; -+ void *security; -+ u64 parent_exec_id_u64; -+ u64 self_exec_id_u64; -+ struct mutex *futex_exit_mutex; -+ long unsigned int futex_state; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long: 64; -+ long: 64; -+ struct thread_struct thread; -+}; -+ -+struct pv_irq_ops { -+ struct paravirt_callee_save save_fl; -+ struct paravirt_callee_save restore_fl; -+ struct paravirt_callee_save irq_disable; -+ struct paravirt_callee_save irq_enable; -+ void (*safe_halt)(); -+ void (*halt)(); -+}; -+ -+struct flush_tlb_info; -+ -+struct mmu_gather; -+ -+struct pv_mmu_ops { -+ long unsigned int (*read_cr2)(); -+ void (*write_cr2)(long unsigned int); -+ long unsigned int (*read_cr3)(); -+ void (*write_cr3)(long unsigned int); -+ void (*activate_mm)(struct mm_struct *, struct mm_struct *); -+ void (*dup_mmap)(struct mm_struct *, struct mm_struct *); -+ void (*exit_mmap)(struct mm_struct *); -+ void (*flush_tlb_user)(); -+ void (*flush_tlb_kernel)(); -+ void (*flush_tlb_one_user)(long unsigned int); -+ void (*flush_tlb_others)(const struct cpumask *, const struct flush_tlb_info *); -+ void (*tlb_remove_table)(struct mmu_gather *, void *); -+ int (*pgd_alloc)(struct mm_struct *); -+ void (*pgd_free)(struct mm_struct *, pgd_t *); -+ void (*alloc_pte)(struct mm_struct *, long unsigned int); -+ void (*alloc_pmd)(struct mm_struct *, long unsigned int); -+ void (*alloc_pud)(struct mm_struct *, long unsigned int); -+ void (*alloc_p4d)(struct mm_struct *, long unsigned int); -+ void (*release_pte)(long unsigned int); -+ void (*release_pmd)(long unsigned int); -+ void (*release_pud)(long unsigned int); -+ void (*release_p4d)(long unsigned int); -+ void (*set_pte)(pte_t *, pte_t); -+ void (*set_pte_at)(struct mm_struct *, long unsigned int, pte_t *, pte_t); -+ void (*set_pmd)(pmd_t *, pmd_t); -+ pte_t (*ptep_modify_prot_start)(struct mm_struct *, long unsigned int, pte_t *); -+ void (*ptep_modify_prot_commit)(struct mm_struct *, long unsigned int, pte_t *, pte_t); -+ struct paravirt_callee_save pte_val; -+ struct paravirt_callee_save make_pte; -+ struct paravirt_callee_save pgd_val; -+ struct paravirt_callee_save make_pgd; -+ void (*set_pud)(pud_t *, pud_t); -+ struct paravirt_callee_save pmd_val; -+ struct paravirt_callee_save make_pmd; -+ struct paravirt_callee_save pud_val; -+ struct paravirt_callee_save make_pud; -+ void (*set_p4d)(p4d_t *, p4d_t); -+ struct paravirt_callee_save p4d_val; -+ struct paravirt_callee_save make_p4d; -+ void (*set_pgd)(pgd_t *, pgd_t); -+ struct pv_lazy_ops lazy_mode; -+ void (*set_fixmap)(unsigned int, phys_addr_t, pgprot_t); ++ long unsigned int memcg_data; +}; + +struct rw_semaphore { + atomic_long_t count; -+ struct list_head wait_list; -+ raw_spinlock_t wait_lock; ++ atomic_long_t owner; + struct optimistic_spin_queue osq; -+ struct task_struct *owner; ++ raw_spinlock_t wait_lock; ++ struct list_head wait_list; +}; + +struct mm_rss_stat { @@ -1848,14 +1827,12 @@ index 0000000..bcb9d76 + atomic_long_t data; + struct list_head entry; + work_func_t func; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + -+struct kvm; -+ +struct linux_binfmt; + +struct core_state; @@ -1864,9 +1841,9 @@ index 0000000..bcb9d76 + +struct user_namespace; + -+struct mmu_notifier_mm; ++struct mmu_notifier_subscriptions; + -+struct hmm; ++struct kvm; + +struct mm_struct { + struct { @@ -1884,20 +1861,22 @@ index 0000000..bcb9d76 + atomic_t membarrier_state; + atomic_t mm_users; + atomic_t mm_count; ++ atomic_t has_pinned; + atomic_long_t pgtables_bytes; + int map_count; + spinlock_t page_table_lock; -+ struct rw_semaphore mmap_sem; ++ struct rw_semaphore mmap_lock; + struct list_head mmlist; + long unsigned int hiwater_rss; + long unsigned int hiwater_vm; + long unsigned int total_vm; -+ atomic_long_t locked_vm; -+ long unsigned int pinned_vm; ++ long unsigned int locked_vm; ++ atomic64_t pinned_vm; + long unsigned int data_vm; + long unsigned int exec_vm; + long unsigned int stack_vm; + long unsigned int def_flags; ++ seqcount_t write_protect_seq; + spinlock_t arg_lock; + long unsigned int start_code; + long unsigned int end_code; @@ -1921,7 +1900,7 @@ index 0000000..bcb9d76 + struct task_struct *owner; + struct user_namespace *user_ns; + struct file *exe_file; -+ struct mmu_notifier_mm *mmu_notifier_mm; ++ struct mmu_notifier_subscriptions *notifier_subscriptions; + long unsigned int numa_next_scan; + long unsigned int numa_scan_offset; + int numa_scan_seq; @@ -1930,1756 +1909,42 @@ index 0000000..bcb9d76 + struct uprobes_state uprobes_state; + atomic_long_t hugetlb_usage; + struct work_struct async_put_work; -+ struct hmm *hmm; ++ u32 pasid; + }; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; + struct kvm *kvm; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; + long unsigned int cpu_bitmap[0]; +}; + -+struct flush_tlb_info { -+ struct mm_struct *mm; -+ long unsigned int start; -+ long unsigned int end; -+ u64 new_tlb_gen; -+}; -+ -+struct qrwlock { -+ union { -+ atomic_t cnts; -+ struct { -+ u8 wlocked; -+ u8 __lstate[3]; -+ }; -+ }; -+ arch_spinlock_t wait_lock; -+}; -+ -+typedef struct qrwlock arch_rwlock_t; -+ -+struct pv_lock_ops { -+ void (*queued_spin_lock_slowpath)(struct qspinlock *, u32); -+ struct paravirt_callee_save queued_spin_unlock; -+ void (*wait)(u8 *, u8); -+ void (*kick)(int); -+ struct paravirt_callee_save vcpu_is_preempted; -+}; -+ -+struct paravirt_patch_site { -+ u8 *instr; -+ u8 instrtype; -+ u8 len; -+ u16 clobbers; -+}; -+ +struct math_emu_info { + long int ___orig_eip; + struct pt_regs *regs; +}; + -+typedef struct cpumask *cpumask_var_t; -+ -+struct tracepoint_func { -+ void *func; -+ void *data; -+ int prio; ++enum { ++ UNAME26 = 131072, ++ ADDR_NO_RANDOMIZE = 262144, ++ FDPIC_FUNCPTRS = 524288, ++ MMAP_PAGE_ZERO = 1048576, ++ ADDR_COMPAT_LAYOUT = 2097152, ++ READ_IMPLIES_EXEC = 4194304, ++ ADDR_LIMIT_32BIT = 8388608, ++ SHORT_INODE = 16777216, ++ WHOLE_SECONDS = 33554432, ++ STICKY_TIMEOUTS = 67108864, ++ ADDR_LIMIT_3GB = 134217728, +}; + -+struct tracepoint { -+ const char *name; -+ struct static_key key; -+ int (*regfunc)(); -+ void (*unregfunc)(); -+ struct tracepoint_func *funcs; -+}; -+ -+struct cpuinfo_x86 { -+ __u8 x86; -+ __u8 x86_vendor; -+ __u8 x86_model; -+ __u8 x86_stepping; -+ int x86_tlbsize; -+ __u8 x86_virt_bits; -+ __u8 x86_phys_bits; -+ __u8 x86_coreid_bits; -+ __u8 cu_id; -+ __u32 extended_cpuid_level; -+ int cpuid_level; -+ __u32 x86_capability[20]; -+ char x86_vendor_id[16]; -+ char x86_model_id[64]; -+ unsigned int x86_cache_size; -+ int x86_cache_alignment; -+ int x86_cache_max_rmid; -+ int x86_cache_occ_scale; -+ int x86_power; -+ long unsigned int loops_per_jiffy; -+ u16 x86_max_cores; -+ u16 apicid; -+ u16 initial_apicid; -+ u16 x86_clflush_size; -+ u16 booted_cores; -+ u16 phys_proc_id; -+ u16 logical_proc_id; -+ u16 cpu_core_id; -+ u16 cpu_index; -+ u32 microcode; -+ u8 x86_cache_bits; -+ unsigned int initialized: 1; -+ u16 cpu_die_id; -+ u16 logical_die_id; -+}; -+ -+struct x86_hw_tss { -+ u32 reserved1; -+ u64 sp0; -+ u64 sp1; -+ u64 sp2; -+ u64 reserved2; -+ u64 ist[7]; -+ u32 reserved3; -+ u32 reserved4; -+ u16 reserved5; -+ u16 io_bitmap_base; -+} __attribute__((packed)); -+ -+struct seq_file___2; -+ -+struct seq_operations { -+ void * (*start)(struct seq_file___2 *, loff_t *); -+ void (*stop)(struct seq_file___2 *, void *); -+ void * (*next)(struct seq_file___2 *, void *, loff_t *); -+ int (*show)(struct seq_file___2 *, void *); -+}; -+ -+struct entry_stack { -+ long unsigned int words[64]; -+}; -+ -+struct entry_stack_page { -+ struct entry_stack stack; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct tss_struct { -+ struct x86_hw_tss x86_tss; -+ long unsigned int io_bitmap[1025]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct orig_ist { -+ long unsigned int ist[7]; -+}; -+ -+union irq_stack_union { -+ char irq_stack[16384]; -+ struct { -+ char gs_base[40]; -+ long unsigned int stack_canary; -+ }; -+}; -+ -+enum l1tf_mitigations { -+ L1TF_MITIGATION_OFF = 0, -+ L1TF_MITIGATION_FLUSH_NOWARN = 1, -+ L1TF_MITIGATION_FLUSH = 2, -+ L1TF_MITIGATION_FLUSH_NOSMT = 3, -+ L1TF_MITIGATION_FULL = 4, -+ L1TF_MITIGATION_FULL_FORCE = 5, -+}; -+ -+struct mpc_table { -+ char signature[4]; -+ short unsigned int length; -+ char spec; -+ char checksum; -+ char oem[8]; -+ char productid[12]; -+ unsigned int oemptr; -+ short unsigned int oemsize; -+ short unsigned int oemcount; -+ unsigned int lapic; -+ unsigned int reserved; -+}; -+ -+struct mpc_cpu { -+ unsigned char type; -+ unsigned char apicid; -+ unsigned char apicver; -+ unsigned char cpuflag; -+ unsigned int cpufeature; -+ unsigned int featureflag; -+ unsigned int reserved[2]; -+}; -+ -+struct mpc_bus { -+ unsigned char type; -+ unsigned char busid; -+ unsigned char bustype[6]; -+}; -+ -+struct mpc_intsrc { -+ unsigned char type; -+ unsigned char irqtype; -+ short unsigned int irqflag; -+ unsigned char srcbus; -+ unsigned char srcbusirq; -+ unsigned char dstapic; -+ unsigned char dstirq; -+}; -+ -+struct x86_init_mpparse { -+ void (*mpc_record)(unsigned int); -+ void (*setup_ioapic_ids)(); -+ int (*mpc_apic_id)(struct mpc_cpu *); -+ void (*smp_read_mpc_oem)(struct mpc_table *); -+ void (*mpc_oem_pci_bus)(struct mpc_bus *); -+ void (*mpc_oem_bus_info)(struct mpc_bus *, char *); -+ void (*find_smp_config)(); -+ void (*get_smp_config)(unsigned int); -+}; -+ -+struct x86_init_resources { -+ void (*probe_roms)(); -+ void (*reserve_resources)(); -+ char * (*memory_setup)(); -+}; -+ -+struct x86_init_irqs { -+ void (*pre_vector_init)(); -+ void (*intr_init)(); -+ void (*trap_init)(); -+ void (*intr_mode_select)(); -+ void (*intr_mode_init)(); -+}; -+ -+struct x86_init_oem { -+ void (*arch_setup)(); -+ void (*banner)(); -+}; -+ -+struct x86_init_paging { -+ void (*pagetable_init)(); -+}; -+ -+struct x86_init_timers { -+ void (*setup_percpu_clockev)(); -+ void (*timer_init)(); -+ void (*wallclock_init)(); -+}; -+ -+struct x86_init_iommu { -+ int (*iommu_init)(); -+}; -+ -+struct x86_init_pci { -+ int (*arch_init)(); -+ int (*init)(); -+ void (*init_irq)(); -+ void (*fixup_irqs)(); -+}; -+ -+struct x86_hyper_init { -+ void (*init_platform)(); -+ void (*guest_late_init)(); -+ bool (*x2apic_available)(); -+ void (*init_mem_mapping)(); -+ void (*init_after_bootmem)(); -+}; -+ -+struct x86_init_acpi { -+ u64 (*get_root_pointer)(); -+ void (*reduced_hw_early_init)(); -+}; -+ -+struct x86_init_ops { -+ struct x86_init_resources resources; -+ struct x86_init_mpparse mpparse; -+ struct x86_init_irqs irqs; -+ struct x86_init_oem oem; -+ struct x86_init_paging paging; -+ struct x86_init_timers timers; -+ struct x86_init_iommu iommu; -+ struct x86_init_pci pci; -+ struct x86_hyper_init hyper; -+ struct x86_init_acpi acpi; -+}; -+ -+struct x86_cpuinit_ops { -+ void (*setup_percpu_clockev)(); -+ void (*early_percpu_clock_init)(); -+ void (*fixup_cpu_id)(struct cpuinfo_x86 *, int); -+}; -+ -+struct x86_legacy_devices { -+ int pnpbios; -+}; -+ -+enum x86_legacy_i8042_state { -+ X86_LEGACY_I8042_PLATFORM_ABSENT = 0, -+ X86_LEGACY_I8042_FIRMWARE_ABSENT = 1, -+ X86_LEGACY_I8042_EXPECTED_PRESENT = 2, -+}; -+ -+struct x86_legacy_features { -+ enum x86_legacy_i8042_state i8042; -+ int rtc; -+ int warm_reset; -+ int no_vga; -+ int reserve_bios_regions; -+ struct x86_legacy_devices devices; -+}; -+ -+struct x86_hyper_runtime { -+ void (*pin_vcpu)(int); -+}; -+ -+struct x86_platform_ops { -+ long unsigned int (*calibrate_cpu)(); -+ long unsigned int (*calibrate_tsc)(); -+ void (*get_wallclock)(struct timespec64 *); -+ int (*set_wallclock)(const struct timespec64 *); -+ void (*iommu_shutdown)(); -+ bool (*is_untracked_pat_range)(u64, u64); -+ void (*nmi_init)(); -+ unsigned char (*get_nmi_reason)(); -+ void (*save_sched_clock_state)(); -+ void (*restore_sched_clock_state)(); -+ void (*apic_post_init)(); -+ struct x86_legacy_features legacy; -+ void (*set_legacy_features)(); -+ struct x86_hyper_runtime hyper; -+}; -+ -+struct pci_dev; -+ -+struct x86_msi_ops { -+ int (*setup_msi_irqs)(struct pci_dev *, int, int); -+ void (*teardown_msi_irq)(unsigned int); -+ void (*teardown_msi_irqs)(struct pci_dev *); -+ void (*restore_msi_irqs)(struct pci_dev *); -+}; -+ -+struct x86_apic_ops { -+ unsigned int (*io_apic_read)(unsigned int, unsigned int); -+ void (*restore)(); -+}; -+ -+struct physid_mask { -+ long unsigned int mask[512]; -+}; -+ -+typedef struct physid_mask physid_mask_t; -+ -+struct lock_class_key {}; -+ -+typedef struct { -+ arch_rwlock_t raw_lock; -+} rwlock_t; -+ -+struct vdso_image { -+ void *data; -+ long unsigned int size; -+ long unsigned int alt; -+ long unsigned int alt_len; -+ long int sym_vvar_start; -+ long int sym_vvar_page; -+ long int sym_hpet_page; -+ long int sym_pvclock_page; -+ long int sym_hvclock_page; -+ long int sym_VDSO32_NOTE_MASK; -+ long int sym___kernel_sigreturn; -+ long int sym___kernel_rt_sigreturn; -+ long int sym___kernel_vsyscall; -+ long int sym_int80_landing_pad; -+}; -+ -+enum xen_domain_type { -+ XEN_NATIVE = 0, -+ XEN_PV_DOMAIN = 1, -+ XEN_HVM_DOMAIN = 2, -+}; -+ -+struct fwnode_operations; -+ -+struct fwnode_handle { -+ struct fwnode_handle *secondary; -+ const struct fwnode_operations *ops; -+}; -+ -+struct device; -+ -+struct fwnode_reference_args; -+ -+struct fwnode_endpoint; -+ -+struct fwnode_operations { -+ struct fwnode_handle * (*get)(struct fwnode_handle *); -+ void (*put)(struct fwnode_handle *); -+ bool (*device_is_available)(const struct fwnode_handle *); -+ const void * (*device_get_match_data)(const struct fwnode_handle *, const struct device *); -+ bool (*property_present)(const struct fwnode_handle *, const char *); -+ int (*property_read_int_array)(const struct fwnode_handle *, const char *, unsigned int, void *, size_t); -+ int (*property_read_string_array)(const struct fwnode_handle *, const char *, const char **, size_t); -+ struct fwnode_handle * (*get_parent)(const struct fwnode_handle *); -+ struct fwnode_handle * (*get_next_child_node)(const struct fwnode_handle *, struct fwnode_handle *); -+ struct fwnode_handle * (*get_named_child_node)(const struct fwnode_handle *, const char *); -+ int (*get_reference_args)(const struct fwnode_handle *, const char *, const char *, unsigned int, unsigned int, struct fwnode_reference_args *); -+ struct fwnode_handle * (*graph_get_next_endpoint)(const struct fwnode_handle *, struct fwnode_handle *); -+ struct fwnode_handle * (*graph_get_remote_endpoint)(const struct fwnode_handle *); -+ struct fwnode_handle * (*graph_get_port_parent)(struct fwnode_handle *); -+ int (*graph_parse_endpoint)(const struct fwnode_handle *, struct fwnode_endpoint *); -+}; -+ -+struct fwnode_endpoint { -+ unsigned int port; -+ unsigned int id; -+ const struct fwnode_handle *local_fwnode; -+}; -+ -+struct fwnode_reference_args { -+ struct fwnode_handle *fwnode; -+ unsigned int nargs; -+ u64 args[8]; -+}; -+ -+struct kref { -+ refcount_t refcount; -+}; -+ -+struct kset; -+ -+struct kobj_type; -+ -+struct kernfs_node; -+ -+struct kobject { -+ const char *name; -+ struct list_head entry; -+ struct kobject *parent; -+ struct kset *kset; -+ struct kobj_type *ktype; -+ struct kernfs_node *sd; -+ struct kref kref; -+ unsigned int state_initialized: 1; -+ unsigned int state_in_sysfs: 1; -+ unsigned int state_add_uevent_sent: 1; -+ unsigned int state_remove_uevent_sent: 1; -+ unsigned int uevent_suppress: 1; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+enum dl_dev_state { -+ DL_DEV_NO_DRIVER = 0, -+ DL_DEV_PROBING = 1, -+ DL_DEV_DRIVER_BOUND = 2, -+ DL_DEV_UNBINDING = 3, -+}; -+ -+struct dev_links_info { -+ struct list_head suppliers; -+ struct list_head consumers; -+ enum dl_dev_state status; -+}; -+ -+struct pm_message { -+ int event; -+}; -+ -+typedef struct pm_message pm_message_t; -+ -+struct wait_queue_head { -+ spinlock_t lock; -+ struct list_head head; -+}; -+ -+typedef struct wait_queue_head wait_queue_head_t; -+ -+struct completion { -+ unsigned int done; -+ wait_queue_head_t wait; -+}; -+ -+struct timer_list { -+ struct hlist_node entry; -+ long unsigned int expires; -+ void (*function)(struct timer_list *); -+ u32 flags; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+enum rpm_request { -+ RPM_REQ_NONE = 0, -+ RPM_REQ_IDLE = 1, -+ RPM_REQ_SUSPEND = 2, -+ RPM_REQ_AUTOSUSPEND = 3, -+ RPM_REQ_RESUME = 4, -+}; -+ -+enum rpm_status { -+ RPM_ACTIVE = 0, -+ RPM_RESUMING = 1, -+ RPM_SUSPENDED = 2, -+ RPM_SUSPENDING = 3, -+}; -+ -+struct wakeup_source; -+ -+struct wake_irq; -+ -+struct pm_subsys_data; -+ -+struct dev_pm_qos; -+ -+struct dev_pm_info { -+ pm_message_t power_state; -+ unsigned int can_wakeup: 1; -+ unsigned int async_suspend: 1; -+ bool in_dpm_list: 1; -+ bool is_prepared: 1; -+ bool is_suspended: 1; -+ bool is_noirq_suspended: 1; -+ bool is_late_suspended: 1; -+ bool early_init: 1; -+ bool direct_complete: 1; -+ u32 driver_flags; -+ spinlock_t lock; -+ struct list_head entry; -+ struct completion completion; -+ struct wakeup_source *wakeup; -+ bool wakeup_path: 1; -+ bool syscore: 1; -+ bool no_pm_callbacks: 1; -+ unsigned int must_resume: 1; -+ unsigned int may_skip_resume: 1; -+ struct timer_list suspend_timer; -+ long unsigned int timer_expires; -+ struct work_struct work; -+ wait_queue_head_t wait_queue; -+ struct wake_irq *wakeirq; -+ atomic_t usage_count; -+ atomic_t child_count; -+ unsigned int disable_depth: 3; -+ unsigned int idle_notification: 1; -+ unsigned int request_pending: 1; -+ unsigned int deferred_resume: 1; -+ unsigned int runtime_auto: 1; -+ bool ignore_children: 1; -+ unsigned int no_callbacks: 1; -+ unsigned int irq_safe: 1; -+ unsigned int use_autosuspend: 1; -+ unsigned int timer_autosuspends: 1; -+ unsigned int memalloc_noio: 1; -+ unsigned int links_count; -+ enum rpm_request request; -+ enum rpm_status runtime_status; -+ int runtime_error; -+ int autosuspend_delay; -+ long unsigned int last_busy; -+ long unsigned int active_jiffies; -+ long unsigned int suspended_jiffies; -+ long unsigned int accounting_timestamp; -+ struct pm_subsys_data *subsys_data; -+ void (*set_latency_tolerance)(struct device *, s32); -+ struct dev_pm_qos *qos; -+}; -+ -+struct dma_coherent_mem; -+ -+struct dev_archdata { -+ void *iommu; -+}; -+ -+struct klist_node { -+ void *n_klist; -+ struct list_head n_node; -+ struct kref n_ref; -+}; -+ -+struct device_private; -+ -+struct device_type; -+ -+struct bus_type; -+ -+struct device_driver; -+ -+struct dev_pm_domain; -+ -+struct irq_domain; -+ -+struct dev_pin_info; -+ -+struct dma_map_ops; -+ -+struct device_dma_parameters; -+ -+struct device_node; -+ -+struct class; -+ -+struct attribute_group; -+ -+struct iommu_group; -+ -+struct iommu_fwspec; -+ -+struct iommu_param; -+ -+struct device { -+ struct device *parent; -+ struct device_private *p; -+ struct kobject kobj; -+ const char *init_name; -+ const struct device_type *type; -+ struct mutex mutex; -+ struct bus_type *bus; -+ struct device_driver *driver; -+ void *platform_data; -+ void *driver_data; -+ struct dev_links_info links; -+ struct dev_pm_info power; -+ struct dev_pm_domain *pm_domain; -+ struct irq_domain *msi_domain; -+ struct dev_pin_info *pins; -+ struct list_head msi_list; -+ int numa_node; -+ const struct dma_map_ops *dma_ops; -+ u64 *dma_mask; -+ u64 coherent_dma_mask; -+ u64 bus_dma_mask; -+ long unsigned int dma_pfn_offset; -+ struct device_dma_parameters *dma_parms; -+ struct list_head dma_pools; -+ struct dma_coherent_mem *dma_mem; -+ struct dev_archdata archdata; -+ struct device_node *of_node; -+ struct fwnode_handle *fwnode; -+ dev_t devt; -+ u32 id; -+ spinlock_t devres_lock; -+ struct list_head devres_head; -+ struct klist_node knode_class; -+ struct class *class; -+ const struct attribute_group **groups; -+ void (*release)(struct device *); -+ struct iommu_group *iommu_group; -+ struct iommu_fwspec *iommu_fwspec; -+ struct iommu_param *iommu_param; -+ bool offline_disabled: 1; -+ bool offline: 1; -+ bool of_node_reused: 1; -+ union { -+ raw_spinlock_t msi_lock; -+ long unsigned int kabi_reserve1; -+ }; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+}; -+ -+struct vm_struct { -+ struct vm_struct *next; -+ void *addr; -+ long unsigned int size; -+ long unsigned int flags; -+ struct page **pages; -+ unsigned int nr_pages; -+ phys_addr_t phys_addr; -+ const void *caller; -+}; -+ -+struct real_mode_header { -+ u32 text_start; -+ u32 ro_end; -+ u32 trampoline_start; -+ u32 trampoline_status; -+ u32 trampoline_header; -+ u32 trampoline_pgd; -+ u32 wakeup_start; -+ u32 wakeup_header; -+ u32 machine_real_restart_asm; -+ u32 machine_real_restart_seg; -+}; -+ -+enum fixed_addresses { -+ VSYSCALL_PAGE = 511, -+ FIX_DBGP_BASE = 512, -+ FIX_EARLYCON_MEM_BASE = 513, -+ FIX_OHCI1394_BASE = 514, -+ FIX_APIC_BASE = 515, -+ FIX_IO_APIC_BASE_0 = 516, -+ FIX_IO_APIC_BASE_END = 643, -+ FIX_PARAVIRT_BOOTMAP = 644, -+ FIX_TEXT_POKE1 = 645, -+ FIX_TEXT_POKE0 = 646, -+ FIX_APEI_GHES_IRQ = 647, -+ FIX_APEI_GHES_NMI = 648, -+ __end_of_permanent_fixed_addresses = 649, -+ FIX_BTMAP_END = 1024, -+ FIX_BTMAP_BEGIN = 1535, -+ FIX_TBOOT_BASE = 1536, -+ __end_of_fixed_addresses = 1537, -+}; -+ -+typedef struct { -+ u16 __softirq_pending; -+ u8 kvm_cpu_l1tf_flush_l1d; -+ unsigned int __nmi_count; -+ unsigned int apic_timer_irqs; -+ unsigned int irq_spurious_count; -+ unsigned int icr_read_retry_count; -+ unsigned int kvm_posted_intr_ipis; -+ unsigned int kvm_posted_intr_wakeup_ipis; -+ unsigned int kvm_posted_intr_nested_ipis; -+ unsigned int x86_platform_ipis; -+ unsigned int apic_perf_irqs; -+ unsigned int apic_irq_work_irqs; -+ unsigned int irq_resched_count; -+ unsigned int irq_call_count; -+ unsigned int irq_tlb_count; -+ unsigned int irq_thermal_count; -+ unsigned int irq_threshold_count; -+ unsigned int irq_deferred_error_count; -+ unsigned int irq_hv_callback_count; -+ unsigned int irq_hv_reenlightenment_count; -+ unsigned int hyperv_stimer0_count; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+} irq_cpustat_t; -+ -+enum apic_intr_mode_id { -+ APIC_PIC = 0, -+ APIC_VIRTUAL_WIRE = 1, -+ APIC_VIRTUAL_WIRE_NO_CONFIG = 2, -+ APIC_SYMMETRIC_IO = 3, -+ APIC_SYMMETRIC_IO_NO_ROUTING = 4, -+}; -+ -+struct apic { -+ void (*eoi_write)(u32, u32); -+ void (*native_eoi_write)(u32, u32); -+ void (*write)(u32, u32); -+ u32 (*read)(u32); -+ void (*wait_icr_idle)(); -+ u32 (*safe_wait_icr_idle)(); -+ void (*send_IPI)(int, int); -+ void (*send_IPI_mask)(const struct cpumask *, int); -+ void (*send_IPI_mask_allbutself)(const struct cpumask *, int); -+ void (*send_IPI_allbutself)(int); -+ void (*send_IPI_all)(int); -+ void (*send_IPI_self)(int); -+ u32 dest_logical; -+ u32 disable_esr; -+ u32 irq_delivery_mode; -+ u32 irq_dest_mode; -+ u32 (*calc_dest_apicid)(unsigned int); -+ u64 (*icr_read)(); -+ void (*icr_write)(u32, u32); -+ int (*probe)(); -+ int (*acpi_madt_oem_check)(char *, char *); -+ int (*apic_id_valid)(u32); -+ int (*apic_id_registered)(); -+ bool (*check_apicid_used)(physid_mask_t *, int); -+ void (*init_apic_ldr)(); -+ void (*ioapic_phys_id_map)(physid_mask_t *, physid_mask_t *); -+ void (*setup_apic_routing)(); -+ int (*cpu_present_to_apicid)(int); -+ void (*apicid_to_cpu_present)(int, physid_mask_t *); -+ int (*check_phys_apicid_present)(int); -+ int (*phys_pkg_id)(int, int); -+ u32 (*get_apic_id)(long unsigned int); -+ u32 (*set_apic_id)(unsigned int); -+ int (*wakeup_secondary_cpu)(int, long unsigned int); -+ void (*inquire_remote_apic)(int); -+ char *name; -+}; -+ -+struct smp_ops { -+ void (*smp_prepare_boot_cpu)(); -+ void (*smp_prepare_cpus)(unsigned int); -+ void (*smp_cpus_done)(unsigned int); -+ void (*stop_other_cpus)(int); -+ void (*crash_stop_other_cpus)(); -+ void (*smp_send_reschedule)(int); -+ int (*cpu_up)(unsigned int, struct task_struct *); -+ int (*cpu_disable)(); -+ void (*cpu_die)(unsigned int); -+ void (*play_dead)(); -+ void (*send_call_func_ipi)(const struct cpumask *); -+ void (*send_call_func_single_ipi)(int); ++enum tlb_infos { ++ ENTRIES = 0, ++ NR_INFO = 1, +}; + +enum pcpu_fc { @@ -3689,262 +1954,45 @@ index 0000000..bcb9d76 + PCPU_FC_NR = 3, +}; + ++struct vm_struct { ++ struct vm_struct *next; ++ void *addr; ++ long unsigned int size; ++ long unsigned int flags; ++ struct page **pages; ++ unsigned int page_order; ++ unsigned int nr_pages; ++ phys_addr_t phys_addr; ++ const void *caller; ++}; ++ ++struct wait_queue_head { ++ spinlock_t lock; ++ struct list_head head; ++}; ++ ++typedef struct wait_queue_head wait_queue_head_t; ++ ++struct seqcount_raw_spinlock { ++ seqcount_t seqcount; ++}; ++ ++typedef struct seqcount_raw_spinlock seqcount_raw_spinlock_t; ++ +typedef struct { -+ struct seqcount seqcount; ++ seqcount_spinlock_t seqcount; + spinlock_t lock; +} seqlock_t; + -+struct free_area { -+ struct list_head free_list[5]; -+ long unsigned int nr_free; -+}; -+ -+struct zone_padding { -+ char x[0]; -+}; -+ -+enum numa_stat_item { -+ NUMA_HIT = 0, -+ NUMA_MISS = 1, -+ NUMA_FOREIGN = 2, -+ NUMA_INTERLEAVE_HIT = 3, -+ NUMA_LOCAL = 4, -+ NUMA_OTHER = 5, -+ NR_VM_NUMA_STAT_ITEMS = 6, -+}; -+ -+enum zone_stat_item { -+ NR_FREE_PAGES = 0, -+ NR_ZONE_LRU_BASE = 1, -+ NR_ZONE_INACTIVE_ANON = 1, -+ NR_ZONE_ACTIVE_ANON = 2, -+ NR_ZONE_INACTIVE_FILE = 3, -+ NR_ZONE_ACTIVE_FILE = 4, -+ NR_ZONE_UNEVICTABLE = 5, -+ NR_ZONE_WRITE_PENDING = 6, -+ NR_MLOCK = 7, -+ NR_PAGETABLE = 8, -+ NR_KERNEL_STACK_KB = 9, -+ NR_BOUNCE = 10, -+ NR_ZSPAGES = 11, -+ NR_FREE_CMA_PAGES = 12, -+ NR_VM_ZONE_STAT_ITEMS = 13, -+}; -+ -+enum node_stat_item { -+ NR_LRU_BASE = 0, -+ NR_INACTIVE_ANON = 0, -+ NR_ACTIVE_ANON = 1, -+ NR_INACTIVE_FILE = 2, -+ NR_ACTIVE_FILE = 3, -+ NR_UNEVICTABLE = 4, -+ NR_SLAB_RECLAIMABLE = 5, -+ NR_SLAB_UNRECLAIMABLE = 6, -+ NR_ISOLATED_ANON = 7, -+ NR_ISOLATED_FILE = 8, -+ WORKINGSET_REFAULT = 9, -+ WORKINGSET_ACTIVATE = 10, -+ WORKINGSET_NODERECLAIM = 11, -+ NR_ANON_MAPPED = 12, -+ NR_FILE_MAPPED = 13, -+ NR_FILE_PAGES = 14, -+ NR_FILE_DIRTY = 15, -+ NR_WRITEBACK = 16, -+ NR_WRITEBACK_TEMP = 17, -+ NR_SHMEM = 18, -+ NR_SHMEM_THPS = 19, -+ NR_SHMEM_PMDMAPPED = 20, -+ NR_ANON_THPS = 21, -+ NR_UNSTABLE_NFS = 22, -+ NR_VMSCAN_WRITE = 23, -+ NR_VMSCAN_IMMEDIATE = 24, -+ NR_DIRTIED = 25, -+ NR_WRITTEN = 26, -+ NR_INDIRECTLY_RECLAIMABLE_BYTES = 27, -+ NR_VM_NODE_STAT_ITEMS = 28, -+}; -+ -+struct zone_reclaim_stat { -+ long unsigned int recent_rotated[2]; -+ long unsigned int recent_scanned[2]; -+}; -+ -+struct pglist_data; -+ -+struct lruvec { -+ struct list_head lists[5]; -+ struct zone_reclaim_stat reclaim_stat; -+ atomic_long_t inactive_age; -+ long unsigned int refaults; -+ struct pglist_data *pgdat; -+}; -+ -+struct per_cpu_pageset; -+ -+struct zone { -+ long unsigned int watermark[3]; -+ long unsigned int nr_reserved_highatomic; -+ long int lowmem_reserve[5]; -+ int node; -+ struct pglist_data *zone_pgdat; -+ struct per_cpu_pageset *pageset; -+ long unsigned int zone_start_pfn; -+ long unsigned int managed_pages; -+ long unsigned int spanned_pages; -+ long unsigned int present_pages; -+ const char *name; -+ long unsigned int nr_isolate_pageblock; -+ seqlock_t span_seqlock; -+ int initialized; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ struct free_area free_area[11]; -+ long unsigned int flags; -+ spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad2_; -+ long unsigned int percpu_drift_mark; -+ long unsigned int compact_cached_free_pfn; -+ long unsigned int compact_cached_migrate_pfn[2]; -+ unsigned int compact_considered; -+ unsigned int compact_defer_shift; -+ int compact_order_failed; -+ bool compact_blockskip_flush; -+ bool contiguous; -+ long: 16; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad3_; -+ atomic_long_t vm_stat[13]; -+ atomic_long_t vm_numa_stat[6]; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct zoneref { -+ struct zone *zone; -+ int zone_idx; -+}; -+ -+struct zonelist { -+ struct zoneref _zonerefs[5121]; -+}; -+ -+enum zone_type { -+ ZONE_DMA = 0, -+ ZONE_DMA32 = 1, -+ ZONE_NORMAL = 2, -+ ZONE_MOVABLE = 3, -+ ZONE_DEVICE = 4, -+ __MAX_NR_ZONES = 5, -+}; -+ -+struct per_cpu_nodestat; -+ -+struct pglist_data { -+ struct zone node_zones[5]; -+ struct zonelist node_zonelists[2]; -+ int nr_zones; -+ spinlock_t node_size_lock; -+ long unsigned int node_start_pfn; -+ long unsigned int node_present_pages; -+ long unsigned int node_spanned_pages; -+ int node_id; -+ wait_queue_head_t kswapd_wait; -+ wait_queue_head_t pfmemalloc_wait; -+ struct task_struct *kswapd; -+ int kswapd_order; -+ enum zone_type kswapd_classzone_idx; -+ int kswapd_failures; -+ int kcompactd_max_order; -+ enum zone_type kcompactd_classzone_idx; -+ wait_queue_head_t kcompactd_wait; -+ struct task_struct *kcompactd; -+ long unsigned int totalreserve_pages; -+ long unsigned int min_unmapped_pages; -+ long unsigned int min_slab_pages; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ spinlock_t lru_lock; -+ long unsigned int first_deferred_pfn; -+ long unsigned int static_init_pgcnt; -+ spinlock_t split_queue_lock; -+ struct list_head split_queue; -+ long unsigned int split_queue_len; -+ struct lruvec lruvec; -+ long unsigned int flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad2_; -+ struct per_cpu_nodestat *per_cpu_nodestats; -+ atomic_long_t vm_stat[28]; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long: 64; -+}; -+ -+typedef unsigned int isolate_mode_t; -+ -+struct per_cpu_pages { -+ int count; -+ int high; -+ int batch; -+ struct list_head lists[3]; -+}; -+ -+struct per_cpu_pageset { -+ struct per_cpu_pages pcp; -+ s8 expire; -+ u16 vm_numa_stat_diff[6]; -+ s8 stat_threshold; -+ s8 vm_stat_diff[13]; -+}; -+ -+struct per_cpu_nodestat { -+ s8 stat_threshold; -+ s8 vm_node_stat_diff[28]; -+}; -+ -+typedef struct pglist_data pg_data_t; -+ -+typedef int (*notifier_fn_t)(struct notifier_block *, long unsigned int, void *); -+ -+struct notifier_block { -+ notifier_fn_t notifier_call; -+ struct notifier_block *next; -+ int priority; -+}; -+ -+struct blocking_notifier_head { -+ struct rw_semaphore rwsem; -+ struct notifier_block *head; -+}; -+ -+struct mem_section { -+ long unsigned int section_mem_map; -+ long unsigned int *pageblock_flags; ++enum node_states { ++ N_POSSIBLE = 0, ++ N_ONLINE = 1, ++ N_NORMAL_MEMORY = 2, ++ N_HIGH_MEMORY = 2, ++ N_MEMORY = 3, ++ N_CPU = 4, ++ N_GENERIC_INITIATOR = 5, ++ NR_NODE_STATES = 6, +}; + +struct userfaultfd_ctx; @@ -3980,10 +2028,28 @@ index 0000000..bcb9d76 + atomic_long_t swap_readahead_info; + struct mempolicy *vm_policy; + struct vm_userfaultfd_ctx vm_userfaultfd_ctx; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++enum { ++ MM_FILEPAGES = 0, ++ MM_ANONPAGES = 1, ++ MM_SWAPENTS = 2, ++ MM_SHMEMPAGES = 3, ++ NR_MM_COUNTERS = 4, ++}; ++ ++struct swait_queue_head { ++ raw_spinlock_t lock; ++ struct list_head task_list; ++}; ++ ++struct completion { ++ unsigned int done; ++ struct swait_queue_head wait; +}; + +struct arch_uprobe_task { @@ -4030,14 +2096,30 @@ index 0000000..bcb9d76 + struct return_instance *next; +}; + -+typedef int vm_fault_t; ++struct vdso_image { ++ void *data; ++ long unsigned int size; ++ long unsigned int alt; ++ long unsigned int alt_len; ++ long unsigned int extable_base; ++ long unsigned int extable_len; ++ const void *extable; ++ long int sym_vvar_start; ++ long int sym_vvar_page; ++ long int sym_pvclock_page; ++ long int sym_hvclock_page; ++ long int sym_timens_page; ++ long int sym_VDSO32_NOTE_MASK; ++ long int sym___kernel_sigreturn; ++ long int sym___kernel_rt_sigreturn; ++ long int sym___kernel_vsyscall; ++ long int sym_int80_landing_pad; ++}; + -+struct radix_tree_node; -+ -+struct radix_tree_root { ++struct xarray { + spinlock_t xa_lock; -+ gfp_t gfp_mask; -+ struct radix_tree_node *rnode; ++ gfp_t xa_flags; ++ void *xa_head; +}; + +typedef u32 errseq_t; @@ -4046,78 +2128,68 @@ index 0000000..bcb9d76 + +struct address_space { + struct inode *host; -+ struct radix_tree_root i_pages; ++ struct xarray i_pages; ++ gfp_t gfp_mask; + atomic_t i_mmap_writable; + struct rb_root_cached i_mmap; + struct rw_semaphore i_mmap_rwsem; + long unsigned int nrpages; -+ long unsigned int nrexceptional; + long unsigned int writeback_index; + const struct address_space_operations *a_ops; + long unsigned int flags; ++ errseq_t wb_err; + spinlock_t private_lock; -+ gfp_t gfp_mask; + struct list_head private_list; + void *private_data; -+ errseq_t wb_err; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + -+typedef int (*dev_page_fault_t)(struct vm_area_struct *, long unsigned int, const struct page *, unsigned int, pmd_t *); -+ -+typedef void (*dev_page_free_t)(struct page *, void *); -+ +struct vmem_altmap { + const long unsigned int base_pfn; ++ const long unsigned int end_pfn; + const long unsigned int reserve; + long unsigned int free; + long unsigned int align; + long unsigned int alloc; +}; + -+struct resource { -+ resource_size_t start; -+ resource_size_t end; -+ const char *name; -+ long unsigned int flags; -+ long unsigned int desc; -+ struct resource *parent; -+ struct resource *sibling; -+ struct resource *child; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++struct percpu_ref_data; ++ ++struct percpu_ref { ++ long unsigned int percpu_count_ptr; ++ struct percpu_ref_data *data; +}; + +enum memory_type { + MEMORY_DEVICE_PRIVATE = 1, -+ MEMORY_DEVICE_PUBLIC = 2, -+ MEMORY_DEVICE_FS_DAX = 3, ++ MEMORY_DEVICE_FS_DAX = 2, ++ MEMORY_DEVICE_GENERIC = 3, ++ MEMORY_DEVICE_PCI_P2PDMA = 4, +}; + -+struct percpu_ref; ++struct dev_pagemap_ops; + +struct dev_pagemap { -+ dev_page_fault_t page_fault; -+ dev_page_free_t page_free; + struct vmem_altmap altmap; -+ bool altmap_valid; -+ struct resource res; + struct percpu_ref *ref; -+ void (*kill)(struct percpu_ref *); -+ struct device *dev; -+ void *data; ++ struct percpu_ref internal_ref; ++ struct completion done; + enum memory_type type; ++ unsigned int flags; ++ const struct dev_pagemap_ops *ops; ++ void *owner; ++ int nr_range; ++ union { ++ struct range range; ++ struct range ranges[0]; ++ }; +}; + +struct vfsmount; + -+struct dentry; -+ +struct path { + struct vfsmount *mnt; + struct dentry *dentry; @@ -4183,8 +2255,15 @@ index 0000000..bcb9d76 + struct list_head f_tfile_llink; + struct address_space *f_mapping; + errseq_t f_wb_err; ++ errseq_t f_sb_err; ++ union { ++ fmode_t f_ctl_mode; ++ u64 kabi_reserved1; ++ }; +}; + ++typedef unsigned int vm_fault_t; ++ +enum page_entry_size { + PE_SIZE_PTE = 0, + PE_SIZE_PMD = 1, @@ -4198,6 +2277,7 @@ index 0000000..bcb9d76 + void (*close)(struct vm_area_struct *); + int (*split)(struct vm_area_struct *, long unsigned int); + int (*mremap)(struct vm_area_struct *); ++ int (*mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int, long unsigned int); + vm_fault_t (*fault)(struct vm_fault *); + vm_fault_t (*huge_fault)(struct vm_fault *, enum page_entry_size); + void (*map_pages)(struct vm_fault *, long unsigned int, long unsigned int); @@ -4209,10 +2289,10 @@ index 0000000..bcb9d76 + int (*set_policy)(struct vm_area_struct *, struct mempolicy *); + struct mempolicy * (*get_policy)(struct vm_area_struct *, long unsigned int); + struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct core_thread { @@ -4236,22 +2316,128 @@ index 0000000..bcb9d76 + pud_t *pud; + pte_t orig_pte; + struct page *cow_page; -+ struct mem_cgroup *memcg; + struct page *page; + pte_t *pte; + spinlock_t *ptl; + pgtable_t prealloc_pte; +}; + ++enum migratetype { ++ MIGRATE_UNMOVABLE = 0, ++ MIGRATE_MOVABLE = 1, ++ MIGRATE_RECLAIMABLE = 2, ++ MIGRATE_PCPTYPES = 3, ++ MIGRATE_HIGHATOMIC = 3, ++ MIGRATE_ISOLATE = 4, ++ MIGRATE_TYPES = 5, ++}; ++ ++enum numa_stat_item { ++ NUMA_HIT = 0, ++ NUMA_MISS = 1, ++ NUMA_FOREIGN = 2, ++ NUMA_INTERLEAVE_HIT = 3, ++ NUMA_LOCAL = 4, ++ NUMA_OTHER = 5, ++ NR_VM_NUMA_STAT_ITEMS = 6, ++}; ++ ++enum zone_stat_item { ++ NR_FREE_PAGES = 0, ++ NR_ZONE_LRU_BASE = 1, ++ NR_ZONE_INACTIVE_ANON = 1, ++ NR_ZONE_ACTIVE_ANON = 2, ++ NR_ZONE_INACTIVE_FILE = 3, ++ NR_ZONE_ACTIVE_FILE = 4, ++ NR_ZONE_UNEVICTABLE = 5, ++ NR_ZONE_WRITE_PENDING = 6, ++ NR_MLOCK = 7, ++ NR_PAGETABLE = 8, ++ NR_BOUNCE = 9, ++ NR_ZSPAGES = 10, ++ NR_FREE_CMA_PAGES = 11, ++ NR_VM_ZONE_STAT_ITEMS = 12, ++}; ++ ++enum node_stat_item { ++ NR_LRU_BASE = 0, ++ NR_INACTIVE_ANON = 0, ++ NR_ACTIVE_ANON = 1, ++ NR_INACTIVE_FILE = 2, ++ NR_ACTIVE_FILE = 3, ++ NR_UNEVICTABLE = 4, ++ NR_SLAB_RECLAIMABLE_B = 5, ++ NR_SLAB_UNRECLAIMABLE_B = 6, ++ NR_ISOLATED_ANON = 7, ++ NR_ISOLATED_FILE = 8, ++ WORKINGSET_NODES = 9, ++ WORKINGSET_REFAULT_BASE = 10, ++ WORKINGSET_REFAULT_ANON = 10, ++ WORKINGSET_REFAULT_FILE = 11, ++ WORKINGSET_ACTIVATE_BASE = 12, ++ WORKINGSET_ACTIVATE_ANON = 12, ++ WORKINGSET_ACTIVATE_FILE = 13, ++ WORKINGSET_RESTORE_BASE = 14, ++ WORKINGSET_RESTORE_ANON = 14, ++ WORKINGSET_RESTORE_FILE = 15, ++ WORKINGSET_NODERECLAIM = 16, ++ NR_ANON_MAPPED = 17, ++ NR_FILE_MAPPED = 18, ++ NR_FILE_PAGES = 19, ++ NR_FILE_DIRTY = 20, ++ NR_WRITEBACK = 21, ++ NR_WRITEBACK_TEMP = 22, ++ NR_SHMEM = 23, ++ NR_SHMEM_THPS = 24, ++ NR_SHMEM_PMDMAPPED = 25, ++ NR_FILE_THPS = 26, ++ NR_FILE_PMDMAPPED = 27, ++ NR_ANON_THPS = 28, ++ NR_VMSCAN_WRITE = 29, ++ NR_VMSCAN_IMMEDIATE = 30, ++ NR_DIRTIED = 31, ++ NR_WRITTEN = 32, ++ NR_KERNEL_MISC_RECLAIMABLE = 33, ++ NR_FOLL_PIN_ACQUIRED = 34, ++ NR_FOLL_PIN_RELEASED = 35, ++ NR_KERNEL_STACK_KB = 36, ++ NR_VM_NODE_STAT_ITEMS = 37, ++}; ++ ++enum lru_list { ++ LRU_INACTIVE_ANON = 0, ++ LRU_ACTIVE_ANON = 1, ++ LRU_INACTIVE_FILE = 2, ++ LRU_ACTIVE_FILE = 3, ++ LRU_UNEVICTABLE = 4, ++ NR_LRU_LISTS = 5, ++}; ++ ++typedef unsigned int isolate_mode_t; ++ ++enum zone_watermarks { ++ WMARK_MIN = 0, ++ WMARK_LOW = 1, ++ WMARK_HIGH = 2, ++ NR_WMARK = 3, ++}; ++ ++enum { ++ ZONELIST_FALLBACK = 0, ++ ZONELIST_NOFALLBACK = 1, ++ MAX_ZONELISTS = 2, ++}; ++ +typedef void percpu_ref_func_t(struct percpu_ref *); + -+struct percpu_ref { ++struct percpu_ref_data { + atomic_long_t count; -+ long unsigned int percpu_count_ptr; + percpu_ref_func_t *release; + percpu_ref_func_t *confirm_switch; + bool force_atomic: 1; ++ bool allow_reinit: 1; + struct callback_head rcu; ++ struct percpu_ref *ref; +}; + +struct shrink_control { @@ -4273,11 +2459,542 @@ index 0000000..bcb9d76 + atomic_long_t *nr_deferred; +}; + -+struct page_ext_operations { -+ size_t offset; -+ size_t size; -+ bool (*need)(); -+ void (*init)(); ++struct rlimit { ++ __kernel_ulong_t rlim_cur; ++ __kernel_ulong_t rlim_max; ++}; ++ ++struct dev_pagemap_ops { ++ void (*page_free)(struct page *); ++ void (*kill)(struct dev_pagemap *); ++ void (*cleanup)(struct dev_pagemap *); ++ vm_fault_t (*migrate_to_ram)(struct vm_fault *); ++}; ++ ++struct pid_namespace; ++ ++struct upid { ++ int nr; ++ struct pid_namespace *ns; ++}; ++ ++struct pid { ++ refcount_t count; ++ unsigned int level; ++ spinlock_t lock; ++ struct hlist_head tasks[4]; ++ struct hlist_head inodes; ++ wait_queue_head_t wait_pidfd; ++ struct callback_head rcu; ++ struct upid numbers[1]; ++}; ++ ++typedef struct { ++ gid_t val; ++} kgid_t; ++ ++struct hrtimer_resvd {}; ++ ++struct hrtimer_cpu_base; ++ ++struct hrtimer_clock_base { ++ struct hrtimer_cpu_base *cpu_base; ++ unsigned int index; ++ clockid_t clockid; ++ seqcount_raw_spinlock_t seq; ++ struct hrtimer *running; ++ struct timerqueue_head active; ++ ktime_t (*get_time)(); ++ ktime_t offset; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct hrtimer_cpu_base { ++ raw_spinlock_t lock; ++ unsigned int cpu; ++ unsigned int active_bases; ++ unsigned int clock_was_set_seq; ++ unsigned int hres_active: 1; ++ unsigned int in_hrtirq: 1; ++ unsigned int hang_detected: 1; ++ unsigned int softirq_activated: 1; ++ unsigned int nr_events; ++ short unsigned int nr_retries; ++ short unsigned int nr_hangs; ++ unsigned int max_hang_time; ++ ktime_t expires_next; ++ struct hrtimer *next_timer; ++ ktime_t softirq_expires_next; ++ struct hrtimer *softirq_next_timer; ++ struct hrtimer_clock_base clock_base[8]; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++enum hrtimer_base_type { ++ HRTIMER_BASE_MONOTONIC = 0, ++ HRTIMER_BASE_REALTIME = 1, ++ HRTIMER_BASE_BOOTTIME = 2, ++ HRTIMER_BASE_TAI = 3, ++ HRTIMER_BASE_MONOTONIC_SOFT = 4, ++ HRTIMER_BASE_REALTIME_SOFT = 5, ++ HRTIMER_BASE_BOOTTIME_SOFT = 6, ++ HRTIMER_BASE_TAI_SOFT = 7, ++ HRTIMER_MAX_CLOCK_BASES = 8, ++}; ++ ++typedef void __signalfn_t(int); ++ ++typedef __signalfn_t *__sighandler_t; ++ ++typedef void __restorefn_t(); ++ ++typedef __restorefn_t *__sigrestore_t; ++ ++union sigval { ++ int sival_int; ++ void *sival_ptr; ++}; ++ ++typedef union sigval sigval_t; ++ ++union __sifields { ++ struct { ++ __kernel_pid_t _pid; ++ __kernel_uid32_t _uid; ++ } _kill; ++ struct { ++ __kernel_timer_t _tid; ++ int _overrun; ++ sigval_t _sigval; ++ int _sys_private; ++ } _timer; ++ struct { ++ __kernel_pid_t _pid; ++ __kernel_uid32_t _uid; ++ sigval_t _sigval; ++ } _rt; ++ struct { ++ __kernel_pid_t _pid; ++ __kernel_uid32_t _uid; ++ int _status; ++ __kernel_clock_t _utime; ++ __kernel_clock_t _stime; ++ } _sigchld; ++ struct { ++ void *_addr; ++ union { ++ short int _addr_lsb; ++ struct { ++ char _dummy_bnd[8]; ++ void *_lower; ++ void *_upper; ++ } _addr_bnd; ++ struct { ++ char _dummy_pkey[8]; ++ __u32 _pkey; ++ } _addr_pkey; ++ }; ++ } _sigfault; ++ struct { ++ long int _band; ++ int _fd; ++ } _sigpoll; ++ struct { ++ void *_call_addr; ++ int _syscall; ++ unsigned int _arch; ++ } _sigsys; ++}; ++ ++struct kernel_siginfo { ++ struct { ++ int si_signo; ++ int si_errno; ++ int si_code; ++ union __sifields _sifields; ++ }; ++}; ++ ++struct user_struct { ++ refcount_t __count; ++ atomic_t processes; ++ atomic_t sigpending; ++ atomic_t fanotify_listeners; ++ atomic_long_t epoll_watches; ++ long unsigned int mq_bytes; ++ long unsigned int locked_shm; ++ long unsigned int unix_inflight; ++ atomic_long_t pipe_bufs; ++ struct hlist_node uidhash_node; ++ kuid_t uid; ++ atomic_long_t locked_vm; ++ struct ratelimit_state ratelimit; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct sigaction { ++ __sighandler_t sa_handler; ++ long unsigned int sa_flags; ++ __sigrestore_t sa_restorer; ++ sigset_t sa_mask; ++}; ++ ++struct k_sigaction { ++ struct sigaction sa; ++}; ++ ++struct cpu_itimer { ++ u64 expires; ++ u64 incr; ++}; ++ ++struct task_cputime_atomic { ++ atomic64_t utime; ++ atomic64_t stime; ++ atomic64_t sum_exec_runtime; ++}; ++ ++struct thread_group_cputimer { ++ struct task_cputime_atomic cputime_atomic; ++}; ++ ++struct pacct_struct { ++ int ac_flag; ++ long int ac_exitcode; ++ long unsigned int ac_mem; ++ u64 ac_utime; ++ u64 ac_stime; ++ long unsigned int ac_minflt; ++ long unsigned int ac_majflt; ++}; ++ ++struct tty_struct; ++ ++struct autogroup; ++ ++struct taskstats; ++ ++struct tty_audit_buf; ++ ++struct signal_struct { ++ refcount_t sigcnt; ++ atomic_t live; ++ int nr_threads; ++ struct list_head thread_head; ++ wait_queue_head_t wait_chldexit; ++ struct task_struct *curr_target; ++ struct sigpending shared_pending; ++ struct hlist_head multiprocess; ++ int group_exit_code; ++ int notify_count; ++ struct task_struct *group_exit_task; ++ int group_stop_count; ++ unsigned int flags; ++ unsigned int is_child_subreaper: 1; ++ unsigned int has_child_subreaper: 1; ++ int posix_timer_id; ++ struct list_head posix_timers; ++ struct hrtimer real_timer; ++ ktime_t it_real_incr; ++ struct cpu_itimer it[2]; ++ struct thread_group_cputimer cputimer; ++ struct posix_cputimers posix_cputimers; ++ struct pid *pids[4]; ++ atomic_t tick_dep_mask; ++ struct pid *tty_old_pgrp; ++ int leader; ++ struct tty_struct *tty; ++ struct autogroup *autogroup; ++ seqlock_t stats_lock; ++ u64 utime; ++ u64 stime; ++ u64 cutime; ++ u64 cstime; ++ u64 gtime; ++ u64 cgtime; ++ struct prev_cputime prev_cputime; ++ long unsigned int nvcsw; ++ long unsigned int nivcsw; ++ long unsigned int cnvcsw; ++ long unsigned int cnivcsw; ++ long unsigned int min_flt; ++ long unsigned int maj_flt; ++ long unsigned int cmin_flt; ++ long unsigned int cmaj_flt; ++ long unsigned int inblock; ++ long unsigned int oublock; ++ long unsigned int cinblock; ++ long unsigned int coublock; ++ long unsigned int maxrss; ++ long unsigned int cmaxrss; ++ struct task_io_accounting ioac; ++ long long unsigned int sum_sched_runtime; ++ struct rlimit rlim[16]; ++ struct pacct_struct pacct; ++ struct taskstats *stats; ++ unsigned int audit_tty; ++ struct tty_audit_buf *tty_audit_buf; ++ bool oom_flag_origin; ++ short int oom_score_adj; ++ short int oom_score_adj_min; ++ struct mm_struct *oom_mm; ++ struct mutex cred_guard_mutex; ++ struct rw_semaphore exec_update_lock; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++enum rseq_cs_flags_bit { ++ RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT = 0, ++ RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT = 1, ++ RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT = 2, ++}; ++ ++struct rseq { ++ __u32 cpu_id_start; ++ __u32 cpu_id; ++ union { ++ __u64 ptr64; ++ __u64 ptr; ++ } rseq_cs; ++ __u32 flags; ++ long: 32; ++ long: 64; ++}; ++ ++enum perf_event_task_context { ++ perf_invalid_context = 4294967295, ++ perf_hw_context = 0, ++ perf_sw_context = 1, ++ perf_nr_task_contexts = 2, ++}; ++ ++struct task_struct_resvd {}; ++ ++struct rq; ++ ++struct rq_flags; ++ ++struct sched_class { ++ void (*enqueue_task)(struct rq *, struct task_struct *, int); ++ void (*dequeue_task)(struct rq *, struct task_struct *, int); ++ void (*yield_task)(struct rq *); ++ bool (*yield_to_task)(struct rq *, struct task_struct *); ++ void (*check_preempt_curr)(struct rq *, struct task_struct *, int); ++ struct task_struct * (*pick_next_task)(struct rq *); ++ void (*put_prev_task)(struct rq *, struct task_struct *); ++ void (*set_next_task)(struct rq *, struct task_struct *, bool); ++ int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); ++ int (*select_task_rq)(struct task_struct *, int, int, int); ++ void (*migrate_task_rq)(struct task_struct *, int); ++ void (*task_woken)(struct rq *, struct task_struct *); ++ void (*set_cpus_allowed)(struct task_struct *, const struct cpumask *); ++ void (*rq_online)(struct rq *); ++ void (*rq_offline)(struct rq *); ++ void (*task_tick)(struct rq *, struct task_struct *, int); ++ void (*task_fork)(struct task_struct *); ++ void (*task_dead)(struct task_struct *); ++ void (*switched_from)(struct rq *, struct task_struct *); ++ void (*switched_to)(struct rq *, struct task_struct *); ++ void (*prio_changed)(struct rq *, struct task_struct *, int); ++ unsigned int (*get_rr_interval)(struct rq *, struct task_struct *); ++ void (*update_curr)(struct rq *); ++ void (*task_change_group)(struct task_struct *, int); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ long: 64; ++ long: 64; ++}; ++ ++struct kernel_cap_struct { ++ __u32 cap[2]; ++}; ++ ++typedef struct kernel_cap_struct kernel_cap_t; ++ ++struct group_info; ++ ++struct cred { ++ atomic_t usage; ++ kuid_t uid; ++ kgid_t gid; ++ kuid_t suid; ++ kgid_t sgid; ++ kuid_t euid; ++ kgid_t egid; ++ kuid_t fsuid; ++ kgid_t fsgid; ++ unsigned int securebits; ++ kernel_cap_t cap_inheritable; ++ kernel_cap_t cap_permitted; ++ kernel_cap_t cap_effective; ++ kernel_cap_t cap_bset; ++ kernel_cap_t cap_ambient; ++ unsigned char jit_keyring; ++ struct key *session_keyring; ++ struct key *process_keyring; ++ struct key *thread_keyring; ++ struct key *request_key_auth; ++ void *security; ++ struct user_struct *user; ++ struct user_namespace *user_ns; ++ struct group_info *group_info; ++ union { ++ int non_rcu; ++ struct callback_head rcu; ++ }; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ u64 kabi_reserved9; ++ u64 kabi_reserved10; ++}; ++ ++typedef int32_t key_serial_t; ++ ++typedef uint32_t key_perm_t; ++ ++struct key_type; ++ ++struct key_tag; ++ ++struct keyring_index_key { ++ long unsigned int hash; ++ union { ++ struct { ++ u16 desc_len; ++ char desc[6]; ++ }; ++ long unsigned int x; ++ }; ++ struct key_type *type; ++ struct key_tag *domain_tag; ++ const char *description; ++}; ++ ++union key_payload { ++ void *rcu_data0; ++ void *data[4]; ++}; ++ ++struct assoc_array_ptr; ++ ++struct assoc_array { ++ struct assoc_array_ptr *root; ++ long unsigned int nr_leaves_on_tree; ++}; ++ ++struct key_user; ++ ++struct key_restriction; ++ ++struct key { ++ refcount_t usage; ++ key_serial_t serial; ++ union { ++ struct list_head graveyard_link; ++ struct rb_node serial_node; ++ }; ++ struct rw_semaphore sem; ++ struct key_user *user; ++ void *security; ++ union { ++ time64_t expiry; ++ time64_t revoked_at; ++ }; ++ time64_t last_used_at; ++ kuid_t uid; ++ kgid_t gid; ++ key_perm_t perm; ++ short unsigned int quotalen; ++ short unsigned int datalen; ++ short int state; ++ long unsigned int flags; ++ union { ++ struct keyring_index_key index_key; ++ struct { ++ long unsigned int hash; ++ long unsigned int len_desc; ++ struct key_type *type; ++ struct key_tag *domain_tag; ++ char *description; ++ }; ++ }; ++ union { ++ union key_payload payload; ++ struct { ++ struct list_head name_link; ++ struct assoc_array keys; ++ }; ++ }; ++ struct key_restriction *restrict_link; ++ u64 kabi_reserved1; ++}; ++ ++struct sighand_struct { ++ spinlock_t siglock; ++ refcount_t count; ++ wait_queue_head_t signalfd_wqh; ++ struct k_sigaction action[64]; ++}; ++ ++struct io_cq; ++ ++struct io_context { ++ atomic_long_t refcount; ++ atomic_t active_ref; ++ atomic_t nr_tasks; ++ spinlock_t lock; ++ short unsigned int ioprio; ++ struct xarray icq_tree; ++ struct io_cq *icq_hint; ++ struct hlist_head icq_list; ++ struct work_struct release_work; ++}; ++ ++enum rseq_event_mask_bits { ++ RSEQ_EVENT_PREEMPT_BIT = 0, ++ RSEQ_EVENT_SIGNAL_BIT = 1, ++ RSEQ_EVENT_MIGRATE_BIT = 2, ++}; ++ ++enum fixed_addresses { ++ VSYSCALL_PAGE = 511, ++ FIX_DBGP_BASE = 512, ++ FIX_EARLYCON_MEM_BASE = 513, ++ FIX_OHCI1394_BASE = 514, ++ FIX_APIC_BASE = 515, ++ FIX_IO_APIC_BASE_0 = 516, ++ FIX_IO_APIC_BASE_END = 643, ++ FIX_APEI_GHES_IRQ = 644, ++ FIX_APEI_GHES_NMI = 645, ++ __end_of_permanent_fixed_addresses = 646, ++ FIX_BTMAP_END = 1024, ++ FIX_BTMAP_BEGIN = 1535, ++ FIX_TBOOT_BASE = 1536, ++ __end_of_fixed_addresses = 1537, +}; + +struct hlist_bl_node; @@ -4312,21 +3029,11 @@ index 0000000..bcb9d76 + const unsigned char *name; +}; + -+struct dentry_stat_t { -+ long int nr_dentry; -+ long int nr_unused; -+ long int age_limit; -+ long int want_pages; -+ long int dummy[2]; -+}; -+ +struct dentry_operations; + -+struct super_block; -+ +struct dentry { + unsigned int d_flags; -+ seqcount_t d_seq; ++ seqcount_spinlock_t d_seq; + struct hlist_bl_node d_hash; + struct dentry *d_parent; + struct qstr d_name; @@ -4349,14 +3056,10 @@ index 0000000..bcb9d76 + struct callback_head d_rcu; + } d_u; + atomic_t d_neg_dnum; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + -+typedef struct { -+ gid_t val; -+} kgid_t; -+ +struct posix_acl; + +struct inode_operations; @@ -4416,11 +3119,15 @@ index 0000000..bcb9d76 + struct callback_head i_rcu; + }; + atomic64_t i_version; ++ atomic64_t i_sequence; + atomic_t i_count; + atomic_t i_dio_count; + atomic_t i_writecount; + atomic_t i_readcount; -+ const struct file_operations *i_fop; ++ union { ++ const struct file_operations *i_fop; ++ void (*free_inode)(struct inode *); ++ }; + struct file_lock_context *i_flctx; + struct address_space i_data; + struct list_head i_devices; @@ -4435,8 +3142,8 @@ index 0000000..bcb9d76 + __u32 i_fsnotify_mask; + struct fsnotify_mark_connector *i_fsnotify_marks; + void *i_private; -+ atomic64_t i_sequence; -+ long unsigned int kabi_reserved2; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct dentry_operations { @@ -4453,10 +3160,10 @@ index 0000000..bcb9d76 + struct vfsmount * (*d_automount)(struct path *); + int (*d_manage)(const struct path *, bool); + struct dentry * (*d_real)(struct dentry *, const struct inode *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; + long: 64; + long: 64; + long: 64; @@ -4494,19 +3201,11 @@ index 0000000..bcb9d76 + const struct quota_format_ops *ops[3]; +}; + -+enum rcu_sync_type { -+ RCU_SYNC = 0, -+ RCU_SCHED_SYNC = 1, -+ RCU_BH_SYNC = 2, -+}; -+ +struct rcu_sync { + int gp_state; + int gp_count; + wait_queue_head_t gp_wait; -+ int cb_state; + struct callback_head cb_head; -+ enum rcu_sync_type gp_type; +}; + +struct rcuwait { @@ -4516,13 +3215,14 @@ index 0000000..bcb9d76 +struct percpu_rw_semaphore { + struct rcu_sync rss; + unsigned int *read_count; -+ struct rw_semaphore rw_sem; + struct rcuwait writer; -+ int readers_block; ++ wait_queue_head_t waiters; ++ atomic_t block; +}; + +struct sb_writers { -+ int frozen; ++ short unsigned int frozen; ++ short unsigned int frozen_ro; + wait_queue_head_t wait_unfrozen; + struct percpu_rw_semaphore rw_sem[3]; +}; @@ -4540,8 +3240,6 @@ index 0000000..bcb9d76 + bool memcg_aware; +}; + -+struct file_system_type; -+ +struct super_operations; + +struct dquot_operations; @@ -4583,28 +3281,29 @@ index 0000000..bcb9d76 + unsigned int s_quota_types; + struct quota_info s_dquot; + struct sb_writers s_writers; ++ void *s_fs_info; ++ u32 s_time_gran; ++ time64_t s_time_min; ++ time64_t s_time_max; ++ __u32 s_fsnotify_mask; ++ struct fsnotify_mark_connector *s_fsnotify_marks; + char s_id[32]; + uuid_t s_uuid; -+ void *s_fs_info; + unsigned int s_max_links; + fmode_t s_mode; -+ u32 s_time_gran; + struct mutex s_vfs_rename_mutex; -+ char *s_subtype; ++ const char *s_subtype; + const struct dentry_operations *s_d_op; + int cleancache_poolid; + struct shrinker s_shrink; + atomic_long_t s_remove_count; + atomic_long_t s_fsnotify_inode_refs; + int s_readonly_remount; ++ errseq_t s_wb_err; + struct workqueue_struct *s_dio_done_wq; + struct hlist_head s_pins; + struct user_namespace *s_user_ns; + struct list_lru s_dentry_lru; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; + struct list_lru s_inode_lru; + struct callback_head rcu; + struct work_struct destroy_work; @@ -4612,10 +3311,6 @@ index 0000000..bcb9d76 + int s_stack_depth; + long: 32; + long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; + spinlock_t s_inode_list_lock; + struct list_head s_inodes; + spinlock_t s_inode_wblist_lock; @@ -4624,6 +3319,13 @@ index 0000000..bcb9d76 + long: 64; +}; + ++struct vfsmount { ++ struct dentry *mnt_root; ++ struct super_block *mnt_sb; ++ int mnt_flags; ++ u64 kabi_reserved1; ++}; ++ +struct kstat { + u32 result_mask; + umode_t mode; @@ -4642,6 +3344,7 @@ index 0000000..bcb9d76 + struct timespec64 ctime; + struct timespec64 btime; + u64 blocks; ++ u64 mnt_id; +}; + +struct list_lru_one { @@ -4663,51 +3366,6 @@ index 0000000..bcb9d76 + long: 64; +}; + -+struct radix_tree_node { -+ unsigned char shift; -+ unsigned char offset; -+ unsigned char count; -+ unsigned char exceptional; -+ struct radix_tree_node *parent; -+ struct radix_tree_root *root; -+ union { -+ struct list_head private_list; -+ struct callback_head callback_head; -+ }; -+ void *slots[64]; -+ long unsigned int tags[3]; -+}; -+ -+struct pid_namespace; -+ -+struct upid { -+ int nr; -+ struct pid_namespace *ns; -+}; -+ -+struct pid { -+ atomic_t count; -+ unsigned int level; -+ struct hlist_head tasks[4]; -+ struct callback_head rcu; -+ struct upid numbers[1]; -+}; -+ -+struct kernel_cap_struct { -+ __u32 cap[2]; -+}; -+ -+typedef struct kernel_cap_struct kernel_cap_t; -+ -+struct fiemap_extent { -+ __u64 fe_logical; -+ __u64 fe_physical; -+ __u64 fe_length; -+ __u64 fe_reserved64[2]; -+ __u32 fe_flags; -+ __u32 fe_reserved[3]; -+}; -+ +enum migrate_mode { + MIGRATE_ASYNC = 0, + MIGRATE_SYNC_LIGHT = 1, @@ -4715,214 +3373,65 @@ index 0000000..bcb9d76 + MIGRATE_SYNC_NO_COPY = 3, +}; + ++struct key_tag { ++ struct callback_head rcu; ++ refcount_t usage; ++ bool removed; ++}; ++ ++typedef int (*request_key_actor_t)(struct key *, void *); ++ ++struct key_preparsed_payload; ++ ++struct key_match_data; ++ ++struct kernel_pkey_params; ++ ++struct kernel_pkey_query; ++ ++struct key_type { ++ const char *name; ++ size_t def_datalen; ++ unsigned int flags; ++ int (*vet_description)(const char *); ++ int (*preparse)(struct key_preparsed_payload *); ++ void (*free_preparse)(struct key_preparsed_payload *); ++ int (*instantiate)(struct key *, struct key_preparsed_payload *); ++ int (*update)(struct key *, struct key_preparsed_payload *); ++ int (*match_preparse)(struct key_match_data *); ++ void (*match_free)(struct key_match_data *); ++ void (*revoke)(struct key *); ++ void (*destroy)(struct key *); ++ void (*describe)(const struct key *, struct seq_file *); ++ long int (*read)(const struct key *, char *, size_t); ++ request_key_actor_t request_key; ++ struct key_restriction * (*lookup_restriction)(const char *); ++ int (*asym_query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); ++ int (*asym_eds_op)(struct kernel_pkey_params *, const void *, void *); ++ int (*asym_verify_signature)(struct kernel_pkey_params *, const void *, const void *); ++ struct list_head link; ++ struct lock_class_key lock_class; ++}; ++ ++typedef int (*key_restrict_link_func_t)(struct key *, const struct key_type *, const union key_payload *, struct key *); ++ ++struct key_restriction { ++ key_restrict_link_func_t check; ++ struct key *key; ++ struct key_type *keytype; ++}; ++ ++struct group_info { ++ atomic_t usage; ++ int ngroups; ++ kgid_t gid[0]; ++}; ++ +struct delayed_call { + void (*fn)(void *); + void *arg; +}; + -+typedef struct { -+ __u8 b[16]; -+} guid_t; -+ -+struct timerqueue_head { -+ struct rb_root_cached rb_root; -+}; -+ -+struct hrtimer_cpu_base; -+ -+struct hrtimer_clock_base { -+ struct hrtimer_cpu_base *cpu_base; -+ unsigned int index; -+ clockid_t clockid; -+ seqcount_t seq; -+ struct hrtimer *running; -+ struct timerqueue_head active; -+ ktime_t (*get_time)(); -+ ktime_t offset; -+}; -+ -+struct hrtimer_cpu_base { -+ raw_spinlock_t lock; -+ unsigned int cpu; -+ unsigned int active_bases; -+ unsigned int clock_was_set_seq; -+ unsigned int hres_active: 1; -+ unsigned int in_hrtirq: 1; -+ unsigned int hang_detected: 1; -+ unsigned int softirq_activated: 1; -+ unsigned int nr_events; -+ short unsigned int nr_retries; -+ short unsigned int nr_hangs; -+ unsigned int max_hang_time; -+ ktime_t expires_next; -+ struct hrtimer *next_timer; -+ ktime_t softirq_expires_next; -+ struct hrtimer *softirq_next_timer; -+ struct hrtimer_clock_base clock_base[8]; -+}; -+ -+struct tick_device; -+ -+union sigval { -+ int sival_int; -+ void *sival_ptr; -+}; -+ -+typedef union sigval sigval_t; -+ -+struct siginfo { -+ int si_signo; -+ int si_errno; -+ int si_code; -+ union { -+ int _pad[28]; -+ struct { -+ __kernel_pid_t _pid; -+ __kernel_uid32_t _uid; -+ } _kill; -+ struct { -+ __kernel_timer_t _tid; -+ int _overrun; -+ sigval_t _sigval; -+ int _sys_private; -+ } _timer; -+ struct { -+ __kernel_pid_t _pid; -+ __kernel_uid32_t _uid; -+ sigval_t _sigval; -+ } _rt; -+ struct { -+ __kernel_pid_t _pid; -+ __kernel_uid32_t _uid; -+ int _status; -+ __kernel_clock_t _utime; -+ __kernel_clock_t _stime; -+ } _sigchld; -+ struct { -+ void *_addr; -+ union { -+ short int _addr_lsb; -+ struct { -+ char _dummy_bnd[8]; -+ void *_lower; -+ void *_upper; -+ } _addr_bnd; -+ struct { -+ char _dummy_pkey[8]; -+ __u32 _pkey; -+ } _addr_pkey; -+ }; -+ } _sigfault; -+ struct { -+ long int _band; -+ int _fd; -+ } _sigpoll; -+ struct { -+ void *_call_addr; -+ int _syscall; -+ unsigned int _arch; -+ } _sigsys; -+ } _sifields; -+}; -+ -+struct rseq { -+ __u32 cpu_id_start; -+ __u32 cpu_id; -+ union { -+ __u64 ptr64; -+ __u64 ptr; -+ } rseq_cs; -+ __u32 flags; -+ long: 32; -+ long: 64; -+}; -+ -+struct rq; -+ -+struct rq_flags; -+ -+struct sched_class { -+ const struct sched_class *next; -+ void (*enqueue_task)(struct rq *, struct task_struct *, int); -+ void (*dequeue_task)(struct rq *, struct task_struct *, int); -+ void (*yield_task)(struct rq *); -+ bool (*yield_to_task)(struct rq *, struct task_struct *, bool); -+ void (*check_preempt_curr)(struct rq *, struct task_struct *, int); -+ struct task_struct * (*pick_next_task)(struct rq *, struct task_struct *, struct rq_flags *); -+ void (*put_prev_task)(struct rq *, struct task_struct *); -+ int (*select_task_rq)(struct task_struct *, int, int, int); -+ void (*migrate_task_rq)(struct task_struct *, int); -+ void (*task_woken)(struct rq *, struct task_struct *); -+ void (*set_cpus_allowed)(struct task_struct *, const struct cpumask *); -+ void (*rq_online)(struct rq *); -+ void (*rq_offline)(struct rq *); -+ void (*set_curr_task)(struct rq *); -+ void (*task_tick)(struct rq *, struct task_struct *, int); -+ void (*task_fork)(struct task_struct *); -+ void (*task_dead)(struct task_struct *); -+ void (*switched_from)(struct rq *, struct task_struct *); -+ void (*switched_to)(struct rq *, struct task_struct *); -+ void (*prio_changed)(struct rq *, struct task_struct *, int); -+ unsigned int (*get_rr_interval)(struct rq *, struct task_struct *); -+ void (*update_curr)(struct rq *); -+ void (*task_change_group)(struct task_struct *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct key; -+ -+struct user_struct; -+ -+struct group_info; -+ -+struct cred { -+ atomic_t usage; -+ kuid_t uid; -+ kgid_t gid; -+ kuid_t suid; -+ kgid_t sgid; -+ kuid_t euid; -+ kgid_t egid; -+ kuid_t fsuid; -+ kgid_t fsgid; -+ unsigned int securebits; -+ kernel_cap_t cap_inheritable; -+ kernel_cap_t cap_permitted; -+ kernel_cap_t cap_effective; -+ kernel_cap_t cap_bset; -+ kernel_cap_t cap_ambient; -+ unsigned char jit_keyring; -+ struct key *session_keyring; -+ struct key *process_keyring; -+ struct key *thread_keyring; -+ struct key *request_key_auth; -+ void *security; -+ struct user_struct *user; -+ struct user_namespace *user_ns; -+ struct group_info *group_info; -+ union { -+ int non_rcu; -+ struct callback_head rcu; -+ }; -+}; -+ -+struct io_cq; -+ -+struct io_context { -+ atomic_long_t refcount; -+ atomic_t active_ref; -+ atomic_t nr_tasks; -+ spinlock_t lock; -+ short unsigned int ioprio; -+ int nr_batch_requests; -+ long unsigned int last_waited; -+ struct radix_tree_root icq_tree; -+ struct io_cq *icq_hint; -+ struct hlist_head icq_list; -+ struct work_struct release_work; -+}; -+ +struct io_cq { + struct request_queue *q; + struct io_context *ioc; @@ -4937,17 +3446,7 @@ index 0000000..bcb9d76 + unsigned int flags; +}; + -+struct files_stat_struct { -+ long unsigned int nr_files; -+ long unsigned int nr_free_files; -+ long unsigned int max_files; -+}; -+ -+struct inodes_stat_t { -+ long int nr_inodes; -+ long int nr_unused; -+ long int dummy[5]; -+}; ++struct wait_page_queue; + +struct kiocb { + struct file *ki_filp; @@ -4957,6 +3456,10 @@ index 0000000..bcb9d76 + int ki_flags; + u16 ki_hint; + u16 ki_ioprio; ++ union { ++ unsigned int ki_cookie; ++ struct wait_page_queue *ki_waitq; ++ }; +}; + +struct iattr { @@ -4971,13 +3474,6 @@ index 0000000..bcb9d76 + struct file *ia_file; +}; + -+struct percpu_counter { -+ raw_spinlock_t lock; -+ s64 count; -+ struct list_head list; -+ s32 *counters; -+}; -+ +typedef __kernel_uid32_t projid_t; + +typedef struct { @@ -5026,6 +3522,12 @@ index 0000000..bcb9d76 + struct mem_dqblk dq_dqb; +}; + ++enum { ++ DQF_ROOT_SQUASH_B = 0, ++ DQF_SYS_FILE_B = 16, ++ DQF_PRIVATE = 17, ++}; ++ +struct quota_format_type { + int qf_fmt_id; + const struct quota_format_ops *qf_ops; @@ -5033,9 +3535,16 @@ index 0000000..bcb9d76 + struct quota_format_type *qf_next; +}; + -+struct dqstats { -+ long unsigned int stat[8]; -+ struct percpu_counter counter[8]; ++enum { ++ DQST_LOOKUPS = 0, ++ DQST_DROPS = 1, ++ DQST_READS = 2, ++ DQST_WRITES = 3, ++ DQST_CACHE_HITS = 4, ++ DQST_ALLOC_DQUOTS = 5, ++ DQST_FREE_DQUOTS = 6, ++ DQST_SYNCS = 7, ++ _DQST_DQSTAT_LAST = 8, +}; + +struct quota_format_ops { @@ -5047,8 +3556,8 @@ index 0000000..bcb9d76 + int (*commit_dqblk)(struct dquot *); + int (*release_dqblk)(struct dquot *); + int (*get_next_id)(struct super_block *, struct kqid *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct dquot_operations { @@ -5063,8 +3572,8 @@ index 0000000..bcb9d76 + int (*get_projid)(struct inode *, kprojid_t *); + int (*get_inode_usage)(struct inode *, qsize_t *); + int (*get_next_id)(struct super_block *, struct kqid *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct qc_dqblk { @@ -5127,14 +3636,12 @@ index 0000000..bcb9d76 + int (*set_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); + int (*get_state)(struct super_block *, struct qc_state *); + int (*rm_xquota)(struct super_block *, unsigned int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; +}; + +struct writeback_control; + ++struct readahead_control; ++ +struct swap_info_struct; + +struct address_space_operations { @@ -5143,6 +3650,7 @@ index 0000000..bcb9d76 + int (*writepages)(struct address_space *, struct writeback_control *); + int (*set_page_dirty)(struct page *); + int (*readpages)(struct file *, struct address_space *, struct list_head *, unsigned int); ++ void (*readahead)(struct readahead_control *); + int (*write_begin)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page **, void **); + int (*write_end)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page *, void *); + sector_t (*bmap)(struct address_space *, sector_t); @@ -5159,45 +3667,10 @@ index 0000000..bcb9d76 + int (*error_remove_page)(struct address_space *, struct page *); + int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); + void (*swap_deactivate)(struct file *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct hd_struct; -+ -+struct gendisk; -+ -+struct block_device { -+ dev_t bd_dev; -+ int bd_openers; -+ int bd_write_openers; -+ struct inode *bd_inode; -+ struct super_block *bd_super; -+ struct mutex bd_mutex; -+ void *bd_claiming; -+ void *bd_holder; -+ int bd_holders; -+ bool bd_write_holder; -+ struct list_head bd_holder_disks; -+ struct block_device *bd_contains; -+ unsigned int bd_block_size; -+ u8 bd_partno; -+ struct hd_struct *bd_part; -+ unsigned int bd_part_count; -+ int bd_invalidated; -+ struct gendisk *bd_disk; -+ struct request_queue *bd_queue; -+ struct backing_dev_info *bd_bdi; -+ struct list_head bd_list; -+ long unsigned int bd_private; -+ int bd_fsfreeze_count; -+ struct mutex bd_fsfreeze_mutex; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct fiemap_extent_info; @@ -5224,10 +3697,18 @@ index 0000000..bcb9d76 + int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); + int (*tmpfile)(struct inode *, struct dentry *, umode_t); + int (*set_acl)(struct inode *, struct posix_acl *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ u64 kabi_reserved9; ++ u64 kabi_reserved10; ++ u64 kabi_reserved11; ++ u64 kabi_reserved12; + long: 64; + long: 64; + long: 64; @@ -5247,8 +3728,8 @@ index 0000000..bcb9d76 +struct file_lock_operations { + void (*fl_copy_lock)(struct file_lock *, struct file_lock *); + void (*fl_release_private)(struct file_lock *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct nlm_lockowner; @@ -5270,10 +3751,11 @@ index 0000000..bcb9d76 +struct lock_manager_operations; + +struct file_lock { -+ struct file_lock *fl_next; ++ struct file_lock *fl_blocker; + struct list_head fl_list; + struct hlist_node fl_link; -+ struct list_head fl_block; ++ struct list_head fl_blocked_requests; ++ struct list_head fl_blocked_member; + fl_owner_t fl_owner; + unsigned int fl_flags; + unsigned char fl_type; @@ -5294,13 +3776,12 @@ index 0000000..bcb9d76 + struct { + struct list_head link; + int state; ++ unsigned int debug_id; + } afs; + } fl_u; +}; + +struct lock_manager_operations { -+ int (*lm_compare_owner)(struct file_lock *, struct file_lock *); -+ long unsigned int (*lm_owner_key)(struct file_lock *); + fl_owner_t (*lm_get_owner)(fl_owner_t); + void (*lm_put_owner)(fl_owner_t); + void (*lm_notify)(struct file_lock *); @@ -5308,8 +3789,9 @@ index 0000000..bcb9d76 + bool (*lm_break)(struct file_lock *); + int (*lm_change)(struct file_lock *, int, struct list_head *); + void (*lm_setup)(struct file_lock *, void **); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; ++ bool (*lm_breaker_owns_lease)(struct file_lock *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct fasync_struct { @@ -5321,25 +3803,12 @@ index 0000000..bcb9d76 + struct callback_head fa_rcu; +}; + -+struct file_system_type { -+ const char *name; -+ int fs_flags; -+ struct dentry * (*mount)(struct file_system_type *, int, const char *, void *); -+ void (*kill_sb)(struct super_block *); -+ struct module *owner; -+ struct file_system_type *next; -+ struct hlist_head fs_supers; -+ struct lock_class_key s_lock_key; -+ struct lock_class_key s_umount_key; -+ struct lock_class_key s_vfs_rename_key; -+ struct lock_class_key s_writers_key[3]; -+ struct lock_class_key i_lock_key; -+ struct lock_class_key i_mutex_key; -+ struct lock_class_key i_mutex_dir_key; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++enum { ++ SB_UNFROZEN = 0, ++ SB_FREEZE_WRITE = 1, ++ SB_FREEZE_PAGEFAULT = 2, ++ SB_FREEZE_FS = 3, ++ SB_FREEZE_COMPLETE = 4, +}; + +struct kstatfs; @@ -5347,6 +3816,7 @@ index 0000000..bcb9d76 +struct super_operations { + struct inode * (*alloc_inode)(struct super_block *); + void (*destroy_inode)(struct inode *); ++ void (*free_inode)(struct inode *); + void (*dirty_inode)(struct inode *, int); + int (*write_inode)(struct inode *, struct writeback_control *); + int (*drop_inode)(struct inode *); @@ -5367,37 +3837,30 @@ index 0000000..bcb9d76 + ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); + ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); + struct dquot ** (*get_dquots)(struct inode *); -+ int (*bdev_try_to_free_page)(struct super_block *, struct page *, gfp_t); + long int (*nr_cached_objects)(struct super_block *, struct shrink_control *); + long int (*free_cached_objects)(struct super_block *, struct shrink_control *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct iomap; + -+struct inode___2; -+ -+struct dentry___2; -+ -+struct super_block___2; -+ +struct fid; + -+struct iattr___2; -+ +struct export_operations { -+ int (*encode_fh)(struct inode___2 *, __u32 *, int *, struct inode___2 *); -+ struct dentry___2 * (*fh_to_dentry)(struct super_block___2 *, struct fid *, int, int); -+ struct dentry___2 * (*fh_to_parent)(struct super_block___2 *, struct fid *, int, int); -+ int (*get_name)(struct dentry___2 *, char *, struct dentry___2 *); -+ struct dentry___2 * (*get_parent)(struct dentry___2 *); -+ int (*commit_metadata)(struct inode___2 *); -+ int (*get_uuid)(struct super_block___2 *, u8 *, u32 *, u64 *); -+ int (*map_blocks)(struct inode___2 *, loff_t, u64, struct iomap *, bool, u32 *); -+ int (*commit_blocks)(struct inode___2 *, struct iomap *, int, struct iattr___2 *); ++ int (*encode_fh)(struct inode *, __u32 *, int *, struct inode *); ++ struct dentry * (*fh_to_dentry)(struct super_block *, struct fid *, int, int); ++ struct dentry * (*fh_to_parent)(struct super_block *, struct fid *, int, int); ++ int (*get_name)(struct dentry *, char *, struct dentry *); ++ struct dentry * (*get_parent)(struct dentry *); ++ int (*commit_metadata)(struct inode *); ++ int (*get_uuid)(struct super_block *, u8 *, u32 *, u64 *); ++ int (*map_blocks)(struct inode *, loff_t, u64, struct iomap *, bool, u32 *); ++ int (*commit_blocks)(struct inode *, struct iomap *, int, struct iattr *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct xattr_handler { @@ -5407,13 +3870,7 @@ index 0000000..bcb9d76 + bool (*list)(struct dentry *); + int (*get)(const struct xattr_handler *, struct dentry *, struct inode *, const char *, void *, size_t); + int (*set)(const struct xattr_handler *, struct dentry *, struct inode *, const char *, const void *, size_t, int); -+}; -+ -+struct fiemap_extent_info { -+ unsigned int fi_flags; -+ unsigned int fi_extents_mapped; -+ unsigned int fi_extents_max; -+ struct fiemap_extent *fi_extents_start; ++ u64 kabi_reserved1; +}; + +typedef int (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, unsigned int); @@ -5423,19 +3880,30 @@ index 0000000..bcb9d76 + loff_t pos; +}; + -+struct attribute { ++struct p_log; ++ ++struct fs_parameter; ++ ++struct fs_parse_result; ++ ++typedef int fs_param_type(struct p_log *, const struct fs_parameter_spec *, struct fs_parameter *, struct fs_parse_result *); ++ ++struct fs_parameter_spec { + const char *name; -+ umode_t mode; ++ fs_param_type *type; ++ u8 opt; ++ short unsigned int flags; ++ const void *data; +}; + -+struct kobj_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct kobject *, struct kobj_attribute *, char *); -+ ssize_t (*store)(struct kobject *, struct kobj_attribute *, const char *, size_t); ++enum compound_dtor_id { ++ NULL_COMPOUND_DTOR = 0, ++ COMPOUND_PAGE_DTOR = 1, ++ HUGETLB_PAGE_DTOR = 2, ++ TRANSHUGE_PAGE_DTOR = 3, ++ NR_COMPOUND_DTORS = 4, +}; + -+typedef void compound_page_dtor(struct page *); -+ +enum vm_event_item { + PGPGIN = 0, + PGPGOUT = 1, @@ -5461,101 +3929,11893 @@ index 0000000..bcb9d76 + PGMAJFAULT = 21, + PGLAZYFREED = 22, + PGREFILL = 23, -+ PGSTEAL_KSWAPD = 24, -+ PGSTEAL_DIRECT = 25, -+ PGSCAN_KSWAPD = 26, -+ PGSCAN_DIRECT = 27, -+ PGSCAN_DIRECT_THROTTLE = 28, -+ PGSCAN_ZONE_RECLAIM_FAILED = 29, -+ PGINODESTEAL = 30, -+ SLABS_SCANNED = 31, -+ KSWAPD_INODESTEAL = 32, -+ KSWAPD_LOW_WMARK_HIT_QUICKLY = 33, -+ KSWAPD_HIGH_WMARK_HIT_QUICKLY = 34, -+ PAGEOUTRUN = 35, -+ PGROTATED = 36, -+ DROP_PAGECACHE = 37, -+ DROP_SLAB = 38, -+ OOM_KILL = 39, -+ NUMA_PTE_UPDATES = 40, -+ NUMA_HUGE_PTE_UPDATES = 41, -+ NUMA_HINT_FAULTS = 42, -+ NUMA_HINT_FAULTS_LOCAL = 43, -+ NUMA_PAGE_MIGRATE = 44, -+ PGMIGRATE_SUCCESS = 45, -+ PGMIGRATE_FAIL = 46, -+ COMPACTMIGRATE_SCANNED = 47, -+ COMPACTFREE_SCANNED = 48, -+ COMPACTISOLATED = 49, -+ COMPACTSTALL = 50, -+ COMPACTFAIL = 51, -+ COMPACTSUCCESS = 52, -+ KCOMPACTD_WAKE = 53, -+ KCOMPACTD_MIGRATE_SCANNED = 54, -+ KCOMPACTD_FREE_SCANNED = 55, -+ HTLB_BUDDY_PGALLOC = 56, -+ HTLB_BUDDY_PGALLOC_FAIL = 57, -+ UNEVICTABLE_PGCULLED = 58, -+ UNEVICTABLE_PGSCANNED = 59, -+ UNEVICTABLE_PGRESCUED = 60, -+ UNEVICTABLE_PGMLOCKED = 61, -+ UNEVICTABLE_PGMUNLOCKED = 62, -+ UNEVICTABLE_PGCLEARED = 63, -+ UNEVICTABLE_PGSTRANDED = 64, -+ THP_FAULT_ALLOC = 65, -+ THP_FAULT_FALLBACK = 66, -+ THP_COLLAPSE_ALLOC = 67, -+ THP_COLLAPSE_ALLOC_FAILED = 68, -+ THP_FILE_ALLOC = 69, -+ THP_FILE_MAPPED = 70, -+ THP_SPLIT_PAGE = 71, -+ THP_SPLIT_PAGE_FAILED = 72, -+ THP_DEFERRED_SPLIT_PAGE = 73, -+ THP_SPLIT_PMD = 74, -+ THP_SPLIT_PUD = 75, -+ THP_ZERO_PAGE_ALLOC = 76, -+ THP_ZERO_PAGE_ALLOC_FAILED = 77, -+ THP_SWPOUT = 78, -+ THP_SWPOUT_FALLBACK = 79, -+ BALLOON_INFLATE = 80, -+ BALLOON_DEFLATE = 81, -+ BALLOON_MIGRATE = 82, -+ SWAP_RA = 83, -+ SWAP_RA_HIT = 84, -+ NR_VM_EVENT_ITEMS = 85, ++ PGREUSE = 24, ++ PGSTEAL_KSWAPD = 25, ++ PGSTEAL_DIRECT = 26, ++ PGSCAN_KSWAPD = 27, ++ PGSCAN_DIRECT = 28, ++ PGSCAN_DIRECT_THROTTLE = 29, ++ PGSCAN_ANON = 30, ++ PGSCAN_FILE = 31, ++ PGSTEAL_ANON = 32, ++ PGSTEAL_FILE = 33, ++ PGSCAN_ZONE_RECLAIM_FAILED = 34, ++ PGINODESTEAL = 35, ++ SLABS_SCANNED = 36, ++ KSWAPD_INODESTEAL = 37, ++ KSWAPD_LOW_WMARK_HIT_QUICKLY = 38, ++ KSWAPD_HIGH_WMARK_HIT_QUICKLY = 39, ++ PAGEOUTRUN = 40, ++ PGROTATED = 41, ++ DROP_PAGECACHE = 42, ++ DROP_SLAB = 43, ++ OOM_KILL = 44, ++ NUMA_PTE_UPDATES = 45, ++ NUMA_HUGE_PTE_UPDATES = 46, ++ NUMA_HINT_FAULTS = 47, ++ NUMA_HINT_FAULTS_LOCAL = 48, ++ NUMA_PAGE_MIGRATE = 49, ++ PGMIGRATE_SUCCESS = 50, ++ PGMIGRATE_FAIL = 51, ++ THP_MIGRATION_SUCCESS = 52, ++ THP_MIGRATION_FAIL = 53, ++ THP_MIGRATION_SPLIT = 54, ++ COMPACTMIGRATE_SCANNED = 55, ++ COMPACTFREE_SCANNED = 56, ++ COMPACTISOLATED = 57, ++ COMPACTSTALL = 58, ++ COMPACTFAIL = 59, ++ COMPACTSUCCESS = 60, ++ KCOMPACTD_WAKE = 61, ++ KCOMPACTD_MIGRATE_SCANNED = 62, ++ KCOMPACTD_FREE_SCANNED = 63, ++ HTLB_BUDDY_PGALLOC = 64, ++ HTLB_BUDDY_PGALLOC_FAIL = 65, ++ UNEVICTABLE_PGCULLED = 66, ++ UNEVICTABLE_PGSCANNED = 67, ++ UNEVICTABLE_PGRESCUED = 68, ++ UNEVICTABLE_PGMLOCKED = 69, ++ UNEVICTABLE_PGMUNLOCKED = 70, ++ UNEVICTABLE_PGCLEARED = 71, ++ UNEVICTABLE_PGSTRANDED = 72, ++ THP_FAULT_ALLOC = 73, ++ THP_FAULT_FALLBACK = 74, ++ THP_FAULT_FALLBACK_CHARGE = 75, ++ THP_COLLAPSE_ALLOC = 76, ++ THP_COLLAPSE_ALLOC_FAILED = 77, ++ THP_FILE_ALLOC = 78, ++ THP_FILE_FALLBACK = 79, ++ THP_FILE_FALLBACK_CHARGE = 80, ++ THP_FILE_MAPPED = 81, ++ THP_SPLIT_PAGE = 82, ++ THP_SPLIT_PAGE_FAILED = 83, ++ THP_DEFERRED_SPLIT_PAGE = 84, ++ THP_SPLIT_PMD = 85, ++ THP_SPLIT_PUD = 86, ++ THP_ZERO_PAGE_ALLOC = 87, ++ THP_ZERO_PAGE_ALLOC_FAILED = 88, ++ THP_SWPOUT = 89, ++ THP_SWPOUT_FALLBACK = 90, ++ BALLOON_INFLATE = 91, ++ BALLOON_DEFLATE = 92, ++ BALLOON_MIGRATE = 93, ++ SWAP_RA = 94, ++ SWAP_RA_HIT = 95, ++ NR_VM_EVENT_ITEMS = 96, +}; + -+struct vm_event_state { -+ long unsigned int event[85]; ++struct tlb_context { ++ u64 ctx_id; ++ u64 tlb_gen; +}; + -+enum memblock_flags { -+ MEMBLOCK_NONE = 0, -+ MEMBLOCK_HOTPLUG = 1, -+ MEMBLOCK_MIRROR = 2, -+ MEMBLOCK_NOMAP = 4, ++struct tlb_state { ++ struct mm_struct *loaded_mm; ++ union { ++ struct mm_struct *last_user_mm; ++ long unsigned int last_user_mm_ibpb; ++ }; ++ u16 loaded_mm_asid; ++ u16 next_asid; ++ bool invalidate_other; ++ short unsigned int user_pcid_flush_mask; ++ long unsigned int cr4; ++ struct tlb_context ctxs[6]; +}; + -+struct memblock_region { -+ phys_addr_t base; -+ phys_addr_t size; -+ enum memblock_flags flags; -+ int nid; ++struct boot_params_to_save { ++ unsigned int start; ++ unsigned int len; +}; + -+struct memblock_type { -+ long unsigned int cnt; ++enum cpu_idle_type { ++ CPU_IDLE = 0, ++ CPU_NOT_IDLE = 1, ++ CPU_NEWLY_IDLE = 2, ++ CPU_MAX_IDLE_TYPES = 3, ++}; ++ ++enum { ++ __SD_BALANCE_NEWIDLE = 0, ++ __SD_BALANCE_EXEC = 1, ++ __SD_BALANCE_FORK = 2, ++ __SD_BALANCE_WAKE = 3, ++ __SD_WAKE_AFFINE = 4, ++ __SD_ASYM_CPUCAPACITY = 5, ++ __SD_SHARE_CPUCAPACITY = 6, ++ __SD_SHARE_PKG_RESOURCES = 7, ++ __SD_SERIALIZE = 8, ++ __SD_ASYM_PACKING = 9, ++ __SD_PREFER_SIBLING = 10, ++ __SD_OVERLAP = 11, ++ __SD_NUMA = 12, ++ __SD_FLAG_CNT = 13, ++}; ++ ++struct x86_legacy_devices { ++ int pnpbios; ++}; ++ ++enum x86_legacy_i8042_state { ++ X86_LEGACY_I8042_PLATFORM_ABSENT = 0, ++ X86_LEGACY_I8042_FIRMWARE_ABSENT = 1, ++ X86_LEGACY_I8042_EXPECTED_PRESENT = 2, ++}; ++ ++struct x86_legacy_features { ++ enum x86_legacy_i8042_state i8042; ++ int rtc; ++ int warm_reset; ++ int no_vga; ++ int reserve_bios_regions; ++ struct x86_legacy_devices devices; ++}; ++ ++struct ghcb; ++ ++struct x86_hyper_runtime { ++ void (*pin_vcpu)(int); ++ void (*sev_es_hcall_prepare)(struct ghcb *, struct pt_regs *); ++ bool (*sev_es_hcall_finish)(struct ghcb *, struct pt_regs *); ++}; ++ ++struct x86_platform_ops { ++ long unsigned int (*calibrate_cpu)(); ++ long unsigned int (*calibrate_tsc)(); ++ void (*get_wallclock)(struct timespec64 *); ++ int (*set_wallclock)(const struct timespec64 *); ++ void (*iommu_shutdown)(); ++ bool (*is_untracked_pat_range)(u64, u64); ++ void (*nmi_init)(); ++ unsigned char (*get_nmi_reason)(); ++ void (*save_sched_clock_state)(); ++ void (*restore_sched_clock_state)(); ++ void (*apic_post_init)(); ++ struct x86_legacy_features legacy; ++ void (*set_legacy_features)(); ++ struct x86_hyper_runtime hyper; ++}; ++ ++typedef signed char __s8; ++ ++typedef __s8 s8; ++ ++typedef __u32 __le32; ++ ++typedef long unsigned int irq_hw_number_t; ++ ++struct kernel_symbol { ++ int value_offset; ++ int name_offset; ++ int namespace_offset; ++}; ++ ++typedef int (*initcall_t)(); ++ ++typedef int initcall_entry_t; ++ ++struct obs_kernel_param { ++ const char *str; ++ int (*setup_func)(char *); ++ int early; ++}; ++ ++struct lockdep_map {}; ++ ++struct jump_entry { ++ s32 code; ++ s32 target; ++ long int key; ++}; ++ ++struct static_key_mod; ++ ++struct static_key { ++ atomic_t enabled; ++ union { ++ long unsigned int type; ++ struct jump_entry *entries; ++ struct static_key_mod *next; ++ }; ++}; ++ ++struct static_key_true { ++ struct static_key key; ++}; ++ ++struct static_key_false { ++ struct static_key key; ++}; ++ ++struct _ddebug { ++ const char *modname; ++ const char *function; ++ const char *filename; ++ const char *format; ++ unsigned int lineno: 18; ++ unsigned int flags: 8; ++ union { ++ struct static_key_true dd_key_true; ++ struct static_key_false dd_key_false; ++ } key; ++}; ++ ++struct static_call_site { ++ s32 addr; ++ s32 key; ++}; ++ ++enum system_states { ++ SYSTEM_BOOTING = 0, ++ SYSTEM_SCHEDULING = 1, ++ SYSTEM_RUNNING = 2, ++ SYSTEM_HALT = 3, ++ SYSTEM_POWER_OFF = 4, ++ SYSTEM_RESTART = 5, ++ SYSTEM_SUSPEND = 6, ++}; ++ ++struct orc_entry { ++ s16 sp_offset; ++ s16 bp_offset; ++ unsigned int sp_reg: 4; ++ unsigned int bp_reg: 4; ++ unsigned int type: 2; ++ unsigned int end: 1; ++} __attribute__((packed)); ++ ++struct paravirt_callee_save { ++ void *func; ++}; ++ ++struct pv_init_ops { ++ unsigned int (*patch)(u8, void *, long unsigned int, unsigned int); ++}; ++ ++struct pv_time_ops { ++ long long unsigned int (*sched_clock)(); ++ long long unsigned int (*steal_clock)(int); ++}; ++ ++struct pv_cpu_ops { ++ void (*io_delay)(); ++}; ++ ++struct pv_irq_ops {}; ++ ++struct flush_tlb_info; ++ ++struct mmu_gather; ++ ++struct pv_mmu_ops { ++ void (*flush_tlb_user)(); ++ void (*flush_tlb_kernel)(); ++ void (*flush_tlb_one_user)(long unsigned int); ++ void (*flush_tlb_multi)(const struct cpumask *, const struct flush_tlb_info *); ++ void (*tlb_remove_table)(struct mmu_gather *, void *); ++ void (*exit_mmap)(struct mm_struct *); ++}; ++ ++struct flush_tlb_info { ++ struct mm_struct *mm; ++ long unsigned int start; ++ long unsigned int end; ++ u64 new_tlb_gen; ++ unsigned int initiating_cpu; ++ u8 stride_shift; ++ u8 freed_tables; ++}; ++ ++struct pv_lock_ops { ++ void (*queued_spin_lock_slowpath)(struct qspinlock *, u32); ++ struct paravirt_callee_save queued_spin_unlock; ++ void (*wait)(u8 *, u8); ++ void (*kick)(int); ++ struct paravirt_callee_save vcpu_is_preempted; ++ u64 kabi_reserved1; ++}; ++ ++struct paravirt_patch_template { ++ struct pv_init_ops init; ++ struct pv_time_ops time; ++ struct pv_cpu_ops cpu; ++ struct pv_irq_ops irq; ++ struct pv_mmu_ops mmu; ++ struct pv_lock_ops lock; ++}; ++ ++struct bug_entry { ++ int bug_addr_disp; ++ int file_disp; ++ short unsigned int line; ++ short unsigned int flags; ++}; ++ ++typedef struct cpumask *cpumask_var_t; ++ ++struct tracepoint_func { ++ void *func; ++ void *data; ++ int prio; ++}; ++ ++struct static_call_key; ++ ++struct tracepoint { ++ const char *name; ++ struct static_key key; ++ struct static_call_key *static_call_key; ++ void *static_call_tramp; ++ void *iterator; ++ int (*regfunc)(); ++ void (*unregfunc)(); ++ struct tracepoint_func *funcs; ++}; ++ ++struct static_call_mod; ++ ++struct static_call_key { ++ void *func; ++ union { ++ long unsigned int type; ++ struct static_call_mod *mods; ++ struct static_call_site *sites; ++ }; ++}; ++ ++typedef const int tracepoint_ptr_t; ++ ++struct bpf_raw_event_map { ++ struct tracepoint *tp; ++ void *bpf_func; ++ u32 num_args; ++ u32 writable_size; ++ long: 64; ++}; ++ ++struct seq_operations { ++ void * (*start)(struct seq_file *, loff_t *); ++ void (*stop)(struct seq_file *, void *); ++ void * (*next)(struct seq_file *, void *, loff_t *); ++ int (*show)(struct seq_file *, void *); ++}; ++ ++struct fixed_percpu_data { ++ char gs_base[40]; ++ long unsigned int stack_canary; ++}; ++ ++enum perf_event_state { ++ PERF_EVENT_STATE_DEAD = 4294967292, ++ PERF_EVENT_STATE_EXIT = 4294967293, ++ PERF_EVENT_STATE_ERROR = 4294967294, ++ PERF_EVENT_STATE_OFF = 4294967295, ++ PERF_EVENT_STATE_INACTIVE = 0, ++ PERF_EVENT_STATE_ACTIVE = 1, ++}; ++ ++typedef struct { ++ atomic_long_t a; ++} local_t; ++ ++typedef struct { ++ local_t a; ++} local64_t; ++ ++struct perf_event_attr { ++ __u32 type; ++ __u32 size; ++ __u64 config; ++ union { ++ __u64 sample_period; ++ __u64 sample_freq; ++ }; ++ __u64 sample_type; ++ __u64 read_format; ++ __u64 disabled: 1; ++ __u64 inherit: 1; ++ __u64 pinned: 1; ++ __u64 exclusive: 1; ++ __u64 exclude_user: 1; ++ __u64 exclude_kernel: 1; ++ __u64 exclude_hv: 1; ++ __u64 exclude_idle: 1; ++ __u64 mmap: 1; ++ __u64 comm: 1; ++ __u64 freq: 1; ++ __u64 inherit_stat: 1; ++ __u64 enable_on_exec: 1; ++ __u64 task: 1; ++ __u64 watermark: 1; ++ __u64 precise_ip: 2; ++ __u64 mmap_data: 1; ++ __u64 sample_id_all: 1; ++ __u64 exclude_host: 1; ++ __u64 exclude_guest: 1; ++ __u64 exclude_callchain_kernel: 1; ++ __u64 exclude_callchain_user: 1; ++ __u64 mmap2: 1; ++ __u64 comm_exec: 1; ++ __u64 use_clockid: 1; ++ __u64 context_switch: 1; ++ __u64 write_backward: 1; ++ __u64 namespaces: 1; ++ __u64 ksymbol: 1; ++ __u64 bpf_event: 1; ++ __u64 aux_output: 1; ++ __u64 cgroup: 1; ++ __u64 text_poke: 1; ++ __u64 __reserved_1: 30; ++ union { ++ __u32 wakeup_events; ++ __u32 wakeup_watermark; ++ }; ++ __u32 bp_type; ++ union { ++ __u64 bp_addr; ++ __u64 kprobe_func; ++ __u64 uprobe_path; ++ __u64 config1; ++ }; ++ union { ++ __u64 bp_len; ++ __u64 kprobe_addr; ++ __u64 probe_offset; ++ __u64 config2; ++ }; ++ __u64 branch_sample_type; ++ __u64 sample_regs_user; ++ __u32 sample_stack_user; ++ __s32 clockid; ++ __u64 sample_regs_intr; ++ __u32 aux_watermark; ++ __u16 sample_max_stack; ++ __u16 __reserved_2; ++ __u32 aux_sample_size; ++ __u32 __reserved_3; ++}; ++ ++struct hw_perf_event_extra { ++ u64 config; ++ unsigned int reg; ++ int alloc; ++ int idx; ++}; ++ ++struct arch_hw_breakpoint { ++ long unsigned int address; ++ long unsigned int mask; ++ u8 len; ++ u8 type; ++}; ++ ++struct hw_perf_event { ++ union { ++ struct { ++ u64 config; ++ u64 last_tag; ++ long unsigned int config_base; ++ long unsigned int event_base; ++ int event_base_rdpmc; ++ int idx; ++ int last_cpu; ++ int flags; ++ struct hw_perf_event_extra extra_reg; ++ struct hw_perf_event_extra branch_reg; ++ }; ++ struct { ++ struct hrtimer hrtimer; ++ }; ++ struct { ++ struct list_head tp_list; ++ }; ++ struct { ++ u64 pwr_acc; ++ u64 ptsc; ++ }; ++ struct { ++ struct arch_hw_breakpoint info; ++ struct list_head bp_list; ++ }; ++ struct { ++ u8 iommu_bank; ++ u8 iommu_cntr; ++ u16 padding; ++ u64 conf; ++ u64 conf1; ++ }; ++ }; ++ struct task_struct *target; ++ void *addr_filters; ++ long unsigned int addr_filters_gen; ++ int state; ++ local64_t prev_count; ++ u64 sample_period; ++ union { ++ struct { ++ u64 last_period; ++ local64_t period_left; ++ }; ++ struct { ++ u64 saved_metric; ++ u64 saved_slots; ++ }; ++ }; ++ u64 interrupts_seq; ++ u64 interrupts; ++ u64 freq_time_stamp; ++ u64 freq_count_stamp; ++}; ++ ++struct irq_work { ++ struct __call_single_node node; ++ void (*func)(struct irq_work *); ++}; ++ ++struct perf_addr_filters_head { ++ struct list_head list; ++ raw_spinlock_t lock; ++ unsigned int nr_file_filters; ++}; ++ ++struct perf_sample_data; ++ ++typedef void (*perf_overflow_handler_t)(struct perf_event *, struct perf_sample_data *, struct pt_regs *); ++ ++struct ftrace_ops; ++ ++typedef void (*ftrace_func_t)(long unsigned int, long unsigned int, struct ftrace_ops *, struct pt_regs *); ++ ++struct ftrace_hash; ++ ++struct ftrace_ops_hash { ++ struct ftrace_hash *notrace_hash; ++ struct ftrace_hash *filter_hash; ++ struct mutex regex_lock; ++}; ++ ++struct ftrace_ops { ++ ftrace_func_t func; ++ struct ftrace_ops *next; ++ long unsigned int flags; ++ void *private; ++ ftrace_func_t saved_func; ++ struct ftrace_ops_hash local_hash; ++ struct ftrace_ops_hash *func_hash; ++ struct ftrace_ops_hash old_hash; ++ long unsigned int trampoline; ++ long unsigned int trampoline_size; ++ struct list_head list; ++}; ++ ++struct pmu; ++ ++struct perf_buffer; ++ ++struct perf_addr_filter_range; ++ ++struct bpf_prog; ++ ++struct trace_event_call; ++ ++struct event_filter; ++ ++struct perf_cgroup; ++ ++struct perf_event { ++ struct list_head event_entry; ++ struct list_head sibling_list; ++ struct list_head active_list; ++ struct rb_node group_node; ++ u64 group_index; ++ struct list_head migrate_entry; ++ struct hlist_node hlist_entry; ++ struct list_head active_entry; ++ int nr_siblings; ++ int event_caps; ++ int group_caps; ++ struct perf_event *group_leader; ++ struct pmu *pmu; ++ void *pmu_private; ++ enum perf_event_state state; ++ unsigned int attach_state; ++ local64_t count; ++ atomic64_t child_count; ++ u64 total_time_enabled; ++ u64 total_time_running; ++ u64 tstamp; ++ u64 shadow_ctx_time; ++ struct perf_event_attr attr; ++ u16 header_size; ++ u16 id_header_size; ++ u16 read_size; ++ struct hw_perf_event hw; ++ struct perf_event_context *ctx; ++ atomic_long_t refcount; ++ atomic64_t child_total_time_enabled; ++ atomic64_t child_total_time_running; ++ struct mutex child_mutex; ++ struct list_head child_list; ++ struct perf_event *parent; ++ int oncpu; ++ int cpu; ++ struct list_head owner_entry; ++ struct task_struct *owner; ++ struct mutex mmap_mutex; ++ atomic_t mmap_count; ++ struct perf_buffer *rb; ++ struct list_head rb_entry; ++ long unsigned int rcu_batches; ++ int rcu_pending; ++ wait_queue_head_t waitq; ++ struct fasync_struct *fasync; ++ int pending_wakeup; ++ int pending_kill; ++ int pending_disable; ++ struct irq_work pending; ++ atomic_t event_limit; ++ struct perf_addr_filters_head addr_filters; ++ struct perf_addr_filter_range *addr_filter_ranges; ++ long unsigned int addr_filters_gen; ++ struct perf_event *aux_event; ++ void (*destroy)(struct perf_event *); ++ struct callback_head callback_head; ++ struct pid_namespace *ns; ++ u64 id; ++ u64 (*clock)(); ++ perf_overflow_handler_t overflow_handler; ++ void *overflow_handler_context; ++ perf_overflow_handler_t orig_overflow_handler; ++ struct bpf_prog *prog; ++ struct trace_event_call *tp_event; ++ struct event_filter *filter; ++ struct ftrace_ops ftrace_ops; ++ struct perf_cgroup *cgrp; ++ void *security; ++ struct list_head sb_list; ++}; ++ ++struct uid_gid_extent { ++ u32 first; ++ u32 lower_first; ++ u32 count; ++}; ++ ++struct uid_gid_map { ++ u32 nr_extents; ++ union { ++ struct uid_gid_extent extent[5]; ++ struct { ++ struct uid_gid_extent *forward; ++ struct uid_gid_extent *reverse; ++ }; ++ }; ++}; ++ ++struct proc_ns_operations; ++ ++struct ns_common { ++ atomic_long_t stashed; ++ const struct proc_ns_operations *ops; ++ unsigned int inum; ++ u64 kabi_reserved1; ++}; ++ ++struct ctl_table; ++ ++struct ctl_table_root; ++ ++struct ctl_table_set; ++ ++struct ctl_dir; ++ ++struct ctl_node; ++ ++struct ctl_table_header { ++ union { ++ struct { ++ struct ctl_table *ctl_table; ++ int used; ++ int count; ++ int nreg; ++ }; ++ struct callback_head rcu; ++ }; ++ struct completion *unregistering; ++ struct ctl_table *ctl_table_arg; ++ struct ctl_table_root *root; ++ struct ctl_table_set *set; ++ struct ctl_dir *parent; ++ struct ctl_node *node; ++ struct hlist_head inodes; ++}; ++ ++struct ctl_dir { ++ struct ctl_table_header header; ++ struct rb_root root; ++}; ++ ++struct ctl_table_set { ++ int (*is_seen)(struct ctl_table_set *); ++ struct ctl_dir dir; ++}; ++ ++struct ucounts; ++ ++struct user_namespace { ++ struct uid_gid_map uid_map; ++ struct uid_gid_map gid_map; ++ struct uid_gid_map projid_map; ++ atomic_t count; ++ struct user_namespace *parent; ++ int level; ++ kuid_t owner; ++ kgid_t group; ++ struct ns_common ns; ++ long unsigned int flags; ++ bool parent_could_setfcap; ++ struct list_head keyring_name_list; ++ struct key *user_keyring_register; ++ struct rw_semaphore keyring_sem; ++ struct key *persistent_keyring_register; ++ struct work_struct work; ++ struct ctl_table_set set; ++ struct ctl_table_header *sysctls; ++ struct ucounts *ucounts; ++ long int ucount_max[25]; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ u64 kabi_reserved9; ++ u64 kabi_reserved10; ++}; ++ ++struct pollfd { ++ int fd; ++ short int events; ++ short int revents; ++}; ++ ++typedef void (*smp_call_func_t)(void *); ++ ++struct __call_single_data { ++ struct __call_single_node node; ++ smp_call_func_t func; ++ void *info; ++}; ++ ++struct smp_ops { ++ void (*smp_prepare_boot_cpu)(); ++ void (*smp_prepare_cpus)(unsigned int); ++ void (*smp_cpus_done)(unsigned int); ++ void (*stop_other_cpus)(int); ++ void (*crash_stop_other_cpus)(); ++ void (*smp_send_reschedule)(int); ++ int (*cpu_up)(unsigned int, struct task_struct *); ++ int (*cpu_disable)(); ++ void (*cpu_die)(unsigned int); ++ void (*play_dead)(); ++ void (*send_call_func_ipi)(const struct cpumask *); ++ void (*send_call_func_single_ipi)(int); ++}; ++ ++struct wait_queue_entry; ++ ++typedef int (*wait_queue_func_t)(struct wait_queue_entry *, unsigned int, int, void *); ++ ++struct wait_queue_entry { ++ unsigned int flags; ++ void *private; ++ wait_queue_func_t func; ++ struct list_head entry; ++}; ++ ++typedef struct wait_queue_entry wait_queue_entry_t; ++ ++struct timer_list { ++ struct hlist_node entry; ++ long unsigned int expires; ++ void (*function)(struct timer_list *); ++ u32 flags; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct delayed_work { ++ struct work_struct work; ++ struct timer_list timer; ++ struct workqueue_struct *wq; ++ int cpu; ++ long unsigned int data; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct rcu_work { ++ struct work_struct work; ++ struct callback_head rcu; ++ struct workqueue_struct *wq; ++}; ++ ++struct rcu_segcblist { ++ struct callback_head *head; ++ struct callback_head **tails[4]; ++ long unsigned int gp_seq[4]; ++ atomic_long_t len; ++ u8 enabled; ++ u8 offloaded; ++}; ++ ++struct srcu_node; ++ ++struct srcu_struct; ++ ++struct srcu_data { ++ long unsigned int srcu_lock_count[2]; ++ long unsigned int srcu_unlock_count[2]; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ spinlock_t lock; ++ struct rcu_segcblist srcu_cblist; ++ long unsigned int srcu_gp_seq_needed; ++ long unsigned int srcu_gp_seq_needed_exp; ++ bool srcu_cblist_invoking; ++ struct timer_list delay_work; ++ struct work_struct work; ++ struct callback_head srcu_barrier_head; ++ struct srcu_node *mynode; ++ long unsigned int grpmask; ++ int cpu; ++ struct srcu_struct *ssp; ++ long: 64; ++ long: 64; ++}; ++ ++struct srcu_node { ++ spinlock_t lock; ++ long unsigned int srcu_have_cbs[4]; ++ long unsigned int srcu_data_have_cbs[4]; ++ long unsigned int srcu_gp_seq_needed_exp; ++ struct srcu_node *srcu_parent; ++ int grplo; ++ int grphi; ++}; ++ ++struct srcu_struct { ++ struct srcu_node node[521]; ++ struct srcu_node *level[4]; ++ struct mutex srcu_cb_mutex; ++ spinlock_t lock; ++ struct mutex srcu_gp_mutex; ++ unsigned int srcu_idx; ++ long unsigned int srcu_gp_seq; ++ long unsigned int srcu_gp_seq_needed; ++ long unsigned int srcu_gp_seq_needed_exp; ++ long unsigned int srcu_last_gp_end; ++ struct srcu_data *sda; ++ long unsigned int srcu_barrier_seq; ++ struct mutex srcu_barrier_mutex; ++ struct completion srcu_barrier_completion; ++ atomic_t srcu_barrier_cpu_cnt; ++ struct delayed_work work; ++}; ++ ++struct anon_vma { ++ struct anon_vma *root; ++ struct rw_semaphore rwsem; ++ atomic_t refcount; ++ unsigned int degree; ++ struct anon_vma *parent; ++ struct rb_root_cached rb_root; ++}; ++ ++struct mempolicy { ++ atomic_t refcnt; ++ short unsigned int mode; ++ short unsigned int flags; ++ union { ++ short int preferred_node; ++ nodemask_t nodes; ++ } v; ++ union { ++ nodemask_t cpuset_mems_allowed; ++ nodemask_t user_nodemask; ++ } w; ++}; ++ ++struct linux_binprm; ++ ++struct coredump_params; ++ ++struct linux_binfmt { ++ struct list_head lh; ++ struct module *module; ++ int (*load_binary)(struct linux_binprm *); ++ int (*load_shlib)(struct file *); ++ int (*core_dump)(struct coredump_params *); ++ long unsigned int min_coredump; ++}; ++ ++struct free_area { ++ struct list_head free_list[5]; ++ long unsigned int nr_free; ++}; ++ ++struct zone_padding { ++ char x[0]; ++}; ++ ++struct pglist_data; ++ ++struct lruvec { ++ struct list_head lists[5]; ++ spinlock_t lru_lock; ++ long unsigned int anon_cost; ++ long unsigned int file_cost; ++ atomic_long_t nonresident_age; ++ long unsigned int refaults[2]; ++ long unsigned int flags; ++ struct pglist_data *pgdat; ++}; ++ ++struct per_cpu_pageset; ++ ++struct zone { ++ long unsigned int _watermark[3]; ++ long unsigned int watermark_boost; ++ long unsigned int nr_reserved_highatomic; ++ long int lowmem_reserve[5]; ++ int node; ++ struct pglist_data *zone_pgdat; ++ struct per_cpu_pageset *pageset; ++ int pageset_high; ++ int pageset_batch; ++ long unsigned int zone_start_pfn; ++ atomic_long_t managed_pages; ++ long unsigned int spanned_pages; ++ long unsigned int present_pages; ++ const char *name; ++ long unsigned int nr_isolate_pageblock; ++ seqlock_t span_seqlock; ++ int initialized; ++ long: 32; ++ long: 64; ++ long: 64; ++ struct zone_padding _pad1_; ++ struct free_area free_area[11]; ++ long unsigned int flags; ++ spinlock_t lock; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct zone_padding _pad2_; ++ long unsigned int percpu_drift_mark; ++ long unsigned int compact_cached_free_pfn; ++ long unsigned int compact_cached_migrate_pfn[2]; ++ long unsigned int compact_init_migrate_pfn; ++ long unsigned int compact_init_free_pfn; ++ unsigned int compact_considered; ++ unsigned int compact_defer_shift; ++ int compact_order_failed; ++ bool compact_blockskip_flush; ++ bool contiguous; ++ short: 16; ++ struct zone_padding _pad3_; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ atomic_long_t vm_stat[12]; ++ atomic_long_t vm_numa_stat[6]; ++ long: 64; ++ long: 64; ++}; ++ ++struct zoneref { ++ struct zone *zone; ++ int zone_idx; ++}; ++ ++struct zonelist { ++ struct zoneref _zonerefs[5121]; ++}; ++ ++enum zone_type { ++ ZONE_DMA = 0, ++ ZONE_DMA32 = 1, ++ ZONE_NORMAL = 2, ++ ZONE_MOVABLE = 3, ++ ZONE_DEVICE = 4, ++ __MAX_NR_ZONES = 5, ++}; ++ ++struct deferred_split { ++ spinlock_t split_queue_lock; ++ struct list_head split_queue; ++ long unsigned int split_queue_len; ++}; ++ ++struct per_cpu_nodestat; ++ ++struct pglist_data { ++ struct zone node_zones[5]; ++ struct zonelist node_zonelists[2]; ++ int nr_zones; ++ spinlock_t node_size_lock; ++ long unsigned int node_start_pfn; ++ long unsigned int node_present_pages; ++ long unsigned int node_spanned_pages; ++ int node_id; ++ wait_queue_head_t kswapd_wait; ++ wait_queue_head_t pfmemalloc_wait; ++ struct task_struct *kswapd; ++ int kswapd_order; ++ enum zone_type kswapd_highest_zoneidx; ++ int kswapd_failures; ++ int kcompactd_max_order; ++ enum zone_type kcompactd_highest_zoneidx; ++ wait_queue_head_t kcompactd_wait; ++ struct task_struct *kcompactd; ++ long unsigned int totalreserve_pages; ++ long unsigned int min_unmapped_pages; ++ long unsigned int min_slab_pages; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct zone_padding _pad1_; ++ long unsigned int first_deferred_pfn; ++ struct deferred_split deferred_split_queue; ++ struct lruvec __lruvec; ++ long unsigned int flags; ++ struct zone_padding _pad2_; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ struct per_cpu_nodestat *per_cpu_nodestats; ++ atomic_long_t vm_stat[37]; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct per_cpu_pages { ++ int count; ++ int high; ++ int batch; ++ struct list_head lists[3]; ++}; ++ ++struct per_cpu_pageset { ++ struct per_cpu_pages pcp; ++ s8 expire; ++ u16 vm_numa_stat_diff[6]; ++ s8 stat_threshold; ++ s8 vm_stat_diff[12]; ++}; ++ ++struct per_cpu_nodestat { ++ s8 stat_threshold; ++ s8 vm_node_stat_diff[37]; ++}; ++ ++enum irq_domain_bus_token { ++ DOMAIN_BUS_ANY = 0, ++ DOMAIN_BUS_WIRED = 1, ++ DOMAIN_BUS_GENERIC_MSI = 2, ++ DOMAIN_BUS_PCI_MSI = 3, ++ DOMAIN_BUS_PLATFORM_MSI = 4, ++ DOMAIN_BUS_NEXUS = 5, ++ DOMAIN_BUS_IPI = 6, ++ DOMAIN_BUS_FSL_MC_MSI = 7, ++ DOMAIN_BUS_TI_SCI_INTA_MSI = 8, ++ DOMAIN_BUS_WAKEUP = 9, ++ DOMAIN_BUS_VMD_MSI = 10, ++}; ++ ++struct irq_domain_ops; ++ ++struct fwnode_handle; ++ ++struct irq_domain_chip_generic; ++ ++struct irq_domain { ++ struct list_head link; ++ const char *name; ++ const struct irq_domain_ops *ops; ++ void *host_data; ++ unsigned int flags; ++ unsigned int mapcount; ++ struct fwnode_handle *fwnode; ++ enum irq_domain_bus_token bus_token; ++ struct irq_domain_chip_generic *gc; ++ struct irq_domain *parent; ++ irq_hw_number_t hwirq_max; ++ unsigned int revmap_direct_max_irq; ++ unsigned int revmap_size; ++ struct xarray revmap_tree; ++ struct mutex revmap_tree_mutex; ++ u64 kabi_reserved1; ++ unsigned int linear_revmap[0]; ++}; ++ ++typedef int proc_handler(struct ctl_table *, int, void *, size_t *, loff_t *); ++ ++struct ctl_table_poll; ++ ++struct ctl_table { ++ const char *procname; ++ void *data; ++ int maxlen; ++ umode_t mode; ++ struct ctl_table *child; ++ proc_handler *proc_handler; ++ struct ctl_table_poll *poll; ++ void *extra1; ++ void *extra2; ++}; ++ ++struct ctl_table_poll { ++ atomic_t event; ++ wait_queue_head_t wait; ++}; ++ ++struct ctl_node { ++ struct rb_node node; ++ struct ctl_table_header *header; ++}; ++ ++struct ctl_table_root { ++ struct ctl_table_set default_set; ++ struct ctl_table_set * (*lookup)(struct ctl_table_root *); ++ void (*set_ownership)(struct ctl_table_header *, struct ctl_table *, kuid_t *, kgid_t *); ++ int (*permissions)(struct ctl_table_header *, struct ctl_table *); ++}; ++ ++enum umh_disable_depth { ++ UMH_ENABLED = 0, ++ UMH_FREEZING = 1, ++ UMH_DISABLED = 2, ++}; ++ ++typedef __u64 Elf64_Addr; ++ ++typedef __u16 Elf64_Half; ++ ++typedef __u64 Elf64_Off; ++ ++typedef __u32 Elf64_Word; ++ ++typedef __u64 Elf64_Xword; ++ ++struct elf64_sym { ++ Elf64_Word st_name; ++ unsigned char st_info; ++ unsigned char st_other; ++ Elf64_Half st_shndx; ++ Elf64_Addr st_value; ++ Elf64_Xword st_size; ++}; ++ ++typedef struct elf64_sym Elf64_Sym; ++ ++struct elf64_hdr { ++ unsigned char e_ident[16]; ++ Elf64_Half e_type; ++ Elf64_Half e_machine; ++ Elf64_Word e_version; ++ Elf64_Addr e_entry; ++ Elf64_Off e_phoff; ++ Elf64_Off e_shoff; ++ Elf64_Word e_flags; ++ Elf64_Half e_ehsize; ++ Elf64_Half e_phentsize; ++ Elf64_Half e_phnum; ++ Elf64_Half e_shentsize; ++ Elf64_Half e_shnum; ++ Elf64_Half e_shstrndx; ++}; ++ ++typedef struct elf64_hdr Elf64_Ehdr; ++ ++struct elf64_shdr { ++ Elf64_Word sh_name; ++ Elf64_Word sh_type; ++ Elf64_Xword sh_flags; ++ Elf64_Addr sh_addr; ++ Elf64_Off sh_offset; ++ Elf64_Xword sh_size; ++ Elf64_Word sh_link; ++ Elf64_Word sh_info; ++ Elf64_Xword sh_addralign; ++ Elf64_Xword sh_entsize; ++}; ++ ++typedef struct elf64_shdr Elf64_Shdr; ++ ++struct idr { ++ struct xarray idr_rt; ++ unsigned int idr_base; ++ unsigned int idr_next; ++}; ++ ++struct kernfs_root; ++ ++struct kernfs_elem_dir { ++ long unsigned int subdirs; ++ struct rb_root children; ++ struct kernfs_root *root; ++}; ++ ++struct kernfs_node; ++ ++struct kernfs_syscall_ops; ++ ++struct kernfs_root { ++ struct kernfs_node *kn; ++ unsigned int flags; ++ struct idr ino_idr; ++ u32 last_id_lowbits; ++ u32 id_highbits; ++ struct kernfs_syscall_ops *syscall_ops; ++ struct list_head supers; ++ wait_queue_head_t deactivate_waitq; ++}; ++ ++struct kernfs_elem_symlink { ++ struct kernfs_node *target_kn; ++}; ++ ++struct kernfs_ops; ++ ++struct kernfs_open_node; ++ ++struct kernfs_elem_attr { ++ const struct kernfs_ops *ops; ++ struct kernfs_open_node *open; ++ loff_t size; ++ struct kernfs_node *notify_next; ++}; ++ ++struct kernfs_iattrs; ++ ++struct kernfs_node { ++ atomic_t count; ++ atomic_t active; ++ struct kernfs_node *parent; ++ const char *name; ++ struct rb_node rb; ++ const void *ns; ++ unsigned int hash; ++ union { ++ struct kernfs_elem_dir dir; ++ struct kernfs_elem_symlink symlink; ++ struct kernfs_elem_attr attr; ++ }; ++ void *priv; ++ u64 id; ++ short unsigned int flags; ++ umode_t mode; ++ struct kernfs_iattrs *iattr; ++}; ++ ++struct kernfs_open_file; ++ ++struct kernfs_ops { ++ int (*open)(struct kernfs_open_file *); ++ void (*release)(struct kernfs_open_file *); ++ int (*seq_show)(struct seq_file *, void *); ++ void * (*seq_start)(struct seq_file *, loff_t *); ++ void * (*seq_next)(struct seq_file *, void *, loff_t *); ++ void (*seq_stop)(struct seq_file *, void *); ++ ssize_t (*read)(struct kernfs_open_file *, char *, size_t, loff_t); ++ size_t atomic_write_len; ++ bool prealloc; ++ ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); ++ __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); ++ int (*mmap)(struct kernfs_open_file *, struct vm_area_struct *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct kernfs_syscall_ops { ++ int (*show_options)(struct seq_file *, struct kernfs_root *); ++ int (*mkdir)(struct kernfs_node *, const char *, umode_t); ++ int (*rmdir)(struct kernfs_node *); ++ int (*rename)(struct kernfs_node *, struct kernfs_node *, const char *); ++ int (*show_path)(struct seq_file *, struct kernfs_node *, struct kernfs_root *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct seq_file { ++ char *buf; ++ size_t size; ++ size_t from; ++ size_t count; ++ size_t pad_until; ++ loff_t index; ++ loff_t read_pos; ++ struct mutex lock; ++ const struct seq_operations *op; ++ int poll_event; ++ const struct file *file; ++ void *private; ++}; ++ ++struct kernfs_open_file { ++ struct kernfs_node *kn; ++ struct file *file; ++ struct seq_file *seq_file; ++ void *priv; ++ struct mutex mutex; ++ struct mutex prealloc_mutex; ++ int event; ++ struct list_head list; ++ char *prealloc_buf; ++ size_t atomic_write_len; ++ bool mmapped: 1; ++ bool released: 1; ++ const struct vm_operations_struct *vm_ops; ++}; ++ ++typedef void (*poll_queue_proc)(struct file *, wait_queue_head_t *, struct poll_table_struct *); ++ ++struct poll_table_struct { ++ poll_queue_proc _qproc; ++ __poll_t _key; ++}; ++ ++enum kobj_ns_type { ++ KOBJ_NS_TYPE_NONE = 0, ++ KOBJ_NS_TYPE_NET = 1, ++ KOBJ_NS_TYPES = 2, ++}; ++ ++struct sock; ++ ++struct kobj_ns_type_operations { ++ enum kobj_ns_type type; ++ bool (*current_may_mount)(); ++ void * (*grab_current_ns)(); ++ const void * (*netlink_ns)(struct sock *); ++ const void * (*initial_ns)(); ++ void (*drop_ns)(void *); ++}; ++ ++struct attribute { ++ const char *name; ++ umode_t mode; ++}; ++ ++struct kobject; ++ ++struct bin_attribute; ++ ++struct attribute_group { ++ const char *name; ++ umode_t (*is_visible)(struct kobject *, struct attribute *, int); ++ umode_t (*is_bin_visible)(struct kobject *, struct bin_attribute *, int); ++ struct attribute **attrs; ++ struct bin_attribute **bin_attrs; ++}; ++ ++struct kref { ++ refcount_t refcount; ++}; ++ ++struct kset; ++ ++struct kobj_type; ++ ++struct kobject { ++ const char *name; ++ struct list_head entry; ++ struct kobject *parent; ++ struct kset *kset; ++ struct kobj_type *ktype; ++ struct kernfs_node *sd; ++ struct kref kref; ++ unsigned int state_initialized: 1; ++ unsigned int state_in_sysfs: 1; ++ unsigned int state_add_uevent_sent: 1; ++ unsigned int state_remove_uevent_sent: 1; ++ unsigned int uevent_suppress: 1; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct bin_attribute { ++ struct attribute attr; ++ size_t size; ++ void *private; ++ ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); ++ ssize_t (*write)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); ++ int (*mmap)(struct file *, struct kobject *, struct bin_attribute *, struct vm_area_struct *); ++ u64 kabi_reserved1; ++}; ++ ++struct sysfs_ops { ++ ssize_t (*show)(struct kobject *, struct attribute *, char *); ++ ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); ++}; ++ ++enum refcount_saturation_type { ++ REFCOUNT_ADD_NOT_ZERO_OVF = 0, ++ REFCOUNT_ADD_OVF = 1, ++ REFCOUNT_ADD_UAF = 2, ++ REFCOUNT_SUB_UAF = 3, ++ REFCOUNT_DEC_LEAK = 4, ++}; ++ ++struct kset_uevent_ops; ++ ++struct kset { ++ struct list_head list; ++ spinlock_t list_lock; ++ struct kobject kobj; ++ const struct kset_uevent_ops *uevent_ops; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct kobj_type { ++ void (*release)(struct kobject *); ++ const struct sysfs_ops *sysfs_ops; ++ struct attribute **default_attrs; ++ const struct attribute_group **default_groups; ++ const struct kobj_ns_type_operations * (*child_ns_type)(struct kobject *); ++ const void * (*namespace)(struct kobject *); ++ void (*get_ownership)(struct kobject *, kuid_t *, kgid_t *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct kobj_uevent_env { ++ char *argv[3]; ++ char *envp[64]; ++ int envp_idx; ++ char buf[2048]; ++ int buflen; ++}; ++ ++struct kset_uevent_ops { ++ int (* const filter)(struct kset *, struct kobject *); ++ const char * (* const name)(struct kset *, struct kobject *); ++ int (* const uevent)(struct kset *, struct kobject *, struct kobj_uevent_env *); ++}; ++ ++struct kernel_param; ++ ++struct kernel_param_ops { ++ unsigned int flags; ++ int (*set)(const char *, const struct kernel_param *); ++ int (*get)(char *, const struct kernel_param *); ++ void (*free)(void *); ++}; ++ ++struct kparam_string; ++ ++struct kparam_array; ++ ++struct kernel_param { ++ const char *name; ++ struct module *mod; ++ const struct kernel_param_ops *ops; ++ const u16 perm; ++ s8 level; ++ u8 flags; ++ union { ++ void *arg; ++ const struct kparam_string *str; ++ const struct kparam_array *arr; ++ }; ++}; ++ ++struct kparam_string { ++ unsigned int maxlen; ++ char *string; ++}; ++ ++struct kparam_array { ++ unsigned int max; ++ unsigned int elemsize; ++ unsigned int *num; ++ const struct kernel_param_ops *ops; ++ void *elem; ++}; ++ ++enum module_state { ++ MODULE_STATE_LIVE = 0, ++ MODULE_STATE_COMING = 1, ++ MODULE_STATE_GOING = 2, ++ MODULE_STATE_UNFORMED = 3, ++}; ++ ++struct module_param_attrs; ++ ++struct module_kobject { ++ struct kobject kobj; ++ struct module *mod; ++ struct kobject *drivers_dir; ++ struct module_param_attrs *mp; ++ struct completion *kobj_completion; ++}; ++ ++struct latch_tree_node { ++ struct rb_node node[2]; ++}; ++ ++struct mod_tree_node { ++ struct module *mod; ++ struct latch_tree_node node; ++}; ++ ++struct module_layout { ++ void *base; ++ unsigned int size; ++ unsigned int text_size; ++ unsigned int ro_size; ++ unsigned int ro_after_init_size; ++ struct mod_tree_node mtn; ++}; ++ ++struct mod_arch_specific { ++ unsigned int num_orcs; ++ int *orc_unwind_ip; ++ struct orc_entry *orc_unwind; ++}; ++ ++struct mod_kallsyms { ++ Elf64_Sym *symtab; ++ unsigned int num_symtab; ++ char *strtab; ++ char *typetab; ++}; ++ ++enum MODULE_KLP_REL_STATE { ++ MODULE_KLP_REL_NONE = 0, ++ MODULE_KLP_REL_UNDO = 1, ++ MODULE_KLP_REL_DONE = 2, ++}; ++ ++struct module_attribute; ++ ++struct exception_table_entry; ++ ++struct module_sect_attrs; ++ ++struct module_notes_attrs; ++ ++struct trace_eval_map; ++ ++struct klp_modinfo; ++ ++struct error_injection_entry; ++ ++struct module { ++ enum module_state state; ++ struct list_head list; ++ char name[56]; ++ struct module_kobject mkobj; ++ struct module_attribute *modinfo_attrs; ++ const char *version; ++ const char *srcversion; ++ struct kobject *holders_dir; ++ const struct kernel_symbol *syms; ++ const s32 *crcs; ++ unsigned int num_syms; ++ struct mutex param_lock; ++ struct kernel_param *kp; ++ unsigned int num_kp; ++ unsigned int num_gpl_syms; ++ const struct kernel_symbol *gpl_syms; ++ const s32 *gpl_crcs; ++ bool using_gplonly_symbols; ++ bool sig_ok; ++ bool async_probe_requested; ++ const struct kernel_symbol *gpl_future_syms; ++ const s32 *gpl_future_crcs; ++ unsigned int num_gpl_future_syms; ++ unsigned int num_exentries; ++ struct exception_table_entry *extable; ++ int (*init)(); ++ long: 64; ++ struct module_layout core_layout; ++ struct module_layout init_layout; ++ struct mod_arch_specific arch; ++ long unsigned int taints; ++ unsigned int num_bugs; ++ struct list_head bug_list; ++ struct bug_entry *bug_table; ++ struct mod_kallsyms *kallsyms; ++ struct mod_kallsyms core_kallsyms; ++ struct module_sect_attrs *sect_attrs; ++ struct module_notes_attrs *notes_attrs; ++ char *args; ++ void *percpu; ++ unsigned int percpu_size; ++ void *noinstr_text_start; ++ unsigned int noinstr_text_size; ++ unsigned int num_tracepoints; ++ tracepoint_ptr_t *tracepoints_ptrs; ++ unsigned int num_srcu_structs; ++ struct srcu_struct **srcu_struct_ptrs; ++ unsigned int num_bpf_raw_events; ++ struct bpf_raw_event_map *bpf_raw_events; ++ struct jump_entry *jump_entries; ++ unsigned int num_jump_entries; ++ unsigned int num_trace_bprintk_fmt; ++ const char **trace_bprintk_fmt_start; ++ struct trace_event_call **trace_events; ++ unsigned int num_trace_events; ++ struct trace_eval_map **trace_evals; ++ unsigned int num_trace_evals; ++ unsigned int num_ftrace_callsites; ++ long unsigned int *ftrace_callsites; ++ void *kprobes_text_start; ++ unsigned int kprobes_text_size; ++ long unsigned int *kprobe_blacklist; ++ unsigned int num_kprobe_blacklist; ++ int num_static_call_sites; ++ struct static_call_site *static_call_sites; ++ bool klp; ++ bool klp_alive; ++ struct klp_modinfo *klp_info; ++ enum MODULE_KLP_REL_STATE klp_rel_state; ++ struct list_head source_list; ++ struct list_head target_list; ++ void (*exit)(); ++ atomic_t refcnt; ++ struct error_injection_entry *ei_funcs; ++ unsigned int num_ei_funcs; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct error_injection_entry { ++ long unsigned int addr; ++ int etype; ++}; ++ ++struct module_attribute { ++ struct attribute attr; ++ ssize_t (*show)(struct module_attribute *, struct module_kobject *, char *); ++ ssize_t (*store)(struct module_attribute *, struct module_kobject *, const char *, size_t); ++ void (*setup)(struct module *, const char *); ++ int (*test)(struct module *); ++ void (*free)(struct module *); ++}; ++ ++struct klp_modinfo { ++ Elf64_Ehdr hdr; ++ Elf64_Shdr *sechdrs; ++ char *secstrings; ++ unsigned int symndx; ++}; ++ ++struct exception_table_entry { ++ int insn; ++ int fixup; ++ int handler; ++}; ++ ++struct trace_event_functions; ++ ++struct trace_event { ++ struct hlist_node node; ++ struct list_head list; ++ int type; ++ struct trace_event_functions *funcs; ++}; ++ ++struct trace_event_class; ++ ++struct bpf_prog_array; ++ ++struct trace_event_call { ++ struct list_head list; ++ struct trace_event_class *class; ++ union { ++ char *name; ++ struct tracepoint *tp; ++ }; ++ struct trace_event event; ++ char *print_fmt; ++ struct event_filter *filter; ++ void *mod; ++ void *data; ++ int flags; ++ int perf_refcount; ++ struct hlist_head *perf_events; ++ struct bpf_prog_array *prog_array; ++ int (*perf_perm)(struct trace_event_call *, struct perf_event *); ++}; ++ ++struct trace_eval_map { ++ const char *system; ++ const char *eval_string; ++ long unsigned int eval_value; ++}; ++ ++struct cgroup; ++ ++struct cgroup_subsys; ++ ++struct cgroup_subsys_state { ++ struct cgroup *cgroup; ++ struct cgroup_subsys *ss; ++ struct percpu_ref refcnt; ++ struct list_head sibling; ++ struct list_head children; ++ struct list_head rstat_css_node; ++ int id; ++ unsigned int flags; ++ u64 serial_nr; ++ atomic_t online_cnt; ++ struct work_struct destroy_work; ++ struct rcu_work destroy_rwork; ++ struct cgroup_subsys_state *parent; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct mem_cgroup_id { ++ int id; ++ refcount_t ref; ++ u64 kabi_reserved1; ++}; ++ ++struct page_counter { ++ atomic_long_t usage; ++ long unsigned int min; ++ long unsigned int low; ++ long unsigned int high; + long unsigned int max; -+ phys_addr_t total_size; -+ struct memblock_region *regions; -+ char *name; ++ struct page_counter *parent; ++ long unsigned int emin; ++ atomic_long_t min_usage; ++ atomic_long_t children_min_usage; ++ long unsigned int elow; ++ atomic_long_t low_usage; ++ atomic_long_t children_low_usage; ++ long unsigned int watermark; ++ long unsigned int failcnt; +}; + -+struct memblock { -+ bool bottom_up; -+ phys_addr_t current_limit; -+ struct memblock_type memory; -+ struct memblock_type reserved; ++struct vmpressure { ++ long unsigned int scanned; ++ long unsigned int reclaimed; ++ long unsigned int tree_scanned; ++ long unsigned int tree_reclaimed; ++ spinlock_t sr_lock; ++ struct list_head events; ++ struct mutex events_lock; ++ struct work_struct work; ++}; ++ ++struct cgroup_file { ++ struct kernfs_node *kn; ++ long unsigned int notified_at; ++ struct timer_list notify_timer; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct mem_cgroup_threshold_ary; ++ ++struct mem_cgroup_thresholds { ++ struct mem_cgroup_threshold_ary *primary; ++ struct mem_cgroup_threshold_ary *spare; ++}; ++ ++struct memcg_padding { ++ char x[0]; ++}; ++ ++struct memcg_vmstats { ++ long int state[40]; ++ long unsigned int events[96]; ++ long int state_pending[40]; ++ long unsigned int events_pending[96]; ++}; ++ ++enum memcg_kmem_state { ++ KMEM_NONE = 0, ++ KMEM_ALLOCATED = 1, ++ KMEM_ONLINE = 2, ++}; ++ ++struct percpu_counter { ++ raw_spinlock_t lock; ++ s64 count; ++ struct list_head list; ++ s32 *counters; ++}; ++ ++struct fprop_global { ++ struct percpu_counter events; ++ unsigned int period; ++ seqcount_t sequence; ++}; ++ ++struct wb_domain { ++ spinlock_t lock; ++ struct fprop_global completions; ++ struct timer_list period_timer; ++ long unsigned int period_time; ++ long unsigned int dirty_limit_tstamp; ++ long unsigned int dirty_limit; ++}; ++ ++struct wb_completion { ++ atomic_t cnt; ++ wait_queue_head_t *waitq; ++}; ++ ++struct memcg_cgwb_frn { ++ u64 bdi_id; ++ int memcg_id; ++ u64 at; ++ struct wb_completion done; ++}; ++ ++struct obj_cgroup; ++ ++struct memcg_vmstats_percpu; ++ ++struct dhugetlb_pool; ++ ++struct mem_cgroup_per_node; ++ ++struct mem_cgroup { ++ struct cgroup_subsys_state css; ++ struct mem_cgroup_id id; ++ struct page_counter memory; ++ union { ++ struct page_counter swap; ++ struct page_counter memsw; ++ }; ++ struct page_counter kmem; ++ struct page_counter tcpmem; ++ struct work_struct high_work; ++ long unsigned int soft_limit; ++ struct vmpressure vmpressure; ++ bool use_hierarchy; ++ bool oom_group; ++ bool oom_lock; ++ int under_oom; ++ int swappiness; ++ int oom_kill_disable; ++ struct cgroup_file events_file; ++ struct cgroup_file events_local_file; ++ struct cgroup_file swap_events_file; ++ struct mutex thresholds_lock; ++ struct mem_cgroup_thresholds thresholds; ++ struct mem_cgroup_thresholds memsw_thresholds; ++ struct list_head oom_notify; ++ long unsigned int move_charge_at_immigrate; ++ spinlock_t move_lock; ++ long unsigned int move_lock_flags; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct memcg_padding _pad1_; ++ struct memcg_vmstats vmstats; ++ atomic_long_t memory_events[8]; ++ atomic_long_t memory_events_local[8]; ++ long unsigned int socket_pressure; ++ bool tcpmem_active; ++ int tcpmem_pressure; ++ int memcg_priority; ++ int kmemcg_id; ++ enum memcg_kmem_state kmem_state; ++ struct obj_cgroup *objcg; ++ struct list_head objcg_list; ++ long: 64; ++ struct memcg_padding _pad2_; ++ atomic_t moving_account; ++ struct task_struct *move_lock_task; ++ struct memcg_vmstats_percpu *vmstats_percpu; ++ struct list_head cgwb_list; ++ struct wb_domain cgwb_domain; ++ struct memcg_cgwb_frn cgwb_frn[4]; ++ struct list_head event_list; ++ spinlock_t event_list_lock; ++ struct deferred_split deferred_split_queue; ++ struct dhugetlb_pool *hpool; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ struct mem_cgroup_per_node *nodeinfo[0]; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct fs_pin; ++ ++struct pid_namespace { ++ struct kref kref; ++ struct idr idr; ++ struct callback_head rcu; ++ unsigned int pid_allocated; ++ struct task_struct *child_reaper; ++ struct kmem_cache *pid_cachep; ++ unsigned int level; ++ struct pid_namespace *parent; ++ struct fs_pin *bacct; ++ struct user_namespace *user_ns; ++ struct ucounts *ucounts; ++ int pid_max; ++ int reboot; ++ struct ns_common ns; ++}; ++ ++struct task_cputime { ++ u64 stime; ++ u64 utime; ++ long long unsigned int sum_exec_runtime; ++}; ++ ++struct uts_namespace; ++ ++struct ipc_namespace; ++ ++struct mnt_namespace; ++ ++struct net; ++ ++struct time_namespace; ++ ++struct cgroup_namespace; ++ ++struct nsproxy { ++ atomic_t count; ++ struct uts_namespace *uts_ns; ++ struct ipc_namespace *ipc_ns; ++ struct mnt_namespace *mnt_ns; ++ struct pid_namespace *pid_ns_for_children; ++ struct net *net_ns; ++ struct time_namespace *time_ns; ++ struct time_namespace *time_ns_for_children; ++ struct cgroup_namespace *cgroup_ns; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct bio; ++ ++struct bio_list { ++ struct bio *head; ++ struct bio *tail; ++}; ++ ++struct blk_plug { ++ struct list_head mq_list; ++ struct list_head cb_list; ++ short unsigned int rq_count; ++ bool multiple_queues; ++ bool nowait; ++}; ++ ++struct reclaim_state { ++ long unsigned int reclaimed_slab; ++}; ++ ++struct fprop_local_percpu { ++ struct percpu_counter events; ++ unsigned int period; ++ raw_spinlock_t lock; ++}; ++ ++enum wb_reason { ++ WB_REASON_BACKGROUND = 0, ++ WB_REASON_VMSCAN = 1, ++ WB_REASON_SYNC = 2, ++ WB_REASON_PERIODIC = 3, ++ WB_REASON_LAPTOP_TIMER = 4, ++ WB_REASON_FS_FREE_SPACE = 5, ++ WB_REASON_FORKER_THREAD = 6, ++ WB_REASON_FOREIGN_FLUSH = 7, ++ WB_REASON_MAX = 8, ++}; ++ ++struct bdi_writeback { ++ struct backing_dev_info *bdi; ++ long unsigned int state; ++ long unsigned int last_old_flush; ++ struct list_head b_dirty; ++ struct list_head b_io; ++ struct list_head b_more_io; ++ struct list_head b_dirty_time; ++ spinlock_t list_lock; ++ struct percpu_counter stat[4]; ++ long unsigned int congested; ++ long unsigned int bw_time_stamp; ++ long unsigned int dirtied_stamp; ++ long unsigned int written_stamp; ++ long unsigned int write_bandwidth; ++ long unsigned int avg_write_bandwidth; ++ long unsigned int dirty_ratelimit; ++ long unsigned int balanced_dirty_ratelimit; ++ struct fprop_local_percpu completions; ++ int dirty_exceeded; ++ enum wb_reason start_all_reason; ++ spinlock_t work_lock; ++ struct list_head work_list; ++ struct delayed_work dwork; ++ long unsigned int dirty_sleep; ++ struct list_head bdi_node; ++ struct percpu_ref refcnt; ++ struct fprop_local_percpu memcg_completions; ++ struct cgroup_subsys_state *memcg_css; ++ struct cgroup_subsys_state *blkcg_css; ++ struct list_head memcg_node; ++ struct list_head blkcg_node; ++ union { ++ struct work_struct release_work; ++ struct callback_head rcu; ++ }; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct device; ++ ++struct backing_dev_info { ++ u64 id; ++ struct rb_node rb_node; ++ struct list_head bdi_list; ++ long unsigned int ra_pages; ++ long unsigned int io_pages; ++ struct kref refcnt; ++ unsigned int capabilities; ++ unsigned int min_ratio; ++ unsigned int max_ratio; ++ unsigned int max_prop_frac; ++ atomic_long_t tot_write_bandwidth; ++ struct bdi_writeback wb; ++ struct list_head wb_list; ++ struct xarray cgwb_tree; ++ struct mutex cgwb_release_mutex; ++ struct rw_semaphore wb_switch_rwsem; ++ wait_queue_head_t wb_waitq; ++ struct device *dev; ++ char dev_name[64]; ++ struct device *owner; ++ struct timer_list laptop_mode_wb_timer; ++ struct dentry *debug_dir; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct css_set { ++ struct cgroup_subsys_state *subsys[14]; ++ refcount_t refcount; ++ struct css_set *dom_cset; ++ struct cgroup *dfl_cgrp; ++ int nr_tasks; ++ struct list_head tasks; ++ struct list_head mg_tasks; ++ struct list_head dying_tasks; ++ struct list_head task_iters; ++ struct list_head e_cset_node[14]; ++ struct list_head threaded_csets; ++ struct list_head threaded_csets_node; ++ struct hlist_node hlist; ++ struct list_head cgrp_links; ++ struct list_head mg_preload_node; ++ struct list_head mg_node; ++ struct cgroup *mg_src_cgrp; ++ struct cgroup *mg_dst_cgrp; ++ struct css_set *mg_dst_cset; ++ bool dead; ++ struct callback_head callback_head; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++typedef u32 compat_uptr_t; ++ ++struct compat_robust_list { ++ compat_uptr_t next; ++}; ++ ++typedef s32 compat_long_t; ++ ++struct compat_robust_list_head { ++ struct compat_robust_list list; ++ compat_long_t futex_offset; ++ compat_uptr_t list_op_pending; ++}; ++ ++struct perf_event_groups { ++ struct rb_root tree; ++ u64 index; ++}; ++ ++struct perf_event_context { ++ struct pmu *pmu; ++ raw_spinlock_t lock; ++ struct mutex mutex; ++ struct list_head active_ctx_list; ++ struct perf_event_groups pinned_groups; ++ struct perf_event_groups flexible_groups; ++ struct list_head event_list; ++ struct list_head pinned_active; ++ struct list_head flexible_active; ++ int nr_events; ++ int nr_active; ++ int is_active; ++ int nr_stat; ++ int nr_freq; ++ int rotate_disable; ++ int rotate_necessary; ++ refcount_t refcount; ++ struct task_struct *task; ++ u64 time; ++ u64 timestamp; ++ struct perf_event_context *parent_ctx; ++ u64 parent_gen; ++ u64 generation; ++ int pin_count; ++ int nr_cgroups; ++ void *task_ctx_data; ++ struct callback_head callback_head; ++}; ++ ++struct task_delay_info { ++ raw_spinlock_t lock; ++ unsigned int flags; ++ u64 blkio_start; ++ u64 blkio_delay; ++ u64 swapin_delay; ++ u32 blkio_count; ++ u32 swapin_count; ++ u64 freepages_start; ++ u64 freepages_delay; ++ u64 thrashing_start; ++ u64 thrashing_delay; ++ u32 freepages_count; ++ u32 thrashing_count; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct ftrace_ret_stack { ++ long unsigned int ret; ++ long unsigned int func; ++ long long unsigned int calltime; ++ long long unsigned int subtime; ++ long unsigned int *retp; ++}; ++ ++struct blk_integrity_profile; ++ ++struct blk_integrity { ++ const struct blk_integrity_profile *profile; ++ unsigned char flags; ++ unsigned char tuple_size; ++ unsigned char interval_exp; ++ unsigned char tag_size; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++enum rpm_status { ++ RPM_ACTIVE = 0, ++ RPM_RESUMING = 1, ++ RPM_SUSPENDED = 2, ++ RPM_SUSPENDING = 3, ++}; ++ ++struct blk_rq_stat { ++ u64 mean; ++ u64 min; ++ u64 max; ++ u32 nr_samples; ++ u64 batch; ++}; ++ ++enum blk_zoned_model { ++ BLK_ZONED_NONE = 0, ++ BLK_ZONED_HA = 1, ++ BLK_ZONED_HM = 2, ++}; ++ ++struct queue_limits { ++ long unsigned int bounce_pfn; ++ long unsigned int seg_boundary_mask; ++ long unsigned int virt_boundary_mask; ++ unsigned int max_hw_sectors; ++ unsigned int max_dev_sectors; ++ unsigned int chunk_sectors; ++ unsigned int max_sectors; ++ unsigned int max_segment_size; ++ unsigned int physical_block_size; ++ unsigned int logical_block_size; ++ unsigned int alignment_offset; ++ unsigned int io_min; ++ unsigned int io_opt; ++ unsigned int max_discard_sectors; ++ unsigned int max_hw_discard_sectors; ++ unsigned int max_write_same_sectors; ++ unsigned int max_write_zeroes_sectors; ++ unsigned int max_zone_append_sectors; ++ unsigned int discard_granularity; ++ unsigned int discard_alignment; ++ short unsigned int max_segments; ++ short unsigned int max_integrity_segments; ++ short unsigned int max_discard_segments; ++ unsigned char misaligned; ++ unsigned char discard_misaligned; ++ unsigned char raid_partial_stripes_expensive; ++ enum blk_zoned_model zoned; ++ u64 kabi_reserved1; ++}; ++ ++struct bsg_ops; ++ ++struct bsg_class_device { ++ struct device *class_dev; ++ int minor; ++ struct request_queue *queue; ++ const struct bsg_ops *ops; ++}; ++ ++typedef void *mempool_alloc_t(gfp_t, void *); ++ ++typedef void mempool_free_t(void *, void *); ++ ++struct mempool_s { ++ spinlock_t lock; ++ int min_nr; ++ int curr_nr; ++ void **elements; ++ void *pool_data; ++ mempool_alloc_t *alloc; ++ mempool_free_t *free; ++ wait_queue_head_t wait; ++}; ++ ++typedef struct mempool_s mempool_t; ++ ++struct bio_set { ++ struct kmem_cache *bio_slab; ++ unsigned int front_pad; ++ mempool_t bio_pool; ++ mempool_t bvec_pool; ++ mempool_t bio_integrity_pool; ++ mempool_t bvec_integrity_pool; ++ spinlock_t rescue_lock; ++ struct bio_list rescue_list; ++ struct work_struct rescue_work; ++ struct workqueue_struct *rescue_workqueue; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct request; ++ ++struct elevator_queue; ++ ++struct blk_queue_stats; ++ ++struct rq_qos; ++ ++struct blk_mq_ops; ++ ++struct blk_mq_ctx; ++ ++struct blk_mq_hw_ctx; ++ ++struct blk_stat_callback; ++ ++struct blkcg_gq; ++ ++struct blk_trace; ++ ++struct blk_flush_queue; ++ ++struct throtl_data; ++ ++struct blk_mq_tag_set; ++ ++struct request_queue { ++ struct request *last_merge; ++ struct elevator_queue *elevator; ++ struct percpu_ref q_usage_counter; ++ struct blk_queue_stats *stats; ++ struct rq_qos *rq_qos; ++ const struct blk_mq_ops *mq_ops; ++ struct blk_mq_ctx *queue_ctx; ++ unsigned int queue_depth; ++ struct blk_mq_hw_ctx **queue_hw_ctx; ++ unsigned int nr_hw_queues; ++ struct backing_dev_info *backing_dev_info; ++ void *queuedata; ++ long unsigned int queue_flags; ++ atomic_t pm_only; ++ int id; ++ gfp_t bounce_gfp; ++ spinlock_t queue_lock; ++ struct kobject kobj; ++ struct kobject *mq_kobj; ++ struct blk_integrity integrity; ++ struct device *dev; ++ enum rpm_status rpm_status; ++ unsigned int nr_pending; ++ long unsigned int nr_requests; ++ unsigned int dma_pad_mask; ++ unsigned int dma_alignment; ++ unsigned int rq_timeout; ++ int poll_nsec; ++ struct blk_stat_callback *poll_cb; ++ struct blk_rq_stat poll_stat[16]; ++ struct timer_list timeout; ++ struct work_struct timeout_work; ++ atomic_t nr_active_requests_shared_sbitmap; ++ struct list_head icq_list; ++ long unsigned int blkcg_pols[1]; ++ struct blkcg_gq *root_blkg; ++ struct list_head blkg_list; ++ struct queue_limits limits; ++ unsigned int required_elevator_features; ++ unsigned int nr_zones; ++ long unsigned int *conv_zones_bitmap; ++ long unsigned int *seq_zones_wlock; ++ unsigned int max_open_zones; ++ unsigned int max_active_zones; ++ unsigned int sg_timeout; ++ unsigned int sg_reserved_size; ++ int node; ++ struct mutex debugfs_mutex; ++ struct blk_trace *blk_trace; ++ struct blk_flush_queue *fq; ++ struct list_head requeue_list; ++ spinlock_t requeue_lock; ++ struct delayed_work requeue_work; ++ struct mutex sysfs_lock; ++ struct mutex sysfs_dir_lock; ++ struct list_head unused_hctx_list; ++ spinlock_t unused_hctx_lock; ++ int mq_freeze_depth; ++ struct bsg_class_device bsg_dev; ++ struct throtl_data *td; ++ struct callback_head callback_head; ++ wait_queue_head_t mq_freeze_wq; ++ struct mutex mq_freeze_lock; ++ int quiesce_depth; ++ struct blk_mq_tag_set *tag_set; ++ struct list_head tag_set_list; ++ struct bio_set bio_split; ++ struct dentry *debugfs_dir; ++ struct dentry *sched_debugfs_dir; ++ struct dentry *rqos_debugfs_dir; ++ bool mq_sysfs_init_done; ++ size_t cmd_size; ++ u64 write_hints[5]; ++ long unsigned int dtag_wait_time; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct bpf_run_ctx {}; ++ ++struct cgroup_base_stat { ++ struct task_cputime cputime; ++}; ++ ++struct psi_group_cpu; ++ ++struct psi_group { ++ struct mutex avgs_lock; ++ struct psi_group_cpu *pcpu; ++ u64 avg_total[6]; ++ u64 avg_last_update; ++ u64 avg_next_update; ++ struct delayed_work avgs_work; ++ u64 total[12]; ++ long unsigned int avg[18]; ++ struct task_struct *poll_task; ++ struct timer_list poll_timer; ++ wait_queue_head_t poll_wait; ++ atomic_t poll_wakeup; ++ struct mutex trigger_lock; ++ struct list_head triggers; ++ u32 nr_triggers[6]; ++ u32 poll_states; ++ u64 poll_min_period; ++ u64 polling_total[6]; ++ u64 polling_next_update; ++ u64 polling_until; ++}; ++ ++struct cgroup_bpf { ++ struct bpf_prog_array *effective[31]; ++ struct list_head progs[31]; ++ u32 flags[31]; ++ struct list_head storages; ++ struct bpf_prog_array *inactive; ++ struct percpu_ref refcnt; ++ struct work_struct release_work; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ u64 kabi_reserved9; ++ u64 kabi_reserved10; ++ u64 kabi_reserved11; ++ u64 kabi_reserved12; ++ u64 kabi_reserved13; ++ u64 kabi_reserved14; ++ u64 kabi_reserved15; ++ u64 kabi_reserved16; ++}; ++ ++struct cgroup_freezer_state { ++ bool freeze; ++ int e_freeze; ++ int nr_frozen_descendants; ++ int nr_frozen_tasks; ++}; ++ ++struct cgroup_root; ++ ++struct cgroup_rstat_cpu; ++ ++struct cgroup { ++ struct cgroup_subsys_state self; ++ long unsigned int flags; ++ int level; ++ int max_depth; ++ int nr_descendants; ++ int nr_dying_descendants; ++ int max_descendants; ++ int nr_populated_csets; ++ int nr_populated_domain_children; ++ int nr_populated_threaded_children; ++ int nr_threaded_children; ++ struct kernfs_node *kn; ++ struct cgroup_file procs_file; ++ struct cgroup_file events_file; ++ u16 subtree_control; ++ u16 subtree_ss_mask; ++ u16 old_subtree_control; ++ u16 old_subtree_ss_mask; ++ struct cgroup_subsys_state *subsys[14]; ++ struct cgroup_root *root; ++ struct list_head cset_links; ++ struct list_head e_csets[14]; ++ struct cgroup *dom_cgrp; ++ struct cgroup *old_dom_cgrp; ++ struct cgroup_rstat_cpu *rstat_cpu; ++ struct list_head rstat_css_list; ++ struct cgroup_base_stat last_bstat; ++ struct cgroup_base_stat bstat; ++ struct prev_cputime prev_cputime; ++ struct list_head pidlists; ++ struct mutex pidlist_mutex; ++ wait_queue_head_t offline_waitq; ++ struct work_struct release_agent_work; ++ struct psi_group psi; ++ struct cgroup_bpf bpf; ++ atomic_t congestion_count; ++ struct cgroup_freezer_state freezer; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 ancestor_ids[0]; ++}; ++ ++struct taskstats { ++ __u16 version; ++ __u32 ac_exitcode; ++ __u8 ac_flag; ++ __u8 ac_nice; ++ __u64 cpu_count; ++ __u64 cpu_delay_total; ++ __u64 blkio_count; ++ __u64 blkio_delay_total; ++ __u64 swapin_count; ++ __u64 swapin_delay_total; ++ __u64 cpu_run_real_total; ++ __u64 cpu_run_virtual_total; ++ char ac_comm[32]; ++ __u8 ac_sched; ++ __u8 ac_pad[3]; ++ int: 32; ++ __u32 ac_uid; ++ __u32 ac_gid; ++ __u32 ac_pid; ++ __u32 ac_ppid; ++ __u32 ac_btime; ++ __u64 ac_etime; ++ __u64 ac_utime; ++ __u64 ac_stime; ++ __u64 ac_minflt; ++ __u64 ac_majflt; ++ __u64 coremem; ++ __u64 virtmem; ++ __u64 hiwater_rss; ++ __u64 hiwater_vm; ++ __u64 read_char; ++ __u64 write_char; ++ __u64 read_syscalls; ++ __u64 write_syscalls; ++ __u64 read_bytes; ++ __u64 write_bytes; ++ __u64 cancelled_write_bytes; ++ __u64 nvcsw; ++ __u64 nivcsw; ++ __u64 ac_utimescaled; ++ __u64 ac_stimescaled; ++ __u64 cpu_scaled_run_real_total; ++ __u64 freepages_count; ++ __u64 freepages_delay_total; ++ __u64 thrashing_count; ++ __u64 thrashing_delay_total; ++ __u64 ac_btime64; ++}; ++ ++typedef struct { ++ __u8 b[16]; ++} guid_t; ++ ++struct wait_page_queue { ++ struct page *page; ++ int bit_nr; ++ wait_queue_entry_t wait; ++}; ++ ++enum writeback_sync_modes { ++ WB_SYNC_NONE = 0, ++ WB_SYNC_ALL = 1, ++}; ++ ++struct writeback_control { ++ long int nr_to_write; ++ long int pages_skipped; ++ loff_t range_start; ++ loff_t range_end; ++ enum writeback_sync_modes sync_mode; ++ unsigned int for_kupdate: 1; ++ unsigned int for_background: 1; ++ unsigned int tagged_writepages: 1; ++ unsigned int for_reclaim: 1; ++ unsigned int range_cyclic: 1; ++ unsigned int for_sync: 1; ++ unsigned int no_cgroup_owner: 1; ++ unsigned int punt_to_cgroup: 1; ++ struct bdi_writeback *wb; ++ struct inode *inode; ++ int wb_id; ++ int wb_lcand_id; ++ int wb_tcand_id; ++ size_t wb_bytes; ++ size_t wb_lcand_bytes; ++ size_t wb_tcand_bytes; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct readahead_control { ++ struct file *file; ++ struct address_space *mapping; ++ long unsigned int _index; ++ unsigned int _nr_pages; ++ unsigned int _batch_count; ++}; ++ ++struct iovec; ++ ++struct kvec; ++ ++struct bio_vec; ++ ++struct iov_iter { ++ unsigned int type; ++ size_t iov_offset; ++ size_t count; ++ union { ++ const struct iovec *iov; ++ const struct kvec *kvec; ++ const struct bio_vec *bvec; ++ struct pipe_inode_info *pipe; ++ }; ++ union { ++ long unsigned int nr_segs; ++ struct { ++ unsigned int head; ++ unsigned int start_head; ++ }; ++ }; ++}; ++ ++struct swap_cluster_info { ++ spinlock_t lock; ++ unsigned int data: 24; ++ unsigned int flags: 8; ++}; ++ ++struct swap_cluster_list { ++ struct swap_cluster_info head; ++ struct swap_cluster_info tail; ++}; ++ ++struct percpu_cluster; ++ ++struct swap_info_struct { ++ long unsigned int flags; ++ short int prio; ++ struct plist_node list; ++ signed char type; ++ unsigned int max; ++ unsigned char *swap_map; ++ struct swap_cluster_info *cluster_info; ++ struct swap_cluster_list free_clusters; ++ unsigned int lowest_bit; ++ unsigned int highest_bit; ++ unsigned int pages; ++ unsigned int inuse_pages; ++ unsigned int cluster_next; ++ unsigned int cluster_nr; ++ unsigned int *cluster_next_cpu; ++ struct percpu_cluster *percpu_cluster; ++ struct rb_root swap_extent_root; ++ struct block_device *bdev; ++ struct file *swap_file; ++ unsigned int old_block_size; ++ long unsigned int *frontswap_map; ++ atomic_t frontswap_pages; ++ spinlock_t lock; ++ spinlock_t cont_lock; ++ struct work_struct discard_work; ++ struct swap_cluster_list discard_clusters; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ struct plist_node avail_lists[0]; ++}; ++ ++struct hd_struct; ++ ++struct gendisk; ++ ++struct block_device { ++ dev_t bd_dev; ++ int bd_openers; ++ struct inode *bd_inode; ++ struct super_block *bd_super; ++ struct mutex bd_mutex; ++ void *bd_claiming; ++ void *bd_holder; ++ int bd_holders; ++ bool bd_write_holder; ++ struct list_head bd_holder_disks; ++ struct block_device *bd_contains; ++ u8 bd_partno; ++ struct hd_struct *bd_part; ++ unsigned int bd_part_count; ++ spinlock_t bd_size_lock; ++ struct gendisk *bd_disk; ++ struct backing_dev_info *bd_bdi; ++ int bd_fsfreeze_count; ++ struct mutex bd_fsfreeze_mutex; ++ union { ++ struct { ++ int bd_write_openers; ++ int bd_part_write_openers; ++ }; ++ struct { ++ u64 kabi_reserved1; ++ } kabi_hidden_52; ++ union { }; ++ }; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++}; ++ ++struct cdev { ++ struct kobject kobj; ++ struct module *owner; ++ const struct file_operations *ops; ++ struct list_head list; ++ dev_t dev; ++ unsigned int count; ++}; ++ ++struct fc_log; ++ ++struct p_log { ++ const char *prefix; ++ struct fc_log *log; ++}; ++ ++enum fs_context_purpose { ++ FS_CONTEXT_FOR_MOUNT = 0, ++ FS_CONTEXT_FOR_SUBMOUNT = 1, ++ FS_CONTEXT_FOR_RECONFIGURE = 2, ++}; ++ ++enum fs_context_phase { ++ FS_CONTEXT_CREATE_PARAMS = 0, ++ FS_CONTEXT_CREATING = 1, ++ FS_CONTEXT_AWAITING_MOUNT = 2, ++ FS_CONTEXT_AWAITING_RECONF = 3, ++ FS_CONTEXT_RECONF_PARAMS = 4, ++ FS_CONTEXT_RECONFIGURING = 5, ++ FS_CONTEXT_FAILED = 6, ++}; ++ ++struct fs_context_operations; ++ ++struct fs_context { ++ const struct fs_context_operations *ops; ++ struct mutex uapi_mutex; ++ struct file_system_type *fs_type; ++ void *fs_private; ++ void *sget_key; ++ struct dentry *root; ++ struct user_namespace *user_ns; ++ struct net *net_ns; ++ const struct cred *cred; ++ struct p_log log; ++ const char *source; ++ void *security; ++ void *s_fs_info; ++ unsigned int sb_flags; ++ unsigned int sb_flags_mask; ++ unsigned int s_iflags; ++ unsigned int lsm_flags; ++ enum fs_context_purpose purpose: 8; ++ enum fs_context_phase phase: 8; ++ bool need_free: 1; ++ bool global: 1; ++ bool oldapi: 1; ++}; ++ ++struct audit_names; ++ ++struct filename { ++ const char *name; ++ const char *uptr; ++ int refcnt; ++ struct audit_names *aname; ++ const char iname[0]; ++}; ++ ++typedef u8 blk_status_t; ++ ++struct bvec_iter { ++ sector_t bi_sector; ++ unsigned int bi_size; ++ unsigned int bi_idx; ++ unsigned int bi_bvec_done; ++}; ++ ++typedef void bio_end_io_t(struct bio *); ++ ++struct bio_issue { ++ u64 value; ++}; ++ ++struct bio_vec { ++ struct page *bv_page; ++ unsigned int bv_len; ++ unsigned int bv_offset; ++}; ++ ++struct bio_integrity_payload; ++ ++struct bio { ++ struct bio *bi_next; ++ struct gendisk *bi_disk; ++ unsigned int bi_opf; ++ short unsigned int bi_flags; ++ short unsigned int bi_ioprio; ++ short unsigned int bi_write_hint; ++ blk_status_t bi_status; ++ u8 bi_partno; ++ atomic_t __bi_remaining; ++ struct bvec_iter bi_iter; ++ bio_end_io_t *bi_end_io; ++ void *bi_private; ++ struct blkcg_gq *bi_blkg; ++ struct bio_issue bi_issue; ++ union { ++ struct bio_integrity_payload *bi_integrity; ++ }; ++ short unsigned int bi_vcnt; ++ short unsigned int bi_max_vecs; ++ atomic_t __bi_cnt; ++ struct bio_vec *bi_io_vec; ++ struct bio_set *bi_pool; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ struct bio_vec bi_inline_vecs[0]; ++}; ++ ++struct linux_binprm { ++ struct vm_area_struct *vma; ++ long unsigned int vma_pages; ++ struct mm_struct *mm; ++ long unsigned int p; ++ long unsigned int argmin; ++ unsigned int have_execfd: 1; ++ unsigned int execfd_creds: 1; ++ unsigned int secureexec: 1; ++ unsigned int point_of_no_return: 1; ++ struct file *executable; ++ struct file *interpreter; ++ struct file *file; ++ struct cred *cred; ++ int unsafe; ++ unsigned int per_clear; ++ int argc; ++ int envc; ++ const char *filename; ++ const char *interp; ++ const char *fdpath; ++ unsigned int interp_flags; ++ int execfd; ++ long unsigned int loader; ++ long unsigned int exec; ++ struct rlimit rlim_stack; ++ char buf[256]; ++}; ++ ++struct coredump_params { ++ const kernel_siginfo_t *siginfo; ++ struct pt_regs *regs; ++ struct file *file; ++ long unsigned int limit; ++ long unsigned int mm_flags; ++ loff_t written; ++ loff_t pos; ++}; ++ ++struct pm_message { ++ int event; ++}; ++ ++typedef struct pm_message pm_message_t; ++ ++struct dev_pm_ops { ++ int (*prepare)(struct device *); ++ void (*complete)(struct device *); ++ int (*suspend)(struct device *); ++ int (*resume)(struct device *); ++ int (*freeze)(struct device *); ++ int (*thaw)(struct device *); ++ int (*poweroff)(struct device *); ++ int (*restore)(struct device *); ++ int (*suspend_late)(struct device *); ++ int (*resume_early)(struct device *); ++ int (*freeze_late)(struct device *); ++ int (*thaw_early)(struct device *); ++ int (*poweroff_late)(struct device *); ++ int (*restore_early)(struct device *); ++ int (*suspend_noirq)(struct device *); ++ int (*resume_noirq)(struct device *); ++ int (*freeze_noirq)(struct device *); ++ int (*thaw_noirq)(struct device *); ++ int (*poweroff_noirq)(struct device *); ++ int (*restore_noirq)(struct device *); ++ int (*runtime_suspend)(struct device *); ++ int (*runtime_resume)(struct device *); ++ int (*runtime_idle)(struct device *); ++}; ++ ++enum dl_dev_state { ++ DL_DEV_NO_DRIVER = 0, ++ DL_DEV_PROBING = 1, ++ DL_DEV_DRIVER_BOUND = 2, ++ DL_DEV_UNBINDING = 3, ++}; ++ ++struct dev_links_info { ++ struct list_head suppliers; ++ struct list_head consumers; ++ struct list_head needs_suppliers; ++ struct list_head defer_hook; ++ bool need_for_probe; ++ enum dl_dev_state status; ++}; ++ ++enum rpm_request { ++ RPM_REQ_NONE = 0, ++ RPM_REQ_IDLE = 1, ++ RPM_REQ_SUSPEND = 2, ++ RPM_REQ_AUTOSUSPEND = 3, ++ RPM_REQ_RESUME = 4, ++}; ++ ++struct wakeup_source; ++ ++struct wake_irq; ++ ++struct pm_subsys_data; ++ ++struct dev_pm_qos; ++ ++struct dev_pm_info { ++ pm_message_t power_state; ++ unsigned int can_wakeup: 1; ++ unsigned int async_suspend: 1; ++ bool in_dpm_list: 1; ++ bool is_prepared: 1; ++ bool is_suspended: 1; ++ bool is_noirq_suspended: 1; ++ bool is_late_suspended: 1; ++ bool no_pm: 1; ++ bool early_init: 1; ++ bool direct_complete: 1; ++ u32 driver_flags; ++ spinlock_t lock; ++ struct list_head entry; ++ struct completion completion; ++ struct wakeup_source *wakeup; ++ bool wakeup_path: 1; ++ bool syscore: 1; ++ bool no_pm_callbacks: 1; ++ unsigned int must_resume: 1; ++ unsigned int may_skip_resume: 1; ++ struct hrtimer suspend_timer; ++ u64 timer_expires; ++ struct work_struct work; ++ wait_queue_head_t wait_queue; ++ struct wake_irq *wakeirq; ++ atomic_t usage_count; ++ atomic_t child_count; ++ unsigned int disable_depth: 3; ++ unsigned int idle_notification: 1; ++ unsigned int request_pending: 1; ++ unsigned int deferred_resume: 1; ++ unsigned int needs_force_resume: 1; ++ unsigned int runtime_auto: 1; ++ bool ignore_children: 1; ++ unsigned int no_callbacks: 1; ++ unsigned int irq_safe: 1; ++ unsigned int use_autosuspend: 1; ++ unsigned int timer_autosuspends: 1; ++ unsigned int memalloc_noio: 1; ++ unsigned int links_count; ++ enum rpm_request request; ++ enum rpm_status runtime_status; ++ int runtime_error; ++ int autosuspend_delay; ++ u64 last_busy; ++ u64 active_time; ++ u64 suspended_time; ++ u64 accounting_timestamp; ++ struct pm_subsys_data *subsys_data; ++ void (*set_latency_tolerance)(struct device *, s32); ++ struct dev_pm_qos *qos; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct dev_archdata {}; ++ ++struct device_private; ++ ++struct device_type; ++ ++struct bus_type; ++ ++struct device_driver; ++ ++struct dev_pm_domain; ++ ++struct dev_pin_info; ++ ++struct dma_map_ops; ++ ++struct bus_dma_region; ++ ++struct device_dma_parameters; ++ ++struct device_node; ++ ++struct class; ++ ++struct iommu_group; ++ ++struct dev_iommu; ++ ++struct device_extended_resvd; ++ ++struct device { ++ struct kobject kobj; ++ struct device *parent; ++ struct device_private *p; ++ const char *init_name; ++ const struct device_type *type; ++ struct bus_type *bus; ++ struct device_driver *driver; ++ void *platform_data; ++ void *driver_data; ++ struct mutex mutex; ++ struct dev_links_info links; ++ struct dev_pm_info power; ++ struct dev_pm_domain *pm_domain; ++ struct irq_domain *msi_domain; ++ struct dev_pin_info *pins; ++ raw_spinlock_t msi_lock; ++ struct list_head msi_list; ++ const struct dma_map_ops *dma_ops; ++ u64 *dma_mask; ++ u64 coherent_dma_mask; ++ u64 bus_dma_limit; ++ const struct bus_dma_region *dma_range_map; ++ struct device_dma_parameters *dma_parms; ++ struct list_head dma_pools; ++ struct dev_archdata archdata; ++ struct device_node *of_node; ++ struct fwnode_handle *fwnode; ++ int numa_node; ++ dev_t devt; ++ u32 id; ++ spinlock_t devres_lock; ++ struct list_head devres_head; ++ struct class *class; ++ const struct attribute_group **groups; ++ void (*release)(struct device *); ++ struct iommu_group *iommu_group; ++ struct dev_iommu *iommu; ++ bool offline_disabled: 1; ++ bool offline: 1; ++ bool of_node_reused: 1; ++ bool state_synced: 1; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ u64 kabi_reserved9; ++ u64 kabi_reserved10; ++ u64 kabi_reserved11; ++ u64 kabi_reserved12; ++ u64 kabi_reserved13; ++ u64 kabi_reserved14; ++ u64 kabi_reserved15; ++ u64 kabi_reserved16; ++ size_t device_extended_size_resvd; ++ struct device_extended_resvd *_resvd; ++}; ++ ++struct pm_domain_data; ++ ++struct pm_subsys_data { ++ spinlock_t lock; ++ unsigned int refcount; ++ struct list_head clock_list; ++ struct pm_domain_data *domain_data; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++}; ++ ++struct wakeup_source { ++ const char *name; ++ int id; ++ struct list_head entry; ++ spinlock_t lock; ++ struct wake_irq *wakeirq; ++ struct timer_list timer; ++ long unsigned int timer_expires; ++ ktime_t total_time; ++ ktime_t max_time; ++ ktime_t last_time; ++ ktime_t start_prevent_time; ++ ktime_t prevent_sleep_time; ++ long unsigned int event_count; ++ long unsigned int active_count; ++ long unsigned int relax_count; ++ long unsigned int expire_count; ++ long unsigned int wakeup_count; ++ struct device *dev; ++ bool active: 1; ++ bool autosleep_enabled: 1; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct dev_pm_domain { ++ struct dev_pm_ops ops; ++ int (*start)(struct device *); ++ void (*detach)(struct device *, bool); ++ int (*activate)(struct device *); ++ void (*sync)(struct device *); ++ void (*dismiss)(struct device *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct iommu_ops; ++ ++struct subsys_private; ++ ++struct bus_type { ++ const char *name; ++ const char *dev_name; ++ struct device *dev_root; ++ const struct attribute_group **bus_groups; ++ const struct attribute_group **dev_groups; ++ const struct attribute_group **drv_groups; ++ int (*match)(struct device *, struct device_driver *); ++ int (*uevent)(struct device *, struct kobj_uevent_env *); ++ int (*probe)(struct device *); ++ void (*sync_state)(struct device *); ++ int (*remove)(struct device *); ++ void (*shutdown)(struct device *); ++ int (*online)(struct device *); ++ int (*offline)(struct device *); ++ int (*suspend)(struct device *, pm_message_t); ++ int (*resume)(struct device *); ++ int (*num_vf)(struct device *); ++ int (*dma_configure)(struct device *); ++ const struct dev_pm_ops *pm; ++ const struct iommu_ops *iommu_ops; ++ struct subsys_private *p; ++ struct lock_class_key lock_key; ++ bool need_parent_lock; ++}; ++ ++enum probe_type { ++ PROBE_DEFAULT_STRATEGY = 0, ++ PROBE_PREFER_ASYNCHRONOUS = 1, ++ PROBE_FORCE_SYNCHRONOUS = 2, ++}; ++ ++struct of_device_id; ++ ++struct acpi_device_id; ++ ++struct driver_private; ++ ++struct device_driver_resvd; ++ ++struct device_driver { ++ const char *name; ++ struct bus_type *bus; ++ struct module *owner; ++ const char *mod_name; ++ bool suppress_bind_attrs; ++ enum probe_type probe_type; ++ const struct of_device_id *of_match_table; ++ const struct acpi_device_id *acpi_match_table; ++ int (*probe)(struct device *); ++ void (*sync_state)(struct device *); ++ int (*remove)(struct device *); ++ void (*shutdown)(struct device *); ++ int (*suspend)(struct device *, pm_message_t); ++ int (*resume)(struct device *); ++ const struct attribute_group **groups; ++ const struct attribute_group **dev_groups; ++ const struct dev_pm_ops *pm; ++ void (*coredump)(struct device *); ++ struct driver_private *p; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ size_t device_driver_size_resvd; ++ struct device_driver_resvd *_resvd; ++}; ++ ++enum iommu_cap { ++ IOMMU_CAP_CACHE_COHERENCY = 0, ++ IOMMU_CAP_INTR_REMAP = 1, ++ IOMMU_CAP_NOEXEC = 2, ++}; ++ ++typedef u64 dma_addr_t; ++ ++enum iommu_attr { ++ DOMAIN_ATTR_GEOMETRY = 0, ++ DOMAIN_ATTR_PAGING = 1, ++ DOMAIN_ATTR_WINDOWS = 2, ++ DOMAIN_ATTR_FSL_PAMU_STASH = 3, ++ DOMAIN_ATTR_FSL_PAMU_ENABLE = 4, ++ DOMAIN_ATTR_FSL_PAMUV1 = 5, ++ DOMAIN_ATTR_NESTING = 6, ++ DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE = 7, ++ DOMAIN_ATTR_MAX = 8, ++}; ++ ++enum iommu_dev_features { ++ IOMMU_DEV_FEAT_AUX = 0, ++ IOMMU_DEV_FEAT_SVA = 1, ++ IOMMU_DEV_FEAT_IOPF = 2, ++}; ++ ++struct iommu_domain; ++ ++struct iommu_iotlb_gather; ++ ++struct iommu_device; ++ ++struct iommu_resv_region; ++ ++struct of_phandle_args; ++ ++struct iommu_sva; ++ ++struct iommu_fault_event; ++ ++struct iommu_page_response; ++ ++struct iommu_cache_invalidate_info; ++ ++struct iommu_gpasid_bind_data; ++ ++struct iommu_pasid_table_config; ++ ++struct iommu_ops { ++ bool (*capable)(enum iommu_cap); ++ struct iommu_domain * (*domain_alloc)(unsigned int); ++ void (*domain_free)(struct iommu_domain *); ++ int (*attach_dev)(struct iommu_domain *, struct device *); ++ void (*detach_dev)(struct iommu_domain *, struct device *); ++ int (*map)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, int, gfp_t); ++ size_t (*unmap)(struct iommu_domain *, long unsigned int, size_t, struct iommu_iotlb_gather *); ++ void (*flush_iotlb_all)(struct iommu_domain *); ++ void (*iotlb_sync_map)(struct iommu_domain *, long unsigned int, size_t); ++ void (*iotlb_sync)(struct iommu_domain *, struct iommu_iotlb_gather *); ++ phys_addr_t (*iova_to_phys)(struct iommu_domain *, dma_addr_t); ++ struct iommu_device * (*probe_device)(struct device *); ++ void (*release_device)(struct device *); ++ void (*probe_finalize)(struct device *); ++ struct iommu_group * (*device_group)(struct device *); ++ int (*domain_get_attr)(struct iommu_domain *, enum iommu_attr, void *); ++ int (*domain_set_attr)(struct iommu_domain *, enum iommu_attr, void *); ++ bool (*support_dirty_log)(struct iommu_domain *); ++ int (*switch_dirty_log)(struct iommu_domain *, bool, long unsigned int, size_t, int); ++ int (*sync_dirty_log)(struct iommu_domain *, long unsigned int, size_t, long unsigned int *, long unsigned int, long unsigned int); ++ int (*clear_dirty_log)(struct iommu_domain *, long unsigned int, size_t, long unsigned int *, long unsigned int, long unsigned int); ++ void (*get_resv_regions)(struct device *, struct list_head *); ++ void (*put_resv_regions)(struct device *, struct list_head *); ++ void (*apply_resv_region)(struct device *, struct iommu_domain *, struct iommu_resv_region *); ++ int (*domain_window_enable)(struct iommu_domain *, u32, phys_addr_t, u64, int); ++ void (*domain_window_disable)(struct iommu_domain *, u32); ++ int (*of_xlate)(struct device *, struct of_phandle_args *); ++ bool (*is_attach_deferred)(struct iommu_domain *, struct device *); ++ bool (*dev_has_feat)(struct device *, enum iommu_dev_features); ++ bool (*dev_feat_enabled)(struct device *, enum iommu_dev_features); ++ int (*dev_enable_feat)(struct device *, enum iommu_dev_features); ++ int (*dev_disable_feat)(struct device *, enum iommu_dev_features); ++ int (*aux_attach_dev)(struct iommu_domain *, struct device *); ++ void (*aux_detach_dev)(struct iommu_domain *, struct device *); ++ int (*aux_get_pasid)(struct iommu_domain *, struct device *); ++ struct iommu_sva * (*sva_bind)(struct device *, struct mm_struct *, void *); ++ void (*sva_unbind)(struct iommu_sva *); ++ u32 (*sva_get_pasid)(struct iommu_sva *); ++ int (*page_response)(struct device *, struct iommu_fault_event *, struct iommu_page_response *); ++ int (*cache_invalidate)(struct iommu_domain *, struct device *, struct iommu_cache_invalidate_info *); ++ int (*sva_bind_gpasid)(struct iommu_domain *, struct device *, struct iommu_gpasid_bind_data *); ++ int (*sva_unbind_gpasid)(struct device *, u32); ++ int (*attach_pasid_table)(struct iommu_domain *, struct iommu_pasid_table_config *); ++ void (*detach_pasid_table)(struct iommu_domain *); ++ int (*def_domain_type)(struct device *); ++ int (*bind_guest_msi)(struct iommu_domain *, dma_addr_t, phys_addr_t, size_t); ++ void (*unbind_guest_msi)(struct iommu_domain *, dma_addr_t); ++ int (*dev_get_config)(struct device *, int, void *); ++ int (*dev_set_config)(struct device *, int, void *); ++ long unsigned int pgsize_bitmap; ++ struct module *owner; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct device_type { ++ const char *name; ++ const struct attribute_group **groups; ++ int (*uevent)(struct device *, struct kobj_uevent_env *); ++ char * (*devnode)(struct device *, umode_t *, kuid_t *, kgid_t *); ++ void (*release)(struct device *); ++ const struct dev_pm_ops *pm; ++}; ++ ++struct class_resvd {}; ++ ++struct class { ++ const char *name; ++ struct module *owner; ++ const struct attribute_group **class_groups; ++ const struct attribute_group **dev_groups; ++ struct kobject *dev_kobj; ++ int (*dev_uevent)(struct device *, struct kobj_uevent_env *); ++ char * (*devnode)(struct device *, umode_t *); ++ void (*class_release)(struct class *); ++ void (*dev_release)(struct device *); ++ int (*shutdown_pre)(struct device *); ++ const struct kobj_ns_type_operations *ns_type; ++ const void * (*namespace)(struct device *); ++ void (*get_ownership)(struct device *, kuid_t *, kgid_t *); ++ const struct dev_pm_ops *pm; ++ struct subsys_private *p; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ size_t class_size_resvd; ++ struct class_resvd *_resvd; ++}; ++ ++struct device_driver_resvd {}; ++ ++struct of_device_id { ++ char name[32]; ++ char type[32]; ++ char compatible[128]; ++ const void *data; ++}; ++ ++typedef long unsigned int kernel_ulong_t; ++ ++struct acpi_device_id { ++ __u8 id[9]; ++ kernel_ulong_t driver_data; ++ __u32 cls; ++ __u32 cls_msk; ++}; ++ ++struct device_dma_parameters { ++ unsigned int max_segment_size; ++ unsigned int min_align_mask; ++ long unsigned int segment_boundary_mask; ++}; ++ ++struct device_extended_resvd {}; ++ ++enum dma_data_direction { ++ DMA_BIDIRECTIONAL = 0, ++ DMA_TO_DEVICE = 1, ++ DMA_FROM_DEVICE = 2, ++ DMA_NONE = 3, ++}; ++ ++struct sg_table; ++ ++struct scatterlist; ++ ++struct dma_map_ops { ++ void * (*alloc)(struct device *, size_t, dma_addr_t *, gfp_t, long unsigned int); ++ void (*free)(struct device *, size_t, void *, dma_addr_t, long unsigned int); ++ struct page * (*alloc_pages)(struct device *, size_t, dma_addr_t *, enum dma_data_direction, gfp_t); ++ void (*free_pages)(struct device *, size_t, struct page *, dma_addr_t, enum dma_data_direction); ++ void * (*alloc_noncoherent)(struct device *, size_t, dma_addr_t *, enum dma_data_direction, gfp_t); ++ void (*free_noncoherent)(struct device *, size_t, void *, dma_addr_t, enum dma_data_direction); ++ int (*mmap)(struct device *, struct vm_area_struct *, void *, dma_addr_t, size_t, long unsigned int); ++ int (*get_sgtable)(struct device *, struct sg_table *, void *, dma_addr_t, size_t, long unsigned int); ++ dma_addr_t (*map_page)(struct device *, struct page *, long unsigned int, size_t, enum dma_data_direction, long unsigned int); ++ void (*unmap_page)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); ++ int (*map_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); ++ void (*unmap_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); ++ dma_addr_t (*map_resource)(struct device *, phys_addr_t, size_t, enum dma_data_direction, long unsigned int); ++ void (*unmap_resource)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); ++ void (*sync_single_for_cpu)(struct device *, dma_addr_t, size_t, enum dma_data_direction); ++ void (*sync_single_for_device)(struct device *, dma_addr_t, size_t, enum dma_data_direction); ++ void (*sync_sg_for_cpu)(struct device *, struct scatterlist *, int, enum dma_data_direction); ++ void (*sync_sg_for_device)(struct device *, struct scatterlist *, int, enum dma_data_direction); ++ void (*cache_sync)(struct device *, void *, size_t, enum dma_data_direction); ++ int (*dma_supported)(struct device *, u64); ++ u64 (*get_required_mask)(struct device *); ++ size_t (*max_mapping_size)(struct device *); ++ long unsigned int (*get_merge_boundary)(struct device *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++}; ++ ++struct bus_dma_region { ++ phys_addr_t cpu_start; ++ dma_addr_t dma_start; ++ u64 size; ++ u64 offset; ++}; ++ ++typedef u32 phandle; ++ ++struct fwnode_operations; ++ ++struct fwnode_handle { ++ struct fwnode_handle *secondary; ++ const struct fwnode_operations *ops; ++ struct device *dev; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct property; ++ ++struct device_node { ++ const char *name; ++ phandle phandle; ++ const char *full_name; ++ struct fwnode_handle fwnode; ++ struct property *properties; ++ struct property *deadprops; ++ struct device_node *parent; ++ struct device_node *child; ++ struct device_node *sibling; ++ long unsigned int _flags; ++ void *data; ++}; ++ ++enum cpuhp_state { ++ CPUHP_INVALID = 4294967295, ++ CPUHP_OFFLINE = 0, ++ CPUHP_CREATE_THREADS = 1, ++ CPUHP_PERF_PREPARE = 2, ++ CPUHP_PERF_X86_PREPARE = 3, ++ CPUHP_PERF_X86_AMD_UNCORE_PREP = 4, ++ CPUHP_PERF_POWER = 5, ++ CPUHP_PERF_SUPERH = 6, ++ CPUHP_X86_HPET_DEAD = 7, ++ CPUHP_X86_APB_DEAD = 8, ++ CPUHP_X86_MCE_DEAD = 9, ++ CPUHP_VIRT_NET_DEAD = 10, ++ CPUHP_SLUB_DEAD = 11, ++ CPUHP_DEBUG_OBJ_DEAD = 12, ++ CPUHP_MM_WRITEBACK_DEAD = 13, ++ CPUHP_MM_VMSTAT_DEAD = 14, ++ CPUHP_SOFTIRQ_DEAD = 15, ++ CPUHP_NET_MVNETA_DEAD = 16, ++ CPUHP_CPUIDLE_DEAD = 17, ++ CPUHP_ARM64_FPSIMD_DEAD = 18, ++ CPUHP_ARM_OMAP_WAKE_DEAD = 19, ++ CPUHP_IRQ_POLL_DEAD = 20, ++ CPUHP_BLOCK_SOFTIRQ_DEAD = 21, ++ CPUHP_ACPI_CPUDRV_DEAD = 22, ++ CPUHP_S390_PFAULT_DEAD = 23, ++ CPUHP_BLK_MQ_DEAD = 24, ++ CPUHP_FS_BUFF_DEAD = 25, ++ CPUHP_PRINTK_DEAD = 26, ++ CPUHP_MM_MEMCQ_DEAD = 27, ++ CPUHP_XFS_DEAD = 28, ++ CPUHP_PERCPU_CNT_DEAD = 29, ++ CPUHP_RADIX_DEAD = 30, ++ CPUHP_PAGE_ALLOC_DEAD = 31, ++ CPUHP_NET_DEV_DEAD = 32, ++ CPUHP_PCI_XGENE_DEAD = 33, ++ CPUHP_IOMMU_INTEL_DEAD = 34, ++ CPUHP_LUSTRE_CFS_DEAD = 35, ++ CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 36, ++ CPUHP_PADATA_DEAD = 37, ++ CPUHP_WORKQUEUE_PREP = 38, ++ CPUHP_POWER_NUMA_PREPARE = 39, ++ CPUHP_HRTIMERS_PREPARE = 40, ++ CPUHP_PROFILE_PREPARE = 41, ++ CPUHP_X2APIC_PREPARE = 42, ++ CPUHP_SMPCFD_PREPARE = 43, ++ CPUHP_RELAY_PREPARE = 44, ++ CPUHP_SLAB_PREPARE = 45, ++ CPUHP_MD_RAID5_PREPARE = 46, ++ CPUHP_RCUTREE_PREP = 47, ++ CPUHP_CPUIDLE_COUPLED_PREPARE = 48, ++ CPUHP_POWERPC_PMAC_PREPARE = 49, ++ CPUHP_POWERPC_MMU_CTX_PREPARE = 50, ++ CPUHP_XEN_PREPARE = 51, ++ CPUHP_XEN_EVTCHN_PREPARE = 52, ++ CPUHP_ARM_SHMOBILE_SCU_PREPARE = 53, ++ CPUHP_SH_SH3X_PREPARE = 54, ++ CPUHP_NET_FLOW_PREPARE = 55, ++ CPUHP_TOPOLOGY_PREPARE = 56, ++ CPUHP_NET_IUCV_PREPARE = 57, ++ CPUHP_ARM_BL_PREPARE = 58, ++ CPUHP_TRACE_RB_PREPARE = 59, ++ CPUHP_MM_ZS_PREPARE = 60, ++ CPUHP_MM_ZSWP_MEM_PREPARE = 61, ++ CPUHP_MM_ZSWP_POOL_PREPARE = 62, ++ CPUHP_KVM_PPC_BOOK3S_PREPARE = 63, ++ CPUHP_ZCOMP_PREPARE = 64, ++ CPUHP_TIMERS_PREPARE = 65, ++ CPUHP_MIPS_SOC_PREPARE = 66, ++ CPUHP_BP_PREPARE_DYN = 67, ++ CPUHP_BP_PREPARE_DYN_END = 87, ++ CPUHP_BRINGUP_CPU = 88, ++ CPUHP_AP_IDLE_DEAD = 89, ++ CPUHP_AP_OFFLINE = 90, ++ CPUHP_AP_SCHED_STARTING = 91, ++ CPUHP_AP_RCUTREE_DYING = 92, ++ CPUHP_AP_CPU_PM_STARTING = 93, ++ CPUHP_AP_IRQ_GIC_STARTING = 94, ++ CPUHP_AP_IRQ_HIP04_STARTING = 95, ++ CPUHP_AP_IRQ_ARMADA_XP_STARTING = 96, ++ CPUHP_AP_IRQ_BCM2836_STARTING = 97, ++ CPUHP_AP_IRQ_MIPS_GIC_STARTING = 98, ++ CPUHP_AP_IRQ_RISCV_STARTING = 99, ++ CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 100, ++ CPUHP_AP_ARM_MVEBU_COHERENCY = 101, ++ CPUHP_AP_MICROCODE_LOADER = 102, ++ CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 103, ++ CPUHP_AP_PERF_X86_STARTING = 104, ++ CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 105, ++ CPUHP_AP_PERF_X86_CQM_STARTING = 106, ++ CPUHP_AP_PERF_X86_CSTATE_STARTING = 107, ++ CPUHP_AP_PERF_XTENSA_STARTING = 108, ++ CPUHP_AP_MIPS_OP_LOONGSON3_STARTING = 109, ++ CPUHP_AP_ARM_SDEI_STARTING = 110, ++ CPUHP_AP_ARM_VFP_STARTING = 111, ++ CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 112, ++ CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 113, ++ CPUHP_AP_PERF_ARM_ACPI_STARTING = 114, ++ CPUHP_AP_PERF_ARM_STARTING = 115, ++ CPUHP_AP_ARM_L2X0_STARTING = 116, ++ CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING = 117, ++ CPUHP_AP_ARM_ARCH_TIMER_STARTING = 118, ++ CPUHP_AP_ARM_GLOBAL_TIMER_STARTING = 119, ++ CPUHP_AP_JCORE_TIMER_STARTING = 120, ++ CPUHP_AP_ARM_TWD_STARTING = 121, ++ CPUHP_AP_QCOM_TIMER_STARTING = 122, ++ CPUHP_AP_TEGRA_TIMER_STARTING = 123, ++ CPUHP_AP_ARMADA_TIMER_STARTING = 124, ++ CPUHP_AP_MARCO_TIMER_STARTING = 125, ++ CPUHP_AP_MIPS_GIC_TIMER_STARTING = 126, ++ CPUHP_AP_ARC_TIMER_STARTING = 127, ++ CPUHP_AP_RISCV_TIMER_STARTING = 128, ++ CPUHP_AP_CLINT_TIMER_STARTING = 129, ++ CPUHP_AP_CSKY_TIMER_STARTING = 130, ++ CPUHP_AP_TI_GP_TIMER_STARTING = 131, ++ CPUHP_AP_HYPERV_TIMER_STARTING = 132, ++ CPUHP_AP_KVM_STARTING = 133, ++ CPUHP_AP_KVM_ARM_VGIC_INIT_STARTING = 134, ++ CPUHP_AP_KVM_ARM_VGIC_STARTING = 135, ++ CPUHP_AP_KVM_ARM_TIMER_STARTING = 136, ++ CPUHP_AP_DUMMY_TIMER_STARTING = 137, ++ CPUHP_AP_ARM_XEN_STARTING = 138, ++ CPUHP_AP_ARM_KVM_PVSCHED_STARTING = 139, ++ CPUHP_AP_ARM_CORESIGHT_STARTING = 140, ++ CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 141, ++ CPUHP_AP_ARM64_ISNDEP_STARTING = 142, ++ CPUHP_AP_SMPCFD_DYING = 143, ++ CPUHP_AP_X86_TBOOT_DYING = 144, ++ CPUHP_AP_ARM_CACHE_B15_RAC_DYING = 145, ++ CPUHP_AP_ONLINE = 146, ++ CPUHP_TEARDOWN_CPU = 147, ++ CPUHP_AP_ONLINE_IDLE = 148, ++ CPUHP_AP_SMPBOOT_THREADS = 149, ++ CPUHP_AP_X86_VDSO_VMA_ONLINE = 150, ++ CPUHP_AP_IRQ_AFFINITY_ONLINE = 151, ++ CPUHP_AP_BLK_MQ_ONLINE = 152, ++ CPUHP_AP_ARM_MVEBU_SYNC_CLOCKS = 153, ++ CPUHP_AP_X86_INTEL_EPB_ONLINE = 154, ++ CPUHP_AP_PERF_ONLINE = 155, ++ CPUHP_AP_PERF_X86_ONLINE = 156, ++ CPUHP_AP_PERF_X86_UNCORE_ONLINE = 157, ++ CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE = 158, ++ CPUHP_AP_PERF_X86_AMD_POWER_ONLINE = 159, ++ CPUHP_AP_PERF_X86_RAPL_ONLINE = 160, ++ CPUHP_AP_PERF_X86_CQM_ONLINE = 161, ++ CPUHP_AP_PERF_X86_CSTATE_ONLINE = 162, ++ CPUHP_AP_PERF_S390_CF_ONLINE = 163, ++ CPUHP_AP_PERF_S390_SF_ONLINE = 164, ++ CPUHP_AP_PERF_ARM_CCI_ONLINE = 165, ++ CPUHP_AP_PERF_ARM_CCN_ONLINE = 166, ++ CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 167, ++ CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 168, ++ CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 169, ++ CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 170, ++ CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 171, ++ CPUHP_AP_PERF_ARM_L2X0_ONLINE = 172, ++ CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 173, ++ CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 174, ++ CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 175, ++ CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 176, ++ CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 177, ++ CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 178, ++ CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 179, ++ CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 180, ++ CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 181, ++ CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 182, ++ CPUHP_AP_WATCHDOG_ONLINE = 183, ++ CPUHP_AP_WORKQUEUE_ONLINE = 184, ++ CPUHP_AP_RCUTREE_ONLINE = 185, ++ CPUHP_AP_BASE_CACHEINFO_ONLINE = 186, ++ CPUHP_AP_ONLINE_DYN = 187, ++ CPUHP_AP_ONLINE_DYN_END = 217, ++ CPUHP_AP_X86_HPET_ONLINE = 218, ++ CPUHP_AP_X86_KVM_CLK_ONLINE = 219, ++ CPUHP_AP_ACTIVE = 220, ++ CPUHP_ONLINE = 221, ++}; ++ ++struct static_call_mod { ++ struct static_call_mod *next; ++ struct module *mod; ++ struct static_call_site *sites; ++}; ++ ++struct ring_buffer_event { ++ u32 type_len: 5; ++ u32 time_delta: 27; ++ u32 array[0]; ++}; ++ ++struct seq_buf { ++ char *buffer; ++ size_t size; ++ size_t len; ++ loff_t readpos; ++}; ++ ++struct trace_seq { ++ char buffer[4096]; ++ struct seq_buf seq; ++ int full; ++}; ++ ++enum perf_sw_ids { ++ PERF_COUNT_SW_CPU_CLOCK = 0, ++ PERF_COUNT_SW_TASK_CLOCK = 1, ++ PERF_COUNT_SW_PAGE_FAULTS = 2, ++ PERF_COUNT_SW_CONTEXT_SWITCHES = 3, ++ PERF_COUNT_SW_CPU_MIGRATIONS = 4, ++ PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, ++ PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, ++ PERF_COUNT_SW_ALIGNMENT_FAULTS = 7, ++ PERF_COUNT_SW_EMULATION_FAULTS = 8, ++ PERF_COUNT_SW_DUMMY = 9, ++ PERF_COUNT_SW_BPF_OUTPUT = 10, ++ PERF_COUNT_SW_MAX = 11, ++}; ++ ++union perf_mem_data_src { ++ __u64 val; ++ struct { ++ __u64 mem_op: 5; ++ __u64 mem_lvl: 14; ++ __u64 mem_snoop: 5; ++ __u64 mem_lock: 2; ++ __u64 mem_dtlb: 7; ++ __u64 mem_lvl_num: 4; ++ __u64 mem_remote: 1; ++ __u64 mem_snoopx: 2; ++ __u64 mem_rsvd: 24; ++ }; ++}; ++ ++struct perf_branch_entry { ++ __u64 from; ++ __u64 to; ++ __u64 mispred: 1; ++ __u64 predicted: 1; ++ __u64 in_tx: 1; ++ __u64 abort: 1; ++ __u64 cycles: 16; ++ __u64 type: 4; ++ __u64 reserved: 40; ++}; ++ ++struct new_utsname { ++ char sysname[65]; ++ char nodename[65]; ++ char release[65]; ++ char version[65]; ++ char machine[65]; ++ char domainname[65]; ++}; ++ ++struct uts_namespace { ++ struct kref kref; ++ struct new_utsname name; ++ struct user_namespace *user_ns; ++ struct ucounts *ucounts; ++ struct ns_common ns; ++}; ++ ++struct cgroup_namespace { ++ refcount_t count; ++ struct ns_common ns; ++ struct user_namespace *user_ns; ++ struct ucounts *ucounts; ++ struct css_set *root_cset; ++}; ++ ++struct nsset { ++ unsigned int flags; ++ struct nsproxy *nsproxy; ++ struct fs_struct *fs; ++ const struct cred *cred; ++}; ++ ++struct proc_ns_operations { ++ const char *name; ++ const char *real_ns_name; ++ u64 type; ++ struct ns_common * (*get)(struct task_struct *); ++ void (*put)(struct ns_common *); ++ int (*install)(struct nsset *, struct ns_common *); ++ struct user_namespace * (*owner)(struct ns_common *); ++ struct ns_common * (*get_parent)(struct ns_common *); ++}; ++ ++struct ucounts { ++ struct hlist_node node; ++ struct user_namespace *ns; ++ kuid_t uid; ++ int count; ++ atomic_long_t ucount[25]; ++}; ++ ++struct perf_cpu_context; ++ ++struct perf_output_handle; ++ ++struct pmu { ++ struct list_head entry; ++ struct module *module; ++ struct device *dev; ++ const struct attribute_group **attr_groups; ++ const struct attribute_group **attr_update; ++ const char *name; ++ int type; ++ int capabilities; ++ int *pmu_disable_count; ++ struct perf_cpu_context *pmu_cpu_context; ++ atomic_t exclusive_cnt; ++ int task_ctx_nr; ++ int hrtimer_interval_ms; ++ unsigned int nr_addr_filters; ++ void (*pmu_enable)(struct pmu *); ++ void (*pmu_disable)(struct pmu *); ++ int (*event_init)(struct perf_event *); ++ void (*event_mapped)(struct perf_event *, struct mm_struct *); ++ void (*event_unmapped)(struct perf_event *, struct mm_struct *); ++ int (*add)(struct perf_event *, int); ++ void (*del)(struct perf_event *, int); ++ void (*start)(struct perf_event *, int); ++ void (*stop)(struct perf_event *, int); ++ void (*read)(struct perf_event *); ++ void (*start_txn)(struct pmu *, unsigned int); ++ int (*commit_txn)(struct pmu *); ++ void (*cancel_txn)(struct pmu *); ++ int (*event_idx)(struct perf_event *); ++ void (*sched_task)(struct perf_event_context *, bool); ++ struct kmem_cache *task_ctx_cache; ++ void (*swap_task_ctx)(struct perf_event_context *, struct perf_event_context *); ++ void * (*setup_aux)(struct perf_event *, void **, int, bool); ++ void (*free_aux)(void *); ++ long int (*snapshot_aux)(struct perf_event *, struct perf_output_handle *, long unsigned int); ++ int (*addr_filters_validate)(struct list_head *); ++ void (*addr_filters_sync)(struct perf_event *); ++ int (*aux_output_match)(struct perf_event *); ++ int (*filter_match)(struct perf_event *); ++ int (*check_period)(struct perf_event *, u64); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++}; ++ ++struct iovec { ++ void *iov_base; ++ __kernel_size_t iov_len; ++}; ++ ++struct kvec { ++ void *iov_base; ++ size_t iov_len; ++}; ++ ++struct perf_regs { ++ __u64 abi; ++ struct pt_regs *regs; ++}; ++ ++struct u64_stats_sync {}; ++ ++struct bpf_cgroup_storage_key { ++ __u64 cgroup_inode_id; ++ __u32 attach_type; ++}; ++ ++struct bpf_cgroup_storage; ++ ++struct bpf_prog_array_item { ++ struct bpf_prog *prog; ++ struct bpf_cgroup_storage *cgroup_storage[10]; ++}; ++ ++struct bpf_storage_buffer; ++ ++struct bpf_cgroup_storage_map; ++ ++struct bpf_cgroup_storage { ++ union { ++ struct bpf_storage_buffer *buf; ++ void *percpu_buf; ++ }; ++ struct bpf_cgroup_storage_map *map; ++ struct bpf_cgroup_storage_key key; ++ struct list_head list_map; ++ struct list_head list_cg; ++ struct rb_node node; ++ struct callback_head rcu; ++}; ++ ++struct bpf_prog_array { ++ struct callback_head rcu; ++ struct bpf_prog_array_item items[0]; ++}; ++ ++struct bpf_storage_buffer { ++ struct callback_head rcu; ++ char data[0]; ++}; ++ ++struct psi_group_cpu { ++ seqcount_t seq; ++ unsigned int tasks[5]; ++ u32 state_mask; ++ u32 times[7]; ++ u64 state_start; ++ u32 times_prev[14]; ++ long: 64; ++}; ++ ++struct cgroup_taskset; ++ ++struct cftype; ++ ++struct cgroup_subsys { ++ struct cgroup_subsys_state * (*css_alloc)(struct cgroup_subsys_state *); ++ int (*css_online)(struct cgroup_subsys_state *); ++ void (*css_offline)(struct cgroup_subsys_state *); ++ void (*css_released)(struct cgroup_subsys_state *); ++ void (*css_free)(struct cgroup_subsys_state *); ++ void (*css_reset)(struct cgroup_subsys_state *); ++ void (*css_rstat_flush)(struct cgroup_subsys_state *, int); ++ int (*css_extra_stat_show)(struct seq_file *, struct cgroup_subsys_state *); ++ int (*can_attach)(struct cgroup_taskset *); ++ void (*cancel_attach)(struct cgroup_taskset *); ++ void (*attach)(struct cgroup_taskset *); ++ void (*post_attach)(); ++ int (*can_fork)(struct task_struct *, struct css_set *); ++ void (*cancel_fork)(struct task_struct *, struct css_set *); ++ void (*fork)(struct task_struct *); ++ void (*exit)(struct task_struct *); ++ void (*release)(struct task_struct *); ++ void (*bind)(struct cgroup_subsys_state *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ bool early_init: 1; ++ bool implicit_on_dfl: 1; ++ bool threaded: 1; ++ bool broken_hierarchy: 1; ++ bool warned_broken_hierarchy: 1; ++ int id; ++ const char *name; ++ const char *legacy_name; ++ struct cgroup_root *root; ++ struct idr css_idr; ++ struct list_head cfts; ++ struct cftype *dfl_cftypes; ++ struct cftype *legacy_cftypes; ++ struct cftype *base_cftypes; ++ unsigned int depends_on; ++}; ++ ++struct cgroup_rstat_cpu { ++ struct u64_stats_sync bsync; ++ struct cgroup_base_stat bstat; ++ struct cgroup_base_stat last_bstat; ++ struct cgroup *updated_children; ++ struct cgroup *updated_next; ++}; ++ ++struct cgroup_root { ++ struct kernfs_root *kf_root; ++ unsigned int subsys_mask; ++ int hierarchy_id; ++ struct cgroup cgrp; ++ u64 cgrp_ancestor_id_storage; ++ atomic_t nr_cgrps; ++ wait_queue_head_t wait; ++ struct list_head root_list; ++ unsigned int flags; ++ char release_agent_path[4096]; ++ char name[64]; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct cftype { ++ char name[64]; ++ long unsigned int private; ++ size_t max_write_len; ++ unsigned int flags; ++ unsigned int file_offset; ++ struct cgroup_subsys *ss; ++ struct list_head node; ++ struct kernfs_ops *kf_ops; ++ int (*open)(struct kernfs_open_file *); ++ void (*release)(struct kernfs_open_file *); ++ u64 (*read_u64)(struct cgroup_subsys_state *, struct cftype *); ++ s64 (*read_s64)(struct cgroup_subsys_state *, struct cftype *); ++ int (*seq_show)(struct seq_file *, void *); ++ void * (*seq_start)(struct seq_file *, loff_t *); ++ void * (*seq_next)(struct seq_file *, void *, loff_t *); ++ void (*seq_stop)(struct seq_file *, void *); ++ int (*write_u64)(struct cgroup_subsys_state *, struct cftype *, u64); ++ int (*write_s64)(struct cgroup_subsys_state *, struct cftype *, s64); ++ ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); ++ int (*read_seq_string)(struct cgroup *, struct cftype *, struct seq_file *); ++ int (*write_string)(struct cgroup *, struct cftype *, const char *); ++ __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); ++ u64 kabi_reserved1; ++}; ++ ++enum kmalloc_cache_type { ++ KMALLOC_NORMAL = 0, ++ KMALLOC_RECLAIM = 1, ++ KMALLOC_DMA = 2, ++ NR_KMALLOC_TYPES = 3, ++}; ++ ++struct perf_callchain_entry { ++ __u64 nr; ++ __u64 ip[0]; ++}; ++ ++typedef long unsigned int (*perf_copy_f)(void *, const void *, long unsigned int, long unsigned int); ++ ++struct perf_raw_frag { ++ union { ++ struct perf_raw_frag *next; ++ long unsigned int pad; ++ }; ++ perf_copy_f copy; ++ void *data; ++ u32 size; ++} __attribute__((packed)); ++ ++struct perf_raw_record { ++ struct perf_raw_frag frag; ++ u32 size; ++}; ++ ++struct perf_branch_stack { ++ __u64 nr; ++ __u64 hw_idx; ++ struct perf_branch_entry entries[0]; ++}; ++ ++struct perf_cpu_context { ++ struct perf_event_context ctx; ++ struct perf_event_context *task_ctx; ++ int active_oncpu; ++ int exclusive; ++ raw_spinlock_t hrtimer_lock; ++ struct hrtimer hrtimer; ++ ktime_t hrtimer_interval; ++ unsigned int hrtimer_active; ++ struct perf_cgroup *cgrp; ++ struct list_head cgrp_cpuctx_entry; ++ struct list_head sched_cb_entry; ++ int sched_cb_usage; ++ int online; ++ int heap_size; ++ struct perf_event **heap; ++ struct perf_event *heap_default[2]; ++}; ++ ++struct perf_output_handle { ++ struct perf_event *event; ++ struct perf_buffer *rb; ++ long unsigned int wakeup; ++ long unsigned int size; ++ u64 aux_flags; ++ union { ++ void *addr; ++ long unsigned int head; ++ }; ++ int page; ++}; ++ ++struct perf_addr_filter_range { ++ long unsigned int start; ++ long unsigned int size; ++}; ++ ++struct perf_sample_data { ++ u64 addr; ++ struct perf_raw_record *raw; ++ struct perf_branch_stack *br_stack; ++ u64 period; ++ u64 weight; ++ u64 txn; ++ union perf_mem_data_src data_src; ++ u64 type; ++ u64 ip; ++ struct { ++ u32 pid; ++ u32 tid; ++ } tid_entry; ++ u64 time; ++ u64 id; ++ u64 stream_id; ++ struct { ++ u32 cpu; ++ u32 reserved; ++ } cpu_entry; ++ struct perf_callchain_entry *callchain; ++ u64 aux_size; ++ struct perf_regs regs_user; ++ struct perf_regs regs_intr; ++ u64 stack_user_size; ++ u64 phys_addr; ++ u64 cgroup; ++ long: 64; ++}; ++ ++struct perf_cgroup_info; ++ ++struct perf_cgroup { ++ struct cgroup_subsys_state css; ++ struct perf_cgroup_info *info; ++}; ++ ++struct perf_cgroup_info { ++ u64 time; ++ u64 timestamp; ++}; ++ ++struct trace_entry { ++ short unsigned int type; ++ unsigned char flags; ++ unsigned char preempt_count; ++ int pid; ++}; ++ ++struct trace_array; ++ ++struct tracer; ++ ++struct array_buffer; ++ ++struct ring_buffer_iter; ++ ++struct trace_iterator { ++ struct trace_array *tr; ++ struct tracer *trace; ++ struct array_buffer *array_buffer; ++ void *private; ++ int cpu_file; ++ struct mutex mutex; ++ struct ring_buffer_iter **buffer_iter; ++ long unsigned int iter_flags; ++ void *temp; ++ unsigned int temp_size; ++ struct trace_seq tmp_seq; ++ cpumask_var_t started; ++ bool snapshot; ++ struct trace_seq seq; ++ struct trace_entry *ent; ++ long unsigned int lost_events; ++ int leftover; ++ int ent_size; ++ int cpu; ++ u64 ts; ++ loff_t pos; ++ long int idx; ++}; ++ ++enum print_line_t { ++ TRACE_TYPE_PARTIAL_LINE = 0, ++ TRACE_TYPE_HANDLED = 1, ++ TRACE_TYPE_UNHANDLED = 2, ++ TRACE_TYPE_NO_CONSUME = 3, ++}; ++ ++typedef enum print_line_t (*trace_print_func)(struct trace_iterator *, int, struct trace_event *); ++ ++struct trace_event_functions { ++ trace_print_func trace; ++ trace_print_func raw; ++ trace_print_func hex; ++ trace_print_func binary; ++}; ++ ++enum trace_reg { ++ TRACE_REG_REGISTER = 0, ++ TRACE_REG_UNREGISTER = 1, ++ TRACE_REG_PERF_REGISTER = 2, ++ TRACE_REG_PERF_UNREGISTER = 3, ++ TRACE_REG_PERF_OPEN = 4, ++ TRACE_REG_PERF_CLOSE = 5, ++ TRACE_REG_PERF_ADD = 6, ++ TRACE_REG_PERF_DEL = 7, ++}; ++ ++struct trace_event_fields { ++ const char *type; ++ union { ++ struct { ++ const char *name; ++ const int size; ++ const int align; ++ const int is_signed; ++ const int filter_type; ++ }; ++ int (*define_fields)(struct trace_event_call *); ++ }; ++}; ++ ++struct trace_event_class { ++ const char *system; ++ void *probe; ++ void *perf_probe; ++ int (*reg)(struct trace_event_call *, enum trace_reg, void *); ++ struct trace_event_fields *fields_array; ++ struct list_head * (*get_fields)(struct trace_event_call *); ++ struct list_head fields; ++ int (*raw_init)(struct trace_event_call *); ++}; ++ ++struct trace_buffer; ++ ++struct trace_event_file; ++ ++struct trace_event_buffer { ++ struct trace_buffer *buffer; ++ struct ring_buffer_event *event; ++ struct trace_event_file *trace_file; ++ void *entry; ++ unsigned int trace_ctx; ++ struct pt_regs *regs; ++}; ++ ++struct trace_subsystem_dir; ++ ++struct trace_event_file { ++ struct list_head list; ++ struct trace_event_call *event_call; ++ struct event_filter *filter; ++ struct dentry *dir; ++ struct trace_array *tr; ++ struct trace_subsystem_dir *system; ++ struct list_head triggers; ++ long unsigned int flags; ++ atomic_t sm_ref; ++ atomic_t tm_ref; ++}; ++ ++enum { ++ TRACE_EVENT_FL_FILTERED_BIT = 0, ++ TRACE_EVENT_FL_CAP_ANY_BIT = 1, ++ TRACE_EVENT_FL_NO_SET_FILTER_BIT = 2, ++ TRACE_EVENT_FL_IGNORE_ENABLE_BIT = 3, ++ TRACE_EVENT_FL_TRACEPOINT_BIT = 4, ++ TRACE_EVENT_FL_KPROBE_BIT = 5, ++ TRACE_EVENT_FL_UPROBE_BIT = 6, ++}; ++ ++enum { ++ TRACE_EVENT_FL_FILTERED = 1, ++ TRACE_EVENT_FL_CAP_ANY = 2, ++ TRACE_EVENT_FL_NO_SET_FILTER = 4, ++ TRACE_EVENT_FL_IGNORE_ENABLE = 8, ++ TRACE_EVENT_FL_TRACEPOINT = 16, ++ TRACE_EVENT_FL_KPROBE = 32, ++ TRACE_EVENT_FL_UPROBE = 64, ++}; ++ ++enum { ++ EVENT_FILE_FL_ENABLED_BIT = 0, ++ EVENT_FILE_FL_RECORDED_CMD_BIT = 1, ++ EVENT_FILE_FL_RECORDED_TGID_BIT = 2, ++ EVENT_FILE_FL_FILTERED_BIT = 3, ++ EVENT_FILE_FL_NO_SET_FILTER_BIT = 4, ++ EVENT_FILE_FL_SOFT_MODE_BIT = 5, ++ EVENT_FILE_FL_SOFT_DISABLED_BIT = 6, ++ EVENT_FILE_FL_TRIGGER_MODE_BIT = 7, ++ EVENT_FILE_FL_TRIGGER_COND_BIT = 8, ++ EVENT_FILE_FL_PID_FILTER_BIT = 9, ++ EVENT_FILE_FL_WAS_ENABLED_BIT = 10, ++}; ++ ++enum { ++ EVENT_FILE_FL_ENABLED = 1, ++ EVENT_FILE_FL_RECORDED_CMD = 2, ++ EVENT_FILE_FL_RECORDED_TGID = 4, ++ EVENT_FILE_FL_FILTERED = 8, ++ EVENT_FILE_FL_NO_SET_FILTER = 16, ++ EVENT_FILE_FL_SOFT_MODE = 32, ++ EVENT_FILE_FL_SOFT_DISABLED = 64, ++ EVENT_FILE_FL_TRIGGER_MODE = 128, ++ EVENT_FILE_FL_TRIGGER_COND = 256, ++ EVENT_FILE_FL_PID_FILTER = 512, ++ EVENT_FILE_FL_WAS_ENABLED = 1024, ++}; ++ ++enum { ++ FILTER_OTHER = 0, ++ FILTER_STATIC_STRING = 1, ++ FILTER_DYN_STRING = 2, ++ FILTER_PTR_STRING = 3, ++ FILTER_TRACE_FN = 4, ++ FILTER_COMM = 5, ++ FILTER_CPU = 6, ++}; ++ ++struct fwnode_reference_args; ++ ++struct fwnode_endpoint; ++ ++struct fwnode_operations { ++ struct fwnode_handle * (*get)(struct fwnode_handle *); ++ void (*put)(struct fwnode_handle *); ++ bool (*device_is_available)(const struct fwnode_handle *); ++ const void * (*device_get_match_data)(const struct fwnode_handle *, const struct device *); ++ bool (*property_present)(const struct fwnode_handle *, const char *); ++ int (*property_read_int_array)(const struct fwnode_handle *, const char *, unsigned int, void *, size_t); ++ int (*property_read_string_array)(const struct fwnode_handle *, const char *, const char **, size_t); ++ const char * (*get_name)(const struct fwnode_handle *); ++ const char * (*get_name_prefix)(const struct fwnode_handle *); ++ struct fwnode_handle * (*get_parent)(const struct fwnode_handle *); ++ struct fwnode_handle * (*get_next_child_node)(const struct fwnode_handle *, struct fwnode_handle *); ++ struct fwnode_handle * (*get_named_child_node)(const struct fwnode_handle *, const char *); ++ int (*get_reference_args)(const struct fwnode_handle *, const char *, const char *, unsigned int, unsigned int, struct fwnode_reference_args *); ++ struct fwnode_handle * (*graph_get_next_endpoint)(const struct fwnode_handle *, struct fwnode_handle *); ++ struct fwnode_handle * (*graph_get_remote_endpoint)(const struct fwnode_handle *); ++ struct fwnode_handle * (*graph_get_port_parent)(struct fwnode_handle *); ++ int (*graph_parse_endpoint)(const struct fwnode_handle *, struct fwnode_endpoint *); ++ int (*add_links)(const struct fwnode_handle *, struct device *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct fwnode_endpoint { ++ unsigned int port; ++ unsigned int id; ++ const struct fwnode_handle *local_fwnode; ++}; ++ ++struct fwnode_reference_args { ++ struct fwnode_handle *fwnode; ++ unsigned int nargs; ++ u64 args[8]; ++}; ++ ++struct property { ++ char *name; ++ int length; ++ void *value; ++ struct property *next; ++}; ++ ++struct irq_fwspec { ++ struct fwnode_handle *fwnode; ++ int param_count; ++ u32 param[16]; ++}; ++ ++struct irq_data; ++ ++struct irq_domain_ops { ++ int (*match)(struct irq_domain *, struct device_node *, enum irq_domain_bus_token); ++ int (*select)(struct irq_domain *, struct irq_fwspec *, enum irq_domain_bus_token); ++ int (*map)(struct irq_domain *, unsigned int, irq_hw_number_t); ++ void (*unmap)(struct irq_domain *, unsigned int); ++ int (*xlate)(struct irq_domain *, struct device_node *, const u32 *, unsigned int, long unsigned int *, unsigned int *); ++ int (*alloc)(struct irq_domain *, unsigned int, unsigned int, void *); ++ void (*free)(struct irq_domain *, unsigned int, unsigned int); ++ int (*activate)(struct irq_domain *, struct irq_data *, bool); ++ void (*deactivate)(struct irq_domain *, struct irq_data *); ++ int (*translate)(struct irq_domain *, struct irq_fwspec *, long unsigned int *, unsigned int *); ++}; ++ ++struct xbc_node { ++ u16 next; ++ u16 child; ++ u16 parent; ++ u16 data; ++}; ++ ++enum wb_stat_item { ++ WB_RECLAIMABLE = 0, ++ WB_WRITEBACK = 1, ++ WB_DIRTIED = 2, ++ WB_WRITTEN = 3, ++ NR_WB_STAT_ITEMS = 4, ++}; ++ ++struct disk_stats; ++ ++struct partition_meta_info; ++ ++struct hd_struct { ++ sector_t start_sect; ++ sector_t nr_sects; ++ long unsigned int stamp; ++ struct disk_stats *dkstats; ++ struct percpu_ref ref; ++ struct device __dev; ++ struct kobject *holder_dir; ++ bool read_only; ++ int partno; ++ struct partition_meta_info *info; ++ struct rcu_work rcu_work; ++ union { ++ u64 stat_time; ++ struct { ++ u64 kabi_reserved1; ++ } kabi_hidden_79; ++ union { }; ++ }; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct disk_part_tbl; ++ ++struct block_device_operations; ++ ++struct timer_rand_state; ++ ++struct disk_events; ++ ++struct cdrom_device_info; ++ ++struct badblocks; ++ ++struct gendisk { ++ int major; ++ int first_minor; ++ int minors; ++ char disk_name[32]; ++ short unsigned int events; ++ short unsigned int event_flags; ++ struct disk_part_tbl *part_tbl; ++ struct hd_struct part0; ++ long unsigned int user_ro_bitmap[4]; ++ const struct block_device_operations *fops; ++ struct request_queue *queue; ++ void *private_data; ++ int flags; ++ long unsigned int state; ++ struct rw_semaphore lookup_sem; ++ struct kobject *slave_dir; ++ struct timer_rand_state *random; ++ atomic64_t sync_io_sectors; ++ struct disk_events *ev; ++ struct kobject integrity_kobj; ++ struct cdrom_device_info *cdi; ++ int node_id; ++ struct badblocks *bb; ++ struct lockdep_map lockdep_map; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct bio_integrity_payload { ++ struct bio *bip_bio; ++ struct bvec_iter bip_iter; ++ short unsigned int bip_slab; ++ short unsigned int bip_vcnt; ++ short unsigned int bip_max_vcnt; ++ short unsigned int bip_flags; ++ struct bvec_iter bio_iter; ++ struct work_struct bip_work; ++ struct bio_vec *bip_vec; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ struct bio_vec bip_inline_vecs[0]; ++}; ++ ++struct blkg_iostat { ++ u64 bytes[3]; ++ u64 ios[3]; ++}; ++ ++struct blkg_iostat_set { ++ struct u64_stats_sync sync; ++ struct blkg_iostat cur; ++ struct blkg_iostat last; ++}; ++ ++struct blkcg; ++ ++struct blkg_policy_data; ++ ++struct blkcg_gq { ++ struct request_queue *q; ++ struct list_head q_node; ++ struct hlist_node blkcg_node; ++ struct blkcg *blkcg; ++ struct blkcg_gq *parent; ++ struct percpu_ref refcnt; ++ bool online; ++ struct blkg_iostat_set *iostat_cpu; ++ struct blkg_iostat_set iostat; ++ struct blkg_policy_data *pd[5]; ++ spinlock_t async_bio_lock; ++ struct bio_list async_bios; ++ struct work_struct async_bio_work; ++ atomic_t use_delay; ++ atomic64_t delay_nsec; ++ atomic64_t delay_start; ++ u64 last_delay; ++ int last_use; ++ struct callback_head callback_head; ++}; ++ ++typedef unsigned int blk_qc_t; ++ ++struct partition_meta_info { ++ char uuid[37]; ++ u8 volname[64]; ++}; ++ ++struct disk_part_tbl { ++ struct callback_head callback_head; ++ int len; ++ struct hd_struct *last_lookup; ++ struct hd_struct *part[0]; ++}; ++ ++struct blk_integrity_iter; ++ ++typedef blk_status_t integrity_processing_fn(struct blk_integrity_iter *); ++ ++typedef void integrity_prepare_fn(struct request *); ++ ++typedef void integrity_complete_fn(struct request *, unsigned int); ++ ++struct blk_integrity_profile { ++ integrity_processing_fn *generate_fn; ++ integrity_processing_fn *verify_fn; ++ integrity_prepare_fn *prepare_fn; ++ integrity_complete_fn *complete_fn; ++ const char *name; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct blk_zone; ++ ++typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); ++ ++struct hd_geometry; ++ ++struct pr_ops; ++ ++struct block_device_operations { ++ blk_qc_t (*submit_bio)(struct bio *); ++ int (*open)(struct block_device *, fmode_t); ++ void (*release)(struct gendisk *, fmode_t); ++ int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int); ++ int (*ioctl)(struct block_device *, fmode_t, unsigned int, long unsigned int); ++ int (*compat_ioctl)(struct block_device *, fmode_t, unsigned int, long unsigned int); ++ unsigned int (*check_events)(struct gendisk *, unsigned int); ++ void (*unlock_native_capacity)(struct gendisk *); ++ int (*revalidate_disk)(struct gendisk *); ++ int (*getgeo)(struct block_device *, struct hd_geometry *); ++ void (*swap_slot_free_notify)(struct block_device *, long unsigned int); ++ int (*report_zones)(struct gendisk *, sector_t, unsigned int, report_zones_cb, void *); ++ char * (*devnode)(struct gendisk *, umode_t *); ++ struct module *owner; ++ const struct pr_ops *pr_ops; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct sg_io_v4 { ++ __s32 guard; ++ __u32 protocol; ++ __u32 subprotocol; ++ __u32 request_len; ++ __u64 request; ++ __u64 request_tag; ++ __u32 request_attr; ++ __u32 request_priority; ++ __u32 request_extra; ++ __u32 max_response_len; ++ __u64 response; ++ __u32 dout_iovec_count; ++ __u32 dout_xfer_len; ++ __u32 din_iovec_count; ++ __u32 din_xfer_len; ++ __u64 dout_xferp; ++ __u64 din_xferp; ++ __u32 timeout; ++ __u32 flags; ++ __u64 usr_ptr; ++ __u32 spare_in; ++ __u32 driver_status; ++ __u32 transport_status; ++ __u32 device_status; ++ __u32 retry_delay; ++ __u32 info; ++ __u32 duration; ++ __u32 response_len; ++ __s32 din_resid; ++ __s32 dout_resid; ++ __u64 generated_tag; ++ __u32 spare_out; ++ __u32 padding; ++}; ++ ++struct bsg_ops { ++ int (*check_proto)(struct sg_io_v4 *); ++ int (*fill_hdr)(struct request *, struct sg_io_v4 *, fmode_t); ++ int (*complete_rq)(struct request *, struct sg_io_v4 *); ++ void (*free_rq)(struct request *); ++}; ++ ++typedef __u32 req_flags_t; ++ ++typedef void rq_end_io_fn(struct request *, blk_status_t); ++ ++enum mq_rq_state { ++ MQ_RQ_IDLE = 0, ++ MQ_RQ_IN_FLIGHT = 1, ++ MQ_RQ_COMPLETE = 2, ++}; ++ ++struct request { ++ struct request_queue *q; ++ struct blk_mq_ctx *mq_ctx; ++ struct blk_mq_hw_ctx *mq_hctx; ++ unsigned int cmd_flags; ++ req_flags_t rq_flags; ++ int tag; ++ int internal_tag; ++ unsigned int __data_len; ++ sector_t __sector; ++ struct bio *bio; ++ struct bio *biotail; ++ struct list_head queuelist; ++ union { ++ struct hlist_node hash; ++ struct list_head ipi_list; ++ }; ++ union { ++ struct rb_node rb_node; ++ struct bio_vec special_vec; ++ void *completion_data; ++ int error_count; ++ }; ++ union { ++ struct { ++ struct io_cq *icq; ++ void *priv[2]; ++ } elv; ++ struct { ++ unsigned int seq; ++ struct list_head list; ++ rq_end_io_fn *saved_end_io; ++ } flush; ++ }; ++ struct gendisk *rq_disk; ++ struct hd_struct *part; ++ u64 start_time_ns; ++ u64 io_start_time_ns; ++ short unsigned int wbt_flags; ++ short unsigned int stats_sectors; ++ short unsigned int nr_phys_segments; ++ short unsigned int nr_integrity_segments; ++ short unsigned int write_hint; ++ short unsigned int ioprio; ++ enum mq_rq_state state; ++ refcount_t ref; ++ unsigned int timeout; ++ long unsigned int deadline; ++ union { ++ struct __call_single_data csd; ++ u64 fifo_time; ++ }; ++ rq_end_io_fn *end_io; ++ void *end_io_data; ++}; ++ ++struct blk_zone { ++ __u64 start; ++ __u64 len; ++ __u64 wp; ++ __u8 type; ++ __u8 cond; ++ __u8 non_seq; ++ __u8 reset; ++ __u8 resv[4]; ++ __u64 capacity; ++ __u8 reserved[24]; ++}; ++ ++enum elv_merge { ++ ELEVATOR_NO_MERGE = 0, ++ ELEVATOR_FRONT_MERGE = 1, ++ ELEVATOR_BACK_MERGE = 2, ++ ELEVATOR_DISCARD_MERGE = 3, ++}; ++ ++struct elevator_type; ++ ++struct blk_mq_alloc_data; ++ ++struct elevator_mq_ops { ++ int (*init_sched)(struct request_queue *, struct elevator_type *); ++ void (*exit_sched)(struct elevator_queue *); ++ int (*init_hctx)(struct blk_mq_hw_ctx *, unsigned int); ++ void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); ++ void (*depth_updated)(struct blk_mq_hw_ctx *); ++ bool (*allow_merge)(struct request_queue *, struct request *, struct bio *); ++ bool (*bio_merge)(struct request_queue *, struct bio *, unsigned int); ++ int (*request_merge)(struct request_queue *, struct request **, struct bio *); ++ void (*request_merged)(struct request_queue *, struct request *, enum elv_merge); ++ void (*requests_merged)(struct request_queue *, struct request *, struct request *); ++ void (*limit_depth)(unsigned int, struct blk_mq_alloc_data *); ++ void (*prepare_request)(struct request *); ++ void (*finish_request)(struct request *); ++ void (*insert_requests)(struct blk_mq_hw_ctx *, struct list_head *, bool); ++ struct request * (*dispatch_request)(struct blk_mq_hw_ctx *); ++ bool (*has_work)(struct blk_mq_hw_ctx *); ++ void (*completed_request)(struct request *, u64); ++ void (*requeue_request)(struct request *); ++ struct request * (*former_request)(struct request_queue *, struct request *); ++ struct request * (*next_request)(struct request_queue *, struct request *); ++ void (*init_icq)(struct io_cq *); ++ void (*exit_icq)(struct io_cq *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct elv_fs_entry; ++ ++struct blk_mq_debugfs_attr; ++ ++struct elevator_type { ++ struct kmem_cache *icq_cache; ++ struct elevator_mq_ops ops; ++ size_t icq_size; ++ size_t icq_align; ++ struct elv_fs_entry *elevator_attrs; ++ const char *elevator_name; ++ const char *elevator_alias; ++ const unsigned int elevator_features; ++ struct module *elevator_owner; ++ const struct blk_mq_debugfs_attr *queue_debugfs_attrs; ++ const struct blk_mq_debugfs_attr *hctx_debugfs_attrs; ++ char icq_cache_name[22]; ++ struct list_head list; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct elevator_queue { ++ struct elevator_type *type; ++ void *elevator_data; ++ struct kobject kobj; ++ struct mutex sysfs_lock; ++ unsigned int registered: 1; ++ struct hlist_head hash[64]; ++}; ++ ++struct elv_fs_entry { ++ struct attribute attr; ++ ssize_t (*show)(struct elevator_queue *, char *); ++ ssize_t (*store)(struct elevator_queue *, const char *, size_t); ++}; ++ ++struct blk_mq_debugfs_attr { ++ const char *name; ++ umode_t mode; ++ int (*show)(void *, struct seq_file *); ++ ssize_t (*write)(void *, const char *, size_t, loff_t *); ++ const struct seq_operations *seq_ops; ++}; ++ ++enum blk_eh_timer_return { ++ BLK_EH_DONE = 0, ++ BLK_EH_RESET_TIMER = 1, ++}; ++ ++struct blk_mq_queue_data; ++ ++struct blk_mq_ops { ++ blk_status_t (*queue_rq)(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *); ++ void (*commit_rqs)(struct blk_mq_hw_ctx *); ++ bool (*get_budget)(struct request_queue *); ++ void (*put_budget)(struct request_queue *); ++ enum blk_eh_timer_return (*timeout)(struct request *, bool); ++ int (*poll)(struct blk_mq_hw_ctx *); ++ void (*complete)(struct request *); ++ int (*init_hctx)(struct blk_mq_hw_ctx *, void *, unsigned int); ++ void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); ++ int (*init_request)(struct blk_mq_tag_set *, struct request *, unsigned int, unsigned int); ++ void (*exit_request)(struct blk_mq_tag_set *, struct request *, unsigned int); ++ void (*initialize_rq_fn)(struct request *); ++ void (*cleanup_rq)(struct request *); ++ bool (*busy)(struct request_queue *); ++ int (*map_queues)(struct blk_mq_tag_set *); ++ void (*show_rq)(struct seq_file *, struct request *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct blk_integrity_iter { ++ void *prot_buf; ++ void *data_buf; ++ sector_t seed; ++ unsigned int data_size; ++ short unsigned int interval; ++ const char *disk_name; ++}; ++ ++enum pr_type { ++ PR_WRITE_EXCLUSIVE = 1, ++ PR_EXCLUSIVE_ACCESS = 2, ++ PR_WRITE_EXCLUSIVE_REG_ONLY = 3, ++ PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, ++ PR_WRITE_EXCLUSIVE_ALL_REGS = 5, ++ PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, ++}; ++ ++struct pr_ops { ++ int (*pr_register)(struct block_device *, u64, u64, u32); ++ int (*pr_reserve)(struct block_device *, u64, enum pr_type, u32); ++ int (*pr_release)(struct block_device *, u64, enum pr_type); ++ int (*pr_preempt)(struct block_device *, u64, u64, enum pr_type, bool); ++ int (*pr_clear)(struct block_device *, u64); ++}; ++ ++enum blkg_iostat_type { ++ BLKG_IOSTAT_READ = 0, ++ BLKG_IOSTAT_WRITE = 1, ++ BLKG_IOSTAT_DISCARD = 2, ++ BLKG_IOSTAT_NR = 3, ++}; ++ ++struct blkcg_policy_data; ++ ++struct blkcg { ++ struct cgroup_subsys_state css; ++ spinlock_t lock; ++ refcount_t online_pin; ++ struct xarray blkg_tree; ++ struct blkcg_gq *blkg_hint; ++ struct hlist_head blkg_list; ++ struct blkcg_policy_data *cpd[5]; ++ struct list_head all_blkcgs_node; ++ struct list_head cgwb_list; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct blkcg_policy_data { ++ struct blkcg *blkcg; ++ int plid; ++}; ++ ++struct blkg_policy_data { ++ struct blkcg_gq *blkg; ++ int plid; ++}; ++ ++typedef long unsigned int efi_status_t; ++ ++typedef u8 efi_bool_t; ++ ++typedef u16 efi_char16_t; ++ ++typedef guid_t efi_guid_t; ++ ++typedef struct { ++ u64 signature; ++ u32 revision; ++ u32 headersize; ++ u32 crc32; ++ u32 reserved; ++} efi_table_hdr_t; ++ ++typedef struct { ++ u32 type; ++ u32 pad; ++ u64 phys_addr; ++ u64 virt_addr; ++ u64 num_pages; ++ u64 attribute; ++} efi_memory_desc_t; ++ ++typedef struct { ++ efi_guid_t guid; ++ u32 headersize; ++ u32 flags; ++ u32 imagesize; ++} efi_capsule_header_t; ++ ++typedef struct { ++ u16 year; ++ u8 month; ++ u8 day; ++ u8 hour; ++ u8 minute; ++ u8 second; ++ u8 pad1; ++ u32 nanosecond; ++ s16 timezone; ++ u8 daylight; ++ u8 pad2; ++} efi_time_t; ++ ++typedef struct { ++ u32 resolution; ++ u32 accuracy; ++ u8 sets_to_zero; ++} efi_time_cap_t; ++ ++typedef struct { ++ efi_table_hdr_t hdr; ++ u32 get_time; ++ u32 set_time; ++ u32 get_wakeup_time; ++ u32 set_wakeup_time; ++ u32 set_virtual_address_map; ++ u32 convert_pointer; ++ u32 get_variable; ++ u32 get_next_variable; ++ u32 set_variable; ++ u32 get_next_high_mono_count; ++ u32 reset_system; ++ u32 update_capsule; ++ u32 query_capsule_caps; ++ u32 query_variable_info; ++} efi_runtime_services_32_t; ++ ++typedef efi_status_t efi_get_time_t(efi_time_t *, efi_time_cap_t *); ++ ++typedef efi_status_t efi_set_time_t(efi_time_t *); ++ ++typedef efi_status_t efi_get_wakeup_time_t(efi_bool_t *, efi_bool_t *, efi_time_t *); ++ ++typedef efi_status_t efi_set_wakeup_time_t(efi_bool_t, efi_time_t *); ++ ++typedef efi_status_t efi_get_variable_t(efi_char16_t *, efi_guid_t *, u32 *, long unsigned int *, void *); ++ ++typedef efi_status_t efi_get_next_variable_t(long unsigned int *, efi_char16_t *, efi_guid_t *); ++ ++typedef efi_status_t efi_set_variable_t(efi_char16_t *, efi_guid_t *, u32, long unsigned int, void *); ++ ++typedef efi_status_t efi_get_next_high_mono_count_t(u32 *); ++ ++typedef void efi_reset_system_t(int, efi_status_t, long unsigned int, efi_char16_t *); ++ ++typedef efi_status_t efi_query_variable_info_t(u32, u64 *, u64 *, u64 *); ++ ++typedef efi_status_t efi_update_capsule_t(efi_capsule_header_t **, long unsigned int, long unsigned int); ++ ++typedef efi_status_t efi_query_capsule_caps_t(efi_capsule_header_t **, long unsigned int, u64 *, int *); ++ ++typedef union { ++ struct { ++ efi_table_hdr_t hdr; ++ efi_status_t (*get_time)(efi_time_t *, efi_time_cap_t *); ++ efi_status_t (*set_time)(efi_time_t *); ++ efi_status_t (*get_wakeup_time)(efi_bool_t *, efi_bool_t *, efi_time_t *); ++ efi_status_t (*set_wakeup_time)(efi_bool_t, efi_time_t *); ++ efi_status_t (*set_virtual_address_map)(long unsigned int, long unsigned int, u32, efi_memory_desc_t *); ++ void *convert_pointer; ++ efi_status_t (*get_variable)(efi_char16_t *, efi_guid_t *, u32 *, long unsigned int *, void *); ++ efi_status_t (*get_next_variable)(long unsigned int *, efi_char16_t *, efi_guid_t *); ++ efi_status_t (*set_variable)(efi_char16_t *, efi_guid_t *, u32, long unsigned int, void *); ++ efi_status_t (*get_next_high_mono_count)(u32 *); ++ void (*reset_system)(int, efi_status_t, long unsigned int, efi_char16_t *); ++ efi_status_t (*update_capsule)(efi_capsule_header_t **, long unsigned int, long unsigned int); ++ efi_status_t (*query_capsule_caps)(efi_capsule_header_t **, long unsigned int, u64 *, int *); ++ efi_status_t (*query_variable_info)(u32, u64 *, u64 *, u64 *); ++ }; ++ efi_runtime_services_32_t mixed_mode; ++} efi_runtime_services_t; ++ ++struct efi_memory_map { ++ phys_addr_t phys_map; ++ void *map; ++ void *map_end; ++ int nr_map; ++ long unsigned int desc_version; ++ long unsigned int desc_size; ++ long unsigned int flags; ++}; ++ ++struct efi { ++ const efi_runtime_services_t *runtime; ++ unsigned int runtime_version; ++ unsigned int runtime_supported_mask; ++ long unsigned int acpi; ++ long unsigned int acpi20; ++ long unsigned int smbios; ++ long unsigned int smbios3; ++ long unsigned int esrt; ++ long unsigned int tpm_log; ++ long unsigned int tpm_final_log; ++ long unsigned int mokvar_table; ++ efi_get_time_t *get_time; ++ efi_set_time_t *set_time; ++ efi_get_wakeup_time_t *get_wakeup_time; ++ efi_set_wakeup_time_t *set_wakeup_time; ++ efi_get_variable_t *get_variable; ++ efi_get_next_variable_t *get_next_variable; ++ efi_set_variable_t *set_variable; ++ efi_set_variable_t *set_variable_nonblocking; ++ efi_query_variable_info_t *query_variable_info; ++ efi_query_variable_info_t *query_variable_info_nonblocking; ++ efi_update_capsule_t *update_capsule; ++ efi_query_capsule_caps_t *query_capsule_caps; ++ efi_get_next_high_mono_count_t *get_next_high_mono_count; ++ efi_reset_system_t *reset_system; ++ struct efi_memory_map memmap; ++ long unsigned int flags; ++}; ++ ++struct huge_pages_pool { ++ long unsigned int nr_huge_pages; ++ long unsigned int free_huge_pages; ++ long unsigned int resv_huge_pages; ++ long unsigned int used_huge_pages; ++ long unsigned int free_normal_pages; ++ long unsigned int split_normal_pages; ++ struct list_head hugepage_freelists; ++ struct list_head hugepage_splitlists; ++}; ++ ++struct percpu_pages_pool { ++ spinlock_t lock; ++ long unsigned int free_pages; ++ long int used_pages; ++ struct list_head head_page; ++}; ++ ++struct dhugetlb_pool { ++ int nid; ++ spinlock_t lock; ++ spinlock_t reserved_lock; ++ atomic_t refcnt; ++ long unsigned int normal_pages_disabled; ++ struct mem_cgroup *attach_memcg; ++ long unsigned int total_huge_pages; ++ struct huge_pages_pool hpages_pool[3]; ++ struct percpu_pages_pool percpu_pool[0]; ++}; ++ ++enum hugetlb_memory_event { ++ HUGETLB_MAX = 0, ++ HUGETLB_NR_MEMORY_EVENTS = 1, ++}; ++ ++enum huge_pages_pool_type { ++ HUGE_PAGES_POOL_1G = 0, ++ HUGE_PAGES_POOL_2M = 1, ++ HUGE_PAGES_POOL_4K = 2, ++ HUGE_PAGES_POOL_MAX = 3, ++}; ++ ++enum memcg_stat_item { ++ MEMCG_SWAP = 37, ++ MEMCG_SOCK = 38, ++ MEMCG_PERCPU_B = 39, ++ MEMCG_NR_STAT = 40, ++}; ++ ++enum memcg_memory_event { ++ MEMCG_LOW = 0, ++ MEMCG_HIGH = 1, ++ MEMCG_MAX = 2, ++ MEMCG_OOM = 3, ++ MEMCG_OOM_KILL = 4, ++ MEMCG_SWAP_HIGH = 5, ++ MEMCG_SWAP_MAX = 6, ++ MEMCG_SWAP_FAIL = 7, ++ MEMCG_NR_MEMORY_EVENTS = 8, ++}; ++ ++enum mem_cgroup_events_target { ++ MEM_CGROUP_TARGET_THRESH = 0, ++ MEM_CGROUP_TARGET_SOFTLIMIT = 1, ++ MEM_CGROUP_NTARGETS = 2, ++}; ++ ++struct memcg_vmstats_percpu { ++ long int state[40]; ++ long unsigned int events[96]; ++ long int state_prev[40]; ++ long unsigned int events_prev[96]; ++ long unsigned int nr_page_events; ++ long unsigned int targets[2]; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct mem_cgroup_reclaim_iter { ++ struct mem_cgroup *position; ++ unsigned int generation; ++}; ++ ++struct shrinker_info { ++ struct callback_head rcu; ++ atomic_long_t *nr_deferred; ++ long unsigned int *map; ++}; ++ ++struct lruvec_stats_percpu { ++ long int state[37]; ++ long int state_prev[37]; ++}; ++ ++struct lruvec_stats { ++ long int state[37]; ++ long int state_pending[37]; ++}; ++ ++struct mem_cgroup_per_node { ++ struct lruvec lruvec; ++ struct lruvec_stats_percpu *lruvec_stats_percpu; ++ struct lruvec_stats lruvec_stats; ++ long unsigned int lru_zone_size[25]; ++ struct mem_cgroup_reclaim_iter iter; ++ struct shrinker_info *shrinker_info; ++ struct rb_node tree_node; ++ long unsigned int usage_in_excess; ++ bool on_tree; ++ struct mem_cgroup *memcg; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++}; ++ ++struct eventfd_ctx; ++ ++struct mem_cgroup_threshold { ++ struct eventfd_ctx *eventfd; ++ long unsigned int threshold; ++}; ++ ++struct mem_cgroup_threshold_ary { ++ int current_threshold; ++ unsigned int size; ++ struct mem_cgroup_threshold entries[0]; ++}; ++ ++struct obj_cgroup { ++ struct percpu_ref refcnt; ++ struct mem_cgroup *memcg; ++ atomic_t nr_charged_bytes; ++ union { ++ struct list_head list; ++ struct callback_head rcu; ++ }; ++}; ++ ++struct percpu_cluster { ++ struct swap_cluster_info index; ++ unsigned int next; ++}; ++ ++enum fs_value_type { ++ fs_value_is_undefined = 0, ++ fs_value_is_flag = 1, ++ fs_value_is_string = 2, ++ fs_value_is_blob = 3, ++ fs_value_is_filename = 4, ++ fs_value_is_file = 5, ++}; ++ ++struct fs_parameter { ++ const char *key; ++ enum fs_value_type type: 8; ++ union { ++ char *string; ++ void *blob; ++ struct filename *name; ++ struct file *file; ++ }; ++ size_t size; ++ int dirfd; ++}; ++ ++struct fc_log { ++ refcount_t usage; ++ u8 head; ++ u8 tail; ++ u8 need_free; ++ struct module *owner; ++ char *buffer[8]; ++}; ++ ++struct fs_context_operations { ++ void (*free)(struct fs_context *); ++ int (*dup)(struct fs_context *, struct fs_context *); ++ int (*parse_param)(struct fs_context *, struct fs_parameter *); ++ int (*parse_monolithic)(struct fs_context *, void *); ++ int (*get_tree)(struct fs_context *); ++ int (*reconfigure)(struct fs_context *); ++}; ++ ++struct fs_parse_result { ++ bool negated; ++ union { ++ bool boolean; ++ int int_32; ++ unsigned int uint_32; ++ u64 uint_64; ++ }; ++}; ++ ++struct trace_event_raw_initcall_level { ++ struct trace_entry ent; ++ u32 __data_loc_level; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_initcall_start { ++ struct trace_entry ent; ++ initcall_t func; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_initcall_finish { ++ struct trace_entry ent; ++ initcall_t func; ++ int ret; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_initcall_level { ++ u32 level; ++}; ++ ++struct trace_event_data_offsets_initcall_start {}; ++ ++struct trace_event_data_offsets_initcall_finish {}; ++ ++typedef void (*btf_trace_initcall_level)(void *, const char *); ++ ++typedef void (*btf_trace_initcall_start)(void *, initcall_t); ++ ++typedef void (*btf_trace_initcall_finish)(void *, initcall_t, int); ++ ++struct blacklist_entry { ++ struct list_head next; ++ char *buf; ++}; ++ ++typedef __u32 Elf32_Word; ++ ++struct elf32_note { ++ Elf32_Word n_namesz; ++ Elf32_Word n_descsz; ++ Elf32_Word n_type; ++}; ++ ++enum { ++ PROC_ROOT_INO = 1, ++ PROC_IPC_INIT_INO = 4026531839, ++ PROC_UTS_INIT_INO = 4026531838, ++ PROC_USER_INIT_INO = 4026531837, ++ PROC_PID_INIT_INO = 4026531836, ++ PROC_CGROUP_INIT_INO = 4026531835, ++ PROC_TIME_INIT_INO = 4026531834, ++}; ++ ++typedef __u16 __le16; ++ ++typedef __u16 __be16; ++ ++typedef __u32 __be32; ++ ++typedef __u64 __be64; ++ ++typedef __u32 __wsum; ++ ++typedef unsigned int slab_flags_t; ++ ++struct llist_head { ++ struct llist_node *first; ++}; ++ ++struct notifier_block; ++ ++typedef int (*notifier_fn_t)(struct notifier_block *, long unsigned int, void *); ++ ++struct notifier_block { ++ notifier_fn_t notifier_call; ++ struct notifier_block *next; ++ int priority; ++}; ++ ++struct blocking_notifier_head { ++ struct rw_semaphore rwsem; ++ struct notifier_block *head; ++}; ++ ++struct raw_notifier_head { ++ struct notifier_block *head; ++}; ++ ++struct page_pool_params { ++ unsigned int flags; ++ unsigned int order; ++ unsigned int pool_size; ++ int nid; ++ struct device *dev; ++ enum dma_data_direction dma_dir; ++ unsigned int max_len; ++ unsigned int offset; ++}; ++ ++struct pp_alloc_cache { ++ u32 count; ++ struct page *cache[128]; ++}; ++ ++struct ptr_ring { ++ int producer; ++ spinlock_t producer_lock; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ int consumer_head; ++ int consumer_tail; ++ spinlock_t consumer_lock; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ int size; ++ int batch; ++ void **queue; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct page_pool { ++ struct page_pool_params p; ++ struct delayed_work release_dw; ++ void (*disconnect)(void *); ++ long unsigned int defer_start; ++ long unsigned int defer_warn; ++ u32 pages_state_hold_cnt; ++ unsigned int frag_offset; ++ struct page *frag_page; ++ long int frag_users; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct pp_alloc_cache alloc; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct ptr_ring ring; ++ atomic_t pages_state_release_cnt; ++ refcount_t user_cnt; ++ u64 destroy_cnt; ++ u64 kabi_reserved1; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++typedef __u64 __addrpair; ++ ++typedef __u32 __portpair; ++ ++typedef struct { ++ struct net *net; ++} possible_net_t; ++ ++struct in6_addr { ++ union { ++ __u8 u6_addr8[16]; ++ __be16 u6_addr16[8]; ++ __be32 u6_addr32[4]; ++ } in6_u; ++}; ++ ++struct hlist_nulls_node { ++ struct hlist_nulls_node *next; ++ struct hlist_nulls_node **pprev; ++}; ++ ++struct proto; ++ ++struct inet_timewait_death_row; ++ ++struct sock_common { ++ union { ++ __addrpair skc_addrpair; ++ struct { ++ __be32 skc_daddr; ++ __be32 skc_rcv_saddr; ++ }; ++ }; ++ union { ++ unsigned int skc_hash; ++ __u16 skc_u16hashes[2]; ++ }; ++ union { ++ __portpair skc_portpair; ++ struct { ++ __be16 skc_dport; ++ __u16 skc_num; ++ }; ++ }; ++ short unsigned int skc_family; ++ volatile unsigned char skc_state; ++ unsigned char skc_reuse: 4; ++ unsigned char skc_reuseport: 1; ++ unsigned char skc_ipv6only: 1; ++ unsigned char skc_net_refcnt: 1; ++ int skc_bound_dev_if; ++ union { ++ struct hlist_node skc_bind_node; ++ struct hlist_node skc_portaddr_node; ++ }; ++ struct proto *skc_prot; ++ possible_net_t skc_net; ++ struct in6_addr skc_v6_daddr; ++ struct in6_addr skc_v6_rcv_saddr; ++ atomic64_t skc_cookie; ++ union { ++ long unsigned int skc_flags; ++ struct sock *skc_listener; ++ struct inet_timewait_death_row *skc_tw_dr; ++ }; ++ int skc_dontcopy_begin[0]; ++ union { ++ struct hlist_node skc_node; ++ struct hlist_nulls_node skc_nulls_node; ++ }; ++ short unsigned int skc_tx_queue_mapping; ++ short unsigned int skc_rx_queue_mapping; ++ union { ++ int skc_incoming_cpu; ++ u32 skc_rcv_wnd; ++ u32 skc_tw_rcv_nxt; ++ }; ++ refcount_t skc_refcnt; ++ int skc_dontcopy_end[0]; ++ union { ++ u32 skc_rxhash; ++ u32 skc_window_clamp; ++ u32 skc_tw_snd_nxt; ++ }; ++}; ++ ++typedef struct { ++ spinlock_t slock; ++ int owned; ++ wait_queue_head_t wq; ++} socket_lock_t; ++ ++struct sk_buff; ++ ++struct sk_buff_head { ++ struct sk_buff *next; ++ struct sk_buff *prev; ++ __u32 qlen; ++ spinlock_t lock; ++}; ++ ++typedef u64 netdev_features_t; ++ ++struct sock_cgroup_data { ++ struct cgroup *cgroup; ++ u32 classid; ++ u16 prioidx; ++}; ++ ++struct sk_filter; ++ ++struct socket_wq; ++ ++struct xfrm_policy; ++ ++struct dst_entry; ++ ++struct socket; ++ ++struct net_device; ++ ++struct sock_reuseport; ++ ++struct bpf_local_storage; ++ ++struct sock { ++ struct sock_common __sk_common; ++ socket_lock_t sk_lock; ++ atomic_t sk_drops; ++ int sk_rcvlowat; ++ struct sk_buff_head sk_error_queue; ++ struct sk_buff *sk_rx_skb_cache; ++ struct sk_buff_head sk_receive_queue; ++ struct { ++ atomic_t rmem_alloc; ++ int len; ++ struct sk_buff *head; ++ struct sk_buff *tail; ++ } sk_backlog; ++ struct llist_head defer_list; ++ int sk_forward_alloc; ++ unsigned int sk_ll_usec; ++ unsigned int sk_napi_id; ++ int sk_rcvbuf; ++ struct sk_filter *sk_filter; ++ union { ++ struct socket_wq *sk_wq; ++ struct socket_wq *sk_wq_raw; ++ }; ++ struct xfrm_policy *sk_policy[2]; ++ struct dst_entry *sk_rx_dst; ++ struct dst_entry *sk_dst_cache; ++ atomic_t sk_omem_alloc; ++ int sk_sndbuf; ++ int sk_wmem_queued; ++ refcount_t sk_wmem_alloc; ++ long unsigned int sk_tsq_flags; ++ union { ++ struct sk_buff *sk_send_head; ++ struct rb_root tcp_rtx_queue; ++ }; ++ struct sk_buff *sk_tx_skb_cache; ++ struct sk_buff_head sk_write_queue; ++ __s32 sk_peek_off; ++ int sk_write_pending; ++ __u32 sk_dst_pending_confirm; ++ u32 sk_pacing_status; ++ long int sk_sndtimeo; ++ struct timer_list sk_timer; ++ __u32 sk_priority; ++ __u32 sk_mark; ++ long unsigned int sk_pacing_rate; ++ long unsigned int sk_max_pacing_rate; ++ struct page_frag sk_frag; ++ netdev_features_t sk_route_caps; ++ netdev_features_t sk_route_nocaps; ++ netdev_features_t sk_route_forced_caps; ++ int sk_gso_type; ++ unsigned int sk_gso_max_size; ++ gfp_t sk_allocation; ++ __u32 sk_txhash; ++ u8 sk_padding: 1; ++ u8 sk_kern_sock: 1; ++ u8 sk_no_check_tx: 1; ++ u8 sk_no_check_rx: 1; ++ u8 sk_userlocks: 4; ++ u8 sk_pacing_shift; ++ u16 sk_type; ++ u16 sk_protocol; ++ u16 sk_gso_max_segs; ++ long unsigned int sk_lingertime; ++ struct proto *sk_prot_creator; ++ rwlock_t sk_callback_lock; ++ int sk_err; ++ int sk_err_soft; ++ u32 sk_ack_backlog; ++ u32 sk_max_ack_backlog; ++ kuid_t sk_uid; ++ spinlock_t sk_peer_lock; ++ struct pid *sk_peer_pid; ++ const struct cred *sk_peer_cred; ++ long int sk_rcvtimeo; ++ ktime_t sk_stamp; ++ u16 sk_tsflags; ++ u8 sk_shutdown; ++ u32 sk_tskey; ++ atomic_t sk_zckey; ++ u8 sk_clockid; ++ u8 sk_txtime_deadline_mode: 1; ++ u8 sk_txtime_report_errors: 1; ++ u8 sk_txtime_unused: 6; ++ struct socket *sk_socket; ++ void *sk_user_data; ++ void *sk_security; ++ struct sock_cgroup_data sk_cgrp_data; ++ struct mem_cgroup *sk_memcg; ++ void (*sk_state_change)(struct sock *); ++ void (*sk_data_ready)(struct sock *); ++ void (*sk_write_space)(struct sock *); ++ void (*sk_error_report)(struct sock *); ++ int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); ++ struct sk_buff * (*sk_validate_xmit_skb)(struct sock *, struct net_device *, struct sk_buff *); ++ void (*sk_destruct)(struct sock *); ++ struct sock_reuseport *sk_reuseport_cb; ++ struct bpf_local_storage *sk_bpf_storage; ++ struct callback_head sk_rcu; ++ union { ++ kgid_t sk_gid; ++ u64 sk_gid_padding; ++ }; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct rhash_head { ++ struct rhash_head *next; ++}; ++ ++struct rhashtable; ++ ++struct rhashtable_compare_arg { ++ struct rhashtable *ht; ++ const void *key; ++}; ++ ++typedef u32 (*rht_hashfn_t)(const void *, u32, u32); ++ ++typedef u32 (*rht_obj_hashfn_t)(const void *, u32, u32); ++ ++typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *, const void *); ++ ++struct rhashtable_params { ++ u16 nelem_hint; ++ u16 key_len; ++ u16 key_offset; ++ u16 head_offset; ++ unsigned int max_size; ++ u16 min_size; ++ bool automatic_shrinking; ++ rht_hashfn_t hashfn; ++ rht_obj_hashfn_t obj_hashfn; ++ rht_obj_cmpfn_t obj_cmpfn; ++}; ++ ++struct bucket_table; ++ ++struct rhashtable { ++ struct bucket_table *tbl; ++ unsigned int key_len; ++ unsigned int max_elems; ++ struct rhashtable_params p; ++ bool rhlist; ++ struct work_struct run_work; ++ struct mutex mutex; ++ spinlock_t lock; ++ atomic_t nelems; ++}; ++ ++struct fs_struct { ++ int users; ++ spinlock_t lock; ++ seqcount_spinlock_t seq; ++ int umask; ++ int in_exec; ++ struct path root; ++ struct path pwd; ++}; ++ ++struct pipe_buffer; ++ ++struct pipe_inode_info { ++ struct mutex mutex; ++ wait_queue_head_t rd_wait; ++ wait_queue_head_t wr_wait; ++ unsigned int head; ++ unsigned int tail; ++ unsigned int max_usage; ++ unsigned int ring_size; ++ unsigned int nr_accounted; ++ unsigned int readers; ++ unsigned int writers; ++ unsigned int files; ++ unsigned int r_counter; ++ unsigned int w_counter; ++ unsigned int poll_usage; ++ struct page *tmp_page; ++ struct fasync_struct *fasync_readers; ++ struct fasync_struct *fasync_writers; ++ struct pipe_buffer *bufs; ++ struct user_struct *user; ++}; ++ ++typedef short unsigned int __kernel_sa_family_t; ++ ++typedef __kernel_sa_family_t sa_family_t; ++ ++struct sockaddr { ++ sa_family_t sa_family; ++ char sa_data[14]; ++}; ++ ++struct msghdr { ++ void *msg_name; ++ int msg_namelen; ++ struct iov_iter msg_iter; ++ union { ++ void *msg_control; ++ void *msg_control_user; ++ }; ++ bool msg_control_is_user: 1; ++ __kernel_size_t msg_controllen; ++ unsigned int msg_flags; ++ struct kiocb *msg_iocb; ++}; ++ ++typedef struct { ++ unsigned int clock_rate; ++ unsigned int clock_type; ++ short unsigned int loopback; ++} sync_serial_settings; ++ ++typedef struct { ++ unsigned int clock_rate; ++ unsigned int clock_type; ++ short unsigned int loopback; ++ unsigned int slot_map; ++} te1_settings; ++ ++typedef struct { ++ short unsigned int encoding; ++ short unsigned int parity; ++} raw_hdlc_proto; ++ ++typedef struct { ++ unsigned int t391; ++ unsigned int t392; ++ unsigned int n391; ++ unsigned int n392; ++ unsigned int n393; ++ short unsigned int lmi; ++ short unsigned int dce; ++} fr_proto; ++ ++typedef struct { ++ unsigned int dlci; ++} fr_proto_pvc; ++ ++typedef struct { ++ unsigned int dlci; ++ char master[16]; ++} fr_proto_pvc_info; ++ ++typedef struct { ++ unsigned int interval; ++ unsigned int timeout; ++} cisco_proto; ++ ++typedef struct { ++ short unsigned int dce; ++ unsigned int modulo; ++ unsigned int window; ++ unsigned int t1; ++ unsigned int t2; ++ unsigned int n2; ++} x25_hdlc_proto; ++ ++struct ifmap { ++ long unsigned int mem_start; ++ long unsigned int mem_end; ++ short unsigned int base_addr; ++ unsigned char irq; ++ unsigned char dma; ++ unsigned char port; ++}; ++ ++struct if_settings { ++ unsigned int type; ++ unsigned int size; ++ union { ++ raw_hdlc_proto *raw_hdlc; ++ cisco_proto *cisco; ++ fr_proto *fr; ++ fr_proto_pvc *fr_pvc; ++ fr_proto_pvc_info *fr_pvc_info; ++ x25_hdlc_proto *x25; ++ sync_serial_settings *sync; ++ te1_settings *te1; ++ } ifs_ifsu; ++}; ++ ++struct ifreq { ++ union { ++ char ifrn_name[16]; ++ } ifr_ifrn; ++ union { ++ struct sockaddr ifru_addr; ++ struct sockaddr ifru_dstaddr; ++ struct sockaddr ifru_broadaddr; ++ struct sockaddr ifru_netmask; ++ struct sockaddr ifru_hwaddr; ++ short int ifru_flags; ++ int ifru_ivalue; ++ int ifru_mtu; ++ struct ifmap ifru_map; ++ char ifru_slave[16]; ++ char ifru_newname[16]; ++ void *ifru_data; ++ struct if_settings ifru_settings; ++ } ifr_ifru; ++}; ++ ++struct ld_semaphore { ++ atomic_long_t count; ++ raw_spinlock_t wait_lock; ++ unsigned int wait_readers; ++ struct list_head read_wait; ++ struct list_head write_wait; ++}; ++ ++typedef unsigned int tcflag_t; ++ ++typedef unsigned char cc_t; ++ ++typedef unsigned int speed_t; ++ ++struct ktermios { ++ tcflag_t c_iflag; ++ tcflag_t c_oflag; ++ tcflag_t c_cflag; ++ tcflag_t c_lflag; ++ cc_t c_line; ++ cc_t c_cc[19]; ++ speed_t c_ispeed; ++ speed_t c_ospeed; ++}; ++ ++struct winsize { ++ short unsigned int ws_row; ++ short unsigned int ws_col; ++ short unsigned int ws_xpixel; ++ short unsigned int ws_ypixel; ++}; ++ ++struct tty_driver; ++ ++struct tty_operations; ++ ++struct tty_ldisc; ++ ++struct tty_port; ++ ++struct tty_struct { ++ int magic; ++ struct kref kref; ++ struct device *dev; ++ struct tty_driver *driver; ++ const struct tty_operations *ops; ++ int index; ++ struct ld_semaphore ldisc_sem; ++ struct tty_ldisc *ldisc; ++ struct mutex atomic_write_lock; ++ struct mutex legacy_mutex; ++ struct mutex throttle_mutex; ++ struct rw_semaphore termios_rwsem; ++ struct mutex winsize_mutex; ++ spinlock_t ctrl_lock; ++ spinlock_t flow_lock; ++ struct ktermios termios; ++ struct ktermios termios_locked; ++ char name[64]; ++ struct pid *pgrp; ++ struct pid *session; ++ long unsigned int flags; ++ int count; ++ struct winsize winsize; ++ long unsigned int stopped: 1; ++ long unsigned int flow_stopped: 1; ++ int: 30; ++ long unsigned int unused: 62; ++ int hw_stopped; ++ long unsigned int ctrl_status: 8; ++ long unsigned int packet: 1; ++ int: 23; ++ long unsigned int unused_ctrl: 55; ++ unsigned int receive_room; ++ int flow_change; ++ struct tty_struct *link; ++ struct fasync_struct *fasync; ++ wait_queue_head_t write_wait; ++ wait_queue_head_t read_wait; ++ struct work_struct hangup_work; ++ void *disc_data; ++ void *driver_data; ++ spinlock_t files_lock; ++ struct list_head tty_files; ++ int closing; ++ unsigned char *write_buf; ++ int write_cnt; ++ struct work_struct SAK_work; ++ struct tty_port *port; ++}; ++ ++typedef struct { ++ size_t written; ++ size_t count; ++ union { ++ char *buf; ++ void *data; ++ } arg; ++ int error; ++} read_descriptor_t; ++ ++struct posix_acl_entry { ++ short int e_tag; ++ short unsigned int e_perm; ++ union { ++ kuid_t e_uid; ++ kgid_t e_gid; ++ }; ++}; ++ ++struct posix_acl { ++ refcount_t a_refcount; ++ struct callback_head a_rcu; ++ unsigned int a_count; ++ struct posix_acl_entry a_entries[0]; ++}; ++ ++struct serial_icounter_struct; ++ ++struct serial_struct; ++ ++struct tty_operations { ++ struct tty_struct * (*lookup)(struct tty_driver *, struct file *, int); ++ int (*install)(struct tty_driver *, struct tty_struct *); ++ void (*remove)(struct tty_driver *, struct tty_struct *); ++ int (*open)(struct tty_struct *, struct file *); ++ void (*close)(struct tty_struct *, struct file *); ++ void (*shutdown)(struct tty_struct *); ++ void (*cleanup)(struct tty_struct *); ++ int (*write)(struct tty_struct *, const unsigned char *, int); ++ int (*put_char)(struct tty_struct *, unsigned char); ++ void (*flush_chars)(struct tty_struct *); ++ int (*write_room)(struct tty_struct *); ++ int (*chars_in_buffer)(struct tty_struct *); ++ int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); ++ long int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); ++ void (*set_termios)(struct tty_struct *, struct ktermios *); ++ void (*throttle)(struct tty_struct *); ++ void (*unthrottle)(struct tty_struct *); ++ void (*stop)(struct tty_struct *); ++ void (*start)(struct tty_struct *); ++ void (*hangup)(struct tty_struct *); ++ int (*break_ctl)(struct tty_struct *, int); ++ void (*flush_buffer)(struct tty_struct *); ++ void (*set_ldisc)(struct tty_struct *); ++ void (*wait_until_sent)(struct tty_struct *, int); ++ void (*send_xchar)(struct tty_struct *, char); ++ int (*tiocmget)(struct tty_struct *); ++ int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); ++ int (*resize)(struct tty_struct *, struct winsize *); ++ int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); ++ int (*get_serial)(struct tty_struct *, struct serial_struct *); ++ int (*set_serial)(struct tty_struct *, struct serial_struct *); ++ void (*show_fdinfo)(struct tty_struct *, struct seq_file *); ++ int (*poll_init)(struct tty_driver *, int, char *); ++ int (*poll_get_char)(struct tty_driver *, int); ++ void (*poll_put_char)(struct tty_driver *, int, char); ++ int (*proc_show)(struct seq_file *, void *); ++}; ++ ++struct proc_dir_entry; ++ ++struct tty_driver { ++ int magic; ++ struct kref kref; ++ struct cdev **cdevs; ++ struct module *owner; ++ const char *driver_name; ++ const char *name; ++ int name_base; ++ int major; ++ int minor_start; ++ unsigned int num; ++ short int type; ++ short int subtype; ++ struct ktermios init_termios; ++ long unsigned int flags; ++ struct proc_dir_entry *proc_entry; ++ struct tty_driver *other; ++ struct tty_struct **ttys; ++ struct tty_port **ports; ++ struct ktermios **termios; ++ void *driver_state; ++ const struct tty_operations *ops; ++ struct list_head tty_drivers; ++}; ++ ++struct tty_buffer { ++ union { ++ struct tty_buffer *next; ++ struct llist_node free; ++ }; ++ int used; ++ int size; ++ int commit; ++ int read; ++ int flags; ++ long unsigned int data[0]; ++}; ++ ++struct tty_bufhead { ++ struct tty_buffer *head; ++ struct work_struct work; ++ struct mutex lock; ++ atomic_t priority; ++ struct tty_buffer sentinel; ++ struct llist_head free; ++ atomic_t mem_used; ++ int mem_limit; ++ struct tty_buffer *tail; ++}; ++ ++struct tty_port_operations; ++ ++struct tty_port_client_operations; ++ ++struct tty_port { ++ struct tty_bufhead buf; ++ struct tty_struct *tty; ++ struct tty_struct *itty; ++ const struct tty_port_operations *ops; ++ const struct tty_port_client_operations *client_ops; ++ spinlock_t lock; ++ int blocked_open; ++ int count; ++ wait_queue_head_t open_wait; ++ wait_queue_head_t delta_msr_wait; ++ long unsigned int flags; ++ long unsigned int iflags; ++ unsigned char console: 1; ++ unsigned char low_latency: 1; ++ struct mutex mutex; ++ struct mutex buf_mutex; ++ unsigned char *xmit_buf; ++ unsigned int close_delay; ++ unsigned int closing_wait; ++ int drain_delay; ++ struct kref kref; ++ void *client_data; ++}; ++ ++struct tty_ldisc_ops { ++ int magic; ++ char *name; ++ int num; ++ int flags; ++ int (*open)(struct tty_struct *); ++ void (*close)(struct tty_struct *); ++ void (*flush_buffer)(struct tty_struct *); ++ ssize_t (*read)(struct tty_struct *, struct file *, unsigned char *, size_t, void **, long unsigned int); ++ ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t); ++ int (*ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); ++ int (*compat_ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); ++ void (*set_termios)(struct tty_struct *, struct ktermios *); ++ __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); ++ int (*hangup)(struct tty_struct *); ++ void (*receive_buf)(struct tty_struct *, const unsigned char *, char *, int); ++ void (*write_wakeup)(struct tty_struct *); ++ void (*dcd_change)(struct tty_struct *, unsigned int); ++ int (*receive_buf2)(struct tty_struct *, const unsigned char *, char *, int); ++ struct module *owner; ++ int refcount; ++}; ++ ++struct tty_ldisc { ++ struct tty_ldisc_ops *ops; ++ struct tty_struct *tty; ++}; ++ ++struct tty_port_operations { ++ int (*carrier_raised)(struct tty_port *); ++ void (*dtr_rts)(struct tty_port *, int); ++ void (*shutdown)(struct tty_port *); ++ int (*activate)(struct tty_port *, struct tty_struct *); ++ void (*destruct)(struct tty_port *); ++}; ++ ++struct tty_port_client_operations { ++ int (*receive_buf)(struct tty_port *, const unsigned char *, const unsigned char *, size_t); ++ void (*write_wakeup)(struct tty_port *); ++}; ++ ++struct prot_inuse; ++ ++struct netns_core { ++ struct ctl_table_header *sysctl_hdr; ++ int sysctl_somaxconn; ++ int *sock_inuse; ++ struct prot_inuse *prot_inuse; ++}; ++ ++struct tcp_mib; ++ ++struct ipstats_mib; ++ ++struct linux_mib; ++ ++struct udp_mib; ++ ++struct icmp_mib; ++ ++struct icmpmsg_mib; ++ ++struct icmpv6_mib; ++ ++struct icmpv6msg_mib; ++ ++struct linux_xfrm_mib; ++ ++struct linux_tls_mib; ++ ++struct netns_mib { ++ struct tcp_mib *tcp_statistics; ++ struct ipstats_mib *ip_statistics; ++ struct linux_mib *net_statistics; ++ struct udp_mib *udp_statistics; ++ struct udp_mib *udplite_statistics; ++ struct icmp_mib *icmp_statistics; ++ struct icmpmsg_mib *icmpmsg_statistics; ++ struct proc_dir_entry *proc_net_devsnmp6; ++ struct udp_mib *udp_stats_in6; ++ struct udp_mib *udplite_stats_in6; ++ struct ipstats_mib *ipv6_statistics; ++ struct icmpv6_mib *icmpv6_statistics; ++ struct icmpv6msg_mib *icmpv6msg_statistics; ++ struct linux_xfrm_mib *xfrm_statistics; ++ struct linux_tls_mib *tls_statistics; ++}; ++ ++struct netns_packet { ++ struct mutex sklist_lock; ++ struct hlist_head sklist; ++}; ++ ++struct netns_unix { ++ int sysctl_max_dgram_qlen; ++ struct ctl_table_header *ctl; ++}; ++ ++struct netns_nexthop { ++ struct rb_root rb_root; ++ struct hlist_head *devhash; ++ unsigned int seq; ++ u32 last_id_allocated; ++ struct blocking_notifier_head notifier_chain; ++}; ++ ++struct local_ports { ++ seqlock_t lock; ++ int range[2]; ++ bool warned; ++}; ++ ++struct inet_hashinfo; ++ ++struct inet_timewait_death_row { ++ atomic_t tw_count; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct inet_hashinfo *hashinfo; ++ int sysctl_max_tw_buckets; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct ping_group_range { ++ seqlock_t lock; ++ kgid_t range[2]; ++}; ++ ++typedef struct { ++ u64 key[2]; ++} siphash_key_t; ++ ++struct ipv4_devconf; ++ ++struct ip_ra_chain; ++ ++struct fib_rules_ops; ++ ++struct fib_table; ++ ++struct inet_peer_base; ++ ++struct fqdir; ++ ++struct xt_table; ++ ++struct tcp_congestion_ops; ++ ++struct tcp_fastopen_context; ++ ++struct fib_notifier_ops; ++ ++struct netns_ipv4 { ++ struct ctl_table_header *forw_hdr; ++ struct ctl_table_header *frags_hdr; ++ struct ctl_table_header *ipv4_hdr; ++ struct ctl_table_header *route_hdr; ++ struct ctl_table_header *xfrm4_hdr; ++ struct ipv4_devconf *devconf_all; ++ struct ipv4_devconf *devconf_dflt; ++ struct ip_ra_chain *ra_chain; ++ struct mutex ra_mutex; ++ struct fib_rules_ops *rules_ops; ++ bool fib_has_custom_rules; ++ unsigned int fib_rules_require_fldissect; ++ struct fib_table *fib_main; ++ struct fib_table *fib_default; ++ bool fib_has_custom_local_routes; ++ atomic_t fib_num_tclassid_users; ++ struct hlist_head *fib_table_hash; ++ bool fib_offload_disabled; ++ struct sock *fibnl; ++ struct sock **icmp_sk; ++ struct sock *mc_autojoin_sk; ++ struct inet_peer_base *peers; ++ struct sock **tcp_sk; ++ struct fqdir *fqdir; ++ struct xt_table *iptable_filter; ++ struct xt_table *iptable_mangle; ++ struct xt_table *iptable_raw; ++ struct xt_table *arptable_filter; ++ struct xt_table *iptable_security; ++ struct xt_table *nat_table; ++ int sysctl_icmp_echo_ignore_all; ++ int sysctl_icmp_echo_ignore_broadcasts; ++ int sysctl_icmp_ignore_bogus_error_responses; ++ int sysctl_icmp_ratelimit; ++ int sysctl_icmp_ratemask; ++ int sysctl_icmp_errors_use_inbound_ifaddr; ++ struct local_ports ip_local_ports; ++ int sysctl_tcp_ecn; ++ int sysctl_tcp_ecn_fallback; ++ int sysctl_ip_default_ttl; ++ int sysctl_ip_no_pmtu_disc; ++ int sysctl_ip_fwd_use_pmtu; ++ int sysctl_ip_fwd_update_priority; ++ int sysctl_ip_nonlocal_bind; ++ int sysctl_ip_autobind_reuse; ++ int sysctl_ip_dynaddr; ++ int sysctl_ip_early_demux; ++ int sysctl_raw_l3mdev_accept; ++ int sysctl_tcp_early_demux; ++ int sysctl_udp_early_demux; ++ int sysctl_nexthop_compat_mode; ++ int sysctl_fwmark_reflect; ++ int sysctl_tcp_fwmark_accept; ++ int sysctl_tcp_l3mdev_accept; ++ int sysctl_tcp_mtu_probing; ++ int sysctl_tcp_mtu_probe_floor; ++ int sysctl_tcp_base_mss; ++ int sysctl_tcp_min_snd_mss; ++ int sysctl_tcp_probe_threshold; ++ u32 sysctl_tcp_probe_interval; ++ int sysctl_tcp_keepalive_time; ++ int sysctl_tcp_keepalive_probes; ++ int sysctl_tcp_keepalive_intvl; ++ int sysctl_tcp_syn_retries; ++ int sysctl_tcp_synack_retries; ++ int sysctl_tcp_syncookies; ++ int sysctl_tcp_reordering; ++ int sysctl_tcp_retries1; ++ int sysctl_tcp_retries2; ++ int sysctl_tcp_orphan_retries; ++ int sysctl_tcp_fin_timeout; ++ unsigned int sysctl_tcp_notsent_lowat; ++ int sysctl_tcp_tw_reuse; ++ int sysctl_tcp_sack; ++ int sysctl_tcp_window_scaling; ++ int sysctl_tcp_timestamps; ++ int sysctl_tcp_early_retrans; ++ int sysctl_tcp_recovery; ++ int sysctl_tcp_thin_linear_timeouts; ++ int sysctl_tcp_slow_start_after_idle; ++ int sysctl_tcp_retrans_collapse; ++ int sysctl_tcp_stdurg; ++ int sysctl_tcp_rfc1337; ++ int sysctl_tcp_abort_on_overflow; ++ int sysctl_tcp_fack; ++ int sysctl_tcp_max_reordering; ++ int sysctl_tcp_dsack; ++ int sysctl_tcp_app_win; ++ int sysctl_tcp_adv_win_scale; ++ int sysctl_tcp_frto; ++ int sysctl_tcp_nometrics_save; ++ int sysctl_tcp_no_ssthresh_metrics_save; ++ int sysctl_tcp_moderate_rcvbuf; ++ int sysctl_tcp_tso_win_divisor; ++ int sysctl_tcp_workaround_signed_windows; ++ int sysctl_tcp_limit_output_bytes; ++ int sysctl_tcp_challenge_ack_limit; ++ int sysctl_tcp_min_tso_segs; ++ int sysctl_tcp_min_rtt_wlen; ++ int sysctl_tcp_autocorking; ++ int sysctl_tcp_invalid_ratelimit; ++ int sysctl_tcp_pacing_ss_ratio; ++ int sysctl_tcp_pacing_ca_ratio; ++ int sysctl_tcp_wmem[3]; ++ int sysctl_tcp_rmem[3]; ++ int sysctl_tcp_comp_sack_nr; ++ long unsigned int sysctl_tcp_comp_sack_delay_ns; ++ long unsigned int sysctl_tcp_comp_sack_slack_ns; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct inet_timewait_death_row tcp_death_row; ++ int sysctl_max_syn_backlog; ++ int sysctl_tcp_fastopen; ++ const struct tcp_congestion_ops *tcp_congestion_control; ++ struct tcp_fastopen_context *tcp_fastopen_ctx; ++ spinlock_t tcp_fastopen_ctx_lock; ++ unsigned int sysctl_tcp_fastopen_blackhole_timeout; ++ atomic_t tfo_active_disable_times; ++ long unsigned int tfo_active_disable_stamp; ++ int sysctl_tcp_reflect_tos; ++ int sysctl_udp_wmem_min; ++ int sysctl_udp_rmem_min; ++ int sysctl_udp_l3mdev_accept; ++ int sysctl_igmp_max_memberships; ++ int sysctl_igmp_max_msf; ++ int sysctl_igmp_llm_reports; ++ int sysctl_igmp_qrv; ++ struct ping_group_range ping_group_range; ++ atomic_t dev_addr_genid; ++ long unsigned int *sysctl_local_reserved_ports; ++ int sysctl_ip_prot_sock; ++ struct list_head mr_tables; ++ struct fib_rules_ops *mr_rules_ops; ++ int sysctl_fib_multipath_use_neigh; ++ int sysctl_fib_multipath_hash_policy; ++ struct fib_notifier_ops *notifier_ops; ++ unsigned int fib_seq; ++ struct fib_notifier_ops *ipmr_notifier_ops; ++ unsigned int ipmr_seq; ++ atomic_t rt_genid; ++ siphash_key_t ip_id_key; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ long: 64; ++}; ++ ++struct netns_sysctl_ipv6 { ++ struct ctl_table_header *hdr; ++ struct ctl_table_header *route_hdr; ++ struct ctl_table_header *icmp_hdr; ++ struct ctl_table_header *frags_hdr; ++ struct ctl_table_header *xfrm6_hdr; ++ int bindv6only; ++ int flush_delay; ++ int ip6_rt_max_size; ++ int ip6_rt_gc_min_interval; ++ int ip6_rt_gc_timeout; ++ int ip6_rt_gc_interval; ++ int ip6_rt_gc_elasticity; ++ int ip6_rt_mtu_expires; ++ int ip6_rt_min_advmss; ++ int multipath_hash_policy; ++ int flowlabel_consistency; ++ int auto_flowlabels; ++ int icmpv6_time; ++ int icmpv6_echo_ignore_all; ++ int icmpv6_echo_ignore_multicast; ++ int icmpv6_echo_ignore_anycast; ++ long unsigned int icmpv6_ratemask[4]; ++ long unsigned int *icmpv6_ratemask_ptr; ++ int anycast_src_echo_reply; ++ int ip_nonlocal_bind; ++ int fwmark_reflect; ++ int idgen_retries; ++ int idgen_delay; ++ int flowlabel_state_ranges; ++ int flowlabel_reflect; ++ int max_dst_opts_cnt; ++ int max_hbh_opts_cnt; ++ int max_dst_opts_len; ++ int max_hbh_opts_len; ++ int seg6_flowlabel; ++ bool skip_notify_on_dev_down; ++}; ++ ++struct neighbour; ++ ++struct dst_ops { ++ short unsigned int family; ++ unsigned int gc_thresh; ++ int (*gc)(struct dst_ops *); ++ struct dst_entry * (*check)(struct dst_entry *, __u32); ++ unsigned int (*default_advmss)(const struct dst_entry *); ++ unsigned int (*mtu)(const struct dst_entry *); ++ u32 * (*cow_metrics)(struct dst_entry *, long unsigned int); ++ void (*destroy)(struct dst_entry *); ++ void (*ifdown)(struct dst_entry *, struct net_device *, int); ++ struct dst_entry * (*negative_advice)(struct dst_entry *); ++ void (*link_failure)(struct sk_buff *); ++ void (*update_pmtu)(struct dst_entry *, struct sock *, struct sk_buff *, u32, bool); ++ void (*redirect)(struct dst_entry *, struct sock *, struct sk_buff *); ++ int (*local_out)(struct net *, struct sock *, struct sk_buff *); ++ struct neighbour * (*neigh_lookup)(const struct dst_entry *, struct sk_buff *, const void *); ++ void (*confirm_neigh)(const struct dst_entry *, const void *); ++ struct kmem_cache *kmem_cachep; ++ struct percpu_counter pcpuc_entries; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct ipv6_devconf; ++ ++struct fib6_info; ++ ++struct rt6_info; ++ ++struct rt6_statistics; ++ ++struct fib6_table; ++ ++struct seg6_pernet_data; ++ ++struct netns_ipv6 { ++ struct netns_sysctl_ipv6 sysctl; ++ struct ipv6_devconf *devconf_all; ++ struct ipv6_devconf *devconf_dflt; ++ struct inet_peer_base *peers; ++ struct fqdir *fqdir; ++ struct xt_table *ip6table_filter; ++ struct xt_table *ip6table_mangle; ++ struct xt_table *ip6table_raw; ++ struct xt_table *ip6table_security; ++ struct xt_table *ip6table_nat; ++ struct fib6_info *fib6_null_entry; ++ struct rt6_info *ip6_null_entry; ++ struct rt6_statistics *rt6_stats; ++ struct timer_list ip6_fib_timer; ++ struct hlist_head *fib_table_hash; ++ struct fib6_table *fib6_main_tbl; ++ struct list_head fib6_walkers; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct dst_ops ip6_dst_ops; ++ rwlock_t fib6_walker_lock; ++ spinlock_t fib6_gc_lock; ++ unsigned int ip6_rt_gc_expire; ++ long unsigned int ip6_rt_last_gc; ++ unsigned int fib6_rules_require_fldissect; ++ unsigned char flowlabel_has_excl; ++ bool fib6_has_custom_rules; ++ struct rt6_info *ip6_prohibit_entry; ++ struct rt6_info *ip6_blk_hole_entry; ++ struct fib6_table *fib6_local_tbl; ++ struct fib_rules_ops *fib6_rules_ops; ++ struct sock **icmp_sk; ++ struct sock *ndisc_sk; ++ struct sock *tcp_sk; ++ struct sock *igmp_sk; ++ struct sock *mc_autojoin_sk; ++ struct list_head mr6_tables; ++ struct fib_rules_ops *mr6_rules_ops; ++ atomic_t dev_addr_genid; ++ atomic_t fib6_sernum; ++ struct seg6_pernet_data *seg6_data; ++ struct fib_notifier_ops *notifier_ops; ++ struct fib_notifier_ops *ip6mr_notifier_ops; ++ unsigned int ipmr_seq; ++ struct { ++ struct hlist_head head; ++ spinlock_t lock; ++ u32 seq; ++ } ip6addrlbl_table; ++ u64 kabi_reserved1; ++}; ++ ++struct netns_sysctl_lowpan { ++ struct ctl_table_header *frags_hdr; ++}; ++ ++struct netns_ieee802154_lowpan { ++ struct netns_sysctl_lowpan sysctl; ++ struct fqdir *fqdir; ++}; ++ ++struct sctp_mib; ++ ++struct netns_sctp { ++ struct sctp_mib *sctp_statistics; ++ struct proc_dir_entry *proc_net_sctp; ++ struct ctl_table_header *sysctl_header; ++ struct sock *ctl_sock; ++ struct list_head local_addr_list; ++ struct list_head addr_waitq; ++ struct timer_list addr_wq_timer; ++ struct list_head auto_asconf_splist; ++ spinlock_t addr_wq_lock; ++ spinlock_t local_addr_lock; ++ unsigned int rto_initial; ++ unsigned int rto_min; ++ unsigned int rto_max; ++ int rto_alpha; ++ int rto_beta; ++ int max_burst; ++ int cookie_preserve_enable; ++ char *sctp_hmac_alg; ++ unsigned int valid_cookie_life; ++ unsigned int sack_timeout; ++ unsigned int hb_interval; ++ int max_retrans_association; ++ int max_retrans_path; ++ int max_retrans_init; ++ int pf_retrans; ++ int ps_retrans; ++ int pf_enable; ++ int pf_expose; ++ int sndbuf_policy; ++ int rcvbuf_policy; ++ int default_auto_asconf; ++ int addip_enable; ++ int addip_noauth; ++ int prsctp_enable; ++ int reconf_enable; ++ int auth_enable; ++ int intl_enable; ++ int ecn_enable; ++ int scope_policy; ++ int rwnd_upd_shift; ++ long unsigned int max_autoclose; ++}; ++ ++struct nf_queue_handler; ++ ++struct nf_logger; ++ ++struct nf_hook_entries; ++ ++struct netns_nf { ++ struct proc_dir_entry *proc_netfilter; ++ const struct nf_queue_handler *queue_handler; ++ const struct nf_logger *nf_loggers[13]; ++ struct ctl_table_header *nf_log_dir_header; ++ struct nf_hook_entries *hooks_ipv4[5]; ++ struct nf_hook_entries *hooks_ipv6[5]; ++ struct nf_hook_entries *hooks_arp[3]; ++ struct nf_hook_entries *hooks_bridge[5]; ++ bool defrag_ipv4; ++ bool defrag_ipv6; ++ u64 kabi_reserved1; ++}; ++ ++struct ebt_table; ++ ++struct netns_xt { ++ struct list_head tables[13]; ++ bool notrack_deprecated_warning; ++ bool clusterip_deprecated_warning; ++ struct ebt_table *broute_table; ++ struct ebt_table *frame_filter; ++ struct ebt_table *frame_nat; ++}; ++ ++struct nf_generic_net { ++ unsigned int timeout; ++}; ++ ++struct nf_tcp_net { ++ unsigned int timeouts[14]; ++ int tcp_loose; ++ int tcp_be_liberal; ++ int tcp_max_retrans; ++}; ++ ++struct nf_udp_net { ++ unsigned int timeouts[2]; ++}; ++ ++struct nf_icmp_net { ++ unsigned int timeout; ++}; ++ ++struct nf_dccp_net { ++ int dccp_loose; ++ unsigned int dccp_timeout[10]; ++}; ++ ++struct nf_sctp_net { ++ unsigned int timeouts[10]; ++}; ++ ++struct nf_gre_net { ++ struct list_head keymap_list; ++ unsigned int timeouts[2]; ++}; ++ ++struct nf_ip_net { ++ struct nf_generic_net generic; ++ struct nf_tcp_net tcp; ++ struct nf_udp_net udp; ++ struct nf_icmp_net icmp; ++ struct nf_icmp_net icmpv6; ++ struct nf_dccp_net dccp; ++ struct nf_sctp_net sctp; ++ struct nf_gre_net gre; ++}; ++ ++struct ct_pcpu; ++ ++struct ip_conntrack_stat; ++ ++struct nf_ct_event_notifier; ++ ++struct nf_exp_event_notifier; ++ ++struct netns_ct { ++ atomic_t count; ++ unsigned int expect_count; ++ struct delayed_work ecache_dwork; ++ bool ecache_dwork_pending; ++ bool auto_assign_helper_warned; ++ struct ctl_table_header *sysctl_header; ++ unsigned int sysctl_log_invalid; ++ int sysctl_events; ++ int sysctl_acct; ++ int sysctl_auto_assign_helper; ++ int sysctl_tstamp; ++ int sysctl_checksum; ++ struct ct_pcpu *pcpu_lists; ++ struct ip_conntrack_stat *stat; ++ struct nf_ct_event_notifier *nf_conntrack_event_cb; ++ struct nf_exp_event_notifier *nf_expect_event_cb; ++ struct nf_ip_net nf_ct_proto; ++ unsigned int labels_used; ++}; ++ ++struct netns_nftables { ++ struct list_head tables; ++ struct list_head commit_list; ++ struct list_head module_list; ++ struct list_head notify_list; ++ struct mutex commit_mutex; ++ unsigned int base_seq; ++ u8 gencursor; ++ u8 validate_state; ++ u64 kabi_reserved1; ++}; ++ ++struct netns_nf_frag { ++ struct fqdir *fqdir; ++}; ++ ++struct netns_bpf { ++ struct bpf_prog_array *run_array[2]; ++ struct bpf_prog *progs[2]; ++ struct list_head links[2]; ++}; ++ ++struct xfrm_policy_hash { ++ struct hlist_head *table; ++ unsigned int hmask; ++ u8 dbits4; ++ u8 sbits4; ++ u8 dbits6; ++ u8 sbits6; ++}; ++ ++struct xfrm_policy_hthresh { ++ struct work_struct work; ++ seqlock_t lock; ++ u8 lbits4; ++ u8 rbits4; ++ u8 lbits6; ++ u8 rbits6; ++}; ++ ++struct netns_xfrm { ++ struct list_head state_all; ++ struct hlist_head *state_bydst; ++ struct hlist_head *state_bysrc; ++ struct hlist_head *state_byspi; ++ unsigned int state_hmask; ++ unsigned int state_num; ++ struct work_struct state_hash_work; ++ struct list_head policy_all; ++ struct hlist_head *policy_byidx; ++ unsigned int policy_idx_hmask; ++ struct hlist_head policy_inexact[3]; ++ struct xfrm_policy_hash policy_bydst[3]; ++ unsigned int policy_count[6]; ++ struct work_struct policy_hash_work; ++ struct xfrm_policy_hthresh policy_hthresh; ++ struct list_head inexact_bins; ++ struct sock *nlsk; ++ struct sock *nlsk_stash; ++ u32 sysctl_aevent_etime; ++ u32 sysctl_aevent_rseqth; ++ int sysctl_larval_drop; ++ u32 sysctl_acq_expires; ++ struct ctl_table_header *sysctl_hdr; ++ long: 64; ++ struct dst_ops xfrm4_dst_ops; ++ struct dst_ops xfrm6_dst_ops; ++ spinlock_t xfrm_state_lock; ++ seqcount_t xfrm_state_hash_generation; ++ seqcount_spinlock_t xfrm_policy_hash_generation; ++ spinlock_t xfrm_policy_lock; ++ struct mutex xfrm_cfg_mutex; ++ u64 kabi_reserved1; ++ long: 64; ++}; ++ ++struct netns_ipvs; ++ ++struct mpls_route; ++ ++struct netns_mpls { ++ int ip_ttl_propagate; ++ int default_ttl; ++ size_t platform_labels; ++ struct mpls_route **platform_label; ++ struct ctl_table_header *ctl; ++}; ++ ++struct can_dev_rcv_lists; ++ ++struct can_pkg_stats; ++ ++struct can_rcv_lists_stats; ++ ++struct netns_can { ++ struct proc_dir_entry *proc_dir; ++ struct proc_dir_entry *pde_stats; ++ struct proc_dir_entry *pde_reset_stats; ++ struct proc_dir_entry *pde_rcvlist_all; ++ struct proc_dir_entry *pde_rcvlist_fil; ++ struct proc_dir_entry *pde_rcvlist_inv; ++ struct proc_dir_entry *pde_rcvlist_sff; ++ struct proc_dir_entry *pde_rcvlist_eff; ++ struct proc_dir_entry *pde_rcvlist_err; ++ struct proc_dir_entry *bcmproc_dir; ++ struct can_dev_rcv_lists *rx_alldev_list; ++ spinlock_t rcvlists_lock; ++ struct timer_list stattimer; ++ struct can_pkg_stats *pkg_stats; ++ struct can_rcv_lists_stats *rcv_lists_stats; ++ struct hlist_head cgw_list; ++ u64 kabi_reserved1; ++}; ++ ++struct netns_xdp { ++ struct mutex lock; ++ struct hlist_head list; ++}; ++ ++struct uevent_sock; ++ ++struct net_generic; ++ ++struct net { ++ refcount_t passive; ++ refcount_t count; ++ spinlock_t rules_mod_lock; ++ unsigned int dev_unreg_count; ++ unsigned int dev_base_seq; ++ int ifindex; ++ spinlock_t nsid_lock; ++ atomic_t fnhe_genid; ++ struct list_head list; ++ struct list_head exit_list; ++ struct llist_node cleanup_list; ++ struct key_tag *key_domain; ++ struct user_namespace *user_ns; ++ struct ucounts *ucounts; ++ struct idr netns_ids; ++ struct ns_common ns; ++ struct list_head dev_base_head; ++ struct proc_dir_entry *proc_net; ++ struct proc_dir_entry *proc_net_stat; ++ struct ctl_table_set sysctls; ++ struct sock *rtnl; ++ struct sock *genl_sock; ++ struct uevent_sock *uevent_sock; ++ struct hlist_head *dev_name_head; ++ struct hlist_head *dev_index_head; ++ struct raw_notifier_head netdev_chain; ++ u32 hash_mix; ++ struct net_device *loopback_dev; ++ struct list_head rules_ops; ++ struct netns_core core; ++ struct netns_mib mib; ++ struct netns_packet packet; ++ struct netns_unix unx; ++ struct netns_nexthop nexthop; ++ struct netns_ipv4 ipv4; ++ struct netns_ipv6 ipv6; ++ struct netns_ieee802154_lowpan ieee802154_lowpan; ++ struct netns_sctp sctp; ++ struct netns_nf nf; ++ struct netns_xt xt; ++ struct netns_ct ct; ++ struct netns_nftables nft; ++ struct netns_nf_frag nf_frag; ++ struct ctl_table_header *nf_frag_frags_hdr; ++ struct sock *nfnl; ++ struct sock *nfnl_stash; ++ struct list_head nfct_timeout_list; ++ struct net_generic *gen; ++ struct netns_bpf bpf; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct netns_xfrm xfrm; ++ atomic64_t net_cookie; ++ struct netns_ipvs *ipvs; ++ struct netns_mpls mpls; ++ struct netns_can can; ++ struct netns_xdp xdp; ++ struct sock *crypto_nlsk; ++ struct sock *diag_nlsk; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++typedef struct { ++ local64_t v; ++} u64_stats_t; ++ ++struct bpf_insn { ++ __u8 code; ++ __u8 dst_reg: 4; ++ __u8 src_reg: 4; ++ __s16 off; ++ __s32 imm; ++}; ++ ++enum bpf_map_type { ++ BPF_MAP_TYPE_UNSPEC = 0, ++ BPF_MAP_TYPE_HASH = 1, ++ BPF_MAP_TYPE_ARRAY = 2, ++ BPF_MAP_TYPE_PROG_ARRAY = 3, ++ BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4, ++ BPF_MAP_TYPE_PERCPU_HASH = 5, ++ BPF_MAP_TYPE_PERCPU_ARRAY = 6, ++ BPF_MAP_TYPE_STACK_TRACE = 7, ++ BPF_MAP_TYPE_CGROUP_ARRAY = 8, ++ BPF_MAP_TYPE_LRU_HASH = 9, ++ BPF_MAP_TYPE_LRU_PERCPU_HASH = 10, ++ BPF_MAP_TYPE_LPM_TRIE = 11, ++ BPF_MAP_TYPE_ARRAY_OF_MAPS = 12, ++ BPF_MAP_TYPE_HASH_OF_MAPS = 13, ++ BPF_MAP_TYPE_DEVMAP = 14, ++ BPF_MAP_TYPE_SOCKMAP = 15, ++ BPF_MAP_TYPE_CPUMAP = 16, ++ BPF_MAP_TYPE_XSKMAP = 17, ++ BPF_MAP_TYPE_SOCKHASH = 18, ++ BPF_MAP_TYPE_CGROUP_STORAGE = 19, ++ BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20, ++ BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 21, ++ BPF_MAP_TYPE_QUEUE = 22, ++ BPF_MAP_TYPE_STACK = 23, ++ BPF_MAP_TYPE_SK_STORAGE = 24, ++ BPF_MAP_TYPE_DEVMAP_HASH = 25, ++ BPF_MAP_TYPE_STRUCT_OPS = 26, ++ BPF_MAP_TYPE_RINGBUF = 27, ++ BPF_MAP_TYPE_INODE_STORAGE = 28, ++}; ++ ++enum bpf_prog_type { ++ BPF_PROG_TYPE_UNSPEC = 0, ++ BPF_PROG_TYPE_SOCKET_FILTER = 1, ++ BPF_PROG_TYPE_KPROBE = 2, ++ BPF_PROG_TYPE_SCHED_CLS = 3, ++ BPF_PROG_TYPE_SCHED_ACT = 4, ++ BPF_PROG_TYPE_TRACEPOINT = 5, ++ BPF_PROG_TYPE_XDP = 6, ++ BPF_PROG_TYPE_PERF_EVENT = 7, ++ BPF_PROG_TYPE_CGROUP_SKB = 8, ++ BPF_PROG_TYPE_CGROUP_SOCK = 9, ++ BPF_PROG_TYPE_LWT_IN = 10, ++ BPF_PROG_TYPE_LWT_OUT = 11, ++ BPF_PROG_TYPE_LWT_XMIT = 12, ++ BPF_PROG_TYPE_SOCK_OPS = 13, ++ BPF_PROG_TYPE_SK_SKB = 14, ++ BPF_PROG_TYPE_CGROUP_DEVICE = 15, ++ BPF_PROG_TYPE_SK_MSG = 16, ++ BPF_PROG_TYPE_RAW_TRACEPOINT = 17, ++ BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18, ++ BPF_PROG_TYPE_LWT_SEG6LOCAL = 19, ++ BPF_PROG_TYPE_LIRC_MODE2 = 20, ++ BPF_PROG_TYPE_SK_REUSEPORT = 21, ++ BPF_PROG_TYPE_FLOW_DISSECTOR = 22, ++ BPF_PROG_TYPE_CGROUP_SYSCTL = 23, ++ BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24, ++ BPF_PROG_TYPE_CGROUP_SOCKOPT = 25, ++ BPF_PROG_TYPE_TRACING = 26, ++ BPF_PROG_TYPE_STRUCT_OPS = 27, ++ BPF_PROG_TYPE_EXT = 28, ++ BPF_PROG_TYPE_LSM = 29, ++ BPF_PROG_TYPE_SK_LOOKUP = 30, ++}; ++ ++enum bpf_attach_type { ++ BPF_CGROUP_INET_INGRESS = 0, ++ BPF_CGROUP_INET_EGRESS = 1, ++ BPF_CGROUP_INET_SOCK_CREATE = 2, ++ BPF_CGROUP_SOCK_OPS = 3, ++ BPF_SK_SKB_STREAM_PARSER = 4, ++ BPF_SK_SKB_STREAM_VERDICT = 5, ++ BPF_CGROUP_DEVICE = 6, ++ BPF_SK_MSG_VERDICT = 7, ++ BPF_CGROUP_INET4_BIND = 8, ++ BPF_CGROUP_INET6_BIND = 9, ++ BPF_CGROUP_INET4_CONNECT = 10, ++ BPF_CGROUP_INET6_CONNECT = 11, ++ BPF_CGROUP_INET4_POST_BIND = 12, ++ BPF_CGROUP_INET6_POST_BIND = 13, ++ BPF_CGROUP_UDP4_SENDMSG = 14, ++ BPF_CGROUP_UDP6_SENDMSG = 15, ++ BPF_LIRC_MODE2 = 16, ++ BPF_FLOW_DISSECTOR = 17, ++ BPF_CGROUP_SYSCTL = 18, ++ BPF_CGROUP_UDP4_RECVMSG = 19, ++ BPF_CGROUP_UDP6_RECVMSG = 20, ++ BPF_CGROUP_GETSOCKOPT = 21, ++ BPF_CGROUP_SETSOCKOPT = 22, ++ BPF_TRACE_RAW_TP = 23, ++ BPF_TRACE_FENTRY = 24, ++ BPF_TRACE_FEXIT = 25, ++ BPF_MODIFY_RETURN = 26, ++ BPF_LSM_MAC = 27, ++ BPF_TRACE_ITER = 28, ++ BPF_CGROUP_INET4_GETPEERNAME = 29, ++ BPF_CGROUP_INET6_GETPEERNAME = 30, ++ BPF_CGROUP_INET4_GETSOCKNAME = 31, ++ BPF_CGROUP_INET6_GETSOCKNAME = 32, ++ BPF_XDP_DEVMAP = 33, ++ BPF_CGROUP_INET_SOCK_RELEASE = 34, ++ BPF_XDP_CPUMAP = 35, ++ BPF_SK_LOOKUP = 36, ++ BPF_XDP = 37, ++ __MAX_BPF_ATTACH_TYPE = 38, ++}; ++ ++union bpf_attr { ++ struct { ++ __u32 map_type; ++ __u32 key_size; ++ __u32 value_size; ++ __u32 max_entries; ++ __u32 map_flags; ++ __u32 inner_map_fd; ++ __u32 numa_node; ++ char map_name[16]; ++ __u32 map_ifindex; ++ __u32 btf_fd; ++ __u32 btf_key_type_id; ++ __u32 btf_value_type_id; ++ __u32 btf_vmlinux_value_type_id; ++ }; ++ struct { ++ __u32 map_fd; ++ __u64 key; ++ union { ++ __u64 value; ++ __u64 next_key; ++ }; ++ __u64 flags; ++ }; ++ struct { ++ __u64 in_batch; ++ __u64 out_batch; ++ __u64 keys; ++ __u64 values; ++ __u32 count; ++ __u32 map_fd; ++ __u64 elem_flags; ++ __u64 flags; ++ } batch; ++ struct { ++ __u32 prog_type; ++ __u32 insn_cnt; ++ __u64 insns; ++ __u64 license; ++ __u32 log_level; ++ __u32 log_size; ++ __u64 log_buf; ++ __u32 kern_version; ++ __u32 prog_flags; ++ char prog_name[16]; ++ __u32 prog_ifindex; ++ __u32 expected_attach_type; ++ __u32 prog_btf_fd; ++ __u32 func_info_rec_size; ++ __u64 func_info; ++ __u32 func_info_cnt; ++ __u32 line_info_rec_size; ++ __u64 line_info; ++ __u32 line_info_cnt; ++ __u32 attach_btf_id; ++ __u32 attach_prog_fd; ++ }; ++ struct { ++ __u64 pathname; ++ __u32 bpf_fd; ++ __u32 file_flags; ++ }; ++ struct { ++ __u32 target_fd; ++ __u32 attach_bpf_fd; ++ __u32 attach_type; ++ __u32 attach_flags; ++ __u32 replace_bpf_fd; ++ }; ++ struct { ++ __u32 prog_fd; ++ __u32 retval; ++ __u32 data_size_in; ++ __u32 data_size_out; ++ __u64 data_in; ++ __u64 data_out; ++ __u32 repeat; ++ __u32 duration; ++ __u32 ctx_size_in; ++ __u32 ctx_size_out; ++ __u64 ctx_in; ++ __u64 ctx_out; ++ __u32 flags; ++ __u32 cpu; ++ } test; ++ struct { ++ union { ++ __u32 start_id; ++ __u32 prog_id; ++ __u32 map_id; ++ __u32 btf_id; ++ __u32 link_id; ++ }; ++ __u32 next_id; ++ __u32 open_flags; ++ }; ++ struct { ++ __u32 bpf_fd; ++ __u32 info_len; ++ __u64 info; ++ } info; ++ struct { ++ __u32 target_fd; ++ __u32 attach_type; ++ __u32 query_flags; ++ __u32 attach_flags; ++ __u64 prog_ids; ++ __u32 prog_cnt; ++ } query; ++ struct { ++ __u64 name; ++ __u32 prog_fd; ++ } raw_tracepoint; ++ struct { ++ __u64 btf; ++ __u64 btf_log_buf; ++ __u32 btf_size; ++ __u32 btf_log_size; ++ __u32 btf_log_level; ++ }; ++ struct { ++ __u32 pid; ++ __u32 fd; ++ __u32 flags; ++ __u32 buf_len; ++ __u64 buf; ++ __u32 prog_id; ++ __u32 fd_type; ++ __u64 probe_offset; ++ __u64 probe_addr; ++ } task_fd_query; ++ struct { ++ __u32 prog_fd; ++ union { ++ __u32 target_fd; ++ __u32 target_ifindex; ++ }; ++ __u32 attach_type; ++ __u32 flags; ++ union { ++ __u32 target_btf_id; ++ struct { ++ __u64 iter_info; ++ __u32 iter_info_len; ++ }; ++ }; ++ } link_create; ++ struct { ++ __u32 link_fd; ++ __u32 new_prog_fd; ++ __u32 flags; ++ __u32 old_prog_fd; ++ } link_update; ++ struct { ++ __u32 link_fd; ++ } link_detach; ++ struct { ++ __u32 type; ++ } enable_stats; ++ struct { ++ __u32 link_fd; ++ __u32 flags; ++ } iter_create; ++ struct { ++ __u32 prog_fd; ++ __u32 map_fd; ++ __u32 flags; ++ } prog_bind_map; ++}; ++ ++struct bpf_func_info { ++ __u32 insn_off; ++ __u32 type_id; ++}; ++ ++struct bpf_line_info { ++ __u32 insn_off; ++ __u32 file_name_off; ++ __u32 line_off; ++ __u32 line_col; ++}; ++ ++struct bpf_iter_aux_info; ++ ++typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); ++ ++struct bpf_map; ++ ++struct bpf_iter_aux_info { ++ struct bpf_map *map; ++}; ++ ++typedef void (*bpf_iter_fini_seq_priv_t)(void *); ++ ++struct bpf_iter_seq_info { ++ const struct seq_operations *seq_ops; ++ bpf_iter_init_seq_priv_t init_seq_private; ++ bpf_iter_fini_seq_priv_t fini_seq_private; ++ u32 seq_priv_size; ++}; ++ ++struct btf; ++ ++struct btf_type; ++ ++struct bpf_prog_aux; ++ ++struct bpf_local_storage_map; ++ ++struct bpf_map_ops { ++ int (*map_alloc_check)(union bpf_attr *); ++ struct bpf_map * (*map_alloc)(union bpf_attr *); ++ void (*map_release)(struct bpf_map *, struct file *); ++ void (*map_free)(struct bpf_map *); ++ int (*map_get_next_key)(struct bpf_map *, void *, void *); ++ void (*map_release_uref)(struct bpf_map *); ++ void * (*map_lookup_elem_sys_only)(struct bpf_map *, void *); ++ int (*map_lookup_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); ++ int (*map_lookup_and_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); ++ int (*map_update_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); ++ int (*map_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); ++ void * (*map_lookup_elem)(struct bpf_map *, void *); ++ int (*map_update_elem)(struct bpf_map *, void *, void *, u64); ++ int (*map_delete_elem)(struct bpf_map *, void *); ++ int (*map_push_elem)(struct bpf_map *, void *, u64); ++ int (*map_pop_elem)(struct bpf_map *, void *); ++ int (*map_peek_elem)(struct bpf_map *, void *); ++ void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); ++ void (*map_fd_put_ptr)(void *); ++ int (*map_gen_lookup)(struct bpf_map *, struct bpf_insn *); ++ u32 (*map_fd_sys_lookup_elem)(void *); ++ void (*map_seq_show_elem)(struct bpf_map *, void *, struct seq_file *); ++ int (*map_check_btf)(const struct bpf_map *, const struct btf *, const struct btf_type *, const struct btf_type *); ++ int (*map_poke_track)(struct bpf_map *, struct bpf_prog_aux *); ++ void (*map_poke_untrack)(struct bpf_map *, struct bpf_prog_aux *); ++ void (*map_poke_run)(struct bpf_map *, u32, struct bpf_prog *, struct bpf_prog *); ++ int (*map_direct_value_addr)(const struct bpf_map *, u64 *, u32); ++ int (*map_direct_value_meta)(const struct bpf_map *, u64, u32 *); ++ int (*map_mmap)(struct bpf_map *, struct vm_area_struct *); ++ __poll_t (*map_poll)(struct bpf_map *, struct file *, struct poll_table_struct *); ++ int (*map_local_storage_charge)(struct bpf_local_storage_map *, void *, u32); ++ void (*map_local_storage_uncharge)(struct bpf_local_storage_map *, void *, u32); ++ struct bpf_local_storage ** (*map_owner_storage_ptr)(void *); ++ bool (*map_meta_equal)(const struct bpf_map *, const struct bpf_map *); ++ const char * const map_btf_name; ++ int *map_btf_id; ++ const struct bpf_iter_seq_info *iter_seq_info; ++}; ++ ++struct bpf_map_memory { ++ u32 pages; ++ struct user_struct *user; ++}; ++ ++struct bpf_map { ++ const struct bpf_map_ops *ops; ++ struct bpf_map *inner_map_meta; ++ void *security; ++ enum bpf_map_type map_type; ++ u32 key_size; ++ u32 value_size; ++ u32 max_entries; ++ u32 map_flags; ++ int spin_lock_off; ++ u32 id; ++ int numa_node; ++ u32 btf_key_type_id; ++ u32 btf_value_type_id; ++ struct btf *btf; ++ struct bpf_map_memory memory; ++ char name[16]; ++ u32 btf_vmlinux_value_type_id; ++ bool bypass_spec_v1; ++ bool frozen; ++ long: 16; ++ long: 64; ++ long: 64; ++ atomic64_t refcnt; ++ atomic64_t usercnt; ++ struct work_struct work; ++ struct mutex freeze_mutex; ++ atomic64_t writecnt; ++ long: 64; ++}; ++ ++struct btf_header { ++ __u16 magic; ++ __u8 version; ++ __u8 flags; ++ __u32 hdr_len; ++ __u32 type_off; ++ __u32 type_len; ++ __u32 str_off; ++ __u32 str_len; ++}; ++ ++struct btf { ++ void *data; ++ struct btf_type **types; ++ u32 *resolved_ids; ++ u32 *resolved_sizes; ++ const char *strings; ++ void *nohdr_data; ++ struct btf_header hdr; ++ u32 nr_types; ++ u32 types_size; ++ u32 data_size; ++ refcount_t refcnt; ++ u32 id; ++ struct callback_head rcu; ++}; ++ ++struct btf_type { ++ __u32 name_off; ++ __u32 info; ++ union { ++ __u32 size; ++ __u32 type; ++ }; ++}; ++ ++struct bpf_ksym { ++ long unsigned int start; ++ long unsigned int end; ++ char name[128]; ++ struct list_head lnode; ++ struct latch_tree_node tnode; ++ bool prog; ++}; ++ ++struct bpf_ctx_arg_aux; ++ ++struct bpf_trampoline; ++ ++struct bpf_jit_poke_descriptor; ++ ++struct bpf_prog_ops; ++ ++struct bpf_prog_offload; ++ ++struct bpf_func_info_aux; ++ ++struct bpf_prog_stats; ++ ++struct bpf_prog_aux { ++ atomic64_t refcnt; ++ u32 used_map_cnt; ++ u32 max_ctx_offset; ++ u32 max_pkt_offset; ++ u32 max_tp_access; ++ u32 stack_depth; ++ u32 id; ++ u32 func_cnt; ++ u32 func_idx; ++ u32 attach_btf_id; ++ u32 ctx_arg_info_size; ++ u32 max_rdonly_access; ++ u32 max_rdwr_access; ++ const struct bpf_ctx_arg_aux *ctx_arg_info; ++ struct mutex dst_mutex; ++ struct bpf_prog *dst_prog; ++ struct bpf_trampoline *dst_trampoline; ++ enum bpf_prog_type saved_dst_prog_type; ++ enum bpf_attach_type saved_dst_attach_type; ++ bool verifier_zext; ++ bool offload_requested; ++ bool attach_btf_trace; ++ bool func_proto_unreliable; ++ bool sleepable; ++ bool tail_call_reachable; ++ struct hlist_node tramp_hlist; ++ const struct btf_type *attach_func_proto; ++ const char *attach_func_name; ++ struct bpf_prog **func; ++ void *jit_data; ++ struct bpf_jit_poke_descriptor *poke_tab; ++ u32 size_poke_tab; ++ struct bpf_ksym ksym; ++ const struct bpf_prog_ops *ops; ++ struct bpf_map **used_maps; ++ struct mutex used_maps_mutex; ++ struct bpf_prog *prog; ++ struct user_struct *user; ++ u64 load_time; ++ struct bpf_map *cgroup_storage[10]; ++ char name[16]; ++ void *security; ++ struct bpf_prog_offload *offload; ++ struct btf *btf; ++ struct bpf_func_info *func_info; ++ struct bpf_func_info_aux *func_info_aux; ++ struct bpf_line_info *linfo; ++ void **jited_linfo; ++ u32 func_info_cnt; ++ u32 nr_linfo; ++ u32 linfo_idx; ++ u32 num_exentries; ++ struct exception_table_entry *extable; ++ struct bpf_prog_stats *stats; ++ union { ++ struct work_struct work; ++ struct callback_head rcu; ++ }; ++}; ++ ++struct sock_filter { ++ __u16 code; ++ __u8 jt; ++ __u8 jf; ++ __u32 k; ++}; ++ ++struct sock_fprog_kern; ++ ++struct bpf_prog { ++ u16 pages; ++ u16 jited: 1; ++ u16 jit_requested: 1; ++ u16 gpl_compatible: 1; ++ u16 cb_access: 1; ++ u16 dst_needed: 1; ++ u16 blinded: 1; ++ u16 is_func: 1; ++ u16 kprobe_override: 1; ++ u16 has_callchain_buf: 1; ++ u16 enforce_expected_attach_type: 1; ++ u16 call_get_stack: 1; ++ enum bpf_prog_type type; ++ enum bpf_attach_type expected_attach_type; ++ u32 len; ++ u32 jited_len; ++ u8 tag[8]; ++ struct bpf_prog_aux *aux; ++ struct sock_fprog_kern *orig_prog; ++ unsigned int (*bpf_func)(const void *, const struct bpf_insn *); ++ struct sock_filter insns[0]; ++ struct bpf_insn insnsi[0]; ++}; ++ ++struct bpf_offloaded_map; ++ ++struct bpf_map_dev_ops { ++ int (*map_get_next_key)(struct bpf_offloaded_map *, void *, void *); ++ int (*map_lookup_elem)(struct bpf_offloaded_map *, void *, void *); ++ int (*map_update_elem)(struct bpf_offloaded_map *, void *, void *, u64); ++ int (*map_delete_elem)(struct bpf_offloaded_map *, void *); ++}; ++ ++struct bpf_offloaded_map { ++ struct bpf_map map; ++ struct net_device *netdev; ++ const struct bpf_map_dev_ops *dev_ops; ++ void *dev_priv; ++ struct list_head offloads; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct net_device_stats { ++ long unsigned int rx_packets; ++ long unsigned int tx_packets; ++ long unsigned int rx_bytes; ++ long unsigned int tx_bytes; ++ long unsigned int rx_errors; ++ long unsigned int tx_errors; ++ long unsigned int rx_dropped; ++ long unsigned int tx_dropped; ++ long unsigned int multicast; ++ long unsigned int collisions; ++ long unsigned int rx_length_errors; ++ long unsigned int rx_over_errors; ++ long unsigned int rx_crc_errors; ++ long unsigned int rx_frame_errors; ++ long unsigned int rx_fifo_errors; ++ long unsigned int rx_missed_errors; ++ long unsigned int tx_aborted_errors; ++ long unsigned int tx_carrier_errors; ++ long unsigned int tx_fifo_errors; ++ long unsigned int tx_heartbeat_errors; ++ long unsigned int tx_window_errors; ++ long unsigned int rx_compressed; ++ long unsigned int tx_compressed; ++}; ++ ++struct netdev_hw_addr_list { ++ struct list_head list; ++ int count; ++}; ++ ++struct tipc_bearer; ++ ++struct wireless_dev; ++ ++struct mpls_dev; ++ ++enum rx_handler_result { ++ RX_HANDLER_CONSUMED = 0, ++ RX_HANDLER_ANOTHER = 1, ++ RX_HANDLER_EXACT = 2, ++ RX_HANDLER_PASS = 3, ++}; ++ ++typedef enum rx_handler_result rx_handler_result_t; ++ ++typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **); ++ ++enum netdev_ml_priv_type { ++ ML_PRIV_NONE = 0, ++ ML_PRIV_CAN = 1, ++}; ++ ++struct pcpu_dstats; ++ ++struct garp_port; ++ ++struct mrp_port; ++ ++struct netdev_tc_txq { ++ u16 count; ++ u16 offset; ++}; ++ ++struct sfp_bus; ++ ++struct macsec_ops; ++ ++struct udp_tunnel_nic; ++ ++struct bpf_xdp_link; ++ ++struct bpf_xdp_entity { ++ struct bpf_prog *prog; ++ struct bpf_xdp_link *link; ++}; ++ ++struct netdev_name_node; ++ ++struct dev_ifalias; ++ ++struct net_device_ops; ++ ++struct ethtool_ops; ++ ++struct l3mdev_ops; ++ ++struct ndisc_ops; ++ ++struct xfrmdev_ops; ++ ++struct tlsdev_ops; ++ ++struct header_ops; ++ ++struct vlan_info; ++ ++struct in_device; ++ ++struct inet6_dev; ++ ++struct wpan_dev; ++ ++struct netdev_rx_queue; ++ ++struct mini_Qdisc; ++ ++struct netdev_queue; ++ ++struct cpu_rmap; ++ ++struct Qdisc; ++ ++struct xdp_dev_bulk_queue; ++ ++struct xps_dev_maps; ++ ++struct netpoll_info; ++ ++struct pcpu_lstats; ++ ++struct pcpu_sw_netstats; ++ ++struct rtnl_link_ops; ++ ++struct dcbnl_rtnl_ops; ++ ++struct netprio_map; ++ ++struct phy_device; ++ ++struct udp_tunnel_nic_info; ++ ++struct net_device_extended_resvd; ++ ++struct net_device { ++ char name[16]; ++ struct netdev_name_node *name_node; ++ struct dev_ifalias *ifalias; ++ long unsigned int mem_end; ++ long unsigned int mem_start; ++ long unsigned int base_addr; ++ int irq; ++ long unsigned int state; ++ struct list_head dev_list; ++ struct list_head napi_list; ++ struct list_head unreg_list; ++ struct list_head close_list; ++ struct list_head ptype_all; ++ struct list_head ptype_specific; ++ struct { ++ struct list_head upper; ++ struct list_head lower; ++ } adj_list; ++ netdev_features_t features; ++ netdev_features_t hw_features; ++ netdev_features_t wanted_features; ++ netdev_features_t vlan_features; ++ netdev_features_t hw_enc_features; ++ netdev_features_t mpls_features; ++ netdev_features_t gso_partial_features; ++ int ifindex; ++ int group; ++ struct net_device_stats stats; ++ atomic_long_t rx_dropped; ++ atomic_long_t tx_dropped; ++ atomic_long_t rx_nohandler; ++ atomic_t carrier_up_count; ++ atomic_t carrier_down_count; ++ const struct net_device_ops *netdev_ops; ++ const struct ethtool_ops *ethtool_ops; ++ const struct l3mdev_ops *l3mdev_ops; ++ const struct ndisc_ops *ndisc_ops; ++ const struct xfrmdev_ops *xfrmdev_ops; ++ const struct tlsdev_ops *tlsdev_ops; ++ const struct header_ops *header_ops; ++ unsigned int flags; ++ unsigned int priv_flags; ++ short unsigned int gflags; ++ short unsigned int padded; ++ unsigned char operstate; ++ unsigned char link_mode; ++ unsigned char if_port; ++ unsigned char dma; ++ unsigned int mtu; ++ unsigned int min_mtu; ++ unsigned int max_mtu; ++ short unsigned int type; ++ short unsigned int hard_header_len; ++ unsigned char min_header_len; ++ unsigned char name_assign_type; ++ short unsigned int needed_headroom; ++ short unsigned int needed_tailroom; ++ unsigned char perm_addr[32]; ++ unsigned char addr_assign_type; ++ unsigned char addr_len; ++ unsigned char upper_level; ++ unsigned char lower_level; ++ short unsigned int neigh_priv_len; ++ short unsigned int dev_id; ++ short unsigned int dev_port; ++ spinlock_t addr_list_lock; ++ struct netdev_hw_addr_list uc; ++ struct netdev_hw_addr_list mc; ++ struct netdev_hw_addr_list dev_addrs; ++ struct kset *queues_kset; ++ unsigned int promiscuity; ++ unsigned int allmulti; ++ bool uc_promisc; ++ struct vlan_info *vlan_info; ++ struct tipc_bearer *tipc_ptr; ++ struct in_device *ip_ptr; ++ struct inet6_dev *ip6_ptr; ++ struct wireless_dev *ieee80211_ptr; ++ struct wpan_dev *ieee802154_ptr; ++ struct mpls_dev *mpls_ptr; ++ unsigned char *dev_addr; ++ struct netdev_rx_queue *_rx; ++ unsigned int num_rx_queues; ++ unsigned int real_num_rx_queues; ++ struct bpf_prog *xdp_prog; ++ long unsigned int gro_flush_timeout; ++ int napi_defer_hard_irqs; ++ rx_handler_func_t *rx_handler; ++ void *rx_handler_data; ++ struct mini_Qdisc *miniq_ingress; ++ struct netdev_queue *ingress_queue; ++ struct nf_hook_entries *nf_hooks_ingress; ++ unsigned char broadcast[32]; ++ struct cpu_rmap *rx_cpu_rmap; ++ struct hlist_node index_hlist; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct netdev_queue *_tx; ++ unsigned int num_tx_queues; ++ unsigned int real_num_tx_queues; ++ struct Qdisc *qdisc; ++ unsigned int tx_queue_len; ++ spinlock_t tx_global_lock; ++ struct xdp_dev_bulk_queue *xdp_bulkq; ++ struct xps_dev_maps *xps_cpus_map; ++ struct xps_dev_maps *xps_rxqs_map; ++ struct mini_Qdisc *miniq_egress; ++ struct hlist_head qdisc_hash[16]; ++ struct timer_list watchdog_timer; ++ int watchdog_timeo; ++ u32 proto_down_reason; ++ struct list_head todo_list; ++ int *pcpu_refcnt; ++ struct list_head link_watch_list; ++ enum { ++ NETREG_UNINITIALIZED = 0, ++ NETREG_REGISTERED = 1, ++ NETREG_UNREGISTERING = 2, ++ NETREG_UNREGISTERED = 3, ++ NETREG_RELEASED = 4, ++ NETREG_DUMMY = 5, ++ } reg_state: 8; ++ bool dismantle; ++ enum { ++ RTNL_LINK_INITIALIZED = 0, ++ RTNL_LINK_INITIALIZING = 1, ++ } rtnl_link_state: 16; ++ bool needs_free_netdev; ++ void (*priv_destructor)(struct net_device *); ++ struct netpoll_info *npinfo; ++ possible_net_t nd_net; ++ void *ml_priv; ++ enum netdev_ml_priv_type ml_priv_type; ++ union { ++ struct pcpu_lstats *lstats; ++ struct pcpu_sw_netstats *tstats; ++ struct pcpu_dstats *dstats; ++ }; ++ struct garp_port *garp_port; ++ struct mrp_port *mrp_port; ++ struct device dev; ++ const struct attribute_group *sysfs_groups[4]; ++ const struct attribute_group *sysfs_rx_queue_group; ++ const struct rtnl_link_ops *rtnl_link_ops; ++ unsigned int gso_max_size; ++ u16 gso_max_segs; ++ const struct dcbnl_rtnl_ops *dcbnl_ops; ++ s16 num_tc; ++ struct netdev_tc_txq tc_to_txq[16]; ++ u8 prio_tc_map[16]; ++ unsigned int fcoe_ddp_xid; ++ struct netprio_map *priomap; ++ struct phy_device *phydev; ++ struct sfp_bus *sfp_bus; ++ struct lock_class_key *qdisc_tx_busylock; ++ struct lock_class_key *qdisc_running_key; ++ bool proto_down; ++ unsigned int wol_enabled: 1; ++ struct list_head net_notifier_list; ++ const struct macsec_ops *macsec_ops; ++ const struct udp_tunnel_nic_info *udp_tunnel_nic_info; ++ struct udp_tunnel_nic *udp_tunnel_nic; ++ struct bpf_xdp_entity xdp_state[3]; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ size_t net_device_extended_size_resvd; ++ struct net_device_extended_resvd *_resvd; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++enum bpf_reg_type { ++ NOT_INIT = 0, ++ SCALAR_VALUE = 1, ++ PTR_TO_CTX = 2, ++ CONST_PTR_TO_MAP = 3, ++ PTR_TO_MAP_VALUE = 4, ++ PTR_TO_STACK = 5, ++ PTR_TO_PACKET_META = 6, ++ PTR_TO_PACKET = 7, ++ PTR_TO_PACKET_END = 8, ++ PTR_TO_FLOW_KEYS = 9, ++ PTR_TO_SOCKET = 10, ++ PTR_TO_SOCK_COMMON = 11, ++ PTR_TO_TCP_SOCK = 12, ++ PTR_TO_TP_BUFFER = 13, ++ PTR_TO_XDP_SOCK = 14, ++ PTR_TO_BTF_ID = 15, ++ PTR_TO_MEM = 16, ++ PTR_TO_BUF = 17, ++ PTR_TO_PERCPU_BTF_ID = 18, ++ __BPF_REG_TYPE_MAX = 19, ++ PTR_TO_MAP_VALUE_OR_NULL = 260, ++ PTR_TO_SOCKET_OR_NULL = 266, ++ PTR_TO_SOCK_COMMON_OR_NULL = 267, ++ PTR_TO_TCP_SOCK_OR_NULL = 268, ++ PTR_TO_BTF_ID_OR_NULL = 271, ++ __BPF_REG_TYPE_LIMIT = 2047, ++}; ++ ++struct bpf_prog_ops { ++ int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); ++}; ++ ++struct bpf_offload_dev; ++ ++struct bpf_prog_offload { ++ struct bpf_prog *prog; ++ struct net_device *netdev; ++ struct bpf_offload_dev *offdev; ++ void *dev_priv; ++ struct list_head offloads; ++ bool dev_state; ++ bool opt_failed; ++ void *jited_image; ++ u32 jited_len; ++}; ++ ++struct bpf_prog_stats { ++ u64 cnt; ++ u64 nsecs; ++ struct u64_stats_sync syncp; ++}; ++ ++struct btf_func_model { ++ u8 ret_size; ++ u8 nr_args; ++ u8 arg_size[12]; ++}; ++ ++struct bpf_tramp_image { ++ void *image; ++ struct bpf_ksym ksym; ++ struct percpu_ref pcref; ++ void *ip_after_call; ++ void *ip_epilogue; ++ union { ++ struct callback_head rcu; ++ struct work_struct work; ++ }; ++}; ++ ++struct bpf_trampoline { ++ struct hlist_node hlist; ++ struct mutex mutex; ++ refcount_t refcnt; ++ u64 key; ++ struct { ++ struct btf_func_model model; ++ void *addr; ++ bool ftrace_managed; ++ } func; ++ struct bpf_prog *extension_prog; ++ struct hlist_head progs_hlist[3]; ++ int progs_cnt[3]; ++ struct bpf_tramp_image *cur_image; ++ u64 selector; ++}; ++ ++struct bpf_func_info_aux { ++ u16 linkage; ++ bool unreliable; ++}; ++ ++struct bpf_jit_poke_descriptor { ++ void *tailcall_target; ++ void *tailcall_bypass; ++ void *bypass_addr; ++ void *aux; ++ union { ++ struct { ++ struct bpf_map *map; ++ u32 key; ++ } tail_call; ++ }; ++ bool tailcall_target_stable; ++ u8 adj_off; ++ u16 reason; ++ u32 insn_idx; ++}; ++ ++struct bpf_ctx_arg_aux { ++ u32 offset; ++ enum bpf_reg_type reg_type; ++ u32 btf_id; ++}; ++ ++typedef unsigned int sk_buff_data_t; ++ ++struct skb_ext; ++ ++struct sk_buff { ++ union { ++ struct { ++ struct sk_buff *next; ++ struct sk_buff *prev; ++ union { ++ struct net_device *dev; ++ long unsigned int dev_scratch; ++ }; ++ }; ++ struct rb_node rbnode; ++ struct list_head list; ++ struct llist_node ll_node; ++ }; ++ union { ++ struct sock *sk; ++ int ip_defrag_offset; ++ }; ++ union { ++ ktime_t tstamp; ++ u64 skb_mstamp_ns; ++ }; ++ char cb[48]; ++ union { ++ struct { ++ long unsigned int _skb_refdst; ++ void (*destructor)(struct sk_buff *); ++ }; ++ struct list_head tcp_tsorted_anchor; ++ }; ++ long unsigned int _nfct; ++ unsigned int len; ++ unsigned int data_len; ++ __u16 mac_len; ++ __u16 hdr_len; ++ __u16 queue_mapping; ++ __u8 __cloned_offset[0]; ++ __u8 cloned: 1; ++ __u8 nohdr: 1; ++ __u8 fclone: 2; ++ __u8 peeked: 1; ++ __u8 head_frag: 1; ++ __u8 pfmemalloc: 1; ++ __u8 pp_recycle: 1; ++ __u8 active_extensions; ++ __u32 headers_start[0]; ++ __u8 __pkt_type_offset[0]; ++ __u8 pkt_type: 3; ++ __u8 ignore_df: 1; ++ __u8 nf_trace: 1; ++ __u8 ip_summed: 2; ++ __u8 ooo_okay: 1; ++ __u8 l4_hash: 1; ++ __u8 sw_hash: 1; ++ __u8 wifi_acked_valid: 1; ++ __u8 wifi_acked: 1; ++ __u8 no_fcs: 1; ++ __u8 encapsulation: 1; ++ __u8 encap_hdr_csum: 1; ++ __u8 csum_valid: 1; ++ __u8 __pkt_vlan_present_offset[0]; ++ __u8 vlan_present: 1; ++ __u8 csum_complete_sw: 1; ++ __u8 csum_level: 2; ++ __u8 csum_not_inet: 1; ++ __u8 dst_pending_confirm: 1; ++ __u8 ndisc_nodetype: 2; ++ __u8 ipvs_property: 1; ++ __u8 inner_protocol_type: 1; ++ __u8 remcsum_offload: 1; ++ __u8 offload_fwd_mark: 1; ++ __u8 offload_l3_fwd_mark: 1; ++ __u8 tc_skip_classify: 1; ++ __u8 tc_at_ingress: 1; ++ __u8 redirected: 1; ++ __u8 from_ingress: 1; ++ __u8 decrypted: 1; ++ __u16 tc_index; ++ union { ++ __wsum csum; ++ struct { ++ __u16 csum_start; ++ __u16 csum_offset; ++ }; ++ }; ++ __u32 priority; ++ int skb_iif; ++ __u32 hash; ++ __be16 vlan_proto; ++ __u16 vlan_tci; ++ union { ++ unsigned int napi_id; ++ unsigned int sender_cpu; ++ }; ++ __u32 secmark; ++ union { ++ __u32 mark; ++ __u32 reserved_tailroom; ++ }; ++ union { ++ __be16 inner_protocol; ++ __u8 inner_ipproto; ++ }; ++ __u16 inner_transport_header; ++ __u16 inner_network_header; ++ __u16 inner_mac_header; ++ __be16 protocol; ++ __u16 transport_header; ++ __u16 network_header; ++ __u16 mac_header; ++ __u32 headers_end[0]; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ sk_buff_data_t tail; ++ sk_buff_data_t end; ++ unsigned char *head; ++ unsigned char *data; ++ unsigned int truesize; ++ refcount_t users; ++ struct skb_ext *extensions; ++}; ++ ++struct scatterlist { ++ long unsigned int page_link; ++ unsigned int offset; ++ unsigned int length; ++ dma_addr_t dma_address; ++ unsigned int dma_length; ++}; ++ ++enum { ++ Root_NFS = 255, ++ Root_CIFS = 254, ++ Root_RAM0 = 1048576, ++ Root_RAM1 = 1048577, ++ Root_FD0 = 2097152, ++ Root_HDA1 = 3145729, ++ Root_HDA2 = 3145730, ++ Root_SDA1 = 8388609, ++ Root_SDA2 = 8388610, ++ Root_HDC1 = 23068673, ++ Root_SR0 = 11534336, ++}; ++ ++struct ethhdr { ++ unsigned char h_dest[6]; ++ unsigned char h_source[6]; ++ __be16 h_proto; ++}; ++ ++struct flowi_tunnel { ++ __be64 tun_id; ++}; ++ ++struct flowi_common { ++ int flowic_oif; ++ int flowic_iif; ++ __u32 flowic_mark; ++ __u8 flowic_tos; ++ __u8 flowic_scope; ++ __u8 flowic_proto; ++ __u8 flowic_flags; ++ __u32 flowic_secid; ++ kuid_t flowic_uid; ++ struct flowi_tunnel flowic_tun_key; ++ __u32 flowic_multipath_hash; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++union flowi_uli { ++ struct { ++ __be16 dport; ++ __be16 sport; ++ } ports; ++ struct { ++ __u8 type; ++ __u8 code; ++ } icmpt; ++ struct { ++ __le16 dport; ++ __le16 sport; ++ } dnports; ++ __be32 spi; ++ __be32 gre_key; ++ struct { ++ __u8 type; ++ } mht; ++}; ++ ++struct flowi4 { ++ struct flowi_common __fl_common; ++ __be32 saddr; ++ __be32 daddr; ++ union flowi_uli uli; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct flowi6 { ++ struct flowi_common __fl_common; ++ struct in6_addr daddr; ++ struct in6_addr saddr; ++ __be32 flowlabel; ++ union flowi_uli uli; ++ __u32 mp_hash; ++}; ++ ++struct flowidn { ++ struct flowi_common __fl_common; ++ __le16 daddr; ++ __le16 saddr; ++ union flowi_uli uli; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct flowi { ++ union { ++ struct flowi_common __fl_common; ++ struct flowi4 ip4; ++ struct flowi6 ip6; ++ struct flowidn dn; ++ } u; ++}; ++ ++struct ipstats_mib { ++ u64 mibs[37]; ++ struct u64_stats_sync syncp; ++}; ++ ++struct icmp_mib { ++ long unsigned int mibs[28]; ++}; ++ ++struct icmpmsg_mib { ++ atomic_long_t mibs[512]; ++}; ++ ++struct icmpv6_mib { ++ long unsigned int mibs[6]; ++}; ++ ++struct icmpv6_mib_device { ++ atomic_long_t mibs[6]; ++}; ++ ++struct icmpv6msg_mib { ++ atomic_long_t mibs[512]; ++}; ++ ++struct icmpv6msg_mib_device { ++ atomic_long_t mibs[512]; ++}; ++ ++struct tcp_mib { ++ long unsigned int mibs[16]; ++}; ++ ++struct udp_mib { ++ long unsigned int mibs[9]; ++}; ++ ++struct linux_mib { ++ long unsigned int mibs[124]; ++}; ++ ++struct linux_xfrm_mib { ++ long unsigned int mibs[29]; ++}; ++ ++struct linux_tls_mib { ++ long unsigned int mibs[11]; ++}; ++ ++struct inet_frags; ++ ++struct fqdir { ++ long int high_thresh; ++ long int low_thresh; ++ int timeout; ++ int max_dist; ++ struct inet_frags *f; ++ struct net *net; ++ bool dead; ++ long: 56; ++ long: 64; ++ long: 64; ++ struct rhashtable rhashtable; ++ long: 64; ++ long: 64; ++ long: 64; ++ atomic_long_t mem; ++ struct work_struct destroy_work; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct inet_frag_queue; ++ ++struct inet_frags { ++ unsigned int qsize; ++ void (*constructor)(struct inet_frag_queue *, const void *); ++ void (*destructor)(struct inet_frag_queue *); ++ void (*frag_expire)(struct timer_list *); ++ struct kmem_cache *frags_cachep; ++ const char *frags_cache_name; ++ struct rhashtable_params rhash_params; ++ refcount_t refcnt; ++ struct completion completion; ++}; ++ ++struct frag_v4_compare_key { ++ __be32 saddr; ++ __be32 daddr; ++ u32 user; ++ u32 vif; ++ __be16 id; ++ u16 protocol; ++}; ++ ++struct frag_v6_compare_key { ++ struct in6_addr saddr; ++ struct in6_addr daddr; ++ u32 user; ++ __be32 id; ++ u32 iif; ++}; ++ ++struct inet_frag_queue { ++ struct rhash_head node; ++ union { ++ struct frag_v4_compare_key v4; ++ struct frag_v6_compare_key v6; ++ } key; ++ struct timer_list timer; ++ spinlock_t lock; ++ refcount_t refcnt; ++ struct rb_root rb_fragments; ++ struct sk_buff *fragments_tail; ++ struct sk_buff *last_run_head; ++ ktime_t stamp; ++ int len; ++ int meat; ++ __u8 flags; ++ u16 max_size; ++ struct fqdir *fqdir; ++ struct callback_head rcu; ++}; ++ ++struct fib_rule; ++ ++struct fib_lookup_arg; ++ ++struct fib_rule_hdr; ++ ++struct nlattr; ++ ++struct netlink_ext_ack; ++ ++struct nla_policy; ++ ++struct fib_rules_ops { ++ int family; ++ struct list_head list; ++ int rule_size; ++ int addr_size; ++ int unresolved_rules; ++ int nr_goto_rules; ++ unsigned int fib_rules_seq; ++ int (*action)(struct fib_rule *, struct flowi *, int, struct fib_lookup_arg *); ++ bool (*suppress)(struct fib_rule *, int, struct fib_lookup_arg *); ++ int (*match)(struct fib_rule *, struct flowi *, int); ++ int (*configure)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *, struct nlattr **, struct netlink_ext_ack *); ++ int (*delete)(struct fib_rule *); ++ int (*compare)(struct fib_rule *, struct fib_rule_hdr *, struct nlattr **); ++ int (*fill)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *); ++ size_t (*nlmsg_payload)(struct fib_rule *); ++ void (*flush_cache)(struct fib_rules_ops *); ++ int nlgroup; ++ const struct nla_policy *policy; ++ struct list_head rules_list; ++ struct module *owner; ++ struct net *fro_net; ++ struct callback_head rcu; ++}; ++ ++enum tcp_ca_event { ++ CA_EVENT_TX_START = 0, ++ CA_EVENT_CWND_RESTART = 1, ++ CA_EVENT_COMPLETE_CWR = 2, ++ CA_EVENT_LOSS = 3, ++ CA_EVENT_ECN_NO_CE = 4, ++ CA_EVENT_ECN_IS_CE = 5, ++}; ++ ++struct ack_sample; ++ ++struct rate_sample; ++ ++union tcp_cc_info; ++ ++struct tcp_congestion_ops { ++ struct list_head list; ++ u32 key; ++ u32 flags; ++ void (*init)(struct sock *); ++ void (*release)(struct sock *); ++ u32 (*ssthresh)(struct sock *); ++ void (*cong_avoid)(struct sock *, u32, u32); ++ void (*set_state)(struct sock *, u8); ++ void (*cwnd_event)(struct sock *, enum tcp_ca_event); ++ void (*in_ack_event)(struct sock *, u32); ++ u32 (*undo_cwnd)(struct sock *); ++ void (*pkts_acked)(struct sock *, const struct ack_sample *); ++ u32 (*min_tso_segs)(struct sock *); ++ u32 (*sndbuf_expand)(struct sock *); ++ void (*cong_control)(struct sock *, const struct rate_sample *); ++ size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *); ++ char name[16]; ++ struct module *owner; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct fib_notifier_ops { ++ int family; ++ struct list_head list; ++ unsigned int (*fib_seq_read)(struct net *); ++ int (*fib_dump)(struct net *, struct notifier_block *, struct netlink_ext_ack *); ++ struct module *owner; ++ struct callback_head rcu; ++}; ++ ++struct xfrm_state; ++ ++struct lwtunnel_state; ++ ++struct dst_entry { ++ struct net_device *dev; ++ struct dst_ops *ops; ++ long unsigned int _metrics; ++ long unsigned int expires; ++ struct xfrm_state *xfrm; ++ int (*input)(struct sk_buff *); ++ int (*output)(struct net *, struct sock *, struct sk_buff *); ++ short unsigned int flags; ++ short int obsolete; ++ short unsigned int header_len; ++ short unsigned int trailer_len; ++ atomic_t __refcnt; ++ int __use; ++ long unsigned int lastuse; ++ struct lwtunnel_state *lwtstate; ++ struct callback_head callback_head; ++ short int error; ++ short int __pad; ++ __u32 tclassid; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct hh_cache { ++ unsigned int hh_len; ++ seqlock_t hh_lock; ++ long unsigned int hh_data[12]; ++}; ++ ++struct neigh_table; ++ ++struct neigh_parms; ++ ++struct neigh_ops; ++ ++struct neighbour { ++ struct neighbour *next; ++ struct neigh_table *tbl; ++ struct neigh_parms *parms; ++ long unsigned int confirmed; ++ long unsigned int updated; ++ rwlock_t lock; ++ refcount_t refcnt; ++ unsigned int arp_queue_len_bytes; ++ struct sk_buff_head arp_queue; ++ struct timer_list timer; ++ long unsigned int used; ++ atomic_t probes; ++ __u8 flags; ++ __u8 nud_state; ++ __u8 type; ++ __u8 dead; ++ u8 protocol; ++ seqlock_t ha_lock; ++ int: 32; ++ unsigned char ha[32]; ++ struct hh_cache hh; ++ int (*output)(struct neighbour *, struct sk_buff *); ++ const struct neigh_ops *ops; ++ struct list_head gc_list; ++ struct callback_head rcu; ++ struct net_device *dev; ++ u64 kabi_reserved1; ++ u8 primary_key[0]; ++}; ++ ++struct ipv6_stable_secret { ++ bool initialized; ++ struct in6_addr secret; ++}; ++ ++struct ipv6_devconf { ++ __s32 forwarding; ++ __s32 hop_limit; ++ __s32 mtu6; ++ __s32 accept_ra; ++ __s32 accept_redirects; ++ __s32 autoconf; ++ __s32 dad_transmits; ++ __s32 rtr_solicits; ++ __s32 rtr_solicit_interval; ++ __s32 rtr_solicit_max_interval; ++ __s32 rtr_solicit_delay; ++ __s32 force_mld_version; ++ __s32 mldv1_unsolicited_report_interval; ++ __s32 mldv2_unsolicited_report_interval; ++ __s32 use_tempaddr; ++ __s32 temp_valid_lft; ++ __s32 temp_prefered_lft; ++ __s32 regen_max_retry; ++ __s32 max_desync_factor; ++ __s32 max_addresses; ++ __s32 accept_ra_defrtr; ++ __s32 accept_ra_min_hop_limit; ++ __s32 accept_ra_pinfo; ++ __s32 ignore_routes_with_linkdown; ++ __s32 accept_ra_rtr_pref; ++ __s32 rtr_probe_interval; ++ __s32 accept_ra_rt_info_min_plen; ++ __s32 accept_ra_rt_info_max_plen; ++ __s32 proxy_ndp; ++ __s32 accept_source_route; ++ __s32 accept_ra_from_local; ++ __s32 optimistic_dad; ++ __s32 use_optimistic; ++ union { ++ atomic_t mc_forwarding; ++ struct { ++ __s32 mc_forwarding; ++ } kabi_hidden_54; ++ union { }; ++ }; ++ __s32 disable_ipv6; ++ __s32 drop_unicast_in_l2_multicast; ++ __s32 accept_dad; ++ __s32 force_tllao; ++ __s32 ndisc_notify; ++ __s32 suppress_frag_ndisc; ++ __s32 accept_ra_mtu; ++ __s32 drop_unsolicited_na; ++ struct ipv6_stable_secret stable_secret; ++ __s32 use_oif_addrs_only; ++ __s32 keep_addr_on_down; ++ __s32 seg6_enabled; ++ __u32 enhanced_dad; ++ __u32 addr_gen_mode; ++ __s32 disable_policy; ++ __s32 ndisc_tclass; ++ __s32 rpl_seg_enabled; ++ struct ctl_table_header *sysctl_header; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct nf_queue_entry; ++ ++struct nf_queue_handler { ++ int (*outfn)(struct nf_queue_entry *, unsigned int); ++ void (*nf_hook_drop)(struct net *); ++}; ++ ++enum nf_log_type { ++ NF_LOG_TYPE_LOG = 0, ++ NF_LOG_TYPE_ULOG = 1, ++ NF_LOG_TYPE_MAX = 2, ++}; ++ ++typedef u8 u_int8_t; ++ ++struct nf_loginfo; ++ ++typedef void nf_logfn(struct net *, u_int8_t, unsigned int, const struct sk_buff *, const struct net_device *, const struct net_device *, const struct nf_loginfo *, const char *); ++ ++struct nf_logger { ++ char *name; ++ enum nf_log_type type; ++ nf_logfn *logfn; ++ struct module *me; ++}; ++ ++struct hlist_nulls_head { ++ struct hlist_nulls_node *first; ++}; ++ ++struct ip_conntrack_stat { ++ unsigned int found; ++ unsigned int invalid; ++ unsigned int insert; ++ unsigned int insert_failed; ++ unsigned int clash_resolve; ++ unsigned int drop; ++ unsigned int early_drop; ++ unsigned int error; ++ unsigned int expect_new; ++ unsigned int expect_create; ++ unsigned int expect_delete; ++ unsigned int search_restart; ++}; ++ ++struct ct_pcpu { ++ spinlock_t lock; ++ struct hlist_nulls_head unconfirmed; ++ struct hlist_nulls_head dying; ++}; ++ ++typedef struct { ++ union { ++ void *kernel; ++ void *user; ++ }; ++ bool is_kernel: 1; ++} sockptr_t; ++ ++typedef enum { ++ SS_FREE = 0, ++ SS_UNCONNECTED = 1, ++ SS_CONNECTING = 2, ++ SS_CONNECTED = 3, ++ SS_DISCONNECTING = 4, ++} socket_state; ++ ++struct socket_wq { ++ wait_queue_head_t wait; ++ struct fasync_struct *fasync_list; ++ long unsigned int flags; ++ struct callback_head rcu; ++ long: 64; ++}; ++ ++struct proto_ops; ++ ++struct socket { ++ socket_state state; ++ short int type; ++ long unsigned int flags; ++ struct file *file; ++ struct sock *sk; ++ const struct proto_ops *ops; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct socket_wq wq; ++}; ++ ++typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); ++ ++struct proto_ops { ++ int family; ++ unsigned int flags; ++ struct module *owner; ++ int (*release)(struct socket *); ++ int (*bind)(struct socket *, struct sockaddr *, int); ++ int (*connect)(struct socket *, struct sockaddr *, int, int); ++ int (*socketpair)(struct socket *, struct socket *); ++ int (*accept)(struct socket *, struct socket *, int, bool); ++ int (*getname)(struct socket *, struct sockaddr *, int); ++ __poll_t (*poll)(struct file *, struct socket *, struct poll_table_struct *); ++ int (*ioctl)(struct socket *, unsigned int, long unsigned int); ++ int (*compat_ioctl)(struct socket *, unsigned int, long unsigned int); ++ int (*gettstamp)(struct socket *, void *, bool, bool); ++ int (*listen)(struct socket *, int); ++ int (*shutdown)(struct socket *, int); ++ int (*setsockopt)(struct socket *, int, int, sockptr_t, unsigned int); ++ int (*getsockopt)(struct socket *, int, int, char *, int *); ++ void (*show_fdinfo)(struct seq_file *, struct socket *); ++ int (*sendmsg)(struct socket *, struct msghdr *, size_t); ++ int (*recvmsg)(struct socket *, struct msghdr *, size_t, int); ++ int (*mmap)(struct file *, struct socket *, struct vm_area_struct *); ++ ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int); ++ ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); ++ int (*set_peek_off)(struct sock *, int); ++ int (*peek_len)(struct socket *); ++ int (*read_sock)(struct sock *, read_descriptor_t *, sk_read_actor_t); ++ int (*sendpage_locked)(struct sock *, struct page *, int, size_t, int); ++ int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); ++ int (*set_rcvlowat)(struct sock *, int); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct pipe_buf_operations; ++ ++struct pipe_buffer { ++ struct page *page; ++ unsigned int offset; ++ unsigned int len; ++ const struct pipe_buf_operations *ops; ++ unsigned int flags; ++ long unsigned int private; ++}; ++ ++struct pipe_buf_operations { ++ int (*confirm)(struct pipe_inode_info *, struct pipe_buffer *); ++ void (*release)(struct pipe_inode_info *, struct pipe_buffer *); ++ bool (*try_steal)(struct pipe_inode_info *, struct pipe_buffer *); ++ bool (*get)(struct pipe_inode_info *, struct pipe_buffer *); ++}; ++ ++struct skb_ext { ++ refcount_t refcnt; ++ u8 offset[2]; ++ u8 chunks; ++ char: 8; ++ char data[0]; ++}; ++ ++struct dql { ++ unsigned int num_queued; ++ unsigned int adj_limit; ++ unsigned int last_obj_cnt; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ unsigned int limit; ++ unsigned int num_completed; ++ unsigned int prev_ovlimit; ++ unsigned int prev_num_queued; ++ unsigned int prev_last_obj_cnt; ++ unsigned int lowest_slack; ++ long unsigned int slack_start_time; ++ unsigned int max_limit; ++ unsigned int min_limit; ++ unsigned int slack_hold_time; ++ long: 32; ++ long: 64; ++ long: 64; ++}; ++ ++struct nlmsghdr { ++ __u32 nlmsg_len; ++ __u16 nlmsg_type; ++ __u16 nlmsg_flags; ++ __u32 nlmsg_seq; ++ __u32 nlmsg_pid; ++}; ++ ++struct nlattr { ++ __u16 nla_len; ++ __u16 nla_type; ++}; ++ ++struct netlink_ext_ack { ++ const char *_msg; ++ const struct nlattr *bad_attr; ++ const struct nla_policy *policy; ++ u8 cookie[20]; ++ u8 cookie_len; ++}; ++ ++struct netlink_range_validation; ++ ++struct netlink_range_validation_signed; ++ ++struct nla_policy { ++ u8 type; ++ u8 validation_type; ++ u16 len; ++ union { ++ const u32 bitfield32_valid; ++ const u32 mask; ++ const char *reject_message; ++ const struct nla_policy *nested_policy; ++ struct netlink_range_validation *range; ++ struct netlink_range_validation_signed *range_signed; ++ struct { ++ s16 min; ++ s16 max; ++ }; ++ int (*validate)(const struct nlattr *, struct netlink_ext_ack *); ++ u16 strict_start_type; ++ }; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++}; ++ ++struct netlink_callback { ++ struct sk_buff *skb; ++ const struct nlmsghdr *nlh; ++ int (*dump)(struct sk_buff *, struct netlink_callback *); ++ int (*done)(struct netlink_callback *); ++ void *data; ++ struct module *module; ++ struct netlink_ext_ack *extack; ++ u16 family; ++ u16 answer_flags; ++ u32 min_dump_alloc; ++ unsigned int prev_seq; ++ unsigned int seq; ++ bool strict_check; ++ union { ++ u8 ctx[48]; ++ long int args[6]; ++ }; ++}; ++ ++struct ethtool_drvinfo { ++ __u32 cmd; ++ char driver[32]; ++ char version[32]; ++ char fw_version[32]; ++ char bus_info[32]; ++ char erom_version[32]; ++ char reserved2[12]; ++ __u32 n_priv_flags; ++ __u32 n_stats; ++ __u32 testinfo_len; ++ __u32 eedump_len; ++ __u32 regdump_len; ++}; ++ ++struct ethtool_wolinfo { ++ __u32 cmd; ++ __u32 supported; ++ __u32 wolopts; ++ __u8 sopass[6]; ++}; ++ ++struct ethtool_tunable { ++ __u32 cmd; ++ __u32 id; ++ __u32 type_id; ++ __u32 len; ++ void *data[0]; ++}; ++ ++struct ethtool_regs { ++ __u32 cmd; ++ __u32 version; ++ __u32 len; ++ __u8 data[0]; ++}; ++ ++struct ethtool_eeprom { ++ __u32 cmd; ++ __u32 magic; ++ __u32 offset; ++ __u32 len; ++ __u8 data[0]; ++}; ++ ++struct ethtool_eee { ++ __u32 cmd; ++ __u32 supported; ++ __u32 advertised; ++ __u32 lp_advertised; ++ __u32 eee_active; ++ __u32 eee_enabled; ++ __u32 tx_lpi_enabled; ++ __u32 tx_lpi_timer; ++ __u32 reserved[2]; ++}; ++ ++struct ethtool_modinfo { ++ __u32 cmd; ++ __u32 type; ++ __u32 eeprom_len; ++ __u32 reserved[8]; ++}; ++ ++struct ethtool_coalesce { ++ __u32 cmd; ++ __u32 rx_coalesce_usecs; ++ __u32 rx_max_coalesced_frames; ++ __u32 rx_coalesce_usecs_irq; ++ __u32 rx_max_coalesced_frames_irq; ++ __u32 tx_coalesce_usecs; ++ __u32 tx_max_coalesced_frames; ++ __u32 tx_coalesce_usecs_irq; ++ __u32 tx_max_coalesced_frames_irq; ++ __u32 stats_block_coalesce_usecs; ++ __u32 use_adaptive_rx_coalesce; ++ __u32 use_adaptive_tx_coalesce; ++ __u32 pkt_rate_low; ++ __u32 rx_coalesce_usecs_low; ++ __u32 rx_max_coalesced_frames_low; ++ __u32 tx_coalesce_usecs_low; ++ __u32 tx_max_coalesced_frames_low; ++ __u32 pkt_rate_high; ++ __u32 rx_coalesce_usecs_high; ++ __u32 rx_max_coalesced_frames_high; ++ __u32 tx_coalesce_usecs_high; ++ __u32 tx_max_coalesced_frames_high; ++ __u32 rate_sample_interval; ++}; ++ ++struct ethtool_ringparam { ++ __u32 cmd; ++ __u32 rx_max_pending; ++ __u32 rx_mini_max_pending; ++ __u32 rx_jumbo_max_pending; ++ __u32 tx_max_pending; ++ __u32 rx_pending; ++ __u32 rx_mini_pending; ++ __u32 rx_jumbo_pending; ++ __u32 tx_pending; ++}; ++ ++struct ethtool_channels { ++ __u32 cmd; ++ __u32 max_rx; ++ __u32 max_tx; ++ __u32 max_other; ++ __u32 max_combined; ++ __u32 rx_count; ++ __u32 tx_count; ++ __u32 other_count; ++ __u32 combined_count; ++}; ++ ++struct ethtool_pauseparam { ++ __u32 cmd; ++ __u32 autoneg; ++ __u32 rx_pause; ++ __u32 tx_pause; ++}; ++ ++enum ethtool_link_ext_state { ++ ETHTOOL_LINK_EXT_STATE_AUTONEG = 0, ++ ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE = 1, ++ ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH = 2, ++ ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY = 3, ++ ETHTOOL_LINK_EXT_STATE_NO_CABLE = 4, ++ ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE = 5, ++ ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE = 6, ++ ETHTOOL_LINK_EXT_STATE_CALIBRATION_FAILURE = 7, ++ ETHTOOL_LINK_EXT_STATE_POWER_BUDGET_EXCEEDED = 8, ++ ETHTOOL_LINK_EXT_STATE_OVERHEAT = 9, ++}; ++ ++enum ethtool_link_ext_substate_autoneg { ++ ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED = 1, ++ ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED = 2, ++ ETHTOOL_LINK_EXT_SUBSTATE_AN_NEXT_PAGE_EXCHANGE_FAILED = 3, ++ ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED_FORCE_MODE = 4, ++ ETHTOOL_LINK_EXT_SUBSTATE_AN_FEC_MISMATCH_DURING_OVERRIDE = 5, ++ ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD = 6, ++}; ++ ++enum ethtool_link_ext_substate_link_training { ++ ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_FRAME_LOCK_NOT_ACQUIRED = 1, ++ ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT = 2, ++ ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY = 3, ++ ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT = 4, ++}; ++ ++enum ethtool_link_ext_substate_link_logical_mismatch { ++ ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK = 1, ++ ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_AM_LOCK = 2, ++ ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_GET_ALIGN_STATUS = 3, ++ ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED = 4, ++ ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED = 5, ++}; ++ ++enum ethtool_link_ext_substate_bad_signal_integrity { ++ ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS = 1, ++ ETHTOOL_LINK_EXT_SUBSTATE_BSI_UNSUPPORTED_RATE = 2, ++ ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_REFERENCE_CLOCK_LOST = 3, ++ ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_ALOS = 4, ++}; ++ ++enum ethtool_link_ext_substate_cable_issue { ++ ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, ++ ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, ++}; ++ ++struct ethtool_test { ++ __u32 cmd; ++ __u32 flags; ++ __u32 reserved; ++ __u32 len; ++ __u64 data[0]; ++}; ++ ++struct ethtool_stats { ++ __u32 cmd; ++ __u32 n_stats; ++ __u64 data[0]; ++}; ++ ++struct ethtool_tcpip4_spec { ++ __be32 ip4src; ++ __be32 ip4dst; ++ __be16 psrc; ++ __be16 pdst; ++ __u8 tos; ++}; ++ ++struct ethtool_ah_espip4_spec { ++ __be32 ip4src; ++ __be32 ip4dst; ++ __be32 spi; ++ __u8 tos; ++}; ++ ++struct ethtool_usrip4_spec { ++ __be32 ip4src; ++ __be32 ip4dst; ++ __be32 l4_4_bytes; ++ __u8 tos; ++ __u8 ip_ver; ++ __u8 proto; ++}; ++ ++struct ethtool_tcpip6_spec { ++ __be32 ip6src[4]; ++ __be32 ip6dst[4]; ++ __be16 psrc; ++ __be16 pdst; ++ __u8 tclass; ++}; ++ ++struct ethtool_ah_espip6_spec { ++ __be32 ip6src[4]; ++ __be32 ip6dst[4]; ++ __be32 spi; ++ __u8 tclass; ++}; ++ ++struct ethtool_usrip6_spec { ++ __be32 ip6src[4]; ++ __be32 ip6dst[4]; ++ __be32 l4_4_bytes; ++ __u8 tclass; ++ __u8 l4_proto; ++}; ++ ++union ethtool_flow_union { ++ struct ethtool_tcpip4_spec tcp_ip4_spec; ++ struct ethtool_tcpip4_spec udp_ip4_spec; ++ struct ethtool_tcpip4_spec sctp_ip4_spec; ++ struct ethtool_ah_espip4_spec ah_ip4_spec; ++ struct ethtool_ah_espip4_spec esp_ip4_spec; ++ struct ethtool_usrip4_spec usr_ip4_spec; ++ struct ethtool_tcpip6_spec tcp_ip6_spec; ++ struct ethtool_tcpip6_spec udp_ip6_spec; ++ struct ethtool_tcpip6_spec sctp_ip6_spec; ++ struct ethtool_ah_espip6_spec ah_ip6_spec; ++ struct ethtool_ah_espip6_spec esp_ip6_spec; ++ struct ethtool_usrip6_spec usr_ip6_spec; ++ struct ethhdr ether_spec; ++ __u8 hdata[52]; ++}; ++ ++struct ethtool_flow_ext { ++ __u8 padding[2]; ++ unsigned char h_dest[6]; ++ __be16 vlan_etype; ++ __be16 vlan_tci; ++ __be32 data[2]; ++}; ++ ++struct ethtool_rx_flow_spec { ++ __u32 flow_type; ++ union ethtool_flow_union h_u; ++ struct ethtool_flow_ext h_ext; ++ union ethtool_flow_union m_u; ++ struct ethtool_flow_ext m_ext; ++ __u64 ring_cookie; ++ __u32 location; ++}; ++ ++struct ethtool_rxnfc { ++ __u32 cmd; ++ __u32 flow_type; ++ __u64 data; ++ struct ethtool_rx_flow_spec fs; ++ union { ++ __u32 rule_cnt; ++ __u32 rss_context; ++ }; ++ __u32 rule_locs[0]; ++}; ++ ++struct ethtool_flash { ++ __u32 cmd; ++ __u32 region; ++ char data[128]; ++}; ++ ++struct ethtool_dump { ++ __u32 cmd; ++ __u32 version; ++ __u32 flag; ++ __u32 len; ++ __u8 data[0]; ++}; ++ ++struct ethtool_ts_info { ++ __u32 cmd; ++ __u32 so_timestamping; ++ __s32 phc_index; ++ __u32 tx_types; ++ __u32 tx_reserved[3]; ++ __u32 rx_filters; ++ __u32 rx_reserved[3]; ++}; ++ ++struct ethtool_fecparam { ++ __u32 cmd; ++ __u32 active_fec; ++ __u32 fec; ++ __u32 reserved; ++}; ++ ++struct ethtool_link_settings { ++ __u32 cmd; ++ __u32 speed; ++ __u8 duplex; ++ __u8 port; ++ __u8 phy_address; ++ __u8 autoneg; ++ __u8 mdio_support; ++ __u8 eth_tp_mdix; ++ __u8 eth_tp_mdix_ctrl; ++ __s8 link_mode_masks_nwords; ++ __u8 transceiver; ++ __u8 master_slave_cfg; ++ __u8 master_slave_state; ++ __u8 reserved1[1]; ++ __u32 reserved[7]; ++ __u32 link_mode_masks[0]; ++}; ++ ++enum ethtool_phys_id_state { ++ ETHTOOL_ID_INACTIVE = 0, ++ ETHTOOL_ID_ACTIVE = 1, ++ ETHTOOL_ID_ON = 2, ++ ETHTOOL_ID_OFF = 3, ++}; ++ ++struct kernel_ethtool_ringparam { ++ u32 rx_buf_len; ++}; ++ ++struct ethtool_link_ext_state_info { ++ enum ethtool_link_ext_state link_ext_state; ++ union { ++ enum ethtool_link_ext_substate_autoneg autoneg; ++ enum ethtool_link_ext_substate_link_training link_training; ++ enum ethtool_link_ext_substate_link_logical_mismatch link_logical_mismatch; ++ enum ethtool_link_ext_substate_bad_signal_integrity bad_signal_integrity; ++ enum ethtool_link_ext_substate_cable_issue cable_issue; ++ u8 __link_ext_substate; ++ }; ++}; ++ ++struct ethtool_link_ksettings { ++ struct ethtool_link_settings base; ++ struct { ++ long unsigned int supported[2]; ++ long unsigned int advertising[2]; ++ long unsigned int lp_advertising[2]; ++ } link_modes; ++}; ++ ++struct kernel_ethtool_coalesce { ++ u8 use_cqe_mode_tx; ++ u8 use_cqe_mode_rx; ++}; ++ ++struct ethtool_pause_stats { ++ u64 tx_pause_frames; ++ u64 rx_pause_frames; ++}; ++ ++struct ethtool_ops { ++ u32 supported_coalesce_params; ++ u32 supported_ring_params; ++ void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); ++ int (*get_regs_len)(struct net_device *); ++ void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); ++ void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); ++ int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); ++ u32 (*get_msglevel)(struct net_device *); ++ void (*set_msglevel)(struct net_device *, u32); ++ int (*nway_reset)(struct net_device *); ++ u32 (*get_link)(struct net_device *); ++ int (*get_link_ext_state)(struct net_device *, struct ethtool_link_ext_state_info *); ++ int (*get_eeprom_len)(struct net_device *); ++ int (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); ++ int (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); ++ int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); ++ int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); ++ void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); ++ int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); ++ void (*get_pause_stats)(struct net_device *, struct ethtool_pause_stats *); ++ void (*get_pauseparam)(struct net_device *, struct ethtool_pauseparam *); ++ int (*set_pauseparam)(struct net_device *, struct ethtool_pauseparam *); ++ void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); ++ void (*get_strings)(struct net_device *, u32, u8 *); ++ int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); ++ void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, u64 *); ++ int (*begin)(struct net_device *); ++ void (*complete)(struct net_device *); ++ u32 (*get_priv_flags)(struct net_device *); ++ int (*set_priv_flags)(struct net_device *, u32); ++ int (*get_sset_count)(struct net_device *, int); ++ int (*get_rxnfc)(struct net_device *, struct ethtool_rxnfc *, u32 *); ++ int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); ++ int (*flash_device)(struct net_device *, struct ethtool_flash *); ++ int (*reset)(struct net_device *, u32 *); ++ u32 (*get_rxfh_key_size)(struct net_device *); ++ u32 (*get_rxfh_indir_size)(struct net_device *); ++ int (*get_rxfh)(struct net_device *, u32 *, u8 *, u8 *); ++ int (*set_rxfh)(struct net_device *, const u32 *, const u8 *, const u8); ++ int (*get_rxfh_context)(struct net_device *, u32 *, u8 *, u8 *, u32); ++ int (*set_rxfh_context)(struct net_device *, const u32 *, const u8 *, const u8, u32 *, bool); ++ void (*get_channels)(struct net_device *, struct ethtool_channels *); ++ int (*set_channels)(struct net_device *, struct ethtool_channels *); ++ int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); ++ int (*get_dump_data)(struct net_device *, struct ethtool_dump *, void *); ++ int (*set_dump)(struct net_device *, struct ethtool_dump *); ++ int (*get_ts_info)(struct net_device *, struct ethtool_ts_info *); ++ int (*get_module_info)(struct net_device *, struct ethtool_modinfo *); ++ int (*get_module_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); ++ int (*get_eee)(struct net_device *, struct ethtool_eee *); ++ int (*set_eee)(struct net_device *, struct ethtool_eee *); ++ int (*get_tunable)(struct net_device *, const struct ethtool_tunable *, void *); ++ int (*set_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); ++ int (*get_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); ++ int (*set_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); ++ int (*get_link_ksettings)(struct net_device *, struct ethtool_link_ksettings *); ++ int (*set_link_ksettings)(struct net_device *, const struct ethtool_link_ksettings *); ++ int (*get_fecparam)(struct net_device *, struct ethtool_fecparam *); ++ int (*set_fecparam)(struct net_device *, struct ethtool_fecparam *); ++ void (*get_ethtool_phy_stats)(struct net_device *, struct ethtool_stats *, u64 *); ++ int (*get_phy_tunable)(struct net_device *, const struct ethtool_tunable *, void *); ++ int (*set_phy_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct ieee_ets { ++ __u8 willing; ++ __u8 ets_cap; ++ __u8 cbs; ++ __u8 tc_tx_bw[8]; ++ __u8 tc_rx_bw[8]; ++ __u8 tc_tsa[8]; ++ __u8 prio_tc[8]; ++ __u8 tc_reco_bw[8]; ++ __u8 tc_reco_tsa[8]; ++ __u8 reco_prio_tc[8]; ++}; ++ ++struct ieee_maxrate { ++ __u64 tc_maxrate[8]; ++}; ++ ++struct ieee_qcn { ++ __u8 rpg_enable[8]; ++ __u32 rppp_max_rps[8]; ++ __u32 rpg_time_reset[8]; ++ __u32 rpg_byte_reset[8]; ++ __u32 rpg_threshold[8]; ++ __u32 rpg_max_rate[8]; ++ __u32 rpg_ai_rate[8]; ++ __u32 rpg_hai_rate[8]; ++ __u32 rpg_gd[8]; ++ __u32 rpg_min_dec_fac[8]; ++ __u32 rpg_min_rate[8]; ++ __u32 cndd_state_machine[8]; ++}; ++ ++struct ieee_qcn_stats { ++ __u64 rppp_rp_centiseconds[8]; ++ __u32 rppp_created_rps[8]; ++}; ++ ++struct ieee_pfc { ++ __u8 pfc_cap; ++ __u8 pfc_en; ++ __u8 mbc; ++ __u16 delay; ++ __u64 requests[8]; ++ __u64 indications[8]; ++}; ++ ++struct dcbnl_buffer { ++ __u8 prio2buffer[8]; ++ __u32 buffer_size[8]; ++ __u32 total_size; ++}; ++ ++struct cee_pg { ++ __u8 willing; ++ __u8 error; ++ __u8 pg_en; ++ __u8 tcs_supported; ++ __u8 pg_bw[8]; ++ __u8 prio_pg[8]; ++}; ++ ++struct cee_pfc { ++ __u8 willing; ++ __u8 error; ++ __u8 pfc_en; ++ __u8 tcs_supported; ++}; ++ ++struct dcb_app { ++ __u8 selector; ++ __u8 priority; ++ __u16 protocol; ++}; ++ ++struct dcb_peer_app_info { ++ __u8 willing; ++ __u8 error; ++}; ++ ++struct dcbnl_rtnl_ops { ++ int (*ieee_getets)(struct net_device *, struct ieee_ets *); ++ int (*ieee_setets)(struct net_device *, struct ieee_ets *); ++ int (*ieee_getmaxrate)(struct net_device *, struct ieee_maxrate *); ++ int (*ieee_setmaxrate)(struct net_device *, struct ieee_maxrate *); ++ int (*ieee_getqcn)(struct net_device *, struct ieee_qcn *); ++ int (*ieee_setqcn)(struct net_device *, struct ieee_qcn *); ++ int (*ieee_getqcnstats)(struct net_device *, struct ieee_qcn_stats *); ++ int (*ieee_getpfc)(struct net_device *, struct ieee_pfc *); ++ int (*ieee_setpfc)(struct net_device *, struct ieee_pfc *); ++ int (*ieee_getapp)(struct net_device *, struct dcb_app *); ++ int (*ieee_setapp)(struct net_device *, struct dcb_app *); ++ int (*ieee_delapp)(struct net_device *, struct dcb_app *); ++ int (*ieee_peer_getets)(struct net_device *, struct ieee_ets *); ++ int (*ieee_peer_getpfc)(struct net_device *, struct ieee_pfc *); ++ u8 (*getstate)(struct net_device *); ++ u8 (*setstate)(struct net_device *, u8); ++ void (*getpermhwaddr)(struct net_device *, u8 *); ++ void (*setpgtccfgtx)(struct net_device *, int, u8, u8, u8, u8); ++ void (*setpgbwgcfgtx)(struct net_device *, int, u8); ++ void (*setpgtccfgrx)(struct net_device *, int, u8, u8, u8, u8); ++ void (*setpgbwgcfgrx)(struct net_device *, int, u8); ++ void (*getpgtccfgtx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); ++ void (*getpgbwgcfgtx)(struct net_device *, int, u8 *); ++ void (*getpgtccfgrx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); ++ void (*getpgbwgcfgrx)(struct net_device *, int, u8 *); ++ void (*setpfccfg)(struct net_device *, int, u8); ++ void (*getpfccfg)(struct net_device *, int, u8 *); ++ u8 (*setall)(struct net_device *); ++ u8 (*getcap)(struct net_device *, int, u8 *); ++ int (*getnumtcs)(struct net_device *, int, u8 *); ++ int (*setnumtcs)(struct net_device *, int, u8); ++ u8 (*getpfcstate)(struct net_device *); ++ void (*setpfcstate)(struct net_device *, u8); ++ void (*getbcncfg)(struct net_device *, int, u32 *); ++ void (*setbcncfg)(struct net_device *, int, u32); ++ void (*getbcnrp)(struct net_device *, int, u8 *); ++ void (*setbcnrp)(struct net_device *, int, u8); ++ int (*setapp)(struct net_device *, u8, u16, u8); ++ int (*getapp)(struct net_device *, u8, u16); ++ u8 (*getfeatcfg)(struct net_device *, int, u8 *); ++ u8 (*setfeatcfg)(struct net_device *, int, u8); ++ u8 (*getdcbx)(struct net_device *); ++ u8 (*setdcbx)(struct net_device *, u8); ++ int (*peer_getappinfo)(struct net_device *, struct dcb_peer_app_info *, u16 *); ++ int (*peer_getapptable)(struct net_device *, struct dcb_app *); ++ int (*cee_peer_getpg)(struct net_device *, struct cee_pg *); ++ int (*cee_peer_getpfc)(struct net_device *, struct cee_pfc *); ++ int (*dcbnl_getbuffer)(struct net_device *, struct dcbnl_buffer *); ++ int (*dcbnl_setbuffer)(struct net_device *, struct dcbnl_buffer *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct netprio_map { ++ struct callback_head rcu; ++ u32 priomap_len; ++ u32 priomap[0]; ++}; ++ ++struct xdp_mem_info { ++ u32 type; ++ u32 id; ++}; ++ ++struct xdp_rxq_info { ++ struct net_device *dev; ++ u32 queue_index; ++ u32 reg_state; ++ struct xdp_mem_info mem; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ long: 64; ++}; ++ ++struct xdp_frame { ++ void *data; ++ u16 len; ++ u16 headroom; ++ u32 metasize: 8; ++ u32 frame_sz: 24; ++ struct xdp_mem_info mem; ++ struct net_device *dev_rx; ++}; ++ ++struct ndmsg { ++ __u8 ndm_family; ++ __u8 ndm_pad1; ++ __u16 ndm_pad2; ++ __s32 ndm_ifindex; ++ __u16 ndm_state; ++ __u8 ndm_flags; ++ __u8 ndm_type; ++}; ++ ++struct rtnl_link_stats64 { ++ __u64 rx_packets; ++ __u64 tx_packets; ++ __u64 rx_bytes; ++ __u64 tx_bytes; ++ __u64 rx_errors; ++ __u64 tx_errors; ++ __u64 rx_dropped; ++ __u64 tx_dropped; ++ __u64 multicast; ++ __u64 collisions; ++ __u64 rx_length_errors; ++ __u64 rx_over_errors; ++ __u64 rx_crc_errors; ++ __u64 rx_frame_errors; ++ __u64 rx_fifo_errors; ++ __u64 rx_missed_errors; ++ __u64 tx_aborted_errors; ++ __u64 tx_carrier_errors; ++ __u64 tx_fifo_errors; ++ __u64 tx_heartbeat_errors; ++ __u64 tx_window_errors; ++ __u64 rx_compressed; ++ __u64 tx_compressed; ++ __u64 rx_nohandler; ++}; ++ ++struct ifla_vf_guid { ++ __u32 vf; ++ __u64 guid; ++}; ++ ++struct ifla_vf_stats { ++ __u64 rx_packets; ++ __u64 tx_packets; ++ __u64 rx_bytes; ++ __u64 tx_bytes; ++ __u64 broadcast; ++ __u64 multicast; ++ __u64 rx_dropped; ++ __u64 tx_dropped; ++}; ++ ++struct ifla_vf_info { ++ __u32 vf; ++ __u8 mac[32]; ++ __u32 vlan; ++ __u32 qos; ++ __u32 spoofchk; ++ __u32 linkstate; ++ __u32 min_tx_rate; ++ __u32 max_tx_rate; ++ __u32 rss_query_en; ++ __u32 trusted; ++ __be16 vlan_proto; ++}; ++ ++struct tc_stats { ++ __u64 bytes; ++ __u32 packets; ++ __u32 drops; ++ __u32 overlimits; ++ __u32 bps; ++ __u32 pps; ++ __u32 qlen; ++ __u32 backlog; ++}; ++ ++struct tc_sizespec { ++ unsigned char cell_log; ++ unsigned char size_log; ++ short int cell_align; ++ int overhead; ++ unsigned int linklayer; ++ unsigned int mpu; ++ unsigned int mtu; ++ unsigned int tsize; ++}; ++ ++enum netdev_tx { ++ __NETDEV_TX_MIN = 2147483648, ++ NETDEV_TX_OK = 0, ++ NETDEV_TX_BUSY = 16, ++}; ++ ++typedef enum netdev_tx netdev_tx_t; ++ ++struct header_ops { ++ int (*create)(struct sk_buff *, struct net_device *, short unsigned int, const void *, const void *, unsigned int); ++ int (*parse)(const struct sk_buff *, unsigned char *); ++ int (*cache)(const struct neighbour *, struct hh_cache *, __be16); ++ void (*cache_update)(struct hh_cache *, const struct net_device *, const unsigned char *); ++ bool (*validate)(const char *, unsigned int); ++ __be16 (*parse_protocol)(const struct sk_buff *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct xsk_buff_pool; ++ ++struct netdev_queue { ++ struct net_device *dev; ++ struct Qdisc *qdisc; ++ struct Qdisc *qdisc_sleeping; ++ struct kobject kobj; ++ int numa_node; ++ long unsigned int tx_maxrate; ++ long unsigned int trans_timeout; ++ struct net_device *sb_dev; ++ struct xsk_buff_pool *pool; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ spinlock_t _xmit_lock; ++ int xmit_lock_owner; ++ long unsigned int trans_start; ++ long unsigned int state; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct dql dql; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct qdisc_skb_head { ++ struct sk_buff *head; ++ struct sk_buff *tail; ++ __u32 qlen; ++ spinlock_t lock; ++}; ++ ++struct gnet_stats_basic_packed { ++ __u64 bytes; ++ __u64 packets; ++}; ++ ++struct gnet_stats_queue { ++ __u32 qlen; ++ __u32 backlog; ++ __u32 drops; ++ __u32 requeues; ++ __u32 overlimits; ++}; ++ ++struct Qdisc_ops; ++ ++struct qdisc_size_table; ++ ++struct net_rate_estimator; ++ ++struct gnet_stats_basic_cpu; ++ ++struct Qdisc { ++ int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); ++ struct sk_buff * (*dequeue)(struct Qdisc *); ++ unsigned int flags; ++ u32 limit; ++ const struct Qdisc_ops *ops; ++ struct qdisc_size_table *stab; ++ struct hlist_node hash; ++ u32 handle; ++ u32 parent; ++ struct netdev_queue *dev_queue; ++ struct net_rate_estimator *rate_est; ++ struct gnet_stats_basic_cpu *cpu_bstats; ++ struct gnet_stats_queue *cpu_qstats; ++ int pad; ++ refcount_t refcnt; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct sk_buff_head gso_skb; ++ struct qdisc_skb_head q; ++ struct gnet_stats_basic_packed bstats; ++ seqcount_t running; ++ struct gnet_stats_queue qstats; ++ long unsigned int state; ++ struct Qdisc *next_sched; ++ struct sk_buff_head skb_bad_txq; ++ spinlock_t busylock; ++ spinlock_t seqlock; ++ bool empty; ++ struct callback_head rcu; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ long: 64; ++ long: 64; ++ long int privdata[0]; ++}; ++ ++struct rps_map { ++ unsigned int len; ++ struct callback_head rcu; ++ u16 cpus[0]; ++}; ++ ++struct rps_dev_flow { ++ u16 cpu; ++ u16 filter; ++ unsigned int last_qtail; ++}; ++ ++struct rps_dev_flow_table { ++ unsigned int mask; ++ struct callback_head rcu; ++ struct rps_dev_flow flows[0]; ++}; ++ ++struct netdev_rx_queue { ++ struct rps_map *rps_map; ++ struct rps_dev_flow_table *rps_flow_table; ++ struct kobject kobj; ++ struct net_device *dev; ++ long: 64; ++ struct xdp_rxq_info xdp_rxq; ++ struct xsk_buff_pool *pool; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct xps_map { ++ unsigned int len; ++ unsigned int alloc_len; ++ struct callback_head rcu; ++ u16 queues[0]; ++}; ++ ++struct xps_dev_maps { ++ struct callback_head rcu; ++ struct xps_map *attr_map[0]; ++}; ++ ++struct netdev_fcoe_hbainfo { ++ char manufacturer[64]; ++ char serial_number[64]; ++ char hardware_version[64]; ++ char driver_version[64]; ++ char optionrom_version[64]; ++ char firmware_version[64]; ++ char model[256]; ++ char model_description[256]; ++}; ++ ++struct netdev_phys_item_id { ++ unsigned char id[32]; ++ unsigned char id_len; ++}; ++ ++enum tc_setup_type { ++ TC_SETUP_QDISC_MQPRIO = 0, ++ TC_SETUP_CLSU32 = 1, ++ TC_SETUP_CLSFLOWER = 2, ++ TC_SETUP_CLSMATCHALL = 3, ++ TC_SETUP_CLSBPF = 4, ++ TC_SETUP_BLOCK = 5, ++ TC_SETUP_QDISC_CBS = 6, ++ TC_SETUP_QDISC_RED = 7, ++ TC_SETUP_QDISC_PRIO = 8, ++ TC_SETUP_QDISC_MQ = 9, ++ TC_SETUP_QDISC_ETF = 10, ++ TC_SETUP_ROOT_QDISC = 11, ++ TC_SETUP_QDISC_GRED = 12, ++ TC_SETUP_QDISC_TAPRIO = 13, ++ TC_SETUP_FT = 14, ++ TC_SETUP_QDISC_ETS = 15, ++ TC_SETUP_QDISC_TBF = 16, ++ TC_SETUP_QDISC_FIFO = 17, ++}; ++ ++enum bpf_netdev_command { ++ XDP_SETUP_PROG = 0, ++ XDP_SETUP_PROG_HW = 1, ++ BPF_OFFLOAD_MAP_ALLOC = 2, ++ BPF_OFFLOAD_MAP_FREE = 3, ++ XDP_SETUP_XSK_POOL = 4, ++}; ++ ++struct netdev_bpf { ++ enum bpf_netdev_command command; ++ union { ++ struct { ++ u32 flags; ++ struct bpf_prog *prog; ++ struct netlink_ext_ack *extack; ++ }; ++ struct { ++ struct bpf_offloaded_map *offmap; ++ }; ++ struct { ++ struct xsk_buff_pool *pool; ++ u16 queue_id; ++ } xsk; ++ }; ++}; ++ ++struct xfrmdev_ops { ++ int (*xdo_dev_state_add)(struct xfrm_state *); ++ void (*xdo_dev_state_delete)(struct xfrm_state *); ++ void (*xdo_dev_state_free)(struct xfrm_state *); ++ bool (*xdo_dev_offload_ok)(struct sk_buff *, struct xfrm_state *); ++ void (*xdo_dev_state_advance_esn)(struct xfrm_state *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct dev_ifalias { ++ struct callback_head rcuhead; ++ char ifalias[0]; ++}; ++ ++struct netdev_name_node { ++ struct hlist_node hlist; ++ struct list_head list; ++ struct net_device *dev; ++ const char *name; ++}; ++ ++struct udp_tunnel_info; ++ ++struct devlink_port; ++ ++struct ip_tunnel_parm; ++ ++struct net_device_ops { ++ int (*ndo_init)(struct net_device *); ++ void (*ndo_uninit)(struct net_device *); ++ int (*ndo_open)(struct net_device *); ++ int (*ndo_stop)(struct net_device *); ++ netdev_tx_t (*ndo_start_xmit)(struct sk_buff *, struct net_device *); ++ netdev_features_t (*ndo_features_check)(struct sk_buff *, struct net_device *, netdev_features_t); ++ u16 (*ndo_select_queue)(struct net_device *, struct sk_buff *, struct net_device *); ++ void (*ndo_change_rx_flags)(struct net_device *, int); ++ void (*ndo_set_rx_mode)(struct net_device *); ++ int (*ndo_set_mac_address)(struct net_device *, void *); ++ int (*ndo_validate_addr)(struct net_device *); ++ int (*ndo_do_ioctl)(struct net_device *, struct ifreq *, int); ++ int (*ndo_set_config)(struct net_device *, struct ifmap *); ++ int (*ndo_change_mtu)(struct net_device *, int); ++ int (*ndo_neigh_setup)(struct net_device *, struct neigh_parms *); ++ void (*ndo_tx_timeout)(struct net_device *, unsigned int); ++ void (*ndo_get_stats64)(struct net_device *, struct rtnl_link_stats64 *); ++ bool (*ndo_has_offload_stats)(const struct net_device *, int); ++ int (*ndo_get_offload_stats)(int, const struct net_device *, void *); ++ struct net_device_stats * (*ndo_get_stats)(struct net_device *); ++ int (*ndo_vlan_rx_add_vid)(struct net_device *, __be16, u16); ++ int (*ndo_vlan_rx_kill_vid)(struct net_device *, __be16, u16); ++ void (*ndo_poll_controller)(struct net_device *); ++ int (*ndo_netpoll_setup)(struct net_device *, struct netpoll_info *); ++ void (*ndo_netpoll_cleanup)(struct net_device *); ++ int (*ndo_set_vf_mac)(struct net_device *, int, u8 *); ++ int (*ndo_set_vf_vlan)(struct net_device *, int, u16, u8, __be16); ++ int (*ndo_set_vf_rate)(struct net_device *, int, int, int); ++ int (*ndo_set_vf_spoofchk)(struct net_device *, int, bool); ++ int (*ndo_set_vf_trust)(struct net_device *, int, bool); ++ int (*ndo_get_vf_config)(struct net_device *, int, struct ifla_vf_info *); ++ int (*ndo_set_vf_link_state)(struct net_device *, int, int); ++ int (*ndo_get_vf_stats)(struct net_device *, int, struct ifla_vf_stats *); ++ int (*ndo_set_vf_port)(struct net_device *, int, struct nlattr **); ++ int (*ndo_get_vf_port)(struct net_device *, int, struct sk_buff *); ++ int (*ndo_get_vf_guid)(struct net_device *, int, struct ifla_vf_guid *, struct ifla_vf_guid *); ++ int (*ndo_set_vf_guid)(struct net_device *, int, u64, int); ++ int (*ndo_set_vf_rss_query_en)(struct net_device *, int, bool); ++ int (*ndo_setup_tc)(struct net_device *, enum tc_setup_type, void *); ++ int (*ndo_fcoe_enable)(struct net_device *); ++ int (*ndo_fcoe_disable)(struct net_device *); ++ int (*ndo_fcoe_ddp_setup)(struct net_device *, u16, struct scatterlist *, unsigned int); ++ int (*ndo_fcoe_ddp_done)(struct net_device *, u16); ++ int (*ndo_fcoe_ddp_target)(struct net_device *, u16, struct scatterlist *, unsigned int); ++ int (*ndo_fcoe_get_hbainfo)(struct net_device *, struct netdev_fcoe_hbainfo *); ++ int (*ndo_fcoe_get_wwn)(struct net_device *, u64 *, int); ++ int (*ndo_rx_flow_steer)(struct net_device *, const struct sk_buff *, u16, u32); ++ int (*ndo_add_slave)(struct net_device *, struct net_device *, struct netlink_ext_ack *); ++ int (*ndo_del_slave)(struct net_device *, struct net_device *); ++ struct net_device * (*ndo_get_xmit_slave)(struct net_device *, struct sk_buff *, bool); ++ netdev_features_t (*ndo_fix_features)(struct net_device *, netdev_features_t); ++ int (*ndo_set_features)(struct net_device *, netdev_features_t); ++ int (*ndo_neigh_construct)(struct net_device *, struct neighbour *); ++ void (*ndo_neigh_destroy)(struct net_device *, struct neighbour *); ++ int (*ndo_fdb_add)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, u16, struct netlink_ext_ack *); ++ int (*ndo_fdb_del)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16); ++ int (*ndo_fdb_dump)(struct sk_buff *, struct netlink_callback *, struct net_device *, struct net_device *, int *); ++ int (*ndo_fdb_get)(struct sk_buff *, struct nlattr **, struct net_device *, const unsigned char *, u16, u32, u32, struct netlink_ext_ack *); ++ int (*ndo_bridge_setlink)(struct net_device *, struct nlmsghdr *, u16, struct netlink_ext_ack *); ++ int (*ndo_bridge_getlink)(struct sk_buff *, u32, u32, struct net_device *, u32, int); ++ int (*ndo_bridge_dellink)(struct net_device *, struct nlmsghdr *, u16); ++ int (*ndo_change_carrier)(struct net_device *, bool); ++ int (*ndo_get_phys_port_id)(struct net_device *, struct netdev_phys_item_id *); ++ int (*ndo_get_port_parent_id)(struct net_device *, struct netdev_phys_item_id *); ++ int (*ndo_get_phys_port_name)(struct net_device *, char *, size_t); ++ void (*ndo_udp_tunnel_add)(struct net_device *, struct udp_tunnel_info *); ++ void (*ndo_udp_tunnel_del)(struct net_device *, struct udp_tunnel_info *); ++ void * (*ndo_dfwd_add_station)(struct net_device *, struct net_device *); ++ void (*ndo_dfwd_del_station)(struct net_device *, void *); ++ int (*ndo_set_tx_maxrate)(struct net_device *, int, u32); ++ int (*ndo_get_iflink)(const struct net_device *); ++ int (*ndo_change_proto_down)(struct net_device *, bool); ++ int (*ndo_fill_metadata_dst)(struct net_device *, struct sk_buff *); ++ void (*ndo_set_rx_headroom)(struct net_device *, int); ++ int (*ndo_bpf)(struct net_device *, struct netdev_bpf *); ++ int (*ndo_xdp_xmit)(struct net_device *, int, struct xdp_frame **, u32); ++ int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); ++ struct devlink_port * (*ndo_get_devlink_port)(struct net_device *); ++ int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm *, int); ++ struct net_device * (*ndo_get_peer_dev)(struct net_device *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct neigh_parms { ++ possible_net_t net; ++ struct net_device *dev; ++ struct list_head list; ++ int (*neigh_setup)(struct neighbour *); ++ struct neigh_table *tbl; ++ void *sysctl_table; ++ int dead; ++ refcount_t refcnt; ++ struct callback_head callback_head; ++ int reachable_time; ++ int data[13]; ++ long unsigned int data_state[1]; ++ u64 kabi_reserved1; ++}; ++ ++struct net_device_extended_resvd {}; ++ ++struct pcpu_lstats { ++ u64_stats_t packets; ++ u64_stats_t bytes; ++ struct u64_stats_sync syncp; ++}; ++ ++struct pcpu_sw_netstats { ++ u64 rx_packets; ++ u64 rx_bytes; ++ u64 tx_packets; ++ u64 tx_bytes; ++ struct u64_stats_sync syncp; ++}; ++ ++struct l3mdev_ops { ++ u32 (*l3mdev_fib_table)(const struct net_device *); ++ struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *, struct sk_buff *, u16); ++ struct sk_buff * (*l3mdev_l3_out)(struct net_device *, struct sock *, struct sk_buff *, u16); ++ struct dst_entry * (*l3mdev_link_scope_lookup)(const struct net_device *, struct flowi6 *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct nd_opt_hdr; ++ ++struct ndisc_options; ++ ++struct prefix_info; ++ ++struct ndisc_ops { ++ int (*is_useropt)(u8); ++ int (*parse_options)(const struct net_device *, struct nd_opt_hdr *, struct ndisc_options *); ++ void (*update)(const struct net_device *, struct neighbour *, u32, u8, const struct ndisc_options *); ++ int (*opt_addr_space)(const struct net_device *, u8, struct neighbour *, u8 *, u8 **); ++ void (*fill_addr_option)(const struct net_device *, struct sk_buff *, u8, const u8 *); ++ void (*prefix_rcv_add_addr)(struct net *, struct net_device *, const struct prefix_info *, struct inet6_dev *, struct in6_addr *, int, u32, bool, bool, __u32, u32, bool); ++}; ++ ++enum tls_offload_ctx_dir { ++ TLS_OFFLOAD_CTX_DIR_RX = 0, ++ TLS_OFFLOAD_CTX_DIR_TX = 1, ++}; ++ ++struct tls_crypto_info; ++ ++struct tls_context; ++ ++struct tlsdev_ops { ++ int (*tls_dev_add)(struct net_device *, struct sock *, enum tls_offload_ctx_dir, struct tls_crypto_info *, u32); ++ void (*tls_dev_del)(struct net_device *, struct tls_context *, enum tls_offload_ctx_dir); ++ int (*tls_dev_resync)(struct net_device *, struct sock *, u32, u8 *, enum tls_offload_ctx_dir); ++}; ++ ++struct ipv6_devstat { ++ struct proc_dir_entry *proc_dir_entry; ++ struct ipstats_mib *ipv6; ++ struct icmpv6_mib_device *icmpv6dev; ++ struct icmpv6msg_mib_device *icmpv6msgdev; ++}; ++ ++struct ifmcaddr6; ++ ++struct ifacaddr6; ++ ++struct inet6_dev { ++ struct net_device *dev; ++ struct list_head addr_list; ++ struct ifmcaddr6 *mc_list; ++ struct ifmcaddr6 *mc_tomb; ++ spinlock_t mc_lock; ++ unsigned char mc_qrv; ++ unsigned char mc_gq_running; ++ unsigned char mc_ifc_count; ++ unsigned char mc_dad_count; ++ long unsigned int mc_v1_seen; ++ long unsigned int mc_qi; ++ long unsigned int mc_qri; ++ long unsigned int mc_maxdelay; ++ struct timer_list mc_gq_timer; ++ struct timer_list mc_ifc_timer; ++ struct timer_list mc_dad_timer; ++ struct ifacaddr6 *ac_list; ++ rwlock_t lock; ++ refcount_t refcnt; ++ __u32 if_flags; ++ int dead; ++ u32 desync_factor; ++ struct list_head tempaddr_list; ++ struct in6_addr token; ++ struct neigh_parms *nd_parms; ++ struct ipv6_devconf cnf; ++ struct ipv6_devstat stats; ++ struct timer_list rs_timer; ++ __s32 rs_interval; ++ __u8 rs_probes; ++ long unsigned int tstamp; ++ struct callback_head rcu; ++}; ++ ++struct tcf_proto; ++ ++struct tcf_block; ++ ++struct mini_Qdisc { ++ struct tcf_proto *filter_list; ++ struct tcf_block *block; ++ struct gnet_stats_basic_cpu *cpu_bstats; ++ struct gnet_stats_queue *cpu_qstats; ++ struct callback_head rcu; ++}; ++ ++struct rtnl_link_ops { ++ struct list_head list; ++ const char *kind; ++ size_t priv_size; ++ void (*setup)(struct net_device *); ++ bool netns_refund; ++ unsigned int maxtype; ++ const struct nla_policy *policy; ++ int (*validate)(struct nlattr **, struct nlattr **, struct netlink_ext_ack *); ++ int (*newlink)(struct net *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); ++ int (*changelink)(struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); ++ void (*dellink)(struct net_device *, struct list_head *); ++ size_t (*get_size)(const struct net_device *); ++ int (*fill_info)(struct sk_buff *, const struct net_device *); ++ size_t (*get_xstats_size)(const struct net_device *); ++ int (*fill_xstats)(struct sk_buff *, const struct net_device *); ++ unsigned int (*get_num_tx_queues)(); ++ unsigned int (*get_num_rx_queues)(); ++ unsigned int slave_maxtype; ++ const struct nla_policy *slave_policy; ++ int (*slave_changelink)(struct net_device *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); ++ size_t (*get_slave_size)(const struct net_device *, const struct net_device *); ++ int (*fill_slave_info)(struct sk_buff *, const struct net_device *, const struct net_device *); ++ struct net * (*get_link_net)(const struct net_device *); ++ size_t (*get_linkxstats_size)(const struct net_device *, int); ++ int (*fill_linkxstats)(struct sk_buff *, const struct net_device *, int *, int); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct udp_tunnel_nic_table_info { ++ unsigned int n_entries; ++ unsigned int tunnel_types; ++}; ++ ++struct udp_tunnel_nic_shared; ++ ++struct udp_tunnel_nic_info { ++ int (*set_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); ++ int (*unset_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); ++ int (*sync_table)(struct net_device *, unsigned int); ++ struct udp_tunnel_nic_shared *shared; ++ unsigned int flags; ++ struct udp_tunnel_nic_table_info tables[4]; ++}; ++ ++enum { ++ RTAX_UNSPEC = 0, ++ RTAX_LOCK = 1, ++ RTAX_MTU = 2, ++ RTAX_WINDOW = 3, ++ RTAX_RTT = 4, ++ RTAX_RTTVAR = 5, ++ RTAX_SSTHRESH = 6, ++ RTAX_CWND = 7, ++ RTAX_ADVMSS = 8, ++ RTAX_REORDERING = 9, ++ RTAX_HOPLIMIT = 10, ++ RTAX_INITCWND = 11, ++ RTAX_FEATURES = 12, ++ RTAX_RTO_MIN = 13, ++ RTAX_INITRWND = 14, ++ RTAX_QUICKACK = 15, ++ RTAX_CC_ALGO = 16, ++ RTAX_FASTOPEN_NO_COOKIE = 17, ++ __RTAX_MAX = 18, ++}; ++ ++struct tcmsg { ++ unsigned char tcm_family; ++ unsigned char tcm__pad1; ++ short unsigned int tcm__pad2; ++ int tcm_ifindex; ++ __u32 tcm_handle; ++ __u32 tcm_parent; ++ __u32 tcm_info; ++}; ++ ++struct gnet_stats_basic_cpu { ++ struct gnet_stats_basic_packed bstats; ++ struct u64_stats_sync syncp; ++}; ++ ++struct gnet_dump { ++ spinlock_t *lock; ++ struct sk_buff *skb; ++ struct nlattr *tail; ++ int compat_tc_stats; ++ int compat_xstats; ++ int padattr; ++ void *xstats; ++ int xstats_len; ++ struct tc_stats tc_stats; ++}; ++ ++struct netlink_range_validation { ++ u64 min; ++ u64 max; ++}; ++ ++struct netlink_range_validation_signed { ++ s64 min; ++ s64 max; ++}; ++ ++enum flow_action_hw_stats_bit { ++ FLOW_ACTION_HW_STATS_IMMEDIATE_BIT = 0, ++ FLOW_ACTION_HW_STATS_DELAYED_BIT = 1, ++ FLOW_ACTION_HW_STATS_DISABLED_BIT = 2, ++ FLOW_ACTION_HW_STATS_NUM_BITS = 3, ++}; ++ ++struct flow_block { ++ struct list_head cb_list; ++}; ++ ++typedef int flow_setup_cb_t(enum tc_setup_type, void *, void *); ++ ++struct qdisc_size_table { ++ struct callback_head rcu; ++ struct list_head list; ++ struct tc_sizespec szopts; ++ int refcnt; ++ u16 data[0]; ++}; ++ ++struct Qdisc_class_ops; ++ ++struct Qdisc_ops { ++ struct Qdisc_ops *next; ++ const struct Qdisc_class_ops *cl_ops; ++ char id[16]; ++ int priv_size; ++ unsigned int static_flags; ++ int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); ++ struct sk_buff * (*dequeue)(struct Qdisc *); ++ struct sk_buff * (*peek)(struct Qdisc *); ++ int (*init)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); ++ void (*reset)(struct Qdisc *); ++ void (*destroy)(struct Qdisc *); ++ int (*change)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); ++ void (*attach)(struct Qdisc *); ++ int (*change_tx_queue_len)(struct Qdisc *, unsigned int); ++ void (*change_real_num_tx)(struct Qdisc *, unsigned int); ++ int (*dump)(struct Qdisc *, struct sk_buff *); ++ int (*dump_stats)(struct Qdisc *, struct gnet_dump *); ++ void (*ingress_block_set)(struct Qdisc *, u32); ++ void (*egress_block_set)(struct Qdisc *, u32); ++ u32 (*ingress_block_get)(struct Qdisc *); ++ u32 (*egress_block_get)(struct Qdisc *); ++ struct module *owner; ++ u64 kabi_reserved1; ++}; ++ ++struct qdisc_walker; ++ ++struct Qdisc_class_ops { ++ unsigned int flags; ++ struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *); ++ int (*graft)(struct Qdisc *, long unsigned int, struct Qdisc *, struct Qdisc **, struct netlink_ext_ack *); ++ struct Qdisc * (*leaf)(struct Qdisc *, long unsigned int); ++ void (*qlen_notify)(struct Qdisc *, long unsigned int); ++ long unsigned int (*find)(struct Qdisc *, u32); ++ int (*change)(struct Qdisc *, u32, u32, struct nlattr **, long unsigned int *, struct netlink_ext_ack *); ++ int (*delete)(struct Qdisc *, long unsigned int); ++ void (*walk)(struct Qdisc *, struct qdisc_walker *); ++ struct tcf_block * (*tcf_block)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); ++ long unsigned int (*bind_tcf)(struct Qdisc *, long unsigned int, u32); ++ void (*unbind_tcf)(struct Qdisc *, long unsigned int); ++ int (*dump)(struct Qdisc *, long unsigned int, struct sk_buff *, struct tcmsg *); ++ int (*dump_stats)(struct Qdisc *, long unsigned int, struct gnet_dump *); ++ u64 kabi_reserved1; ++}; ++ ++struct tcf_chain; ++ ++struct tcf_block { ++ struct mutex lock; ++ struct list_head chain_list; ++ u32 index; ++ u32 classid; ++ refcount_t refcnt; ++ struct net *net; ++ struct Qdisc *q; ++ struct rw_semaphore cb_lock; ++ struct flow_block flow_block; ++ struct list_head owner_list; ++ bool keep_dst; ++ atomic_t offloadcnt; ++ unsigned int nooffloaddevcnt; ++ unsigned int lockeddevcnt; ++ struct { ++ struct tcf_chain *chain; ++ struct list_head filter_chain_list; ++ } chain0; ++ struct callback_head rcu; ++ struct hlist_head proto_destroy_ht[128]; ++ struct mutex proto_destroy_lock; ++}; ++ ++struct tcf_result; ++ ++struct tcf_proto_ops; ++ ++struct tcf_proto { ++ struct tcf_proto *next; ++ void *root; ++ int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); ++ __be16 protocol; ++ u32 prio; ++ void *data; ++ const struct tcf_proto_ops *ops; ++ struct tcf_chain *chain; ++ spinlock_t lock; ++ bool deleting; ++ refcount_t refcnt; ++ struct callback_head rcu; ++ struct hlist_node destroy_ht_node; ++}; ++ ++struct tcf_result { ++ union { ++ struct { ++ long unsigned int class; ++ u32 classid; ++ }; ++ const struct tcf_proto *goto_tp; ++ struct { ++ bool ingress; ++ struct gnet_stats_queue *qstats; ++ }; ++ }; ++}; ++ ++struct tcf_walker; ++ ++struct tcf_proto_ops { ++ struct list_head head; ++ char kind[16]; ++ int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); ++ int (*init)(struct tcf_proto *); ++ void (*destroy)(struct tcf_proto *, bool, struct netlink_ext_ack *); ++ void * (*get)(struct tcf_proto *, u32); ++ void (*put)(struct tcf_proto *, void *); ++ int (*change)(struct net *, struct sk_buff *, struct tcf_proto *, long unsigned int, u32, struct nlattr **, void **, bool, bool, struct netlink_ext_ack *); ++ int (*delete)(struct tcf_proto *, void *, bool *, bool, struct netlink_ext_ack *); ++ bool (*delete_empty)(struct tcf_proto *); ++ void (*walk)(struct tcf_proto *, struct tcf_walker *, bool); ++ int (*reoffload)(struct tcf_proto *, bool, flow_setup_cb_t *, void *, struct netlink_ext_ack *); ++ void (*hw_add)(struct tcf_proto *, void *); ++ void (*hw_del)(struct tcf_proto *, void *); ++ void (*bind_class)(void *, u32, long unsigned int, void *, long unsigned int); ++ void * (*tmplt_create)(struct net *, struct tcf_chain *, struct nlattr **, struct netlink_ext_ack *); ++ void (*tmplt_destroy)(void *); ++ int (*dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); ++ int (*terse_dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); ++ int (*tmplt_dump)(struct sk_buff *, struct net *, void *); ++ struct module *owner; ++ int flags; ++}; ++ ++struct tcf_chain { ++ struct mutex filter_chain_lock; ++ struct tcf_proto *filter_chain; ++ struct list_head list; ++ struct tcf_block *block; ++ u32 index; ++ unsigned int refcnt; ++ unsigned int action_refcnt; ++ bool explicitly_created; ++ bool flushing; ++ const struct tcf_proto_ops *tmplt_ops; ++ void *tmplt_priv; ++ struct callback_head rcu; ++}; ++ ++struct sock_fprog_kern { ++ u16 len; ++ struct sock_filter *filter; ++}; ++ ++struct sk_filter { ++ refcount_t refcnt; ++ struct callback_head rcu; ++ struct bpf_prog *prog; ++}; ++ ++enum { ++ NEIGH_VAR_MCAST_PROBES = 0, ++ NEIGH_VAR_UCAST_PROBES = 1, ++ NEIGH_VAR_APP_PROBES = 2, ++ NEIGH_VAR_MCAST_REPROBES = 3, ++ NEIGH_VAR_RETRANS_TIME = 4, ++ NEIGH_VAR_BASE_REACHABLE_TIME = 5, ++ NEIGH_VAR_DELAY_PROBE_TIME = 6, ++ NEIGH_VAR_GC_STALETIME = 7, ++ NEIGH_VAR_QUEUE_LEN_BYTES = 8, ++ NEIGH_VAR_PROXY_QLEN = 9, ++ NEIGH_VAR_ANYCAST_DELAY = 10, ++ NEIGH_VAR_PROXY_DELAY = 11, ++ NEIGH_VAR_LOCKTIME = 12, ++ NEIGH_VAR_QUEUE_LEN = 13, ++ NEIGH_VAR_RETRANS_TIME_MS = 14, ++ NEIGH_VAR_BASE_REACHABLE_TIME_MS = 15, ++ NEIGH_VAR_GC_INTERVAL = 16, ++ NEIGH_VAR_GC_THRESH1 = 17, ++ NEIGH_VAR_GC_THRESH2 = 18, ++ NEIGH_VAR_GC_THRESH3 = 19, ++ NEIGH_VAR_MAX = 20, ++}; ++ ++struct pneigh_entry; ++ ++struct neigh_statistics; ++ ++struct neigh_hash_table; ++ ++struct neigh_table { ++ int family; ++ unsigned int entry_size; ++ unsigned int key_len; ++ __be16 protocol; ++ __u32 (*hash)(const void *, const struct net_device *, __u32 *); ++ bool (*key_eq)(const struct neighbour *, const void *); ++ int (*constructor)(struct neighbour *); ++ int (*pconstructor)(struct pneigh_entry *); ++ void (*pdestructor)(struct pneigh_entry *); ++ void (*proxy_redo)(struct sk_buff *); ++ int (*is_multicast)(const void *); ++ bool (*allow_add)(const struct net_device *, struct netlink_ext_ack *); ++ char *id; ++ struct neigh_parms parms; ++ struct list_head parms_list; ++ int gc_interval; ++ int gc_thresh1; ++ int gc_thresh2; ++ int gc_thresh3; ++ long unsigned int last_flush; ++ struct delayed_work gc_work; ++ struct timer_list proxy_timer; ++ struct sk_buff_head proxy_queue; ++ atomic_t entries; ++ atomic_t gc_entries; ++ struct list_head gc_list; ++ rwlock_t lock; ++ long unsigned int last_rand; ++ struct neigh_statistics *stats; ++ struct neigh_hash_table *nht; ++ struct pneigh_entry **phash_buckets; ++ u64 kabi_reserved1; ++}; ++ ++struct neigh_statistics { ++ long unsigned int allocs; ++ long unsigned int destroys; ++ long unsigned int hash_grows; ++ long unsigned int res_failed; ++ long unsigned int lookups; ++ long unsigned int hits; ++ long unsigned int rcv_probes_mcast; ++ long unsigned int rcv_probes_ucast; ++ long unsigned int periodic_gc_runs; ++ long unsigned int forced_gc_runs; ++ long unsigned int unres_discards; ++ long unsigned int table_fulls; ++}; ++ ++struct neigh_ops { ++ int family; ++ void (*solicit)(struct neighbour *, struct sk_buff *); ++ void (*error_report)(struct neighbour *, struct sk_buff *); ++ int (*output)(struct neighbour *, struct sk_buff *); ++ int (*connected_output)(struct neighbour *, struct sk_buff *); ++}; ++ ++struct pneigh_entry { ++ struct pneigh_entry *next; ++ possible_net_t net; ++ struct net_device *dev; ++ u8 flags; ++ u8 protocol; ++ u8 key[0]; ++}; ++ ++struct neigh_hash_table { ++ struct neighbour **hash_buckets; ++ unsigned int hash_shift; ++ __u32 hash_rnd[4]; ++ struct callback_head rcu; ++}; ++ ++enum { ++ TCP_ESTABLISHED = 1, ++ TCP_SYN_SENT = 2, ++ TCP_SYN_RECV = 3, ++ TCP_FIN_WAIT1 = 4, ++ TCP_FIN_WAIT2 = 5, ++ TCP_TIME_WAIT = 6, ++ TCP_CLOSE = 7, ++ TCP_CLOSE_WAIT = 8, ++ TCP_LAST_ACK = 9, ++ TCP_LISTEN = 10, ++ TCP_CLOSING = 11, ++ TCP_NEW_SYN_RECV = 12, ++ TCP_MAX_STATES = 13, ++}; ++ ++struct fib_rule_hdr { ++ __u8 family; ++ __u8 dst_len; ++ __u8 src_len; ++ __u8 tos; ++ __u8 table; ++ __u8 res1; ++ __u8 res2; ++ __u8 action; ++ __u32 flags; ++}; ++ ++struct fib_rule_port_range { ++ __u16 start; ++ __u16 end; ++}; ++ ++struct fib_kuid_range { ++ kuid_t start; ++ kuid_t end; ++}; ++ ++struct fib_rule { ++ struct list_head list; ++ int iifindex; ++ int oifindex; ++ u32 mark; ++ u32 mark_mask; ++ u32 flags; ++ u32 table; ++ u8 action; ++ u8 l3mdev; ++ u8 proto; ++ u8 ip_proto; ++ u32 target; ++ __be64 tun_id; ++ struct fib_rule *ctarget; ++ struct net *fr_net; ++ refcount_t refcnt; ++ u32 pref; ++ int suppress_ifgroup; ++ int suppress_prefixlen; ++ char iifname[16]; ++ char oifname[16]; ++ struct fib_kuid_range uid_range; ++ struct fib_rule_port_range sport_range; ++ struct fib_rule_port_range dport_range; ++ struct callback_head rcu; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct fib_lookup_arg { ++ void *lookup_ptr; ++ const void *lookup_data; ++ void *result; ++ struct fib_rule *rule; ++ u32 table; ++ int flags; ++}; ++ ++struct smc_hashinfo; ++ ++struct request_sock_ops; ++ ++struct timewait_sock_ops; ++ ++struct udp_table; ++ ++struct raw_hashinfo; ++ ++struct proto { ++ void (*close)(struct sock *, long int); ++ int (*pre_connect)(struct sock *, struct sockaddr *, int); ++ int (*connect)(struct sock *, struct sockaddr *, int); ++ int (*disconnect)(struct sock *, int); ++ struct sock * (*accept)(struct sock *, int, int *, bool); ++ int (*ioctl)(struct sock *, int, long unsigned int); ++ int (*init)(struct sock *); ++ void (*destroy)(struct sock *); ++ void (*shutdown)(struct sock *, int); ++ int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); ++ int (*getsockopt)(struct sock *, int, int, char *, int *); ++ void (*keepalive)(struct sock *, int); ++ int (*compat_ioctl)(struct sock *, unsigned int, long unsigned int); ++ int (*sendmsg)(struct sock *, struct msghdr *, size_t); ++ int (*recvmsg)(struct sock *, struct msghdr *, size_t, int, int, int *); ++ int (*sendpage)(struct sock *, struct page *, int, size_t, int); ++ int (*bind)(struct sock *, struct sockaddr *, int); ++ int (*bind_add)(struct sock *, struct sockaddr *, int); ++ int (*backlog_rcv)(struct sock *, struct sk_buff *); ++ void (*release_cb)(struct sock *); ++ int (*hash)(struct sock *); ++ void (*unhash)(struct sock *); ++ void (*rehash)(struct sock *); ++ int (*get_port)(struct sock *, short unsigned int); ++ unsigned int inuse_idx; ++ bool (*stream_memory_free)(const struct sock *, int); ++ bool (*stream_memory_read)(const struct sock *); ++ void (*enter_memory_pressure)(struct sock *); ++ void (*leave_memory_pressure)(struct sock *); ++ atomic_long_t *memory_allocated; ++ struct percpu_counter *sockets_allocated; ++ long unsigned int *memory_pressure; ++ long int *sysctl_mem; ++ int *sysctl_wmem; ++ int *sysctl_rmem; ++ u32 sysctl_wmem_offset; ++ u32 sysctl_rmem_offset; ++ int max_header; ++ bool no_autobind; ++ struct kmem_cache *slab; ++ unsigned int obj_size; ++ slab_flags_t slab_flags; ++ unsigned int useroffset; ++ unsigned int usersize; ++ unsigned int *orphan_count; ++ struct request_sock_ops *rsk_prot; ++ struct timewait_sock_ops *twsk_prot; ++ union { ++ struct inet_hashinfo *hashinfo; ++ struct udp_table *udp_table; ++ struct raw_hashinfo *raw_hash; ++ struct smc_hashinfo *smc_hash; ++ } h; ++ struct module *owner; ++ char name[32]; ++ struct list_head node; ++ int (*diag_destroy)(struct sock *, int); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct request_sock; ++ ++struct request_sock_ops { ++ int family; ++ unsigned int obj_size; ++ struct kmem_cache *slab; ++ char *slab_name; ++ int (*rtx_syn_ack)(const struct sock *, struct request_sock *); ++ void (*send_ack)(const struct sock *, struct sk_buff *, struct request_sock *); ++ void (*send_reset)(const struct sock *, struct sk_buff *); ++ void (*destructor)(struct request_sock *); ++ void (*syn_ack_timeout)(const struct request_sock *); ++}; ++ ++struct timewait_sock_ops { ++ struct kmem_cache *twsk_slab; ++ char *twsk_slab_name; ++ unsigned int twsk_obj_size; ++ int (*twsk_unique)(struct sock *, struct sock *, void *); ++ void (*twsk_destructor)(struct sock *); ++}; ++ ++struct saved_syn; ++ ++struct request_sock { ++ struct sock_common __req_common; ++ struct request_sock *dl_next; ++ u16 mss; ++ u8 num_retrans; ++ u8 syncookie: 1; ++ u8 num_timeout: 7; ++ u32 ts_recent; ++ struct timer_list rsk_timer; ++ const struct request_sock_ops *rsk_ops; ++ struct sock *sk; ++ struct saved_syn *saved_syn; ++ u32 secid; ++ u32 peer_secid; ++}; ++ ++struct saved_syn { ++ u32 mac_hdrlen; ++ u32 network_hdrlen; ++ u32 tcp_hdrlen; ++ u8 data[0]; ++}; ++ ++enum tsq_enum { ++ TSQ_THROTTLED = 0, ++ TSQ_QUEUED = 1, ++ TCP_TSQ_DEFERRED = 2, ++ TCP_WRITE_TIMER_DEFERRED = 3, ++ TCP_DELACK_TIMER_DEFERRED = 4, ++ TCP_MTU_REDUCED_DEFERRED = 5, ++}; ++ ++struct ip6_sf_list { ++ struct ip6_sf_list *sf_next; ++ struct in6_addr sf_addr; ++ long unsigned int sf_count[2]; ++ unsigned char sf_gsresp; ++ unsigned char sf_oldin; ++ unsigned char sf_crcount; ++}; ++ ++struct ifmcaddr6 { ++ struct in6_addr mca_addr; ++ struct inet6_dev *idev; ++ struct ifmcaddr6 *next; ++ struct ip6_sf_list *mca_sources; ++ struct ip6_sf_list *mca_tomb; ++ unsigned int mca_sfmode; ++ unsigned char mca_crcount; ++ long unsigned int mca_sfcount[2]; ++ struct timer_list mca_timer; ++ unsigned int mca_flags; ++ int mca_users; ++ refcount_t mca_refcnt; ++ spinlock_t mca_lock; ++ long unsigned int mca_cstamp; ++ long unsigned int mca_tstamp; ++}; ++ ++struct ifacaddr6 { ++ struct in6_addr aca_addr; ++ struct fib6_info *aca_rt; ++ struct ifacaddr6 *aca_next; ++ struct hlist_node aca_addr_lst; ++ int aca_users; ++ refcount_t aca_refcnt; ++ long unsigned int aca_cstamp; ++ long unsigned int aca_tstamp; ++ struct callback_head rcu; ++}; ++ ++enum { ++ __ND_OPT_PREFIX_INFO_END = 0, ++ ND_OPT_SOURCE_LL_ADDR = 1, ++ ND_OPT_TARGET_LL_ADDR = 2, ++ ND_OPT_PREFIX_INFO = 3, ++ ND_OPT_REDIRECT_HDR = 4, ++ ND_OPT_MTU = 5, ++ ND_OPT_NONCE = 14, ++ __ND_OPT_ARRAY_MAX = 15, ++ ND_OPT_ROUTE_INFO = 24, ++ ND_OPT_RDNSS = 25, ++ ND_OPT_DNSSL = 31, ++ ND_OPT_6CO = 34, ++ ND_OPT_CAPTIVE_PORTAL = 37, ++ ND_OPT_PREF64 = 38, ++ __ND_OPT_MAX = 39, ++}; ++ ++struct nd_opt_hdr { ++ __u8 nd_opt_type; ++ __u8 nd_opt_len; ++}; ++ ++struct ndisc_options { ++ struct nd_opt_hdr *nd_opt_array[15]; ++ struct nd_opt_hdr *nd_opts_ri; ++ struct nd_opt_hdr *nd_opts_ri_end; ++ struct nd_opt_hdr *nd_useropts; ++ struct nd_opt_hdr *nd_useropts_end; ++ struct nd_opt_hdr *nd_802154_opt_array[3]; ++}; ++ ++struct prefix_info { ++ __u8 type; ++ __u8 length; ++ __u8 prefix_len; ++ __u8 reserved: 6; ++ __u8 autoconf: 1; ++ __u8 onlink: 1; ++ __be32 valid; ++ __be32 prefered; ++ __be32 reserved2; ++ struct in6_addr prefix; ++}; ++ ++enum nfs_opnum4 { ++ OP_ACCESS = 3, ++ OP_CLOSE = 4, ++ OP_COMMIT = 5, ++ OP_CREATE = 6, ++ OP_DELEGPURGE = 7, ++ OP_DELEGRETURN = 8, ++ OP_GETATTR = 9, ++ OP_GETFH = 10, ++ OP_LINK = 11, ++ OP_LOCK = 12, ++ OP_LOCKT = 13, ++ OP_LOCKU = 14, ++ OP_LOOKUP = 15, ++ OP_LOOKUPP = 16, ++ OP_NVERIFY = 17, ++ OP_OPEN = 18, ++ OP_OPENATTR = 19, ++ OP_OPEN_CONFIRM = 20, ++ OP_OPEN_DOWNGRADE = 21, ++ OP_PUTFH = 22, ++ OP_PUTPUBFH = 23, ++ OP_PUTROOTFH = 24, ++ OP_READ = 25, ++ OP_READDIR = 26, ++ OP_READLINK = 27, ++ OP_REMOVE = 28, ++ OP_RENAME = 29, ++ OP_RENEW = 30, ++ OP_RESTOREFH = 31, ++ OP_SAVEFH = 32, ++ OP_SECINFO = 33, ++ OP_SETATTR = 34, ++ OP_SETCLIENTID = 35, ++ OP_SETCLIENTID_CONFIRM = 36, ++ OP_VERIFY = 37, ++ OP_WRITE = 38, ++ OP_RELEASE_LOCKOWNER = 39, ++ OP_BACKCHANNEL_CTL = 40, ++ OP_BIND_CONN_TO_SESSION = 41, ++ OP_EXCHANGE_ID = 42, ++ OP_CREATE_SESSION = 43, ++ OP_DESTROY_SESSION = 44, ++ OP_FREE_STATEID = 45, ++ OP_GET_DIR_DELEGATION = 46, ++ OP_GETDEVICEINFO = 47, ++ OP_GETDEVICELIST = 48, ++ OP_LAYOUTCOMMIT = 49, ++ OP_LAYOUTGET = 50, ++ OP_LAYOUTRETURN = 51, ++ OP_SECINFO_NO_NAME = 52, ++ OP_SEQUENCE = 53, ++ OP_SET_SSV = 54, ++ OP_TEST_STATEID = 55, ++ OP_WANT_DELEGATION = 56, ++ OP_DESTROY_CLIENTID = 57, ++ OP_RECLAIM_COMPLETE = 58, ++ OP_ALLOCATE = 59, ++ OP_COPY = 60, ++ OP_COPY_NOTIFY = 61, ++ OP_DEALLOCATE = 62, ++ OP_IO_ADVISE = 63, ++ OP_LAYOUTERROR = 64, ++ OP_LAYOUTSTATS = 65, ++ OP_OFFLOAD_CANCEL = 66, ++ OP_OFFLOAD_STATUS = 67, ++ OP_READ_PLUS = 68, ++ OP_SEEK = 69, ++ OP_WRITE_SAME = 70, ++ OP_CLONE = 71, ++ OP_GETXATTR = 72, ++ OP_SETXATTR = 73, ++ OP_LISTXATTRS = 74, ++ OP_REMOVEXATTR = 75, ++ OP_ILLEGAL = 10044, ++}; ++ ++enum perf_branch_sample_type_shift { ++ PERF_SAMPLE_BRANCH_USER_SHIFT = 0, ++ PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 1, ++ PERF_SAMPLE_BRANCH_HV_SHIFT = 2, ++ PERF_SAMPLE_BRANCH_ANY_SHIFT = 3, ++ PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4, ++ PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5, ++ PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 6, ++ PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 7, ++ PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 8, ++ PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 9, ++ PERF_SAMPLE_BRANCH_COND_SHIFT = 10, ++ PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 11, ++ PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 12, ++ PERF_SAMPLE_BRANCH_CALL_SHIFT = 13, ++ PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 14, ++ PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 15, ++ PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 16, ++ PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT = 17, ++ PERF_SAMPLE_BRANCH_MAX_SHIFT = 18, ++}; ++ ++enum exception_stack_ordering { ++ ESTACK_DF = 0, ++ ESTACK_NMI = 1, ++ ESTACK_DB = 2, ++ ESTACK_MCE = 3, ++ ESTACK_VC = 4, ++ ESTACK_VC2 = 5, ++ N_EXCEPTION_STACKS = 6, ++}; ++ ++enum { ++ TSK_TRACE_FL_TRACE_BIT = 0, ++ TSK_TRACE_FL_GRAPH_BIT = 1, ++}; ++ ++struct uuidcmp { ++ const char *uuid; ++ int len; ++}; ++ ++struct subprocess_info { ++ struct work_struct work; ++ struct completion *complete; ++ const char *path; ++ char **argv; ++ char **envp; ++ int wait; ++ int retval; ++ int (*init)(struct subprocess_info *, struct cred *); ++ void (*cleanup)(struct subprocess_info *); ++ void *data; ++}; ++ ++typedef phys_addr_t resource_size_t; ++ ++struct resource { ++ resource_size_t start; ++ resource_size_t end; ++ const char *name; ++ long unsigned int flags; ++ long unsigned int desc; ++ struct resource *parent; ++ struct resource *sibling; ++ struct resource *child; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++enum metadata_types { ++ TYPE_NONE = 0, ++ TYPE_XATTR = 1, ++ TYPE__LAST = 2, ++}; ++ ++struct metadata_hdr { ++ char c_size[8]; ++ char c_version; ++ char c_type; ++ char c_metadata[0]; ++}; ++ ++struct hash { ++ int ino; ++ int minor; ++ int major; ++ umode_t mode; ++ struct hash *next; ++ char name[4098]; ++}; ++ ++struct dir_entry { ++ struct list_head list; ++ char *name; ++ time64_t mtime; ++}; ++ ++enum state { ++ Start = 0, ++ Collect = 1, ++ GotHeader = 2, ++ SkipIt = 3, ++ GotName = 4, ++ CopyFile = 5, ++ GotSymlink = 6, ++ Reset = 7, ++}; ++ ++typedef int (*decompress_fn)(unsigned char *, long int, long int (*)(void *, long unsigned int), long int (*)(void *, long unsigned int), unsigned char *, long int *, void (*)(char *)); ++ ++enum ucount_type { ++ UCOUNT_USER_NAMESPACES = 0, ++ UCOUNT_PID_NAMESPACES = 1, ++ UCOUNT_UTS_NAMESPACES = 2, ++ UCOUNT_IPC_NAMESPACES = 3, ++ UCOUNT_NET_NAMESPACES = 4, ++ UCOUNT_MNT_NAMESPACES = 5, ++ UCOUNT_CGROUP_NAMESPACES = 6, ++ UCOUNT_TIME_NAMESPACES = 7, ++ UCOUNT_INOTIFY_INSTANCES = 8, ++ UCOUNT_INOTIFY_WATCHES = 9, ++ UCOUNT_KABI_RESERVE1 = 10, ++ UCOUNT_KABI_RESERVE2 = 11, ++ UCOUNT_KABI_RESERVE3 = 12, ++ UCOUNT_KABI_RESERVE4 = 13, ++ UCOUNT_KABI_RESERVE5 = 14, ++ UCOUNT_KABI_RESERVE6 = 15, ++ UCOUNT_KABI_RESERVE7 = 16, ++ UCOUNT_KABI_RESERVE8 = 17, ++ UCOUNT_KABI_RESERVE9 = 18, ++ UCOUNT_KABI_RESERVE10 = 19, ++ UCOUNT_KABI_RESERVE11 = 20, ++ UCOUNT_KABI_RESERVE12 = 21, ++ UCOUNT_KABI_RESERVE13 = 22, ++ UCOUNT_KABI_RESERVE14 = 23, ++ UCOUNT_KABI_RESERVE15 = 24, ++ UCOUNT_COUNTS = 25, ++}; ++ ++enum flow_dissector_key_id { ++ FLOW_DISSECTOR_KEY_CONTROL = 0, ++ FLOW_DISSECTOR_KEY_BASIC = 1, ++ FLOW_DISSECTOR_KEY_IPV4_ADDRS = 2, ++ FLOW_DISSECTOR_KEY_IPV6_ADDRS = 3, ++ FLOW_DISSECTOR_KEY_PORTS = 4, ++ FLOW_DISSECTOR_KEY_PORTS_RANGE = 5, ++ FLOW_DISSECTOR_KEY_ICMP = 6, ++ FLOW_DISSECTOR_KEY_ETH_ADDRS = 7, ++ FLOW_DISSECTOR_KEY_TIPC = 8, ++ FLOW_DISSECTOR_KEY_ARP = 9, ++ FLOW_DISSECTOR_KEY_VLAN = 10, ++ FLOW_DISSECTOR_KEY_FLOW_LABEL = 11, ++ FLOW_DISSECTOR_KEY_GRE_KEYID = 12, ++ FLOW_DISSECTOR_KEY_MPLS_ENTROPY = 13, ++ FLOW_DISSECTOR_KEY_ENC_KEYID = 14, ++ FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS = 15, ++ FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS = 16, ++ FLOW_DISSECTOR_KEY_ENC_CONTROL = 17, ++ FLOW_DISSECTOR_KEY_ENC_PORTS = 18, ++ FLOW_DISSECTOR_KEY_MPLS = 19, ++ FLOW_DISSECTOR_KEY_TCP = 20, ++ FLOW_DISSECTOR_KEY_IP = 21, ++ FLOW_DISSECTOR_KEY_CVLAN = 22, ++ FLOW_DISSECTOR_KEY_ENC_IP = 23, ++ FLOW_DISSECTOR_KEY_ENC_OPTS = 24, ++ FLOW_DISSECTOR_KEY_META = 25, ++ FLOW_DISSECTOR_KEY_CT = 26, ++ FLOW_DISSECTOR_KEY_HASH = 27, ++ FLOW_DISSECTOR_KEY_MAX = 28, ++}; ++ ++enum { ++ IPSTATS_MIB_NUM = 0, ++ IPSTATS_MIB_INPKTS = 1, ++ IPSTATS_MIB_INOCTETS = 2, ++ IPSTATS_MIB_INDELIVERS = 3, ++ IPSTATS_MIB_OUTFORWDATAGRAMS = 4, ++ IPSTATS_MIB_OUTPKTS = 5, ++ IPSTATS_MIB_OUTOCTETS = 6, ++ IPSTATS_MIB_INHDRERRORS = 7, ++ IPSTATS_MIB_INTOOBIGERRORS = 8, ++ IPSTATS_MIB_INNOROUTES = 9, ++ IPSTATS_MIB_INADDRERRORS = 10, ++ IPSTATS_MIB_INUNKNOWNPROTOS = 11, ++ IPSTATS_MIB_INTRUNCATEDPKTS = 12, ++ IPSTATS_MIB_INDISCARDS = 13, ++ IPSTATS_MIB_OUTDISCARDS = 14, ++ IPSTATS_MIB_OUTNOROUTES = 15, ++ IPSTATS_MIB_REASMTIMEOUT = 16, ++ IPSTATS_MIB_REASMREQDS = 17, ++ IPSTATS_MIB_REASMOKS = 18, ++ IPSTATS_MIB_REASMFAILS = 19, ++ IPSTATS_MIB_FRAGOKS = 20, ++ IPSTATS_MIB_FRAGFAILS = 21, ++ IPSTATS_MIB_FRAGCREATES = 22, ++ IPSTATS_MIB_INMCASTPKTS = 23, ++ IPSTATS_MIB_OUTMCASTPKTS = 24, ++ IPSTATS_MIB_INBCASTPKTS = 25, ++ IPSTATS_MIB_OUTBCASTPKTS = 26, ++ IPSTATS_MIB_INMCASTOCTETS = 27, ++ IPSTATS_MIB_OUTMCASTOCTETS = 28, ++ IPSTATS_MIB_INBCASTOCTETS = 29, ++ IPSTATS_MIB_OUTBCASTOCTETS = 30, ++ IPSTATS_MIB_CSUMERRORS = 31, ++ IPSTATS_MIB_NOECTPKTS = 32, ++ IPSTATS_MIB_ECT1PKTS = 33, ++ IPSTATS_MIB_ECT0PKTS = 34, ++ IPSTATS_MIB_CEPKTS = 35, ++ IPSTATS_MIB_REASM_OVERLAPS = 36, ++ __IPSTATS_MIB_MAX = 37, ++}; ++ ++enum { ++ ICMP_MIB_NUM = 0, ++ ICMP_MIB_INMSGS = 1, ++ ICMP_MIB_INERRORS = 2, ++ ICMP_MIB_INDESTUNREACHS = 3, ++ ICMP_MIB_INTIMEEXCDS = 4, ++ ICMP_MIB_INPARMPROBS = 5, ++ ICMP_MIB_INSRCQUENCHS = 6, ++ ICMP_MIB_INREDIRECTS = 7, ++ ICMP_MIB_INECHOS = 8, ++ ICMP_MIB_INECHOREPS = 9, ++ ICMP_MIB_INTIMESTAMPS = 10, ++ ICMP_MIB_INTIMESTAMPREPS = 11, ++ ICMP_MIB_INADDRMASKS = 12, ++ ICMP_MIB_INADDRMASKREPS = 13, ++ ICMP_MIB_OUTMSGS = 14, ++ ICMP_MIB_OUTERRORS = 15, ++ ICMP_MIB_OUTDESTUNREACHS = 16, ++ ICMP_MIB_OUTTIMEEXCDS = 17, ++ ICMP_MIB_OUTPARMPROBS = 18, ++ ICMP_MIB_OUTSRCQUENCHS = 19, ++ ICMP_MIB_OUTREDIRECTS = 20, ++ ICMP_MIB_OUTECHOS = 21, ++ ICMP_MIB_OUTECHOREPS = 22, ++ ICMP_MIB_OUTTIMESTAMPS = 23, ++ ICMP_MIB_OUTTIMESTAMPREPS = 24, ++ ICMP_MIB_OUTADDRMASKS = 25, ++ ICMP_MIB_OUTADDRMASKREPS = 26, ++ ICMP_MIB_CSUMERRORS = 27, ++ __ICMP_MIB_MAX = 28, ++}; ++ ++enum { ++ ICMP6_MIB_NUM = 0, ++ ICMP6_MIB_INMSGS = 1, ++ ICMP6_MIB_INERRORS = 2, ++ ICMP6_MIB_OUTMSGS = 3, ++ ICMP6_MIB_OUTERRORS = 4, ++ ICMP6_MIB_CSUMERRORS = 5, ++ __ICMP6_MIB_MAX = 6, ++}; ++ ++enum { ++ TCP_MIB_NUM = 0, ++ TCP_MIB_RTOALGORITHM = 1, ++ TCP_MIB_RTOMIN = 2, ++ TCP_MIB_RTOMAX = 3, ++ TCP_MIB_MAXCONN = 4, ++ TCP_MIB_ACTIVEOPENS = 5, ++ TCP_MIB_PASSIVEOPENS = 6, ++ TCP_MIB_ATTEMPTFAILS = 7, ++ TCP_MIB_ESTABRESETS = 8, ++ TCP_MIB_CURRESTAB = 9, ++ TCP_MIB_INSEGS = 10, ++ TCP_MIB_OUTSEGS = 11, ++ TCP_MIB_RETRANSSEGS = 12, ++ TCP_MIB_INERRS = 13, ++ TCP_MIB_OUTRSTS = 14, ++ TCP_MIB_CSUMERRORS = 15, ++ __TCP_MIB_MAX = 16, ++}; ++ ++enum { ++ UDP_MIB_NUM = 0, ++ UDP_MIB_INDATAGRAMS = 1, ++ UDP_MIB_NOPORTS = 2, ++ UDP_MIB_INERRORS = 3, ++ UDP_MIB_OUTDATAGRAMS = 4, ++ UDP_MIB_RCVBUFERRORS = 5, ++ UDP_MIB_SNDBUFERRORS = 6, ++ UDP_MIB_CSUMERRORS = 7, ++ UDP_MIB_IGNOREDMULTI = 8, ++ __UDP_MIB_MAX = 9, ++}; ++ ++enum { ++ LINUX_MIB_NUM = 0, ++ LINUX_MIB_SYNCOOKIESSENT = 1, ++ LINUX_MIB_SYNCOOKIESRECV = 2, ++ LINUX_MIB_SYNCOOKIESFAILED = 3, ++ LINUX_MIB_EMBRYONICRSTS = 4, ++ LINUX_MIB_PRUNECALLED = 5, ++ LINUX_MIB_RCVPRUNED = 6, ++ LINUX_MIB_OFOPRUNED = 7, ++ LINUX_MIB_OUTOFWINDOWICMPS = 8, ++ LINUX_MIB_LOCKDROPPEDICMPS = 9, ++ LINUX_MIB_ARPFILTER = 10, ++ LINUX_MIB_TIMEWAITED = 11, ++ LINUX_MIB_TIMEWAITRECYCLED = 12, ++ LINUX_MIB_TIMEWAITKILLED = 13, ++ LINUX_MIB_PAWSACTIVEREJECTED = 14, ++ LINUX_MIB_PAWSESTABREJECTED = 15, ++ LINUX_MIB_DELAYEDACKS = 16, ++ LINUX_MIB_DELAYEDACKLOCKED = 17, ++ LINUX_MIB_DELAYEDACKLOST = 18, ++ LINUX_MIB_LISTENOVERFLOWS = 19, ++ LINUX_MIB_LISTENDROPS = 20, ++ LINUX_MIB_TCPHPHITS = 21, ++ LINUX_MIB_TCPPUREACKS = 22, ++ LINUX_MIB_TCPHPACKS = 23, ++ LINUX_MIB_TCPRENORECOVERY = 24, ++ LINUX_MIB_TCPSACKRECOVERY = 25, ++ LINUX_MIB_TCPSACKRENEGING = 26, ++ LINUX_MIB_TCPSACKREORDER = 27, ++ LINUX_MIB_TCPRENOREORDER = 28, ++ LINUX_MIB_TCPTSREORDER = 29, ++ LINUX_MIB_TCPFULLUNDO = 30, ++ LINUX_MIB_TCPPARTIALUNDO = 31, ++ LINUX_MIB_TCPDSACKUNDO = 32, ++ LINUX_MIB_TCPLOSSUNDO = 33, ++ LINUX_MIB_TCPLOSTRETRANSMIT = 34, ++ LINUX_MIB_TCPRENOFAILURES = 35, ++ LINUX_MIB_TCPSACKFAILURES = 36, ++ LINUX_MIB_TCPLOSSFAILURES = 37, ++ LINUX_MIB_TCPFASTRETRANS = 38, ++ LINUX_MIB_TCPSLOWSTARTRETRANS = 39, ++ LINUX_MIB_TCPTIMEOUTS = 40, ++ LINUX_MIB_TCPLOSSPROBES = 41, ++ LINUX_MIB_TCPLOSSPROBERECOVERY = 42, ++ LINUX_MIB_TCPRENORECOVERYFAIL = 43, ++ LINUX_MIB_TCPSACKRECOVERYFAIL = 44, ++ LINUX_MIB_TCPRCVCOLLAPSED = 45, ++ LINUX_MIB_TCPDSACKOLDSENT = 46, ++ LINUX_MIB_TCPDSACKOFOSENT = 47, ++ LINUX_MIB_TCPDSACKRECV = 48, ++ LINUX_MIB_TCPDSACKOFORECV = 49, ++ LINUX_MIB_TCPABORTONDATA = 50, ++ LINUX_MIB_TCPABORTONCLOSE = 51, ++ LINUX_MIB_TCPABORTONMEMORY = 52, ++ LINUX_MIB_TCPABORTONTIMEOUT = 53, ++ LINUX_MIB_TCPABORTONLINGER = 54, ++ LINUX_MIB_TCPABORTFAILED = 55, ++ LINUX_MIB_TCPMEMORYPRESSURES = 56, ++ LINUX_MIB_TCPMEMORYPRESSURESCHRONO = 57, ++ LINUX_MIB_TCPSACKDISCARD = 58, ++ LINUX_MIB_TCPDSACKIGNOREDOLD = 59, ++ LINUX_MIB_TCPDSACKIGNOREDNOUNDO = 60, ++ LINUX_MIB_TCPSPURIOUSRTOS = 61, ++ LINUX_MIB_TCPMD5NOTFOUND = 62, ++ LINUX_MIB_TCPMD5UNEXPECTED = 63, ++ LINUX_MIB_TCPMD5FAILURE = 64, ++ LINUX_MIB_SACKSHIFTED = 65, ++ LINUX_MIB_SACKMERGED = 66, ++ LINUX_MIB_SACKSHIFTFALLBACK = 67, ++ LINUX_MIB_TCPBACKLOGDROP = 68, ++ LINUX_MIB_PFMEMALLOCDROP = 69, ++ LINUX_MIB_TCPMINTTLDROP = 70, ++ LINUX_MIB_TCPDEFERACCEPTDROP = 71, ++ LINUX_MIB_IPRPFILTER = 72, ++ LINUX_MIB_TCPTIMEWAITOVERFLOW = 73, ++ LINUX_MIB_TCPREQQFULLDOCOOKIES = 74, ++ LINUX_MIB_TCPREQQFULLDROP = 75, ++ LINUX_MIB_TCPRETRANSFAIL = 76, ++ LINUX_MIB_TCPRCVCOALESCE = 77, ++ LINUX_MIB_TCPBACKLOGCOALESCE = 78, ++ LINUX_MIB_TCPOFOQUEUE = 79, ++ LINUX_MIB_TCPOFODROP = 80, ++ LINUX_MIB_TCPOFOMERGE = 81, ++ LINUX_MIB_TCPCHALLENGEACK = 82, ++ LINUX_MIB_TCPSYNCHALLENGE = 83, ++ LINUX_MIB_TCPFASTOPENACTIVE = 84, ++ LINUX_MIB_TCPFASTOPENACTIVEFAIL = 85, ++ LINUX_MIB_TCPFASTOPENPASSIVE = 86, ++ LINUX_MIB_TCPFASTOPENPASSIVEFAIL = 87, ++ LINUX_MIB_TCPFASTOPENLISTENOVERFLOW = 88, ++ LINUX_MIB_TCPFASTOPENCOOKIEREQD = 89, ++ LINUX_MIB_TCPFASTOPENBLACKHOLE = 90, ++ LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES = 91, ++ LINUX_MIB_BUSYPOLLRXPACKETS = 92, ++ LINUX_MIB_TCPAUTOCORKING = 93, ++ LINUX_MIB_TCPFROMZEROWINDOWADV = 94, ++ LINUX_MIB_TCPTOZEROWINDOWADV = 95, ++ LINUX_MIB_TCPWANTZEROWINDOWADV = 96, ++ LINUX_MIB_TCPSYNRETRANS = 97, ++ LINUX_MIB_TCPORIGDATASENT = 98, ++ LINUX_MIB_TCPHYSTARTTRAINDETECT = 99, ++ LINUX_MIB_TCPHYSTARTTRAINCWND = 100, ++ LINUX_MIB_TCPHYSTARTDELAYDETECT = 101, ++ LINUX_MIB_TCPHYSTARTDELAYCWND = 102, ++ LINUX_MIB_TCPACKSKIPPEDSYNRECV = 103, ++ LINUX_MIB_TCPACKSKIPPEDPAWS = 104, ++ LINUX_MIB_TCPACKSKIPPEDSEQ = 105, ++ LINUX_MIB_TCPACKSKIPPEDFINWAIT2 = 106, ++ LINUX_MIB_TCPACKSKIPPEDTIMEWAIT = 107, ++ LINUX_MIB_TCPACKSKIPPEDCHALLENGE = 108, ++ LINUX_MIB_TCPWINPROBE = 109, ++ LINUX_MIB_TCPKEEPALIVE = 110, ++ LINUX_MIB_TCPMTUPFAIL = 111, ++ LINUX_MIB_TCPMTUPSUCCESS = 112, ++ LINUX_MIB_TCPDELIVERED = 113, ++ LINUX_MIB_TCPDELIVEREDCE = 114, ++ LINUX_MIB_TCPACKCOMPRESSED = 115, ++ LINUX_MIB_TCPZEROWINDOWDROP = 116, ++ LINUX_MIB_TCPRCVQDROP = 117, ++ LINUX_MIB_TCPWQUEUETOOBIG = 118, ++ LINUX_MIB_TCPFASTOPENPASSIVEALTKEY = 119, ++ LINUX_MIB_TCPTIMEOUTREHASH = 120, ++ LINUX_MIB_TCPDUPLICATEDATAREHASH = 121, ++ LINUX_MIB_TCPDSACKRECVSEGS = 122, ++ LINUX_MIB_TCPDSACKIGNOREDDUBIOUS = 123, ++ __LINUX_MIB_MAX = 124, ++}; ++ ++enum { ++ LINUX_MIB_XFRMNUM = 0, ++ LINUX_MIB_XFRMINERROR = 1, ++ LINUX_MIB_XFRMINBUFFERERROR = 2, ++ LINUX_MIB_XFRMINHDRERROR = 3, ++ LINUX_MIB_XFRMINNOSTATES = 4, ++ LINUX_MIB_XFRMINSTATEPROTOERROR = 5, ++ LINUX_MIB_XFRMINSTATEMODEERROR = 6, ++ LINUX_MIB_XFRMINSTATESEQERROR = 7, ++ LINUX_MIB_XFRMINSTATEEXPIRED = 8, ++ LINUX_MIB_XFRMINSTATEMISMATCH = 9, ++ LINUX_MIB_XFRMINSTATEINVALID = 10, ++ LINUX_MIB_XFRMINTMPLMISMATCH = 11, ++ LINUX_MIB_XFRMINNOPOLS = 12, ++ LINUX_MIB_XFRMINPOLBLOCK = 13, ++ LINUX_MIB_XFRMINPOLERROR = 14, ++ LINUX_MIB_XFRMOUTERROR = 15, ++ LINUX_MIB_XFRMOUTBUNDLEGENERROR = 16, ++ LINUX_MIB_XFRMOUTBUNDLECHECKERROR = 17, ++ LINUX_MIB_XFRMOUTNOSTATES = 18, ++ LINUX_MIB_XFRMOUTSTATEPROTOERROR = 19, ++ LINUX_MIB_XFRMOUTSTATEMODEERROR = 20, ++ LINUX_MIB_XFRMOUTSTATESEQERROR = 21, ++ LINUX_MIB_XFRMOUTSTATEEXPIRED = 22, ++ LINUX_MIB_XFRMOUTPOLBLOCK = 23, ++ LINUX_MIB_XFRMOUTPOLDEAD = 24, ++ LINUX_MIB_XFRMOUTPOLERROR = 25, ++ LINUX_MIB_XFRMFWDHDRERROR = 26, ++ LINUX_MIB_XFRMOUTSTATEINVALID = 27, ++ LINUX_MIB_XFRMACQUIREERROR = 28, ++ __LINUX_MIB_XFRMMAX = 29, ++}; ++ ++enum { ++ LINUX_MIB_TLSNUM = 0, ++ LINUX_MIB_TLSCURRTXSW = 1, ++ LINUX_MIB_TLSCURRRXSW = 2, ++ LINUX_MIB_TLSCURRTXDEVICE = 3, ++ LINUX_MIB_TLSCURRRXDEVICE = 4, ++ LINUX_MIB_TLSTXSW = 5, ++ LINUX_MIB_TLSRXSW = 6, ++ LINUX_MIB_TLSTXDEVICE = 7, ++ LINUX_MIB_TLSRXDEVICE = 8, ++ LINUX_MIB_TLSDECRYPTERROR = 9, ++ LINUX_MIB_TLSRXDEVICERESYNC = 10, ++ __LINUX_MIB_TLSMAX = 11, ++}; ++ ++enum nf_inet_hooks { ++ NF_INET_PRE_ROUTING = 0, ++ NF_INET_LOCAL_IN = 1, ++ NF_INET_FORWARD = 2, ++ NF_INET_LOCAL_OUT = 3, ++ NF_INET_POST_ROUTING = 4, ++ NF_INET_NUMHOOKS = 5, ++ NF_INET_INGRESS = 5, ++}; ++ ++enum { ++ NFPROTO_UNSPEC = 0, ++ NFPROTO_INET = 1, ++ NFPROTO_IPV4 = 2, ++ NFPROTO_ARP = 3, ++ NFPROTO_NETDEV = 5, ++ NFPROTO_BRIDGE = 7, ++ NFPROTO_IPV6 = 10, ++ NFPROTO_DECNET = 12, ++ NFPROTO_NUMPROTO = 13, ++}; ++ ++enum tcp_conntrack { ++ TCP_CONNTRACK_NONE = 0, ++ TCP_CONNTRACK_SYN_SENT = 1, ++ TCP_CONNTRACK_SYN_RECV = 2, ++ TCP_CONNTRACK_ESTABLISHED = 3, ++ TCP_CONNTRACK_FIN_WAIT = 4, ++ TCP_CONNTRACK_CLOSE_WAIT = 5, ++ TCP_CONNTRACK_LAST_ACK = 6, ++ TCP_CONNTRACK_TIME_WAIT = 7, ++ TCP_CONNTRACK_CLOSE = 8, ++ TCP_CONNTRACK_LISTEN = 9, ++ TCP_CONNTRACK_MAX = 10, ++ TCP_CONNTRACK_IGNORE = 11, ++ TCP_CONNTRACK_RETRANS = 12, ++ TCP_CONNTRACK_UNACK = 13, ++ TCP_CONNTRACK_TIMEOUT_MAX = 14, ++}; ++ ++enum ct_dccp_states { ++ CT_DCCP_NONE = 0, ++ CT_DCCP_REQUEST = 1, ++ CT_DCCP_RESPOND = 2, ++ CT_DCCP_PARTOPEN = 3, ++ CT_DCCP_OPEN = 4, ++ CT_DCCP_CLOSEREQ = 5, ++ CT_DCCP_CLOSING = 6, ++ CT_DCCP_TIMEWAIT = 7, ++ CT_DCCP_IGNORE = 8, ++ CT_DCCP_INVALID = 9, ++ __CT_DCCP_MAX = 10, ++}; ++ ++enum ip_conntrack_dir { ++ IP_CT_DIR_ORIGINAL = 0, ++ IP_CT_DIR_REPLY = 1, ++ IP_CT_DIR_MAX = 2, ++}; ++ ++enum sctp_conntrack { ++ SCTP_CONNTRACK_NONE = 0, ++ SCTP_CONNTRACK_CLOSED = 1, ++ SCTP_CONNTRACK_COOKIE_WAIT = 2, ++ SCTP_CONNTRACK_COOKIE_ECHOED = 3, ++ SCTP_CONNTRACK_ESTABLISHED = 4, ++ SCTP_CONNTRACK_SHUTDOWN_SENT = 5, ++ SCTP_CONNTRACK_SHUTDOWN_RECD = 6, ++ SCTP_CONNTRACK_SHUTDOWN_ACK_SENT = 7, ++ SCTP_CONNTRACK_HEARTBEAT_SENT = 8, ++ SCTP_CONNTRACK_HEARTBEAT_ACKED = 9, ++ SCTP_CONNTRACK_MAX = 10, ++}; ++ ++enum udp_conntrack { ++ UDP_CT_UNREPLIED = 0, ++ UDP_CT_REPLIED = 1, ++ UDP_CT_MAX = 2, ++}; ++ ++enum gre_conntrack { ++ GRE_CT_UNREPLIED = 0, ++ GRE_CT_REPLIED = 1, ++ GRE_CT_MAX = 2, ++}; ++ ++enum { ++ XFRM_POLICY_IN = 0, ++ XFRM_POLICY_OUT = 1, ++ XFRM_POLICY_FWD = 2, ++ XFRM_POLICY_MASK = 3, ++ XFRM_POLICY_MAX = 3, ++}; ++ ++enum netns_bpf_attach_type { ++ NETNS_BPF_INVALID = 4294967295, ++ NETNS_BPF_FLOW_DISSECTOR = 0, ++ NETNS_BPF_SK_LOOKUP = 1, ++ MAX_NETNS_BPF_ATTACH_TYPE = 2, ++}; ++ ++enum skb_ext_id { ++ SKB_EXT_BRIDGE_NF = 0, ++ SKB_EXT_SEC_PATH = 1, ++ SKB_EXT_NUM = 2, ++}; ++ ++enum audit_ntp_type { ++ AUDIT_NTP_OFFSET = 0, ++ AUDIT_NTP_FREQ = 1, ++ AUDIT_NTP_STATUS = 2, ++ AUDIT_NTP_TAI = 3, ++ AUDIT_NTP_TICK = 4, ++ AUDIT_NTP_ADJUST = 5, ++ AUDIT_NTP_NVALS = 6, ++}; ++ ++typedef long int (*sys_call_ptr_t)(const struct pt_regs *); ++ ++struct io_bitmap { ++ u64 sequence; ++ refcount_t refcnt; ++ unsigned int max; ++ long unsigned int bitmap[1024]; ++}; ++ ++enum { ++ EI_ETYPE_NONE = 0, ++ EI_ETYPE_NULL = 1, ++ EI_ETYPE_ERRNO = 2, ++ EI_ETYPE_ERRNO_NULL = 3, ++ EI_ETYPE_TRUE = 4, ++}; ++ ++struct syscall_metadata { ++ const char *name; ++ int syscall_nr; ++ int nb_args; ++ const char **types; ++ const char **args; ++ struct list_head enter_fields; ++ struct trace_event_call *enter_event; ++ struct trace_event_call *exit_event; ++}; ++ ++struct alt_instr { ++ s32 instr_offset; ++ s32 repl_offset; ++ u16 cpuid; ++ u8 instrlen; ++ u8 replacementlen; ++ u8 padlen; ++} __attribute__((packed)); ++ ++struct cpuinfo_x86 { ++ __u8 x86; ++ __u8 x86_vendor; ++ __u8 x86_model; ++ __u8 x86_stepping; ++ int x86_tlbsize; ++ __u32 vmx_capability[3]; ++ __u8 x86_virt_bits; ++ __u8 x86_phys_bits; ++ __u8 x86_coreid_bits; ++ __u8 cu_id; ++ __u32 extended_cpuid_level; ++ int cpuid_level; ++ union { ++ __u32 x86_capability[20]; ++ long unsigned int x86_capability_alignment; ++ }; ++ char x86_vendor_id[16]; ++ char x86_model_id[64]; ++ unsigned int x86_cache_size; ++ int x86_cache_alignment; ++ int x86_cache_max_rmid; ++ int x86_cache_occ_scale; ++ int x86_cache_mbm_width_offset; ++ int x86_power; ++ long unsigned int loops_per_jiffy; ++ u16 x86_max_cores; ++ u16 apicid; ++ u16 initial_apicid; ++ u16 x86_clflush_size; ++ u16 booted_cores; ++ u16 phys_proc_id; ++ u16 logical_proc_id; ++ u16 cpu_core_id; ++ u16 cpu_die_id; ++ u16 logical_die_id; ++ u16 cpu_index; ++ u32 microcode; ++ u8 x86_cache_bits; ++ unsigned int initialized: 1; ++}; ++ ++struct timens_offset { ++ s64 sec; ++ u64 nsec; ++}; ++ ++enum vm_fault_reason { ++ VM_FAULT_OOM = 1, ++ VM_FAULT_SIGBUS = 2, ++ VM_FAULT_MAJOR = 4, ++ VM_FAULT_WRITE = 8, ++ VM_FAULT_HWPOISON = 16, ++ VM_FAULT_HWPOISON_LARGE = 32, ++ VM_FAULT_SIGSEGV = 64, ++ VM_FAULT_NOPAGE = 256, ++ VM_FAULT_LOCKED = 512, ++ VM_FAULT_RETRY = 1024, ++ VM_FAULT_FALLBACK = 2048, ++ VM_FAULT_DONE_COW = 4096, ++ VM_FAULT_NEEDDSYNC = 8192, ++ VM_FAULT_HINDEX_MASK = 983040, ++}; ++ ++struct vm_special_mapping { ++ const char *name; ++ struct page **pages; ++ vm_fault_t (*fault)(const struct vm_special_mapping *, struct vm_area_struct *, struct vm_fault *); ++ int (*mremap)(const struct vm_special_mapping *, struct vm_area_struct *); ++}; ++ ++struct timens_offsets { ++ struct timespec64 monotonic; ++ struct timespec64 boottime; ++}; ++ ++struct time_namespace { ++ struct kref kref; ++ struct user_namespace *user_ns; ++ struct ucounts *ucounts; ++ struct ns_common ns; ++ struct timens_offsets offsets; ++ struct page *vvar_page; ++ bool frozen_offsets; ++}; ++ ++struct pvclock_vcpu_time_info { ++ u32 version; ++ u32 pad0; ++ u64 tsc_timestamp; ++ u64 system_time; ++ u32 tsc_to_system_mul; ++ s8 tsc_shift; ++ u8 flags; ++ u8 pad[2]; ++}; ++ ++struct pvclock_vsyscall_time_info { ++ struct pvclock_vcpu_time_info pvti; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++enum vdso_clock_mode { ++ VDSO_CLOCKMODE_NONE = 0, ++ VDSO_CLOCKMODE_TSC = 1, ++ VDSO_CLOCKMODE_PVCLOCK = 2, ++ VDSO_CLOCKMODE_HVCLOCK = 3, ++ VDSO_CLOCKMODE_MAX = 4, ++ VDSO_CLOCKMODE_TIMENS = 2147483647, ++}; ++ ++struct arch_vdso_data {}; ++ ++struct vdso_timestamp { ++ u64 sec; ++ u64 nsec; ++}; ++ ++struct vdso_data { ++ u32 seq; ++ s32 clock_mode; ++ u64 cycle_last; ++ u64 mask; ++ u32 mult; ++ u32 shift; ++ union { ++ struct vdso_timestamp basetime[12]; ++ struct timens_offset offset[12]; ++ }; ++ s32 tz_minuteswest; ++ s32 tz_dsttime; ++ u32 hrtimer_res; ++ u16 vdso_fix; ++ u16 vdso_shift; ++ struct arch_vdso_data arch_data; ++}; ++ ++struct ms_hyperv_tsc_page { ++ volatile u32 tsc_sequence; ++ u32 reserved1; ++ volatile u64 tsc_scale; ++ volatile s64 tsc_offset; ++}; ++ ++enum { ++ TASKSTATS_CMD_UNSPEC = 0, ++ TASKSTATS_CMD_GET = 1, ++ TASKSTATS_CMD_NEW = 2, ++ __TASKSTATS_CMD_MAX = 3, ++}; ++ ++enum { ++ HI_SOFTIRQ = 0, ++ TIMER_SOFTIRQ = 1, ++ NET_TX_SOFTIRQ = 2, ++ NET_RX_SOFTIRQ = 3, ++ BLOCK_SOFTIRQ = 4, ++ IRQ_POLL_SOFTIRQ = 5, ++ TASKLET_SOFTIRQ = 6, ++ SCHED_SOFTIRQ = 7, ++ HRTIMER_SOFTIRQ = 8, ++ RCU_SOFTIRQ = 9, ++ NR_SOFTIRQS = 10, ++}; ++ ++enum cpu_usage_stat { ++ CPUTIME_USER = 0, ++ CPUTIME_NICE = 1, ++ CPUTIME_SYSTEM = 2, ++ CPUTIME_SOFTIRQ = 3, ++ CPUTIME_IRQ = 4, ++ CPUTIME_IDLE = 5, ++ CPUTIME_IOWAIT = 6, ++ CPUTIME_STEAL = 7, ++ CPUTIME_GUEST = 8, ++ CPUTIME_GUEST_NICE = 9, ++ NR_STATS = 10, ++}; ++ ++enum bpf_type_flag { ++ PTR_MAYBE_NULL = 256, ++ MEM_RDONLY = 512, ++ MEM_ALLOC = 1024, ++ __BPF_TYPE_LAST_FLAG = 1024, ++}; ++ ++enum bpf_arg_type { ++ ARG_DONTCARE = 0, ++ ARG_CONST_MAP_PTR = 1, ++ ARG_PTR_TO_MAP_KEY = 2, ++ ARG_PTR_TO_MAP_VALUE = 3, ++ ARG_PTR_TO_UNINIT_MAP_VALUE = 4, ++ ARG_PTR_TO_MEM = 5, ++ ARG_PTR_TO_UNINIT_MEM = 6, ++ ARG_CONST_SIZE = 7, ++ ARG_CONST_SIZE_OR_ZERO = 8, ++ ARG_PTR_TO_CTX = 9, ++ ARG_ANYTHING = 10, ++ ARG_PTR_TO_SPIN_LOCK = 11, ++ ARG_PTR_TO_SOCK_COMMON = 12, ++ ARG_PTR_TO_INT = 13, ++ ARG_PTR_TO_LONG = 14, ++ ARG_PTR_TO_SOCKET = 15, ++ ARG_PTR_TO_BTF_ID = 16, ++ ARG_PTR_TO_ALLOC_MEM = 17, ++ ARG_CONST_ALLOC_SIZE_OR_ZERO = 18, ++ ARG_PTR_TO_BTF_ID_SOCK_COMMON = 19, ++ ARG_PTR_TO_PERCPU_BTF_ID = 20, ++ __BPF_ARG_TYPE_MAX = 21, ++ ARG_PTR_TO_MAP_VALUE_OR_NULL = 259, ++ ARG_PTR_TO_MEM_OR_NULL = 261, ++ ARG_PTR_TO_CTX_OR_NULL = 265, ++ ARG_PTR_TO_SOCKET_OR_NULL = 271, ++ ARG_PTR_TO_ALLOC_MEM_OR_NULL = 273, ++ __BPF_ARG_TYPE_LIMIT = 2047, ++}; ++ ++enum bpf_return_type { ++ RET_INTEGER = 0, ++ RET_VOID = 1, ++ RET_PTR_TO_MAP_VALUE = 2, ++ RET_PTR_TO_SOCKET = 3, ++ RET_PTR_TO_TCP_SOCK = 4, ++ RET_PTR_TO_SOCK_COMMON = 5, ++ RET_PTR_TO_ALLOC_MEM = 6, ++ RET_PTR_TO_MEM_OR_BTF_ID = 7, ++ RET_PTR_TO_BTF_ID = 8, ++ __BPF_RET_TYPE_MAX = 9, ++ RET_PTR_TO_MAP_VALUE_OR_NULL = 258, ++ RET_PTR_TO_SOCKET_OR_NULL = 259, ++ RET_PTR_TO_TCP_SOCK_OR_NULL = 260, ++ RET_PTR_TO_SOCK_COMMON_OR_NULL = 261, ++ RET_PTR_TO_ALLOC_MEM_OR_NULL = 1286, ++ RET_PTR_TO_BTF_ID_OR_NULL = 264, ++ __BPF_RET_TYPE_LIMIT = 2047, ++}; ++ ++enum bpf_cgroup_storage_type { ++ BPF_CGROUP_STORAGE_SHARED = 0, ++ BPF_CGROUP_STORAGE_PERCPU = 1, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_1 = 2, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_2 = 3, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_3 = 4, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_4 = 5, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_5 = 6, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_6 = 7, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_7 = 8, ++ BPF_CGROUP_STORAGE_KABI_RESERVE_8 = 9, ++ __BPF_CGROUP_STORAGE_MAX = 10, ++}; ++ ++enum bpf_tramp_prog_type { ++ BPF_TRAMP_FENTRY = 0, ++ BPF_TRAMP_FEXIT = 1, ++ BPF_TRAMP_MODIFY_RETURN = 2, ++ BPF_TRAMP_MAX = 3, ++ BPF_TRAMP_REPLACE = 4, ++}; ++ ++enum cgroup_bpf_attach_type { ++ CGROUP_BPF_ATTACH_TYPE_INVALID = 4294967295, ++ CGROUP_INET_INGRESS = 0, ++ CGROUP_INET_EGRESS = 1, ++ CGROUP_INET_SOCK_CREATE = 2, ++ CGROUP_SOCK_OPS = 3, ++ CGROUP_DEVICE = 4, ++ CGROUP_INET4_BIND = 5, ++ CGROUP_INET6_BIND = 6, ++ CGROUP_INET4_CONNECT = 7, ++ CGROUP_INET6_CONNECT = 8, ++ CGROUP_INET4_POST_BIND = 9, ++ CGROUP_INET6_POST_BIND = 10, ++ CGROUP_UDP4_SENDMSG = 11, ++ CGROUP_UDP6_SENDMSG = 12, ++ CGROUP_SYSCTL = 13, ++ CGROUP_UDP4_RECVMSG = 14, ++ CGROUP_UDP6_RECVMSG = 15, ++ CGROUP_GETSOCKOPT = 16, ++ CGROUP_SETSOCKOPT = 17, ++ CGROUP_INET4_GETPEERNAME = 18, ++ CGROUP_INET6_GETPEERNAME = 19, ++ CGROUP_INET4_GETSOCKNAME = 20, ++ CGROUP_INET6_GETSOCKNAME = 21, ++ CGROUP_INET_SOCK_RELEASE = 22, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_1 = 23, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_2 = 24, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_3 = 25, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_4 = 26, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_5 = 27, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_6 = 28, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_7 = 29, ++ CGROUP_ATTACH_TYPE_KABI_RESERVE_8 = 30, ++ MAX_CGROUP_BPF_ATTACH_TYPE = 31, ++}; ++ ++enum psi_task_count { ++ NR_IOWAIT = 0, ++ NR_MEMSTALL = 1, ++ NR_RUNNING = 2, ++ NR_ONCPU = 3, ++ NR_MEMSTALL_RUNNING = 4, ++ NR_PSI_TASK_COUNTS = 5, ++}; ++ ++enum psi_states { ++ PSI_IO_SOME = 0, ++ PSI_IO_FULL = 1, ++ PSI_MEM_SOME = 2, ++ PSI_MEM_FULL = 3, ++ PSI_CPU_SOME = 4, ++ PSI_CPU_FULL = 5, ++ PSI_NONIDLE = 6, ++ NR_PSI_STATES = 7, ++}; ++ ++enum psi_aggregators { ++ PSI_AVGS = 0, ++ PSI_POLL = 1, ++ NR_PSI_AGGREGATORS = 2, ++}; ++ ++enum cgroup_subsys_id { ++ cpuset_cgrp_id = 0, ++ cpu_cgrp_id = 1, ++ cpuacct_cgrp_id = 2, ++ io_cgrp_id = 3, ++ memory_cgrp_id = 4, ++ devices_cgrp_id = 5, ++ freezer_cgrp_id = 6, ++ net_cls_cgrp_id = 7, ++ perf_event_cgrp_id = 8, ++ net_prio_cgrp_id = 9, ++ hugetlb_cgrp_id = 10, ++ pids_cgrp_id = 11, ++ rdma_cgrp_id = 12, ++ files_cgrp_id = 13, ++ CGROUP_SUBSYS_COUNT = 14, ++}; ++ ++struct vdso_exception_table_entry { ++ int insn; ++ int fixup; ++}; ++ ++enum x86_pf_error_code { ++ X86_PF_PROT = 1, ++ X86_PF_WRITE = 2, ++ X86_PF_USER = 4, ++ X86_PF_RSVD = 8, ++ X86_PF_INSTR = 16, ++ X86_PF_PK = 32, ++ X86_PF_SGX = 32768, ++}; ++ ++struct trace_event_raw_emulate_vsyscall { ++ struct trace_entry ent; ++ int nr; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_emulate_vsyscall {}; ++ ++typedef void (*btf_trace_emulate_vsyscall)(void *, int); ++ ++enum { ++ EMULATE = 0, ++ XONLY = 1, ++ NONE = 2, ++}; ++ ++enum perf_type_id { ++ PERF_TYPE_HARDWARE = 0, ++ PERF_TYPE_SOFTWARE = 1, ++ PERF_TYPE_TRACEPOINT = 2, ++ PERF_TYPE_HW_CACHE = 3, ++ PERF_TYPE_RAW = 4, ++ PERF_TYPE_BREAKPOINT = 5, ++ PERF_TYPE_MAX = 6, ++}; ++ ++enum perf_hw_id { ++ PERF_COUNT_HW_CPU_CYCLES = 0, ++ PERF_COUNT_HW_INSTRUCTIONS = 1, ++ PERF_COUNT_HW_CACHE_REFERENCES = 2, ++ PERF_COUNT_HW_CACHE_MISSES = 3, ++ PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4, ++ PERF_COUNT_HW_BRANCH_MISSES = 5, ++ PERF_COUNT_HW_BUS_CYCLES = 6, ++ PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7, ++ PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8, ++ PERF_COUNT_HW_REF_CPU_CYCLES = 9, ++ PERF_COUNT_HW_MAX = 10, ++}; ++ ++enum perf_hw_cache_id { ++ PERF_COUNT_HW_CACHE_L1D = 0, ++ PERF_COUNT_HW_CACHE_L1I = 1, ++ PERF_COUNT_HW_CACHE_LL = 2, ++ PERF_COUNT_HW_CACHE_DTLB = 3, ++ PERF_COUNT_HW_CACHE_ITLB = 4, ++ PERF_COUNT_HW_CACHE_BPU = 5, ++ PERF_COUNT_HW_CACHE_NODE = 6, ++ PERF_COUNT_HW_CACHE_MAX = 7, ++}; ++ ++enum perf_hw_cache_op_id { ++ PERF_COUNT_HW_CACHE_OP_READ = 0, ++ PERF_COUNT_HW_CACHE_OP_WRITE = 1, ++ PERF_COUNT_HW_CACHE_OP_PREFETCH = 2, ++ PERF_COUNT_HW_CACHE_OP_MAX = 3, ++}; ++ ++enum perf_hw_cache_op_result_id { ++ PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0, ++ PERF_COUNT_HW_CACHE_RESULT_MISS = 1, ++ PERF_COUNT_HW_CACHE_RESULT_MAX = 2, ++}; ++ ++enum perf_event_sample_format { ++ PERF_SAMPLE_IP = 1, ++ PERF_SAMPLE_TID = 2, ++ PERF_SAMPLE_TIME = 4, ++ PERF_SAMPLE_ADDR = 8, ++ PERF_SAMPLE_READ = 16, ++ PERF_SAMPLE_CALLCHAIN = 32, ++ PERF_SAMPLE_ID = 64, ++ PERF_SAMPLE_CPU = 128, ++ PERF_SAMPLE_PERIOD = 256, ++ PERF_SAMPLE_STREAM_ID = 512, ++ PERF_SAMPLE_RAW = 1024, ++ PERF_SAMPLE_BRANCH_STACK = 2048, ++ PERF_SAMPLE_REGS_USER = 4096, ++ PERF_SAMPLE_STACK_USER = 8192, ++ PERF_SAMPLE_WEIGHT = 16384, ++ PERF_SAMPLE_DATA_SRC = 32768, ++ PERF_SAMPLE_IDENTIFIER = 65536, ++ PERF_SAMPLE_TRANSACTION = 131072, ++ PERF_SAMPLE_REGS_INTR = 262144, ++ PERF_SAMPLE_PHYS_ADDR = 524288, ++ PERF_SAMPLE_AUX = 1048576, ++ PERF_SAMPLE_CGROUP = 2097152, ++ PERF_SAMPLE_MAX = 4194304, ++ __PERF_SAMPLE_CALLCHAIN_EARLY = 0, ++}; ++ ++enum perf_branch_sample_type { ++ PERF_SAMPLE_BRANCH_USER = 1, ++ PERF_SAMPLE_BRANCH_KERNEL = 2, ++ PERF_SAMPLE_BRANCH_HV = 4, ++ PERF_SAMPLE_BRANCH_ANY = 8, ++ PERF_SAMPLE_BRANCH_ANY_CALL = 16, ++ PERF_SAMPLE_BRANCH_ANY_RETURN = 32, ++ PERF_SAMPLE_BRANCH_IND_CALL = 64, ++ PERF_SAMPLE_BRANCH_ABORT_TX = 128, ++ PERF_SAMPLE_BRANCH_IN_TX = 256, ++ PERF_SAMPLE_BRANCH_NO_TX = 512, ++ PERF_SAMPLE_BRANCH_COND = 1024, ++ PERF_SAMPLE_BRANCH_CALL_STACK = 2048, ++ PERF_SAMPLE_BRANCH_IND_JUMP = 4096, ++ PERF_SAMPLE_BRANCH_CALL = 8192, ++ PERF_SAMPLE_BRANCH_NO_FLAGS = 16384, ++ PERF_SAMPLE_BRANCH_NO_CYCLES = 32768, ++ PERF_SAMPLE_BRANCH_TYPE_SAVE = 65536, ++ PERF_SAMPLE_BRANCH_HW_INDEX = 131072, ++ PERF_SAMPLE_BRANCH_MAX = 262144, ++}; ++ ++struct perf_event_mmap_page { ++ __u32 version; ++ __u32 compat_version; ++ __u32 lock; ++ __u32 index; ++ __s64 offset; ++ __u64 time_enabled; ++ __u64 time_running; ++ union { ++ __u64 capabilities; ++ struct { ++ __u64 cap_bit0: 1; ++ __u64 cap_bit0_is_deprecated: 1; ++ __u64 cap_user_rdpmc: 1; ++ __u64 cap_user_time: 1; ++ __u64 cap_user_time_zero: 1; ++ __u64 cap_user_time_short: 1; ++ __u64 cap_____res: 58; ++ }; ++ }; ++ __u16 pmc_width; ++ __u16 time_shift; ++ __u32 time_mult; ++ __u64 time_offset; ++ __u64 time_zero; ++ __u32 size; ++ __u32 __reserved_1; ++ __u64 time_cycles; ++ __u64 time_mask; ++ __u8 __reserved[928]; ++ __u64 data_head; ++ __u64 data_tail; ++ __u64 data_offset; ++ __u64 data_size; ++ __u64 aux_head; ++ __u64 aux_tail; ++ __u64 aux_offset; ++ __u64 aux_size; ++}; ++ ++struct ldt_struct { ++ struct desc_struct *entries; ++ unsigned int nr_entries; ++ int slot; ++}; ++ ++struct physid_mask { ++ long unsigned int mask[512]; ++}; ++ ++typedef struct physid_mask physid_mask_t; ++ ++struct x86_pmu_capability { ++ int version; ++ int num_counters_gp; ++ int num_counters_fixed; ++ int bit_width_gp; ++ int bit_width_fixed; ++ unsigned int events_mask; ++ int events_mask_len; +}; + +struct debug_store { @@ -6062,19 +16322,204 @@ index 0000000..bcb9d76 + long: 64; +}; + -+struct debug_store_buffers { -+ char bts_buffer[65536]; -+ char pebs_buffer[65536]; ++enum stack_type { ++ STACK_TYPE_UNKNOWN = 0, ++ STACK_TYPE_TASK = 1, ++ STACK_TYPE_IRQ = 2, ++ STACK_TYPE_SOFTIRQ = 3, ++ STACK_TYPE_ENTRY = 4, ++ STACK_TYPE_EXCEPTION = 5, ++ STACK_TYPE_EXCEPTION_LAST = 10, +}; + -+struct cpu_entry_area { -+ char gdt[4096]; -+ struct entry_stack_page entry_stack_page; -+ struct tss_struct tss; -+ char entry_trampoline[4096]; -+ char exception_stacks[20480]; -+ struct debug_store cpu_debug_store; -+ struct debug_store_buffers cpu_debug_buffers; ++struct stack_info { ++ enum stack_type type; ++ long unsigned int *begin; ++ long unsigned int *end; ++ long unsigned int *next_sp; ++}; ++ ++struct stack_frame { ++ struct stack_frame *next_frame; ++ long unsigned int return_address; ++}; ++ ++struct stack_frame_ia32 { ++ u32 next_frame; ++ u32 return_address; ++}; ++ ++struct perf_guest_switch_msr { ++ unsigned int msr; ++ u64 host; ++ u64 guest; ++}; ++ ++struct perf_guest_info_callbacks { ++ int (*is_in_guest)(); ++ int (*is_user_mode)(); ++ long unsigned int (*get_guest_ip)(); ++ void (*handle_intel_pt_intr)(); ++}; ++ ++struct device_attribute { ++ struct attribute attr; ++ ssize_t (*show)(struct device *, struct device_attribute *, char *); ++ ssize_t (*store)(struct device *, struct device_attribute *, const char *, size_t); ++}; ++ ++enum perf_event_x86_regs { ++ PERF_REG_X86_AX = 0, ++ PERF_REG_X86_BX = 1, ++ PERF_REG_X86_CX = 2, ++ PERF_REG_X86_DX = 3, ++ PERF_REG_X86_SI = 4, ++ PERF_REG_X86_DI = 5, ++ PERF_REG_X86_BP = 6, ++ PERF_REG_X86_SP = 7, ++ PERF_REG_X86_IP = 8, ++ PERF_REG_X86_FLAGS = 9, ++ PERF_REG_X86_CS = 10, ++ PERF_REG_X86_SS = 11, ++ PERF_REG_X86_DS = 12, ++ PERF_REG_X86_ES = 13, ++ PERF_REG_X86_FS = 14, ++ PERF_REG_X86_GS = 15, ++ PERF_REG_X86_R8 = 16, ++ PERF_REG_X86_R9 = 17, ++ PERF_REG_X86_R10 = 18, ++ PERF_REG_X86_R11 = 19, ++ PERF_REG_X86_R12 = 20, ++ PERF_REG_X86_R13 = 21, ++ PERF_REG_X86_R14 = 22, ++ PERF_REG_X86_R15 = 23, ++ PERF_REG_X86_32_MAX = 16, ++ PERF_REG_X86_64_MAX = 24, ++ PERF_REG_X86_XMM0 = 32, ++ PERF_REG_X86_XMM1 = 34, ++ PERF_REG_X86_XMM2 = 36, ++ PERF_REG_X86_XMM3 = 38, ++ PERF_REG_X86_XMM4 = 40, ++ PERF_REG_X86_XMM5 = 42, ++ PERF_REG_X86_XMM6 = 44, ++ PERF_REG_X86_XMM7 = 46, ++ PERF_REG_X86_XMM8 = 48, ++ PERF_REG_X86_XMM9 = 50, ++ PERF_REG_X86_XMM10 = 52, ++ PERF_REG_X86_XMM11 = 54, ++ PERF_REG_X86_XMM12 = 56, ++ PERF_REG_X86_XMM13 = 58, ++ PERF_REG_X86_XMM14 = 60, ++ PERF_REG_X86_XMM15 = 62, ++ PERF_REG_X86_XMM_MAX = 64, ++}; ++ ++typedef struct { ++ u16 __softirq_pending; ++ u8 kvm_cpu_l1tf_flush_l1d; ++ unsigned int __nmi_count; ++ unsigned int apic_timer_irqs; ++ unsigned int irq_spurious_count; ++ unsigned int icr_read_retry_count; ++ unsigned int kvm_posted_intr_ipis; ++ unsigned int kvm_posted_intr_wakeup_ipis; ++ unsigned int kvm_posted_intr_nested_ipis; ++ unsigned int x86_platform_ipis; ++ unsigned int apic_perf_irqs; ++ unsigned int apic_irq_work_irqs; ++ unsigned int irq_resched_count; ++ unsigned int irq_call_count; ++ unsigned int irq_tlb_count; ++ unsigned int irq_thermal_count; ++ unsigned int irq_threshold_count; ++ unsigned int irq_deferred_error_count; ++ unsigned int irq_hv_callback_count; ++ unsigned int irq_hv_reenlightenment_count; ++ unsigned int hyperv_stimer0_count; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++} irq_cpustat_t; ++ ++struct perf_callchain_entry_ctx { ++ struct perf_callchain_entry *entry; ++ u32 max_stack; ++ u32 nr; ++ short int contexts; ++ bool contexts_maxed; ++}; ++ ++struct perf_pmu_events_attr { ++ struct device_attribute attr; ++ u64 id; ++ const char *event_str; ++}; ++ ++struct perf_pmu_events_ht_attr { ++ struct device_attribute attr; ++ u64 id; ++ const char *event_str_ht; ++ const char *event_str_noht; ++}; ++ ++struct apic { ++ void (*eoi_write)(u32, u32); ++ void (*native_eoi_write)(u32, u32); ++ void (*write)(u32, u32); ++ u32 (*read)(u32); ++ void (*wait_icr_idle)(); ++ u32 (*safe_wait_icr_idle)(); ++ void (*send_IPI)(int, int); ++ void (*send_IPI_mask)(const struct cpumask *, int); ++ void (*send_IPI_mask_allbutself)(const struct cpumask *, int); ++ void (*send_IPI_allbutself)(int); ++ void (*send_IPI_all)(int); ++ void (*send_IPI_self)(int); ++ u32 dest_logical; ++ u32 disable_esr; ++ u32 irq_delivery_mode; ++ u32 irq_dest_mode; ++ u32 (*calc_dest_apicid)(unsigned int); ++ u64 (*icr_read)(); ++ void (*icr_write)(u32, u32); ++ int (*probe)(); ++ int (*acpi_madt_oem_check)(char *, char *); ++ int (*apic_id_valid)(u32); ++ int (*apic_id_registered)(); ++ bool (*check_apicid_used)(physid_mask_t *, int); ++ void (*init_apic_ldr)(); ++ void (*ioapic_phys_id_map)(physid_mask_t *, physid_mask_t *); ++ void (*setup_apic_routing)(); ++ int (*cpu_present_to_apicid)(int); ++ void (*apicid_to_cpu_present)(int, physid_mask_t *); ++ int (*check_phys_apicid_present)(int); ++ int (*phys_pkg_id)(int, int); ++ u32 (*get_apic_id)(long unsigned int); ++ u32 (*set_apic_id)(unsigned int); ++ int (*wakeup_secondary_cpu)(int, long unsigned int); ++ void (*inquire_remote_apic)(int); ++ char *name; ++}; ++ ++enum { ++ NMI_LOCAL = 0, ++ NMI_UNKNOWN = 1, ++ NMI_SERR = 2, ++ NMI_IO_CHECK = 3, ++ NMI_MAX = 4, ++}; ++ ++typedef int (*nmi_handler_t)(unsigned int, struct pt_regs *); ++ ++struct nmiaction { ++ struct list_head list; ++ nmi_handler_t handler; ++ u64 max_duration; ++ long unsigned int flags; ++ const char *name; +}; + +struct gdt_page { @@ -6577,12030 +17022,6 @@ index 0000000..bcb9d76 + long: 64; +}; + -+struct tlb_context { -+ u64 ctx_id; -+ u64 tlb_gen; -+}; -+ -+struct tlb_state { -+ struct mm_struct *loaded_mm; -+ union { -+ struct mm_struct *last_user_mm; -+ long unsigned int last_user_mm_ibpb; -+ }; -+ u16 loaded_mm_asid; -+ u16 next_asid; -+ bool is_lazy; -+ bool invalidate_other; -+ short unsigned int user_pcid_flush_mask; -+ long unsigned int cr4; -+ struct tlb_context ctxs[6]; -+}; -+ -+struct exception_table_entry { -+ int insn; -+ int fixup; -+ int handler; -+}; -+ -+enum e820_type { -+ E820_TYPE_RAM = 1, -+ E820_TYPE_RESERVED = 2, -+ E820_TYPE_ACPI = 3, -+ E820_TYPE_NVS = 4, -+ E820_TYPE_UNUSABLE = 5, -+ E820_TYPE_PMEM = 7, -+ E820_TYPE_PRAM = 12, -+ E820_TYPE_RESERVED_KERN = 128, -+}; -+ -+struct e820_entry { -+ u64 addr; -+ u64 size; -+ enum e820_type type; -+} __attribute__((packed)); -+ -+struct e820_table { -+ __u32 nr_entries; -+ struct e820_entry entries[3200]; -+} __attribute__((packed)); -+ -+struct boot_params_to_save { -+ unsigned int start; -+ unsigned int len; -+}; -+ -+struct idr { -+ struct radix_tree_root idr_rt; -+ unsigned int idr_base; -+ unsigned int idr_next; -+}; -+ -+struct ida_bitmap { -+ long unsigned int bitmap[16]; -+}; -+ -+struct kernfs_root; -+ -+struct kernfs_elem_dir { -+ long unsigned int subdirs; -+ struct rb_root children; -+ struct kernfs_root *root; -+}; -+ -+struct kernfs_syscall_ops; -+ -+struct kernfs_root { -+ struct kernfs_node *kn; -+ unsigned int flags; -+ struct idr ino_idr; -+ u32 last_ino; -+ u32 next_generation; -+ struct kernfs_syscall_ops *syscall_ops; -+ struct list_head supers; -+ wait_queue_head_t deactivate_waitq; -+}; -+ -+struct kernfs_elem_symlink { -+ struct kernfs_node *target_kn; -+}; -+ -+struct kernfs_ops; -+ -+struct kernfs_open_node; -+ -+struct kernfs_elem_attr { -+ const struct kernfs_ops *ops; -+ struct kernfs_open_node *open; -+ loff_t size; -+ struct kernfs_node *notify_next; -+}; -+ -+union kernfs_node_id { -+ struct { -+ u32 ino; -+ u32 generation; -+ }; -+ u64 id; -+}; -+ -+struct kernfs_iattrs; -+ -+struct kernfs_node { -+ atomic_t count; -+ atomic_t active; -+ struct kernfs_node *parent; -+ const char *name; -+ struct rb_node rb; -+ const void *ns; -+ unsigned int hash; -+ union { -+ struct kernfs_elem_dir dir; -+ struct kernfs_elem_symlink symlink; -+ struct kernfs_elem_attr attr; -+ }; -+ void *priv; -+ union kernfs_node_id id; -+ short unsigned int flags; -+ umode_t mode; -+ struct kernfs_iattrs *iattr; -+}; -+ -+struct kernfs_open_file; -+ -+struct kernfs_ops { -+ int (*open)(struct kernfs_open_file *); -+ void (*release)(struct kernfs_open_file *); -+ int (*seq_show)(struct seq_file *, void *); -+ void * (*seq_start)(struct seq_file *, loff_t *); -+ void * (*seq_next)(struct seq_file *, void *, loff_t *); -+ void (*seq_stop)(struct seq_file *, void *); -+ ssize_t (*read)(struct kernfs_open_file *, char *, size_t, loff_t); -+ size_t atomic_write_len; -+ bool prealloc; -+ ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); -+ int (*mmap)(struct kernfs_open_file *, struct vm_area_struct *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct kernfs_syscall_ops { -+ int (*remount_fs)(struct kernfs_root *, int *, char *); -+ int (*show_options)(struct seq_file *, struct kernfs_root *); -+ int (*mkdir)(struct kernfs_node *, const char *, umode_t); -+ int (*rmdir)(struct kernfs_node *); -+ int (*rename)(struct kernfs_node *, struct kernfs_node *, const char *); -+ int (*show_path)(struct seq_file *, struct kernfs_node *, struct kernfs_root *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct kernfs_open_file { -+ struct kernfs_node *kn; -+ struct file *file; -+ struct seq_file *seq_file; -+ void *priv; -+ struct mutex mutex; -+ struct mutex prealloc_mutex; -+ int event; -+ struct list_head list; -+ char *prealloc_buf; -+ size_t atomic_write_len; -+ bool mmapped: 1; -+ bool released: 1; -+ const struct vm_operations_struct *vm_ops; -+}; -+ -+enum kobj_ns_type { -+ KOBJ_NS_TYPE_NONE = 0, -+ KOBJ_NS_TYPE_NET = 1, -+ KOBJ_NS_TYPES = 2, -+}; -+ -+struct sock; -+ -+struct kobj_ns_type_operations { -+ enum kobj_ns_type type; -+ bool (*current_may_mount)(); -+ void * (*grab_current_ns)(); -+ const void * (*netlink_ns)(struct sock *); -+ const void * (*initial_ns)(); -+ void (*drop_ns)(void *); -+}; -+ -+struct bin_attribute; -+ -+struct attribute_group { -+ const char *name; -+ umode_t (*is_visible)(struct kobject *, struct attribute *, int); -+ umode_t (*is_bin_visible)(struct kobject *, struct bin_attribute *, int); -+ struct attribute **attrs; -+ struct bin_attribute **bin_attrs; -+}; -+ -+struct bin_attribute { -+ struct attribute attr; -+ size_t size; -+ void *private; -+ ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); -+ ssize_t (*write)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); -+ int (*mmap)(struct file *, struct kobject *, struct bin_attribute *, struct vm_area_struct *); -+}; -+ -+struct sysfs_ops { -+ ssize_t (*show)(struct kobject *, struct attribute *, char *); -+ ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); -+}; -+ -+struct kset_uevent_ops; -+ -+struct kset { -+ struct list_head list; -+ spinlock_t list_lock; -+ struct kobject kobj; -+ const struct kset_uevent_ops *uevent_ops; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct kobj_type { -+ void (*release)(struct kobject *); -+ const struct sysfs_ops *sysfs_ops; -+ struct attribute **default_attrs; -+ const struct kobj_ns_type_operations * (*child_ns_type)(struct kobject *); -+ const void * (*namespace)(struct kobject *); -+ void (*get_ownership)(struct kobject *, kuid_t *, kgid_t *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct kobj_uevent_env { -+ char *argv[3]; -+ char *envp[32]; -+ int envp_idx; -+ char buf[2048]; -+ int buflen; -+}; -+ -+struct kset_uevent_ops { -+ int (* const filter)(struct kset *, struct kobject *); -+ const char * (* const name)(struct kset *, struct kobject *); -+ int (* const uevent)(struct kset *, struct kobject *, struct kobj_uevent_env *); -+}; -+ -+struct dev_pm_ops { -+ int (*prepare)(struct device *); -+ void (*complete)(struct device *); -+ int (*suspend)(struct device *); -+ int (*resume)(struct device *); -+ int (*freeze)(struct device *); -+ int (*thaw)(struct device *); -+ int (*poweroff)(struct device *); -+ int (*restore)(struct device *); -+ int (*suspend_late)(struct device *); -+ int (*resume_early)(struct device *); -+ int (*freeze_late)(struct device *); -+ int (*thaw_early)(struct device *); -+ int (*poweroff_late)(struct device *); -+ int (*restore_early)(struct device *); -+ int (*suspend_noirq)(struct device *); -+ int (*resume_noirq)(struct device *); -+ int (*freeze_noirq)(struct device *); -+ int (*thaw_noirq)(struct device *); -+ int (*poweroff_noirq)(struct device *); -+ int (*restore_noirq)(struct device *); -+ int (*runtime_suspend)(struct device *); -+ int (*runtime_resume)(struct device *); -+ int (*runtime_idle)(struct device *); -+}; -+ -+struct pm_domain_data; -+ -+struct pm_subsys_data { -+ spinlock_t lock; -+ unsigned int refcount; -+ struct list_head clock_list; -+ struct pm_domain_data *domain_data; -+}; -+ -+struct wakeup_source { -+ const char *name; -+ struct list_head entry; -+ spinlock_t lock; -+ struct wake_irq *wakeirq; -+ struct timer_list timer; -+ long unsigned int timer_expires; -+ ktime_t total_time; -+ ktime_t max_time; -+ ktime_t last_time; -+ ktime_t start_prevent_time; -+ ktime_t prevent_sleep_time; -+ long unsigned int event_count; -+ long unsigned int active_count; -+ long unsigned int relax_count; -+ long unsigned int expire_count; -+ long unsigned int wakeup_count; -+ bool active: 1; -+ bool autosleep_enabled: 1; -+}; -+ -+struct dev_pm_domain { -+ struct dev_pm_ops ops; -+ void (*detach)(struct device *, bool); -+ int (*activate)(struct device *); -+ void (*sync)(struct device *); -+ void (*dismiss)(struct device *); -+}; -+ -+struct ratelimit_state { -+ raw_spinlock_t lock; -+ int interval; -+ int burst; -+ int printed; -+ int missed; -+ long unsigned int begin; -+ long unsigned int flags; -+}; -+ -+typedef u64 dma_addr_t; -+ -+enum dma_data_direction { -+ DMA_BIDIRECTIONAL = 0, -+ DMA_TO_DEVICE = 1, -+ DMA_FROM_DEVICE = 2, -+ DMA_NONE = 3, -+}; -+ -+struct sg_table; -+ -+struct scatterlist; -+ -+struct dma_map_ops { -+ void * (*alloc)(struct device *, size_t, dma_addr_t *, gfp_t, long unsigned int); -+ void (*free)(struct device *, size_t, void *, dma_addr_t, long unsigned int); -+ int (*mmap)(struct device *, struct vm_area_struct *, void *, dma_addr_t, size_t, long unsigned int); -+ int (*get_sgtable)(struct device *, struct sg_table *, void *, dma_addr_t, size_t, long unsigned int); -+ dma_addr_t (*map_page)(struct device *, struct page *, long unsigned int, size_t, enum dma_data_direction, long unsigned int); -+ void (*unmap_page)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); -+ int (*map_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); -+ void (*unmap_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); -+ dma_addr_t (*map_resource)(struct device *, phys_addr_t, size_t, enum dma_data_direction, long unsigned int); -+ void (*unmap_resource)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); -+ void (*sync_single_for_cpu)(struct device *, dma_addr_t, size_t, enum dma_data_direction); -+ void (*sync_single_for_device)(struct device *, dma_addr_t, size_t, enum dma_data_direction); -+ void (*sync_sg_for_cpu)(struct device *, struct scatterlist *, int, enum dma_data_direction); -+ void (*sync_sg_for_device)(struct device *, struct scatterlist *, int, enum dma_data_direction); -+ void (*cache_sync)(struct device *, void *, size_t, enum dma_data_direction); -+ int (*mapping_error)(struct device *, dma_addr_t); -+ int (*dma_supported)(struct device *, u64); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+}; -+ -+struct iommu_ops; -+ -+struct subsys_private; -+ -+struct bus_type { -+ const char *name; -+ const char *dev_name; -+ struct device *dev_root; -+ const struct attribute_group **bus_groups; -+ const struct attribute_group **dev_groups; -+ const struct attribute_group **drv_groups; -+ int (*match)(struct device *, struct device_driver *); -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ int (*probe)(struct device *); -+ int (*remove)(struct device *); -+ void (*shutdown)(struct device *); -+ int (*online)(struct device *); -+ int (*offline)(struct device *); -+ int (*suspend)(struct device *, pm_message_t); -+ int (*resume)(struct device *); -+ int (*num_vf)(struct device *); -+ int (*dma_configure)(struct device *); -+ const struct dev_pm_ops *pm; -+ const struct iommu_ops *iommu_ops; -+ struct subsys_private *p; -+ struct lock_class_key lock_key; -+ bool need_parent_lock; -+}; -+ -+enum probe_type { -+ PROBE_DEFAULT_STRATEGY = 0, -+ PROBE_PREFER_ASYNCHRONOUS = 1, -+ PROBE_FORCE_SYNCHRONOUS = 2, -+}; -+ -+struct of_device_id; -+ -+struct acpi_device_id; -+ -+struct driver_private; -+ -+struct device_driver { -+ const char *name; -+ struct bus_type *bus; -+ struct module *owner; -+ const char *mod_name; -+ bool suppress_bind_attrs; -+ enum probe_type probe_type; -+ const struct of_device_id *of_match_table; -+ const struct acpi_device_id *acpi_match_table; -+ int (*probe)(struct device *); -+ int (*remove)(struct device *); -+ void (*shutdown)(struct device *); -+ int (*suspend)(struct device *, pm_message_t); -+ int (*resume)(struct device *); -+ const struct attribute_group **groups; -+ const struct dev_pm_ops *pm; -+ void (*coredump)(struct device *); -+ struct driver_private *p; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+enum iommu_cap { -+ IOMMU_CAP_CACHE_COHERENCY = 0, -+ IOMMU_CAP_INTR_REMAP = 1, -+ IOMMU_CAP_NOEXEC = 2, -+}; -+ -+enum iommu_attr { -+ DOMAIN_ATTR_GEOMETRY = 0, -+ DOMAIN_ATTR_PAGING = 1, -+ DOMAIN_ATTR_WINDOWS = 2, -+ DOMAIN_ATTR_FSL_PAMU_STASH = 3, -+ DOMAIN_ATTR_FSL_PAMU_ENABLE = 4, -+ DOMAIN_ATTR_FSL_PAMUV1 = 5, -+ DOMAIN_ATTR_NESTING = 6, -+ DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE = 7, -+ DOMAIN_ATTR_MAX = 8, -+}; -+ -+struct iommu_domain; -+ -+struct iommu_sva_param; -+ -+struct io_mm; -+ -+struct iommu_resv_region; -+ -+struct of_phandle_args; -+ -+struct pasid_table_config; -+ -+struct tlb_invalidate_info; -+ -+struct page_response_msg; -+ -+struct iommu_ops { -+ bool (*capable)(enum iommu_cap); -+ struct iommu_domain * (*domain_alloc)(unsigned int); -+ void (*domain_free)(struct iommu_domain *); -+ int (*attach_dev)(struct iommu_domain *, struct device *); -+ void (*detach_dev)(struct iommu_domain *, struct device *); -+ int (*sva_device_init)(struct device *, struct iommu_sva_param *); -+ void (*sva_device_shutdown)(struct device *, struct iommu_sva_param *); -+ struct io_mm * (*mm_alloc)(struct iommu_domain *, struct mm_struct *, long unsigned int); -+ void (*mm_free)(struct io_mm *); -+ int (*mm_attach)(struct iommu_domain *, struct device *, struct io_mm *, bool); -+ void (*mm_detach)(struct iommu_domain *, struct device *, struct io_mm *, bool); -+ void (*mm_invalidate)(struct iommu_domain *, struct device *, struct io_mm *, long unsigned int, size_t); -+ int (*map)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, int); -+ size_t (*unmap)(struct iommu_domain *, long unsigned int, size_t); -+ void (*flush_iotlb_all)(struct iommu_domain *); -+ void (*iotlb_range_add)(struct iommu_domain *, long unsigned int, size_t); -+ void (*iotlb_sync)(struct iommu_domain *); -+ phys_addr_t (*iova_to_phys)(struct iommu_domain *, dma_addr_t); -+ int (*add_device)(struct device *); -+ void (*remove_device)(struct device *); -+ struct iommu_group * (*device_group)(struct device *); -+ int (*domain_get_attr)(struct iommu_domain *, enum iommu_attr, void *); -+ int (*domain_set_attr)(struct iommu_domain *, enum iommu_attr, void *); -+ void (*get_resv_regions)(struct device *, struct list_head *); -+ void (*put_resv_regions)(struct device *, struct list_head *); -+ void (*apply_resv_region)(struct device *, struct iommu_domain *, struct iommu_resv_region *); -+ int (*domain_window_enable)(struct iommu_domain *, u32, phys_addr_t, u64, int); -+ void (*domain_window_disable)(struct iommu_domain *, u32); -+ int (*domain_set_windows)(struct iommu_domain *, u32); -+ u32 (*domain_get_windows)(struct iommu_domain *); -+ int (*of_xlate)(struct device *, struct of_phandle_args *); -+ bool (*is_attach_deferred)(struct iommu_domain *, struct device *); -+ int (*bind_pasid_table)(struct iommu_domain *, struct device *, struct pasid_table_config *); -+ void (*unbind_pasid_table)(struct iommu_domain *, struct device *); -+ int (*sva_invalidate)(struct iommu_domain *, struct device *, struct tlb_invalidate_info *); -+ int (*page_response)(struct device *, struct page_response_msg *); -+ long unsigned int pgsize_bitmap; -+}; -+ -+struct device_type { -+ const char *name; -+ const struct attribute_group **groups; -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *, kuid_t *, kgid_t *); -+ void (*release)(struct device *); -+ const struct dev_pm_ops *pm; -+}; -+ -+struct of_device_id { -+ char name[32]; -+ char type[32]; -+ char compatible[128]; -+ const void *data; -+}; -+ -+typedef long unsigned int kernel_ulong_t; -+ -+struct acpi_device_id { -+ __u8 id[9]; -+ kernel_ulong_t driver_data; -+ __u32 cls; -+ __u32 cls_msk; -+}; -+ -+struct class { -+ const char *name; -+ struct module *owner; -+ const struct attribute_group **class_groups; -+ const struct attribute_group **dev_groups; -+ struct kobject *dev_kobj; -+ int (*dev_uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *); -+ void (*class_release)(struct class *); -+ void (*dev_release)(struct device *); -+ int (*shutdown_pre)(struct device *); -+ const struct kobj_ns_type_operations *ns_type; -+ const void * (*namespace)(struct device *); -+ void (*get_ownership)(struct device *, kuid_t *, kgid_t *); -+ const struct dev_pm_ops *pm; -+ struct subsys_private *p; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct device_dma_parameters { -+ unsigned int max_segment_size; -+ long unsigned int segment_boundary_mask; -+}; -+ -+struct node { -+ struct device dev; -+ struct list_head access_list; -+ struct work_struct node_work; -+ struct list_head cache_attrs; -+ struct device *cache_dev; -+}; -+ -+enum cpuhp_smt_control { -+ CPU_SMT_ENABLED = 0, -+ CPU_SMT_DISABLED = 1, -+ CPU_SMT_FORCE_DISABLED = 2, -+ CPU_SMT_NOT_SUPPORTED = 3, -+}; -+ -+struct cpu_signature { -+ unsigned int sig; -+ unsigned int pf; -+ unsigned int rev; -+}; -+ -+struct ucode_cpu_info { -+ struct cpu_signature cpu_sig; -+ int valid; -+ void *mc; -+}; -+ -+typedef long unsigned int pto_T__; -+ -+struct kobject___2; -+ -+struct kobj_attribute___2; -+ -+struct atomic_notifier_head___2; -+ -+typedef s32 int32_t; -+ -+struct kernel_symbol { -+ int value_offset; -+ int name_offset; -+}; -+ -+typedef int (*initcall_t)(); -+ -+struct obs_kernel_param { -+ const char *str; -+ int (*setup_func)(char *); -+ int early; -+}; -+ -+struct _ddebug { -+ const char *modname; -+ const char *function; -+ const char *filename; -+ const char *format; -+ unsigned int lineno: 18; -+ unsigned int flags: 8; -+ union { -+ struct static_key_true dd_key_true; -+ struct static_key_false dd_key_false; -+ } key; -+}; -+ -+enum ftrace_dump_mode { -+ DUMP_NONE = 0, -+ DUMP_ALL = 1, -+ DUMP_ORIG = 2, -+}; -+ -+struct bug_entry { -+ int bug_addr_disp; -+ int file_disp; -+ short unsigned int line; -+ short unsigned int flags; -+}; -+ -+typedef s32 compat_time_t; -+ -+struct compat_timespec { -+ compat_time_t tv_sec; -+ s32 tv_nsec; -+}; -+ -+struct pollfd { -+ int fd; -+ short int events; -+ short int revents; -+}; -+ -+typedef const int tracepoint_ptr_t; -+ -+struct bpf_raw_event_map { -+ struct tracepoint *tp; -+ void *bpf_func; -+ u32 num_args; -+ u32 writable_size; -+ long: 64; -+}; -+ -+struct orc_entry { -+ s16 sp_offset; -+ s16 bp_offset; -+ unsigned int sp_reg: 4; -+ unsigned int bp_reg: 4; -+ unsigned int type: 2; -+ unsigned int end: 1; -+} __attribute__((packed)); -+ -+struct seq_operations___2 { -+ void * (*start)(struct seq_file *, loff_t *); -+ void (*stop)(struct seq_file *, void *); -+ void * (*next)(struct seq_file *, void *, loff_t *); -+ int (*show)(struct seq_file *, void *); -+}; -+ -+enum perf_event_state { -+ PERF_EVENT_STATE_DEAD = -4, -+ PERF_EVENT_STATE_EXIT = -3, -+ PERF_EVENT_STATE_ERROR = -2, -+ PERF_EVENT_STATE_OFF = -1, -+ PERF_EVENT_STATE_INACTIVE = 0, -+ PERF_EVENT_STATE_ACTIVE = 1, -+}; -+ -+typedef struct { -+ atomic_long_t a; -+} local_t; -+ -+typedef struct { -+ local_t a; -+} local64_t; -+ -+struct perf_event_attr { -+ __u32 type; -+ __u32 size; -+ __u64 config; -+ union { -+ __u64 sample_period; -+ __u64 sample_freq; -+ }; -+ __u64 sample_type; -+ __u64 read_format; -+ __u64 disabled: 1; -+ __u64 inherit: 1; -+ __u64 pinned: 1; -+ __u64 exclusive: 1; -+ __u64 exclude_user: 1; -+ __u64 exclude_kernel: 1; -+ __u64 exclude_hv: 1; -+ __u64 exclude_idle: 1; -+ __u64 mmap: 1; -+ __u64 comm: 1; -+ __u64 freq: 1; -+ __u64 inherit_stat: 1; -+ __u64 enable_on_exec: 1; -+ __u64 task: 1; -+ __u64 watermark: 1; -+ __u64 precise_ip: 2; -+ __u64 mmap_data: 1; -+ __u64 sample_id_all: 1; -+ __u64 exclude_host: 1; -+ __u64 exclude_guest: 1; -+ __u64 exclude_callchain_kernel: 1; -+ __u64 exclude_callchain_user: 1; -+ __u64 mmap2: 1; -+ __u64 comm_exec: 1; -+ __u64 use_clockid: 1; -+ __u64 context_switch: 1; -+ __u64 write_backward: 1; -+ __u64 namespaces: 1; -+ __u64 __reserved_1: 35; -+ union { -+ __u32 wakeup_events; -+ __u32 wakeup_watermark; -+ }; -+ __u32 bp_type; -+ union { -+ __u64 bp_addr; -+ __u64 kprobe_func; -+ __u64 uprobe_path; -+ __u64 config1; -+ }; -+ union { -+ __u64 bp_len; -+ __u64 kprobe_addr; -+ __u64 probe_offset; -+ __u64 config2; -+ }; -+ __u64 branch_sample_type; -+ __u64 sample_regs_user; -+ __u32 sample_stack_user; -+ __s32 clockid; -+ __u64 sample_regs_intr; -+ __u32 aux_watermark; -+ __u16 sample_max_stack; -+ __u16 __reserved_2; -+}; -+ -+struct hw_perf_event_extra { -+ u64 config; -+ unsigned int reg; -+ int alloc; -+ int idx; -+}; -+ -+struct arch_hw_breakpoint { -+ long unsigned int address; -+ long unsigned int mask; -+ u8 len; -+ u8 type; -+}; -+ -+struct hw_perf_event { -+ union { -+ struct { -+ u64 config; -+ u64 last_tag; -+ long unsigned int config_base; -+ long unsigned int event_base; -+ int event_base_rdpmc; -+ int idx; -+ int last_cpu; -+ int flags; -+ struct hw_perf_event_extra extra_reg; -+ struct hw_perf_event_extra branch_reg; -+ }; -+ struct { -+ struct hrtimer hrtimer; -+ }; -+ struct { -+ struct list_head tp_list; -+ }; -+ struct { -+ u64 pwr_acc; -+ u64 ptsc; -+ }; -+ struct { -+ struct arch_hw_breakpoint info; -+ struct list_head bp_list; -+ }; -+ struct { -+ u8 iommu_bank; -+ u8 iommu_cntr; -+ u16 padding; -+ u64 conf; -+ u64 conf1; -+ }; -+ }; -+ struct task_struct *target; -+ void *addr_filters; -+ long unsigned int addr_filters_gen; -+ int state; -+ local64_t prev_count; -+ u64 sample_period; -+ union { -+ struct { -+ u64 last_period; -+ local64_t period_left; -+ }; -+ struct { -+ u64 saved_metric; -+ u64 saved_slots; -+ }; -+ }; -+ u64 interrupts_seq; -+ u64 interrupts; -+ u64 freq_time_stamp; -+ u64 freq_count_stamp; -+}; -+ -+struct irq_work { -+ long unsigned int flags; -+ struct llist_node llnode; -+ void (*func)(struct irq_work *); -+}; -+ -+struct perf_addr_filters_head { -+ struct list_head list; -+ raw_spinlock_t lock; -+ unsigned int nr_file_filters; -+}; -+ -+struct perf_sample_data; -+ -+typedef void (*perf_overflow_handler_t)(struct perf_event *, struct perf_sample_data *, struct pt_regs *); -+ -+struct ftrace_ops; -+ -+typedef void (*ftrace_func_t)(long unsigned int, long unsigned int, struct ftrace_ops *, struct pt_regs *); -+ -+struct ftrace_hash; -+ -+struct ftrace_ops_hash { -+ struct ftrace_hash *notrace_hash; -+ struct ftrace_hash *filter_hash; -+ struct mutex regex_lock; -+}; -+ -+struct ftrace_ops { -+ ftrace_func_t func; -+ struct ftrace_ops *next; -+ long unsigned int flags; -+ void *private; -+ ftrace_func_t saved_func; -+ struct ftrace_ops_hash local_hash; -+ struct ftrace_ops_hash *func_hash; -+ struct ftrace_ops_hash old_hash; -+ long unsigned int trampoline; -+ long unsigned int trampoline_size; -+}; -+ -+struct pmu; -+ -+struct ring_buffer; -+ -+struct perf_addr_filter_range; -+ -+struct bpf_prog; -+ -+struct trace_event_call; -+ -+struct event_filter; -+ -+struct perf_cgroup; -+ -+struct perf_event { -+ struct list_head event_entry; -+ struct list_head sibling_list; -+ struct list_head active_list; -+ struct rb_node group_node; -+ u64 group_index; -+ struct list_head migrate_entry; -+ struct hlist_node hlist_entry; -+ struct list_head active_entry; -+ int nr_siblings; -+ int event_caps; -+ int group_caps; -+ struct perf_event *group_leader; -+ struct pmu *pmu; -+ void *pmu_private; -+ enum perf_event_state state; -+ unsigned int attach_state; -+ local64_t count; -+ atomic64_t child_count; -+ u64 total_time_enabled; -+ u64 total_time_running; -+ u64 tstamp; -+ u64 shadow_ctx_time; -+ struct perf_event_attr attr; -+ u16 header_size; -+ u16 id_header_size; -+ u16 read_size; -+ struct hw_perf_event hw; -+ struct perf_event_context *ctx; -+ atomic_long_t refcount; -+ atomic64_t child_total_time_enabled; -+ atomic64_t child_total_time_running; -+ struct mutex child_mutex; -+ struct list_head child_list; -+ struct perf_event *parent; -+ int oncpu; -+ int cpu; -+ struct list_head owner_entry; -+ struct task_struct *owner; -+ struct mutex mmap_mutex; -+ atomic_t mmap_count; -+ struct ring_buffer *rb; -+ struct list_head rb_entry; -+ long unsigned int rcu_batches; -+ int rcu_pending; -+ wait_queue_head_t waitq; -+ struct fasync_struct *fasync; -+ int pending_wakeup; -+ int pending_kill; -+ int pending_disable; -+ struct irq_work pending; -+ atomic_t event_limit; -+ struct perf_addr_filters_head addr_filters; -+ struct perf_addr_filter_range *addr_filter_ranges; -+ long unsigned int addr_filters_gen; -+ void (*destroy)(struct perf_event *); -+ struct callback_head callback_head; -+ struct pid_namespace *ns; -+ u64 id; -+ u64 (*clock)(); -+ perf_overflow_handler_t overflow_handler; -+ void *overflow_handler_context; -+ perf_overflow_handler_t orig_overflow_handler; -+ struct bpf_prog *prog; -+ struct trace_event_call *tp_event; -+ struct event_filter *filter; -+ struct ftrace_ops ftrace_ops; -+ struct perf_cgroup *cgrp; -+ struct list_head sb_list; -+}; -+ -+struct lockdep_map {}; -+ -+struct uid_gid_extent { -+ u32 first; -+ u32 lower_first; -+ u32 count; -+}; -+ -+struct uid_gid_map { -+ u32 nr_extents; -+ union { -+ struct uid_gid_extent extent[5]; -+ struct { -+ struct uid_gid_extent *forward; -+ struct uid_gid_extent *reverse; -+ }; -+ }; -+}; -+ -+struct proc_ns_operations; -+ -+struct ns_common { -+ atomic_long_t stashed; -+ const struct proc_ns_operations *ops; -+ unsigned int inum; -+}; -+ -+struct ctl_table; -+ -+struct ctl_table_root; -+ -+struct ctl_table_set; -+ -+struct ctl_dir; -+ -+struct ctl_node; -+ -+struct ctl_table_header { -+ union { -+ struct { -+ struct ctl_table *ctl_table; -+ int used; -+ int count; -+ int nreg; -+ }; -+ struct callback_head rcu; -+ }; -+ struct completion *unregistering; -+ struct ctl_table *ctl_table_arg; -+ struct ctl_table_root *root; -+ struct ctl_table_set *set; -+ struct ctl_dir *parent; -+ struct ctl_node *node; -+ struct hlist_head inodes; -+}; -+ -+struct ctl_dir { -+ struct ctl_table_header header; -+ struct rb_root root; -+}; -+ -+struct ctl_table_set { -+ int (*is_seen)(struct ctl_table_set *); -+ struct ctl_dir dir; -+}; -+ -+struct ucounts; -+ -+struct user_namespace { -+ struct uid_gid_map uid_map; -+ struct uid_gid_map gid_map; -+ struct uid_gid_map projid_map; -+ atomic_t count; -+ struct user_namespace *parent; -+ int level; -+ kuid_t owner; -+ kgid_t group; -+ struct ns_common ns; -+ long unsigned int flags; -+ struct key *persistent_keyring_register; -+ struct rw_semaphore persistent_keyring_register_sem; -+ struct work_struct work; -+ struct ctl_table_set set; -+ struct ctl_table_header *sysctls; -+ struct ucounts *ucounts; -+ int ucount_max[9]; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+enum node_states { -+ N_POSSIBLE = 0, -+ N_ONLINE = 1, -+ N_NORMAL_MEMORY = 2, -+ N_HIGH_MEMORY = 2, -+ N_MEMORY = 3, -+ N_CPU = 4, -+ NR_NODE_STATES = 5, -+}; -+ -+enum lru_list { -+ LRU_INACTIVE_ANON = 0, -+ LRU_ACTIVE_ANON = 1, -+ LRU_INACTIVE_FILE = 2, -+ LRU_ACTIVE_FILE = 3, -+ LRU_UNEVICTABLE = 4, -+ NR_LRU_LISTS = 5, -+}; -+ -+struct delayed_work { -+ struct work_struct work; -+ struct timer_list timer; -+ struct workqueue_struct *wq; -+ int cpu; -+ long unsigned int data; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct rcu_work { -+ struct work_struct work; -+ struct callback_head rcu; -+ struct workqueue_struct *wq; -+}; -+ -+struct rcu_segcblist { -+ struct callback_head *head; -+ struct callback_head **tails[4]; -+ long unsigned int gp_seq[4]; -+ long int len; -+ long int len_lazy; -+}; -+ -+struct srcu_node; -+ -+struct srcu_struct; -+ -+struct srcu_data { -+ long unsigned int srcu_lock_count[2]; -+ long unsigned int srcu_unlock_count[2]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t lock; -+ struct rcu_segcblist srcu_cblist; -+ long unsigned int srcu_gp_seq_needed; -+ long unsigned int srcu_gp_seq_needed_exp; -+ bool srcu_cblist_invoking; -+ struct delayed_work work; -+ struct callback_head srcu_barrier_head; -+ struct srcu_node *mynode; -+ long unsigned int grpmask; -+ int cpu; -+ struct srcu_struct *sp; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct srcu_node { -+ spinlock_t lock; -+ long unsigned int srcu_have_cbs[4]; -+ long unsigned int srcu_data_have_cbs[4]; -+ long unsigned int srcu_gp_seq_needed_exp; -+ struct srcu_node *srcu_parent; -+ int grplo; -+ int grphi; -+}; -+ -+struct srcu_struct { -+ struct srcu_node node[521]; -+ struct srcu_node *level[4]; -+ struct mutex srcu_cb_mutex; -+ spinlock_t lock; -+ struct mutex srcu_gp_mutex; -+ unsigned int srcu_idx; -+ long unsigned int srcu_gp_seq; -+ long unsigned int srcu_gp_seq_needed; -+ long unsigned int srcu_gp_seq_needed_exp; -+ long unsigned int srcu_last_gp_end; -+ struct srcu_data *sda; -+ long unsigned int srcu_barrier_seq; -+ struct mutex srcu_barrier_mutex; -+ struct completion srcu_barrier_completion; -+ atomic_t srcu_barrier_cpu_cnt; -+ struct delayed_work work; -+}; -+ -+typedef void (*smp_call_func_t)(void *); -+ -+struct __call_single_data { -+ struct llist_node llist; -+ smp_call_func_t func; -+ void *info; -+ unsigned int flags; -+}; -+ -+typedef int proc_handler(struct ctl_table *, int, void *, size_t *, loff_t *); -+ -+struct ctl_table_poll; -+ -+struct ctl_table { -+ const char *procname; -+ void *data; -+ int maxlen; -+ umode_t mode; -+ struct ctl_table *child; -+ proc_handler *proc_handler; -+ struct ctl_table_poll *poll; -+ void *extra1; -+ void *extra2; -+}; -+ -+struct ctl_table_poll { -+ atomic_t event; -+ wait_queue_head_t wait; -+}; -+ -+struct ctl_node { -+ struct rb_node node; -+ struct ctl_table_header *header; -+}; -+ -+struct ctl_table_root { -+ struct ctl_table_set default_set; -+ struct ctl_table_set * (*lookup)(struct ctl_table_root *); -+ void (*set_ownership)(struct ctl_table_header *, struct ctl_table *, kuid_t *, kgid_t *); -+ int (*permissions)(struct ctl_table_header *, struct ctl_table *); -+}; -+ -+enum umh_disable_depth { -+ UMH_ENABLED = 0, -+ UMH_FREEZING = 1, -+ UMH_DISABLED = 2, -+}; -+ -+struct cgroup; -+ -+struct cgroup_subsys; -+ -+struct cgroup_subsys_state { -+ struct cgroup *cgroup; -+ struct cgroup_subsys *ss; -+ struct percpu_ref refcnt; -+ struct list_head sibling; -+ struct list_head children; -+ struct list_head rstat_css_node; -+ int id; -+ unsigned int flags; -+ u64 serial_nr; -+ atomic_t online_cnt; -+ struct work_struct destroy_work; -+ struct rcu_work destroy_rwork; -+ struct cgroup_subsys_state *parent; -+}; -+ -+struct mem_cgroup_id { -+ int id; -+ atomic_t ref; -+}; -+ -+struct page_counter { -+ atomic_long_t usage; -+ long unsigned int min; -+ long unsigned int low; -+ long unsigned int max; -+ struct page_counter *parent; -+ long unsigned int emin; -+ atomic_long_t min_usage; -+ atomic_long_t children_min_usage; -+ long unsigned int elow; -+ atomic_long_t low_usage; -+ atomic_long_t children_low_usage; -+ long unsigned int watermark; -+ long unsigned int failcnt; -+}; -+ -+struct vmpressure { -+ long unsigned int scanned; -+ long unsigned int reclaimed; -+ long unsigned int tree_scanned; -+ long unsigned int tree_reclaimed; -+ struct spinlock sr_lock; -+ struct list_head events; -+ struct mutex events_lock; -+ struct work_struct work; -+}; -+ -+struct cgroup_file { -+ struct kernfs_node *kn; -+ long unsigned int notified_at; -+ struct timer_list notify_timer; -+}; -+ -+struct mem_cgroup_threshold_ary; -+ -+struct mem_cgroup_thresholds { -+ struct mem_cgroup_threshold_ary *primary; -+ struct mem_cgroup_threshold_ary *spare; -+}; -+ -+struct memcg_padding { -+ char x[0]; -+}; -+ -+enum memcg_kmem_state { -+ KMEM_NONE = 0, -+ KMEM_ALLOCATED = 1, -+ KMEM_ONLINE = 2, -+}; -+ -+struct fprop_global { -+ struct percpu_counter events; -+ unsigned int period; -+ seqcount_t sequence; -+}; -+ -+struct wb_domain { -+ spinlock_t lock; -+ struct fprop_global completions; -+ struct timer_list period_timer; -+ long unsigned int period_time; -+ long unsigned int dirty_limit_tstamp; -+ long unsigned int dirty_limit; -+}; -+ -+struct mem_cgroup_stat_cpu; -+ -+struct mem_cgroup_per_node; -+ -+struct mem_cgroup { -+ struct cgroup_subsys_state css; -+ struct mem_cgroup_id id; -+ struct page_counter memory; -+ struct page_counter swap; -+ struct page_counter memsw; -+ struct page_counter kmem; -+ struct page_counter tcpmem; -+ long unsigned int high; -+ struct work_struct high_work; -+ long unsigned int soft_limit; -+ struct vmpressure vmpressure; -+ bool use_hierarchy; -+ bool oom_group; -+ bool oom_lock; -+ int under_oom; -+ int swappiness; -+ int oom_kill_disable; -+ struct cgroup_file events_file; -+ struct cgroup_file swap_events_file; -+ struct mutex thresholds_lock; -+ struct mem_cgroup_thresholds thresholds; -+ struct mem_cgroup_thresholds memsw_thresholds; -+ struct list_head oom_notify; -+ long unsigned int move_charge_at_immigrate; -+ spinlock_t move_lock; -+ long unsigned int move_lock_flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct memcg_padding _pad1_; -+ atomic_t moving_account; -+ struct task_struct *move_lock_task; -+ struct mem_cgroup_stat_cpu *stat_cpu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct memcg_padding _pad2_; -+ atomic_long_t stat[34]; -+ atomic_long_t events[85]; -+ atomic_long_t memory_events[7]; -+ long unsigned int socket_pressure; -+ bool tcpmem_active; -+ int tcpmem_pressure; -+ int kmemcg_id; -+ enum memcg_kmem_state kmem_state; -+ struct list_head kmem_caches; -+ int last_scanned_node; -+ nodemask_t scan_nodes; -+ atomic_t numainfo_events; -+ atomic_t numainfo_updating; -+ struct list_head cgwb_list; -+ struct wb_domain cgwb_domain; -+ struct list_head event_list; -+ spinlock_t event_list_lock; -+ struct mem_cgroup_per_node *nodeinfo[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct anon_vma { -+ struct anon_vma *root; -+ struct rw_semaphore rwsem; -+ atomic_t refcount; -+ unsigned int degree; -+ struct anon_vma *parent; -+ struct rb_root_cached rb_root; -+}; -+ -+struct mempolicy { -+ atomic_t refcnt; -+ short unsigned int mode; -+ short unsigned int flags; -+ union { -+ short int preferred_node; -+ nodemask_t nodes; -+ } v; -+ union { -+ nodemask_t cpuset_mems_allowed; -+ nodemask_t user_nodemask; -+ } w; -+}; -+ -+struct linux_binprm; -+ -+struct coredump_params; -+ -+struct linux_binfmt { -+ struct list_head lh; -+ struct module *module; -+ int (*load_binary)(struct linux_binprm *); -+ int (*load_shlib)(struct file *); -+ int (*core_dump)(struct coredump_params *); -+ long unsigned int min_coredump; -+}; -+ -+struct va_alignment { -+ int flags; -+ long unsigned int mask; -+ long unsigned int bits; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef __u64 Elf64_Addr; -+ -+typedef __u16 Elf64_Half; -+ -+typedef __u64 Elf64_Off; -+ -+typedef __u32 Elf64_Word; -+ -+typedef __u64 Elf64_Xword; -+ -+typedef __s64 Elf64_Sxword; -+ -+typedef struct { -+ Elf64_Sxword d_tag; -+ union { -+ Elf64_Xword d_val; -+ Elf64_Addr d_ptr; -+ } d_un; -+} Elf64_Dyn; -+ -+struct elf64_sym { -+ Elf64_Word st_name; -+ unsigned char st_info; -+ unsigned char st_other; -+ Elf64_Half st_shndx; -+ Elf64_Addr st_value; -+ Elf64_Xword st_size; -+}; -+ -+typedef struct elf64_sym Elf64_Sym; -+ -+struct elf64_hdr { -+ unsigned char e_ident[16]; -+ Elf64_Half e_type; -+ Elf64_Half e_machine; -+ Elf64_Word e_version; -+ Elf64_Addr e_entry; -+ Elf64_Off e_phoff; -+ Elf64_Off e_shoff; -+ Elf64_Word e_flags; -+ Elf64_Half e_ehsize; -+ Elf64_Half e_phentsize; -+ Elf64_Half e_phnum; -+ Elf64_Half e_shentsize; -+ Elf64_Half e_shnum; -+ Elf64_Half e_shstrndx; -+}; -+ -+typedef struct elf64_hdr Elf64_Ehdr; -+ -+struct elf64_shdr { -+ Elf64_Word sh_name; -+ Elf64_Word sh_type; -+ Elf64_Xword sh_flags; -+ Elf64_Addr sh_addr; -+ Elf64_Off sh_offset; -+ Elf64_Xword sh_size; -+ Elf64_Word sh_link; -+ Elf64_Word sh_info; -+ Elf64_Xword sh_addralign; -+ Elf64_Xword sh_entsize; -+}; -+ -+typedef struct elf64_shdr Elf64_Shdr; -+ -+struct seq_file { -+ char *buf; -+ size_t size; -+ size_t from; -+ size_t count; -+ size_t pad_until; -+ loff_t index; -+ loff_t read_pos; -+ u64 version; -+ struct mutex lock; -+ const struct seq_operations___2 *op; -+ int poll_event; -+ const struct file *file; -+ void *private; -+}; -+ -+struct kernel_param; -+ -+struct kernel_param_ops { -+ unsigned int flags; -+ int (*set)(const char *, const struct kernel_param *); -+ int (*get)(char *, const struct kernel_param *); -+ void (*free)(void *); -+}; -+ -+struct kparam_string; -+ -+struct kparam_array; -+ -+struct kernel_param { -+ const char *name; -+ struct module *mod; -+ const struct kernel_param_ops *ops; -+ const u16 perm; -+ s8 level; -+ u8 flags; -+ union { -+ void *arg; -+ const struct kparam_string *str; -+ const struct kparam_array *arr; -+ }; -+}; -+ -+struct kparam_string { -+ unsigned int maxlen; -+ char *string; -+}; -+ -+struct kparam_array { -+ unsigned int max; -+ unsigned int elemsize; -+ unsigned int *num; -+ const struct kernel_param_ops *ops; -+ void *elem; -+}; -+ -+enum module_state { -+ MODULE_STATE_LIVE = 0, -+ MODULE_STATE_COMING = 1, -+ MODULE_STATE_GOING = 2, -+ MODULE_STATE_UNFORMED = 3, -+}; -+ -+struct module_param_attrs; -+ -+struct module_kobject { -+ struct kobject kobj; -+ struct module *mod; -+ struct kobject *drivers_dir; -+ struct module_param_attrs *mp; -+ struct completion *kobj_completion; -+}; -+ -+struct latch_tree_node { -+ struct rb_node node[2]; -+}; -+ -+struct mod_tree_node { -+ struct module *mod; -+ struct latch_tree_node node; -+}; -+ -+struct module_layout { -+ void *base; -+ unsigned int size; -+ unsigned int text_size; -+ unsigned int ro_size; -+ unsigned int ro_after_init_size; -+ struct mod_tree_node mtn; -+}; -+ -+struct mod_arch_specific { -+ unsigned int num_orcs; -+ int *orc_unwind_ip; -+ struct orc_entry *orc_unwind; -+}; -+ -+struct mod_kallsyms { -+ Elf64_Sym *symtab; -+ unsigned int num_symtab; -+ char *strtab; -+}; -+ -+enum MODULE_KLP_REL_STATE { -+ MODULE_KLP_REL_NONE = 0, -+ MODULE_KLP_REL_UNDO = 1, -+ MODULE_KLP_REL_DONE = 2, -+}; -+ -+struct module_attribute; -+ -+struct module_sect_attrs; -+ -+struct module_notes_attrs; -+ -+struct trace_eval_map; -+ -+struct klp_modinfo; -+ -+struct error_injection_entry; -+ -+struct module { -+ enum module_state state; -+ struct list_head list; -+ char name[56]; -+ struct module_kobject mkobj; -+ struct module_attribute *modinfo_attrs; -+ const char *version; -+ const char *srcversion; -+ struct kobject *holders_dir; -+ const struct kernel_symbol *syms; -+ const s32 *crcs; -+ unsigned int num_syms; -+ struct mutex param_lock; -+ struct kernel_param *kp; -+ unsigned int num_kp; -+ unsigned int num_gpl_syms; -+ const struct kernel_symbol *gpl_syms; -+ const s32 *gpl_crcs; -+ bool sig_ok; -+ bool async_probe_requested; -+ const struct kernel_symbol *gpl_future_syms; -+ const s32 *gpl_future_crcs; -+ unsigned int num_gpl_future_syms; -+ unsigned int num_exentries; -+ struct exception_table_entry *extable; -+ int (*init)(); -+ long: 64; -+ struct module_layout core_layout; -+ struct module_layout init_layout; -+ struct mod_arch_specific arch; -+ long unsigned int taints; -+ unsigned int num_bugs; -+ struct list_head bug_list; -+ struct bug_entry *bug_table; -+ struct mod_kallsyms *kallsyms; -+ struct mod_kallsyms core_kallsyms; -+ struct module_sect_attrs *sect_attrs; -+ struct module_notes_attrs *notes_attrs; -+ char *args; -+ void *percpu; -+ unsigned int percpu_size; -+ unsigned int num_tracepoints; -+ tracepoint_ptr_t *tracepoints_ptrs; -+ unsigned int num_bpf_raw_events; -+ struct bpf_raw_event_map *bpf_raw_events; -+ struct jump_entry *jump_entries; -+ unsigned int num_jump_entries; -+ unsigned int num_trace_bprintk_fmt; -+ const char **trace_bprintk_fmt_start; -+ struct trace_event_call **trace_events; -+ unsigned int num_trace_events; -+ struct trace_eval_map **trace_evals; -+ unsigned int num_trace_evals; -+ unsigned int num_ftrace_callsites; -+ long unsigned int *ftrace_callsites; -+ bool klp; -+ bool klp_alive; -+ struct klp_modinfo *klp_info; -+ struct list_head source_list; -+ struct list_head target_list; -+ void (*exit)(); -+ atomic_t refcnt; -+ struct error_injection_entry *ei_funcs; -+ unsigned int num_ei_funcs; -+ union { -+ enum MODULE_KLP_REL_STATE klp_rel_state; -+ long int klp_rel_state_KABI; -+ }; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long: 64; -+ long: 64; -+}; -+ -+struct error_injection_entry { -+ long unsigned int addr; -+ int etype; -+}; -+ -+struct module_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct module_attribute *, struct module_kobject *, char *); -+ ssize_t (*store)(struct module_attribute *, struct module_kobject *, const char *, size_t); -+ void (*setup)(struct module *, const char *); -+ int (*test)(struct module *); -+ void (*free)(struct module *); -+}; -+ -+struct klp_modinfo { -+ Elf64_Ehdr hdr; -+ Elf64_Shdr *sechdrs; -+ char *secstrings; -+ unsigned int symndx; -+}; -+ -+struct trace_event_functions; -+ -+struct trace_event { -+ struct hlist_node node; -+ struct list_head list; -+ int type; -+ struct trace_event_functions *funcs; -+}; -+ -+struct trace_event_class; -+ -+struct bpf_prog_array; -+ -+struct trace_event_call { -+ struct list_head list; -+ struct trace_event_class *class; -+ union { -+ char *name; -+ struct tracepoint *tp; -+ }; -+ struct trace_event event; -+ char *print_fmt; -+ struct event_filter *filter; -+ void *mod; -+ void *data; -+ int flags; -+ int perf_refcount; -+ struct hlist_head *perf_events; -+ struct bpf_prog_array *prog_array; -+ int (*perf_perm)(struct trace_event_call *, struct perf_event *); -+}; -+ -+struct trace_eval_map { -+ const char *system; -+ const char *eval_string; -+ long unsigned int eval_value; -+}; -+ -+struct fs_pin; -+ -+struct pid_namespace { -+ struct kref kref; -+ struct idr idr; -+ struct callback_head rcu; -+ unsigned int pid_allocated; -+ struct task_struct *child_reaper; -+ struct kmem_cache *pid_cachep; -+ unsigned int level; -+ struct pid_namespace *parent; -+ struct vfsmount *proc_mnt; -+ struct dentry *proc_self; -+ struct dentry *proc_thread_self; -+ struct fs_pin *bacct; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct work_struct proc_work; -+ kgid_t pid_gid; -+ int hide_pid; -+ int pid_max; -+ int reboot; -+ struct ns_common ns; -+}; -+ -+struct rlimit { -+ __kernel_ulong_t rlim_cur; -+ __kernel_ulong_t rlim_max; -+}; -+ -+typedef void __signalfn_t(int); -+ -+typedef __signalfn_t *__sighandler_t; -+ -+typedef void __restorefn_t(); -+ -+typedef __restorefn_t *__sigrestore_t; -+ -+struct user_struct { -+ refcount_t __count; -+ atomic_t processes; -+ atomic_t sigpending; -+ atomic_t fanotify_listeners; -+ atomic_long_t epoll_watches; -+ long unsigned int mq_bytes; -+ long unsigned int locked_shm; -+ long unsigned int unix_inflight; -+ atomic_long_t pipe_bufs; -+ struct key *uid_keyring; -+ struct key *session_keyring; -+ struct hlist_node uidhash_node; -+ kuid_t uid; -+ atomic_long_t locked_vm; -+ struct ratelimit_state ratelimit; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct sigaction { -+ __sighandler_t sa_handler; -+ long unsigned int sa_flags; -+ __sigrestore_t sa_restorer; -+ sigset_t sa_mask; -+}; -+ -+struct k_sigaction { -+ struct sigaction sa; -+}; -+ -+struct uts_namespace; -+ -+struct ipc_namespace; -+ -+struct mnt_namespace; -+ -+struct net; -+ -+struct cgroup_namespace; -+ -+struct nsproxy { -+ atomic_t count; -+ struct uts_namespace *uts_ns; -+ struct ipc_namespace *ipc_ns; -+ struct mnt_namespace *mnt_ns; -+ struct pid_namespace *pid_ns_for_children; -+ struct net *net_ns; -+ struct cgroup_namespace *cgroup_ns; -+}; -+ -+struct cpu_itimer { -+ u64 expires; -+ u64 incr; -+}; -+ -+struct task_cputime_atomic { -+ atomic64_t utime; -+ atomic64_t stime; -+ atomic64_t sum_exec_runtime; -+}; -+ -+struct thread_group_cputimer { -+ struct task_cputime_atomic cputime_atomic; -+ bool running; -+ bool checking_timer; -+}; -+ -+struct pacct_struct { -+ int ac_flag; -+ long int ac_exitcode; -+ long unsigned int ac_mem; -+ u64 ac_utime; -+ u64 ac_stime; -+ long unsigned int ac_minflt; -+ long unsigned int ac_majflt; -+}; -+ -+struct tty_struct; -+ -+struct autogroup; -+ -+struct taskstats; -+ -+struct tty_audit_buf; -+ -+struct signal_struct { -+ atomic_t sigcnt; -+ atomic_t live; -+ int nr_threads; -+ struct list_head thread_head; -+ wait_queue_head_t wait_chldexit; -+ struct task_struct *curr_target; -+ struct sigpending shared_pending; -+ struct hlist_head multiprocess; -+ int group_exit_code; -+ int notify_count; -+ struct task_struct *group_exit_task; -+ int group_stop_count; -+ unsigned int flags; -+ unsigned int is_child_subreaper: 1; -+ unsigned int has_child_subreaper: 1; -+ int posix_timer_id; -+ struct list_head posix_timers; -+ struct hrtimer real_timer; -+ ktime_t it_real_incr; -+ struct cpu_itimer it[2]; -+ struct thread_group_cputimer cputimer; -+ struct task_cputime cputime_expires; -+ struct list_head cpu_timers[3]; -+ struct pid *pids[4]; -+ atomic_t tick_dep_mask; -+ struct pid *tty_old_pgrp; -+ int leader; -+ struct tty_struct *tty; -+ struct autogroup *autogroup; -+ seqlock_t stats_lock; -+ u64 utime; -+ u64 stime; -+ u64 cutime; -+ u64 cstime; -+ u64 gtime; -+ u64 cgtime; -+ struct prev_cputime prev_cputime; -+ long unsigned int nvcsw; -+ long unsigned int nivcsw; -+ long unsigned int cnvcsw; -+ long unsigned int cnivcsw; -+ long unsigned int min_flt; -+ long unsigned int maj_flt; -+ long unsigned int cmin_flt; -+ long unsigned int cmaj_flt; -+ long unsigned int inblock; -+ long unsigned int oublock; -+ long unsigned int cinblock; -+ long unsigned int coublock; -+ long unsigned int maxrss; -+ long unsigned int cmaxrss; -+ struct task_io_accounting ioac; -+ long long unsigned int sum_sched_runtime; -+ struct rlimit rlim[16]; -+ struct pacct_struct pacct; -+ struct taskstats *stats; -+ unsigned int audit_tty; -+ struct tty_audit_buf *tty_audit_buf; -+ bool oom_flag_origin; -+ short int oom_score_adj; -+ short int oom_score_adj_min; -+ struct mm_struct *oom_mm; -+ struct mutex cred_guard_mutex; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct sighand_struct { -+ atomic_t count; -+ struct k_sigaction action[64]; -+ spinlock_t siglock; -+ wait_queue_head_t signalfd_wqh; -+}; -+ -+struct bio; -+ -+struct bio_list { -+ struct bio *head; -+ struct bio *tail; -+}; -+ -+struct blk_plug { -+ struct list_head list; -+ struct list_head mq_list; -+ struct list_head cb_list; -+}; -+ -+struct reclaim_state { -+ long unsigned int reclaimed_slab; -+}; -+ -+typedef int congested_fn(void *, int); -+ -+struct fprop_local_percpu { -+ struct percpu_counter events; -+ unsigned int period; -+ raw_spinlock_t lock; -+}; -+ -+enum wb_reason { -+ WB_REASON_BACKGROUND = 0, -+ WB_REASON_VMSCAN = 1, -+ WB_REASON_SYNC = 2, -+ WB_REASON_PERIODIC = 3, -+ WB_REASON_LAPTOP_TIMER = 4, -+ WB_REASON_FREE_MORE_MEM = 5, -+ WB_REASON_FS_FREE_SPACE = 6, -+ WB_REASON_FORKER_THREAD = 7, -+ WB_REASON_MAX = 8, -+}; -+ -+struct bdi_writeback_congested; -+ -+struct bdi_writeback { -+ struct backing_dev_info *bdi; -+ long unsigned int state; -+ long unsigned int last_old_flush; -+ struct list_head b_dirty; -+ struct list_head b_io; -+ struct list_head b_more_io; -+ struct list_head b_dirty_time; -+ spinlock_t list_lock; -+ struct percpu_counter stat[4]; -+ struct bdi_writeback_congested *congested; -+ long unsigned int bw_time_stamp; -+ long unsigned int dirtied_stamp; -+ long unsigned int written_stamp; -+ long unsigned int write_bandwidth; -+ long unsigned int avg_write_bandwidth; -+ long unsigned int dirty_ratelimit; -+ long unsigned int balanced_dirty_ratelimit; -+ struct fprop_local_percpu completions; -+ int dirty_exceeded; -+ enum wb_reason start_all_reason; -+ spinlock_t work_lock; -+ struct list_head work_list; -+ struct delayed_work dwork; -+ long unsigned int dirty_sleep; -+ struct list_head bdi_node; -+ struct percpu_ref refcnt; -+ struct fprop_local_percpu memcg_completions; -+ struct cgroup_subsys_state *memcg_css; -+ struct cgroup_subsys_state *blkcg_css; -+ struct list_head memcg_node; -+ struct list_head blkcg_node; -+ union { -+ struct work_struct release_work; -+ struct callback_head rcu; -+ }; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct rcu_device; -+ -+struct backing_dev_info { -+ struct list_head bdi_list; -+ long unsigned int ra_pages; -+ long unsigned int io_pages; -+ congested_fn *congested_fn; -+ void *congested_data; -+ const char *name; -+ struct kref refcnt; -+ unsigned int capabilities; -+ unsigned int min_ratio; -+ unsigned int max_ratio; -+ unsigned int max_prop_frac; -+ atomic_long_t tot_write_bandwidth; -+ struct bdi_writeback wb; -+ struct list_head wb_list; -+ struct radix_tree_root cgwb_tree; -+ struct rb_root cgwb_congested_tree; -+ struct mutex cgwb_release_mutex; -+ struct rw_semaphore wb_switch_rwsem; -+ wait_queue_head_t wb_waitq; -+ union { -+ struct rcu_device *rcu_dev; -+ struct device *dev; -+ }; -+ struct device *owner; -+ struct timer_list laptop_mode_wb_timer; -+ struct dentry *debug_dir; -+ struct dentry *debug_stats; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct css_set { -+ struct cgroup_subsys_state *subsys[14]; -+ refcount_t refcount; -+ struct css_set *dom_cset; -+ struct cgroup *dfl_cgrp; -+ int nr_tasks; -+ struct list_head tasks; -+ struct list_head mg_tasks; -+ struct list_head dying_tasks; -+ struct list_head task_iters; -+ struct list_head e_cset_node[14]; -+ struct list_head threaded_csets; -+ struct list_head threaded_csets_node; -+ struct hlist_node hlist; -+ struct list_head cgrp_links; -+ struct list_head mg_preload_node; -+ struct list_head mg_node; -+ struct cgroup *mg_src_cgrp; -+ struct cgroup *mg_dst_cgrp; -+ struct css_set *mg_dst_cset; -+ bool dead; -+ struct callback_head callback_head; -+}; -+ -+typedef u32 compat_uptr_t; -+ -+struct compat_robust_list { -+ compat_uptr_t next; -+}; -+ -+typedef s32 compat_long_t; -+ -+struct compat_robust_list_head { -+ struct compat_robust_list list; -+ compat_long_t futex_offset; -+ compat_uptr_t list_op_pending; -+}; -+ -+struct perf_event_groups { -+ struct rb_root tree; -+ u64 index; -+}; -+ -+struct perf_event_context { -+ struct pmu *pmu; -+ raw_spinlock_t lock; -+ struct mutex mutex; -+ struct list_head active_ctx_list; -+ struct perf_event_groups pinned_groups; -+ struct perf_event_groups flexible_groups; -+ struct list_head event_list; -+ struct list_head pinned_active; -+ struct list_head flexible_active; -+ int nr_events; -+ int nr_active; -+ int is_active; -+ int nr_stat; -+ int nr_freq; -+ int rotate_disable; -+ atomic_t refcount; -+ struct task_struct *task; -+ u64 time; -+ u64 timestamp; -+ struct perf_event_context *parent_ctx; -+ u64 parent_gen; -+ u64 generation; -+ int pin_count; -+ int nr_cgroups; -+ void *task_ctx_data; -+ struct callback_head callback_head; -+}; -+ -+struct task_delay_info { -+ raw_spinlock_t lock; -+ unsigned int flags; -+ u64 blkio_start; -+ u64 blkio_delay; -+ u64 swapin_delay; -+ u32 blkio_count; -+ u32 swapin_count; -+ u64 freepages_start; -+ u64 freepages_delay; -+ u32 freepages_count; -+}; -+ -+struct ftrace_ret_stack { -+ long unsigned int ret; -+ long unsigned int func; -+ long long unsigned int calltime; -+ long long unsigned int subtime; -+ long unsigned int *retp; -+}; -+ -+struct blkcg_gq; -+ -+struct mempool_s; -+ -+typedef struct mempool_s mempool_t; -+ -+struct request_list { -+ struct request_queue *q; -+ struct blkcg_gq *blkg; -+ int count[2]; -+ int starved[2]; -+ mempool_t *rq_pool; -+ wait_queue_head_t wait[2]; -+ unsigned int flags; -+}; -+ -+typedef void request_fn_proc(struct request_queue *); -+ -+typedef unsigned int blk_qc_t; -+ -+typedef blk_qc_t make_request_fn(struct request_queue *, struct bio *); -+ -+typedef bool poll_q_fn(struct request_queue *, blk_qc_t); -+ -+struct request; -+ -+typedef int prep_rq_fn(struct request_queue *, struct request *); -+ -+typedef void unprep_rq_fn(struct request_queue *, struct request *); -+ -+typedef void softirq_done_fn(struct request *); -+ -+enum blk_eh_timer_return { -+ BLK_EH_DONE = 0, -+ BLK_EH_RESET_TIMER = 1, -+}; -+ -+typedef enum blk_eh_timer_return rq_timed_out_fn(struct request *); -+ -+typedef int dma_drain_needed_fn(struct request *); -+ -+typedef int lld_busy_fn(struct request_queue *); -+ -+typedef int init_rq_fn(struct request_queue *, struct request *, gfp_t); -+ -+typedef void exit_rq_fn(struct request_queue *, struct request *); -+ -+struct blk_integrity_profile; -+ -+struct blk_integrity { -+ const struct blk_integrity_profile *profile; -+ unsigned char flags; -+ unsigned char tuple_size; -+ unsigned char interval_exp; -+ unsigned char tag_size; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct blk_rq_stat { -+ u64 mean; -+ u64 min; -+ u64 max; -+ u32 nr_samples; -+ u64 batch; -+}; -+ -+enum blk_zoned_model { -+ BLK_ZONED_NONE = 0, -+ BLK_ZONED_HA = 1, -+ BLK_ZONED_HM = 2, -+}; -+ -+struct queue_limits { -+ long unsigned int bounce_pfn; -+ long unsigned int seg_boundary_mask; -+ long unsigned int virt_boundary_mask; -+ unsigned int max_hw_sectors; -+ unsigned int max_dev_sectors; -+ unsigned int chunk_sectors; -+ unsigned int max_sectors; -+ unsigned int max_segment_size; -+ unsigned int physical_block_size; -+ unsigned int alignment_offset; -+ unsigned int io_min; -+ unsigned int io_opt; -+ unsigned int max_discard_sectors; -+ unsigned int max_hw_discard_sectors; -+ unsigned int max_write_same_sectors; -+ unsigned int max_write_zeroes_sectors; -+ unsigned int discard_granularity; -+ unsigned int discard_alignment; -+ short unsigned int logical_block_size; -+ short unsigned int max_segments; -+ short unsigned int max_integrity_segments; -+ short unsigned int max_discard_segments; -+ unsigned char misaligned; -+ unsigned char discard_misaligned; -+ unsigned char cluster; -+ unsigned char raid_partial_stripes_expensive; -+ enum blk_zoned_model zoned; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct bsg_job; -+ -+typedef int bsg_job_fn(struct bsg_job *); -+ -+struct bsg_ops; -+ -+struct bsg_class_device { -+ struct device *class_dev; -+ int minor; -+ struct request_queue *queue; -+ const struct bsg_ops *ops; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+typedef void *mempool_alloc_t(gfp_t, void *); -+ -+typedef void mempool_free_t(void *, void *); -+ -+struct mempool_s { -+ spinlock_t lock; -+ int min_nr; -+ int curr_nr; -+ void **elements; -+ void *pool_data; -+ mempool_alloc_t *alloc; -+ mempool_free_t *free; -+ wait_queue_head_t wait; -+}; -+ -+struct bio_set { -+ struct kmem_cache *bio_slab; -+ unsigned int front_pad; -+ mempool_t bio_pool; -+ mempool_t bvec_pool; -+ mempool_t bio_integrity_pool; -+ mempool_t bvec_integrity_pool; -+ spinlock_t rescue_lock; -+ struct bio_list rescue_list; -+ struct work_struct rescue_work; -+ struct workqueue_struct *rescue_workqueue; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct elevator_queue; -+ -+struct blk_queue_stats; -+ -+struct rq_qos; -+ -+struct blk_mq_ops; -+ -+struct blk_mq_ctx; -+ -+struct blk_mq_hw_ctx; -+ -+struct blk_queue_tag; -+ -+struct blk_stat_callback; -+ -+struct blk_trace; -+ -+struct blk_flush_queue; -+ -+struct throtl_data; -+ -+struct blk_mq_tag_set; -+ -+struct request_queue { -+ struct list_head queue_head; -+ struct request *last_merge; -+ struct elevator_queue *elevator; -+ int nr_rqs[2]; -+ int nr_rqs_elvpriv; -+ struct blk_queue_stats *stats; -+ struct rq_qos *rq_qos; -+ struct request_list root_rl; -+ request_fn_proc *request_fn; -+ make_request_fn *make_request_fn; -+ poll_q_fn *poll_fn; -+ prep_rq_fn *prep_rq_fn; -+ unprep_rq_fn *unprep_rq_fn; -+ softirq_done_fn *softirq_done_fn; -+ rq_timed_out_fn *rq_timed_out_fn; -+ dma_drain_needed_fn *dma_drain_needed; -+ lld_busy_fn *lld_busy_fn; -+ init_rq_fn *init_rq_fn; -+ exit_rq_fn *exit_rq_fn; -+ void (*initialize_rq_fn)(struct request *); -+ const struct blk_mq_ops *mq_ops; -+ unsigned int *mq_map; -+ struct blk_mq_ctx *queue_ctx; -+ unsigned int nr_queues; -+ unsigned int queue_depth; -+ struct blk_mq_hw_ctx **queue_hw_ctx; -+ unsigned int nr_hw_queues; -+ sector_t end_sector; -+ struct request *boundary_rq; -+ struct delayed_work delay_work; -+ struct backing_dev_info *backing_dev_info; -+ void *queuedata; -+ long unsigned int queue_flags; -+ atomic_t pm_only; -+ int id; -+ gfp_t bounce_gfp; -+ spinlock_t __queue_lock; -+ spinlock_t *queue_lock; -+ struct kobject kobj; -+ struct kobject *mq_kobj; -+ struct blk_integrity integrity; -+ struct device *dev; -+ int rpm_status; -+ unsigned int nr_pending; -+ long unsigned int nr_requests; -+ unsigned int nr_congestion_on; -+ unsigned int nr_congestion_off; -+ unsigned int nr_batching; -+ unsigned int dma_drain_size; -+ void *dma_drain_buffer; -+ unsigned int dma_pad_mask; -+ unsigned int dma_alignment; -+ struct blk_queue_tag *queue_tags; -+ unsigned int nr_sorted; -+ unsigned int in_flight[2]; -+ unsigned int request_fn_active; -+ unsigned int rq_timeout; -+ int poll_nsec; -+ struct blk_stat_callback *poll_cb; -+ struct blk_rq_stat poll_stat[16]; -+ struct timer_list timeout; -+ struct work_struct timeout_work; -+ struct list_head timeout_list; -+ struct list_head icq_list; -+ long unsigned int blkcg_pols[1]; -+ struct blkcg_gq *root_blkg; -+ struct list_head blkg_list; -+ struct queue_limits limits; -+ unsigned int sg_timeout; -+ unsigned int sg_reserved_size; -+ int node; -+ struct blk_trace *blk_trace; -+ struct mutex blk_trace_mutex; -+ struct blk_flush_queue *fq; -+ struct list_head requeue_list; -+ spinlock_t requeue_lock; -+ struct delayed_work requeue_work; -+ struct mutex sysfs_lock; -+ struct list_head unused_hctx_list; -+ spinlock_t unused_hctx_lock; -+ int bypass_depth; -+ atomic_t mq_freeze_depth; -+ bsg_job_fn *bsg_job_fn; -+ struct bsg_class_device bsg_dev; -+ struct throtl_data *td; -+ struct callback_head callback_head; -+ wait_queue_head_t mq_freeze_wq; -+ struct percpu_ref q_usage_counter; -+ struct list_head all_q_node; -+ struct blk_mq_tag_set *tag_set; -+ struct list_head tag_set_list; -+ struct bio_set bio_split; -+ struct dentry *debugfs_dir; -+ struct dentry *sched_debugfs_dir; -+ bool mq_sysfs_init_done; -+ size_t cmd_size; -+ void *rq_alloc_data; -+ struct work_struct release_work; -+ u64 write_hints[5]; -+}; -+ -+union thread_union { -+ struct task_struct task; -+ long unsigned int stack[2048]; -+}; -+ -+enum writeback_sync_modes { -+ WB_SYNC_NONE = 0, -+ WB_SYNC_ALL = 1, -+}; -+ -+struct writeback_control { -+ long int nr_to_write; -+ long int pages_skipped; -+ loff_t range_start; -+ loff_t range_end; -+ enum writeback_sync_modes sync_mode; -+ unsigned int for_kupdate: 1; -+ unsigned int for_background: 1; -+ unsigned int tagged_writepages: 1; -+ unsigned int for_reclaim: 1; -+ unsigned int range_cyclic: 1; -+ unsigned int for_sync: 1; -+ struct bdi_writeback *wb; -+ struct inode *inode; -+ int wb_id; -+ int wb_lcand_id; -+ int wb_tcand_id; -+ size_t wb_bytes; -+ size_t wb_lcand_bytes; -+ size_t wb_tcand_bytes; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct iovec; -+ -+struct kvec; -+ -+struct bio_vec; -+ -+struct iov_iter { -+ int type; -+ size_t iov_offset; -+ size_t count; -+ union { -+ const struct iovec *iov; -+ const struct kvec *kvec; -+ const struct bio_vec *bvec; -+ struct pipe_inode_info *pipe; -+ }; -+ union { -+ long unsigned int nr_segs; -+ struct { -+ int idx; -+ int start_idx; -+ }; -+ }; -+}; -+ -+struct swap_cluster_info { -+ spinlock_t lock; -+ unsigned int data: 24; -+ unsigned int flags: 8; -+}; -+ -+struct swap_cluster_list { -+ struct swap_cluster_info head; -+ struct swap_cluster_info tail; -+}; -+ -+struct swap_extent { -+ struct list_head list; -+ long unsigned int start_page; -+ long unsigned int nr_pages; -+ sector_t start_block; -+}; -+ -+struct percpu_cluster; -+ -+struct swap_info_struct { -+ long unsigned int flags; -+ short int prio; -+ struct plist_node list; -+ signed char type; -+ unsigned int max; -+ unsigned char *swap_map; -+ struct swap_cluster_info *cluster_info; -+ struct swap_cluster_list free_clusters; -+ unsigned int lowest_bit; -+ unsigned int highest_bit; -+ unsigned int pages; -+ unsigned int inuse_pages; -+ unsigned int cluster_next; -+ unsigned int cluster_nr; -+ struct percpu_cluster *percpu_cluster; -+ struct swap_extent *curr_swap_extent; -+ struct swap_extent first_swap_extent; -+ struct block_device *bdev; -+ struct file *swap_file; -+ unsigned int old_block_size; -+ long unsigned int *frontswap_map; -+ atomic_t frontswap_pages; -+ spinlock_t lock; -+ spinlock_t cont_lock; -+ struct work_struct discard_work; -+ struct swap_cluster_list discard_clusters; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ struct plist_node avail_lists[0]; -+}; -+ -+struct partition_meta_info; -+ -+struct disk_stats; -+ -+struct hd_struct { -+ sector_t start_sect; -+ sector_t nr_sects; -+ seqcount_t nr_sects_seq; -+ sector_t alignment_offset; -+ unsigned int discard_alignment; -+ struct device __dev; -+ struct kobject *holder_dir; -+ int policy; -+ int partno; -+ struct partition_meta_info *info; -+ long unsigned int stamp; -+ atomic_t in_flight[2]; -+ struct disk_stats *dkstats; -+ struct percpu_ref ref; -+ struct gendisk *disk; -+ struct rcu_work rcu_work; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct disk_part_tbl; -+ -+struct block_device_operations; -+ -+struct timer_rand_state; -+ -+struct disk_events; -+ -+struct badblocks; -+ -+struct gendisk { -+ int major; -+ int first_minor; -+ int minors; -+ char disk_name[32]; -+ char * (*devnode)(struct gendisk *, umode_t *); -+ unsigned int events; -+ unsigned int async_events; -+ struct disk_part_tbl *part_tbl; -+ struct hd_struct part0; -+ const struct block_device_operations *fops; -+ struct request_queue *queue; -+ void *private_data; -+ int flags; -+ struct rw_semaphore lookup_sem; -+ struct kobject *slave_dir; -+ struct timer_rand_state *random; -+ atomic_t sync_io; -+ struct disk_events *ev; -+ struct kobject integrity_kobj; -+ int node_id; -+ struct badblocks *bb; -+ struct lockdep_map lockdep_map; -+ long unsigned int *user_ro_bitmap; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct cdev { -+ struct kobject kobj; -+ struct module *owner; -+ const struct file_operations *ops; -+ struct list_head list; -+ dev_t dev; -+ unsigned int count; -+}; -+ -+typedef void (*poll_queue_proc)(struct file *, wait_queue_head_t *, struct poll_table_struct *); -+ -+struct poll_table_struct { -+ poll_queue_proc _qproc; -+ __poll_t _key; -+}; -+ -+typedef u8 blk_status_t; -+ -+struct bvec_iter { -+ sector_t bi_sector; -+ unsigned int bi_size; -+ unsigned int bi_idx; -+ unsigned int bi_done; -+ unsigned int bi_bvec_done; -+}; -+ -+typedef void bio_end_io_t(struct bio *); -+ -+struct bio_issue { -+ u64 value; -+}; -+ -+struct bio_vec { -+ struct page *bv_page; -+ unsigned int bv_len; -+ unsigned int bv_offset; -+}; -+ -+struct bio_integrity_payload; -+ -+struct bio { -+ struct bio *bi_next; -+ struct gendisk *bi_disk; -+ unsigned int bi_opf; -+ short unsigned int bi_flags; -+ short unsigned int bi_ioprio; -+ short unsigned int bi_write_hint; -+ blk_status_t bi_status; -+ u8 bi_partno; -+ unsigned int bi_phys_segments; -+ unsigned int bi_seg_front_size; -+ unsigned int bi_seg_back_size; -+ struct bvec_iter bi_iter; -+ atomic_t __bi_remaining; -+ bio_end_io_t *bi_end_io; -+ void *bi_private; -+ struct io_context *bi_ioc; -+ struct cgroup_subsys_state *bi_css; -+ struct blkcg_gq *bi_blkg; -+ struct bio_issue bi_issue; -+ union { -+ struct bio_integrity_payload *bi_integrity; -+ }; -+ short unsigned int bi_vcnt; -+ short unsigned int bi_max_vecs; -+ atomic_t __bi_cnt; -+ struct bio_vec *bi_io_vec; -+ struct bio_set *bi_pool; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ struct bio_vec bi_inline_vecs[0]; -+}; -+ -+struct linux_binprm { -+ char buf[256]; -+ struct vm_area_struct *vma; -+ long unsigned int vma_pages; -+ struct mm_struct *mm; -+ long unsigned int p; -+ unsigned int called_set_creds: 1; -+ unsigned int cap_elevated: 1; -+ unsigned int secureexec: 1; -+ unsigned int recursion_depth; -+ struct file *file; -+ struct cred *cred; -+ int unsafe; -+ unsigned int per_clear; -+ int argc; -+ int envc; -+ const char *filename; -+ const char *interp; -+ unsigned int interp_flags; -+ unsigned int interp_data; -+ long unsigned int loader; -+ long unsigned int exec; -+ struct rlimit rlim_stack; -+}; -+ -+struct coredump_params { -+ const siginfo_t *siginfo; -+ struct pt_regs *regs; -+ struct file *file; -+ long unsigned int limit; -+ long unsigned int mm_flags; -+ loff_t written; -+ loff_t pos; -+}; -+ -+struct assoc_array_ptr; -+ -+struct assoc_array { -+ struct assoc_array_ptr *root; -+ long unsigned int nr_leaves_on_tree; -+}; -+ -+typedef int32_t key_serial_t; -+ -+typedef uint32_t key_perm_t; -+ -+struct key_type; -+ -+struct keyring_index_key { -+ struct key_type *type; -+ const char *description; -+ size_t desc_len; -+}; -+ -+typedef int (*request_key_actor_t)(struct key *, void *); -+ -+struct key_preparsed_payload; -+ -+struct key_match_data; -+ -+struct key_restriction; -+ -+struct key_type { -+ const char *name; -+ size_t def_datalen; -+ int (*vet_description)(const char *); -+ int (*preparse)(struct key_preparsed_payload *); -+ void (*free_preparse)(struct key_preparsed_payload *); -+ int (*instantiate)(struct key *, struct key_preparsed_payload *); -+ int (*update)(struct key *, struct key_preparsed_payload *); -+ int (*match_preparse)(struct key_match_data *); -+ void (*match_free)(struct key_match_data *); -+ void (*revoke)(struct key *); -+ void (*destroy)(struct key *); -+ void (*describe)(const struct key *, struct seq_file *); -+ long int (*read)(const struct key *, char *, size_t); -+ request_key_actor_t request_key; -+ struct key_restriction * (*lookup_restriction)(const char *); -+ struct list_head link; -+ struct lock_class_key lock_class; -+}; -+ -+union key_payload { -+ void *rcu_data0; -+ void *data[4]; -+}; -+ -+typedef int (*key_restrict_link_func_t)(struct key *, const struct key_type *, const union key_payload *, struct key *); -+ -+struct key_user; -+ -+struct key { -+ refcount_t usage; -+ key_serial_t serial; -+ union { -+ struct list_head graveyard_link; -+ struct rb_node serial_node; -+ }; -+ struct rw_semaphore sem; -+ struct key_user *user; -+ void *security; -+ union { -+ time64_t expiry; -+ time64_t revoked_at; -+ }; -+ time64_t last_used_at; -+ kuid_t uid; -+ kgid_t gid; -+ key_perm_t perm; -+ short unsigned int quotalen; -+ short unsigned int datalen; -+ short int state; -+ long unsigned int flags; -+ union { -+ struct keyring_index_key index_key; -+ struct { -+ struct key_type *type; -+ char *description; -+ }; -+ }; -+ union { -+ union key_payload payload; -+ struct { -+ struct list_head name_link; -+ struct assoc_array keys; -+ }; -+ }; -+ struct key_restriction *restrict_link; -+}; -+ -+struct key_restriction { -+ key_restrict_link_func_t check; -+ struct key *key; -+ struct key_type *keytype; -+}; -+ -+struct stack_trace { -+ unsigned int nr_entries; -+ unsigned int max_entries; -+ long unsigned int *entries; -+ int skip; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct group_info { -+ atomic_t usage; -+ int ngroups; -+ kgid_t gid[0]; -+}; -+ -+struct ring_buffer_event { -+ u32 type_len: 5; -+ u32 time_delta: 27; -+ u32 array[0]; -+}; -+ -+struct seq_buf { -+ char *buffer; -+ size_t size; -+ size_t len; -+ loff_t readpos; -+}; -+ -+struct trace_seq { -+ unsigned char buffer[4096]; -+ struct seq_buf seq; -+ int full; -+}; -+ -+enum ctx_state { -+ CONTEXT_DISABLED = -1, -+ CONTEXT_KERNEL = 0, -+ CONTEXT_USER = 1, -+ CONTEXT_GUEST = 2, -+}; -+ -+struct context_tracking { -+ bool active; -+ int recursion; -+ enum ctx_state state; -+}; -+ -+union perf_mem_data_src { -+ __u64 val; -+ struct { -+ __u64 mem_op: 5; -+ __u64 mem_lvl: 14; -+ __u64 mem_snoop: 5; -+ __u64 mem_lock: 2; -+ __u64 mem_dtlb: 7; -+ __u64 mem_lvl_num: 4; -+ __u64 mem_remote: 1; -+ __u64 mem_snoopx: 2; -+ __u64 mem_rsvd: 24; -+ }; -+}; -+ -+struct perf_branch_entry { -+ __u64 from; -+ __u64 to; -+ __u64 mispred: 1; -+ __u64 predicted: 1; -+ __u64 in_tx: 1; -+ __u64 abort: 1; -+ __u64 cycles: 16; -+ __u64 type: 4; -+ __u64 reserved: 40; -+}; -+ -+struct taskstats { -+ __u16 version; -+ __u32 ac_exitcode; -+ __u8 ac_flag; -+ __u8 ac_nice; -+ __u64 cpu_count; -+ __u64 cpu_delay_total; -+ __u64 blkio_count; -+ __u64 blkio_delay_total; -+ __u64 swapin_count; -+ __u64 swapin_delay_total; -+ __u64 cpu_run_real_total; -+ __u64 cpu_run_virtual_total; -+ char ac_comm[32]; -+ __u8 ac_sched; -+ __u8 ac_pad[3]; -+ int: 32; -+ __u32 ac_uid; -+ __u32 ac_gid; -+ __u32 ac_pid; -+ __u32 ac_ppid; -+ __u32 ac_btime; -+ __u64 ac_etime; -+ __u64 ac_utime; -+ __u64 ac_stime; -+ __u64 ac_minflt; -+ __u64 ac_majflt; -+ __u64 coremem; -+ __u64 virtmem; -+ __u64 hiwater_rss; -+ __u64 hiwater_vm; -+ __u64 read_char; -+ __u64 write_char; -+ __u64 read_syscalls; -+ __u64 write_syscalls; -+ __u64 read_bytes; -+ __u64 write_bytes; -+ __u64 cancelled_write_bytes; -+ __u64 nvcsw; -+ __u64 nivcsw; -+ __u64 ac_utimescaled; -+ __u64 ac_stimescaled; -+ __u64 cpu_scaled_run_real_total; -+ __u64 freepages_count; -+ __u64 freepages_delay_total; -+}; -+ -+struct new_utsname { -+ char sysname[65]; -+ char nodename[65]; -+ char release[65]; -+ char version[65]; -+ char machine[65]; -+ char domainname[65]; -+}; -+ -+struct uts_namespace { -+ struct kref kref; -+ struct new_utsname name; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct ns_common ns; -+}; -+ -+struct cgroup_namespace { -+ refcount_t count; -+ struct ns_common ns; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct css_set *root_cset; -+}; -+ -+struct proc_ns_operations { -+ const char *name; -+ const char *real_ns_name; -+ int type; -+ struct ns_common * (*get)(struct task_struct *); -+ void (*put)(struct ns_common *); -+ int (*install)(struct nsproxy *, struct ns_common *); -+ struct user_namespace * (*owner)(struct ns_common *); -+ struct ns_common * (*get_parent)(struct ns_common *); -+}; -+ -+struct ucounts { -+ struct hlist_node node; -+ struct user_namespace *ns; -+ kuid_t uid; -+ int count; -+ atomic_t ucount[9]; -+}; -+ -+struct perf_guest_info_callbacks { -+ int (*is_in_guest)(); -+ int (*is_user_mode)(); -+ long unsigned int (*get_guest_ip)(); -+}; -+ -+struct perf_cpu_context; -+ -+struct pmu { -+ struct list_head entry; -+ struct module *module; -+ struct device *dev; -+ const struct attribute_group **attr_groups; -+ const char *name; -+ int type; -+ int capabilities; -+ int *pmu_disable_count; -+ struct perf_cpu_context *pmu_cpu_context; -+ atomic_t exclusive_cnt; -+ int task_ctx_nr; -+ int hrtimer_interval_ms; -+ unsigned int nr_addr_filters; -+ void (*pmu_enable)(struct pmu *); -+ void (*pmu_disable)(struct pmu *); -+ int (*event_init)(struct perf_event *); -+ void (*event_mapped)(struct perf_event *, struct mm_struct *); -+ void (*event_unmapped)(struct perf_event *, struct mm_struct *); -+ int (*add)(struct perf_event *, int); -+ void (*del)(struct perf_event *, int); -+ void (*start)(struct perf_event *, int); -+ void (*stop)(struct perf_event *, int); -+ void (*read)(struct perf_event *); -+ void (*start_txn)(struct pmu *, unsigned int); -+ int (*commit_txn)(struct pmu *); -+ void (*cancel_txn)(struct pmu *); -+ int (*event_idx)(struct perf_event *); -+ void (*sched_task)(struct perf_event_context *, bool); -+ size_t task_ctx_size; -+ void * (*setup_aux)(struct perf_event *, void **, int, bool); -+ void (*free_aux)(void *); -+ int (*addr_filters_validate)(struct list_head *); -+ void (*addr_filters_sync)(struct perf_event *); -+ int (*filter_match)(struct perf_event *); -+ int (*check_period)(struct perf_event *, u64); -+}; -+ -+struct iovec { -+ void *iov_base; -+ __kernel_size_t iov_len; -+}; -+ -+struct kvec { -+ void *iov_base; -+ size_t iov_len; -+}; -+ -+enum ftrace_tracing_type_t { -+ FTRACE_TYPE_ENTER = 0, -+ FTRACE_TYPE_RETURN = 1, -+}; -+ -+enum ftrace_bug_type { -+ FTRACE_BUG_UNKNOWN = 0, -+ FTRACE_BUG_INIT = 1, -+ FTRACE_BUG_NOP = 2, -+ FTRACE_BUG_CALL = 3, -+ FTRACE_BUG_UPDATE = 4, -+}; -+ -+struct ftrace_graph_ent { -+ long unsigned int func; -+ int depth; -+} __attribute__((packed)); -+ -+struct ftrace_graph_ret { -+ long unsigned int func; -+ long unsigned int overrun; -+ long long unsigned int calltime; -+ long long unsigned int rettime; -+ int depth; -+} __attribute__((packed)); -+ -+typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); -+ -+typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); -+ -+typedef u32 phandle; -+ -+struct property; -+ -+struct device_node { -+ const char *name; -+ const char *type; -+ phandle phandle; -+ const char *full_name; -+ struct fwnode_handle fwnode; -+ struct property *properties; -+ struct property *deadprops; -+ struct device_node *parent; -+ struct device_node *child; -+ struct device_node *sibling; -+ long unsigned int _flags; -+ void *data; -+}; -+ -+struct rcu_device { -+ struct device dev; -+ struct callback_head callback_head; -+}; -+ -+enum cpuhp_state { -+ CPUHP_INVALID = -1, -+ CPUHP_OFFLINE = 0, -+ CPUHP_CREATE_THREADS = 1, -+ CPUHP_PERF_PREPARE = 2, -+ CPUHP_PERF_X86_PREPARE = 3, -+ CPUHP_PERF_X86_AMD_UNCORE_PREP = 4, -+ CPUHP_PERF_POWER = 5, -+ CPUHP_PERF_SUPERH = 6, -+ CPUHP_X86_HPET_DEAD = 7, -+ CPUHP_X86_APB_DEAD = 8, -+ CPUHP_X86_MCE_DEAD = 9, -+ CPUHP_VIRT_NET_DEAD = 10, -+ CPUHP_SLUB_DEAD = 11, -+ CPUHP_MM_WRITEBACK_DEAD = 12, -+ CPUHP_MM_VMSTAT_DEAD = 13, -+ CPUHP_SOFTIRQ_DEAD = 14, -+ CPUHP_NET_MVNETA_DEAD = 15, -+ CPUHP_CPUIDLE_DEAD = 16, -+ CPUHP_ARM64_FPSIMD_DEAD = 17, -+ CPUHP_ARM_OMAP_WAKE_DEAD = 18, -+ CPUHP_IRQ_POLL_DEAD = 19, -+ CPUHP_BLOCK_SOFTIRQ_DEAD = 20, -+ CPUHP_ACPI_CPUDRV_DEAD = 21, -+ CPUHP_S390_PFAULT_DEAD = 22, -+ CPUHP_BLK_MQ_DEAD = 23, -+ CPUHP_FS_BUFF_DEAD = 24, -+ CPUHP_PRINTK_DEAD = 25, -+ CPUHP_MM_MEMCQ_DEAD = 26, -+ CPUHP_PERCPU_CNT_DEAD = 27, -+ CPUHP_RADIX_DEAD = 28, -+ CPUHP_PAGE_ALLOC_DEAD = 29, -+ CPUHP_NET_DEV_DEAD = 30, -+ CPUHP_PCI_XGENE_DEAD = 31, -+ CPUHP_IOMMU_INTEL_DEAD = 32, -+ CPUHP_LUSTRE_CFS_DEAD = 33, -+ CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 34, -+ CPUHP_WORKQUEUE_PREP = 35, -+ CPUHP_POWER_NUMA_PREPARE = 36, -+ CPUHP_HRTIMERS_PREPARE = 37, -+ CPUHP_PROFILE_PREPARE = 38, -+ CPUHP_X2APIC_PREPARE = 39, -+ CPUHP_SMPCFD_PREPARE = 40, -+ CPUHP_RELAY_PREPARE = 41, -+ CPUHP_SLAB_PREPARE = 42, -+ CPUHP_MD_RAID5_PREPARE = 43, -+ CPUHP_RCUTREE_PREP = 44, -+ CPUHP_CPUIDLE_COUPLED_PREPARE = 45, -+ CPUHP_POWERPC_PMAC_PREPARE = 46, -+ CPUHP_POWERPC_MMU_CTX_PREPARE = 47, -+ CPUHP_XEN_PREPARE = 48, -+ CPUHP_XEN_EVTCHN_PREPARE = 49, -+ CPUHP_ARM_SHMOBILE_SCU_PREPARE = 50, -+ CPUHP_SH_SH3X_PREPARE = 51, -+ CPUHP_NET_FLOW_PREPARE = 52, -+ CPUHP_TOPOLOGY_PREPARE = 53, -+ CPUHP_NET_IUCV_PREPARE = 54, -+ CPUHP_ARM_BL_PREPARE = 55, -+ CPUHP_TRACE_RB_PREPARE = 56, -+ CPUHP_MM_ZS_PREPARE = 57, -+ CPUHP_MM_ZSWP_MEM_PREPARE = 58, -+ CPUHP_MM_ZSWP_POOL_PREPARE = 59, -+ CPUHP_KVM_PPC_BOOK3S_PREPARE = 60, -+ CPUHP_ZCOMP_PREPARE = 61, -+ CPUHP_TIMERS_PREPARE = 62, -+ CPUHP_MIPS_SOC_PREPARE = 63, -+ CPUHP_BP_PREPARE_DYN = 64, -+ CPUHP_BP_PREPARE_DYN_END = 84, -+ CPUHP_BRINGUP_CPU = 85, -+ CPUHP_AP_IDLE_DEAD = 86, -+ CPUHP_AP_OFFLINE = 87, -+ CPUHP_AP_SCHED_STARTING = 88, -+ CPUHP_AP_RCUTREE_DYING = 89, -+ CPUHP_AP_IRQ_GIC_STARTING = 90, -+ CPUHP_AP_IRQ_HIP04_STARTING = 91, -+ CPUHP_AP_IRQ_ARMADA_XP_STARTING = 92, -+ CPUHP_AP_IRQ_BCM2836_STARTING = 93, -+ CPUHP_AP_IRQ_MIPS_GIC_STARTING = 94, -+ CPUHP_AP_ARM_MVEBU_COHERENCY = 95, -+ CPUHP_AP_MICROCODE_LOADER = 96, -+ CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 97, -+ CPUHP_AP_PERF_X86_STARTING = 98, -+ CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 99, -+ CPUHP_AP_PERF_X86_CQM_STARTING = 100, -+ CPUHP_AP_PERF_X86_CSTATE_STARTING = 101, -+ CPUHP_AP_PERF_XTENSA_STARTING = 102, -+ CPUHP_AP_MIPS_OP_LOONGSON3_STARTING = 103, -+ CPUHP_AP_ARM_SDEI_STARTING = 104, -+ CPUHP_AP_ARM_VFP_STARTING = 105, -+ CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 106, -+ CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 107, -+ CPUHP_AP_PERF_ARM_ACPI_STARTING = 108, -+ CPUHP_AP_PERF_ARM_STARTING = 109, -+ CPUHP_AP_ARM_L2X0_STARTING = 110, -+ CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING = 111, -+ CPUHP_AP_ARM_ARCH_TIMER_STARTING = 112, -+ CPUHP_AP_ARM_GLOBAL_TIMER_STARTING = 113, -+ CPUHP_AP_JCORE_TIMER_STARTING = 114, -+ CPUHP_AP_ARM_TWD_STARTING = 115, -+ CPUHP_AP_QCOM_TIMER_STARTING = 116, -+ CPUHP_AP_ARMADA_TIMER_STARTING = 117, -+ CPUHP_AP_MARCO_TIMER_STARTING = 118, -+ CPUHP_AP_MIPS_GIC_TIMER_STARTING = 119, -+ CPUHP_AP_ARC_TIMER_STARTING = 120, -+ CPUHP_AP_RISCV_TIMER_STARTING = 121, -+ CPUHP_AP_KVM_STARTING = 122, -+ CPUHP_AP_KVM_ARM_VGIC_INIT_STARTING = 123, -+ CPUHP_AP_KVM_ARM_VGIC_STARTING = 124, -+ CPUHP_AP_KVM_ARM_TIMER_STARTING = 125, -+ CPUHP_AP_DUMMY_TIMER_STARTING = 126, -+ CPUHP_AP_ARM_XEN_STARTING = 127, -+ CPUHP_AP_ARM_CORESIGHT_STARTING = 128, -+ CPUHP_AP_ARM64_ISNDEP_STARTING = 129, -+ CPUHP_AP_SMPCFD_DYING = 130, -+ CPUHP_AP_X86_TBOOT_DYING = 131, -+ CPUHP_AP_ARM_CACHE_B15_RAC_DYING = 132, -+ CPUHP_AP_ONLINE = 133, -+ CPUHP_TEARDOWN_CPU = 134, -+ CPUHP_AP_ONLINE_IDLE = 135, -+ CPUHP_AP_SMPBOOT_THREADS = 136, -+ CPUHP_AP_X86_VDSO_VMA_ONLINE = 137, -+ CPUHP_AP_IRQ_AFFINITY_ONLINE = 138, -+ CPUHP_AP_ARM_MVEBU_SYNC_CLOCKS = 139, -+ CPUHP_AP_PERF_ONLINE = 140, -+ CPUHP_AP_PERF_X86_ONLINE = 141, -+ CPUHP_AP_PERF_X86_UNCORE_ONLINE = 142, -+ CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE = 143, -+ CPUHP_AP_PERF_X86_AMD_POWER_ONLINE = 144, -+ CPUHP_AP_PERF_X86_RAPL_ONLINE = 145, -+ CPUHP_AP_PERF_X86_CQM_ONLINE = 146, -+ CPUHP_AP_PERF_X86_CSTATE_ONLINE = 147, -+ CPUHP_AP_PERF_S390_CF_ONLINE = 148, -+ CPUHP_AP_PERF_S390_SF_ONLINE = 149, -+ CPUHP_AP_PERF_ARM_CCI_ONLINE = 150, -+ CPUHP_AP_PERF_ARM_CCN_ONLINE = 151, -+ CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 152, -+ CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 153, -+ CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 154, -+ CPUHP_AP_PERF_ARM_L2X0_ONLINE = 155, -+ CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 156, -+ CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 157, -+ CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 158, -+ CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 159, -+ CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 160, -+ CPUHP_AP_WATCHDOG_ONLINE = 161, -+ CPUHP_AP_WORKQUEUE_ONLINE = 162, -+ CPUHP_AP_RCUTREE_ONLINE = 163, -+ CPUHP_AP_BASE_CACHEINFO_ONLINE = 164, -+ CPUHP_AP_ONLINE_DYN = 165, -+ CPUHP_AP_ONLINE_DYN_END = 195, -+ CPUHP_AP_X86_HPET_ONLINE = 196, -+ CPUHP_AP_X86_KVM_CLK_ONLINE = 197, -+ CPUHP_AP_ACTIVE = 198, -+ CPUHP_ONLINE = 199, -+}; -+ -+struct perf_regs { -+ __u64 abi; -+ struct pt_regs *regs; -+}; -+ -+struct kernel_cpustat { -+ u64 cpustat[12]; -+}; -+ -+struct kernel_stat { -+ long unsigned int irqs_sum; -+ unsigned int softirqs[10]; -+}; -+ -+struct u64_stats_sync {}; -+ -+struct cgroup_bpf { -+ struct bpf_prog_array *effective[21]; -+ struct list_head progs[21]; -+ u32 flags[21]; -+ struct bpf_prog_array *inactive; -+}; -+ -+struct cgroup_base_stat { -+ struct task_cputime cputime; -+}; -+ -+struct cgroup_root; -+ -+struct cgroup_rstat_cpu; -+ -+struct cgroup { -+ struct cgroup_subsys_state self; -+ long unsigned int flags; -+ int id; -+ int level; -+ int max_depth; -+ int nr_descendants; -+ int nr_dying_descendants; -+ int max_descendants; -+ int nr_populated_csets; -+ int nr_populated_domain_children; -+ int nr_populated_threaded_children; -+ int nr_threaded_children; -+ struct kernfs_node *kn; -+ struct cgroup_file procs_file; -+ struct cgroup_file events_file; -+ u16 subtree_control; -+ u16 subtree_ss_mask; -+ u16 old_subtree_control; -+ u16 old_subtree_ss_mask; -+ struct cgroup_subsys_state *subsys[14]; -+ struct cgroup_root *root; -+ struct list_head cset_links; -+ struct list_head e_csets[14]; -+ struct cgroup *dom_cgrp; -+ struct cgroup *old_dom_cgrp; -+ struct cgroup_rstat_cpu *rstat_cpu; -+ struct list_head rstat_css_list; -+ struct cgroup_base_stat pending_bstat; -+ struct cgroup_base_stat bstat; -+ struct prev_cputime prev_cputime; -+ struct list_head pidlists; -+ struct mutex pidlist_mutex; -+ wait_queue_head_t offline_waitq; -+ struct work_struct release_agent_work; -+ struct cgroup_bpf bpf; -+ atomic_t congestion_count; -+ int ancestor_ids[0]; -+}; -+ -+struct cgroup_taskset; -+ -+struct cftype; -+ -+struct cgroup_subsys { -+ struct cgroup_subsys_state * (*css_alloc)(struct cgroup_subsys_state *); -+ int (*css_online)(struct cgroup_subsys_state *); -+ void (*css_offline)(struct cgroup_subsys_state *); -+ void (*css_released)(struct cgroup_subsys_state *); -+ void (*css_free)(struct cgroup_subsys_state *); -+ void (*css_reset)(struct cgroup_subsys_state *); -+ void (*css_rstat_flush)(struct cgroup_subsys_state *, int); -+ int (*css_extra_stat_show)(struct seq_file *, struct cgroup_subsys_state *); -+ int (*can_attach)(struct cgroup_taskset *); -+ void (*cancel_attach)(struct cgroup_taskset *); -+ void (*attach)(struct cgroup_taskset *); -+ void (*post_attach)(); -+ int (*can_fork)(struct task_struct *); -+ void (*cancel_fork)(struct task_struct *); -+ void (*fork)(struct task_struct *); -+ void (*exit)(struct task_struct *); -+ void (*release)(struct task_struct *); -+ void (*bind)(struct cgroup_subsys_state *); -+ bool early_init: 1; -+ bool implicit_on_dfl: 1; -+ bool threaded: 1; -+ bool broken_hierarchy: 1; -+ bool warned_broken_hierarchy: 1; -+ int id; -+ const char *name; -+ const char *legacy_name; -+ struct cgroup_root *root; -+ struct idr css_idr; -+ struct list_head cfts; -+ struct cftype *dfl_cftypes; -+ struct cftype *legacy_cftypes; -+ unsigned int depends_on; -+}; -+ -+struct cgroup_rstat_cpu { -+ struct u64_stats_sync bsync; -+ struct cgroup_base_stat bstat; -+ struct cgroup_base_stat last_bstat; -+ struct cgroup *updated_children; -+ struct cgroup *updated_next; -+}; -+ -+struct cgroup_root { -+ struct kernfs_root *kf_root; -+ unsigned int subsys_mask; -+ int hierarchy_id; -+ struct cgroup cgrp; -+ int cgrp_ancestor_id_storage; -+ atomic_t nr_cgrps; -+ struct list_head root_list; -+ unsigned int flags; -+ struct idr cgroup_idr; -+ char release_agent_path[4096]; -+ char name[64]; -+}; -+ -+struct cftype { -+ char name[64]; -+ long unsigned int private; -+ size_t max_write_len; -+ unsigned int flags; -+ unsigned int file_offset; -+ struct cgroup_subsys *ss; -+ struct list_head node; -+ struct kernfs_ops *kf_ops; -+ int (*open)(struct kernfs_open_file *); -+ void (*release)(struct kernfs_open_file *); -+ u64 (*read_u64)(struct cgroup_subsys_state *, struct cftype *); -+ s64 (*read_s64)(struct cgroup_subsys_state *, struct cftype *); -+ int (*seq_show)(struct seq_file *, void *); -+ void * (*seq_start)(struct seq_file *, loff_t *); -+ void * (*seq_next)(struct seq_file *, void *, loff_t *); -+ void (*seq_stop)(struct seq_file *, void *); -+ int (*write_u64)(struct cgroup_subsys_state *, struct cftype *, u64); -+ int (*write_s64)(struct cgroup_subsys_state *, struct cftype *, s64); -+ ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); -+}; -+ -+struct perf_callchain_entry { -+ __u64 nr; -+ __u64 ip[0]; -+}; -+ -+typedef long unsigned int (*perf_copy_f)(void *, const void *, long unsigned int, long unsigned int); -+ -+struct perf_raw_frag { -+ union { -+ struct perf_raw_frag *next; -+ long unsigned int pad; -+ }; -+ perf_copy_f copy; -+ void *data; -+ u32 size; -+} __attribute__((packed)); -+ -+struct perf_raw_record { -+ struct perf_raw_frag frag; -+ u32 size; -+}; -+ -+struct perf_branch_stack { -+ __u64 nr; -+ struct perf_branch_entry entries[0]; -+}; -+ -+struct perf_cpu_context { -+ struct perf_event_context ctx; -+ struct perf_event_context *task_ctx; -+ int active_oncpu; -+ int exclusive; -+ raw_spinlock_t hrtimer_lock; -+ struct hrtimer hrtimer; -+ ktime_t hrtimer_interval; -+ unsigned int hrtimer_active; -+ struct perf_cgroup *cgrp; -+ struct list_head cgrp_cpuctx_entry; -+ struct list_head sched_cb_entry; -+ int sched_cb_usage; -+ int online; -+}; -+ -+struct perf_addr_filter_range { -+ long unsigned int start; -+ long unsigned int size; -+}; -+ -+struct perf_sample_data { -+ u64 addr; -+ struct perf_raw_record *raw; -+ struct perf_branch_stack *br_stack; -+ u64 period; -+ u64 weight; -+ u64 txn; -+ union perf_mem_data_src data_src; -+ u64 type; -+ u64 ip; -+ struct { -+ u32 pid; -+ u32 tid; -+ } tid_entry; -+ u64 time; -+ u64 id; -+ u64 stream_id; -+ struct { -+ u32 cpu; -+ u32 reserved; -+ } cpu_entry; -+ struct perf_callchain_entry *callchain; -+ struct perf_regs regs_user; -+ struct pt_regs regs_user_copy; -+ struct perf_regs regs_intr; -+ u64 stack_user_size; -+ u64 phys_addr; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct perf_cgroup_info; -+ -+struct perf_cgroup { -+ struct cgroup_subsys_state css; -+ struct perf_cgroup_info *info; -+}; -+ -+struct perf_cgroup_info { -+ u64 time; -+ u64 timestamp; -+}; -+ -+struct trace_entry { -+ short unsigned int type; -+ unsigned char flags; -+ unsigned char preempt_count; -+ int pid; -+}; -+ -+struct trace_array; -+ -+struct tracer; -+ -+struct trace_buffer; -+ -+struct ring_buffer_iter; -+ -+struct trace_iterator { -+ struct trace_array *tr; -+ struct tracer *trace; -+ struct trace_buffer *trace_buffer; -+ void *private; -+ int cpu_file; -+ struct mutex mutex; -+ struct ring_buffer_iter **buffer_iter; -+ long unsigned int iter_flags; -+ struct trace_seq tmp_seq; -+ cpumask_var_t started; -+ bool snapshot; -+ struct trace_seq seq; -+ struct trace_entry *ent; -+ long unsigned int lost_events; -+ int leftover; -+ int ent_size; -+ int cpu; -+ u64 ts; -+ loff_t pos; -+ long int idx; -+}; -+ -+enum print_line_t { -+ TRACE_TYPE_PARTIAL_LINE = 0, -+ TRACE_TYPE_HANDLED = 1, -+ TRACE_TYPE_UNHANDLED = 2, -+ TRACE_TYPE_NO_CONSUME = 3, -+}; -+ -+typedef enum print_line_t (*trace_print_func)(struct trace_iterator *, int, struct trace_event *); -+ -+struct trace_event_functions { -+ trace_print_func trace; -+ trace_print_func raw; -+ trace_print_func hex; -+ trace_print_func binary; -+}; -+ -+enum trace_reg { -+ TRACE_REG_REGISTER = 0, -+ TRACE_REG_UNREGISTER = 1, -+ TRACE_REG_PERF_REGISTER = 2, -+ TRACE_REG_PERF_UNREGISTER = 3, -+ TRACE_REG_PERF_OPEN = 4, -+ TRACE_REG_PERF_CLOSE = 5, -+ TRACE_REG_PERF_ADD = 6, -+ TRACE_REG_PERF_DEL = 7, -+}; -+ -+struct trace_event_class { -+ const char *system; -+ void *probe; -+ void *perf_probe; -+ int (*reg)(struct trace_event_call *, enum trace_reg, void *); -+ int (*define_fields)(struct trace_event_call *); -+ struct list_head * (*get_fields)(struct trace_event_call *); -+ struct list_head fields; -+ int (*raw_init)(struct trace_event_call *); -+}; -+ -+struct trace_event_file; -+ -+struct trace_event_buffer { -+ struct ring_buffer *buffer; -+ struct ring_buffer_event *event; -+ struct trace_event_file *trace_file; -+ void *entry; -+ long unsigned int flags; -+ int pc; -+}; -+ -+struct trace_subsystem_dir; -+ -+struct trace_event_file { -+ struct list_head list; -+ struct trace_event_call *event_call; -+ struct event_filter *filter; -+ struct dentry *dir; -+ struct trace_array *tr; -+ struct trace_subsystem_dir *system; -+ struct list_head triggers; -+ long unsigned int flags; -+ atomic_t sm_ref; -+ atomic_t tm_ref; -+}; -+ -+enum { -+ TRACE_EVENT_FL_FILTERED = 1, -+ TRACE_EVENT_FL_CAP_ANY = 2, -+ TRACE_EVENT_FL_NO_SET_FILTER = 4, -+ TRACE_EVENT_FL_IGNORE_ENABLE = 8, -+ TRACE_EVENT_FL_TRACEPOINT = 16, -+ TRACE_EVENT_FL_KPROBE = 32, -+ TRACE_EVENT_FL_UPROBE = 64, -+}; -+ -+enum { -+ EVENT_FILE_FL_ENABLED = 1, -+ EVENT_FILE_FL_RECORDED_CMD = 2, -+ EVENT_FILE_FL_RECORDED_TGID = 4, -+ EVENT_FILE_FL_FILTERED = 8, -+ EVENT_FILE_FL_NO_SET_FILTER = 16, -+ EVENT_FILE_FL_SOFT_MODE = 32, -+ EVENT_FILE_FL_SOFT_DISABLED = 64, -+ EVENT_FILE_FL_TRIGGER_MODE = 128, -+ EVENT_FILE_FL_TRIGGER_COND = 256, -+ EVENT_FILE_FL_PID_FILTER = 512, -+ EVENT_FILE_FL_WAS_ENABLED = 1024, -+}; -+ -+enum { -+ FILTER_OTHER = 0, -+ FILTER_STATIC_STRING = 1, -+ FILTER_DYN_STRING = 2, -+ FILTER_PTR_STRING = 3, -+ FILTER_TRACE_FN = 4, -+ FILTER_COMM = 5, -+ FILTER_CPU = 6, -+}; -+ -+struct acpi_table_header { -+ char signature[4]; -+ u32 length; -+ u8 revision; -+ u8 checksum; -+ char oem_id[6]; -+ char oem_table_id[8]; -+ u32 oem_revision; -+ char asl_compiler_id[4]; -+ u32 asl_compiler_revision; -+}; -+ -+struct acpi_generic_address { -+ u8 space_id; -+ u8 bit_width; -+ u8 bit_offset; -+ u8 access_width; -+ u64 address; -+} __attribute__((packed)); -+ -+struct acpi_table_fadt { -+ struct acpi_table_header header; -+ u32 facs; -+ u32 dsdt; -+ u8 model; -+ u8 preferred_profile; -+ u16 sci_interrupt; -+ u32 smi_command; -+ u8 acpi_enable; -+ u8 acpi_disable; -+ u8 s4_bios_request; -+ u8 pstate_control; -+ u32 pm1a_event_block; -+ u32 pm1b_event_block; -+ u32 pm1a_control_block; -+ u32 pm1b_control_block; -+ u32 pm2_control_block; -+ u32 pm_timer_block; -+ u32 gpe0_block; -+ u32 gpe1_block; -+ u8 pm1_event_length; -+ u8 pm1_control_length; -+ u8 pm2_control_length; -+ u8 pm_timer_length; -+ u8 gpe0_block_length; -+ u8 gpe1_block_length; -+ u8 gpe1_base; -+ u8 cst_control; -+ u16 c2_latency; -+ u16 c3_latency; -+ u16 flush_size; -+ u16 flush_stride; -+ u8 duty_offset; -+ u8 duty_width; -+ u8 day_alarm; -+ u8 month_alarm; -+ u8 century; -+ u16 boot_flags; -+ u8 reserved; -+ u32 flags; -+ struct acpi_generic_address reset_register; -+ u8 reset_value; -+ u16 arm_boot_flags; -+ u8 minor_revision; -+ u64 Xfacs; -+ u64 Xdsdt; -+ struct acpi_generic_address xpm1a_event_block; -+ struct acpi_generic_address xpm1b_event_block; -+ struct acpi_generic_address xpm1a_control_block; -+ struct acpi_generic_address xpm1b_control_block; -+ struct acpi_generic_address xpm2_control_block; -+ struct acpi_generic_address xpm_timer_block; -+ struct acpi_generic_address xgpe0_block; -+ struct acpi_generic_address xgpe1_block; -+ struct acpi_generic_address sleep_control; -+ struct acpi_generic_address sleep_status; -+ u64 hypervisor_id; -+} __attribute__((packed)); -+ -+enum acpi_irq_model_id { -+ ACPI_IRQ_MODEL_PIC = 0, -+ ACPI_IRQ_MODEL_IOAPIC = 1, -+ ACPI_IRQ_MODEL_IOSAPIC = 2, -+ ACPI_IRQ_MODEL_PLATFORM = 3, -+ ACPI_IRQ_MODEL_GIC = 4, -+ ACPI_IRQ_MODEL_COUNT = 5, -+}; -+ -+enum con_scroll { -+ SM_UP = 0, -+ SM_DOWN = 1, -+}; -+ -+struct vc_data; -+ -+struct console_font; -+ -+struct consw { -+ struct module *owner; -+ const char * (*con_startup)(); -+ void (*con_init)(struct vc_data *, int); -+ void (*con_deinit)(struct vc_data *); -+ void (*con_clear)(struct vc_data *, int, int, int, int); -+ void (*con_putc)(struct vc_data *, int, int, int); -+ void (*con_putcs)(struct vc_data *, const short unsigned int *, int, int, int); -+ void (*con_cursor)(struct vc_data *, int); -+ bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); -+ int (*con_switch)(struct vc_data *); -+ int (*con_blank)(struct vc_data *, int, int); -+ int (*con_font_set)(struct vc_data *, struct console_font *, unsigned int); -+ int (*con_font_get)(struct vc_data *, struct console_font *); -+ int (*con_font_default)(struct vc_data *, struct console_font *, char *); -+ int (*con_font_copy)(struct vc_data *, int); -+ int (*con_resize)(struct vc_data *, unsigned int, unsigned int, unsigned int); -+ void (*con_set_palette)(struct vc_data *, const unsigned char *); -+ void (*con_scrolldelta)(struct vc_data *, int); -+ int (*con_set_origin)(struct vc_data *); -+ void (*con_save_screen)(struct vc_data *); -+ u8 (*con_build_attr)(struct vc_data *, u8, u8, u8, u8, u8, u8); -+ void (*con_invert_region)(struct vc_data *, u16 *, int); -+ u16 * (*con_screen_pos)(struct vc_data *, int); -+ long unsigned int (*con_getxy)(struct vc_data *, long unsigned int, int *, int *); -+ void (*con_flush_scrollback)(struct vc_data *); -+ int (*con_debug_enter)(struct vc_data *); -+ int (*con_debug_leave)(struct vc_data *); -+}; -+ -+struct tty_driver; -+ -+struct console { -+ char name[16]; -+ void (*write)(struct console *, const char *, unsigned int); -+ int (*read)(struct console *, char *, unsigned int); -+ struct tty_driver * (*device)(struct console *, int *); -+ void (*unblank)(); -+ int (*setup)(struct console *, char *); -+ int (*match)(struct console *, char *, int, char *); -+ short int flags; -+ short int index; -+ int cflag; -+ void *data; -+ struct console *next; -+}; -+ -+enum wb_stat_item { -+ WB_RECLAIMABLE = 0, -+ WB_WRITEBACK = 1, -+ WB_DIRTIED = 2, -+ WB_WRITTEN = 3, -+ NR_WB_STAT_ITEMS = 4, -+}; -+ -+struct bdi_writeback_congested { -+ long unsigned int state; -+ refcount_t refcnt; -+ struct backing_dev_info *__bdi; -+ int blkcg_id; -+ struct rb_node rb_node; -+}; -+ -+struct bio_integrity_payload { -+ struct bio *bip_bio; -+ struct bvec_iter bip_iter; -+ short unsigned int bip_slab; -+ short unsigned int bip_vcnt; -+ short unsigned int bip_max_vcnt; -+ short unsigned int bip_flags; -+ struct work_struct bip_work; -+ struct bio_vec *bip_vec; -+ struct bio_vec bip_inline_vecs[0]; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+enum stat_group { -+ STAT_READ = 0, -+ STAT_WRITE = 1, -+ STAT_DISCARD = 2, -+ NR_STAT_GROUPS = 3, -+}; -+ -+enum cpu_idle_type { -+ CPU_IDLE = 0, -+ CPU_NOT_IDLE = 1, -+ CPU_NEWLY_IDLE = 2, -+ CPU_MAX_IDLE_TYPES = 3, -+}; -+ -+enum reboot_mode { -+ REBOOT_COLD = 0, -+ REBOOT_WARM = 1, -+ REBOOT_HARD = 2, -+ REBOOT_SOFT = 3, -+ REBOOT_GPIO = 4, -+}; -+ -+enum reboot_type { -+ BOOT_TRIPLE = 116, -+ BOOT_KBD = 107, -+ BOOT_BIOS = 98, -+ BOOT_ACPI = 97, -+ BOOT_EFI = 101, -+ BOOT_CF9_FORCE = 112, -+ BOOT_CF9_SAFE = 113, -+}; -+ -+typedef long unsigned int efi_status_t; -+ -+typedef u8 efi_bool_t; -+ -+typedef u16 efi_char16_t; -+ -+typedef u64 efi_physical_addr_t; -+ -+typedef void *efi_handle_t; -+ -+typedef guid_t efi_guid_t; -+ -+typedef struct { -+ u64 signature; -+ u32 revision; -+ u32 headersize; -+ u32 crc32; -+ u32 reserved; -+} efi_table_hdr_t; -+ -+typedef struct { -+ u32 type; -+ u32 pad; -+ u64 phys_addr; -+ u64 virt_addr; -+ u64 num_pages; -+ u64 attribute; -+} efi_memory_desc_t; -+ -+typedef struct { -+ efi_guid_t guid; -+ u32 headersize; -+ u32 flags; -+ u32 imagesize; -+} efi_capsule_header_t; -+ -+typedef struct { -+ u16 year; -+ u8 month; -+ u8 day; -+ u8 hour; -+ u8 minute; -+ u8 second; -+ u8 pad1; -+ u32 nanosecond; -+ s16 timezone; -+ u8 daylight; -+ u8 pad2; -+} efi_time_t; -+ -+typedef struct { -+ u32 resolution; -+ u32 accuracy; -+ u8 sets_to_zero; -+} efi_time_cap_t; -+ -+typedef struct { -+ efi_table_hdr_t hdr; -+ void *raise_tpl; -+ void *restore_tpl; -+ efi_status_t (*allocate_pages)(int, int, long unsigned int, efi_physical_addr_t *); -+ efi_status_t (*free_pages)(efi_physical_addr_t, long unsigned int); -+ efi_status_t (*get_memory_map)(long unsigned int *, void *, long unsigned int *, long unsigned int *, u32 *); -+ efi_status_t (*allocate_pool)(int, long unsigned int, void **); -+ efi_status_t (*free_pool)(void *); -+ void *create_event; -+ void *set_timer; -+ void *wait_for_event; -+ void *signal_event; -+ void *close_event; -+ void *check_event; -+ void *install_protocol_interface; -+ void *reinstall_protocol_interface; -+ void *uninstall_protocol_interface; -+ efi_status_t (*handle_protocol)(efi_handle_t, efi_guid_t *, void **); -+ void *__reserved; -+ void *register_protocol_notify; -+ efi_status_t (*locate_handle)(int, efi_guid_t *, void *, long unsigned int *, efi_handle_t *); -+ void *locate_device_path; -+ efi_status_t (*install_configuration_table)(efi_guid_t *, void *); -+ void *load_image; -+ void *start_image; -+ void *exit; -+ void *unload_image; -+ efi_status_t (*exit_boot_services)(efi_handle_t, long unsigned int); -+ void *get_next_monotonic_count; -+ void *stall; -+ void *set_watchdog_timer; -+ void *connect_controller; -+ void *disconnect_controller; -+ void *open_protocol; -+ void *close_protocol; -+ void *open_protocol_information; -+ void *protocols_per_handle; -+ void *locate_handle_buffer; -+ efi_status_t (*locate_protocol)(efi_guid_t *, void *, void **); -+ void *install_multiple_protocol_interfaces; -+ void *uninstall_multiple_protocol_interfaces; -+ void *calculate_crc32; -+ void *copy_mem; -+ void *set_mem; -+ void *create_event_ex; -+} efi_boot_services_t; -+ -+typedef efi_status_t efi_get_time_t(efi_time_t *, efi_time_cap_t *); -+ -+typedef efi_status_t efi_set_time_t(efi_time_t *); -+ -+typedef efi_status_t efi_get_wakeup_time_t(efi_bool_t *, efi_bool_t *, efi_time_t *); -+ -+typedef efi_status_t efi_set_wakeup_time_t(efi_bool_t, efi_time_t *); -+ -+typedef efi_status_t efi_get_variable_t(efi_char16_t *, efi_guid_t *, u32 *, long unsigned int *, void *); -+ -+typedef efi_status_t efi_get_next_variable_t(long unsigned int *, efi_char16_t *, efi_guid_t *); -+ -+typedef efi_status_t efi_set_variable_t(efi_char16_t *, efi_guid_t *, u32, long unsigned int, void *); -+ -+typedef efi_status_t efi_get_next_high_mono_count_t(u32 *); -+ -+typedef void efi_reset_system_t(int, efi_status_t, long unsigned int, efi_char16_t *); -+ -+typedef efi_status_t efi_set_virtual_address_map_t(long unsigned int, long unsigned int, u32, efi_memory_desc_t *); -+ -+typedef efi_status_t efi_query_variable_info_t(u32, u64 *, u64 *, u64 *); -+ -+typedef efi_status_t efi_update_capsule_t(efi_capsule_header_t **, long unsigned int, long unsigned int); -+ -+typedef efi_status_t efi_query_capsule_caps_t(efi_capsule_header_t **, long unsigned int, u64 *, int *); -+ -+typedef struct { -+ efi_table_hdr_t hdr; -+ efi_get_time_t *get_time; -+ efi_set_time_t *set_time; -+ efi_get_wakeup_time_t *get_wakeup_time; -+ efi_set_wakeup_time_t *set_wakeup_time; -+ efi_set_virtual_address_map_t *set_virtual_address_map; -+ void *convert_pointer; -+ efi_get_variable_t *get_variable; -+ efi_get_next_variable_t *get_next_variable; -+ efi_set_variable_t *set_variable; -+ efi_get_next_high_mono_count_t *get_next_high_mono_count; -+ efi_reset_system_t *reset_system; -+ efi_update_capsule_t *update_capsule; -+ efi_query_capsule_caps_t *query_capsule_caps; -+ efi_query_variable_info_t *query_variable_info; -+} efi_runtime_services_t; -+ -+typedef struct { -+ efi_table_hdr_t hdr; -+ long unsigned int fw_vendor; -+ u32 fw_revision; -+ long unsigned int con_in_handle; -+ long unsigned int con_in; -+ long unsigned int con_out_handle; -+ long unsigned int con_out; -+ long unsigned int stderr_handle; -+ long unsigned int stderr; -+ efi_runtime_services_t *runtime; -+ efi_boot_services_t *boottime; -+ long unsigned int nr_tables; -+ long unsigned int tables; -+} efi_system_table_t; -+ -+struct efi_memory_map { -+ phys_addr_t phys_map; -+ void *map; -+ void *map_end; -+ int nr_map; -+ long unsigned int desc_version; -+ long unsigned int desc_size; -+ bool late; -+}; -+ -+struct efi { -+ efi_system_table_t *systab; -+ unsigned int runtime_version; -+ long unsigned int mps; -+ long unsigned int acpi; -+ long unsigned int acpi20; -+ long unsigned int smbios; -+ long unsigned int smbios3; -+ long unsigned int sal_systab; -+ long unsigned int boot_info; -+ long unsigned int hcdp; -+ long unsigned int uga; -+ long unsigned int uv_systab; -+ long unsigned int fw_vendor; -+ long unsigned int runtime; -+ long unsigned int config_table; -+ long unsigned int esrt; -+ long unsigned int properties_table; -+ long unsigned int mem_attr_table; -+ long unsigned int rng_seed; -+ long unsigned int tpm_log; -+ long unsigned int mem_reserve; -+ efi_get_time_t *get_time; -+ efi_set_time_t *set_time; -+ efi_get_wakeup_time_t *get_wakeup_time; -+ efi_set_wakeup_time_t *set_wakeup_time; -+ efi_get_variable_t *get_variable; -+ efi_get_next_variable_t *get_next_variable; -+ efi_set_variable_t *set_variable; -+ efi_set_variable_t *set_variable_nonblocking; -+ efi_query_variable_info_t *query_variable_info; -+ efi_query_variable_info_t *query_variable_info_nonblocking; -+ efi_update_capsule_t *update_capsule; -+ efi_query_capsule_caps_t *query_capsule_caps; -+ efi_get_next_high_mono_count_t *get_next_high_mono_count; -+ efi_reset_system_t *reset_system; -+ efi_set_virtual_address_map_t *set_virtual_address_map; -+ struct efi_memory_map memmap; -+ long unsigned int flags; -+}; -+ -+struct property { -+ char *name; -+ int length; -+ void *value; -+ struct property *next; -+}; -+ -+enum memcg_stat_item { -+ MEMCG_CACHE = 28, -+ MEMCG_RSS = 29, -+ MEMCG_RSS_HUGE = 30, -+ MEMCG_SWAP = 31, -+ MEMCG_SOCK = 32, -+ MEMCG_KERNEL_STACK_KB = 33, -+ MEMCG_NR_STAT = 34, -+}; -+ -+enum memcg_memory_event { -+ MEMCG_LOW = 0, -+ MEMCG_HIGH = 1, -+ MEMCG_MAX = 2, -+ MEMCG_OOM = 3, -+ MEMCG_OOM_KILL = 4, -+ MEMCG_SWAP_MAX = 5, -+ MEMCG_SWAP_FAIL = 6, -+ MEMCG_NR_MEMORY_EVENTS = 7, -+}; -+ -+enum mem_cgroup_events_target { -+ MEM_CGROUP_TARGET_THRESH = 0, -+ MEM_CGROUP_TARGET_SOFTLIMIT = 1, -+ MEM_CGROUP_TARGET_NUMAINFO = 2, -+ MEM_CGROUP_NTARGETS = 3, -+}; -+ -+struct mem_cgroup_stat_cpu { -+ long int count[34]; -+ long unsigned int events[85]; -+ long unsigned int nr_page_events; -+ long unsigned int targets[3]; -+}; -+ -+struct mem_cgroup_reclaim_iter { -+ struct mem_cgroup *position; -+ unsigned int generation; -+}; -+ -+struct lruvec_stat { -+ long int count[28]; -+}; -+ -+struct memcg_shrinker_map { -+ struct callback_head rcu; -+ long unsigned int map[0]; -+}; -+ -+struct mem_cgroup_per_node { -+ struct lruvec lruvec; -+ struct lruvec_stat *lruvec_stat_cpu; -+ atomic_long_t lruvec_stat[28]; -+ long unsigned int lru_zone_size[25]; -+ struct mem_cgroup_reclaim_iter iter[13]; -+ struct memcg_shrinker_map *shrinker_map; -+ struct rb_node tree_node; -+ long unsigned int usage_in_excess; -+ bool on_tree; -+ bool congested; -+ struct mem_cgroup *memcg; -+}; -+ -+struct eventfd_ctx; -+ -+struct mem_cgroup_threshold { -+ struct eventfd_ctx *eventfd; -+ long unsigned int threshold; -+}; -+ -+struct mem_cgroup_threshold_ary { -+ int current_threshold; -+ unsigned int size; -+ struct mem_cgroup_threshold entries[0]; -+}; -+ -+enum kgdb_bptype { -+ BP_BREAKPOINT = 0, -+ BP_HARDWARE_BREAKPOINT = 1, -+ BP_WRITE_WATCHPOINT = 2, -+ BP_READ_WATCHPOINT = 3, -+ BP_ACCESS_WATCHPOINT = 4, -+ BP_POKE_BREAKPOINT = 5, -+}; -+ -+struct dbg_reg_def_t { -+ char *name; -+ int size; -+ int offset; -+}; -+ -+struct kgdb_arch { -+ unsigned char gdb_bpt_instr[1]; -+ long unsigned int flags; -+ int (*set_breakpoint)(long unsigned int, char *); -+ int (*remove_breakpoint)(long unsigned int, char *); -+ int (*set_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); -+ int (*remove_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); -+ void (*disable_hw_break)(struct pt_regs *); -+ void (*remove_all_hw_break)(); -+ void (*correct_hw_break)(); -+ void (*enable_nmi)(bool); -+}; -+ -+struct kgdb_io { -+ const char *name; -+ int (*read_char)(); -+ void (*write_char)(u8); -+ void (*flush)(); -+ int (*init)(); -+ void (*pre_exception)(); -+ void (*post_exception)(); -+ int is_console; -+}; -+ -+struct percpu_cluster { -+ struct swap_cluster_info index; -+ unsigned int next; -+}; -+ -+struct disk_stats { -+ u64 nsecs[3]; -+ long unsigned int sectors[3]; -+ long unsigned int ios[3]; -+ long unsigned int merges[3]; -+ long unsigned int io_ticks; -+ long unsigned int time_in_queue; -+}; -+ -+struct partition_meta_info { -+ char uuid[37]; -+ u8 volname[64]; -+}; -+ -+struct disk_part_tbl { -+ struct callback_head callback_head; -+ int len; -+ struct hd_struct *last_lookup; -+ struct hd_struct *part[0]; -+}; -+ -+struct blk_integrity_iter; -+ -+typedef blk_status_t integrity_processing_fn(struct blk_integrity_iter *); -+ -+struct blk_integrity_profile { -+ integrity_processing_fn *generate_fn; -+ integrity_processing_fn *verify_fn; -+ const char *name; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct hd_geometry; -+ -+struct pr_ops; -+ -+struct block_device_operations { -+ int (*open)(struct block_device *, fmode_t); -+ void (*release)(struct gendisk *, fmode_t); -+ int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int); -+ int (*ioctl)(struct block_device *, fmode_t, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct block_device *, fmode_t, unsigned int, long unsigned int); -+ unsigned int (*check_events)(struct gendisk *, unsigned int); -+ int (*media_changed)(struct gendisk *); -+ void (*unlock_native_capacity)(struct gendisk *); -+ int (*revalidate_disk)(struct gendisk *); -+ int (*getgeo)(struct block_device *, struct hd_geometry *); -+ void (*swap_slot_free_notify)(struct block_device *, long unsigned int); -+ struct module *owner; -+ const struct pr_ops *pr_ops; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct sg_io_v4 { -+ __s32 guard; -+ __u32 protocol; -+ __u32 subprotocol; -+ __u32 request_len; -+ __u64 request; -+ __u64 request_tag; -+ __u32 request_attr; -+ __u32 request_priority; -+ __u32 request_extra; -+ __u32 max_response_len; -+ __u64 response; -+ __u32 dout_iovec_count; -+ __u32 dout_xfer_len; -+ __u32 din_iovec_count; -+ __u32 din_xfer_len; -+ __u64 dout_xferp; -+ __u64 din_xferp; -+ __u32 timeout; -+ __u32 flags; -+ __u64 usr_ptr; -+ __u32 spare_in; -+ __u32 driver_status; -+ __u32 transport_status; -+ __u32 device_status; -+ __u32 retry_delay; -+ __u32 info; -+ __u32 duration; -+ __u32 response_len; -+ __s32 din_resid; -+ __s32 dout_resid; -+ __u64 generated_tag; -+ __u32 spare_out; -+ __u32 padding; -+}; -+ -+struct bsg_ops { -+ int (*check_proto)(struct sg_io_v4 *); -+ int (*fill_hdr)(struct request *, struct sg_io_v4 *, fmode_t); -+ int (*complete_rq)(struct request *, struct sg_io_v4 *); -+ void (*free_rq)(struct request *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+typedef __u32 req_flags_t; -+ -+typedef void rq_end_io_fn(struct request *, blk_status_t); -+ -+enum mq_rq_state { -+ MQ_RQ_IDLE = 0, -+ MQ_RQ_IN_FLIGHT = 1, -+ MQ_RQ_COMPLETE = 2, -+}; -+ -+struct request { -+ struct request_queue *q; -+ struct blk_mq_ctx *mq_ctx; -+ int cpu; -+ unsigned int cmd_flags; -+ req_flags_t rq_flags; -+ int internal_tag; -+ unsigned int __data_len; -+ int tag; -+ sector_t __sector; -+ struct bio *bio; -+ struct bio *biotail; -+ struct list_head queuelist; -+ union { -+ struct hlist_node hash; -+ struct list_head ipi_list; -+ }; -+ union { -+ struct rb_node rb_node; -+ struct bio_vec special_vec; -+ void *completion_data; -+ int error_count; -+ }; -+ union { -+ struct { -+ struct io_cq *icq; -+ void *priv[2]; -+ } elv; -+ struct { -+ unsigned int seq; -+ struct list_head list; -+ rq_end_io_fn *saved_end_io; -+ } flush; -+ }; -+ struct gendisk *rq_disk; -+ struct hd_struct *part; -+ u64 start_time_ns; -+ u64 io_start_time_ns; -+ short unsigned int wbt_flags; -+ short unsigned int nr_phys_segments; -+ short unsigned int nr_integrity_segments; -+ short unsigned int write_hint; -+ short unsigned int ioprio; -+ void *special; -+ unsigned int extra_len; -+ enum mq_rq_state state; -+ refcount_t ref; -+ unsigned int timeout; -+ long unsigned int __deadline; -+ struct list_head timeout_list; -+ union { -+ struct __call_single_data csd; -+ u64 fifo_time; -+ }; -+ rq_end_io_fn *end_io; -+ void *end_io_data; -+ struct request *next_rq; -+ struct request_list *rl; -+}; -+ -+enum elv_merge { -+ ELEVATOR_NO_MERGE = 0, -+ ELEVATOR_FRONT_MERGE = 1, -+ ELEVATOR_BACK_MERGE = 2, -+ ELEVATOR_DISCARD_MERGE = 3, -+}; -+ -+typedef enum elv_merge elevator_merge_fn(struct request_queue *, struct request **, struct bio *); -+ -+typedef void elevator_merge_req_fn(struct request_queue *, struct request *, struct request *); -+ -+typedef void elevator_merged_fn(struct request_queue *, struct request *, enum elv_merge); -+ -+typedef int elevator_allow_bio_merge_fn(struct request_queue *, struct request *, struct bio *); -+ -+typedef int elevator_allow_rq_merge_fn(struct request_queue *, struct request *, struct request *); -+ -+typedef void elevator_bio_merged_fn(struct request_queue *, struct request *, struct bio *); -+ -+typedef int elevator_dispatch_fn(struct request_queue *, int); -+ -+typedef void elevator_add_req_fn(struct request_queue *, struct request *); -+ -+typedef struct request *elevator_request_list_fn(struct request_queue *, struct request *); -+ -+typedef void elevator_completed_req_fn(struct request_queue *, struct request *); -+ -+typedef int elevator_may_queue_fn(struct request_queue *, unsigned int); -+ -+typedef void elevator_init_icq_fn(struct io_cq *); -+ -+typedef void elevator_exit_icq_fn(struct io_cq *); -+ -+typedef int elevator_set_req_fn(struct request_queue *, struct request *, struct bio *, gfp_t); -+ -+typedef void elevator_put_req_fn(struct request *); -+ -+typedef void elevator_activate_req_fn(struct request_queue *, struct request *); -+ -+typedef void elevator_deactivate_req_fn(struct request_queue *, struct request *); -+ -+struct elevator_type; -+ -+typedef int elevator_init_fn(struct request_queue *, struct elevator_type *); -+ -+typedef void elevator_exit_fn(struct elevator_queue *); -+ -+typedef void elevator_registered_fn(struct request_queue *); -+ -+struct elevator_ops { -+ elevator_merge_fn *elevator_merge_fn; -+ elevator_merged_fn *elevator_merged_fn; -+ elevator_merge_req_fn *elevator_merge_req_fn; -+ elevator_allow_bio_merge_fn *elevator_allow_bio_merge_fn; -+ elevator_allow_rq_merge_fn *elevator_allow_rq_merge_fn; -+ elevator_bio_merged_fn *elevator_bio_merged_fn; -+ elevator_dispatch_fn *elevator_dispatch_fn; -+ elevator_add_req_fn *elevator_add_req_fn; -+ elevator_activate_req_fn *elevator_activate_req_fn; -+ elevator_deactivate_req_fn *elevator_deactivate_req_fn; -+ elevator_completed_req_fn *elevator_completed_req_fn; -+ elevator_request_list_fn *elevator_former_req_fn; -+ elevator_request_list_fn *elevator_latter_req_fn; -+ elevator_init_icq_fn *elevator_init_icq_fn; -+ elevator_exit_icq_fn *elevator_exit_icq_fn; -+ elevator_set_req_fn *elevator_set_req_fn; -+ elevator_put_req_fn *elevator_put_req_fn; -+ elevator_may_queue_fn *elevator_may_queue_fn; -+ elevator_init_fn *elevator_init_fn; -+ elevator_exit_fn *elevator_exit_fn; -+ elevator_registered_fn *elevator_registered_fn; -+}; -+ -+struct blk_mq_alloc_data; -+ -+struct elevator_mq_ops { -+ int (*init_sched)(struct request_queue *, struct elevator_type *); -+ void (*exit_sched)(struct elevator_queue *); -+ int (*init_hctx)(struct blk_mq_hw_ctx *, unsigned int); -+ void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); -+ void (*depth_updated)(struct blk_mq_hw_ctx *); -+ bool (*allow_merge)(struct request_queue *, struct request *, struct bio *); -+ bool (*bio_merge)(struct blk_mq_hw_ctx *, struct bio *); -+ int (*request_merge)(struct request_queue *, struct request **, struct bio *); -+ void (*request_merged)(struct request_queue *, struct request *, enum elv_merge); -+ void (*requests_merged)(struct request_queue *, struct request *, struct request *); -+ void (*limit_depth)(unsigned int, struct blk_mq_alloc_data *); -+ void (*prepare_request)(struct request *, struct bio *); -+ void (*finish_request)(struct request *); -+ void (*insert_requests)(struct blk_mq_hw_ctx *, struct list_head *, bool); -+ struct request * (*dispatch_request)(struct blk_mq_hw_ctx *); -+ bool (*has_work)(struct blk_mq_hw_ctx *); -+ void (*completed_request)(struct request *); -+ void (*started_request)(struct request *); -+ void (*requeue_request)(struct request *); -+ struct request * (*former_request)(struct request_queue *, struct request *); -+ struct request * (*next_request)(struct request_queue *, struct request *); -+ void (*init_icq)(struct io_cq *); -+ void (*exit_icq)(struct io_cq *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct elv_fs_entry; -+ -+struct blk_mq_debugfs_attr; -+ -+struct elevator_type { -+ struct kmem_cache *icq_cache; -+ union { -+ struct elevator_ops sq; -+ struct elevator_mq_ops mq; -+ } ops; -+ size_t icq_size; -+ size_t icq_align; -+ struct elv_fs_entry *elevator_attrs; -+ char elevator_name[16]; -+ const char *elevator_alias; -+ struct module *elevator_owner; -+ bool uses_mq; -+ const struct blk_mq_debugfs_attr *queue_debugfs_attrs; -+ const struct blk_mq_debugfs_attr *hctx_debugfs_attrs; -+ char icq_cache_name[22]; -+ struct list_head list; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct elevator_queue { -+ struct elevator_type *type; -+ void *elevator_data; -+ struct kobject kobj; -+ struct mutex sysfs_lock; -+ unsigned int registered: 1; -+ unsigned int uses_mq: 1; -+ struct hlist_head hash[64]; -+}; -+ -+struct elv_fs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct elevator_queue *, char *); -+ ssize_t (*store)(struct elevator_queue *, const char *, size_t); -+}; -+ -+struct blk_mq_debugfs_attr { -+ const char *name; -+ umode_t mode; -+ int (*show)(void *, struct seq_file *); -+ ssize_t (*write)(void *, const char *, size_t, loff_t *); -+ const struct seq_operations___2 *seq_ops; -+}; -+ -+struct blk_queue_tag { -+ struct request **tag_index; -+ long unsigned int *tag_map; -+ int max_depth; -+ int real_max_depth; -+ atomic_t refcnt; -+ int alloc_policy; -+ int next_tag; -+}; -+ -+struct blk_mq_queue_data; -+ -+typedef blk_status_t queue_rq_fn(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *); -+ -+typedef bool get_budget_fn(struct blk_mq_hw_ctx *); -+ -+typedef void put_budget_fn(struct blk_mq_hw_ctx *); -+ -+typedef enum blk_eh_timer_return timeout_fn(struct request *, bool); -+ -+typedef int poll_fn(struct blk_mq_hw_ctx *, unsigned int); -+ -+typedef int init_hctx_fn(struct blk_mq_hw_ctx *, void *, unsigned int); -+ -+typedef void exit_hctx_fn(struct blk_mq_hw_ctx *, unsigned int); -+ -+typedef int init_request_fn(struct blk_mq_tag_set *, struct request *, unsigned int, unsigned int); -+ -+typedef void exit_request_fn(struct blk_mq_tag_set *, struct request *, unsigned int); -+ -+typedef void cleanup_rq_fn(struct request *); -+ -+typedef int map_queues_fn(struct blk_mq_tag_set *); -+ -+struct blk_mq_ops { -+ queue_rq_fn *queue_rq; -+ get_budget_fn *get_budget; -+ put_budget_fn *put_budget; -+ timeout_fn *timeout; -+ poll_fn *poll; -+ softirq_done_fn *complete; -+ init_hctx_fn *init_hctx; -+ exit_hctx_fn *exit_hctx; -+ init_request_fn *init_request; -+ exit_request_fn *exit_request; -+ void (*initialize_rq_fn)(struct request *); -+ cleanup_rq_fn *cleanup_rq; -+ map_queues_fn *map_queues; -+ void (*show_rq)(struct seq_file *, struct request *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct blk_integrity_iter { -+ void *prot_buf; -+ void *data_buf; -+ sector_t seed; -+ unsigned int data_size; -+ short unsigned int interval; -+ const char *disk_name; -+}; -+ -+enum pr_type { -+ PR_WRITE_EXCLUSIVE = 1, -+ PR_EXCLUSIVE_ACCESS = 2, -+ PR_WRITE_EXCLUSIVE_REG_ONLY = 3, -+ PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, -+ PR_WRITE_EXCLUSIVE_ALL_REGS = 5, -+ PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, -+}; -+ -+struct pr_ops { -+ int (*pr_register)(struct block_device *, u64, u64, u32); -+ int (*pr_reserve)(struct block_device *, u64, enum pr_type, u32); -+ int (*pr_release)(struct block_device *, u64, enum pr_type); -+ int (*pr_preempt)(struct block_device *, u64, u64, enum pr_type, bool); -+ int (*pr_clear)(struct block_device *, u64); -+}; -+ -+struct trace_event_raw_initcall_level { -+ struct trace_entry ent; -+ u32 __data_loc_level; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_initcall_start { -+ struct trace_entry ent; -+ initcall_t func; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_initcall_finish { -+ struct trace_entry ent; -+ initcall_t func; -+ int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_initcall_level { -+ u32 level; -+}; -+ -+struct trace_event_data_offsets_initcall_start {}; -+ -+struct trace_event_data_offsets_initcall_finish {}; -+ -+struct blacklist_entry { -+ struct list_head next; -+ char *buf; -+}; -+ -+enum page_cache_mode { -+ _PAGE_CACHE_MODE_WB = 0, -+ _PAGE_CACHE_MODE_WC = 1, -+ _PAGE_CACHE_MODE_UC_MINUS = 2, -+ _PAGE_CACHE_MODE_UC = 3, -+ _PAGE_CACHE_MODE_WT = 4, -+ _PAGE_CACHE_MODE_WP = 5, -+ _PAGE_CACHE_MODE_NUM = 8, -+}; -+ -+enum { -+ UNAME26 = 131072, -+ ADDR_NO_RANDOMIZE = 262144, -+ FDPIC_FUNCPTRS = 524288, -+ MMAP_PAGE_ZERO = 1048576, -+ ADDR_COMPAT_LAYOUT = 2097152, -+ READ_IMPLIES_EXEC = 4194304, -+ ADDR_LIMIT_32BIT = 8388608, -+ SHORT_INODE = 16777216, -+ WHOLE_SECONDS = 33554432, -+ STICKY_TIMEOUTS = 67108864, -+ ADDR_LIMIT_3GB = 134217728, -+}; -+ -+enum tlb_infos { -+ ENTRIES = 0, -+ NR_INFO = 1, -+}; -+ -+enum { -+ MM_FILEPAGES = 0, -+ MM_ANONPAGES = 1, -+ MM_SWAPENTS = 2, -+ MM_SHMEMPAGES = 3, -+ NR_MM_COUNTERS = 4, -+}; -+ -+typedef __u32 Elf32_Word; -+ -+struct elf32_note { -+ Elf32_Word n_namesz; -+ Elf32_Word n_descsz; -+ Elf32_Word n_type; -+}; -+ -+enum hrtimer_base_type { -+ HRTIMER_BASE_MONOTONIC = 0, -+ HRTIMER_BASE_REALTIME = 1, -+ HRTIMER_BASE_BOOTTIME = 2, -+ HRTIMER_BASE_TAI = 3, -+ HRTIMER_BASE_MONOTONIC_SOFT = 4, -+ HRTIMER_BASE_REALTIME_SOFT = 5, -+ HRTIMER_BASE_BOOTTIME_SOFT = 6, -+ HRTIMER_BASE_TAI_SOFT = 7, -+ HRTIMER_MAX_CLOCK_BASES = 8, -+}; -+ -+enum rseq_cs_flags_bit { -+ RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT = 0, -+ RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT = 1, -+ RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT = 2, -+}; -+ -+enum perf_event_task_context { -+ perf_invalid_context = -1, -+ perf_hw_context = 0, -+ perf_sw_context = 1, -+ perf_nr_task_contexts = 2, -+}; -+ -+enum rseq_event_mask_bits { -+ RSEQ_EVENT_PREEMPT_BIT = 0, -+ RSEQ_EVENT_SIGNAL_BIT = 1, -+ RSEQ_EVENT_MIGRATE_BIT = 2, -+}; -+ -+enum { -+ PROC_ROOT_INO = 1, -+ PROC_IPC_INIT_INO = -268435457, -+ PROC_UTS_INIT_INO = -268435458, -+ PROC_USER_INIT_INO = -268435459, -+ PROC_PID_INIT_INO = -268435460, -+ PROC_CGROUP_INIT_INO = -268435461, -+}; -+ -+typedef __u16 __le16; -+ -+typedef __u16 __be16; -+ -+typedef __u32 __be32; -+ -+typedef __u64 __be64; -+ -+typedef __u32 __wsum; -+ -+typedef u64 uint64_t; -+ -+typedef unsigned int slab_flags_t; -+ -+struct llist_head { -+ struct llist_node *first; -+}; -+ -+typedef struct __call_single_data call_single_data_t; -+ -+struct ida { -+ struct radix_tree_root ida_rt; -+}; -+ -+typedef __u64 __addrpair; -+ -+typedef __u32 __portpair; -+ -+typedef struct { -+ struct net *net; -+} possible_net_t; -+ -+struct in6_addr { -+ union { -+ __u8 u6_addr8[16]; -+ __be16 u6_addr16[8]; -+ __be32 u6_addr32[4]; -+ } in6_u; -+}; -+ -+struct hlist_nulls_node { -+ struct hlist_nulls_node *next; -+ struct hlist_nulls_node **pprev; -+}; -+ -+struct proto; -+ -+struct inet_timewait_death_row; -+ -+struct sock_common { -+ union { -+ __addrpair skc_addrpair; -+ struct { -+ __be32 skc_daddr; -+ __be32 skc_rcv_saddr; -+ }; -+ }; -+ union { -+ unsigned int skc_hash; -+ __u16 skc_u16hashes[2]; -+ }; -+ union { -+ __portpair skc_portpair; -+ struct { -+ __be16 skc_dport; -+ __u16 skc_num; -+ }; -+ }; -+ short unsigned int skc_family; -+ volatile unsigned char skc_state; -+ unsigned char skc_reuse: 4; -+ unsigned char skc_reuseport: 1; -+ unsigned char skc_ipv6only: 1; -+ unsigned char skc_net_refcnt: 1; -+ int skc_bound_dev_if; -+ union { -+ struct hlist_node skc_bind_node; -+ struct hlist_node skc_portaddr_node; -+ }; -+ struct proto *skc_prot; -+ possible_net_t skc_net; -+ struct in6_addr skc_v6_daddr; -+ struct in6_addr skc_v6_rcv_saddr; -+ atomic64_t skc_cookie; -+ union { -+ long unsigned int skc_flags; -+ struct sock *skc_listener; -+ struct inet_timewait_death_row *skc_tw_dr; -+ }; -+ int skc_dontcopy_begin[0]; -+ union { -+ struct hlist_node skc_node; -+ struct hlist_nulls_node skc_nulls_node; -+ }; -+ short unsigned int skc_tx_queue_mapping; -+ short unsigned int skc_rx_queue_mapping; -+ union { -+ int skc_incoming_cpu; -+ u32 skc_rcv_wnd; -+ u32 skc_tw_rcv_nxt; -+ }; -+ refcount_t skc_refcnt; -+ int skc_dontcopy_end[0]; -+ union { -+ u32 skc_rxhash; -+ u32 skc_window_clamp; -+ u32 skc_tw_snd_nxt; -+ }; -+}; -+ -+typedef struct { -+ spinlock_t slock; -+ int owned; -+ wait_queue_head_t wq; -+} socket_lock_t; -+ -+struct sk_buff; -+ -+struct sk_buff_head { -+ struct sk_buff *next; -+ struct sk_buff *prev; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+typedef u64 netdev_features_t; -+ -+struct sock_cgroup_data { -+ union { -+ struct { -+ u8 is_data; -+ u8 padding; -+ u16 prioidx; -+ u32 classid; -+ }; -+ u64 val; -+ }; -+}; -+ -+struct sk_filter; -+ -+struct socket_wq; -+ -+struct xfrm_policy; -+ -+struct dst_entry; -+ -+struct socket; -+ -+struct net_device; -+ -+struct sock_reuseport; -+ -+struct sock { -+ struct sock_common __sk_common; -+ socket_lock_t sk_lock; -+ atomic_t sk_drops; -+ int sk_rcvlowat; -+ struct sk_buff_head sk_error_queue; -+ struct sk_buff_head sk_receive_queue; -+ struct { -+ atomic_t rmem_alloc; -+ int len; -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ } sk_backlog; -+ int sk_forward_alloc; -+ unsigned int sk_ll_usec; -+ unsigned int sk_napi_id; -+ int sk_rcvbuf; -+ struct sk_filter *sk_filter; -+ union { -+ struct socket_wq *sk_wq; -+ struct socket_wq *sk_wq_raw; -+ }; -+ struct xfrm_policy *sk_policy[2]; -+ struct dst_entry *sk_rx_dst; -+ struct dst_entry *sk_dst_cache; -+ atomic_t sk_omem_alloc; -+ int sk_sndbuf; -+ int sk_wmem_queued; -+ refcount_t sk_wmem_alloc; -+ long unsigned int sk_tsq_flags; -+ union { -+ struct sk_buff *sk_send_head; -+ struct rb_root tcp_rtx_queue; -+ }; -+ struct sk_buff_head sk_write_queue; -+ __s32 sk_peek_off; -+ int sk_write_pending; -+ __u32 sk_dst_pending_confirm; -+ u32 sk_pacing_status; -+ long int sk_sndtimeo; -+ struct timer_list sk_timer; -+ __u32 sk_priority; -+ __u32 sk_mark; -+ u32 sk_pacing_rate; -+ u32 sk_max_pacing_rate; -+ struct page_frag sk_frag; -+ netdev_features_t sk_route_caps; -+ netdev_features_t sk_route_nocaps; -+ netdev_features_t sk_route_forced_caps; -+ int sk_gso_type; -+ unsigned int sk_gso_max_size; -+ gfp_t sk_allocation; -+ __u32 sk_txhash; -+ unsigned int __sk_flags_offset[0]; -+ unsigned int sk_padding: 1; -+ unsigned int sk_kern_sock: 1; -+ unsigned int sk_no_check_tx: 1; -+ unsigned int sk_no_check_rx: 1; -+ unsigned int sk_userlocks: 4; -+ unsigned int sk_protocol: 8; -+ unsigned int sk_type: 16; -+ u16 sk_gso_max_segs; -+ u8 sk_pacing_shift; -+ long unsigned int sk_lingertime; -+ struct proto *sk_prot_creator; -+ rwlock_t sk_callback_lock; -+ int sk_err; -+ int sk_err_soft; -+ u32 sk_ack_backlog; -+ u32 sk_max_ack_backlog; -+ kuid_t sk_uid; -+ struct pid *sk_peer_pid; -+ const struct cred *sk_peer_cred; -+ long int sk_rcvtimeo; -+ ktime_t sk_stamp; -+ u16 sk_tsflags; -+ u8 sk_shutdown; -+ u32 sk_tskey; -+ atomic_t sk_zckey; -+ u8 sk_clockid; -+ u8 sk_txtime_deadline_mode: 1; -+ u8 sk_txtime_report_errors: 1; -+ u8 sk_txtime_unused: 6; -+ struct socket *sk_socket; -+ void *sk_user_data; -+ void *sk_security; -+ struct sock_cgroup_data sk_cgrp_data; -+ struct mem_cgroup *sk_memcg; -+ void (*sk_state_change)(struct sock *); -+ void (*sk_data_ready)(struct sock *); -+ void (*sk_write_space)(struct sock *); -+ void (*sk_error_report)(struct sock *); -+ int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); -+ struct sk_buff * (*sk_validate_xmit_skb)(struct sock *, struct net_device *, struct sk_buff *); -+ void (*sk_destruct)(struct sock *); -+ struct sock_reuseport *sk_reuseport_cb; -+ struct callback_head sk_rcu; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+}; -+ -+struct rhash_head { -+ struct rhash_head *next; -+}; -+ -+struct rhashtable; -+ -+struct rhashtable_compare_arg { -+ struct rhashtable *ht; -+ const void *key; -+}; -+ -+typedef u32 (*rht_hashfn_t)(const void *, u32, u32); -+ -+typedef u32 (*rht_obj_hashfn_t)(const void *, u32, u32); -+ -+typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *, const void *); -+ -+struct rhashtable_params { -+ u16 nelem_hint; -+ u16 key_len; -+ u16 key_offset; -+ u16 head_offset; -+ unsigned int max_size; -+ u16 min_size; -+ bool automatic_shrinking; -+ u8 locks_mul; -+ rht_hashfn_t hashfn; -+ rht_obj_hashfn_t obj_hashfn; -+ rht_obj_cmpfn_t obj_cmpfn; -+}; -+ -+struct bucket_table; -+ -+struct rhashtable { -+ struct bucket_table *tbl; -+ unsigned int key_len; -+ unsigned int max_elems; -+ struct rhashtable_params p; -+ bool rhlist; -+ struct work_struct run_work; -+ struct mutex mutex; -+ spinlock_t lock; -+ atomic_t nelems; -+}; -+ -+struct fs_struct { -+ int users; -+ spinlock_t lock; -+ seqcount_t seq; -+ int umask; -+ int in_exec; -+ struct path root; -+ struct path pwd; -+}; -+ -+struct pipe_buffer; -+ -+struct pipe_inode_info { -+ struct mutex mutex; -+ wait_queue_head_t wait; -+ unsigned int nrbufs; -+ unsigned int curbuf; -+ unsigned int buffers; -+ unsigned int readers; -+ unsigned int writers; -+ unsigned int files; -+ unsigned int waiting_writers; -+ unsigned int r_counter; -+ unsigned int w_counter; -+ struct page *tmp_page; -+ struct fasync_struct *fasync_readers; -+ struct fasync_struct *fasync_writers; -+ struct pipe_buffer *bufs; -+ struct user_struct *user; -+}; -+ -+typedef short unsigned int __kernel_sa_family_t; -+ -+struct __kernel_sockaddr_storage { -+ __kernel_sa_family_t ss_family; -+ char __data[126]; -+}; -+ -+typedef __kernel_sa_family_t sa_family_t; -+ -+struct sockaddr { -+ sa_family_t sa_family; -+ char sa_data[14]; -+}; -+ -+struct msghdr { -+ void *msg_name; -+ int msg_namelen; -+ struct iov_iter msg_iter; -+ void *msg_control; -+ __kernel_size_t msg_controllen; -+ unsigned int msg_flags; -+ struct kiocb *msg_iocb; -+}; -+ -+typedef struct { -+ unsigned int clock_rate; -+ unsigned int clock_type; -+ short unsigned int loopback; -+} sync_serial_settings; -+ -+typedef struct { -+ unsigned int clock_rate; -+ unsigned int clock_type; -+ short unsigned int loopback; -+ unsigned int slot_map; -+} te1_settings; -+ -+typedef struct { -+ short unsigned int encoding; -+ short unsigned int parity; -+} raw_hdlc_proto; -+ -+typedef struct { -+ unsigned int t391; -+ unsigned int t392; -+ unsigned int n391; -+ unsigned int n392; -+ unsigned int n393; -+ short unsigned int lmi; -+ short unsigned int dce; -+} fr_proto; -+ -+typedef struct { -+ unsigned int dlci; -+} fr_proto_pvc; -+ -+typedef struct { -+ unsigned int dlci; -+ char master[16]; -+} fr_proto_pvc_info; -+ -+typedef struct { -+ unsigned int interval; -+ unsigned int timeout; -+} cisco_proto; -+ -+struct ifmap { -+ long unsigned int mem_start; -+ long unsigned int mem_end; -+ short unsigned int base_addr; -+ unsigned char irq; -+ unsigned char dma; -+ unsigned char port; -+}; -+ -+struct if_settings { -+ unsigned int type; -+ unsigned int size; -+ union { -+ raw_hdlc_proto *raw_hdlc; -+ cisco_proto *cisco; -+ fr_proto *fr; -+ fr_proto_pvc *fr_pvc; -+ fr_proto_pvc_info *fr_pvc_info; -+ sync_serial_settings *sync; -+ te1_settings *te1; -+ } ifs_ifsu; -+}; -+ -+struct ifreq { -+ union { -+ char ifrn_name[16]; -+ } ifr_ifrn; -+ union { -+ struct sockaddr ifru_addr; -+ struct sockaddr ifru_dstaddr; -+ struct sockaddr ifru_broadaddr; -+ struct sockaddr ifru_netmask; -+ struct sockaddr ifru_hwaddr; -+ short int ifru_flags; -+ int ifru_ivalue; -+ int ifru_mtu; -+ struct ifmap ifru_map; -+ char ifru_slave[16]; -+ char ifru_newname[16]; -+ void *ifru_data; -+ struct if_settings ifru_settings; -+ } ifr_ifru; -+}; -+ -+struct vfsmount { -+ struct dentry *mnt_root; -+ struct super_block *mnt_sb; -+ int mnt_flags; -+}; -+ -+typedef struct { -+ size_t written; -+ size_t count; -+ union { -+ char *buf; -+ void *data; -+ } arg; -+ int error; -+} read_descriptor_t; -+ -+struct posix_acl_entry { -+ short int e_tag; -+ short unsigned int e_perm; -+ union { -+ kuid_t e_uid; -+ kgid_t e_gid; -+ }; -+}; -+ -+struct posix_acl { -+ refcount_t a_refcount; -+ struct callback_head a_rcu; -+ unsigned int a_count; -+ struct posix_acl_entry a_entries[0]; -+}; -+ -+typedef unsigned char cc_t; -+ -+typedef unsigned int speed_t; -+ -+typedef unsigned int tcflag_t; -+ -+struct ktermios { -+ tcflag_t c_iflag; -+ tcflag_t c_oflag; -+ tcflag_t c_cflag; -+ tcflag_t c_lflag; -+ cc_t c_line; -+ cc_t c_cc[19]; -+ speed_t c_ispeed; -+ speed_t c_ospeed; -+}; -+ -+struct winsize { -+ short unsigned int ws_row; -+ short unsigned int ws_col; -+ short unsigned int ws_xpixel; -+ short unsigned int ws_ypixel; -+}; -+ -+struct termiox { -+ __u16 x_hflag; -+ __u16 x_cflag; -+ __u16 x_rflag[5]; -+ __u16 x_sflag; -+}; -+ -+struct serial_icounter_struct; -+ -+struct tty_operations { -+ struct tty_struct * (*lookup)(struct tty_driver *, struct file *, int); -+ int (*install)(struct tty_driver *, struct tty_struct *); -+ void (*remove)(struct tty_driver *, struct tty_struct *); -+ int (*open)(struct tty_struct *, struct file *); -+ void (*close)(struct tty_struct *, struct file *); -+ void (*shutdown)(struct tty_struct *); -+ void (*cleanup)(struct tty_struct *); -+ int (*write)(struct tty_struct *, const unsigned char *, int); -+ int (*put_char)(struct tty_struct *, unsigned char); -+ void (*flush_chars)(struct tty_struct *); -+ int (*write_room)(struct tty_struct *); -+ int (*chars_in_buffer)(struct tty_struct *); -+ int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); -+ long int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); -+ void (*set_termios)(struct tty_struct *, struct ktermios *); -+ void (*throttle)(struct tty_struct *); -+ void (*unthrottle)(struct tty_struct *); -+ void (*stop)(struct tty_struct *); -+ void (*start)(struct tty_struct *); -+ void (*hangup)(struct tty_struct *); -+ int (*break_ctl)(struct tty_struct *, int); -+ void (*flush_buffer)(struct tty_struct *); -+ void (*set_ldisc)(struct tty_struct *); -+ void (*wait_until_sent)(struct tty_struct *, int); -+ void (*send_xchar)(struct tty_struct *, char); -+ int (*tiocmget)(struct tty_struct *); -+ int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); -+ int (*resize)(struct tty_struct *, struct winsize *); -+ int (*set_termiox)(struct tty_struct *, struct termiox *); -+ int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); -+ void (*show_fdinfo)(struct tty_struct *, struct seq_file *); -+ int (*poll_init)(struct tty_driver *, int, char *); -+ int (*poll_get_char)(struct tty_driver *, int); -+ void (*poll_put_char)(struct tty_driver *, int, char); -+ int (*proc_show)(struct seq_file *, void *); -+}; -+ -+struct ld_semaphore { -+ atomic_long_t count; -+ raw_spinlock_t wait_lock; -+ unsigned int wait_readers; -+ struct list_head read_wait; -+ struct list_head write_wait; -+}; -+ -+struct tty_ldisc; -+ -+struct tty_port; -+ -+struct tty_struct { -+ int magic; -+ struct kref kref; -+ struct device *dev; -+ struct tty_driver *driver; -+ const struct tty_operations *ops; -+ int index; -+ struct ld_semaphore ldisc_sem; -+ struct tty_ldisc *ldisc; -+ struct mutex atomic_write_lock; -+ struct mutex legacy_mutex; -+ struct mutex throttle_mutex; -+ struct rw_semaphore termios_rwsem; -+ struct mutex winsize_mutex; -+ spinlock_t ctrl_lock; -+ spinlock_t flow_lock; -+ struct ktermios termios; -+ struct ktermios termios_locked; -+ struct termiox *termiox; -+ char name[64]; -+ struct pid *pgrp; -+ struct pid *session; -+ long unsigned int flags; -+ int count; -+ struct winsize winsize; -+ long unsigned int stopped: 1; -+ long unsigned int flow_stopped: 1; -+ int: 30; -+ long unsigned int unused: 62; -+ int hw_stopped; -+ long unsigned int ctrl_status: 8; -+ long unsigned int packet: 1; -+ int: 23; -+ long unsigned int unused_ctrl: 55; -+ unsigned int receive_room; -+ int flow_change; -+ struct tty_struct *link; -+ struct fasync_struct *fasync; -+ wait_queue_head_t write_wait; -+ wait_queue_head_t read_wait; -+ struct work_struct hangup_work; -+ void *disc_data; -+ void *driver_data; -+ spinlock_t files_lock; -+ struct list_head tty_files; -+ int closing; -+ unsigned char *write_buf; -+ int write_cnt; -+ struct work_struct SAK_work; -+ struct tty_port *port; -+}; -+ -+struct proc_dir_entry; -+ -+struct tty_driver { -+ int magic; -+ struct kref kref; -+ struct cdev **cdevs; -+ struct module *owner; -+ const char *driver_name; -+ const char *name; -+ int name_base; -+ int major; -+ int minor_start; -+ unsigned int num; -+ short int type; -+ short int subtype; -+ struct ktermios init_termios; -+ long unsigned int flags; -+ struct proc_dir_entry *proc_entry; -+ struct tty_driver *other; -+ struct tty_struct **ttys; -+ struct tty_port **ports; -+ struct ktermios **termios; -+ void *driver_state; -+ const struct tty_operations *ops; -+ struct list_head tty_drivers; -+}; -+ -+struct tty_buffer { -+ union { -+ struct tty_buffer *next; -+ struct llist_node free; -+ }; -+ int used; -+ int size; -+ int commit; -+ int read; -+ int flags; -+ long unsigned int data[0]; -+}; -+ -+struct tty_bufhead { -+ struct tty_buffer *head; -+ struct work_struct work; -+ struct mutex lock; -+ atomic_t priority; -+ struct tty_buffer sentinel; -+ struct llist_head free; -+ atomic_t mem_used; -+ int mem_limit; -+ struct tty_buffer *tail; -+}; -+ -+struct tty_port_operations; -+ -+struct tty_port_client_operations; -+ -+struct tty_port { -+ struct tty_bufhead buf; -+ struct tty_struct *tty; -+ struct tty_struct *itty; -+ const struct tty_port_operations *ops; -+ const struct tty_port_client_operations *client_ops; -+ spinlock_t lock; -+ int blocked_open; -+ int count; -+ wait_queue_head_t open_wait; -+ wait_queue_head_t delta_msr_wait; -+ long unsigned int flags; -+ long unsigned int iflags; -+ unsigned char console: 1; -+ unsigned char low_latency: 1; -+ struct mutex mutex; -+ struct mutex buf_mutex; -+ unsigned char *xmit_buf; -+ unsigned int close_delay; -+ unsigned int closing_wait; -+ int drain_delay; -+ struct kref kref; -+ void *client_data; -+}; -+ -+struct tty_ldisc_ops { -+ int magic; -+ char *name; -+ int num; -+ int flags; -+ int (*open)(struct tty_struct *); -+ void (*close)(struct tty_struct *); -+ void (*flush_buffer)(struct tty_struct *); -+ ssize_t (*read)(struct tty_struct *, struct file *, unsigned char *, size_t); -+ ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t); -+ int (*ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ long int (*compat_ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ void (*set_termios)(struct tty_struct *, struct ktermios *); -+ __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); -+ int (*hangup)(struct tty_struct *); -+ void (*receive_buf)(struct tty_struct *, const unsigned char *, char *, int); -+ void (*write_wakeup)(struct tty_struct *); -+ void (*dcd_change)(struct tty_struct *, unsigned int); -+ int (*receive_buf2)(struct tty_struct *, const unsigned char *, char *, int); -+ struct module *owner; -+ int refcount; -+}; -+ -+struct tty_ldisc { -+ struct tty_ldisc_ops *ops; -+ struct tty_struct *tty; -+}; -+ -+struct tty_port_operations { -+ int (*carrier_raised)(struct tty_port *); -+ void (*dtr_rts)(struct tty_port *, int); -+ void (*shutdown)(struct tty_port *); -+ int (*activate)(struct tty_port *, struct tty_struct *); -+ void (*destruct)(struct tty_port *); -+}; -+ -+struct tty_port_client_operations { -+ int (*receive_buf)(struct tty_port *, const unsigned char *, const unsigned char *, size_t); -+ void (*write_wakeup)(struct tty_port *); -+}; -+ -+struct prot_inuse; -+ -+struct netns_core { -+ struct ctl_table_header *sysctl_hdr; -+ int sysctl_somaxconn; -+ int *sock_inuse; -+ struct prot_inuse *prot_inuse; -+}; -+ -+struct tcp_mib; -+ -+struct ipstats_mib; -+ -+struct linux_mib; -+ -+struct udp_mib; -+ -+struct icmp_mib; -+ -+struct icmpmsg_mib; -+ -+struct icmpv6_mib; -+ -+struct icmpv6msg_mib; -+ -+struct linux_xfrm_mib; -+ -+struct netns_mib { -+ struct tcp_mib *tcp_statistics; -+ struct ipstats_mib *ip_statistics; -+ struct linux_mib *net_statistics; -+ struct udp_mib *udp_statistics; -+ struct udp_mib *udplite_statistics; -+ struct icmp_mib *icmp_statistics; -+ struct icmpmsg_mib *icmpmsg_statistics; -+ struct proc_dir_entry *proc_net_devsnmp6; -+ struct udp_mib *udp_stats_in6; -+ struct udp_mib *udplite_stats_in6; -+ struct ipstats_mib *ipv6_statistics; -+ struct icmpv6_mib *icmpv6_statistics; -+ struct icmpv6msg_mib *icmpv6msg_statistics; -+ struct linux_xfrm_mib *xfrm_statistics; -+}; -+ -+struct netns_packet { -+ struct mutex sklist_lock; -+ struct hlist_head sklist; -+}; -+ -+struct netns_unix { -+ int sysctl_max_dgram_qlen; -+ struct ctl_table_header *ctl; -+}; -+ -+struct inet_frags; -+ -+struct netns_frags { -+ long int high_thresh; -+ long int low_thresh; -+ int timeout; -+ int max_dist; -+ struct inet_frags *f; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct rhashtable rhashtable; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic_long_t mem; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct local_ports { -+ seqlock_t lock; -+ int range[2]; -+ bool warned; -+}; -+ -+struct inet_hashinfo; -+ -+struct inet_timewait_death_row { -+ atomic_t tw_count; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct inet_hashinfo *hashinfo; -+ int sysctl_max_tw_buckets; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct ping_group_range { -+ seqlock_t lock; -+ kgid_t range[2]; -+}; -+ -+typedef struct { -+ u64 key[2]; -+} siphash_key_t; -+ -+struct ipv4_devconf; -+ -+struct ip_ra_chain; -+ -+struct fib_rules_ops; -+ -+struct fib_table; -+ -+struct inet_peer_base; -+ -+struct xt_table; -+ -+struct tcp_congestion_ops; -+ -+struct tcp_fastopen_context; -+ -+struct fib_notifier_ops; -+ -+struct netns_ipv4 { -+ struct ctl_table_header *forw_hdr; -+ struct ctl_table_header *frags_hdr; -+ struct ctl_table_header *ipv4_hdr; -+ struct ctl_table_header *route_hdr; -+ struct ctl_table_header *xfrm4_hdr; -+ struct ipv4_devconf *devconf_all; -+ struct ipv4_devconf *devconf_dflt; -+ struct ip_ra_chain *ra_chain; -+ struct mutex ra_mutex; -+ struct fib_rules_ops *rules_ops; -+ bool fib_has_custom_rules; -+ unsigned int fib_rules_require_fldissect; -+ struct fib_table *fib_main; -+ struct fib_table *fib_default; -+ bool fib_has_custom_local_routes; -+ int fib_num_tclassid_users; -+ struct hlist_head *fib_table_hash; -+ bool fib_offload_disabled; -+ struct sock *fibnl; -+ struct sock **icmp_sk; -+ struct sock *mc_autojoin_sk; -+ struct inet_peer_base *peers; -+ struct sock **tcp_sk; -+ struct netns_frags frags; -+ struct xt_table *iptable_filter; -+ struct xt_table *iptable_mangle; -+ struct xt_table *iptable_raw; -+ struct xt_table *arptable_filter; -+ struct xt_table *iptable_security; -+ struct xt_table *nat_table; -+ int sysctl_icmp_echo_ignore_all; -+ int sysctl_icmp_echo_ignore_broadcasts; -+ int sysctl_icmp_ignore_bogus_error_responses; -+ int sysctl_icmp_ratelimit; -+ int sysctl_icmp_ratemask; -+ int sysctl_icmp_errors_use_inbound_ifaddr; -+ struct local_ports ip_local_ports; -+ int sysctl_tcp_ecn; -+ int sysctl_tcp_ecn_fallback; -+ int sysctl_ip_default_ttl; -+ int sysctl_ip_no_pmtu_disc; -+ int sysctl_ip_fwd_use_pmtu; -+ int sysctl_ip_fwd_update_priority; -+ int sysctl_ip_nonlocal_bind; -+ int sysctl_ip_dynaddr; -+ int sysctl_ip_early_demux; -+ int sysctl_raw_l3mdev_accept; -+ int sysctl_tcp_early_demux; -+ int sysctl_udp_early_demux; -+ int sysctl_fwmark_reflect; -+ int sysctl_tcp_fwmark_accept; -+ int sysctl_tcp_l3mdev_accept; -+ int sysctl_tcp_mtu_probing; -+ int sysctl_tcp_base_mss; -+ int sysctl_tcp_min_snd_mss; -+ int sysctl_tcp_probe_threshold; -+ u32 sysctl_tcp_probe_interval; -+ int sysctl_tcp_keepalive_time; -+ int sysctl_tcp_keepalive_probes; -+ int sysctl_tcp_keepalive_intvl; -+ int sysctl_tcp_syn_retries; -+ int sysctl_tcp_synack_retries; -+ int sysctl_tcp_syncookies; -+ int sysctl_tcp_reordering; -+ int sysctl_tcp_retries1; -+ int sysctl_tcp_retries2; -+ int sysctl_tcp_orphan_retries; -+ int sysctl_tcp_fin_timeout; -+ unsigned int sysctl_tcp_notsent_lowat; -+ int sysctl_tcp_tw_reuse; -+ int sysctl_tcp_sack; -+ int sysctl_tcp_window_scaling; -+ int sysctl_tcp_timestamps; -+ int sysctl_tcp_early_retrans; -+ int sysctl_tcp_recovery; -+ int sysctl_tcp_thin_linear_timeouts; -+ int sysctl_tcp_slow_start_after_idle; -+ int sysctl_tcp_retrans_collapse; -+ int sysctl_tcp_stdurg; -+ int sysctl_tcp_rfc1337; -+ int sysctl_tcp_abort_on_overflow; -+ int sysctl_tcp_fack; -+ int sysctl_tcp_max_reordering; -+ int sysctl_tcp_dsack; -+ int sysctl_tcp_app_win; -+ int sysctl_tcp_adv_win_scale; -+ int sysctl_tcp_frto; -+ int sysctl_tcp_nometrics_save; -+ int sysctl_tcp_moderate_rcvbuf; -+ int sysctl_tcp_tso_win_divisor; -+ int sysctl_tcp_workaround_signed_windows; -+ int sysctl_tcp_limit_output_bytes; -+ int sysctl_tcp_challenge_ack_limit; -+ int sysctl_tcp_min_tso_segs; -+ int sysctl_tcp_min_rtt_wlen; -+ int sysctl_tcp_autocorking; -+ int sysctl_tcp_invalid_ratelimit; -+ int sysctl_tcp_pacing_ss_ratio; -+ int sysctl_tcp_pacing_ca_ratio; -+ int sysctl_tcp_wmem[3]; -+ int sysctl_tcp_rmem[3]; -+ int sysctl_tcp_comp_sack_nr; -+ long unsigned int sysctl_tcp_comp_sack_delay_ns; -+ long: 64; -+ struct inet_timewait_death_row tcp_death_row; -+ int sysctl_max_syn_backlog; -+ int sysctl_tcp_fastopen; -+ const struct tcp_congestion_ops *tcp_congestion_control; -+ struct tcp_fastopen_context *tcp_fastopen_ctx; -+ spinlock_t tcp_fastopen_ctx_lock; -+ unsigned int sysctl_tcp_fastopen_blackhole_timeout; -+ atomic_t tfo_active_disable_times; -+ long unsigned int tfo_active_disable_stamp; -+ int sysctl_udp_wmem_min; -+ int sysctl_udp_rmem_min; -+ int sysctl_udp_l3mdev_accept; -+ int sysctl_igmp_max_memberships; -+ int sysctl_igmp_max_msf; -+ int sysctl_igmp_llm_reports; -+ int sysctl_igmp_qrv; -+ struct ping_group_range ping_group_range; -+ atomic_t dev_addr_genid; -+ long unsigned int *sysctl_local_reserved_ports; -+ int sysctl_ip_prot_sock; -+ struct list_head mr_tables; -+ struct fib_rules_ops *mr_rules_ops; -+ int sysctl_fib_multipath_use_neigh; -+ int sysctl_fib_multipath_hash_policy; -+ struct fib_notifier_ops *notifier_ops; -+ unsigned int fib_seq; -+ struct fib_notifier_ops *ipmr_notifier_ops; -+ unsigned int ipmr_seq; -+ atomic_t rt_genid; -+ siphash_key_t ip_id_key; -+}; -+ -+struct netns_sysctl_ipv6 { -+ struct ctl_table_header *hdr; -+ struct ctl_table_header *route_hdr; -+ struct ctl_table_header *icmp_hdr; -+ struct ctl_table_header *frags_hdr; -+ struct ctl_table_header *xfrm6_hdr; -+ int bindv6only; -+ int flush_delay; -+ int ip6_rt_max_size; -+ int ip6_rt_gc_min_interval; -+ int ip6_rt_gc_timeout; -+ int ip6_rt_gc_interval; -+ int ip6_rt_gc_elasticity; -+ int ip6_rt_mtu_expires; -+ int ip6_rt_min_advmss; -+ int multipath_hash_policy; -+ int flowlabel_consistency; -+ int auto_flowlabels; -+ int icmpv6_time; -+ int icmpv6_echo_ignore_all; -+ int anycast_src_echo_reply; -+ int ip_nonlocal_bind; -+ int fwmark_reflect; -+ int idgen_retries; -+ int idgen_delay; -+ int flowlabel_state_ranges; -+ int flowlabel_reflect; -+ int max_dst_opts_cnt; -+ int max_hbh_opts_cnt; -+ int max_dst_opts_len; -+ int max_hbh_opts_len; -+ int seg6_flowlabel; -+}; -+ -+struct neighbour; -+ -+struct dst_ops { -+ short unsigned int family; -+ unsigned int gc_thresh; -+ int (*gc)(struct dst_ops *); -+ struct dst_entry * (*check)(struct dst_entry *, __u32); -+ unsigned int (*default_advmss)(const struct dst_entry *); -+ unsigned int (*mtu)(const struct dst_entry *); -+ u32 * (*cow_metrics)(struct dst_entry *, long unsigned int); -+ void (*destroy)(struct dst_entry *); -+ void (*ifdown)(struct dst_entry *, struct net_device *, int); -+ struct dst_entry * (*negative_advice)(struct dst_entry *); -+ void (*link_failure)(struct sk_buff *); -+ void (*update_pmtu)(struct dst_entry *, struct sock *, struct sk_buff *, u32, bool); -+ void (*redirect)(struct dst_entry *, struct sock *, struct sk_buff *); -+ int (*local_out)(struct net *, struct sock *, struct sk_buff *); -+ struct neighbour * (*neigh_lookup)(const struct dst_entry *, struct sk_buff *, const void *); -+ void (*confirm_neigh)(const struct dst_entry *, const void *); -+ struct kmem_cache *kmem_cachep; -+ struct percpu_counter pcpuc_entries; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct ipv6_devconf; -+ -+struct fib6_info; -+ -+struct rt6_info; -+ -+struct rt6_statistics; -+ -+struct fib6_table; -+ -+struct seg6_pernet_data; -+ -+struct netns_ipv6 { -+ struct netns_sysctl_ipv6 sysctl; -+ struct ipv6_devconf *devconf_all; -+ struct ipv6_devconf *devconf_dflt; -+ struct inet_peer_base *peers; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netns_frags frags; -+ struct xt_table *ip6table_filter; -+ struct xt_table *ip6table_mangle; -+ struct xt_table *ip6table_raw; -+ struct xt_table *ip6table_security; -+ struct xt_table *ip6table_nat; -+ struct fib6_info *fib6_null_entry; -+ struct rt6_info *ip6_null_entry; -+ struct rt6_statistics *rt6_stats; -+ struct timer_list ip6_fib_timer; -+ struct hlist_head *fib_table_hash; -+ struct fib6_table *fib6_main_tbl; -+ struct list_head fib6_walkers; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dst_ops ip6_dst_ops; -+ rwlock_t fib6_walker_lock; -+ spinlock_t fib6_gc_lock; -+ unsigned int ip6_rt_gc_expire; -+ long unsigned int ip6_rt_last_gc; -+ unsigned int fib6_rules_require_fldissect; -+ bool fib6_has_custom_rules; -+ struct rt6_info *ip6_prohibit_entry; -+ struct rt6_info *ip6_blk_hole_entry; -+ struct fib6_table *fib6_local_tbl; -+ struct fib_rules_ops *fib6_rules_ops; -+ struct sock **icmp_sk; -+ struct sock *ndisc_sk; -+ struct sock *tcp_sk; -+ struct sock *igmp_sk; -+ struct sock *mc_autojoin_sk; -+ struct list_head mr6_tables; -+ struct fib_rules_ops *mr6_rules_ops; -+ atomic_t dev_addr_genid; -+ atomic_t fib6_sernum; -+ struct seg6_pernet_data *seg6_data; -+ struct fib_notifier_ops *notifier_ops; -+ struct fib_notifier_ops *ip6mr_notifier_ops; -+ unsigned int ipmr_seq; -+ struct { -+ struct hlist_head head; -+ spinlock_t lock; -+ u32 seq; -+ } ip6addrlbl_table; -+ long: 64; -+}; -+ -+struct netns_sysctl_lowpan { -+ struct ctl_table_header *frags_hdr; -+}; -+ -+struct netns_ieee802154_lowpan { -+ struct netns_sysctl_lowpan sysctl; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netns_frags frags; -+}; -+ -+struct sctp_mib; -+ -+struct netns_sctp { -+ struct sctp_mib *sctp_statistics; -+ struct proc_dir_entry *proc_net_sctp; -+ struct ctl_table_header *sysctl_header; -+ struct sock *ctl_sock; -+ struct list_head local_addr_list; -+ struct list_head addr_waitq; -+ struct timer_list addr_wq_timer; -+ struct list_head auto_asconf_splist; -+ spinlock_t addr_wq_lock; -+ spinlock_t local_addr_lock; -+ unsigned int rto_initial; -+ unsigned int rto_min; -+ unsigned int rto_max; -+ int rto_alpha; -+ int rto_beta; -+ int max_burst; -+ int cookie_preserve_enable; -+ char *sctp_hmac_alg; -+ unsigned int valid_cookie_life; -+ unsigned int sack_timeout; -+ unsigned int hb_interval; -+ int max_retrans_association; -+ int max_retrans_path; -+ int max_retrans_init; -+ int pf_retrans; -+ int pf_enable; -+ int sndbuf_policy; -+ int rcvbuf_policy; -+ int default_auto_asconf; -+ int addip_enable; -+ int addip_noauth; -+ int prsctp_enable; -+ int reconf_enable; -+ int auth_enable; -+ int intl_enable; -+ int scope_policy; -+ int rwnd_upd_shift; -+ long unsigned int max_autoclose; -+}; -+ -+struct nf_queue_handler; -+ -+struct nf_logger; -+ -+struct nf_hook_entries; -+ -+struct netns_nf { -+ struct proc_dir_entry *proc_netfilter; -+ const struct nf_queue_handler *queue_handler; -+ const struct nf_logger *nf_loggers[13]; -+ struct ctl_table_header *nf_log_dir_header; -+ struct nf_hook_entries *hooks_ipv4[5]; -+ struct nf_hook_entries *hooks_ipv6[5]; -+ struct nf_hook_entries *hooks_arp[3]; -+ struct nf_hook_entries *hooks_bridge[5]; -+ bool defrag_ipv4; -+ bool defrag_ipv6; -+}; -+ -+struct ebt_table; -+ -+struct netns_xt { -+ struct list_head tables[13]; -+ bool notrack_deprecated_warning; -+ bool clusterip_deprecated_warning; -+ struct ebt_table *broute_table; -+ struct ebt_table *frame_filter; -+ struct ebt_table *frame_nat; -+}; -+ -+struct nf_ct_event_notifier; -+ -+struct nf_exp_event_notifier; -+ -+struct nf_proto_net { -+ struct ctl_table_header *ctl_table_header; -+ struct ctl_table *ctl_table; -+ unsigned int users; -+}; -+ -+struct nf_generic_net { -+ struct nf_proto_net pn; -+ unsigned int timeout; -+}; -+ -+struct nf_tcp_net { -+ struct nf_proto_net pn; -+ unsigned int timeouts[14]; -+ unsigned int tcp_loose; -+ unsigned int tcp_be_liberal; -+ unsigned int tcp_max_retrans; -+}; -+ -+struct nf_udp_net { -+ struct nf_proto_net pn; -+ unsigned int timeouts[2]; -+}; -+ -+struct nf_icmp_net { -+ struct nf_proto_net pn; -+ unsigned int timeout; -+}; -+ -+struct nf_dccp_net { -+ struct nf_proto_net pn; -+ int dccp_loose; -+ unsigned int dccp_timeout[10]; -+}; -+ -+struct nf_sctp_net { -+ struct nf_proto_net pn; -+ unsigned int timeouts[10]; -+}; -+ -+struct nf_ip_net { -+ struct nf_generic_net generic; -+ struct nf_tcp_net tcp; -+ struct nf_udp_net udp; -+ struct nf_icmp_net icmp; -+ struct nf_icmp_net icmpv6; -+ struct nf_dccp_net dccp; -+ struct nf_sctp_net sctp; -+}; -+ -+struct ct_pcpu; -+ -+struct ip_conntrack_stat; -+ -+struct netns_ct { -+ atomic_t count; -+ unsigned int expect_count; -+ struct delayed_work ecache_dwork; -+ bool ecache_dwork_pending; -+ struct ctl_table_header *sysctl_header; -+ struct ctl_table_header *acct_sysctl_header; -+ struct ctl_table_header *tstamp_sysctl_header; -+ struct ctl_table_header *event_sysctl_header; -+ struct ctl_table_header *helper_sysctl_header; -+ unsigned int sysctl_log_invalid; -+ int sysctl_events; -+ int sysctl_acct; -+ int sysctl_auto_assign_helper; -+ bool auto_assign_helper_warned; -+ int sysctl_tstamp; -+ int sysctl_checksum; -+ struct ct_pcpu *pcpu_lists; -+ struct ip_conntrack_stat *stat; -+ struct nf_ct_event_notifier *nf_conntrack_event_cb; -+ struct nf_exp_event_notifier *nf_expect_event_cb; -+ struct nf_ip_net nf_ct_proto; -+ unsigned int labels_used; -+}; -+ -+struct netns_nftables { -+ struct list_head tables; -+ struct list_head commit_list; -+ struct mutex commit_mutex; -+ unsigned int base_seq; -+ u8 gencursor; -+ u8 validate_state; -+}; -+ -+struct netns_nf_frag { -+ struct netns_frags frags; -+}; -+ -+struct xfrm_policy_hash { -+ struct hlist_head *table; -+ unsigned int hmask; -+ u8 dbits4; -+ u8 sbits4; -+ u8 dbits6; -+ u8 sbits6; -+}; -+ -+struct xfrm_policy_hthresh { -+ struct work_struct work; -+ seqlock_t lock; -+ u8 lbits4; -+ u8 rbits4; -+ u8 lbits6; -+ u8 rbits6; -+}; -+ -+struct netns_xfrm { -+ struct list_head state_all; -+ struct hlist_head *state_bydst; -+ struct hlist_head *state_bysrc; -+ struct hlist_head *state_byspi; -+ unsigned int state_hmask; -+ unsigned int state_num; -+ struct work_struct state_hash_work; -+ struct list_head policy_all; -+ struct hlist_head *policy_byidx; -+ unsigned int policy_idx_hmask; -+ struct hlist_head policy_inexact[3]; -+ struct xfrm_policy_hash policy_bydst[3]; -+ unsigned int policy_count[6]; -+ struct work_struct policy_hash_work; -+ struct xfrm_policy_hthresh policy_hthresh; -+ struct sock *nlsk; -+ struct sock *nlsk_stash; -+ u32 sysctl_aevent_etime; -+ u32 sysctl_aevent_rseqth; -+ int sysctl_larval_drop; -+ u32 sysctl_acq_expires; -+ struct ctl_table_header *sysctl_hdr; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dst_ops xfrm4_dst_ops; -+ struct dst_ops xfrm6_dst_ops; -+ spinlock_t xfrm_state_lock; -+ spinlock_t xfrm_policy_lock; -+ struct mutex xfrm_cfg_mutex; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct netns_ipvs; -+ -+struct mpls_route; -+ -+struct netns_mpls { -+ int ip_ttl_propagate; -+ int default_ttl; -+ size_t platform_labels; -+ struct mpls_route **platform_label; -+ struct ctl_table_header *ctl; -+}; -+ -+struct can_dev_rcv_lists; -+ -+struct s_stats; -+ -+struct s_pstats; -+ -+struct netns_can { -+ struct proc_dir_entry *proc_dir; -+ struct proc_dir_entry *pde_version; -+ struct proc_dir_entry *pde_stats; -+ struct proc_dir_entry *pde_reset_stats; -+ struct proc_dir_entry *pde_rcvlist_all; -+ struct proc_dir_entry *pde_rcvlist_fil; -+ struct proc_dir_entry *pde_rcvlist_inv; -+ struct proc_dir_entry *pde_rcvlist_sff; -+ struct proc_dir_entry *pde_rcvlist_eff; -+ struct proc_dir_entry *pde_rcvlist_err; -+ struct proc_dir_entry *bcmproc_dir; -+ struct can_dev_rcv_lists *can_rx_alldev_list; -+ spinlock_t can_rcvlists_lock; -+ struct timer_list can_stattimer; -+ struct s_stats *can_stats; -+ struct s_pstats *can_pstats; -+ struct hlist_head cgw_list; -+}; -+ -+struct uevent_sock; -+ -+struct net_generic; -+ -+struct net { -+ refcount_t passive; -+ refcount_t count; -+ spinlock_t rules_mod_lock; -+ u32 hash_mix; -+ atomic64_t cookie_gen; -+ struct list_head list; -+ struct list_head exit_list; -+ struct llist_node cleanup_list; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ spinlock_t nsid_lock; -+ struct idr netns_ids; -+ struct ns_common ns; -+ struct proc_dir_entry *proc_net; -+ struct proc_dir_entry *proc_net_stat; -+ struct ctl_table_set sysctls; -+ struct sock *rtnl; -+ struct sock *genl_sock; -+ struct uevent_sock *uevent_sock; -+ struct list_head dev_base_head; -+ struct hlist_head *dev_name_head; -+ struct hlist_head *dev_index_head; -+ unsigned int dev_base_seq; -+ int ifindex; -+ unsigned int dev_unreg_count; -+ struct list_head rules_ops; -+ struct list_head fib_notifier_ops; -+ struct net_device *loopback_dev; -+ struct netns_core core; -+ struct netns_mib mib; -+ struct netns_packet packet; -+ struct netns_unix unx; -+ long: 64; -+ long: 64; -+ struct netns_ipv4 ipv4; -+ struct netns_ipv6 ipv6; -+ struct netns_ieee802154_lowpan ieee802154_lowpan; -+ struct netns_sctp sctp; -+ struct netns_nf nf; -+ struct netns_xt xt; -+ struct netns_ct ct; -+ struct netns_nftables nft; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netns_nf_frag nf_frag; -+ struct ctl_table_header *nf_frag_frags_hdr; -+ struct sock *nfnl; -+ struct sock *nfnl_stash; -+ struct list_head nfct_timeout_list; -+ struct net_generic *gen; -+ long: 64; -+ long: 64; -+ struct netns_xfrm xfrm; -+ struct netns_ipvs *ipvs; -+ struct netns_mpls mpls; -+ struct netns_can can; -+ struct sock *diag_nlsk; -+ atomic_t fnhe_genid; -+}; -+ -+enum { -+ __PERCPU_REF_ATOMIC = 1, -+ __PERCPU_REF_DEAD = 2, -+ __PERCPU_REF_ATOMIC_DEAD = 3, -+ __PERCPU_REF_FLAG_BITS = 2, -+}; -+ -+struct bpf_insn { -+ __u8 code; -+ __u8 dst_reg: 4; -+ __u8 src_reg: 4; -+ __s16 off; -+ __s32 imm; -+}; -+ -+enum bpf_prog_type { -+ BPF_PROG_TYPE_UNSPEC = 0, -+ BPF_PROG_TYPE_SOCKET_FILTER = 1, -+ BPF_PROG_TYPE_KPROBE = 2, -+ BPF_PROG_TYPE_SCHED_CLS = 3, -+ BPF_PROG_TYPE_SCHED_ACT = 4, -+ BPF_PROG_TYPE_TRACEPOINT = 5, -+ BPF_PROG_TYPE_XDP = 6, -+ BPF_PROG_TYPE_PERF_EVENT = 7, -+ BPF_PROG_TYPE_CGROUP_SKB = 8, -+ BPF_PROG_TYPE_CGROUP_SOCK = 9, -+ BPF_PROG_TYPE_LWT_IN = 10, -+ BPF_PROG_TYPE_LWT_OUT = 11, -+ BPF_PROG_TYPE_LWT_XMIT = 12, -+ BPF_PROG_TYPE_SOCK_OPS = 13, -+ BPF_PROG_TYPE_SK_SKB = 14, -+ BPF_PROG_TYPE_CGROUP_DEVICE = 15, -+ BPF_PROG_TYPE_SK_MSG = 16, -+ BPF_PROG_TYPE_RAW_TRACEPOINT = 17, -+ BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18, -+ BPF_PROG_TYPE_LWT_SEG6LOCAL = 19, -+ BPF_PROG_TYPE_LIRC_MODE2 = 20, -+ BPF_PROG_TYPE_SK_REUSEPORT = 21, -+ BPF_PROG_TYPE_FLOW_DISSECTOR = 22, -+ BPF_PROG_TYPE_CGROUP_SYSCTL = 23, -+ BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24, -+}; -+ -+enum bpf_attach_type { -+ BPF_CGROUP_INET_INGRESS = 0, -+ BPF_CGROUP_INET_EGRESS = 1, -+ BPF_CGROUP_INET_SOCK_CREATE = 2, -+ BPF_CGROUP_SOCK_OPS = 3, -+ BPF_SK_SKB_STREAM_PARSER = 4, -+ BPF_SK_SKB_STREAM_VERDICT = 5, -+ BPF_CGROUP_DEVICE = 6, -+ BPF_SK_MSG_VERDICT = 7, -+ BPF_CGROUP_INET4_BIND = 8, -+ BPF_CGROUP_INET6_BIND = 9, -+ BPF_CGROUP_INET4_CONNECT = 10, -+ BPF_CGROUP_INET6_CONNECT = 11, -+ BPF_CGROUP_INET4_POST_BIND = 12, -+ BPF_CGROUP_INET6_POST_BIND = 13, -+ BPF_CGROUP_UDP4_SENDMSG = 14, -+ BPF_CGROUP_UDP6_SENDMSG = 15, -+ BPF_LIRC_MODE2 = 16, -+ BPF_CGROUP_UDP4_RECVMSG = 19, -+ BPF_CGROUP_UDP6_RECVMSG = 20, -+ __MAX_BPF_ATTACH_TYPE = 21, -+}; -+ -+struct sock_filter { -+ __u16 code; -+ __u8 jt; -+ __u8 jf; -+ __u32 k; -+}; -+ -+struct bpf_prog_aux; -+ -+struct sock_fprog_kern; -+ -+struct bpf_prog { -+ u16 pages; -+ u16 jited: 1; -+ u16 jit_requested: 1; -+ u16 undo_set_mem: 1; -+ u16 gpl_compatible: 1; -+ u16 cb_access: 1; -+ u16 dst_needed: 1; -+ u16 blinded: 1; -+ u16 is_func: 1; -+ u16 kprobe_override: 1; -+ u16 has_callchain_buf: 1; -+ enum bpf_prog_type type; -+ enum bpf_attach_type expected_attach_type; -+ u32 len; -+ u32 jited_len; -+ u8 tag[8]; -+ struct bpf_prog_aux *aux; -+ struct sock_fprog_kern *orig_prog; -+ unsigned int (*bpf_func)(const void *, const struct bpf_insn *); -+ union { -+ struct sock_filter insns[0]; -+ struct bpf_insn insnsi[0]; -+ }; -+}; -+ -+enum pageflags { -+ PG_locked = 0, -+ PG_error = 1, -+ PG_referenced = 2, -+ PG_uptodate = 3, -+ PG_dirty = 4, -+ PG_lru = 5, -+ PG_active = 6, -+ PG_waiters = 7, -+ PG_slab = 8, -+ PG_owner_priv_1 = 9, -+ PG_arch_1 = 10, -+ PG_reserved = 11, -+ PG_private = 12, -+ PG_private_2 = 13, -+ PG_writeback = 14, -+ PG_head = 15, -+ PG_mappedtodisk = 16, -+ PG_reclaim = 17, -+ PG_swapbacked = 18, -+ PG_unevictable = 19, -+ PG_mlocked = 20, -+ PG_uncached = 21, -+ PG_hwpoison = 22, -+ PG_young = 23, -+ PG_idle = 24, -+ PG_percpu_ref = 25, -+ __NR_PAGEFLAGS = 26, -+ PG_checked = 9, -+ PG_swapcache = 9, -+ PG_fscache = 13, -+ PG_pinned = 9, -+ PG_savepinned = 4, -+ PG_foreign = 9, -+ PG_slob_free = 12, -+ PG_double_map = 13, -+ PG_isolated = 17, -+}; -+ -+struct blkg_rwstat { -+ struct percpu_counter cpu_cnt[5]; -+ atomic64_t aux_cnt[5]; -+}; -+ -+struct blkcg; -+ -+struct blkg_policy_data; -+ -+struct blkcg_gq { -+ struct request_queue *q; -+ struct list_head q_node; -+ struct hlist_node blkcg_node; -+ struct blkcg *blkcg; -+ struct bdi_writeback_congested *wb_congested; -+ struct blkcg_gq *parent; -+ struct request_list rl; -+ atomic_t refcnt; -+ bool online; -+ struct blkg_rwstat stat_bytes; -+ struct blkg_rwstat stat_ios; -+ struct blkg_policy_data *pd[5]; -+ struct callback_head callback_head; -+ atomic_t use_delay; -+ atomic64_t delay_nsec; -+ atomic64_t delay_start; -+ u64 last_delay; -+ int last_use; -+}; -+ -+typedef int suspend_state_t; -+ -+enum suspend_stat_step { -+ SUSPEND_FREEZE = 1, -+ SUSPEND_PREPARE = 2, -+ SUSPEND_SUSPEND = 3, -+ SUSPEND_SUSPEND_LATE = 4, -+ SUSPEND_SUSPEND_NOIRQ = 5, -+ SUSPEND_RESUME_NOIRQ = 6, -+ SUSPEND_RESUME_EARLY = 7, -+ SUSPEND_RESUME = 8, -+}; -+ -+struct suspend_stats { -+ int success; -+ int fail; -+ int failed_freeze; -+ int failed_prepare; -+ int failed_suspend; -+ int failed_suspend_late; -+ int failed_suspend_noirq; -+ int failed_resume; -+ int failed_resume_early; -+ int failed_resume_noirq; -+ int last_failed_dev; -+ char failed_devs[80]; -+ int last_failed_errno; -+ int errno[2]; -+ int last_failed_step; -+ enum suspend_stat_step failed_steps[2]; -+}; -+ -+enum s2idle_states { -+ S2IDLE_STATE_NONE = 0, -+ S2IDLE_STATE_ENTER = 1, -+ S2IDLE_STATE_WAKE = 2, -+}; -+ -+struct pbe { -+ void *address; -+ void *orig_address; -+ struct pbe *next; -+}; -+ -+enum { -+ Root_NFS = 255, -+ Root_RAM0 = 1048576, -+ Root_RAM1 = 1048577, -+ Root_FD0 = 2097152, -+ Root_HDA1 = 3145729, -+ Root_HDA2 = 3145730, -+ Root_SDA1 = 8388609, -+ Root_SDA2 = 8388610, -+ Root_HDC1 = 23068673, -+ Root_SR0 = 11534336, -+}; -+ -+struct scatterlist { -+ long unsigned int page_link; -+ unsigned int offset; -+ unsigned int length; -+ dma_addr_t dma_address; -+ unsigned int dma_length; -+}; -+ -+struct sg_table { -+ struct scatterlist *sgl; -+ unsigned int nents; -+ unsigned int orig_nents; -+}; -+ -+struct xdr_buf { -+ struct kvec head[1]; -+ struct kvec tail[1]; -+ struct page **pages; -+ unsigned int page_base; -+ unsigned int page_len; -+ unsigned int flags; -+ unsigned int buflen; -+ unsigned int len; -+}; -+ -+typedef unsigned int sk_buff_data_t; -+ -+struct sec_path; -+ -+struct nf_bridge_info; -+ -+struct sk_buff { -+ union { -+ struct { -+ struct sk_buff *next; -+ struct sk_buff *prev; -+ union { -+ struct net_device *dev; -+ long unsigned int dev_scratch; -+ }; -+ }; -+ struct rb_node rbnode; -+ struct list_head list; -+ }; -+ union { -+ struct sock *sk; -+ int ip_defrag_offset; -+ }; -+ union { -+ ktime_t tstamp; -+ u64 skb_mstamp; -+ }; -+ char cb[48]; -+ union { -+ struct { -+ long unsigned int _skb_refdst; -+ void (*destructor)(struct sk_buff *); -+ }; -+ struct list_head tcp_tsorted_anchor; -+ }; -+ struct sec_path *sp; -+ long unsigned int _nfct; -+ struct nf_bridge_info *nf_bridge; -+ unsigned int len; -+ unsigned int data_len; -+ __u16 mac_len; -+ __u16 hdr_len; -+ __u16 queue_mapping; -+ __u8 __cloned_offset[0]; -+ __u8 cloned: 1; -+ __u8 nohdr: 1; -+ __u8 fclone: 2; -+ __u8 peeked: 1; -+ __u8 head_frag: 1; -+ __u8 xmit_more: 1; -+ __u8 pfmemalloc: 1; -+ __u32 headers_start[0]; -+ __u8 __pkt_type_offset[0]; -+ __u8 pkt_type: 3; -+ __u8 ignore_df: 1; -+ __u8 nf_trace: 1; -+ __u8 ip_summed: 2; -+ __u8 ooo_okay: 1; -+ __u8 l4_hash: 1; -+ __u8 sw_hash: 1; -+ __u8 wifi_acked_valid: 1; -+ __u8 wifi_acked: 1; -+ __u8 no_fcs: 1; -+ __u8 encapsulation: 1; -+ __u8 encap_hdr_csum: 1; -+ __u8 csum_valid: 1; -+ __u8 csum_complete_sw: 1; -+ __u8 csum_level: 2; -+ __u8 csum_not_inet: 1; -+ __u8 dst_pending_confirm: 1; -+ __u8 ndisc_nodetype: 2; -+ __u8 ipvs_property: 1; -+ __u8 inner_protocol_type: 1; -+ __u8 remcsum_offload: 1; -+ __u8 offload_fwd_mark: 1; -+ __u8 offload_mr_fwd_mark: 1; -+ __u8 tc_skip_classify: 1; -+ __u8 tc_at_ingress: 1; -+ __u8 tc_redirected: 1; -+ __u8 tc_from_ingress: 1; -+ __u8 decrypted: 1; -+ __u16 tc_index; -+ union { -+ __wsum csum; -+ struct { -+ __u16 csum_start; -+ __u16 csum_offset; -+ }; -+ }; -+ __u32 priority; -+ int skb_iif; -+ __u32 hash; -+ __be16 vlan_proto; -+ __u16 vlan_tci; -+ union { -+ unsigned int napi_id; -+ unsigned int sender_cpu; -+ }; -+ __u32 secmark; -+ union { -+ __u32 mark; -+ __u32 reserved_tailroom; -+ }; -+ union { -+ __be16 inner_protocol; -+ __u8 inner_ipproto; -+ }; -+ __u16 inner_transport_header; -+ __u16 inner_network_header; -+ __u16 inner_mac_header; -+ __be16 protocol; -+ __u16 transport_header; -+ __u16 network_header; -+ __u16 mac_header; -+ __u32 headers_end[0]; -+ sk_buff_data_t tail; -+ sk_buff_data_t end; -+ unsigned char *head; -+ unsigned char *data; -+ unsigned int truesize; -+ refcount_t users; -+}; -+ -+struct xdr_stream { -+ __be32 *p; -+ struct xdr_buf *buf; -+ __be32 *end; -+ struct kvec *iov; -+ struct kvec scratch; -+ struct page **page_ptr; -+ unsigned int nwords; -+}; -+ -+struct rpc_rqst; -+ -+typedef void (*kxdreproc_t)(struct rpc_rqst *, struct xdr_stream *, const void *); -+ -+struct rpc_xprt; -+ -+struct rpc_task; -+ -+struct rpc_cred; -+ -+struct rpc_rqst { -+ struct rpc_xprt *rq_xprt; -+ struct xdr_buf rq_snd_buf; -+ struct xdr_buf rq_rcv_buf; -+ struct rpc_task *rq_task; -+ struct rpc_cred *rq_cred; -+ __be32 rq_xid; -+ int rq_cong; -+ u32 rq_seqno; -+ int rq_enc_pages_num; -+ struct page **rq_enc_pages; -+ void (*rq_release_snd_buf)(struct rpc_rqst *); -+ struct list_head rq_list; -+ void *rq_buffer; -+ size_t rq_callsize; -+ void *rq_rbuffer; -+ size_t rq_rcvsize; -+ size_t rq_xmit_bytes_sent; -+ size_t rq_reply_bytes_recvd; -+ struct xdr_buf rq_private_buf; -+ long unsigned int rq_majortimeo; -+ long unsigned int rq_timeout; -+ ktime_t rq_rtt; -+ unsigned int rq_retries; -+ unsigned int rq_connect_cookie; -+ u32 rq_bytes_sent; -+ ktime_t rq_xtime; -+ int rq_ntrans; -+ struct list_head rq_bc_list; -+ long unsigned int rq_bc_pa_state; -+ struct list_head rq_bc_pa_list; -+}; -+ -+typedef int (*kxdrdproc_t)(struct rpc_rqst *, struct xdr_stream *, void *); -+ -+struct rpc_procinfo; -+ -+struct rpc_message { -+ const struct rpc_procinfo *rpc_proc; -+ void *rpc_argp; -+ void *rpc_resp; -+ struct rpc_cred *rpc_cred; -+}; -+ -+struct rpc_procinfo { -+ u32 p_proc; -+ kxdreproc_t p_encode; -+ kxdrdproc_t p_decode; -+ unsigned int p_arglen; -+ unsigned int p_replen; -+ unsigned int p_timer; -+ u32 p_statidx; -+ const char *p_name; -+}; -+ -+struct rpc_auth; -+ -+struct rpc_credops; -+ -+struct rpc_cred { -+ struct hlist_node cr_hash; -+ struct list_head cr_lru; -+ struct callback_head cr_rcu; -+ struct rpc_auth *cr_auth; -+ const struct rpc_credops *cr_ops; -+ long unsigned int cr_expire; -+ long unsigned int cr_flags; -+ atomic_t cr_count; -+ kuid_t cr_uid; -+}; -+ -+struct rpc_wait { -+ struct list_head list; -+ struct list_head links; -+ struct list_head timer_list; -+ long unsigned int expires; -+}; -+ -+struct rpc_wait_queue; -+ -+struct rpc_call_ops; -+ -+struct rpc_clnt; -+ -+struct rpc_task { -+ atomic_t tk_count; -+ int tk_status; -+ struct list_head tk_task; -+ void (*tk_callback)(struct rpc_task *); -+ void (*tk_action)(struct rpc_task *); -+ long unsigned int tk_timeout; -+ long unsigned int tk_runstate; -+ struct rpc_wait_queue *tk_waitqueue; -+ union { -+ struct work_struct tk_work; -+ struct rpc_wait tk_wait; -+ } u; -+ struct rpc_message tk_msg; -+ void *tk_calldata; -+ const struct rpc_call_ops *tk_ops; -+ struct rpc_clnt *tk_client; -+ struct rpc_xprt *tk_xprt; -+ struct rpc_rqst *tk_rqstp; -+ struct workqueue_struct *tk_workqueue; -+ ktime_t tk_start; -+ pid_t tk_owner; -+ short unsigned int tk_flags; -+ short unsigned int tk_timeouts; -+ short unsigned int tk_pid; -+ unsigned char tk_priority: 2; -+ unsigned char tk_garb_retry: 2; -+ unsigned char tk_cred_retry: 2; -+ unsigned char tk_rebind_retry: 2; -+}; -+ -+struct rpc_timer { -+ struct timer_list timer; -+ struct list_head list; -+ long unsigned int expires; -+}; -+ -+struct rpc_wait_queue { -+ spinlock_t lock; -+ struct list_head tasks[4]; -+ unsigned char maxpriority; -+ unsigned char priority; -+ unsigned char nr; -+ short unsigned int qlen; -+ struct rpc_timer timer_list; -+ const char *name; -+}; -+ -+struct rpc_call_ops { -+ void (*rpc_call_prepare)(struct rpc_task *, void *); -+ void (*rpc_call_done)(struct rpc_task *, void *); -+ void (*rpc_count_stats)(struct rpc_task *, void *); -+ void (*rpc_release)(void *); -+}; -+ -+struct rpc_iostats; -+ -+struct rpc_pipe_dir_head { -+ struct list_head pdh_entries; -+ struct dentry *pdh_dentry; -+}; -+ -+struct rpc_rtt { -+ long unsigned int timeo; -+ long unsigned int srtt[5]; -+ long unsigned int sdrtt[5]; -+ int ntimeouts[5]; -+}; -+ -+struct rpc_timeout { -+ long unsigned int to_initval; -+ long unsigned int to_maxval; -+ long unsigned int to_increment; -+ unsigned int to_retries; -+ unsigned char to_exponential; -+}; -+ -+struct rpc_xprt_switch; -+ -+struct rpc_xprt_iter_ops; -+ -+struct rpc_xprt_iter { -+ struct rpc_xprt_switch *xpi_xpswitch; -+ struct rpc_xprt *xpi_cursor; -+ const struct rpc_xprt_iter_ops *xpi_ops; -+}; -+ -+struct rpc_stat; -+ -+struct rpc_program; -+ -+struct rpc_clnt { -+ atomic_t cl_count; -+ unsigned int cl_clid; -+ struct list_head cl_clients; -+ struct list_head cl_tasks; -+ spinlock_t cl_lock; -+ struct rpc_xprt *cl_xprt; -+ const struct rpc_procinfo *cl_procinfo; -+ u32 cl_prog; -+ u32 cl_vers; -+ u32 cl_maxproc; -+ struct rpc_auth *cl_auth; -+ struct rpc_stat *cl_stats; -+ struct rpc_iostats *cl_metrics; -+ unsigned int cl_softrtry: 1; -+ unsigned int cl_discrtry: 1; -+ unsigned int cl_noretranstimeo: 1; -+ unsigned int cl_autobind: 1; -+ unsigned int cl_chatty: 1; -+ struct rpc_rtt *cl_rtt; -+ const struct rpc_timeout *cl_timeout; -+ atomic_t cl_swapper; -+ int cl_nodelen; -+ char cl_nodename[65]; -+ struct rpc_pipe_dir_head cl_pipedir_objects; -+ struct rpc_clnt *cl_parent; -+ struct rpc_rtt cl_rtt_default; -+ struct rpc_timeout cl_timeout_default; -+ const struct rpc_program *cl_program; -+ struct dentry *cl_debugfs; -+ struct rpc_xprt_iter cl_xpi; -+}; -+ -+struct svc_xprt; -+ -+struct svc_serv; -+ -+struct rpc_xprt_ops; -+ -+struct rpc_xprt { -+ struct kref kref; -+ const struct rpc_xprt_ops *ops; -+ const struct rpc_timeout *timeout; -+ struct __kernel_sockaddr_storage addr; -+ size_t addrlen; -+ int prot; -+ long unsigned int cong; -+ long unsigned int cwnd; -+ size_t max_payload; -+ unsigned int tsh_size; -+ struct rpc_wait_queue binding; -+ struct rpc_wait_queue sending; -+ struct rpc_wait_queue pending; -+ struct rpc_wait_queue backlog; -+ struct list_head free; -+ unsigned int max_reqs; -+ unsigned int min_reqs; -+ unsigned int num_reqs; -+ long unsigned int state; -+ unsigned char resvport: 1; -+ unsigned char reuseport: 1; -+ atomic_t swapper; -+ unsigned int bind_index; -+ struct list_head xprt_switch; -+ long unsigned int bind_timeout; -+ long unsigned int reestablish_timeout; -+ unsigned int connect_cookie; -+ struct work_struct task_cleanup; -+ struct timer_list timer; -+ long unsigned int last_used; -+ long unsigned int idle_timeout; -+ long unsigned int connect_timeout; -+ long unsigned int max_reconnect_timeout; -+ spinlock_t transport_lock; -+ spinlock_t reserve_lock; -+ spinlock_t recv_lock; -+ u32 xid; -+ struct rpc_task *snd_task; -+ struct svc_xprt *bc_xprt; -+ struct svc_serv *bc_serv; -+ int bc_alloc_count; -+ atomic_t bc_free_slots; -+ spinlock_t bc_pa_lock; -+ struct list_head bc_pa_list; -+ struct list_head recv; -+ struct { -+ long unsigned int bind_count; -+ long unsigned int connect_count; -+ long unsigned int connect_start; -+ long unsigned int connect_time; -+ long unsigned int sends; -+ long unsigned int recvs; -+ long unsigned int bad_xids; -+ long unsigned int max_slots; -+ long long unsigned int req_u; -+ long long unsigned int bklog_u; -+ long long unsigned int sending_u; -+ long long unsigned int pending_u; -+ } stat; -+ struct net *xprt_net; -+ const char *servername; -+ const char *address_strings[6]; -+ struct dentry *debugfs; -+ atomic_t inject_disconnect; -+ struct callback_head rcu; -+}; -+ -+typedef u32 rpc_authflavor_t; -+ -+struct ethhdr { -+ unsigned char h_dest[6]; -+ unsigned char h_source[6]; -+ __be16 h_proto; -+}; -+ -+struct flow_dissector { -+ unsigned int used_keys; -+ short unsigned int offset[24]; -+}; -+ -+struct flowi_tunnel { -+ __be64 tun_id; -+}; -+ -+struct flowi_common { -+ int flowic_oif; -+ int flowic_iif; -+ __u32 flowic_mark; -+ __u8 flowic_tos; -+ __u8 flowic_scope; -+ __u8 flowic_proto; -+ __u8 flowic_flags; -+ __u32 flowic_secid; -+ struct flowi_tunnel flowic_tun_key; -+ kuid_t flowic_uid; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+union flowi_uli { -+ struct { -+ __be16 dport; -+ __be16 sport; -+ } ports; -+ struct { -+ __u8 type; -+ __u8 code; -+ } icmpt; -+ struct { -+ __le16 dport; -+ __le16 sport; -+ } dnports; -+ __be32 spi; -+ __be32 gre_key; -+ struct { -+ __u8 type; -+ } mht; -+}; -+ -+struct flowi4 { -+ struct flowi_common __fl_common; -+ __be32 saddr; -+ __be32 daddr; -+ union flowi_uli uli; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct flowi6 { -+ struct flowi_common __fl_common; -+ struct in6_addr daddr; -+ struct in6_addr saddr; -+ __be32 flowlabel; -+ union flowi_uli uli; -+ __u32 mp_hash; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct flowidn { -+ struct flowi_common __fl_common; -+ __le16 daddr; -+ __le16 saddr; -+ union flowi_uli uli; -+}; -+ -+struct flowi { -+ union { -+ struct flowi_common __fl_common; -+ struct flowi4 ip4; -+ struct flowi6 ip6; -+ struct flowidn dn; -+ } u; -+}; -+ -+struct ipstats_mib { -+ u64 mibs[37]; -+ struct u64_stats_sync syncp; -+}; -+ -+struct icmp_mib { -+ long unsigned int mibs[28]; -+}; -+ -+struct icmpmsg_mib { -+ atomic_long_t mibs[512]; -+}; -+ -+struct icmpv6_mib { -+ long unsigned int mibs[6]; -+}; -+ -+struct icmpv6_mib_device { -+ atomic_long_t mibs[6]; -+}; -+ -+struct icmpv6msg_mib { -+ atomic_long_t mibs[512]; -+}; -+ -+struct icmpv6msg_mib_device { -+ atomic_long_t mibs[512]; -+}; -+ -+struct tcp_mib { -+ long unsigned int mibs[16]; -+}; -+ -+struct udp_mib { -+ long unsigned int mibs[9]; -+}; -+ -+struct linux_mib { -+ long unsigned int mibs[119]; -+}; -+ -+struct linux_xfrm_mib { -+ long unsigned int mibs[29]; -+}; -+ -+struct inet_frag_queue; -+ -+struct inet_frags { -+ unsigned int qsize; -+ void (*constructor)(struct inet_frag_queue *, const void *); -+ void (*destructor)(struct inet_frag_queue *); -+ void (*frag_expire)(struct timer_list *); -+ struct kmem_cache *frags_cachep; -+ const char *frags_cache_name; -+ struct rhashtable_params rhash_params; -+}; -+ -+struct frag_v4_compare_key { -+ __be32 saddr; -+ __be32 daddr; -+ u32 user; -+ u32 vif; -+ __be16 id; -+ u16 protocol; -+}; -+ -+struct frag_v6_compare_key { -+ struct in6_addr saddr; -+ struct in6_addr daddr; -+ u32 user; -+ __be32 id; -+ u32 iif; -+}; -+ -+struct inet_frag_queue { -+ struct rhash_head node; -+ union { -+ struct frag_v4_compare_key v4; -+ struct frag_v6_compare_key v6; -+ } key; -+ struct timer_list timer; -+ spinlock_t lock; -+ refcount_t refcnt; -+ struct sk_buff *fragments; -+ struct rb_root rb_fragments; -+ struct sk_buff *fragments_tail; -+ struct sk_buff *last_run_head; -+ ktime_t stamp; -+ int len; -+ int meat; -+ __u8 flags; -+ u16 max_size; -+ struct netns_frags *net; -+ struct callback_head rcu; -+}; -+ -+struct fib_rule; -+ -+struct fib_lookup_arg; -+ -+struct fib_rule_hdr; -+ -+struct nlattr; -+ -+struct netlink_ext_ack; -+ -+struct nla_policy; -+ -+struct fib_rules_ops { -+ int family; -+ struct list_head list; -+ int rule_size; -+ int addr_size; -+ int unresolved_rules; -+ int nr_goto_rules; -+ unsigned int fib_rules_seq; -+ int (*action)(struct fib_rule *, struct flowi *, int, struct fib_lookup_arg *); -+ bool (*suppress)(struct fib_rule *, struct fib_lookup_arg *); -+ int (*match)(struct fib_rule *, struct flowi *, int); -+ int (*configure)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *, struct nlattr **, struct netlink_ext_ack *); -+ int (*delete)(struct fib_rule *); -+ int (*compare)(struct fib_rule *, struct fib_rule_hdr *, struct nlattr **); -+ int (*fill)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *); -+ size_t (*nlmsg_payload)(struct fib_rule *); -+ void (*flush_cache)(struct fib_rules_ops *); -+ int nlgroup; -+ const struct nla_policy *policy; -+ struct list_head rules_list; -+ struct module *owner; -+ struct net *fro_net; -+ struct callback_head rcu; -+}; -+ -+enum tcp_ca_event { -+ CA_EVENT_TX_START = 0, -+ CA_EVENT_CWND_RESTART = 1, -+ CA_EVENT_COMPLETE_CWR = 2, -+ CA_EVENT_LOSS = 3, -+ CA_EVENT_ECN_NO_CE = 4, -+ CA_EVENT_ECN_IS_CE = 5, -+}; -+ -+struct ack_sample; -+ -+struct rate_sample; -+ -+union tcp_cc_info; -+ -+struct tcp_congestion_ops { -+ struct list_head list; -+ u32 key; -+ u32 flags; -+ void (*init)(struct sock *); -+ void (*release)(struct sock *); -+ u32 (*ssthresh)(struct sock *); -+ void (*cong_avoid)(struct sock *, u32, u32); -+ void (*set_state)(struct sock *, u8); -+ void (*cwnd_event)(struct sock *, enum tcp_ca_event); -+ void (*in_ack_event)(struct sock *, u32); -+ u32 (*undo_cwnd)(struct sock *); -+ void (*pkts_acked)(struct sock *, const struct ack_sample *); -+ u32 (*min_tso_segs)(struct sock *); -+ u32 (*sndbuf_expand)(struct sock *); -+ void (*cong_control)(struct sock *, const struct rate_sample *); -+ size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *); -+ char name[16]; -+ struct module *owner; -+}; -+ -+struct fib_notifier_ops { -+ int family; -+ struct list_head list; -+ unsigned int (*fib_seq_read)(struct net *); -+ int (*fib_dump)(struct net *, struct notifier_block *); -+ struct module *owner; -+ struct callback_head rcu; -+}; -+ -+struct xfrm_state; -+ -+struct lwtunnel_state; -+ -+struct dst_entry { -+ struct net_device *dev; -+ struct dst_ops *ops; -+ long unsigned int _metrics; -+ long unsigned int expires; -+ struct xfrm_state *xfrm; -+ int (*input)(struct sk_buff *); -+ int (*output)(struct net *, struct sock *, struct sk_buff *); -+ short unsigned int flags; -+ short int obsolete; -+ short unsigned int header_len; -+ short unsigned int trailer_len; -+ atomic_t __refcnt; -+ int __use; -+ long unsigned int lastuse; -+ struct lwtunnel_state *lwtstate; -+ struct callback_head callback_head; -+ short int error; -+ short int __pad; -+ __u32 tclassid; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+}; -+ -+struct net_device_stats { -+ long unsigned int rx_packets; -+ long unsigned int tx_packets; -+ long unsigned int rx_bytes; -+ long unsigned int tx_bytes; -+ long unsigned int rx_errors; -+ long unsigned int tx_errors; -+ long unsigned int rx_dropped; -+ long unsigned int tx_dropped; -+ long unsigned int multicast; -+ long unsigned int collisions; -+ long unsigned int rx_length_errors; -+ long unsigned int rx_over_errors; -+ long unsigned int rx_crc_errors; -+ long unsigned int rx_frame_errors; -+ long unsigned int rx_fifo_errors; -+ long unsigned int rx_missed_errors; -+ long unsigned int tx_aborted_errors; -+ long unsigned int tx_carrier_errors; -+ long unsigned int tx_fifo_errors; -+ long unsigned int tx_heartbeat_errors; -+ long unsigned int tx_window_errors; -+ long unsigned int rx_compressed; -+ long unsigned int tx_compressed; -+}; -+ -+struct netdev_hw_addr_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct tipc_bearer; -+ -+struct wireless_dev; -+ -+struct mpls_dev; -+ -+enum rx_handler_result { -+ RX_HANDLER_CONSUMED = 0, -+ RX_HANDLER_ANOTHER = 1, -+ RX_HANDLER_EXACT = 2, -+ RX_HANDLER_PASS = 3, -+}; -+ -+typedef enum rx_handler_result rx_handler_result_t; -+ -+typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **); -+ -+struct pcpu_dstats; -+ -+struct pcpu_vstats; -+ -+struct garp_port; -+ -+struct mrp_port; -+ -+struct netdev_tc_txq { -+ u16 count; -+ u16 offset; -+}; -+ -+struct sfp_bus; -+ -+struct dev_ifalias; -+ -+struct net_device_ops; -+ -+struct ethtool_ops; -+ -+struct switchdev_ops; -+ -+struct l3mdev_ops; -+ -+struct ndisc_ops; -+ -+struct xfrmdev_ops; -+ -+struct tlsdev_ops; -+ -+struct header_ops; -+ -+struct vlan_info; -+ -+struct in_device; -+ -+struct inet6_dev; -+ -+struct wpan_dev; -+ -+struct netdev_rx_queue; -+ -+struct mini_Qdisc; -+ -+struct netdev_queue; -+ -+struct cpu_rmap; -+ -+struct Qdisc; -+ -+struct xps_dev_maps; -+ -+struct netpoll_info; -+ -+struct pcpu_lstats; -+ -+struct pcpu_sw_netstats; -+ -+struct rtnl_link_ops; -+ -+struct dcbnl_rtnl_ops; -+ -+struct netprio_map; -+ -+struct phy_device; -+ -+struct net_device { -+ char name[16]; -+ struct hlist_node name_hlist; -+ struct dev_ifalias *ifalias; -+ long unsigned int mem_end; -+ long unsigned int mem_start; -+ long unsigned int base_addr; -+ int irq; -+ long unsigned int state; -+ struct list_head dev_list; -+ struct list_head napi_list; -+ struct list_head unreg_list; -+ struct list_head close_list; -+ struct list_head ptype_all; -+ struct list_head ptype_specific; -+ struct { -+ struct list_head upper; -+ struct list_head lower; -+ } adj_list; -+ netdev_features_t features; -+ netdev_features_t hw_features; -+ netdev_features_t wanted_features; -+ netdev_features_t vlan_features; -+ netdev_features_t hw_enc_features; -+ netdev_features_t mpls_features; -+ netdev_features_t gso_partial_features; -+ int ifindex; -+ int group; -+ struct net_device_stats stats; -+ atomic_long_t rx_dropped; -+ atomic_long_t tx_dropped; -+ atomic_long_t rx_nohandler; -+ atomic_t carrier_up_count; -+ atomic_t carrier_down_count; -+ const struct net_device_ops *netdev_ops; -+ const struct ethtool_ops *ethtool_ops; -+ const struct switchdev_ops *switchdev_ops; -+ const struct l3mdev_ops *l3mdev_ops; -+ const struct ndisc_ops *ndisc_ops; -+ const struct xfrmdev_ops *xfrmdev_ops; -+ const struct tlsdev_ops *tlsdev_ops; -+ const struct header_ops *header_ops; -+ unsigned int flags; -+ unsigned int priv_flags; -+ short unsigned int gflags; -+ short unsigned int padded; -+ unsigned char operstate; -+ unsigned char link_mode; -+ unsigned char if_port; -+ unsigned char dma; -+ unsigned int mtu; -+ unsigned int min_mtu; -+ unsigned int max_mtu; -+ short unsigned int type; -+ short unsigned int hard_header_len; -+ unsigned char min_header_len; -+ short unsigned int needed_headroom; -+ short unsigned int needed_tailroom; -+ unsigned char perm_addr[32]; -+ unsigned char addr_assign_type; -+ unsigned char addr_len; -+ unsigned char upper_level; -+ unsigned char lower_level; -+ short unsigned int neigh_priv_len; -+ short unsigned int dev_id; -+ short unsigned int dev_port; -+ spinlock_t addr_list_lock; -+ unsigned char name_assign_type; -+ bool uc_promisc; -+ struct netdev_hw_addr_list uc; -+ struct netdev_hw_addr_list mc; -+ struct netdev_hw_addr_list dev_addrs; -+ struct kset *queues_kset; -+ unsigned int promiscuity; -+ unsigned int allmulti; -+ struct vlan_info *vlan_info; -+ struct tipc_bearer *tipc_ptr; -+ struct in_device *ip_ptr; -+ struct inet6_dev *ip6_ptr; -+ struct wireless_dev *ieee80211_ptr; -+ struct wpan_dev *ieee802154_ptr; -+ struct mpls_dev *mpls_ptr; -+ unsigned char *dev_addr; -+ struct netdev_rx_queue *_rx; -+ unsigned int num_rx_queues; -+ unsigned int real_num_rx_queues; -+ struct bpf_prog *xdp_prog; -+ long unsigned int gro_flush_timeout; -+ rx_handler_func_t *rx_handler; -+ void *rx_handler_data; -+ struct mini_Qdisc *miniq_ingress; -+ struct netdev_queue *ingress_queue; -+ struct nf_hook_entries *nf_hooks_ingress; -+ unsigned char broadcast[32]; -+ struct cpu_rmap *rx_cpu_rmap; -+ struct hlist_node index_hlist; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netdev_queue *_tx; -+ unsigned int num_tx_queues; -+ unsigned int real_num_tx_queues; -+ struct Qdisc *qdisc; -+ struct hlist_head qdisc_hash[16]; -+ unsigned int tx_queue_len; -+ spinlock_t tx_global_lock; -+ int watchdog_timeo; -+ struct xps_dev_maps *xps_cpus_map; -+ struct xps_dev_maps *xps_rxqs_map; -+ struct mini_Qdisc *miniq_egress; -+ struct timer_list watchdog_timer; -+ int *pcpu_refcnt; -+ struct list_head todo_list; -+ struct list_head link_watch_list; -+ enum { -+ NETREG_UNINITIALIZED = 0, -+ NETREG_REGISTERED = 1, -+ NETREG_UNREGISTERING = 2, -+ NETREG_UNREGISTERED = 3, -+ NETREG_RELEASED = 4, -+ NETREG_DUMMY = 5, -+ } reg_state: 8; -+ bool dismantle; -+ enum { -+ RTNL_LINK_INITIALIZED = 0, -+ RTNL_LINK_INITIALIZING = 1, -+ } rtnl_link_state: 16; -+ bool needs_free_netdev; -+ void (*priv_destructor)(struct net_device *); -+ struct netpoll_info *npinfo; -+ possible_net_t nd_net; -+ union { -+ void *ml_priv; -+ struct pcpu_lstats *lstats; -+ struct pcpu_sw_netstats *tstats; -+ struct pcpu_dstats *dstats; -+ struct pcpu_vstats *vstats; -+ }; -+ struct garp_port *garp_port; -+ struct mrp_port *mrp_port; -+ struct device dev; -+ const struct attribute_group *sysfs_groups[4]; -+ const struct attribute_group *sysfs_rx_queue_group; -+ const struct rtnl_link_ops *rtnl_link_ops; -+ unsigned int gso_max_size; -+ u16 gso_max_segs; -+ const struct dcbnl_rtnl_ops *dcbnl_ops; -+ s16 num_tc; -+ struct netdev_tc_txq tc_to_txq[16]; -+ u8 prio_tc_map[16]; -+ unsigned int fcoe_ddp_xid; -+ struct netprio_map *priomap; -+ struct phy_device *phydev; -+ struct sfp_bus *sfp_bus; -+ struct lock_class_key *qdisc_tx_busylock; -+ struct lock_class_key *qdisc_running_key; -+ bool proto_down; -+ unsigned int wol_enabled: 1; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+ long unsigned int kabi_reserved17; -+ long unsigned int kabi_reserved18; -+ long unsigned int kabi_reserved19; -+ long unsigned int kabi_reserved20; -+ long unsigned int kabi_reserved21; -+ long unsigned int kabi_reserved22; -+ long unsigned int kabi_reserved23; -+ long unsigned int kabi_reserved24; -+ long unsigned int kabi_reserved25; -+ long unsigned int kabi_reserved26; -+ long unsigned int kabi_reserved27; -+ long unsigned int kabi_reserved28; -+ long unsigned int kabi_reserved29; -+ long unsigned int kabi_reserved30; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct hh_cache { -+ unsigned int hh_len; -+ seqlock_t hh_lock; -+ long unsigned int hh_data[12]; -+}; -+ -+struct neigh_table; -+ -+struct neigh_parms; -+ -+struct neigh_ops; -+ -+struct neighbour { -+ struct neighbour *next; -+ struct neigh_table *tbl; -+ struct neigh_parms *parms; -+ long unsigned int confirmed; -+ long unsigned int updated; -+ rwlock_t lock; -+ refcount_t refcnt; -+ struct sk_buff_head arp_queue; -+ unsigned int arp_queue_len_bytes; -+ struct timer_list timer; -+ long unsigned int used; -+ atomic_t probes; -+ __u8 flags; -+ __u8 nud_state; -+ __u8 type; -+ __u8 dead; -+ seqlock_t ha_lock; -+ unsigned char ha[32]; -+ struct hh_cache hh; -+ int (*output)(struct neighbour *, struct sk_buff *); -+ const struct neigh_ops *ops; -+ struct callback_head rcu; -+ struct net_device *dev; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ u8 primary_key[0]; -+}; -+ -+struct ipv6_stable_secret { -+ bool initialized; -+ struct in6_addr secret; -+}; -+ -+struct ipv6_devconf { -+ __s32 forwarding; -+ __s32 hop_limit; -+ __s32 mtu6; -+ __s32 accept_ra; -+ __s32 accept_redirects; -+ __s32 autoconf; -+ __s32 dad_transmits; -+ __s32 rtr_solicits; -+ __s32 rtr_solicit_interval; -+ __s32 rtr_solicit_max_interval; -+ __s32 rtr_solicit_delay; -+ __s32 force_mld_version; -+ __s32 mldv1_unsolicited_report_interval; -+ __s32 mldv2_unsolicited_report_interval; -+ __s32 use_tempaddr; -+ __s32 temp_valid_lft; -+ __s32 temp_prefered_lft; -+ __s32 regen_max_retry; -+ __s32 max_desync_factor; -+ __s32 max_addresses; -+ __s32 accept_ra_defrtr; -+ __s32 accept_ra_min_hop_limit; -+ __s32 accept_ra_pinfo; -+ __s32 ignore_routes_with_linkdown; -+ __s32 accept_ra_rtr_pref; -+ __s32 rtr_probe_interval; -+ __s32 accept_ra_rt_info_min_plen; -+ __s32 accept_ra_rt_info_max_plen; -+ __s32 proxy_ndp; -+ __s32 accept_source_route; -+ __s32 accept_ra_from_local; -+ __s32 optimistic_dad; -+ __s32 use_optimistic; -+ __s32 mc_forwarding; -+ __s32 disable_ipv6; -+ __s32 drop_unicast_in_l2_multicast; -+ __s32 accept_dad; -+ __s32 force_tllao; -+ __s32 ndisc_notify; -+ __s32 suppress_frag_ndisc; -+ __s32 accept_ra_mtu; -+ __s32 drop_unsolicited_na; -+ struct ipv6_stable_secret stable_secret; -+ __s32 use_oif_addrs_only; -+ __s32 keep_addr_on_down; -+ __s32 seg6_enabled; -+ __u32 enhanced_dad; -+ __u32 addr_gen_mode; -+ __s32 disable_policy; -+ __s32 ndisc_tclass; -+ struct ctl_table_header *sysctl_header; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+}; -+ -+struct nf_queue_entry; -+ -+struct nf_queue_handler { -+ int (*outfn)(struct nf_queue_entry *, unsigned int); -+ void (*nf_hook_drop)(struct net *); -+}; -+ -+enum nf_log_type { -+ NF_LOG_TYPE_LOG = 0, -+ NF_LOG_TYPE_ULOG = 1, -+ NF_LOG_TYPE_MAX = 2, -+}; -+ -+typedef u8 u_int8_t; -+ -+struct nf_loginfo; -+ -+typedef void nf_logfn(struct net *, u_int8_t, unsigned int, const struct sk_buff *, const struct net_device *, const struct net_device *, const struct nf_loginfo *, const char *); -+ -+struct nf_logger { -+ char *name; -+ enum nf_log_type type; -+ nf_logfn *logfn; -+ struct module *me; -+}; -+ -+struct hlist_nulls_head { -+ struct hlist_nulls_node *first; -+}; -+ -+struct ip_conntrack_stat { -+ unsigned int found; -+ unsigned int invalid; -+ unsigned int ignore; -+ unsigned int insert; -+ unsigned int insert_failed; -+ unsigned int drop; -+ unsigned int early_drop; -+ unsigned int error; -+ unsigned int expect_new; -+ unsigned int expect_create; -+ unsigned int expect_delete; -+ unsigned int search_restart; -+}; -+ -+struct ct_pcpu { -+ spinlock_t lock; -+ struct hlist_nulls_head unconfirmed; -+ struct hlist_nulls_head dying; -+}; -+ -+typedef enum { -+ SS_FREE = 0, -+ SS_UNCONNECTED = 1, -+ SS_CONNECTING = 2, -+ SS_CONNECTED = 3, -+ SS_DISCONNECTING = 4, -+} socket_state; -+ -+struct socket_wq { -+ wait_queue_head_t wait; -+ struct fasync_struct *fasync_list; -+ long unsigned int flags; -+ struct callback_head rcu; -+ long: 64; -+}; -+ -+struct proto_ops; -+ -+struct socket { -+ socket_state state; -+ short int type; -+ long unsigned int flags; -+ struct socket_wq *wq; -+ struct file *file; -+ struct sock *sk; -+ const struct proto_ops *ops; -+}; -+ -+typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); -+ -+struct proto_ops { -+ int family; -+ struct module *owner; -+ int (*release)(struct socket *); -+ int (*bind)(struct socket *, struct sockaddr *, int); -+ int (*connect)(struct socket *, struct sockaddr *, int, int); -+ int (*socketpair)(struct socket *, struct socket *); -+ int (*accept)(struct socket *, struct socket *, int, bool); -+ int (*getname)(struct socket *, struct sockaddr *, int); -+ __poll_t (*poll)(struct file *, struct socket *, struct poll_table_struct *); -+ int (*ioctl)(struct socket *, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct socket *, unsigned int, long unsigned int); -+ int (*listen)(struct socket *, int); -+ int (*shutdown)(struct socket *, int); -+ int (*setsockopt)(struct socket *, int, int, char *, unsigned int); -+ int (*getsockopt)(struct socket *, int, int, char *, int *); -+ int (*compat_setsockopt)(struct socket *, int, int, char *, unsigned int); -+ int (*compat_getsockopt)(struct socket *, int, int, char *, int *); -+ int (*sendmsg)(struct socket *, struct msghdr *, size_t); -+ int (*recvmsg)(struct socket *, struct msghdr *, size_t, int); -+ int (*mmap)(struct file *, struct socket *, struct vm_area_struct *); -+ ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int); -+ ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); -+ int (*set_peek_off)(struct sock *, int); -+ int (*peek_len)(struct socket *); -+ int (*read_sock)(struct sock *, read_descriptor_t *, sk_read_actor_t); -+ int (*sendpage_locked)(struct sock *, struct page *, int, size_t, int); -+ int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); -+ int (*set_rcvlowat)(struct sock *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+enum swiotlb_force { -+ SWIOTLB_NORMAL = 0, -+ SWIOTLB_FORCE = 1, -+ SWIOTLB_NO_FORCE = 2, -+}; -+ -+struct pipe_buf_operations; -+ -+struct pipe_buffer { -+ struct page *page; -+ unsigned int offset; -+ unsigned int len; -+ const struct pipe_buf_operations *ops; -+ unsigned int flags; -+ long unsigned int private; -+}; -+ -+struct pipe_buf_operations { -+ int can_merge; -+ int (*confirm)(struct pipe_inode_info *, struct pipe_buffer *); -+ void (*release)(struct pipe_inode_info *, struct pipe_buffer *); -+ int (*steal)(struct pipe_inode_info *, struct pipe_buffer *); -+ bool (*get)(struct pipe_inode_info *, struct pipe_buffer *); -+}; -+ -+struct nf_bridge_info { -+ refcount_t use; -+ enum { -+ BRNF_PROTO_UNCHANGED = 0, -+ BRNF_PROTO_8021Q = 1, -+ BRNF_PROTO_PPPOE = 2, -+ } orig_proto: 8; -+ u8 pkt_otherhost: 1; -+ u8 in_prerouting: 1; -+ u8 bridged_dnat: 1; -+ __u16 frag_max_size; -+ struct net_device *physindev; -+ struct net_device *physoutdev; -+ union { -+ __be32 ipv4_daddr; -+ struct in6_addr ipv6_daddr; -+ char neigh_header[8]; -+ }; -+}; -+ -+struct skb_checksum_ops { -+ __wsum (*update)(const void *, int, __wsum); -+ __wsum (*combine)(__wsum, __wsum, int, int); -+}; -+ -+struct pernet_operations { -+ struct list_head list; -+ int (*init)(struct net *); -+ void (*exit)(struct net *); -+ void (*exit_batch)(struct list_head *); -+ unsigned int *id; -+ size_t size; -+}; -+ -+struct auth_cred { -+ kuid_t uid; -+ kgid_t gid; -+ struct group_info *group_info; -+ const char *principal; -+ long unsigned int ac_flags; -+ unsigned char machine_cred: 1; -+}; -+ -+struct rpc_cred_cache; -+ -+struct rpc_authops; -+ -+struct rpc_auth { -+ unsigned int au_cslack; -+ unsigned int au_rslack; -+ unsigned int au_verfsize; -+ unsigned int au_flags; -+ const struct rpc_authops *au_ops; -+ rpc_authflavor_t au_flavor; -+ atomic_t au_count; -+ struct rpc_cred_cache *au_credcache; -+}; -+ -+struct rpc_credops { -+ const char *cr_name; -+ int (*cr_init)(struct rpc_auth *, struct rpc_cred *); -+ void (*crdestroy)(struct rpc_cred *); -+ int (*crmatch)(struct auth_cred *, struct rpc_cred *, int); -+ struct rpc_cred * (*crbind)(struct rpc_task *, struct rpc_cred *, int); -+ __be32 * (*crmarshal)(struct rpc_task *, __be32 *); -+ int (*crrefresh)(struct rpc_task *); -+ __be32 * (*crvalidate)(struct rpc_task *, __be32 *); -+ int (*crwrap_req)(struct rpc_task *, kxdreproc_t, void *, __be32 *, void *); -+ int (*crunwrap_resp)(struct rpc_task *, kxdrdproc_t, void *, __be32 *, void *); -+ int (*crkey_timeout)(struct rpc_cred *); -+ bool (*crkey_to_expire)(struct rpc_cred *); -+ char * (*crstringify_acceptor)(struct rpc_cred *); -+}; -+ -+struct rpc_auth_create_args; -+ -+struct rpcsec_gss_info; -+ -+struct rpc_authops { -+ struct module *owner; -+ rpc_authflavor_t au_flavor; -+ char *au_name; -+ struct rpc_auth * (*create)(const struct rpc_auth_create_args *, struct rpc_clnt *); -+ void (*destroy)(struct rpc_auth *); -+ int (*hash_cred)(struct auth_cred *, unsigned int); -+ struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int); -+ struct rpc_cred * (*crcreate)(struct rpc_auth *, struct auth_cred *, int, gfp_t); -+ int (*list_pseudoflavors)(rpc_authflavor_t *, int); -+ rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *); -+ int (*flavor2info)(rpc_authflavor_t, struct rpcsec_gss_info *); -+ int (*key_timeout)(struct rpc_auth *, struct rpc_cred *); -+}; -+ -+struct rpc_auth_create_args { -+ rpc_authflavor_t pseudoflavor; -+ const char *target_name; -+}; -+ -+struct rpcsec_gss_oid { -+ unsigned int len; -+ u8 data[32]; -+}; -+ -+struct rpcsec_gss_info { -+ struct rpcsec_gss_oid oid; -+ u32 qop; -+ u32 service; -+}; -+ -+struct rpc_xprt_ops { -+ void (*set_buffer_size)(struct rpc_xprt *, size_t, size_t); -+ int (*reserve_xprt)(struct rpc_xprt *, struct rpc_task *); -+ void (*release_xprt)(struct rpc_xprt *, struct rpc_task *); -+ void (*alloc_slot)(struct rpc_xprt *, struct rpc_task *); -+ void (*free_slot)(struct rpc_xprt *, struct rpc_rqst *); -+ void (*rpcbind)(struct rpc_task *); -+ void (*set_port)(struct rpc_xprt *, short unsigned int); -+ void (*connect)(struct rpc_xprt *, struct rpc_task *); -+ int (*buf_alloc)(struct rpc_task *); -+ void (*buf_free)(struct rpc_task *); -+ int (*send_request)(struct rpc_task *); -+ void (*set_retrans_timeout)(struct rpc_task *); -+ void (*timer)(struct rpc_xprt *, struct rpc_task *); -+ void (*release_request)(struct rpc_task *); -+ void (*close)(struct rpc_xprt *); -+ void (*destroy)(struct rpc_xprt *); -+ void (*set_connect_timeout)(struct rpc_xprt *, long unsigned int, long unsigned int); -+ void (*print_stats)(struct rpc_xprt *, struct seq_file *); -+ int (*enable_swap)(struct rpc_xprt *); -+ void (*disable_swap)(struct rpc_xprt *); -+ void (*inject_disconnect)(struct rpc_xprt *); -+ int (*bc_setup)(struct rpc_xprt *, unsigned int); -+ int (*bc_up)(struct svc_serv *, struct net *); -+ size_t (*bc_maxpayload)(struct rpc_xprt *); -+ void (*bc_free_rqst)(struct rpc_rqst *); -+ void (*bc_destroy)(struct rpc_xprt *, unsigned int); -+}; -+ -+struct rpc_xprt_switch { -+ spinlock_t xps_lock; -+ struct kref xps_kref; -+ unsigned int xps_nxprts; -+ struct list_head xps_xprt_list; -+ struct net *xps_net; -+ const struct rpc_xprt_iter_ops *xps_iter_ops; -+ struct callback_head xps_rcu; -+}; -+ -+struct rpc_stat { -+ const struct rpc_program *program; -+ unsigned int netcnt; -+ unsigned int netudpcnt; -+ unsigned int nettcpcnt; -+ unsigned int nettcpconn; -+ unsigned int netreconn; -+ unsigned int rpccnt; -+ unsigned int rpcretrans; -+ unsigned int rpcauthrefresh; -+ unsigned int rpcgarbage; -+}; -+ -+struct rpc_version; -+ -+struct rpc_program { -+ const char *name; -+ u32 number; -+ unsigned int nrvers; -+ const struct rpc_version **version; -+ struct rpc_stat *stats; -+ const char *pipe_dir_name; -+}; -+ -+struct ipv6_params { -+ __s32 disable_ipv6; -+ __s32 autoconf; -+}; -+ -+struct dql { -+ unsigned int num_queued; -+ unsigned int adj_limit; -+ unsigned int last_obj_cnt; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ unsigned int limit; -+ unsigned int num_completed; -+ unsigned int prev_ovlimit; -+ unsigned int prev_num_queued; -+ unsigned int prev_last_obj_cnt; -+ unsigned int lowest_slack; -+ long unsigned int slack_start_time; -+ unsigned int max_limit; -+ unsigned int min_limit; -+ unsigned int slack_hold_time; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+struct ethtool_cmd { -+ __u32 cmd; -+ __u32 supported; -+ __u32 advertising; -+ __u16 speed; -+ __u8 duplex; -+ __u8 port; -+ __u8 phy_address; -+ __u8 transceiver; -+ __u8 autoneg; -+ __u8 mdio_support; -+ __u32 maxtxpkt; -+ __u32 maxrxpkt; -+ __u16 speed_hi; -+ __u8 eth_tp_mdix; -+ __u8 eth_tp_mdix_ctrl; -+ __u32 lp_advertising; -+ __u32 reserved[2]; -+}; -+ -+struct ethtool_drvinfo { -+ __u32 cmd; -+ char driver[32]; -+ char version[32]; -+ char fw_version[32]; -+ char bus_info[32]; -+ char erom_version[32]; -+ char reserved2[12]; -+ __u32 n_priv_flags; -+ __u32 n_stats; -+ __u32 testinfo_len; -+ __u32 eedump_len; -+ __u32 regdump_len; -+}; -+ -+struct ethtool_wolinfo { -+ __u32 cmd; -+ __u32 supported; -+ __u32 wolopts; -+ __u8 sopass[6]; -+}; -+ -+struct ethtool_tunable { -+ __u32 cmd; -+ __u32 id; -+ __u32 type_id; -+ __u32 len; -+ void *data[0]; -+}; -+ -+struct ethtool_regs { -+ __u32 cmd; -+ __u32 version; -+ __u32 len; -+ __u8 data[0]; -+}; -+ -+struct ethtool_eeprom { -+ __u32 cmd; -+ __u32 magic; -+ __u32 offset; -+ __u32 len; -+ __u8 data[0]; -+}; -+ -+struct ethtool_eee { -+ __u32 cmd; -+ __u32 supported; -+ __u32 advertised; -+ __u32 lp_advertised; -+ __u32 eee_active; -+ __u32 eee_enabled; -+ __u32 tx_lpi_enabled; -+ __u32 tx_lpi_timer; -+ __u32 reserved[2]; -+}; -+ -+struct ethtool_modinfo { -+ __u32 cmd; -+ __u32 type; -+ __u32 eeprom_len; -+ __u32 reserved[8]; -+}; -+ -+struct ethtool_coalesce { -+ __u32 cmd; -+ __u32 rx_coalesce_usecs; -+ __u32 rx_max_coalesced_frames; -+ __u32 rx_coalesce_usecs_irq; -+ __u32 rx_max_coalesced_frames_irq; -+ __u32 tx_coalesce_usecs; -+ __u32 tx_max_coalesced_frames; -+ __u32 tx_coalesce_usecs_irq; -+ __u32 tx_max_coalesced_frames_irq; -+ __u32 stats_block_coalesce_usecs; -+ __u32 use_adaptive_rx_coalesce; -+ __u32 use_adaptive_tx_coalesce; -+ __u32 pkt_rate_low; -+ __u32 rx_coalesce_usecs_low; -+ __u32 rx_max_coalesced_frames_low; -+ __u32 tx_coalesce_usecs_low; -+ __u32 tx_max_coalesced_frames_low; -+ __u32 pkt_rate_high; -+ __u32 rx_coalesce_usecs_high; -+ __u32 rx_max_coalesced_frames_high; -+ __u32 tx_coalesce_usecs_high; -+ __u32 tx_max_coalesced_frames_high; -+ __u32 rate_sample_interval; -+}; -+ -+struct ethtool_ringparam { -+ __u32 cmd; -+ __u32 rx_max_pending; -+ __u32 rx_mini_max_pending; -+ __u32 rx_jumbo_max_pending; -+ __u32 tx_max_pending; -+ __u32 rx_pending; -+ __u32 rx_mini_pending; -+ __u32 rx_jumbo_pending; -+ __u32 tx_pending; -+}; -+ -+struct ethtool_channels { -+ __u32 cmd; -+ __u32 max_rx; -+ __u32 max_tx; -+ __u32 max_other; -+ __u32 max_combined; -+ __u32 rx_count; -+ __u32 tx_count; -+ __u32 other_count; -+ __u32 combined_count; -+}; -+ -+struct ethtool_pauseparam { -+ __u32 cmd; -+ __u32 autoneg; -+ __u32 rx_pause; -+ __u32 tx_pause; -+}; -+ -+struct ethtool_test { -+ __u32 cmd; -+ __u32 flags; -+ __u32 reserved; -+ __u32 len; -+ __u64 data[0]; -+}; -+ -+struct ethtool_stats { -+ __u32 cmd; -+ __u32 n_stats; -+ __u64 data[0]; -+}; -+ -+struct ethtool_tcpip4_spec { -+ __be32 ip4src; -+ __be32 ip4dst; -+ __be16 psrc; -+ __be16 pdst; -+ __u8 tos; -+}; -+ -+struct ethtool_ah_espip4_spec { -+ __be32 ip4src; -+ __be32 ip4dst; -+ __be32 spi; -+ __u8 tos; -+}; -+ -+struct ethtool_usrip4_spec { -+ __be32 ip4src; -+ __be32 ip4dst; -+ __be32 l4_4_bytes; -+ __u8 tos; -+ __u8 ip_ver; -+ __u8 proto; -+}; -+ -+struct ethtool_tcpip6_spec { -+ __be32 ip6src[4]; -+ __be32 ip6dst[4]; -+ __be16 psrc; -+ __be16 pdst; -+ __u8 tclass; -+}; -+ -+struct ethtool_ah_espip6_spec { -+ __be32 ip6src[4]; -+ __be32 ip6dst[4]; -+ __be32 spi; -+ __u8 tclass; -+}; -+ -+struct ethtool_usrip6_spec { -+ __be32 ip6src[4]; -+ __be32 ip6dst[4]; -+ __be32 l4_4_bytes; -+ __u8 tclass; -+ __u8 l4_proto; -+}; -+ -+union ethtool_flow_union { -+ struct ethtool_tcpip4_spec tcp_ip4_spec; -+ struct ethtool_tcpip4_spec udp_ip4_spec; -+ struct ethtool_tcpip4_spec sctp_ip4_spec; -+ struct ethtool_ah_espip4_spec ah_ip4_spec; -+ struct ethtool_ah_espip4_spec esp_ip4_spec; -+ struct ethtool_usrip4_spec usr_ip4_spec; -+ struct ethtool_tcpip6_spec tcp_ip6_spec; -+ struct ethtool_tcpip6_spec udp_ip6_spec; -+ struct ethtool_tcpip6_spec sctp_ip6_spec; -+ struct ethtool_ah_espip6_spec ah_ip6_spec; -+ struct ethtool_ah_espip6_spec esp_ip6_spec; -+ struct ethtool_usrip6_spec usr_ip6_spec; -+ struct ethhdr ether_spec; -+ __u8 hdata[52]; -+}; -+ -+struct ethtool_flow_ext { -+ __u8 padding[2]; -+ unsigned char h_dest[6]; -+ __be16 vlan_etype; -+ __be16 vlan_tci; -+ __be32 data[2]; -+}; -+ -+struct ethtool_rx_flow_spec { -+ __u32 flow_type; -+ union ethtool_flow_union h_u; -+ struct ethtool_flow_ext h_ext; -+ union ethtool_flow_union m_u; -+ struct ethtool_flow_ext m_ext; -+ __u64 ring_cookie; -+ __u32 location; -+}; -+ -+struct ethtool_rxnfc { -+ __u32 cmd; -+ __u32 flow_type; -+ __u64 data; -+ struct ethtool_rx_flow_spec fs; -+ union { -+ __u32 rule_cnt; -+ __u32 rss_context; -+ }; -+ __u32 rule_locs[0]; -+}; -+ -+struct ethtool_flash { -+ __u32 cmd; -+ __u32 region; -+ char data[128]; -+}; -+ -+struct ethtool_dump { -+ __u32 cmd; -+ __u32 version; -+ __u32 flag; -+ __u32 len; -+ __u8 data[0]; -+}; -+ -+struct ethtool_ts_info { -+ __u32 cmd; -+ __u32 so_timestamping; -+ __s32 phc_index; -+ __u32 tx_types; -+ __u32 tx_reserved[3]; -+ __u32 rx_filters; -+ __u32 rx_reserved[3]; -+}; -+ -+struct ethtool_fecparam { -+ __u32 cmd; -+ __u32 active_fec; -+ __u32 fec; -+ __u32 reserved; -+}; -+ -+struct ethtool_link_settings { -+ __u32 cmd; -+ __u32 speed; -+ __u8 duplex; -+ __u8 port; -+ __u8 phy_address; -+ __u8 autoneg; -+ __u8 mdio_support; -+ __u8 eth_tp_mdix; -+ __u8 eth_tp_mdix_ctrl; -+ __s8 link_mode_masks_nwords; -+ __u8 transceiver; -+ __u8 reserved1[3]; -+ __u32 reserved[7]; -+ __u32 link_mode_masks[0]; -+}; -+ -+enum ethtool_phys_id_state { -+ ETHTOOL_ID_INACTIVE = 0, -+ ETHTOOL_ID_ACTIVE = 1, -+ ETHTOOL_ID_ON = 2, -+ ETHTOOL_ID_OFF = 3, -+}; -+ -+struct ethtool_link_ksettings { -+ struct ethtool_link_settings base; -+ struct { -+ long unsigned int supported[1]; -+ long unsigned int advertising[1]; -+ long unsigned int lp_advertising[1]; -+ } link_modes; -+}; -+ -+struct ethtool_ops { -+ int (*get_settings)(struct net_device *, struct ethtool_cmd *); -+ int (*set_settings)(struct net_device *, struct ethtool_cmd *); -+ void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); -+ int (*get_regs_len)(struct net_device *); -+ void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); -+ void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); -+ int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); -+ u32 (*get_msglevel)(struct net_device *); -+ void (*set_msglevel)(struct net_device *, u32); -+ int (*nway_reset)(struct net_device *); -+ u32 (*get_link)(struct net_device *); -+ int (*get_eeprom_len)(struct net_device *); -+ int (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); -+ int (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); -+ int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *); -+ int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *); -+ void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ void (*get_pauseparam)(struct net_device *, struct ethtool_pauseparam *); -+ int (*set_pauseparam)(struct net_device *, struct ethtool_pauseparam *); -+ void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); -+ void (*get_strings)(struct net_device *, u32, u8 *); -+ int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); -+ void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, u64 *); -+ int (*begin)(struct net_device *); -+ void (*complete)(struct net_device *); -+ u32 (*get_priv_flags)(struct net_device *); -+ int (*set_priv_flags)(struct net_device *, u32); -+ int (*get_sset_count)(struct net_device *, int); -+ int (*get_rxnfc)(struct net_device *, struct ethtool_rxnfc *, u32 *); -+ int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); -+ int (*flash_device)(struct net_device *, struct ethtool_flash *); -+ int (*reset)(struct net_device *, u32 *); -+ u32 (*get_rxfh_key_size)(struct net_device *); -+ u32 (*get_rxfh_indir_size)(struct net_device *); -+ int (*get_rxfh)(struct net_device *, u32 *, u8 *, u8 *); -+ int (*set_rxfh)(struct net_device *, const u32 *, const u8 *, const u8); -+ int (*get_rxfh_context)(struct net_device *, u32 *, u8 *, u8 *, u32); -+ int (*set_rxfh_context)(struct net_device *, const u32 *, const u8 *, const u8, u32 *, bool); -+ void (*get_channels)(struct net_device *, struct ethtool_channels *); -+ int (*set_channels)(struct net_device *, struct ethtool_channels *); -+ int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); -+ int (*get_dump_data)(struct net_device *, struct ethtool_dump *, void *); -+ int (*set_dump)(struct net_device *, struct ethtool_dump *); -+ int (*get_ts_info)(struct net_device *, struct ethtool_ts_info *); -+ int (*get_module_info)(struct net_device *, struct ethtool_modinfo *); -+ int (*get_module_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); -+ int (*get_eee)(struct net_device *, struct ethtool_eee *); -+ int (*set_eee)(struct net_device *, struct ethtool_eee *); -+ int (*get_tunable)(struct net_device *, const struct ethtool_tunable *, void *); -+ int (*set_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); -+ int (*get_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); -+ int (*set_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); -+ int (*get_link_ksettings)(struct net_device *, struct ethtool_link_ksettings *); -+ int (*set_link_ksettings)(struct net_device *, const struct ethtool_link_ksettings *); -+ int (*get_fecparam)(struct net_device *, struct ethtool_fecparam *); -+ int (*set_fecparam)(struct net_device *, struct ethtool_fecparam *); -+ void (*get_ethtool_phy_stats)(struct net_device *, struct ethtool_stats *, u64 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+ long unsigned int kabi_reserved17; -+ long unsigned int kabi_reserved18; -+ long unsigned int kabi_reserved19; -+ long unsigned int kabi_reserved20; -+ long unsigned int kabi_reserved21; -+ long unsigned int kabi_reserved22; -+ long unsigned int kabi_reserved23; -+ long unsigned int kabi_reserved24; -+ long unsigned int kabi_reserved25; -+ long unsigned int kabi_reserved26; -+ long unsigned int kabi_reserved27; -+ long unsigned int kabi_reserved28; -+ long unsigned int kabi_reserved29; -+ long unsigned int kabi_reserved30; -+ long unsigned int kabi_reserved31; -+ long unsigned int kabi_reserved32; -+}; -+ -+struct ieee_ets { -+ __u8 willing; -+ __u8 ets_cap; -+ __u8 cbs; -+ __u8 tc_tx_bw[8]; -+ __u8 tc_rx_bw[8]; -+ __u8 tc_tsa[8]; -+ __u8 prio_tc[8]; -+ __u8 tc_reco_bw[8]; -+ __u8 tc_reco_tsa[8]; -+ __u8 reco_prio_tc[8]; -+}; -+ -+struct ieee_maxrate { -+ __u64 tc_maxrate[8]; -+}; -+ -+struct ieee_qcn { -+ __u8 rpg_enable[8]; -+ __u32 rppp_max_rps[8]; -+ __u32 rpg_time_reset[8]; -+ __u32 rpg_byte_reset[8]; -+ __u32 rpg_threshold[8]; -+ __u32 rpg_max_rate[8]; -+ __u32 rpg_ai_rate[8]; -+ __u32 rpg_hai_rate[8]; -+ __u32 rpg_gd[8]; -+ __u32 rpg_min_dec_fac[8]; -+ __u32 rpg_min_rate[8]; -+ __u32 cndd_state_machine[8]; -+}; -+ -+struct ieee_qcn_stats { -+ __u64 rppp_rp_centiseconds[8]; -+ __u32 rppp_created_rps[8]; -+}; -+ -+struct ieee_pfc { -+ __u8 pfc_cap; -+ __u8 pfc_en; -+ __u8 mbc; -+ __u16 delay; -+ __u64 requests[8]; -+ __u64 indications[8]; -+}; -+ -+struct dcbnl_buffer { -+ __u8 prio2buffer[8]; -+ __u32 buffer_size[8]; -+ __u32 total_size; -+}; -+ -+struct cee_pg { -+ __u8 willing; -+ __u8 error; -+ __u8 pg_en; -+ __u8 tcs_supported; -+ __u8 pg_bw[8]; -+ __u8 prio_pg[8]; -+}; -+ -+struct cee_pfc { -+ __u8 willing; -+ __u8 error; -+ __u8 pfc_en; -+ __u8 tcs_supported; -+}; -+ -+struct dcb_app { -+ __u8 selector; -+ __u8 priority; -+ __u16 protocol; -+}; -+ -+struct dcb_peer_app_info { -+ __u8 willing; -+ __u8 error; -+}; -+ -+struct dcbnl_rtnl_ops { -+ int (*ieee_getets)(struct net_device *, struct ieee_ets *); -+ int (*ieee_setets)(struct net_device *, struct ieee_ets *); -+ int (*ieee_getmaxrate)(struct net_device *, struct ieee_maxrate *); -+ int (*ieee_setmaxrate)(struct net_device *, struct ieee_maxrate *); -+ int (*ieee_getqcn)(struct net_device *, struct ieee_qcn *); -+ int (*ieee_setqcn)(struct net_device *, struct ieee_qcn *); -+ int (*ieee_getqcnstats)(struct net_device *, struct ieee_qcn_stats *); -+ int (*ieee_getpfc)(struct net_device *, struct ieee_pfc *); -+ int (*ieee_setpfc)(struct net_device *, struct ieee_pfc *); -+ int (*ieee_getapp)(struct net_device *, struct dcb_app *); -+ int (*ieee_setapp)(struct net_device *, struct dcb_app *); -+ int (*ieee_delapp)(struct net_device *, struct dcb_app *); -+ int (*ieee_peer_getets)(struct net_device *, struct ieee_ets *); -+ int (*ieee_peer_getpfc)(struct net_device *, struct ieee_pfc *); -+ u8 (*getstate)(struct net_device *); -+ u8 (*setstate)(struct net_device *, u8); -+ void (*getpermhwaddr)(struct net_device *, u8 *); -+ void (*setpgtccfgtx)(struct net_device *, int, u8, u8, u8, u8); -+ void (*setpgbwgcfgtx)(struct net_device *, int, u8); -+ void (*setpgtccfgrx)(struct net_device *, int, u8, u8, u8, u8); -+ void (*setpgbwgcfgrx)(struct net_device *, int, u8); -+ void (*getpgtccfgtx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); -+ void (*getpgbwgcfgtx)(struct net_device *, int, u8 *); -+ void (*getpgtccfgrx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); -+ void (*getpgbwgcfgrx)(struct net_device *, int, u8 *); -+ void (*setpfccfg)(struct net_device *, int, u8); -+ void (*getpfccfg)(struct net_device *, int, u8 *); -+ u8 (*setall)(struct net_device *); -+ u8 (*getcap)(struct net_device *, int, u8 *); -+ int (*getnumtcs)(struct net_device *, int, u8 *); -+ int (*setnumtcs)(struct net_device *, int, u8); -+ u8 (*getpfcstate)(struct net_device *); -+ void (*setpfcstate)(struct net_device *, u8); -+ void (*getbcncfg)(struct net_device *, int, u32 *); -+ void (*setbcncfg)(struct net_device *, int, u32); -+ void (*getbcnrp)(struct net_device *, int, u8 *); -+ void (*setbcnrp)(struct net_device *, int, u8); -+ int (*setapp)(struct net_device *, u8, u16, u8); -+ int (*getapp)(struct net_device *, u8, u16); -+ u8 (*getfeatcfg)(struct net_device *, int, u8 *); -+ u8 (*setfeatcfg)(struct net_device *, int, u8); -+ u8 (*getdcbx)(struct net_device *); -+ u8 (*setdcbx)(struct net_device *, u8); -+ int (*peer_getappinfo)(struct net_device *, struct dcb_peer_app_info *, u16 *); -+ int (*peer_getapptable)(struct net_device *, struct dcb_app *); -+ int (*cee_peer_getpg)(struct net_device *, struct cee_pg *); -+ int (*cee_peer_getpfc)(struct net_device *, struct cee_pfc *); -+ int (*dcbnl_getbuffer)(struct net_device *, struct dcbnl_buffer *); -+ int (*dcbnl_setbuffer)(struct net_device *, struct dcbnl_buffer *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+}; -+ -+struct netprio_map { -+ struct callback_head rcu; -+ u32 priomap_len; -+ u32 priomap[0]; -+}; -+ -+struct xdp_mem_info { -+ u32 type; -+ u32 id; -+}; -+ -+struct xdp_rxq_info { -+ struct net_device *dev; -+ u32 queue_index; -+ u32 reg_state; -+ struct xdp_mem_info mem; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_frame { -+ void *data; -+ u16 len; -+ u16 headroom; -+ u16 metasize; -+ struct xdp_mem_info mem; -+ struct net_device *dev_rx; -+}; -+ -+struct nlmsghdr { -+ __u32 nlmsg_len; -+ __u16 nlmsg_type; -+ __u16 nlmsg_flags; -+ __u32 nlmsg_seq; -+ __u32 nlmsg_pid; -+}; -+ -+struct nlattr { -+ __u16 nla_len; -+ __u16 nla_type; -+}; -+ -+struct netlink_ext_ack { -+ const char *_msg; -+ const struct nlattr *bad_attr; -+ u8 cookie[20]; -+ u8 cookie_len; -+}; -+ -+struct netlink_callback { -+ struct sk_buff *skb; -+ const struct nlmsghdr *nlh; -+ int (*dump)(struct sk_buff *, struct netlink_callback *); -+ int (*done)(struct netlink_callback *); -+ void *data; -+ struct module *module; -+ u16 family; -+ u16 min_dump_alloc; -+ unsigned int prev_seq; -+ unsigned int seq; -+ long int args[6]; -+}; -+ -+struct ndmsg { -+ __u8 ndm_family; -+ __u8 ndm_pad1; -+ __u16 ndm_pad2; -+ __s32 ndm_ifindex; -+ __u16 ndm_state; -+ __u8 ndm_flags; -+ __u8 ndm_type; -+}; -+ -+struct rtnl_link_stats64 { -+ __u64 rx_packets; -+ __u64 tx_packets; -+ __u64 rx_bytes; -+ __u64 tx_bytes; -+ __u64 rx_errors; -+ __u64 tx_errors; -+ __u64 rx_dropped; -+ __u64 tx_dropped; -+ __u64 multicast; -+ __u64 collisions; -+ __u64 rx_length_errors; -+ __u64 rx_over_errors; -+ __u64 rx_crc_errors; -+ __u64 rx_frame_errors; -+ __u64 rx_fifo_errors; -+ __u64 rx_missed_errors; -+ __u64 tx_aborted_errors; -+ __u64 tx_carrier_errors; -+ __u64 tx_fifo_errors; -+ __u64 tx_heartbeat_errors; -+ __u64 tx_window_errors; -+ __u64 rx_compressed; -+ __u64 tx_compressed; -+ __u64 rx_nohandler; -+}; -+ -+struct ifla_vf_stats { -+ __u64 rx_packets; -+ __u64 tx_packets; -+ __u64 rx_bytes; -+ __u64 tx_bytes; -+ __u64 broadcast; -+ __u64 multicast; -+ __u64 rx_dropped; -+ __u64 tx_dropped; -+}; -+ -+struct ifla_vf_info { -+ __u32 vf; -+ __u8 mac[32]; -+ __u32 vlan; -+ __u32 qos; -+ __u32 spoofchk; -+ __u32 linkstate; -+ __u32 min_tx_rate; -+ __u32 max_tx_rate; -+ __u32 rss_query_en; -+ __u32 trusted; -+ __be16 vlan_proto; -+}; -+ -+struct tc_stats { -+ __u64 bytes; -+ __u32 packets; -+ __u32 drops; -+ __u32 overlimits; -+ __u32 bps; -+ __u32 pps; -+ __u32 qlen; -+ __u32 backlog; -+}; -+ -+struct tc_sizespec { -+ unsigned char cell_log; -+ unsigned char size_log; -+ short int cell_align; -+ int overhead; -+ unsigned int linklayer; -+ unsigned int mpu; -+ unsigned int mtu; -+ unsigned int tsize; -+}; -+ -+enum netdev_tx { -+ __NETDEV_TX_MIN = -2147483648, -+ NETDEV_TX_OK = 0, -+ NETDEV_TX_BUSY = 16, -+}; -+ -+typedef enum netdev_tx netdev_tx_t; -+ -+struct header_ops { -+ int (*create)(struct sk_buff *, struct net_device *, short unsigned int, const void *, const void *, unsigned int); -+ int (*parse)(const struct sk_buff *, unsigned char *); -+ int (*cache)(const struct neighbour *, struct hh_cache *, __be16); -+ void (*cache_update)(struct hh_cache *, const struct net_device *, const unsigned char *); -+ bool (*validate)(const char *, unsigned int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+}; -+ -+struct gro_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct napi_struct { -+ struct list_head poll_list; -+ long unsigned int state; -+ int weight; -+ long unsigned int gro_bitmask; -+ int (*poll)(struct napi_struct *, int); -+ int poll_owner; -+ struct net_device *dev; -+ struct gro_list gro_hash[8]; -+ struct sk_buff *skb; -+ struct hrtimer timer; -+ struct list_head dev_list; -+ struct hlist_node napi_hash_node; -+ unsigned int napi_id; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+struct netdev_queue { -+ struct net_device *dev; -+ struct Qdisc *qdisc; -+ struct Qdisc *qdisc_sleeping; -+ struct kobject kobj; -+ int numa_node; -+ long unsigned int tx_maxrate; -+ long unsigned int trans_timeout; -+ struct net_device *sb_dev; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t _xmit_lock; -+ int xmit_lock_owner; -+ long unsigned int trans_start; -+ long unsigned int state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dql dql; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct qdisc_skb_head { -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ union { -+ u32 qlen; -+ atomic_t atomic_qlen; -+ }; -+ spinlock_t lock; -+}; -+ -+struct gnet_stats_basic_packed { -+ __u64 bytes; -+ __u32 packets; -+} __attribute__((packed)); -+ -+struct gnet_stats_queue { -+ __u32 qlen; -+ __u32 backlog; -+ __u32 drops; -+ __u32 requeues; -+ __u32 overlimits; -+}; -+ -+struct Qdisc_ops; -+ -+struct qdisc_size_table; -+ -+struct net_rate_estimator; -+ -+struct gnet_stats_basic_cpu; -+ -+struct Qdisc { -+ int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); -+ struct sk_buff * (*dequeue)(struct Qdisc *); -+ unsigned int flags; -+ u32 limit; -+ const struct Qdisc_ops *ops; -+ struct qdisc_size_table *stab; -+ struct hlist_node hash; -+ u32 handle; -+ u32 parent; -+ struct netdev_queue *dev_queue; -+ struct net_rate_estimator *rate_est; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_queue *cpu_qstats; -+ int padded; -+ refcount_t refcnt; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sk_buff_head gso_skb; -+ struct qdisc_skb_head q; -+ struct gnet_stats_basic_packed bstats; -+ seqcount_t running; -+ struct gnet_stats_queue qstats; -+ long unsigned int state; -+ struct Qdisc *next_sched; -+ struct sk_buff_head skb_bad_txq; -+ spinlock_t busylock; -+ spinlock_t seqlock; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct rps_map { -+ unsigned int len; -+ struct callback_head rcu; -+ u16 cpus[0]; -+}; -+ -+struct rps_dev_flow { -+ u16 cpu; -+ u16 filter; -+ unsigned int last_qtail; -+}; -+ -+struct rps_dev_flow_table { -+ unsigned int mask; -+ struct callback_head rcu; -+ struct rps_dev_flow flows[0]; -+}; -+ -+struct rps_sock_flow_table { -+ u32 mask; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 ents[0]; -+}; -+ -+struct netdev_rx_queue { -+ struct rps_map *rps_map; -+ struct rps_dev_flow_table *rps_flow_table; -+ struct kobject kobj; -+ struct net_device *dev; -+ long: 64; -+ struct xdp_rxq_info xdp_rxq; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct xps_map { -+ unsigned int len; -+ unsigned int alloc_len; -+ struct callback_head rcu; -+ u16 queues[0]; -+}; -+ -+struct xps_dev_maps { -+ struct callback_head rcu; -+ struct xps_map *attr_map[0]; -+}; -+ -+struct netdev_fcoe_hbainfo { -+ char manufacturer[64]; -+ char serial_number[64]; -+ char hardware_version[64]; -+ char driver_version[64]; -+ char optionrom_version[64]; -+ char firmware_version[64]; -+ char model[256]; -+ char model_description[256]; -+}; -+ -+struct netdev_phys_item_id { -+ unsigned char id[32]; -+ unsigned char id_len; -+}; -+ -+typedef u16 (*select_queue_fallback_t)(struct net_device *, struct sk_buff *, struct net_device *); -+ -+enum tc_setup_type { -+ TC_SETUP_QDISC_MQPRIO = 0, -+ TC_SETUP_CLSU32 = 1, -+ TC_SETUP_CLSFLOWER = 2, -+ TC_SETUP_CLSMATCHALL = 3, -+ TC_SETUP_CLSBPF = 4, -+ TC_SETUP_BLOCK = 5, -+ TC_SETUP_QDISC_CBS = 6, -+ TC_SETUP_QDISC_RED = 7, -+ TC_SETUP_QDISC_PRIO = 8, -+ TC_SETUP_QDISC_MQ = 9, -+ TC_SETUP_QDISC_ETF = 10, -+}; -+ -+enum bpf_netdev_command { -+ XDP_SETUP_PROG = 0, -+ XDP_SETUP_PROG_HW = 1, -+ XDP_QUERY_PROG = 2, -+ XDP_QUERY_PROG_HW = 3, -+ BPF_OFFLOAD_VERIFIER_PREP = 4, -+ BPF_OFFLOAD_TRANSLATE = 5, -+ BPF_OFFLOAD_DESTROY = 6, -+ BPF_OFFLOAD_MAP_ALLOC = 7, -+ BPF_OFFLOAD_MAP_FREE = 8, -+ XDP_QUERY_XSK_UMEM = 9, -+ XDP_SETUP_XSK_UMEM = 10, -+}; -+ -+struct bpf_verifier_env; -+ -+struct bpf_prog_offload_ops { -+ int (*insn_hook)(struct bpf_verifier_env *, int, int); -+}; -+ -+struct bpf_offloaded_map; -+ -+struct xdp_umem; -+ -+struct netdev_bpf { -+ enum bpf_netdev_command command; -+ union { -+ struct { -+ u32 flags; -+ struct bpf_prog *prog; -+ struct netlink_ext_ack *extack; -+ }; -+ struct { -+ u32 prog_id; -+ u32 prog_flags; -+ }; -+ struct { -+ struct bpf_prog *prog; -+ const struct bpf_prog_offload_ops *ops; -+ } verifier; -+ struct { -+ struct bpf_prog *prog; -+ } offload; -+ struct { -+ struct bpf_offloaded_map *offmap; -+ }; -+ struct { -+ struct xdp_umem *umem; -+ u16 queue_id; -+ } xsk; -+ }; -+}; -+ -+struct xfrmdev_ops { -+ int (*xdo_dev_state_add)(struct xfrm_state *); -+ void (*xdo_dev_state_delete)(struct xfrm_state *); -+ void (*xdo_dev_state_free)(struct xfrm_state *); -+ bool (*xdo_dev_offload_ok)(struct sk_buff *, struct xfrm_state *); -+ void (*xdo_dev_state_advance_esn)(struct xfrm_state *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+enum tls_offload_ctx_dir { -+ TLS_OFFLOAD_CTX_DIR_RX = 0, -+ TLS_OFFLOAD_CTX_DIR_TX = 1, -+}; -+ -+struct tls_crypto_info; -+ -+struct tls_context; -+ -+struct tlsdev_ops { -+ int (*tls_dev_add)(struct net_device *, struct sock *, enum tls_offload_ctx_dir, struct tls_crypto_info *, u32); -+ void (*tls_dev_del)(struct net_device *, struct tls_context *, enum tls_offload_ctx_dir); -+ void (*tls_dev_resync_rx)(struct net_device *, struct sock *, u32, u64); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+struct dev_ifalias { -+ struct callback_head rcuhead; -+ char ifalias[0]; -+}; -+ -+struct udp_tunnel_info; -+ -+struct net_device_ops { -+ int (*ndo_init)(struct net_device *); -+ void (*ndo_uninit)(struct net_device *); -+ int (*ndo_open)(struct net_device *); -+ int (*ndo_stop)(struct net_device *); -+ netdev_tx_t (*ndo_start_xmit)(struct sk_buff *, struct net_device *); -+ netdev_features_t (*ndo_features_check)(struct sk_buff *, struct net_device *, netdev_features_t); -+ u16 (*ndo_select_queue)(struct net_device *, struct sk_buff *, struct net_device *, select_queue_fallback_t); -+ void (*ndo_change_rx_flags)(struct net_device *, int); -+ void (*ndo_set_rx_mode)(struct net_device *); -+ int (*ndo_set_mac_address)(struct net_device *, void *); -+ int (*ndo_validate_addr)(struct net_device *); -+ int (*ndo_do_ioctl)(struct net_device *, struct ifreq *, int); -+ int (*ndo_set_config)(struct net_device *, struct ifmap *); -+ int (*ndo_change_mtu)(struct net_device *, int); -+ int (*ndo_neigh_setup)(struct net_device *, struct neigh_parms *); -+ void (*ndo_tx_timeout)(struct net_device *); -+ void (*ndo_get_stats64)(struct net_device *, struct rtnl_link_stats64 *); -+ bool (*ndo_has_offload_stats)(const struct net_device *, int); -+ int (*ndo_get_offload_stats)(int, const struct net_device *, void *); -+ struct net_device_stats * (*ndo_get_stats)(struct net_device *); -+ int (*ndo_vlan_rx_add_vid)(struct net_device *, __be16, u16); -+ int (*ndo_vlan_rx_kill_vid)(struct net_device *, __be16, u16); -+ void (*ndo_poll_controller)(struct net_device *); -+ int (*ndo_netpoll_setup)(struct net_device *, struct netpoll_info *); -+ void (*ndo_netpoll_cleanup)(struct net_device *); -+ int (*ndo_set_vf_mac)(struct net_device *, int, u8 *); -+ int (*ndo_set_vf_vlan)(struct net_device *, int, u16, u8, __be16); -+ int (*ndo_set_vf_rate)(struct net_device *, int, int, int); -+ int (*ndo_set_vf_spoofchk)(struct net_device *, int, bool); -+ int (*ndo_set_vf_trust)(struct net_device *, int, bool); -+ int (*ndo_get_vf_config)(struct net_device *, int, struct ifla_vf_info *); -+ int (*ndo_set_vf_link_state)(struct net_device *, int, int); -+ int (*ndo_get_vf_stats)(struct net_device *, int, struct ifla_vf_stats *); -+ int (*ndo_set_vf_port)(struct net_device *, int, struct nlattr **); -+ int (*ndo_get_vf_port)(struct net_device *, int, struct sk_buff *); -+ int (*ndo_set_vf_guid)(struct net_device *, int, u64, int); -+ int (*ndo_set_vf_rss_query_en)(struct net_device *, int, bool); -+ int (*ndo_setup_tc)(struct net_device *, enum tc_setup_type, void *); -+ int (*ndo_fcoe_enable)(struct net_device *); -+ int (*ndo_fcoe_disable)(struct net_device *); -+ int (*ndo_fcoe_ddp_setup)(struct net_device *, u16, struct scatterlist *, unsigned int); -+ int (*ndo_fcoe_ddp_done)(struct net_device *, u16); -+ int (*ndo_fcoe_ddp_target)(struct net_device *, u16, struct scatterlist *, unsigned int); -+ int (*ndo_fcoe_get_hbainfo)(struct net_device *, struct netdev_fcoe_hbainfo *); -+ int (*ndo_fcoe_get_wwn)(struct net_device *, u64 *, int); -+ int (*ndo_rx_flow_steer)(struct net_device *, const struct sk_buff *, u16, u32); -+ int (*ndo_add_slave)(struct net_device *, struct net_device *, struct netlink_ext_ack *); -+ int (*ndo_del_slave)(struct net_device *, struct net_device *); -+ netdev_features_t (*ndo_fix_features)(struct net_device *, netdev_features_t); -+ int (*ndo_set_features)(struct net_device *, netdev_features_t); -+ int (*ndo_neigh_construct)(struct net_device *, struct neighbour *); -+ void (*ndo_neigh_destroy)(struct net_device *, struct neighbour *); -+ int (*ndo_fdb_add)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, u16); -+ int (*ndo_fdb_del)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16); -+ int (*ndo_fdb_dump)(struct sk_buff *, struct netlink_callback *, struct net_device *, struct net_device *, int *); -+ int (*ndo_bridge_setlink)(struct net_device *, struct nlmsghdr *, u16); -+ int (*ndo_bridge_getlink)(struct sk_buff *, u32, u32, struct net_device *, u32, int); -+ int (*ndo_bridge_dellink)(struct net_device *, struct nlmsghdr *, u16); -+ int (*ndo_change_carrier)(struct net_device *, bool); -+ int (*ndo_get_phys_port_id)(struct net_device *, struct netdev_phys_item_id *); -+ int (*ndo_get_phys_port_name)(struct net_device *, char *, size_t); -+ void (*ndo_udp_tunnel_add)(struct net_device *, struct udp_tunnel_info *); -+ void (*ndo_udp_tunnel_del)(struct net_device *, struct udp_tunnel_info *); -+ void * (*ndo_dfwd_add_station)(struct net_device *, struct net_device *); -+ void (*ndo_dfwd_del_station)(struct net_device *, void *); -+ int (*ndo_get_lock_subclass)(struct net_device *); -+ int (*ndo_set_tx_maxrate)(struct net_device *, int, u32); -+ int (*ndo_get_iflink)(const struct net_device *); -+ int (*ndo_change_proto_down)(struct net_device *, bool); -+ int (*ndo_fill_metadata_dst)(struct net_device *, struct sk_buff *); -+ void (*ndo_set_rx_headroom)(struct net_device *, int); -+ int (*ndo_bpf)(struct net_device *, struct netdev_bpf *); -+ int (*ndo_xdp_xmit)(struct net_device *, int, struct xdp_frame **, u32); -+ int (*ndo_xsk_async_xmit)(struct net_device *, u32); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+ long unsigned int kabi_reserved17; -+ long unsigned int kabi_reserved18; -+ long unsigned int kabi_reserved19; -+ long unsigned int kabi_reserved20; -+ long unsigned int kabi_reserved21; -+ long unsigned int kabi_reserved22; -+ long unsigned int kabi_reserved23; -+ long unsigned int kabi_reserved24; -+ long unsigned int kabi_reserved25; -+ long unsigned int kabi_reserved26; -+ long unsigned int kabi_reserved27; -+ long unsigned int kabi_reserved28; -+ long unsigned int kabi_reserved29; -+ long unsigned int kabi_reserved30; -+ long unsigned int kabi_reserved31; -+ long unsigned int kabi_reserved32; -+ long unsigned int kabi_reserved33; -+ long unsigned int kabi_reserved34; -+ long unsigned int kabi_reserved35; -+ long unsigned int kabi_reserved36; -+ long unsigned int kabi_reserved37; -+ long unsigned int kabi_reserved38; -+ long unsigned int kabi_reserved39; -+ long unsigned int kabi_reserved40; -+ long unsigned int kabi_reserved41; -+ long unsigned int kabi_reserved42; -+ long unsigned int kabi_reserved43; -+ long unsigned int kabi_reserved44; -+ long unsigned int kabi_reserved45; -+ long unsigned int kabi_reserved46; -+ long unsigned int kabi_reserved47; -+}; -+ -+struct neigh_parms { -+ possible_net_t net; -+ struct net_device *dev; -+ struct list_head list; -+ int (*neigh_setup)(struct neighbour *); -+ void (*neigh_cleanup)(struct neighbour *); -+ struct neigh_table *tbl; -+ void *sysctl_table; -+ int dead; -+ refcount_t refcnt; -+ struct callback_head callback_head; -+ int reachable_time; -+ int data[13]; -+ long unsigned int data_state[1]; -+}; -+ -+struct pcpu_sw_netstats { -+ u64 rx_packets; -+ u64 rx_bytes; -+ u64 tx_packets; -+ u64 tx_bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+struct switchdev_attr; -+ -+struct switchdev_trans; -+ -+struct switchdev_obj; -+ -+struct switchdev_ops { -+ int (*switchdev_port_attr_get)(struct net_device *, struct switchdev_attr *); -+ int (*switchdev_port_attr_set)(struct net_device *, const struct switchdev_attr *, struct switchdev_trans *); -+ int (*switchdev_port_obj_add)(struct net_device *, const struct switchdev_obj *, struct switchdev_trans *); -+ int (*switchdev_port_obj_del)(struct net_device *, const struct switchdev_obj *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+struct l3mdev_ops { -+ u32 (*l3mdev_fib_table)(const struct net_device *); -+ struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *, struct sk_buff *, u16); -+ struct sk_buff * (*l3mdev_l3_out)(struct net_device *, struct sock *, struct sk_buff *, u16); -+ struct dst_entry * (*l3mdev_link_scope_lookup)(const struct net_device *, struct flowi6 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+struct nd_opt_hdr; -+ -+struct ndisc_options; -+ -+struct prefix_info; -+ -+struct ndisc_ops { -+ int (*is_useropt)(u8); -+ int (*parse_options)(const struct net_device *, struct nd_opt_hdr *, struct ndisc_options *); -+ void (*update)(const struct net_device *, struct neighbour *, u32, u8, const struct ndisc_options *); -+ int (*opt_addr_space)(const struct net_device *, u8, struct neighbour *, u8 *, u8 **); -+ void (*fill_addr_option)(const struct net_device *, struct sk_buff *, u8, const u8 *); -+ void (*prefix_rcv_add_addr)(struct net *, struct net_device *, const struct prefix_info *, struct inet6_dev *, struct in6_addr *, int, u32, bool, bool, __u32, u32, bool); -+}; -+ -+struct ipv6_devstat { -+ struct proc_dir_entry *proc_dir_entry; -+ struct ipstats_mib *ipv6; -+ struct icmpv6_mib_device *icmpv6dev; -+ struct icmpv6msg_mib_device *icmpv6msgdev; -+}; -+ -+struct ifmcaddr6; -+ -+struct ifacaddr6; -+ -+struct inet6_dev { -+ struct net_device *dev; -+ struct list_head addr_list; -+ struct ifmcaddr6 *mc_list; -+ struct ifmcaddr6 *mc_tomb; -+ spinlock_t mc_lock; -+ unsigned char mc_qrv; -+ unsigned char mc_gq_running; -+ unsigned char mc_ifc_count; -+ unsigned char mc_dad_count; -+ long unsigned int mc_v1_seen; -+ long unsigned int mc_qi; -+ long unsigned int mc_qri; -+ long unsigned int mc_maxdelay; -+ struct timer_list mc_gq_timer; -+ struct timer_list mc_ifc_timer; -+ struct timer_list mc_dad_timer; -+ struct ifacaddr6 *ac_list; -+ rwlock_t lock; -+ refcount_t refcnt; -+ __u32 if_flags; -+ int dead; -+ u32 desync_factor; -+ u8 rndid[8]; -+ struct list_head tempaddr_list; -+ struct in6_addr token; -+ struct neigh_parms *nd_parms; -+ struct ipv6_devconf cnf; -+ struct ipv6_devstat stats; -+ struct timer_list rs_timer; -+ __s32 rs_interval; -+ __u8 rs_probes; -+ long unsigned int tstamp; -+ struct callback_head rcu; -+}; -+ -+struct tcf_proto; -+ -+struct mini_Qdisc { -+ struct tcf_proto *filter_list; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_queue *cpu_qstats; -+ struct callback_head rcu; -+}; -+ -+struct rtnl_link_ops { -+ struct list_head list; -+ const char *kind; -+ size_t priv_size; -+ void (*setup)(struct net_device *); -+ unsigned int maxtype; -+ const struct nla_policy *policy; -+ int (*validate)(struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ int (*newlink)(struct net *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ int (*changelink)(struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ void (*dellink)(struct net_device *, struct list_head *); -+ size_t (*get_size)(const struct net_device *); -+ int (*fill_info)(struct sk_buff *, const struct net_device *); -+ size_t (*get_xstats_size)(const struct net_device *); -+ int (*fill_xstats)(struct sk_buff *, const struct net_device *); -+ unsigned int (*get_num_tx_queues)(); -+ unsigned int (*get_num_rx_queues)(); -+ unsigned int slave_maxtype; -+ const struct nla_policy *slave_policy; -+ int (*slave_changelink)(struct net_device *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ size_t (*get_slave_size)(const struct net_device *, const struct net_device *); -+ int (*fill_slave_info)(struct sk_buff *, const struct net_device *, const struct net_device *); -+ struct net * (*get_link_net)(const struct net_device *); -+ size_t (*get_linkxstats_size)(const struct net_device *, int); -+ int (*fill_linkxstats)(struct sk_buff *, const struct net_device *, int *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+}; -+ -+struct sd_flow_limit { -+ u64 count; -+ unsigned int num_buckets; -+ unsigned int history_head; -+ u16 history[128]; -+ u8 buckets[0]; -+}; -+ -+struct softnet_data { -+ struct list_head poll_list; -+ struct sk_buff_head process_queue; -+ unsigned int processed; -+ unsigned int time_squeeze; -+ unsigned int received_rps; -+ struct softnet_data *rps_ipi_list; -+ struct sd_flow_limit *flow_limit; -+ struct Qdisc *output_queue; -+ struct Qdisc **output_queue_tailp; -+ struct sk_buff *completion_queue; -+ struct sk_buff_head xfrm_backlog; -+ struct { -+ u16 recursion; -+ u8 more; -+ } xmit; -+ int: 32; -+ unsigned int input_queue_head; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ call_single_data_t csd; -+ struct softnet_data *rps_ipi_next; -+ unsigned int cpu; -+ unsigned int input_queue_tail; -+ unsigned int dropped; -+ struct sk_buff_head input_pkt_queue; -+ struct napi_struct backlog; -+ long: 64; -+}; -+ -+enum { -+ RTAX_UNSPEC = 0, -+ RTAX_LOCK = 1, -+ RTAX_MTU = 2, -+ RTAX_WINDOW = 3, -+ RTAX_RTT = 4, -+ RTAX_RTTVAR = 5, -+ RTAX_SSTHRESH = 6, -+ RTAX_CWND = 7, -+ RTAX_ADVMSS = 8, -+ RTAX_REORDERING = 9, -+ RTAX_HOPLIMIT = 10, -+ RTAX_INITCWND = 11, -+ RTAX_FEATURES = 12, -+ RTAX_RTO_MIN = 13, -+ RTAX_INITRWND = 14, -+ RTAX_QUICKACK = 15, -+ RTAX_CC_ALGO = 16, -+ RTAX_FASTOPEN_NO_COOKIE = 17, -+ __RTAX_MAX = 18, -+}; -+ -+struct tcmsg { -+ unsigned char tcm_family; -+ unsigned char tcm__pad1; -+ short unsigned int tcm__pad2; -+ int tcm_ifindex; -+ __u32 tcm_handle; -+ __u32 tcm_parent; -+ __u32 tcm_info; -+}; -+ -+struct gnet_stats_basic_cpu { -+ struct gnet_stats_basic_packed bstats; -+ struct u64_stats_sync syncp; -+} __attribute__((packed)); -+ -+struct gnet_dump { -+ spinlock_t *lock; -+ struct sk_buff *skb; -+ struct nlattr *tail; -+ int compat_tc_stats; -+ int compat_xstats; -+ int padattr; -+ void *xstats; -+ int xstats_len; -+ struct tc_stats tc_stats; -+}; -+ -+struct nla_policy { -+ u16 type; -+ u16 len; -+ void *validation_data; -+}; -+ -+typedef int tc_setup_cb_t(enum tc_setup_type, void *, void *); -+ -+struct qdisc_size_table { -+ struct callback_head rcu; -+ struct list_head list; -+ struct tc_sizespec szopts; -+ int refcnt; -+ u16 data[0]; -+}; -+ -+struct Qdisc_class_ops; -+ -+struct Qdisc_ops { -+ struct Qdisc_ops *next; -+ const struct Qdisc_class_ops *cl_ops; -+ char id[16]; -+ int priv_size; -+ unsigned int static_flags; -+ int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); -+ struct sk_buff * (*dequeue)(struct Qdisc *); -+ struct sk_buff * (*peek)(struct Qdisc *); -+ int (*init)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); -+ void (*reset)(struct Qdisc *); -+ void (*destroy)(struct Qdisc *); -+ int (*change)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); -+ void (*attach)(struct Qdisc *); -+ int (*change_tx_queue_len)(struct Qdisc *, unsigned int); -+ int (*dump)(struct Qdisc *, struct sk_buff *); -+ int (*dump_stats)(struct Qdisc *, struct gnet_dump *); -+ void (*ingress_block_set)(struct Qdisc *, u32); -+ void (*egress_block_set)(struct Qdisc *, u32); -+ u32 (*ingress_block_get)(struct Qdisc *); -+ u32 (*egress_block_get)(struct Qdisc *); -+ struct module *owner; -+}; -+ -+struct qdisc_walker; -+ -+struct tcf_block; -+ -+struct Qdisc_class_ops { -+ struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *); -+ int (*graft)(struct Qdisc *, long unsigned int, struct Qdisc *, struct Qdisc **, struct netlink_ext_ack *); -+ struct Qdisc * (*leaf)(struct Qdisc *, long unsigned int); -+ void (*qlen_notify)(struct Qdisc *, long unsigned int); -+ long unsigned int (*find)(struct Qdisc *, u32); -+ int (*change)(struct Qdisc *, u32, u32, struct nlattr **, long unsigned int *, struct netlink_ext_ack *); -+ int (*delete)(struct Qdisc *, long unsigned int); -+ void (*walk)(struct Qdisc *, struct qdisc_walker *); -+ struct tcf_block * (*tcf_block)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); -+ long unsigned int (*bind_tcf)(struct Qdisc *, long unsigned int, u32); -+ void (*unbind_tcf)(struct Qdisc *, long unsigned int); -+ int (*dump)(struct Qdisc *, long unsigned int, struct sk_buff *, struct tcmsg *); -+ int (*dump_stats)(struct Qdisc *, long unsigned int, struct gnet_dump *); -+}; -+ -+struct tcf_chain; -+ -+struct tcf_block { -+ struct list_head chain_list; -+ u32 index; -+ unsigned int refcnt; -+ struct net *net; -+ struct Qdisc *q; -+ struct list_head cb_list; -+ struct list_head owner_list; -+ bool keep_dst; -+ unsigned int offloadcnt; -+ unsigned int nooffloaddevcnt; -+ struct { -+ struct tcf_chain *chain; -+ struct list_head filter_chain_list; -+ } chain0; -+}; -+ -+struct tcf_result; -+ -+struct tcf_proto_ops; -+ -+struct tcf_proto { -+ struct tcf_proto *next; -+ void *root; -+ int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); -+ __be16 protocol; -+ u32 prio; -+ void *data; -+ const struct tcf_proto_ops *ops; -+ struct tcf_chain *chain; -+ struct callback_head rcu; -+}; -+ -+struct tcf_result { -+ union { -+ struct { -+ long unsigned int class; -+ u32 classid; -+ }; -+ const struct tcf_proto *goto_tp; -+ struct { -+ bool ingress; -+ struct gnet_stats_queue *qstats; -+ }; -+ }; -+}; -+ -+struct tcf_walker; -+ -+struct tcf_proto_ops { -+ struct list_head head; -+ char kind[16]; -+ int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); -+ int (*init)(struct tcf_proto *); -+ void (*destroy)(struct tcf_proto *, struct netlink_ext_ack *); -+ void * (*get)(struct tcf_proto *, u32); -+ int (*change)(struct net *, struct sk_buff *, struct tcf_proto *, long unsigned int, u32, struct nlattr **, void **, bool, struct netlink_ext_ack *); -+ int (*delete)(struct tcf_proto *, void *, bool *, struct netlink_ext_ack *); -+ void (*walk)(struct tcf_proto *, struct tcf_walker *); -+ int (*reoffload)(struct tcf_proto *, bool, tc_setup_cb_t *, void *, struct netlink_ext_ack *); -+ void (*bind_class)(void *, u32, long unsigned int); -+ void * (*tmplt_create)(struct net *, struct tcf_chain *, struct nlattr **, struct netlink_ext_ack *); -+ void (*tmplt_destroy)(void *); -+ int (*dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *); -+ int (*tmplt_dump)(struct sk_buff *, struct net *, void *); -+ struct module *owner; -+}; -+ -+struct tcf_chain { -+ struct tcf_proto *filter_chain; -+ struct list_head list; -+ struct tcf_block *block; -+ u32 index; -+ unsigned int refcnt; -+ unsigned int action_refcnt; -+ bool explicitly_created; -+ const struct tcf_proto_ops *tmplt_ops; -+ void *tmplt_priv; -+}; -+ -+struct sock_fprog_kern { -+ u16 len; -+ struct sock_filter *filter; -+}; -+ -+struct sk_filter { -+ refcount_t refcnt; -+ struct callback_head rcu; -+ struct bpf_prog *prog; -+}; -+ -+struct bpf_map; -+ -+struct bpf_redirect_info { -+ u32 ifindex; -+ u32 flags; -+ struct bpf_map *map; -+ struct bpf_map *map_to_flush; -+ u32 kern_flags; -+}; -+ -+enum { -+ NEIGH_VAR_MCAST_PROBES = 0, -+ NEIGH_VAR_UCAST_PROBES = 1, -+ NEIGH_VAR_APP_PROBES = 2, -+ NEIGH_VAR_MCAST_REPROBES = 3, -+ NEIGH_VAR_RETRANS_TIME = 4, -+ NEIGH_VAR_BASE_REACHABLE_TIME = 5, -+ NEIGH_VAR_DELAY_PROBE_TIME = 6, -+ NEIGH_VAR_GC_STALETIME = 7, -+ NEIGH_VAR_QUEUE_LEN_BYTES = 8, -+ NEIGH_VAR_PROXY_QLEN = 9, -+ NEIGH_VAR_ANYCAST_DELAY = 10, -+ NEIGH_VAR_PROXY_DELAY = 11, -+ NEIGH_VAR_LOCKTIME = 12, -+ NEIGH_VAR_QUEUE_LEN = 13, -+ NEIGH_VAR_RETRANS_TIME_MS = 14, -+ NEIGH_VAR_BASE_REACHABLE_TIME_MS = 15, -+ NEIGH_VAR_GC_INTERVAL = 16, -+ NEIGH_VAR_GC_THRESH1 = 17, -+ NEIGH_VAR_GC_THRESH2 = 18, -+ NEIGH_VAR_GC_THRESH3 = 19, -+ NEIGH_VAR_MAX = 20, -+}; -+ -+struct pneigh_entry; -+ -+struct neigh_statistics; -+ -+struct neigh_hash_table; -+ -+struct neigh_table { -+ int family; -+ unsigned int entry_size; -+ unsigned int key_len; -+ __be16 protocol; -+ __u32 (*hash)(const void *, const struct net_device *, __u32 *); -+ bool (*key_eq)(const struct neighbour *, const void *); -+ int (*constructor)(struct neighbour *); -+ int (*pconstructor)(struct pneigh_entry *); -+ void (*pdestructor)(struct pneigh_entry *); -+ void (*proxy_redo)(struct sk_buff *); -+ char *id; -+ struct neigh_parms parms; -+ struct list_head parms_list; -+ int gc_interval; -+ int gc_thresh1; -+ int gc_thresh2; -+ int gc_thresh3; -+ long unsigned int last_flush; -+ struct delayed_work gc_work; -+ struct timer_list proxy_timer; -+ struct sk_buff_head proxy_queue; -+ atomic_t entries; -+ rwlock_t lock; -+ long unsigned int last_rand; -+ struct neigh_statistics *stats; -+ struct neigh_hash_table *nht; -+ struct pneigh_entry **phash_buckets; -+}; -+ -+struct neigh_statistics { -+ long unsigned int allocs; -+ long unsigned int destroys; -+ long unsigned int hash_grows; -+ long unsigned int res_failed; -+ long unsigned int lookups; -+ long unsigned int hits; -+ long unsigned int rcv_probes_mcast; -+ long unsigned int rcv_probes_ucast; -+ long unsigned int periodic_gc_runs; -+ long unsigned int forced_gc_runs; -+ long unsigned int unres_discards; -+ long unsigned int table_fulls; -+}; -+ -+struct neigh_ops { -+ int family; -+ void (*solicit)(struct neighbour *, struct sk_buff *); -+ void (*error_report)(struct neighbour *, struct sk_buff *); -+ int (*output)(struct neighbour *, struct sk_buff *); -+ int (*connected_output)(struct neighbour *, struct sk_buff *); -+}; -+ -+struct pneigh_entry { -+ struct pneigh_entry *next; -+ possible_net_t net; -+ struct net_device *dev; -+ u8 flags; -+ u8 key[0]; -+}; -+ -+struct neigh_hash_table { -+ struct neighbour **hash_buckets; -+ unsigned int hash_shift; -+ __u32 hash_rnd[4]; -+ struct callback_head rcu; -+}; -+ -+struct dst_metrics { -+ u32 metrics[17]; -+ refcount_t refcnt; -+}; -+ -+enum { -+ TCP_ESTABLISHED = 1, -+ TCP_SYN_SENT = 2, -+ TCP_SYN_RECV = 3, -+ TCP_FIN_WAIT1 = 4, -+ TCP_FIN_WAIT2 = 5, -+ TCP_TIME_WAIT = 6, -+ TCP_CLOSE = 7, -+ TCP_CLOSE_WAIT = 8, -+ TCP_LAST_ACK = 9, -+ TCP_LISTEN = 10, -+ TCP_CLOSING = 11, -+ TCP_NEW_SYN_RECV = 12, -+ TCP_MAX_STATES = 13, -+}; -+ -+struct smc_hashinfo { -+ rwlock_t lock; -+ struct hlist_head ht; -+}; -+ -+struct fib_rule_hdr { -+ __u8 family; -+ __u8 dst_len; -+ __u8 src_len; -+ __u8 tos; -+ __u8 table; -+ __u8 res1; -+ __u8 res2; -+ __u8 action; -+ __u32 flags; -+}; -+ -+struct fib_rule_port_range { -+ __u16 start; -+ __u16 end; -+}; -+ -+struct fib_kuid_range { -+ kuid_t start; -+ kuid_t end; -+}; -+ -+struct fib_rule { -+ struct list_head list; -+ int iifindex; -+ int oifindex; -+ u32 mark; -+ u32 mark_mask; -+ u32 flags; -+ u32 table; -+ u8 action; -+ u8 l3mdev; -+ u8 proto; -+ u8 ip_proto; -+ u32 target; -+ __be64 tun_id; -+ struct fib_rule *ctarget; -+ struct net *fr_net; -+ refcount_t refcnt; -+ u32 pref; -+ int suppress_ifgroup; -+ int suppress_prefixlen; -+ char iifname[16]; -+ char oifname[16]; -+ struct fib_kuid_range uid_range; -+ struct fib_rule_port_range sport_range; -+ struct fib_rule_port_range dport_range; -+ struct callback_head rcu; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct fib_lookup_arg { -+ void *lookup_ptr; -+ const void *lookup_data; -+ void *result; -+ struct fib_rule *rule; -+ u32 table; -+ int flags; -+}; -+ -+struct request_sock_ops; -+ -+struct timewait_sock_ops; -+ -+struct udp_table; -+ -+struct raw_hashinfo; -+ -+struct proto { -+ void (*close)(struct sock *, long int); -+ int (*pre_connect)(struct sock *, struct sockaddr *, int); -+ int (*connect)(struct sock *, struct sockaddr *, int); -+ int (*disconnect)(struct sock *, int); -+ struct sock * (*accept)(struct sock *, int, int *, bool); -+ int (*ioctl)(struct sock *, int, long unsigned int); -+ int (*init)(struct sock *); -+ void (*destroy)(struct sock *); -+ void (*shutdown)(struct sock *, int); -+ int (*setsockopt)(struct sock *, int, int, char *, unsigned int); -+ int (*getsockopt)(struct sock *, int, int, char *, int *); -+ void (*keepalive)(struct sock *, int); -+ int (*compat_setsockopt)(struct sock *, int, int, char *, unsigned int); -+ int (*compat_getsockopt)(struct sock *, int, int, char *, int *); -+ int (*compat_ioctl)(struct sock *, unsigned int, long unsigned int); -+ int (*sendmsg)(struct sock *, struct msghdr *, size_t); -+ int (*recvmsg)(struct sock *, struct msghdr *, size_t, int, int, int *); -+ int (*sendpage)(struct sock *, struct page *, int, size_t, int); -+ int (*bind)(struct sock *, struct sockaddr *, int); -+ int (*backlog_rcv)(struct sock *, struct sk_buff *); -+ void (*release_cb)(struct sock *); -+ int (*hash)(struct sock *); -+ void (*unhash)(struct sock *); -+ void (*rehash)(struct sock *); -+ int (*get_port)(struct sock *, short unsigned int); -+ unsigned int inuse_idx; -+ bool (*stream_memory_free)(const struct sock *); -+ bool (*stream_memory_read)(const struct sock *); -+ void (*enter_memory_pressure)(struct sock *); -+ void (*leave_memory_pressure)(struct sock *); -+ atomic_long_t *memory_allocated; -+ struct percpu_counter *sockets_allocated; -+ long unsigned int *memory_pressure; -+ long int *sysctl_mem; -+ int *sysctl_wmem; -+ int *sysctl_rmem; -+ u32 sysctl_wmem_offset; -+ u32 sysctl_rmem_offset; -+ int max_header; -+ bool no_autobind; -+ struct kmem_cache *slab; -+ unsigned int obj_size; -+ slab_flags_t slab_flags; -+ unsigned int useroffset; -+ unsigned int usersize; -+ struct percpu_counter *orphan_count; -+ struct request_sock_ops *rsk_prot; -+ struct timewait_sock_ops *twsk_prot; -+ union { -+ struct inet_hashinfo *hashinfo; -+ struct udp_table *udp_table; -+ struct raw_hashinfo *raw_hash; -+ struct smc_hashinfo *smc_hash; -+ } h; -+ struct module *owner; -+ char name[32]; -+ struct list_head node; -+ int (*diag_destroy)(struct sock *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+}; -+ -+struct request_sock; -+ -+struct request_sock_ops { -+ int family; -+ unsigned int obj_size; -+ struct kmem_cache *slab; -+ char *slab_name; -+ int (*rtx_syn_ack)(const struct sock *, struct request_sock *); -+ void (*send_ack)(const struct sock *, struct sk_buff *, struct request_sock *); -+ void (*send_reset)(const struct sock *, struct sk_buff *); -+ void (*destructor)(struct request_sock *); -+ void (*syn_ack_timeout)(const struct request_sock *); -+}; -+ -+struct timewait_sock_ops { -+ struct kmem_cache *twsk_slab; -+ char *twsk_slab_name; -+ unsigned int twsk_obj_size; -+ int (*twsk_unique)(struct sock *, struct sock *, void *); -+ void (*twsk_destructor)(struct sock *); -+}; -+ -+struct request_sock { -+ struct sock_common __req_common; -+ struct request_sock *dl_next; -+ u16 mss; -+ u8 num_retrans; -+ u8 cookie_ts: 1; -+ u8 num_timeout: 7; -+ u32 ts_recent; -+ struct timer_list rsk_timer; -+ const struct request_sock_ops *rsk_ops; -+ struct sock *sk; -+ u32 *saved_syn; -+ u32 secid; -+ u32 peer_secid; -+}; -+ -+enum tsq_enum { -+ TSQ_THROTTLED = 0, -+ TSQ_QUEUED = 1, -+ TCP_TSQ_DEFERRED = 2, -+ TCP_WRITE_TIMER_DEFERRED = 3, -+ TCP_DELACK_TIMER_DEFERRED = 4, -+ TCP_MTU_REDUCED_DEFERRED = 5, -+}; -+ -+struct ip6_sf_list { -+ struct ip6_sf_list *sf_next; -+ struct in6_addr sf_addr; -+ long unsigned int sf_count[2]; -+ unsigned char sf_gsresp; -+ unsigned char sf_oldin; -+ unsigned char sf_crcount; -+}; -+ -+struct ifmcaddr6 { -+ struct in6_addr mca_addr; -+ struct inet6_dev *idev; -+ struct ifmcaddr6 *next; -+ struct ip6_sf_list *mca_sources; -+ struct ip6_sf_list *mca_tomb; -+ unsigned int mca_sfmode; -+ unsigned char mca_crcount; -+ long unsigned int mca_sfcount[2]; -+ struct timer_list mca_timer; -+ unsigned int mca_flags; -+ int mca_users; -+ refcount_t mca_refcnt; -+ spinlock_t mca_lock; -+ long unsigned int mca_cstamp; -+ long unsigned int mca_tstamp; -+}; -+ -+struct ifacaddr6 { -+ struct in6_addr aca_addr; -+ struct fib6_info *aca_rt; -+ struct ifacaddr6 *aca_next; -+ int aca_users; -+ refcount_t aca_refcnt; -+ long unsigned int aca_cstamp; -+ long unsigned int aca_tstamp; -+}; -+ -+enum { -+ __ND_OPT_PREFIX_INFO_END = 0, -+ ND_OPT_SOURCE_LL_ADDR = 1, -+ ND_OPT_TARGET_LL_ADDR = 2, -+ ND_OPT_PREFIX_INFO = 3, -+ ND_OPT_REDIRECT_HDR = 4, -+ ND_OPT_MTU = 5, -+ ND_OPT_NONCE = 14, -+ __ND_OPT_ARRAY_MAX = 15, -+ ND_OPT_ROUTE_INFO = 24, -+ ND_OPT_RDNSS = 25, -+ ND_OPT_DNSSL = 31, -+ ND_OPT_6CO = 34, -+ __ND_OPT_MAX = 35, -+}; -+ -+struct nd_opt_hdr { -+ __u8 nd_opt_type; -+ __u8 nd_opt_len; -+}; -+ -+struct ndisc_options { -+ struct nd_opt_hdr *nd_opt_array[15]; -+ struct nd_opt_hdr *nd_opts_ri; -+ struct nd_opt_hdr *nd_opts_ri_end; -+ struct nd_opt_hdr *nd_useropts; -+ struct nd_opt_hdr *nd_useropts_end; -+ struct nd_opt_hdr *nd_802154_opt_array[3]; -+}; -+ -+struct prefix_info { -+ __u8 type; -+ __u8 length; -+ __u8 prefix_len; -+ __u8 reserved: 6; -+ __u8 autoconf: 1; -+ __u8 onlink: 1; -+ __be32 valid; -+ __be32 prefered; -+ __be32 reserved2; -+ struct in6_addr prefix; -+}; -+ -+struct ip6_ra_chain { -+ struct ip6_ra_chain *next; -+ struct sock *sk; -+ int sel; -+ void (*destructor)(struct sock *); -+}; -+ -+struct rpc_xprt_iter_ops { -+ void (*xpi_rewind)(struct rpc_xprt_iter *); -+ struct rpc_xprt * (*xpi_xprt)(struct rpc_xprt_iter *); -+ struct rpc_xprt * (*xpi_next)(struct rpc_xprt_iter *); -+}; -+ -+struct rpc_version { -+ u32 number; -+ unsigned int nrprocs; -+ const struct rpc_procinfo *procs; -+ unsigned int *counts; -+}; -+ -+struct nfs_fh { -+ short unsigned int size; -+ unsigned char data[128]; -+}; -+ -+enum nfs3_stable_how { -+ NFS_UNSTABLE = 0, -+ NFS_DATA_SYNC = 1, -+ NFS_FILE_SYNC = 2, -+ NFS_INVALID_STABLE_HOW = -1, -+}; -+ -+struct nfs4_label { -+ uint32_t lfs; -+ uint32_t pi; -+ u32 len; -+ char *label; -+}; -+ -+typedef struct { -+ char data[8]; -+} nfs4_verifier; -+ -+struct nfs4_stateid_struct { -+ union { -+ char data[16]; -+ struct { -+ __be32 seqid; -+ char other[12]; -+ }; -+ }; -+ enum { -+ NFS4_INVALID_STATEID_TYPE = 0, -+ NFS4_SPECIAL_STATEID_TYPE = 1, -+ NFS4_OPEN_STATEID_TYPE = 2, -+ NFS4_LOCK_STATEID_TYPE = 3, -+ NFS4_DELEGATION_STATEID_TYPE = 4, -+ NFS4_LAYOUT_STATEID_TYPE = 5, -+ NFS4_PNFS_DS_STATEID_TYPE = 6, -+ NFS4_REVOKED_STATEID_TYPE = 7, -+ } type; -+}; -+ -+typedef struct nfs4_stateid_struct nfs4_stateid; -+ -+enum nfs_opnum4 { -+ OP_ACCESS = 3, -+ OP_CLOSE = 4, -+ OP_COMMIT = 5, -+ OP_CREATE = 6, -+ OP_DELEGPURGE = 7, -+ OP_DELEGRETURN = 8, -+ OP_GETATTR = 9, -+ OP_GETFH = 10, -+ OP_LINK = 11, -+ OP_LOCK = 12, -+ OP_LOCKT = 13, -+ OP_LOCKU = 14, -+ OP_LOOKUP = 15, -+ OP_LOOKUPP = 16, -+ OP_NVERIFY = 17, -+ OP_OPEN = 18, -+ OP_OPENATTR = 19, -+ OP_OPEN_CONFIRM = 20, -+ OP_OPEN_DOWNGRADE = 21, -+ OP_PUTFH = 22, -+ OP_PUTPUBFH = 23, -+ OP_PUTROOTFH = 24, -+ OP_READ = 25, -+ OP_READDIR = 26, -+ OP_READLINK = 27, -+ OP_REMOVE = 28, -+ OP_RENAME = 29, -+ OP_RENEW = 30, -+ OP_RESTOREFH = 31, -+ OP_SAVEFH = 32, -+ OP_SECINFO = 33, -+ OP_SETATTR = 34, -+ OP_SETCLIENTID = 35, -+ OP_SETCLIENTID_CONFIRM = 36, -+ OP_VERIFY = 37, -+ OP_WRITE = 38, -+ OP_RELEASE_LOCKOWNER = 39, -+ OP_BACKCHANNEL_CTL = 40, -+ OP_BIND_CONN_TO_SESSION = 41, -+ OP_EXCHANGE_ID = 42, -+ OP_CREATE_SESSION = 43, -+ OP_DESTROY_SESSION = 44, -+ OP_FREE_STATEID = 45, -+ OP_GET_DIR_DELEGATION = 46, -+ OP_GETDEVICEINFO = 47, -+ OP_GETDEVICELIST = 48, -+ OP_LAYOUTCOMMIT = 49, -+ OP_LAYOUTGET = 50, -+ OP_LAYOUTRETURN = 51, -+ OP_SECINFO_NO_NAME = 52, -+ OP_SEQUENCE = 53, -+ OP_SET_SSV = 54, -+ OP_TEST_STATEID = 55, -+ OP_WANT_DELEGATION = 56, -+ OP_DESTROY_CLIENTID = 57, -+ OP_RECLAIM_COMPLETE = 58, -+ OP_ALLOCATE = 59, -+ OP_COPY = 60, -+ OP_COPY_NOTIFY = 61, -+ OP_DEALLOCATE = 62, -+ OP_IO_ADVISE = 63, -+ OP_LAYOUTERROR = 64, -+ OP_LAYOUTSTATS = 65, -+ OP_OFFLOAD_CANCEL = 66, -+ OP_OFFLOAD_STATUS = 67, -+ OP_READ_PLUS = 68, -+ OP_SEEK = 69, -+ OP_WRITE_SAME = 70, -+ OP_CLONE = 71, -+ OP_ILLEGAL = 10044, -+}; -+ -+struct nfs4_string { -+ unsigned int len; -+ char *data; -+}; -+ -+struct nfs_fsid { -+ uint64_t major; -+ uint64_t minor; -+}; -+ -+struct nfs4_threshold { -+ __u32 bm; -+ __u32 l_type; -+ __u64 rd_sz; -+ __u64 wr_sz; -+ __u64 rd_io_sz; -+ __u64 wr_io_sz; -+}; -+ -+struct nfs_fattr { -+ unsigned int valid; -+ umode_t mode; -+ __u32 nlink; -+ kuid_t uid; -+ kgid_t gid; -+ dev_t rdev; -+ __u64 size; -+ union { -+ struct { -+ __u32 blocksize; -+ __u32 blocks; -+ } nfs2; -+ struct { -+ __u64 used; -+ } nfs3; -+ } du; -+ struct nfs_fsid fsid; -+ __u64 fileid; -+ __u64 mounted_on_fileid; -+ struct timespec atime; -+ struct timespec mtime; -+ struct timespec ctime; -+ __u64 change_attr; -+ __u64 pre_change_attr; -+ __u64 pre_size; -+ struct timespec pre_mtime; -+ struct timespec pre_ctime; -+ long unsigned int time_start; -+ long unsigned int gencount; -+ struct nfs4_string *owner_name; -+ struct nfs4_string *group_name; -+ struct nfs4_threshold *mdsthreshold; -+}; -+ -+struct nfs_fsinfo { -+ struct nfs_fattr *fattr; -+ __u32 rtmax; -+ __u32 rtpref; -+ __u32 rtmult; -+ __u32 wtmax; -+ __u32 wtpref; -+ __u32 wtmult; -+ __u32 dtpref; -+ __u64 maxfilesize; -+ struct timespec time_delta; -+ __u32 lease_time; -+ __u32 nlayouttypes; -+ __u32 layouttype[8]; -+ __u32 blksize; -+ __u32 clone_blksize; -+}; -+ -+struct nfs_fsstat { -+ struct nfs_fattr *fattr; -+ __u64 tbytes; -+ __u64 fbytes; -+ __u64 abytes; -+ __u64 tfiles; -+ __u64 ffiles; -+ __u64 afiles; -+}; -+ -+struct nfs_pathconf { -+ struct nfs_fattr *fattr; -+ __u32 max_link; -+ __u32 max_namelen; -+}; -+ -+struct nfs4_change_info { -+ u32 atomic; -+ u64 before; -+ u64 after; -+}; -+ -+struct nfs4_slot; -+ -+struct nfs4_sequence_args { -+ struct nfs4_slot *sa_slot; -+ u8 sa_cache_this: 1; -+ u8 sa_privileged: 1; -+}; -+ -+struct nfs4_sequence_res { -+ struct nfs4_slot *sr_slot; -+ long unsigned int sr_timestamp; -+ int sr_status; -+ u32 sr_status_flags; -+ u32 sr_highest_slotid; -+ u32 sr_target_highest_slotid; -+}; -+ -+struct nfs_open_context; -+ -+struct nfs_lock_context { -+ refcount_t count; -+ struct list_head list; -+ struct nfs_open_context *open_context; -+ fl_owner_t lockowner; -+ atomic_t io_count; -+}; -+ -+struct nfs4_state; -+ -+struct nfs_open_context { -+ struct nfs_lock_context lock_context; -+ fl_owner_t flock_owner; -+ struct dentry *dentry; -+ struct rpc_cred *cred; -+ struct nfs4_state *state; -+ fmode_t mode; -+ long unsigned int flags; -+ int error; -+ struct list_head list; -+ struct nfs4_threshold *mdsthreshold; -+}; -+ -+struct nlm_host; -+ -+struct nfs_iostats; -+ -+struct nfs_auth_info { -+ unsigned int flavor_len; -+ rpc_authflavor_t flavors[12]; -+}; -+ -+struct nfs_fscache_key; -+ -+struct fscache_cookie; -+ -+struct pnfs_layoutdriver_type; -+ -+struct nfs_client; -+ -+struct nfs_server { -+ struct nfs_client *nfs_client; -+ struct list_head client_link; -+ struct list_head master_link; -+ struct rpc_clnt *client; -+ struct rpc_clnt *client_acl; -+ struct nlm_host *nlm_host; -+ struct nfs_iostats *io_stats; -+ atomic_long_t writeback; -+ int flags; -+ unsigned int caps; -+ unsigned int rsize; -+ unsigned int rpages; -+ unsigned int wsize; -+ unsigned int wpages; -+ unsigned int wtmult; -+ unsigned int dtsize; -+ short unsigned int port; -+ unsigned int bsize; -+ unsigned int acregmin; -+ unsigned int acregmax; -+ unsigned int acdirmin; -+ unsigned int acdirmax; -+ unsigned int namelen; -+ unsigned int options; -+ unsigned int clone_blksize; -+ struct nfs_fsid fsid; -+ __u64 maxfilesize; -+ struct timespec time_delta; -+ long unsigned int mount_time; -+ struct super_block *super; -+ dev_t s_dev; -+ struct nfs_auth_info auth_info; -+ struct nfs_fscache_key *fscache_key; -+ struct fscache_cookie *fscache; -+ u32 pnfs_blksize; -+ u32 attr_bitmask[3]; -+ u32 attr_bitmask_nl[3]; -+ u32 exclcreat_bitmask[3]; -+ u32 cache_consistency_bitmask[3]; -+ u32 acl_bitmask; -+ u32 fh_expire_type; -+ struct pnfs_layoutdriver_type *pnfs_curr_ld; -+ struct rpc_wait_queue roc_rpcwaitq; -+ void *pnfs_ld_data; -+ struct rb_root state_owners; -+ struct ida openowner_id; -+ struct ida lockowner_id; -+ struct list_head state_owners_lru; -+ struct list_head layouts; -+ struct list_head delegations; -+ struct list_head ss_copies; -+ long unsigned int mig_gen; -+ long unsigned int mig_status; -+ void (*destroy)(struct nfs_server *); -+ atomic_t active; -+ int: 32; -+ struct __kernel_sockaddr_storage mountd_address; -+ size_t mountd_addrlen; -+ u32 mountd_version; -+ short unsigned int mountd_port; -+ short unsigned int mountd_protocol; -+ struct rpc_wait_queue uoc_rpcwaitq; -+}; -+ -+struct nfs_subversion; -+ -+struct idmap; -+ -+struct nfs4_minor_version_ops; -+ -+struct nfs4_slot_table; -+ -+struct nfs4_session; -+ -+struct nfs_rpc_ops; -+ -+struct nfs41_server_owner; -+ -+struct nfs41_server_scope; -+ -+struct nfs41_impl_id; -+ -+struct nfs_client { -+ refcount_t cl_count; -+ atomic_t cl_mds_count; -+ int cl_cons_state; -+ long unsigned int cl_res_state; -+ long unsigned int cl_flags; -+ struct __kernel_sockaddr_storage cl_addr; -+ size_t cl_addrlen; -+ char *cl_hostname; -+ char *cl_acceptor; -+ struct list_head cl_share_link; -+ struct list_head cl_superblocks; -+ struct rpc_clnt *cl_rpcclient; -+ const struct nfs_rpc_ops *rpc_ops; -+ int cl_proto; -+ struct nfs_subversion *cl_nfs_mod; -+ u32 cl_minorversion; -+ struct rpc_cred *cl_machine_cred; -+ struct list_head cl_ds_clients; -+ u64 cl_clientid; -+ nfs4_verifier cl_confirm; -+ long unsigned int cl_state; -+ spinlock_t cl_lock; -+ long unsigned int cl_lease_time; -+ long unsigned int cl_last_renewal; -+ struct delayed_work cl_renewd; -+ struct rpc_wait_queue cl_rpcwaitq; -+ struct idmap *cl_idmap; -+ const char *cl_owner_id; -+ u32 cl_cb_ident; -+ const struct nfs4_minor_version_ops *cl_mvops; -+ long unsigned int cl_mig_gen; -+ struct nfs4_slot_table *cl_slot_tbl; -+ u32 cl_seqid; -+ u32 cl_exchange_flags; -+ struct nfs4_session *cl_session; -+ bool cl_preserve_clid; -+ struct nfs41_server_owner *cl_serverowner; -+ struct nfs41_server_scope *cl_serverscope; -+ struct nfs41_impl_id *cl_implid; -+ long unsigned int cl_sp4_flags; -+ wait_queue_head_t cl_lock_waitq; -+ char cl_ipaddr[48]; -+ struct fscache_cookie *fscache; -+ struct net *cl_net; -+ struct list_head pending_cb_stateids; -+}; -+ -+struct nfs_write_verifier { -+ char data[8]; -+}; -+ -+struct nfs_writeverf { -+ struct nfs_write_verifier verifier; -+ enum nfs3_stable_how committed; -+}; -+ -+struct nfs_pgio_args { -+ struct nfs4_sequence_args seq_args; -+ struct nfs_fh *fh; -+ struct nfs_open_context *context; -+ struct nfs_lock_context *lock_context; -+ nfs4_stateid stateid; -+ __u64 offset; -+ __u32 count; -+ unsigned int pgbase; -+ struct page **pages; -+ const u32 *bitmask; -+ enum nfs3_stable_how stable; -+}; -+ -+struct nfs_pgio_res { -+ struct nfs4_sequence_res seq_res; -+ struct nfs_fattr *fattr; -+ __u32 count; -+ __u32 op_status; -+ int eof; -+ struct nfs_writeverf *verf; -+ const struct nfs_server *server; -+}; -+ -+struct nfs_commitargs { -+ struct nfs4_sequence_args seq_args; -+ struct nfs_fh *fh; -+ __u64 offset; -+ __u32 count; -+ const u32 *bitmask; -+}; -+ -+struct nfs_commitres { -+ struct nfs4_sequence_res seq_res; -+ __u32 op_status; -+ struct nfs_fattr *fattr; -+ struct nfs_writeverf *verf; -+ const struct nfs_server *server; -+}; -+ -+struct nfs_removeargs { -+ struct nfs4_sequence_args seq_args; -+ const struct nfs_fh *fh; -+ struct qstr name; -+}; -+ -+struct nfs_removeres { -+ struct nfs4_sequence_res seq_res; -+ struct nfs_server *server; -+ struct nfs_fattr *dir_attr; -+ struct nfs4_change_info cinfo; -+}; -+ -+struct nfs_renameargs { -+ struct nfs4_sequence_args seq_args; -+ const struct nfs_fh *old_dir; -+ const struct nfs_fh *new_dir; -+ const struct qstr *old_name; -+ const struct qstr *new_name; -+}; -+ -+struct nfs_renameres { -+ struct nfs4_sequence_res seq_res; -+ struct nfs_server *server; -+ struct nfs4_change_info old_cinfo; -+ struct nfs_fattr *old_fattr; -+ struct nfs4_change_info new_cinfo; -+ struct nfs_fattr *new_fattr; -+}; -+ -+struct nfs_entry { -+ __u64 ino; -+ __u64 cookie; -+ __u64 prev_cookie; -+ const char *name; -+ unsigned int len; -+ int eof; -+ struct nfs_fh *fh; -+ struct nfs_fattr *fattr; -+ struct nfs4_label *label; -+ unsigned char d_type; -+ struct nfs_server *server; -+}; -+ -+struct nfstime4 { -+ u64 seconds; -+ u32 nseconds; -+}; -+ -+struct pnfs_layout_segment; -+ -+struct pnfs_commit_bucket { -+ struct list_head written; -+ struct list_head committing; -+ struct pnfs_layout_segment *wlseg; -+ struct pnfs_layout_segment *clseg; -+ struct nfs_writeverf direct_verf; -+}; -+ -+struct pnfs_ds_commit_info { -+ int nwritten; -+ int ncommitting; -+ int nbuckets; -+ struct pnfs_commit_bucket *buckets; -+}; -+ -+struct nfs41_server_owner { -+ uint64_t minor_id; -+ uint32_t major_id_sz; -+ char major_id[1024]; -+}; -+ -+struct nfs41_server_scope { -+ uint32_t server_scope_sz; -+ char server_scope[1024]; -+}; -+ -+struct nfs41_impl_id { -+ char domain[1025]; -+ char name[1025]; -+ struct nfstime4 date; -+}; -+ -+struct nfs_page_array { -+ struct page **pagevec; -+ unsigned int npages; -+ struct page *page_array[8]; -+}; -+ -+struct nfs_page; -+ -+struct nfs_rw_ops; -+ -+struct nfs_io_completion; -+ -+struct nfs_direct_req; -+ -+struct nfs_pgio_completion_ops; -+ -+struct nfs_pgio_header { -+ struct inode *inode; -+ struct rpc_cred *cred; -+ struct list_head pages; -+ struct nfs_page *req; -+ struct nfs_writeverf verf; -+ fmode_t rw_mode; -+ struct pnfs_layout_segment *lseg; -+ loff_t io_start; -+ const struct rpc_call_ops *mds_ops; -+ void (*release)(struct nfs_pgio_header *); -+ const struct nfs_pgio_completion_ops *completion_ops; -+ const struct nfs_rw_ops *rw_ops; -+ struct nfs_io_completion *io_completion; -+ struct nfs_direct_req *dreq; -+ spinlock_t lock; -+ int pnfs_error; -+ int error; -+ long unsigned int good_bytes; -+ long unsigned int flags; -+ struct rpc_task task; -+ struct nfs_fattr fattr; -+ struct nfs_pgio_args args; -+ struct nfs_pgio_res res; -+ long unsigned int timestamp; -+ int (*pgio_done_cb)(struct rpc_task *, struct nfs_pgio_header *); -+ __u64 mds_offset; -+ struct nfs_page_array page_array; -+ struct nfs_client *ds_clp; -+ int ds_commit_idx; -+ int pgio_mirror_idx; -+}; -+ -+struct nfs_pgio_completion_ops { -+ void (*error_cleanup)(struct list_head *, int); -+ void (*init_hdr)(struct nfs_pgio_header *); -+ void (*completion)(struct nfs_pgio_header *); -+ void (*reschedule_io)(struct nfs_pgio_header *); -+}; -+ -+struct nfs_mds_commit_info { -+ atomic_t rpcs_out; -+ atomic_long_t ncommit; -+ struct list_head list; -+}; -+ -+struct nfs_commit_data; -+ -+struct nfs_commit_info; -+ -+struct nfs_commit_completion_ops { -+ void (*completion)(struct nfs_commit_data *); -+ void (*resched_write)(struct nfs_commit_info *, struct nfs_page *); -+}; -+ -+struct nfs_commit_data { -+ struct rpc_task task; -+ struct inode *inode; -+ struct rpc_cred *cred; -+ struct nfs_fattr fattr; -+ struct nfs_writeverf verf; -+ struct list_head pages; -+ struct list_head list; -+ struct nfs_direct_req *dreq; -+ struct nfs_commitargs args; -+ struct nfs_commitres res; -+ struct nfs_open_context *context; -+ struct pnfs_layout_segment *lseg; -+ struct nfs_client *ds_clp; -+ int ds_commit_index; -+ loff_t lwb; -+ const struct rpc_call_ops *mds_ops; -+ const struct nfs_commit_completion_ops *completion_ops; -+ int (*commit_done_cb)(struct rpc_task *, struct nfs_commit_data *); -+ long unsigned int flags; -+}; -+ -+struct nfs_commit_info { -+ struct inode *inode; -+ struct nfs_mds_commit_info *mds; -+ struct pnfs_ds_commit_info *ds; -+ struct nfs_direct_req *dreq; -+ const struct nfs_commit_completion_ops *completion_ops; -+}; -+ -+struct nfs_unlinkdata { -+ struct nfs_removeargs args; -+ struct nfs_removeres res; -+ struct dentry *dentry; -+ wait_queue_head_t wq; -+ struct rpc_cred *cred; -+ struct nfs_fattr dir_attr; -+ long int timeout; -+}; -+ -+struct nfs_renamedata { -+ struct nfs_renameargs args; -+ struct nfs_renameres res; -+ struct rpc_cred *cred; -+ struct inode *old_dir; -+ struct dentry *old_dentry; -+ struct nfs_fattr old_fattr; -+ struct inode *new_dir; -+ struct dentry *new_dentry; -+ struct nfs_fattr new_fattr; -+ void (*complete)(struct rpc_task *, struct nfs_renamedata *); -+ long int timeout; -+ bool cancelled; -+}; -+ -+struct nlmclnt_operations; -+ -+struct nfs_mount_info; -+ -+struct nfs_client_initdata; -+ -+struct nfs_access_entry; -+ -+struct nfs_rpc_ops { -+ u32 version; -+ const struct dentry_operations *dentry_ops; -+ const struct inode_operations *dir_inode_ops; -+ const struct inode_operations *file_inode_ops; -+ const struct file_operations *file_ops; -+ const struct nlmclnt_operations *nlmclnt_ops; -+ int (*getroot)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); -+ struct vfsmount * (*submount)(struct nfs_server *, struct dentry *, struct nfs_fh *, struct nfs_fattr *); -+ struct dentry * (*try_mount)(int, const char *, struct nfs_mount_info *, struct nfs_subversion *); -+ int (*getattr)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *, struct inode *); -+ int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); -+ int (*lookup)(struct inode *, const struct qstr *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*access)(struct inode *, struct nfs_access_entry *); -+ int (*readlink)(struct inode *, struct page *, unsigned int, unsigned int); -+ int (*create)(struct inode *, struct dentry *, struct iattr *, int); -+ int (*remove)(struct inode *, struct dentry *); -+ void (*unlink_setup)(struct rpc_message *, struct dentry *, struct inode *); -+ void (*unlink_rpc_prepare)(struct rpc_task *, struct nfs_unlinkdata *); -+ int (*unlink_done)(struct rpc_task *, struct inode *); -+ void (*rename_setup)(struct rpc_message *, struct dentry *, struct dentry *); -+ void (*rename_rpc_prepare)(struct rpc_task *, struct nfs_renamedata *); -+ int (*rename_done)(struct rpc_task *, struct inode *, struct inode *); -+ int (*link)(struct inode *, struct inode *, const struct qstr *); -+ int (*symlink)(struct inode *, struct dentry *, struct page *, unsigned int, struct iattr *); -+ int (*mkdir)(struct inode *, struct dentry *, struct iattr *); -+ int (*rmdir)(struct inode *, const struct qstr *); -+ int (*readdir)(struct dentry *, struct rpc_cred *, u64, struct page **, unsigned int, bool); -+ int (*mknod)(struct inode *, struct dentry *, struct iattr *, dev_t); -+ int (*statfs)(struct nfs_server *, struct nfs_fh *, struct nfs_fsstat *); -+ int (*fsinfo)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); -+ int (*pathconf)(struct nfs_server *, struct nfs_fh *, struct nfs_pathconf *); -+ int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); -+ int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, bool); -+ int (*pgio_rpc_prepare)(struct rpc_task *, struct nfs_pgio_header *); -+ void (*read_setup)(struct nfs_pgio_header *, struct rpc_message *); -+ int (*read_done)(struct rpc_task *, struct nfs_pgio_header *); -+ void (*write_setup)(struct nfs_pgio_header *, struct rpc_message *, struct rpc_clnt **); -+ int (*write_done)(struct rpc_task *, struct nfs_pgio_header *); -+ void (*commit_setup)(struct nfs_commit_data *, struct rpc_message *, struct rpc_clnt **); -+ void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *); -+ int (*commit_done)(struct rpc_task *, struct nfs_commit_data *); -+ int (*lock)(struct file *, int, struct file_lock *); -+ int (*lock_check_bounds)(const struct file_lock *); -+ void (*clear_acl_cache)(struct inode *); -+ void (*close_context)(struct nfs_open_context *, int); -+ struct inode * (*open_context)(struct inode *, struct nfs_open_context *, int, struct iattr *, int *); -+ int (*have_delegation)(struct inode *, fmode_t); -+ struct nfs_client * (*alloc_client)(const struct nfs_client_initdata *); -+ struct nfs_client * (*init_client)(struct nfs_client *, const struct nfs_client_initdata *); -+ void (*free_client)(struct nfs_client *); -+ struct nfs_server * (*create_server)(struct nfs_mount_info *, struct nfs_subversion *); -+ struct nfs_server * (*clone_server)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, rpc_authflavor_t); -+}; -+ -+struct nfs_access_entry { -+ struct rb_node rb_node; -+ struct list_head lru; -+ struct rpc_cred *cred; -+ __u32 mask; -+ struct callback_head callback_head; -+}; -+ -+enum blkg_rwstat_type { -+ BLKG_RWSTAT_READ = 0, -+ BLKG_RWSTAT_WRITE = 1, -+ BLKG_RWSTAT_SYNC = 2, -+ BLKG_RWSTAT_ASYNC = 3, -+ BLKG_RWSTAT_DISCARD = 4, -+ BLKG_RWSTAT_NR = 5, -+ BLKG_RWSTAT_TOTAL = 5, -+}; -+ -+struct blkcg_policy_data; -+ -+struct blkcg { -+ struct cgroup_subsys_state css; -+ spinlock_t lock; -+ struct radix_tree_root blkg_tree; -+ struct blkcg_gq *blkg_hint; -+ struct hlist_head blkg_list; -+ struct blkcg_policy_data *cpd[5]; -+ struct list_head all_blkcgs_node; -+ struct list_head cgwb_list; -+ refcount_t cgwb_refcnt; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct blkcg_policy_data { -+ struct blkcg *blkcg; -+ int plid; -+}; -+ -+struct blkg_policy_data { -+ struct blkcg_gq *blkg; -+ int plid; -+}; -+ -+enum perf_sw_ids { -+ PERF_COUNT_SW_CPU_CLOCK = 0, -+ PERF_COUNT_SW_TASK_CLOCK = 1, -+ PERF_COUNT_SW_PAGE_FAULTS = 2, -+ PERF_COUNT_SW_CONTEXT_SWITCHES = 3, -+ PERF_COUNT_SW_CPU_MIGRATIONS = 4, -+ PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, -+ PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, -+ PERF_COUNT_SW_ALIGNMENT_FAULTS = 7, -+ PERF_COUNT_SW_EMULATION_FAULTS = 8, -+ PERF_COUNT_SW_DUMMY = 9, -+ PERF_COUNT_SW_BPF_OUTPUT = 10, -+ PERF_COUNT_SW_MAX = 11, -+}; -+ -+enum perf_branch_sample_type_shift { -+ PERF_SAMPLE_BRANCH_USER_SHIFT = 0, -+ PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 1, -+ PERF_SAMPLE_BRANCH_HV_SHIFT = 2, -+ PERF_SAMPLE_BRANCH_ANY_SHIFT = 3, -+ PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4, -+ PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5, -+ PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 6, -+ PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 7, -+ PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 8, -+ PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 9, -+ PERF_SAMPLE_BRANCH_COND_SHIFT = 10, -+ PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 11, -+ PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 12, -+ PERF_SAMPLE_BRANCH_CALL_SHIFT = 13, -+ PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 14, -+ PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 15, -+ PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 16, -+ PERF_SAMPLE_BRANCH_MAX_SHIFT = 17, -+}; -+ -+enum { -+ TSK_TRACE_FL_TRACE_BIT = 0, -+ TSK_TRACE_FL_GRAPH_BIT = 1, -+}; -+ -+enum { -+ TRACE_EVENT_FL_FILTERED_BIT = 0, -+ TRACE_EVENT_FL_CAP_ANY_BIT = 1, -+ TRACE_EVENT_FL_NO_SET_FILTER_BIT = 2, -+ TRACE_EVENT_FL_IGNORE_ENABLE_BIT = 3, -+ TRACE_EVENT_FL_TRACEPOINT_BIT = 4, -+ TRACE_EVENT_FL_KPROBE_BIT = 5, -+ TRACE_EVENT_FL_UPROBE_BIT = 6, -+}; -+ -+enum { -+ EVENT_FILE_FL_ENABLED_BIT = 0, -+ EVENT_FILE_FL_RECORDED_CMD_BIT = 1, -+ EVENT_FILE_FL_RECORDED_TGID_BIT = 2, -+ EVENT_FILE_FL_FILTERED_BIT = 3, -+ EVENT_FILE_FL_NO_SET_FILTER_BIT = 4, -+ EVENT_FILE_FL_SOFT_MODE_BIT = 5, -+ EVENT_FILE_FL_SOFT_DISABLED_BIT = 6, -+ EVENT_FILE_FL_TRIGGER_MODE_BIT = 7, -+ EVENT_FILE_FL_TRIGGER_COND_BIT = 8, -+ EVENT_FILE_FL_PID_FILTER_BIT = 9, -+ EVENT_FILE_FL_WAS_ENABLED_BIT = 10, -+}; -+ -+struct uuidcmp { -+ const char *uuid; -+ int len; -+}; -+ -+typedef long unsigned int pao_T__; -+ -+struct subprocess_info { -+ struct work_struct work; -+ struct completion *complete; -+ const char *path; -+ char **argv; -+ char **envp; -+ struct file *file; -+ int wait; -+ int retval; -+ pid_t pid; -+ int (*init)(struct subprocess_info *, struct cred *); -+ void (*cleanup)(struct subprocess_info *); -+ void *data; -+}; -+ -+enum { -+ TASKSTATS_CMD_UNSPEC = 0, -+ TASKSTATS_CMD_GET = 1, -+ TASKSTATS_CMD_NEW = 2, -+ __TASKSTATS_CMD_MAX = 3, -+}; -+ -+enum ucount_type { -+ UCOUNT_USER_NAMESPACES = 0, -+ UCOUNT_PID_NAMESPACES = 1, -+ UCOUNT_UTS_NAMESPACES = 2, -+ UCOUNT_IPC_NAMESPACES = 3, -+ UCOUNT_NET_NAMESPACES = 4, -+ UCOUNT_MNT_NAMESPACES = 5, -+ UCOUNT_CGROUP_NAMESPACES = 6, -+ UCOUNT_INOTIFY_INSTANCES = 7, -+ UCOUNT_INOTIFY_WATCHES = 8, -+ UCOUNT_COUNTS = 9, -+}; -+ -+enum { -+ HI_SOFTIRQ = 0, -+ TIMER_SOFTIRQ = 1, -+ NET_TX_SOFTIRQ = 2, -+ NET_RX_SOFTIRQ = 3, -+ BLOCK_SOFTIRQ = 4, -+ IRQ_POLL_SOFTIRQ = 5, -+ TASKLET_SOFTIRQ = 6, -+ SCHED_SOFTIRQ = 7, -+ HRTIMER_SOFTIRQ = 8, -+ RCU_SOFTIRQ = 9, -+ NR_SOFTIRQS = 10, -+}; -+ -+enum cpu_usage_stat { -+ CPUTIME_USER = 0, -+ CPUTIME_NICE = 1, -+ CPUTIME_SYSTEM = 2, -+ CPUTIME_SOFTIRQ = 3, -+ CPUTIME_IRQ = 4, -+ CPUTIME_IDLE = 5, -+ CPUTIME_IOWAIT = 6, -+ CPUTIME_STEAL = 7, -+ CPUTIME_GUEST = 8, -+ CPUTIME_GUEST_NICE = 9, -+ CPUTIME_SOFTIRQ_IDLE = 10, -+ CPUTIME_IRQ_IDLE = 11, -+ NR_STATS = 12, -+}; -+ -+enum cgroup_subsys_id { -+ cpuset_cgrp_id = 0, -+ cpu_cgrp_id = 1, -+ cpuacct_cgrp_id = 2, -+ io_cgrp_id = 3, -+ memory_cgrp_id = 4, -+ devices_cgrp_id = 5, -+ freezer_cgrp_id = 6, -+ net_cls_cgrp_id = 7, -+ perf_event_cgrp_id = 8, -+ net_prio_cgrp_id = 9, -+ hugetlb_cgrp_id = 10, -+ pids_cgrp_id = 11, -+ rdma_cgrp_id = 12, -+ files_cgrp_id = 13, -+ CGROUP_SUBSYS_COUNT = 14, -+}; -+ -+struct mdu_array_info_s { -+ int major_version; -+ int minor_version; -+ int patch_version; -+ unsigned int ctime; -+ int level; -+ int size; -+ int nr_disks; -+ int raid_disks; -+ int md_minor; -+ int not_persistent; -+ unsigned int utime; -+ int state; -+ int active_disks; -+ int working_disks; -+ int failed_disks; -+ int spare_disks; -+ int layout; -+ int chunk_size; -+}; -+ -+typedef struct mdu_array_info_s mdu_array_info_t; -+ -+struct mdu_disk_info_s { -+ int number; -+ int major; -+ int minor; -+ int raid_disk; -+ int state; -+}; -+ -+typedef struct mdu_disk_info_s mdu_disk_info_t; -+ -+struct hash { -+ int ino; -+ int minor; -+ int major; -+ umode_t mode; -+ struct hash *next; -+ char name[4098]; -+}; -+ -+struct dir_entry { -+ struct list_head list; -+ char *name; -+ time64_t mtime; -+}; -+ -+enum state { -+ Start = 0, -+ Collect = 1, -+ GotHeader = 2, -+ SkipIt = 3, -+ GotName = 4, -+ CopyFile = 5, -+ GotSymlink = 6, -+ Reset = 7, -+}; -+ -+typedef int (*decompress_fn)(unsigned char *, long int, long int (*)(void *, long unsigned int), long int (*)(void *, long unsigned int), unsigned char *, long int *, void (*)(char *)); -+ -+typedef u32 note_buf_t[92]; -+ -+struct kimage_arch { -+ p4d_t *p4d; -+ pud_t *pud; -+ pmd_t *pmd; -+ pte_t *pte; -+ long unsigned int backup_src_start; -+ long unsigned int backup_src_sz; -+ long unsigned int backup_load_addr; -+ void *elf_headers; -+ long unsigned int elf_headers_sz; -+ long unsigned int elf_load_addr; -+}; -+ -+typedef void crash_vmclear_fn(); -+ -+typedef long unsigned int kimage_entry_t; -+ -+struct kexec_segment { -+ union { -+ void *buf; -+ void *kbuf; -+ }; -+ size_t bufsz; -+ long unsigned int mem; -+ size_t memsz; -+}; -+ -+struct purgatory_info { -+ const Elf64_Ehdr *ehdr; -+ Elf64_Shdr *sechdrs; -+ void *purgatory_buf; -+}; -+ -+typedef int kexec_probe_t(const char *, long unsigned int); -+ -+struct kimage; -+ -+typedef void *kexec_load_t(struct kimage *, char *, long unsigned int, char *, long unsigned int, char *, long unsigned int); -+ -+struct kexec_file_ops; -+ -+struct kimage { -+ kimage_entry_t head; -+ kimage_entry_t *entry; -+ kimage_entry_t *last_entry; -+ long unsigned int start; -+ struct page *control_code_page; -+ struct page *swap_page; -+ void *vmcoreinfo_data_copy; -+ long unsigned int nr_segments; -+ struct kexec_segment segment[16]; -+ struct list_head control_pages; -+ struct list_head dest_pages; -+ struct list_head unusable_pages; -+ long unsigned int control_page; -+ unsigned int type: 2; -+ unsigned int preserve_context: 1; -+ unsigned int file_mode: 1; -+ struct kimage_arch arch; -+ void *kernel_buf; -+ long unsigned int kernel_buf_len; -+ void *initrd_buf; -+ long unsigned int initrd_buf_len; -+ char *cmdline_buf; -+ long unsigned int cmdline_buf_len; -+ const struct kexec_file_ops *fops; -+ void *image_loader_data; -+ struct purgatory_info purgatory_info; -+}; -+ -+typedef int kexec_cleanup_t(void *); -+ -+typedef int kexec_verify_sig_t(const char *, long unsigned int); -+ -+struct kexec_file_ops { -+ kexec_probe_t *probe; -+ kexec_load_t *load; -+ kexec_cleanup_t *cleanup; -+ kexec_verify_sig_t *verify_sig; -+}; -+ -+enum flow_dissector_key_id { -+ FLOW_DISSECTOR_KEY_CONTROL = 0, -+ FLOW_DISSECTOR_KEY_BASIC = 1, -+ FLOW_DISSECTOR_KEY_IPV4_ADDRS = 2, -+ FLOW_DISSECTOR_KEY_IPV6_ADDRS = 3, -+ FLOW_DISSECTOR_KEY_PORTS = 4, -+ FLOW_DISSECTOR_KEY_ICMP = 5, -+ FLOW_DISSECTOR_KEY_ETH_ADDRS = 6, -+ FLOW_DISSECTOR_KEY_TIPC = 7, -+ FLOW_DISSECTOR_KEY_ARP = 8, -+ FLOW_DISSECTOR_KEY_VLAN = 9, -+ FLOW_DISSECTOR_KEY_FLOW_LABEL = 10, -+ FLOW_DISSECTOR_KEY_GRE_KEYID = 11, -+ FLOW_DISSECTOR_KEY_MPLS_ENTROPY = 12, -+ FLOW_DISSECTOR_KEY_ENC_KEYID = 13, -+ FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS = 14, -+ FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS = 15, -+ FLOW_DISSECTOR_KEY_ENC_CONTROL = 16, -+ FLOW_DISSECTOR_KEY_ENC_PORTS = 17, -+ FLOW_DISSECTOR_KEY_MPLS = 18, -+ FLOW_DISSECTOR_KEY_TCP = 19, -+ FLOW_DISSECTOR_KEY_IP = 20, -+ FLOW_DISSECTOR_KEY_CVLAN = 21, -+ FLOW_DISSECTOR_KEY_ENC_IP = 22, -+ FLOW_DISSECTOR_KEY_ENC_OPTS = 23, -+ FLOW_DISSECTOR_KEY_MAX = 24, -+}; -+ -+enum { -+ IPSTATS_MIB_NUM = 0, -+ IPSTATS_MIB_INPKTS = 1, -+ IPSTATS_MIB_INOCTETS = 2, -+ IPSTATS_MIB_INDELIVERS = 3, -+ IPSTATS_MIB_OUTFORWDATAGRAMS = 4, -+ IPSTATS_MIB_OUTPKTS = 5, -+ IPSTATS_MIB_OUTOCTETS = 6, -+ IPSTATS_MIB_INHDRERRORS = 7, -+ IPSTATS_MIB_INTOOBIGERRORS = 8, -+ IPSTATS_MIB_INNOROUTES = 9, -+ IPSTATS_MIB_INADDRERRORS = 10, -+ IPSTATS_MIB_INUNKNOWNPROTOS = 11, -+ IPSTATS_MIB_INTRUNCATEDPKTS = 12, -+ IPSTATS_MIB_INDISCARDS = 13, -+ IPSTATS_MIB_OUTDISCARDS = 14, -+ IPSTATS_MIB_OUTNOROUTES = 15, -+ IPSTATS_MIB_REASMTIMEOUT = 16, -+ IPSTATS_MIB_REASMREQDS = 17, -+ IPSTATS_MIB_REASMOKS = 18, -+ IPSTATS_MIB_REASMFAILS = 19, -+ IPSTATS_MIB_FRAGOKS = 20, -+ IPSTATS_MIB_FRAGFAILS = 21, -+ IPSTATS_MIB_FRAGCREATES = 22, -+ IPSTATS_MIB_INMCASTPKTS = 23, -+ IPSTATS_MIB_OUTMCASTPKTS = 24, -+ IPSTATS_MIB_INBCASTPKTS = 25, -+ IPSTATS_MIB_OUTBCASTPKTS = 26, -+ IPSTATS_MIB_INMCASTOCTETS = 27, -+ IPSTATS_MIB_OUTMCASTOCTETS = 28, -+ IPSTATS_MIB_INBCASTOCTETS = 29, -+ IPSTATS_MIB_OUTBCASTOCTETS = 30, -+ IPSTATS_MIB_CSUMERRORS = 31, -+ IPSTATS_MIB_NOECTPKTS = 32, -+ IPSTATS_MIB_ECT1PKTS = 33, -+ IPSTATS_MIB_ECT0PKTS = 34, -+ IPSTATS_MIB_CEPKTS = 35, -+ IPSTATS_MIB_REASM_OVERLAPS = 36, -+ __IPSTATS_MIB_MAX = 37, -+}; -+ -+enum { -+ ICMP_MIB_NUM = 0, -+ ICMP_MIB_INMSGS = 1, -+ ICMP_MIB_INERRORS = 2, -+ ICMP_MIB_INDESTUNREACHS = 3, -+ ICMP_MIB_INTIMEEXCDS = 4, -+ ICMP_MIB_INPARMPROBS = 5, -+ ICMP_MIB_INSRCQUENCHS = 6, -+ ICMP_MIB_INREDIRECTS = 7, -+ ICMP_MIB_INECHOS = 8, -+ ICMP_MIB_INECHOREPS = 9, -+ ICMP_MIB_INTIMESTAMPS = 10, -+ ICMP_MIB_INTIMESTAMPREPS = 11, -+ ICMP_MIB_INADDRMASKS = 12, -+ ICMP_MIB_INADDRMASKREPS = 13, -+ ICMP_MIB_OUTMSGS = 14, -+ ICMP_MIB_OUTERRORS = 15, -+ ICMP_MIB_OUTDESTUNREACHS = 16, -+ ICMP_MIB_OUTTIMEEXCDS = 17, -+ ICMP_MIB_OUTPARMPROBS = 18, -+ ICMP_MIB_OUTSRCQUENCHS = 19, -+ ICMP_MIB_OUTREDIRECTS = 20, -+ ICMP_MIB_OUTECHOS = 21, -+ ICMP_MIB_OUTECHOREPS = 22, -+ ICMP_MIB_OUTTIMESTAMPS = 23, -+ ICMP_MIB_OUTTIMESTAMPREPS = 24, -+ ICMP_MIB_OUTADDRMASKS = 25, -+ ICMP_MIB_OUTADDRMASKREPS = 26, -+ ICMP_MIB_CSUMERRORS = 27, -+ __ICMP_MIB_MAX = 28, -+}; -+ -+enum { -+ ICMP6_MIB_NUM = 0, -+ ICMP6_MIB_INMSGS = 1, -+ ICMP6_MIB_INERRORS = 2, -+ ICMP6_MIB_OUTMSGS = 3, -+ ICMP6_MIB_OUTERRORS = 4, -+ ICMP6_MIB_CSUMERRORS = 5, -+ __ICMP6_MIB_MAX = 6, -+}; -+ -+enum { -+ TCP_MIB_NUM = 0, -+ TCP_MIB_RTOALGORITHM = 1, -+ TCP_MIB_RTOMIN = 2, -+ TCP_MIB_RTOMAX = 3, -+ TCP_MIB_MAXCONN = 4, -+ TCP_MIB_ACTIVEOPENS = 5, -+ TCP_MIB_PASSIVEOPENS = 6, -+ TCP_MIB_ATTEMPTFAILS = 7, -+ TCP_MIB_ESTABRESETS = 8, -+ TCP_MIB_CURRESTAB = 9, -+ TCP_MIB_INSEGS = 10, -+ TCP_MIB_OUTSEGS = 11, -+ TCP_MIB_RETRANSSEGS = 12, -+ TCP_MIB_INERRS = 13, -+ TCP_MIB_OUTRSTS = 14, -+ TCP_MIB_CSUMERRORS = 15, -+ __TCP_MIB_MAX = 16, -+}; -+ -+enum { -+ UDP_MIB_NUM = 0, -+ UDP_MIB_INDATAGRAMS = 1, -+ UDP_MIB_NOPORTS = 2, -+ UDP_MIB_INERRORS = 3, -+ UDP_MIB_OUTDATAGRAMS = 4, -+ UDP_MIB_RCVBUFERRORS = 5, -+ UDP_MIB_SNDBUFERRORS = 6, -+ UDP_MIB_CSUMERRORS = 7, -+ UDP_MIB_IGNOREDMULTI = 8, -+ __UDP_MIB_MAX = 9, -+}; -+ -+enum { -+ LINUX_MIB_NUM = 0, -+ LINUX_MIB_SYNCOOKIESSENT = 1, -+ LINUX_MIB_SYNCOOKIESRECV = 2, -+ LINUX_MIB_SYNCOOKIESFAILED = 3, -+ LINUX_MIB_EMBRYONICRSTS = 4, -+ LINUX_MIB_PRUNECALLED = 5, -+ LINUX_MIB_RCVPRUNED = 6, -+ LINUX_MIB_OFOPRUNED = 7, -+ LINUX_MIB_OUTOFWINDOWICMPS = 8, -+ LINUX_MIB_LOCKDROPPEDICMPS = 9, -+ LINUX_MIB_ARPFILTER = 10, -+ LINUX_MIB_TIMEWAITED = 11, -+ LINUX_MIB_TIMEWAITRECYCLED = 12, -+ LINUX_MIB_TIMEWAITKILLED = 13, -+ LINUX_MIB_PAWSACTIVEREJECTED = 14, -+ LINUX_MIB_PAWSESTABREJECTED = 15, -+ LINUX_MIB_DELAYEDACKS = 16, -+ LINUX_MIB_DELAYEDACKLOCKED = 17, -+ LINUX_MIB_DELAYEDACKLOST = 18, -+ LINUX_MIB_LISTENOVERFLOWS = 19, -+ LINUX_MIB_LISTENDROPS = 20, -+ LINUX_MIB_TCPHPHITS = 21, -+ LINUX_MIB_TCPPUREACKS = 22, -+ LINUX_MIB_TCPHPACKS = 23, -+ LINUX_MIB_TCPRENORECOVERY = 24, -+ LINUX_MIB_TCPSACKRECOVERY = 25, -+ LINUX_MIB_TCPSACKRENEGING = 26, -+ LINUX_MIB_TCPSACKREORDER = 27, -+ LINUX_MIB_TCPRENOREORDER = 28, -+ LINUX_MIB_TCPTSREORDER = 29, -+ LINUX_MIB_TCPFULLUNDO = 30, -+ LINUX_MIB_TCPPARTIALUNDO = 31, -+ LINUX_MIB_TCPDSACKUNDO = 32, -+ LINUX_MIB_TCPLOSSUNDO = 33, -+ LINUX_MIB_TCPLOSTRETRANSMIT = 34, -+ LINUX_MIB_TCPRENOFAILURES = 35, -+ LINUX_MIB_TCPSACKFAILURES = 36, -+ LINUX_MIB_TCPLOSSFAILURES = 37, -+ LINUX_MIB_TCPFASTRETRANS = 38, -+ LINUX_MIB_TCPSLOWSTARTRETRANS = 39, -+ LINUX_MIB_TCPTIMEOUTS = 40, -+ LINUX_MIB_TCPLOSSPROBES = 41, -+ LINUX_MIB_TCPLOSSPROBERECOVERY = 42, -+ LINUX_MIB_TCPRENORECOVERYFAIL = 43, -+ LINUX_MIB_TCPSACKRECOVERYFAIL = 44, -+ LINUX_MIB_TCPRCVCOLLAPSED = 45, -+ LINUX_MIB_TCPDSACKOLDSENT = 46, -+ LINUX_MIB_TCPDSACKOFOSENT = 47, -+ LINUX_MIB_TCPDSACKRECV = 48, -+ LINUX_MIB_TCPDSACKOFORECV = 49, -+ LINUX_MIB_TCPABORTONDATA = 50, -+ LINUX_MIB_TCPABORTONCLOSE = 51, -+ LINUX_MIB_TCPABORTONMEMORY = 52, -+ LINUX_MIB_TCPABORTONTIMEOUT = 53, -+ LINUX_MIB_TCPABORTONLINGER = 54, -+ LINUX_MIB_TCPABORTFAILED = 55, -+ LINUX_MIB_TCPMEMORYPRESSURES = 56, -+ LINUX_MIB_TCPMEMORYPRESSURESCHRONO = 57, -+ LINUX_MIB_TCPSACKDISCARD = 58, -+ LINUX_MIB_TCPDSACKIGNOREDOLD = 59, -+ LINUX_MIB_TCPDSACKIGNOREDNOUNDO = 60, -+ LINUX_MIB_TCPSPURIOUSRTOS = 61, -+ LINUX_MIB_TCPMD5NOTFOUND = 62, -+ LINUX_MIB_TCPMD5UNEXPECTED = 63, -+ LINUX_MIB_TCPMD5FAILURE = 64, -+ LINUX_MIB_SACKSHIFTED = 65, -+ LINUX_MIB_SACKMERGED = 66, -+ LINUX_MIB_SACKSHIFTFALLBACK = 67, -+ LINUX_MIB_TCPBACKLOGDROP = 68, -+ LINUX_MIB_PFMEMALLOCDROP = 69, -+ LINUX_MIB_TCPMINTTLDROP = 70, -+ LINUX_MIB_TCPDEFERACCEPTDROP = 71, -+ LINUX_MIB_IPRPFILTER = 72, -+ LINUX_MIB_TCPTIMEWAITOVERFLOW = 73, -+ LINUX_MIB_TCPREQQFULLDOCOOKIES = 74, -+ LINUX_MIB_TCPREQQFULLDROP = 75, -+ LINUX_MIB_TCPRETRANSFAIL = 76, -+ LINUX_MIB_TCPRCVCOALESCE = 77, -+ LINUX_MIB_TCPBACKLOGCOALESCE = 78, -+ LINUX_MIB_TCPOFOQUEUE = 79, -+ LINUX_MIB_TCPOFODROP = 80, -+ LINUX_MIB_TCPOFOMERGE = 81, -+ LINUX_MIB_TCPCHALLENGEACK = 82, -+ LINUX_MIB_TCPSYNCHALLENGE = 83, -+ LINUX_MIB_TCPFASTOPENACTIVE = 84, -+ LINUX_MIB_TCPFASTOPENACTIVEFAIL = 85, -+ LINUX_MIB_TCPFASTOPENPASSIVE = 86, -+ LINUX_MIB_TCPFASTOPENPASSIVEFAIL = 87, -+ LINUX_MIB_TCPFASTOPENLISTENOVERFLOW = 88, -+ LINUX_MIB_TCPFASTOPENCOOKIEREQD = 89, -+ LINUX_MIB_TCPFASTOPENBLACKHOLE = 90, -+ LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES = 91, -+ LINUX_MIB_BUSYPOLLRXPACKETS = 92, -+ LINUX_MIB_TCPAUTOCORKING = 93, -+ LINUX_MIB_TCPFROMZEROWINDOWADV = 94, -+ LINUX_MIB_TCPTOZEROWINDOWADV = 95, -+ LINUX_MIB_TCPWANTZEROWINDOWADV = 96, -+ LINUX_MIB_TCPSYNRETRANS = 97, -+ LINUX_MIB_TCPORIGDATASENT = 98, -+ LINUX_MIB_TCPHYSTARTTRAINDETECT = 99, -+ LINUX_MIB_TCPHYSTARTTRAINCWND = 100, -+ LINUX_MIB_TCPHYSTARTDELAYDETECT = 101, -+ LINUX_MIB_TCPHYSTARTDELAYCWND = 102, -+ LINUX_MIB_TCPACKSKIPPEDSYNRECV = 103, -+ LINUX_MIB_TCPACKSKIPPEDPAWS = 104, -+ LINUX_MIB_TCPACKSKIPPEDSEQ = 105, -+ LINUX_MIB_TCPACKSKIPPEDFINWAIT2 = 106, -+ LINUX_MIB_TCPACKSKIPPEDTIMEWAIT = 107, -+ LINUX_MIB_TCPACKSKIPPEDCHALLENGE = 108, -+ LINUX_MIB_TCPWINPROBE = 109, -+ LINUX_MIB_TCPKEEPALIVE = 110, -+ LINUX_MIB_TCPMTUPFAIL = 111, -+ LINUX_MIB_TCPMTUPSUCCESS = 112, -+ LINUX_MIB_TCPDELIVERED = 113, -+ LINUX_MIB_TCPDELIVEREDCE = 114, -+ LINUX_MIB_TCPACKCOMPRESSED = 115, -+ LINUX_MIB_TCPZEROWINDOWDROP = 116, -+ LINUX_MIB_TCPRCVQDROP = 117, -+ LINUX_MIB_TCPWQUEUETOOBIG = 118, -+ __LINUX_MIB_MAX = 119, -+}; -+ -+enum { -+ LINUX_MIB_XFRMNUM = 0, -+ LINUX_MIB_XFRMINERROR = 1, -+ LINUX_MIB_XFRMINBUFFERERROR = 2, -+ LINUX_MIB_XFRMINHDRERROR = 3, -+ LINUX_MIB_XFRMINNOSTATES = 4, -+ LINUX_MIB_XFRMINSTATEPROTOERROR = 5, -+ LINUX_MIB_XFRMINSTATEMODEERROR = 6, -+ LINUX_MIB_XFRMINSTATESEQERROR = 7, -+ LINUX_MIB_XFRMINSTATEEXPIRED = 8, -+ LINUX_MIB_XFRMINSTATEMISMATCH = 9, -+ LINUX_MIB_XFRMINSTATEINVALID = 10, -+ LINUX_MIB_XFRMINTMPLMISMATCH = 11, -+ LINUX_MIB_XFRMINNOPOLS = 12, -+ LINUX_MIB_XFRMINPOLBLOCK = 13, -+ LINUX_MIB_XFRMINPOLERROR = 14, -+ LINUX_MIB_XFRMOUTERROR = 15, -+ LINUX_MIB_XFRMOUTBUNDLEGENERROR = 16, -+ LINUX_MIB_XFRMOUTBUNDLECHECKERROR = 17, -+ LINUX_MIB_XFRMOUTNOSTATES = 18, -+ LINUX_MIB_XFRMOUTSTATEPROTOERROR = 19, -+ LINUX_MIB_XFRMOUTSTATEMODEERROR = 20, -+ LINUX_MIB_XFRMOUTSTATESEQERROR = 21, -+ LINUX_MIB_XFRMOUTSTATEEXPIRED = 22, -+ LINUX_MIB_XFRMOUTPOLBLOCK = 23, -+ LINUX_MIB_XFRMOUTPOLDEAD = 24, -+ LINUX_MIB_XFRMOUTPOLERROR = 25, -+ LINUX_MIB_XFRMFWDHDRERROR = 26, -+ LINUX_MIB_XFRMOUTSTATEINVALID = 27, -+ LINUX_MIB_XFRMACQUIREERROR = 28, -+ __LINUX_MIB_XFRMMAX = 29, -+}; -+ -+enum nf_inet_hooks { -+ NF_INET_PRE_ROUTING = 0, -+ NF_INET_LOCAL_IN = 1, -+ NF_INET_FORWARD = 2, -+ NF_INET_LOCAL_OUT = 3, -+ NF_INET_POST_ROUTING = 4, -+ NF_INET_NUMHOOKS = 5, -+}; -+ -+enum { -+ NFPROTO_UNSPEC = 0, -+ NFPROTO_INET = 1, -+ NFPROTO_IPV4 = 2, -+ NFPROTO_ARP = 3, -+ NFPROTO_NETDEV = 5, -+ NFPROTO_BRIDGE = 7, -+ NFPROTO_IPV6 = 10, -+ NFPROTO_DECNET = 12, -+ NFPROTO_NUMPROTO = 13, -+}; -+ -+enum tcp_conntrack { -+ TCP_CONNTRACK_NONE = 0, -+ TCP_CONNTRACK_SYN_SENT = 1, -+ TCP_CONNTRACK_SYN_RECV = 2, -+ TCP_CONNTRACK_ESTABLISHED = 3, -+ TCP_CONNTRACK_FIN_WAIT = 4, -+ TCP_CONNTRACK_CLOSE_WAIT = 5, -+ TCP_CONNTRACK_LAST_ACK = 6, -+ TCP_CONNTRACK_TIME_WAIT = 7, -+ TCP_CONNTRACK_CLOSE = 8, -+ TCP_CONNTRACK_LISTEN = 9, -+ TCP_CONNTRACK_MAX = 10, -+ TCP_CONNTRACK_IGNORE = 11, -+ TCP_CONNTRACK_RETRANS = 12, -+ TCP_CONNTRACK_UNACK = 13, -+ TCP_CONNTRACK_TIMEOUT_MAX = 14, -+}; -+ -+enum ct_dccp_states { -+ CT_DCCP_NONE = 0, -+ CT_DCCP_REQUEST = 1, -+ CT_DCCP_RESPOND = 2, -+ CT_DCCP_PARTOPEN = 3, -+ CT_DCCP_OPEN = 4, -+ CT_DCCP_CLOSEREQ = 5, -+ CT_DCCP_CLOSING = 6, -+ CT_DCCP_TIMEWAIT = 7, -+ CT_DCCP_IGNORE = 8, -+ CT_DCCP_INVALID = 9, -+ __CT_DCCP_MAX = 10, -+}; -+ -+enum ip_conntrack_dir { -+ IP_CT_DIR_ORIGINAL = 0, -+ IP_CT_DIR_REPLY = 1, -+ IP_CT_DIR_MAX = 2, -+}; -+ -+enum sctp_conntrack { -+ SCTP_CONNTRACK_NONE = 0, -+ SCTP_CONNTRACK_CLOSED = 1, -+ SCTP_CONNTRACK_COOKIE_WAIT = 2, -+ SCTP_CONNTRACK_COOKIE_ECHOED = 3, -+ SCTP_CONNTRACK_ESTABLISHED = 4, -+ SCTP_CONNTRACK_SHUTDOWN_SENT = 5, -+ SCTP_CONNTRACK_SHUTDOWN_RECD = 6, -+ SCTP_CONNTRACK_SHUTDOWN_ACK_SENT = 7, -+ SCTP_CONNTRACK_HEARTBEAT_SENT = 8, -+ SCTP_CONNTRACK_HEARTBEAT_ACKED = 9, -+ SCTP_CONNTRACK_MAX = 10, -+}; -+ -+enum udp_conntrack { -+ UDP_CT_UNREPLIED = 0, -+ UDP_CT_REPLIED = 1, -+ UDP_CT_MAX = 2, -+}; -+ -+enum { -+ XFRM_POLICY_IN = 0, -+ XFRM_POLICY_OUT = 1, -+ XFRM_POLICY_FWD = 2, -+ XFRM_POLICY_MASK = 3, -+ XFRM_POLICY_MAX = 3, -+}; -+ -+enum sched_tunable_scaling { -+ SCHED_TUNABLESCALING_NONE = 0, -+ SCHED_TUNABLESCALING_LOG = 1, -+ SCHED_TUNABLESCALING_LINEAR = 2, -+ SCHED_TUNABLESCALING_END = 3, -+}; -+ -+typedef long int (*sys_call_ptr_t)(const struct pt_regs *); -+ -+struct seccomp_data { -+ int nr; -+ __u32 arch; -+ __u64 instruction_pointer; -+ __u64 args[6]; -+}; -+ -+struct ksignal { -+ struct k_sigaction ka; -+ siginfo_t info; -+ int sig; -+}; -+ -+struct __large_struct { -+ long unsigned int buf[100]; -+}; -+ -+typedef u8 kprobe_opcode_t; -+ -+struct arch_specific_insn { -+ kprobe_opcode_t *insn; -+ bool boostable; -+ bool if_modifier; -+}; -+ -+struct kprobe; -+ -+struct prev_kprobe { -+ struct kprobe *kp; -+ long unsigned int status; -+ long unsigned int old_flags; -+ long unsigned int saved_flags; -+}; -+ -+typedef int (*kprobe_pre_handler_t)(struct kprobe *, struct pt_regs *); -+ -+typedef void (*kprobe_post_handler_t)(struct kprobe *, struct pt_regs *, long unsigned int); -+ -+typedef int (*kprobe_fault_handler_t)(struct kprobe *, struct pt_regs *, int); -+ -+struct kprobe { -+ struct hlist_node hlist; -+ struct list_head list; -+ long unsigned int nmissed; -+ kprobe_opcode_t *addr; -+ const char *symbol_name; -+ unsigned int offset; -+ kprobe_pre_handler_t pre_handler; -+ kprobe_post_handler_t post_handler; -+ kprobe_fault_handler_t fault_handler; -+ kprobe_opcode_t opcode; -+ struct arch_specific_insn ainsn; -+ u32 flags; -+}; -+ -+struct kprobe_ctlblk { -+ long unsigned int kprobe_status; -+ long unsigned int kprobe_old_flags; -+ long unsigned int kprobe_saved_flags; -+ struct prev_kprobe prev_kprobe; -+}; -+ -+struct kretprobe_blackpoint { -+ const char *name; -+ void *addr; -+}; -+ -+struct kprobe_insn_cache { -+ struct mutex mutex; -+ void * (*alloc)(); -+ void (*free)(void *); -+ struct list_head pages; -+ size_t insn_size; -+ int nr_garbage; -+}; -+ -+struct trace_event_raw_sys_enter { -+ struct trace_entry ent; -+ long int id; -+ long unsigned int args[6]; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_sys_exit { -+ struct trace_entry ent; -+ long int id; -+ long int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_sys_enter {}; -+ -+struct trace_event_data_offsets_sys_exit {}; -+ -+struct alt_instr { -+ s32 instr_offset; -+ s32 repl_offset; -+ u16 cpuid; -+ u8 instrlen; -+ u8 replacementlen; -+ u8 padlen; -+} __attribute__((packed)); -+ -+enum { -+ DESC_TSS = 9, -+ DESC_LDT = 2, -+ DESCTYPE_S = 16, -+}; -+ -+struct arch_clocksource_data { -+ int vclock_mode; -+}; -+ -+struct clocksource { -+ u64 (*read)(struct clocksource *); -+ u64 mask; -+ u32 mult; -+ u32 shift; -+ u64 max_idle_ns; -+ u32 maxadj; -+ struct arch_clocksource_data archdata; -+ u64 max_cycles; -+ const char *name; -+ struct list_head list; -+ int rating; -+ int (*enable)(struct clocksource *); -+ void (*disable)(struct clocksource *); -+ long unsigned int flags; -+ void (*suspend)(struct clocksource *); -+ void (*resume)(struct clocksource *); -+ void (*mark_unstable)(struct clocksource *); -+ void (*tick_stable)(struct clocksource *); -+ struct list_head wd_list; -+ u64 cs_last; -+ u64 wd_last; -+ struct module *owner; -+}; -+ -+struct vm_special_mapping { -+ const char *name; -+ struct page **pages; -+ vm_fault_t (*fault)(const struct vm_special_mapping *, struct vm_area_struct *, struct vm_fault *); -+ int (*mremap)(const struct vm_special_mapping *, struct vm_area_struct *); -+}; -+ -+struct pvclock_vcpu_time_info { -+ u32 version; -+ u32 pad0; -+ u64 tsc_timestamp; -+ u64 system_time; -+ u32 tsc_to_system_mul; -+ s8 tsc_shift; -+ u8 flags; -+ u8 pad[2]; -+}; -+ -+struct pvclock_vsyscall_time_info { -+ struct pvclock_vcpu_time_info pvti; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef long unsigned int gtod_long_t; -+ -+struct vsyscall_gtod_data { -+ unsigned int seq; -+ int vclock_mode; -+ u64 cycle_last; -+ u64 mask; -+ u32 mult; -+ u32 shift; -+ u64 wall_time_snsec; -+ gtod_long_t wall_time_sec; -+ gtod_long_t monotonic_time_sec; -+ u64 monotonic_time_snsec; -+ gtod_long_t wall_time_coarse_sec; -+ gtod_long_t wall_time_coarse_nsec; -+ gtod_long_t monotonic_time_coarse_sec; -+ gtod_long_t monotonic_time_coarse_nsec; -+ int tz_minuteswest; -+ int tz_dsttime; -+}; -+ -+struct ms_hyperv_tsc_page { -+ volatile u32 tsc_sequence; -+ u32 reserved1; -+ volatile u64 tsc_scale; -+ volatile s64 tsc_offset; -+ u64 reserved2[509]; -+}; -+ -+struct hv_vp_assist_page { -+ __u32 apic_assist; -+ __u32 reserved; -+ __u64 vtl_control[2]; -+ __u64 nested_enlightenments_control[2]; -+ __u32 enlighten_vmentry; -+ __u64 current_nested_vmcs; -+}; -+ -+struct ms_hyperv_info { -+ u32 features; -+ u32 misc_features; -+ u32 hints; -+ u32 nested_features; -+ u32 max_vp_index; -+ u32 max_lp_index; -+}; -+ -+enum migratetype { -+ MIGRATE_UNMOVABLE = 0, -+ MIGRATE_MOVABLE = 1, -+ MIGRATE_RECLAIMABLE = 2, -+ MIGRATE_PCPTYPES = 3, -+ MIGRATE_HIGHATOMIC = 3, -+ MIGRATE_ISOLATE = 4, -+ MIGRATE_TYPES = 5, -+}; -+ -+enum zone_watermarks { -+ WMARK_MIN = 0, -+ WMARK_LOW = 1, -+ WMARK_HIGH = 2, -+ NR_WMARK = 3, -+}; -+ -+enum { -+ ZONELIST_FALLBACK = 0, -+ ZONELIST_NOFALLBACK = 1, -+ MAX_ZONELISTS = 2, -+}; -+ -+struct tk_read_base { -+ struct clocksource *clock; -+ u64 mask; -+ u64 cycle_last; -+ u32 mult; -+ u32 shift; -+ u64 xtime_nsec; -+ ktime_t base; -+ u64 base_real; -+}; -+ -+struct timekeeper { -+ struct tk_read_base tkr_mono; -+ struct tk_read_base tkr_raw; -+ u64 xtime_sec; -+ long unsigned int ktime_sec; -+ struct timespec64 wall_to_monotonic; -+ ktime_t offs_real; -+ ktime_t offs_boot; -+ ktime_t offs_tai; -+ s32 tai_offset; -+ unsigned int clock_was_set_seq; -+ u8 cs_was_changed_seq; -+ ktime_t next_leap_ktime; -+ u64 raw_sec; -+ u64 cycle_interval; -+ u64 xtime_interval; -+ s64 xtime_remainder; -+ u64 raw_interval; -+ u64 ntp_tick; -+ s64 ntp_error; -+ u32 ntp_error_shift; -+ u32 ntp_err_mult; -+ u32 skip_second_overflow; -+}; -+ -+enum { -+ X86_TRAP_DE = 0, -+ X86_TRAP_DB = 1, -+ X86_TRAP_NMI = 2, -+ X86_TRAP_BP = 3, -+ X86_TRAP_OF = 4, -+ X86_TRAP_BR = 5, -+ X86_TRAP_UD = 6, -+ X86_TRAP_NM = 7, -+ X86_TRAP_DF = 8, -+ X86_TRAP_OLD_MF = 9, -+ X86_TRAP_TS = 10, -+ X86_TRAP_NP = 11, -+ X86_TRAP_SS = 12, -+ X86_TRAP_GP = 13, -+ X86_TRAP_PF = 14, -+ X86_TRAP_SPURIOUS = 15, -+ X86_TRAP_MF = 16, -+ X86_TRAP_AC = 17, -+ X86_TRAP_MC = 18, -+ X86_TRAP_XF = 19, -+ X86_TRAP_IRET = 32, -+}; -+ -+struct trace_event_raw_emulate_vsyscall { -+ struct trace_entry ent; -+ int nr; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_emulate_vsyscall {}; -+ -+enum { -+ EMULATE = 0, -+ NONE = 1, -+}; -+ -+enum perf_type_id { -+ PERF_TYPE_HARDWARE = 0, -+ PERF_TYPE_SOFTWARE = 1, -+ PERF_TYPE_TRACEPOINT = 2, -+ PERF_TYPE_HW_CACHE = 3, -+ PERF_TYPE_RAW = 4, -+ PERF_TYPE_BREAKPOINT = 5, -+ PERF_TYPE_MAX = 6, -+}; -+ -+enum perf_hw_id { -+ PERF_COUNT_HW_CPU_CYCLES = 0, -+ PERF_COUNT_HW_INSTRUCTIONS = 1, -+ PERF_COUNT_HW_CACHE_REFERENCES = 2, -+ PERF_COUNT_HW_CACHE_MISSES = 3, -+ PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4, -+ PERF_COUNT_HW_BRANCH_MISSES = 5, -+ PERF_COUNT_HW_BUS_CYCLES = 6, -+ PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7, -+ PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8, -+ PERF_COUNT_HW_REF_CPU_CYCLES = 9, -+ PERF_COUNT_HW_MAX = 10, -+}; -+ -+enum perf_hw_cache_id { -+ PERF_COUNT_HW_CACHE_L1D = 0, -+ PERF_COUNT_HW_CACHE_L1I = 1, -+ PERF_COUNT_HW_CACHE_LL = 2, -+ PERF_COUNT_HW_CACHE_DTLB = 3, -+ PERF_COUNT_HW_CACHE_ITLB = 4, -+ PERF_COUNT_HW_CACHE_BPU = 5, -+ PERF_COUNT_HW_CACHE_NODE = 6, -+ PERF_COUNT_HW_CACHE_MAX = 7, -+}; -+ -+enum perf_hw_cache_op_id { -+ PERF_COUNT_HW_CACHE_OP_READ = 0, -+ PERF_COUNT_HW_CACHE_OP_WRITE = 1, -+ PERF_COUNT_HW_CACHE_OP_PREFETCH = 2, -+ PERF_COUNT_HW_CACHE_OP_MAX = 3, -+}; -+ -+enum perf_hw_cache_op_result_id { -+ PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0, -+ PERF_COUNT_HW_CACHE_RESULT_MISS = 1, -+ PERF_COUNT_HW_CACHE_RESULT_MAX = 2, -+}; -+ -+enum perf_event_sample_format { -+ PERF_SAMPLE_IP = 1, -+ PERF_SAMPLE_TID = 2, -+ PERF_SAMPLE_TIME = 4, -+ PERF_SAMPLE_ADDR = 8, -+ PERF_SAMPLE_READ = 16, -+ PERF_SAMPLE_CALLCHAIN = 32, -+ PERF_SAMPLE_ID = 64, -+ PERF_SAMPLE_CPU = 128, -+ PERF_SAMPLE_PERIOD = 256, -+ PERF_SAMPLE_STREAM_ID = 512, -+ PERF_SAMPLE_RAW = 1024, -+ PERF_SAMPLE_BRANCH_STACK = 2048, -+ PERF_SAMPLE_REGS_USER = 4096, -+ PERF_SAMPLE_STACK_USER = 8192, -+ PERF_SAMPLE_WEIGHT = 16384, -+ PERF_SAMPLE_DATA_SRC = 32768, -+ PERF_SAMPLE_IDENTIFIER = 65536, -+ PERF_SAMPLE_TRANSACTION = 131072, -+ PERF_SAMPLE_REGS_INTR = 262144, -+ PERF_SAMPLE_PHYS_ADDR = 524288, -+ PERF_SAMPLE_MAX = 1048576, -+ __PERF_SAMPLE_CALLCHAIN_EARLY = 0, -+}; -+ -+enum perf_branch_sample_type { -+ PERF_SAMPLE_BRANCH_USER = 1, -+ PERF_SAMPLE_BRANCH_KERNEL = 2, -+ PERF_SAMPLE_BRANCH_HV = 4, -+ PERF_SAMPLE_BRANCH_ANY = 8, -+ PERF_SAMPLE_BRANCH_ANY_CALL = 16, -+ PERF_SAMPLE_BRANCH_ANY_RETURN = 32, -+ PERF_SAMPLE_BRANCH_IND_CALL = 64, -+ PERF_SAMPLE_BRANCH_ABORT_TX = 128, -+ PERF_SAMPLE_BRANCH_IN_TX = 256, -+ PERF_SAMPLE_BRANCH_NO_TX = 512, -+ PERF_SAMPLE_BRANCH_COND = 1024, -+ PERF_SAMPLE_BRANCH_CALL_STACK = 2048, -+ PERF_SAMPLE_BRANCH_IND_JUMP = 4096, -+ PERF_SAMPLE_BRANCH_CALL = 8192, -+ PERF_SAMPLE_BRANCH_NO_FLAGS = 16384, -+ PERF_SAMPLE_BRANCH_NO_CYCLES = 32768, -+ PERF_SAMPLE_BRANCH_TYPE_SAVE = 65536, -+ PERF_SAMPLE_BRANCH_MAX = 131072, -+}; -+ -+struct perf_event_mmap_page { -+ __u32 version; -+ __u32 compat_version; -+ __u32 lock; -+ __u32 index; -+ __s64 offset; -+ __u64 time_enabled; -+ __u64 time_running; -+ union { -+ __u64 capabilities; -+ struct { -+ __u64 cap_bit0: 1; -+ __u64 cap_bit0_is_deprecated: 1; -+ __u64 cap_user_rdpmc: 1; -+ __u64 cap_user_time: 1; -+ __u64 cap_user_time_zero: 1; -+ __u64 cap_____res: 59; -+ }; -+ }; -+ __u16 pmc_width; -+ __u16 time_shift; -+ __u32 time_mult; -+ __u64 time_offset; -+ __u64 time_zero; -+ __u32 size; -+ __u8 __reserved[948]; -+ __u64 data_head; -+ __u64 data_tail; -+ __u64 data_offset; -+ __u64 data_size; -+ __u64 aux_head; -+ __u64 aux_tail; -+ __u64 aux_offset; -+ __u64 aux_size; -+}; -+ -+struct ldt_struct { -+ struct desc_struct *entries; -+ unsigned int nr_entries; -+ int slot; -+}; -+ -+struct x86_pmu_capability { -+ int version; -+ int num_counters_gp; -+ int num_counters_fixed; -+ int bit_width_gp; -+ int bit_width_fixed; -+ unsigned int events_mask; -+ int events_mask_len; -+}; -+ -+enum stack_type { -+ STACK_TYPE_UNKNOWN = 0, -+ STACK_TYPE_TASK = 1, -+ STACK_TYPE_IRQ = 2, -+ STACK_TYPE_SOFTIRQ = 3, -+ STACK_TYPE_ENTRY = 4, -+ STACK_TYPE_EXCEPTION = 5, -+ STACK_TYPE_EXCEPTION_LAST = 8, -+}; -+ -+struct stack_info { -+ enum stack_type type; -+ long unsigned int *begin; -+ long unsigned int *end; -+ long unsigned int *next_sp; -+}; -+ -+struct stack_frame { -+ struct stack_frame *next_frame; -+ long unsigned int return_address; -+}; -+ -+struct stack_frame_ia32 { -+ u32 next_frame; -+ u32 return_address; -+}; -+ -+struct perf_guest_switch_msr { -+ unsigned int msr; -+ u64 host; -+ u64 guest; -+}; -+ -+struct device_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct device *, struct device_attribute *, char *); -+ ssize_t (*store)(struct device *, struct device_attribute *, const char *, size_t); -+}; -+ -+enum perf_event_x86_regs { -+ PERF_REG_X86_AX = 0, -+ PERF_REG_X86_BX = 1, -+ PERF_REG_X86_CX = 2, -+ PERF_REG_X86_DX = 3, -+ PERF_REG_X86_SI = 4, -+ PERF_REG_X86_DI = 5, -+ PERF_REG_X86_BP = 6, -+ PERF_REG_X86_SP = 7, -+ PERF_REG_X86_IP = 8, -+ PERF_REG_X86_FLAGS = 9, -+ PERF_REG_X86_CS = 10, -+ PERF_REG_X86_SS = 11, -+ PERF_REG_X86_DS = 12, -+ PERF_REG_X86_ES = 13, -+ PERF_REG_X86_FS = 14, -+ PERF_REG_X86_GS = 15, -+ PERF_REG_X86_R8 = 16, -+ PERF_REG_X86_R9 = 17, -+ PERF_REG_X86_R10 = 18, -+ PERF_REG_X86_R11 = 19, -+ PERF_REG_X86_R12 = 20, -+ PERF_REG_X86_R13 = 21, -+ PERF_REG_X86_R14 = 22, -+ PERF_REG_X86_R15 = 23, -+ PERF_REG_X86_32_MAX = 16, -+ PERF_REG_X86_64_MAX = 24, -+ PERF_REG_X86_XMM0 = 32, -+ PERF_REG_X86_XMM1 = 34, -+ PERF_REG_X86_XMM2 = 36, -+ PERF_REG_X86_XMM3 = 38, -+ PERF_REG_X86_XMM4 = 40, -+ PERF_REG_X86_XMM5 = 42, -+ PERF_REG_X86_XMM6 = 44, -+ PERF_REG_X86_XMM7 = 46, -+ PERF_REG_X86_XMM8 = 48, -+ PERF_REG_X86_XMM9 = 50, -+ PERF_REG_X86_XMM10 = 52, -+ PERF_REG_X86_XMM11 = 54, -+ PERF_REG_X86_XMM12 = 56, -+ PERF_REG_X86_XMM13 = 58, -+ PERF_REG_X86_XMM14 = 60, -+ PERF_REG_X86_XMM15 = 62, -+ PERF_REG_X86_XMM_MAX = 64, -+}; -+ -+struct perf_callchain_entry_ctx { -+ struct perf_callchain_entry *entry; -+ u32 max_stack; -+ u32 nr; -+ short int contexts; -+ bool contexts_maxed; -+}; -+ -+struct perf_pmu_events_attr { -+ struct device_attribute attr; -+ u64 id; -+ const char *event_str; -+}; -+ -+struct perf_pmu_events_ht_attr { -+ struct device_attribute attr; -+ u64 id; -+ const char *event_str_ht; -+ const char *event_str_noht; -+}; -+ -+enum { -+ NMI_LOCAL = 0, -+ NMI_UNKNOWN = 1, -+ NMI_SERR = 2, -+ NMI_IO_CHECK = 3, -+ NMI_MAX = 4, -+}; -+ -+typedef int (*nmi_handler_t)(unsigned int, struct pt_regs *); -+ -+struct nmiaction { -+ struct list_head list; -+ nmi_handler_t handler; -+ u64 max_duration; -+ struct irq_work irq_work; -+ long unsigned int flags; -+ const char *name; -+}; -+ +struct cyc2ns_data { + u32 cyc2ns_mul; + u32 cyc2ns_shift; @@ -18619,10 +17040,11 @@ index 0000000..bcb9d76 + long unsigned int bp; + long unsigned int ip; + struct pt_regs *regs; ++ struct pt_regs *prev_regs; +}; + +enum extra_reg_type { -+ EXTRA_REG_NONE = -1, ++ EXTRA_REG_NONE = 4294967295, + EXTRA_REG_RSP_0 = 0, + EXTRA_REG_RSP_1 = 1, + EXTRA_REG_LBR = 2, @@ -18692,8 +17114,6 @@ index 0000000..bcb9d76 + X86_PERF_KFREE_MAX = 2, +}; + -+struct x86_perf_task_context; -+ +struct cpu_hw_events { + struct perf_event *events[64]; + long unsigned int active_mask[1]; @@ -18702,6 +17122,7 @@ index 0000000..bcb9d76 + int n_events; + int n_added; + int n_txn; ++ int n_txn_pair; + int n_txn_metric; + int assign[64]; + u64 tags[64]; @@ -18716,6 +17137,8 @@ index 0000000..bcb9d76 + u64 pebs_enabled; + int n_pebs; + int n_large_pebs; ++ int n_pebs_via_pt; ++ int pebs_output; + u64 pebs_data_cfg; + u64 active_pebs_data_cfg; + int pebs_record_size; @@ -18723,11 +17146,15 @@ index 0000000..bcb9d76 + int lbr_pebs_users; + struct perf_branch_stack lbr_stack; + struct perf_branch_entry lbr_entries[32]; -+ struct er_account *lbr_sel; ++ union { ++ struct er_account *lbr_sel; ++ struct er_account *lbr_ctl; ++ }; + u64 br_sel; -+ struct x86_perf_task_context *last_task_ctx; ++ void *last_task_ctx; + int last_log_id; + int lbr_select; ++ void *lbr_xsave; + u64 intel_ctrl_guest_mask; + u64 intel_ctrl_host_mask; + struct perf_guest_switch_msr guest_switch_msrs[64]; @@ -18742,18 +17169,7 @@ index 0000000..bcb9d76 + u64 perf_ctr_virt_mask; + int n_pair; + void *kfree_on_online[2]; -+}; -+ -+struct x86_perf_task_context { -+ u64 lbr_from[32]; -+ u64 lbr_to[32]; -+ u64 lbr_info[32]; -+ u64 lbr_sel; -+ int tos; -+ int valid_lbrs; -+ int lbr_callstack_users; -+ int lbr_stack_state; -+ int log_id; ++ struct pmu *pmu; +}; + +struct extra_reg { @@ -18775,6 +17191,8 @@ index 0000000..bcb9d76 + u64 full_width_write: 1; + u64 pebs_baseline: 1; + u64 perf_metrics: 1; ++ u64 pebs_output_pt_available: 1; ++ u64 anythread_deprecated: 1; + }; + u64 capabilities; +}; @@ -18854,10 +17272,11 @@ index 0000000..bcb9d76 + unsigned int pebs_broken: 1; + unsigned int pebs_prec_dist: 1; + unsigned int pebs_no_tlb: 1; ++ unsigned int pebs_no_isolation: 1; + int pebs_record_size; + int pebs_buffer_size; + int max_pebs_events; -+ void (*drain_pebs)(struct pt_regs *); ++ void (*drain_pebs)(struct pt_regs *, struct perf_sample_data *); + struct event_constraint *pebs_constraints; + void (*pebs_aliases)(struct perf_event *); + long unsigned int large_pebs_flags; @@ -18865,20 +17284,42 @@ index 0000000..bcb9d76 + unsigned int lbr_tos; + unsigned int lbr_from; + unsigned int lbr_to; ++ unsigned int lbr_info; + unsigned int lbr_nr; -+ u64 lbr_sel_mask; -+ const int *lbr_sel_map; ++ union { ++ u64 lbr_sel_mask; ++ u64 lbr_ctl_mask; ++ }; ++ union { ++ const int *lbr_sel_map; ++ int *lbr_ctl_map; ++ }; + bool lbr_double_abort; + bool lbr_pt_coexist; ++ unsigned int lbr_depth_mask: 8; ++ unsigned int lbr_deep_c_reset: 1; ++ unsigned int lbr_lip: 1; ++ unsigned int lbr_cpl: 1; ++ unsigned int lbr_filter: 1; ++ unsigned int lbr_call_stack: 1; ++ unsigned int lbr_mispred: 1; ++ unsigned int lbr_timed_lbr: 1; ++ unsigned int lbr_br_type: 1; ++ void (*lbr_reset)(); ++ void (*lbr_read)(struct cpu_hw_events *); ++ void (*lbr_save)(void *); ++ void (*lbr_restore)(void *); + atomic_t lbr_exclusive[3]; + u64 (*update_topdown_event)(struct perf_event *); + int (*set_topdown_event_period)(struct perf_event *); ++ void (*swap_task_ctx)(struct perf_event_context *, struct perf_event_context *); + unsigned int amd_nb_constraints: 1; + u64 perf_ctr_pair_en; + struct extra_reg *extra_regs; + unsigned int flags; + struct perf_guest_switch_msr * (*guest_get_msrs)(int *); + int (*check_period)(struct perf_event *, u64); ++ int (*aux_output_match)(struct perf_event *); +}; + +struct sched_state { @@ -18900,11 +17341,12 @@ index 0000000..bcb9d76 + struct sched_state saved[2]; +}; + -+typedef int pao_T_____2; -+ -+typedef int pto_T_____2; -+ -+typedef unsigned int pao_T_____3; ++struct perf_msr { ++ u64 msr; ++ struct attribute_group *grp; ++ bool (*test)(int, void *); ++ bool no_check; ++}; + +struct amd_uncore { + int id; @@ -18939,6 +17381,8 @@ index 0000000..bcb9d76 + +struct pci_sriov; + ++struct rcec_ea; ++ +struct pci_dev { + struct list_head bus_list; + struct pci_bus *bus; @@ -18968,6 +17412,7 @@ index 0000000..bcb9d76 + u64 dma_mask; + struct device_dma_parameters dma_parms; + pci_power_t current_state; ++ unsigned int imm_ready: 1; + u8 pm_cap; + unsigned int pme_support: 5; + unsigned int pme_poll: 1; @@ -18984,10 +17429,12 @@ index 0000000..bcb9d76 + unsigned int ignore_hotplug: 1; + unsigned int hotplug_user_indicators: 1; + unsigned int clear_retrain_link: 1; -+ unsigned int d3_delay; ++ unsigned int d3hot_delay; + unsigned int d3cold_delay; + struct pcie_link_state *link_state; + unsigned int ltr_path: 1; ++ int l1ss; ++ unsigned int pasid_no_tlp: 1; + unsigned int eetlp_prefix_path: 1; + pci_channel_state_t error_state; + struct device dev; @@ -19021,14 +17468,16 @@ index 0000000..bcb9d76 + unsigned int is_hotplug_bridge: 1; + unsigned int shpc_managed: 1; + unsigned int is_thunderbolt: 1; -+ unsigned int __aer_firmware_first_valid: 1; -+ unsigned int __aer_firmware_first: 1; ++ unsigned int untrusted: 1; ++ unsigned int external_facing: 1; + unsigned int broken_intx_masking: 1; + unsigned int io_window_1k: 1; + unsigned int irq_managed: 1; -+ unsigned int has_secondary_link: 1; + unsigned int non_compliant_bars: 1; + unsigned int is_probed: 1; ++ unsigned int link_active_reporting: 1; ++ unsigned int no_vf_scan: 1; ++ unsigned int no_command_memory: 1; + pci_dev_flags_t dev_flags; + atomic_t enable_cnt; + u32 saved_config_space[16]; @@ -19040,42 +17489,42 @@ index 0000000..bcb9d76 + unsigned int broken_cmd_compl: 1; + const struct attribute_group **msi_irq_groups; + struct pci_vpd *vpd; ++ u16 dpc_cap; ++ unsigned int dpc_rp_extensions: 1; ++ u8 dpc_rp_log_size; + union { + struct pci_sriov *sriov; + struct pci_dev *physfn; + }; + u16 ats_cap; + u8 ats_stu; -+ atomic_t ats_ref_cnt; ++ u16 pri_cap; + u32 pri_reqs_alloc; ++ unsigned int pasid_required: 1; ++ u16 pasid_cap; + u16 pasid_features; ++ u16 acs_cap; + phys_addr_t rom; + size_t romlen; + char *driver_override; + long unsigned int priv_flags; + long unsigned int slot_being_removed_rescanned; + struct pci_dev *rpdev; -+ union { -+ struct { -+ unsigned int imm_ready: 1; -+ unsigned int link_active_reporting: 1; -+ }; -+ long unsigned int padding; -+ }; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; ++ struct rcec_ea *rcec_ea; ++ struct pci_dev *rcec; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ u64 kabi_reserved9; ++ u64 kabi_reserved10; ++ u64 kabi_reserved11; ++ u64 kabi_reserved12; ++ u64 kabi_reserved13; ++ u64 kabi_reserved14; ++ u64 kabi_reserved15; +}; + +struct pci_device_id { @@ -19131,13 +17580,13 @@ index 0000000..bcb9d76 + struct bin_attribute *legacy_io; + struct bin_attribute *legacy_mem; + unsigned int is_added: 1; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; +}; + +enum { @@ -19152,12 +17601,6 @@ index 0000000..bcb9d76 + DEVICE_COUNT_RESOURCE = 17, +}; + -+enum pci_channel_state { -+ pci_channel_io_normal = 1, -+ pci_channel_io_frozen = 2, -+ pci_channel_io_perm_failure = 3, -+}; -+ +typedef unsigned int pcie_reset_state_t; + +struct pci_dynids { @@ -19174,8 +17617,6 @@ index 0000000..bcb9d76 + int (*probe)(struct pci_dev *, const struct pci_device_id *); + void (*remove)(struct pci_dev *); + int (*suspend)(struct pci_dev *, pm_message_t); -+ int (*suspend_late)(struct pci_dev *, pm_message_t); -+ int (*resume_early)(struct pci_dev *); + int (*resume)(struct pci_dev *); + void (*shutdown)(struct pci_dev *); + int (*sriov_configure)(struct pci_dev *, int); @@ -19183,14 +17624,14 @@ index 0000000..bcb9d76 + const struct attribute_group **groups; + struct device_driver driver; + struct pci_dynids dynids; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; +}; + +struct pci_ops { @@ -19204,7 +17645,7 @@ index 0000000..bcb9d76 +typedef unsigned int pci_ers_result_t; + +struct pci_error_handlers { -+ pci_ers_result_t (*error_detected)(struct pci_dev *, enum pci_channel_state); ++ pci_ers_result_t (*error_detected)(struct pci_dev *, pci_channel_state_t); + pci_ers_result_t (*mmio_enabled)(struct pci_dev *); + pci_ers_result_t (*slot_reset)(struct pci_dev *); + void (*reset_prepare)(struct pci_dev *); @@ -19212,14 +17653,6 @@ index 0000000..bcb9d76 + void (*resume)(struct pci_dev *); +}; + -+enum pcie_bus_config_types { -+ PCIE_BUS_TUNE_OFF = 0, -+ PCIE_BUS_DEFAULT = 1, -+ PCIE_BUS_SAFE = 2, -+ PCIE_BUS_PERFORMANCE = 3, -+ PCIE_BUS_PEER2PEER = 4, -+}; -+ +struct syscore_ops { + struct list_head node; + int (*suspend)(); @@ -19250,6 +17683,8 @@ index 0000000..bcb9d76 + u64 max_period; + long unsigned int offset_mask[1]; + int offset_max; ++ unsigned int fetch_count_reset_broken: 1; ++ unsigned int fetch_ignore_if_zero_rip: 1; + struct cpu_perf_ibs *pcpu; + struct attribute **format_attrs; + struct attribute_group format_group; @@ -19293,15 +17728,15 @@ index 0000000..bcb9d76 + PERF_MSR_PTSC = 5, + PERF_MSR_IRPERF = 6, + PERF_MSR_THERM = 7, -+ PERF_MSR_THERM_SNAP = 8, -+ PERF_MSR_THERM_UNIT = 9, -+ PERF_MSR_EVENT_MAX = 10, ++ PERF_MSR_EVENT_MAX = 8, +}; + -+struct perf_msr { -+ u64 msr; -+ struct perf_pmu_events_attr *attr; -+ bool (*test)(int); ++struct x86_cpu_desc { ++ u8 x86_family; ++ u8 x86_vendor; ++ u8 x86_model; ++ u8 x86_stepping; ++ u32 x86_microcode_rev; +}; + +union cpuid10_eax { @@ -19331,14 +17766,22 @@ index 0000000..bcb9d76 + struct { + unsigned int num_counters_fixed: 5; + unsigned int bit_width_fixed: 8; -+ unsigned int reserved: 19; ++ unsigned int reserved1: 2; ++ unsigned int anythread_deprecated: 1; ++ unsigned int reserved2: 16; + } split; + unsigned int full; +}; + -+struct dev_ext_attribute { -+ struct device_attribute attr; -+ void *var; ++enum { ++ LBR_FORMAT_32 = 0, ++ LBR_FORMAT_LIP = 1, ++ LBR_FORMAT_EIP = 2, ++ LBR_FORMAT_EIP_FLAGS = 3, ++ LBR_FORMAT_EIP_FLAGS2 = 4, ++ LBR_FORMAT_INFO = 5, ++ LBR_FORMAT_TIME = 6, ++ LBR_FORMAT_MAX_KNOWN = 6, +}; + +union x86_pmu_config { @@ -19362,17 +17805,49 @@ index 0000000..bcb9d76 + u64 value; +}; + -+struct perf_output_handle { -+ struct perf_event *event; -+ struct ring_buffer *rb; -+ long unsigned int wakeup; -+ long unsigned int size; -+ u64 aux_flags; -+ union { -+ void *addr; -+ long unsigned int head; -+ }; -+ int page; ++enum pageflags { ++ PG_locked = 0, ++ PG_referenced = 1, ++ PG_uptodate = 2, ++ PG_dirty = 3, ++ PG_lru = 4, ++ PG_active = 5, ++ PG_workingset = 6, ++ PG_waiters = 7, ++ PG_error = 8, ++ PG_slab = 9, ++ PG_owner_priv_1 = 10, ++ PG_arch_1 = 11, ++ PG_reserved = 12, ++ PG_private = 13, ++ PG_private_2 = 14, ++ PG_writeback = 15, ++ PG_head = 16, ++ PG_mappedtodisk = 17, ++ PG_reclaim = 18, ++ PG_swapbacked = 19, ++ PG_unevictable = 20, ++ PG_mlocked = 21, ++ PG_uncached = 22, ++ PG_hwpoison = 23, ++ PG_young = 24, ++ PG_idle = 25, ++ PG_arch_2 = 26, ++ PG_pool = 27, ++ PG_reserve_pgflag_0 = 28, ++ PG_reserve_pgflag_1 = 29, ++ __NR_PAGEFLAGS = 30, ++ PG_checked = 10, ++ PG_swapcache = 10, ++ PG_fscache = 14, ++ PG_pinned = 10, ++ PG_savepinned = 3, ++ PG_foreign = 10, ++ PG_xen_remapped = 10, ++ PG_slob_free = 13, ++ PG_double_map = 6, ++ PG_isolated = 18, ++ PG_reported = 2, +}; + +struct bts_ctx { @@ -20424,6 +18899,12 @@ index 0000000..bcb9d76 + struct bts_phys buf[0]; +}; + ++struct lbr_entry { ++ u64 from; ++ u64 to; ++ u64 info; ++}; ++ +struct pebs_basic { + u64 format_size; + u64 ip; @@ -20463,16 +18944,6 @@ index 0000000..bcb9d76 + u64 xmm[32]; +}; + -+struct pebs_lbr_entry { -+ u64 from; -+ u64 to; -+ u64 info; -+}; -+ -+struct pebs_lbr { -+ struct pebs_lbr_entry lbr[0]; -+}; -+ +struct x86_perf_regs { + struct pt_regs regs; + u64 *xmm_regs; @@ -20510,6 +18981,7 @@ index 0000000..bcb9d76 + struct insn_field moffset2; + struct insn_field immediate2; + }; ++ int emulate_prefix_size; + insn_attr_t attr; + unsigned char opnd_bytes; + unsigned char addr_bytes; @@ -20667,6 +19139,63 @@ index 0000000..bcb9d76 + PERF_BR_MAX = 11, +}; + ++enum xfeature { ++ XFEATURE_FP = 0, ++ XFEATURE_SSE = 1, ++ XFEATURE_YMM = 2, ++ XFEATURE_BNDREGS = 3, ++ XFEATURE_BNDCSR = 4, ++ XFEATURE_OPMASK = 5, ++ XFEATURE_ZMM_Hi256 = 6, ++ XFEATURE_Hi16_ZMM = 7, ++ XFEATURE_PT_UNIMPLEMENTED_SO_FAR = 8, ++ XFEATURE_PKRU = 9, ++ XFEATURE_PASID = 10, ++ XFEATURE_RSRVD_COMP_11 = 11, ++ XFEATURE_RSRVD_COMP_12 = 12, ++ XFEATURE_RSRVD_COMP_13 = 13, ++ XFEATURE_RSRVD_COMP_14 = 14, ++ XFEATURE_LBR = 15, ++ XFEATURE_MAX = 16, ++}; ++ ++struct arch_lbr_state { ++ u64 lbr_ctl; ++ u64 lbr_depth; ++ u64 ler_from; ++ u64 ler_to; ++ u64 ler_info; ++ struct lbr_entry entries[0]; ++}; ++ ++union cpuid28_eax { ++ struct { ++ unsigned int lbr_depth_mask: 8; ++ unsigned int reserved: 22; ++ unsigned int lbr_deep_c_reset: 1; ++ unsigned int lbr_lip: 1; ++ } split; ++ unsigned int full; ++}; ++ ++union cpuid28_ebx { ++ struct { ++ unsigned int lbr_cpl: 1; ++ unsigned int lbr_filter: 1; ++ unsigned int lbr_call_stack: 1; ++ } split; ++ unsigned int full; ++}; ++ ++union cpuid28_ecx { ++ struct { ++ unsigned int lbr_mispred: 1; ++ unsigned int lbr_timed_lbr: 1; ++ unsigned int lbr_br_type: 1; ++ } split; ++ unsigned int full; ++}; ++ +struct x86_pmu_lbr { + unsigned int nr; + unsigned int from; @@ -20674,15 +19203,45 @@ index 0000000..bcb9d76 + unsigned int info; +}; + -+enum { -+ LBR_FORMAT_32 = 0, -+ LBR_FORMAT_LIP = 1, -+ LBR_FORMAT_EIP = 2, -+ LBR_FORMAT_EIP_FLAGS = 3, -+ LBR_FORMAT_EIP_FLAGS2 = 4, -+ LBR_FORMAT_INFO = 5, -+ LBR_FORMAT_TIME = 6, -+ LBR_FORMAT_MAX_KNOWN = 6, ++struct x86_perf_task_context_opt { ++ int lbr_callstack_users; ++ int lbr_stack_state; ++ int log_id; ++}; ++ ++struct x86_perf_task_context { ++ u64 lbr_sel; ++ int tos; ++ int valid_lbrs; ++ struct x86_perf_task_context_opt opt; ++ struct lbr_entry lbr[32]; ++}; ++ ++struct x86_perf_task_context_arch_lbr { ++ struct x86_perf_task_context_opt opt; ++ struct lbr_entry entries[0]; ++}; ++ ++struct x86_perf_task_context_arch_lbr_xsave { ++ struct x86_perf_task_context_opt opt; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ union { ++ struct xregs_state xsave; ++ struct { ++ struct fxregs_state i387; ++ struct xstate_header header; ++ struct arch_lbr_state lbr; ++ long: 64; ++ long: 64; ++ long: 64; ++ }; ++ }; +}; + +enum { @@ -20713,6 +19272,17 @@ index 0000000..bcb9d76 + LBR_VALID = 1, +}; + ++enum { ++ ARCH_LBR_BR_TYPE_JCC = 0, ++ ARCH_LBR_BR_TYPE_NEAR_IND_JMP = 1, ++ ARCH_LBR_BR_TYPE_NEAR_REL_JMP = 2, ++ ARCH_LBR_BR_TYPE_NEAR_IND_CALL = 3, ++ ARCH_LBR_BR_TYPE_NEAR_REL_CALL = 4, ++ ARCH_LBR_BR_TYPE_NEAR_RET = 5, ++ ARCH_LBR_BR_TYPE_KNOWN_MAX = 5, ++ ARCH_LBR_BR_TYPE_MAP_MAX = 16, ++}; ++ +enum P4_EVENTS { + P4_EVENT_TC_DELIVER_MODE = 0, + P4_EVENT_BPU_FETCH_REQUEST = 1, @@ -20999,6 +19569,30 @@ index 0000000..bcb9d76 + CPUID_EDX = 3, +}; + ++struct dev_ext_attribute { ++ struct device_attribute attr; ++ void *var; ++}; ++ ++enum pt_capabilities { ++ PT_CAP_max_subleaf = 0, ++ PT_CAP_cr3_filtering = 1, ++ PT_CAP_psb_cyc = 2, ++ PT_CAP_ip_filtering = 3, ++ PT_CAP_mtc = 4, ++ PT_CAP_ptwrite = 5, ++ PT_CAP_power_event_trace = 6, ++ PT_CAP_topa_output = 7, ++ PT_CAP_topa_multiple_entries = 8, ++ PT_CAP_single_range_output = 9, ++ PT_CAP_output_subsys = 10, ++ PT_CAP_payloads_lip = 11, ++ PT_CAP_num_address_ranges = 12, ++ PT_CAP_mtc_periods = 13, ++ PT_CAP_cycle_thresholds = 14, ++ PT_CAP_psb_periods = 15, ++}; ++ +enum perf_addr_filter_action_t { + PERF_ADDR_FILTER_ACTION_STOP = 0, + PERF_ADDR_FILTER_ACTION_START = 1, @@ -21026,24 +19620,6 @@ index 0000000..bcb9d76 + u64 rsvd4: 16; +}; + -+enum pt_capabilities { -+ PT_CAP_max_subleaf = 0, -+ PT_CAP_cr3_filtering = 1, -+ PT_CAP_psb_cyc = 2, -+ PT_CAP_ip_filtering = 3, -+ PT_CAP_mtc = 4, -+ PT_CAP_ptwrite = 5, -+ PT_CAP_power_event_trace = 6, -+ PT_CAP_topa_output = 7, -+ PT_CAP_topa_multiple_entries = 8, -+ PT_CAP_single_range_output = 9, -+ PT_CAP_payloads_lip = 10, -+ PT_CAP_num_address_ranges = 11, -+ PT_CAP_mtc_periods = 12, -+ PT_CAP_cycle_thresholds = 13, -+ PT_CAP_psb_periods = 14, -+}; -+ +struct pt_pmu { + struct pmu pmu; + u32 caps[8]; @@ -21057,7 +19633,6 @@ index 0000000..bcb9d76 +struct topa; + +struct pt_buffer { -+ int cpu; + struct list_head tables; + struct topa *first; + struct topa *last; @@ -21068,19 +19643,20 @@ index 0000000..bcb9d76 + local_t data_size; + local64_t head; + bool snapshot; -+ long unsigned int stop_pos; -+ long unsigned int intr_pos; ++ bool single; ++ long int stop_pos; ++ long int intr_pos; ++ struct topa_entry *stop_te; ++ struct topa_entry *intr_te; + void **data_pages; -+ struct topa_entry *topa_index[0]; +}; + +struct topa { -+ struct topa_entry table[506]; + struct list_head list; -+ u64 phys; + u64 offset; + size_t size; + int last; ++ unsigned int z_count; +}; + +struct pt_filter { @@ -21099,6 +19675,8 @@ index 0000000..bcb9d76 + struct pt_filters filters; + int handle_nmi; + int vmx_on; ++ u64 output_base; ++ u64 output_mask; +}; + +struct pt_cap_desc { @@ -21114,28 +19692,38 @@ index 0000000..bcb9d76 + unsigned int reg_off; +}; + -+typedef void (*exitcall_t)(); ++struct topa_page { ++ struct topa_entry table[507]; ++ struct topa topa; ++}; + +struct x86_cpu_id { + __u16 vendor; + __u16 family; + __u16 model; ++ __u16 steppings; + __u16 feature; + kernel_ulong_t driver_data; -+ __u16 steppings; +}; + ++typedef void (*exitcall_t)(); ++ +enum hrtimer_mode { + HRTIMER_MODE_ABS = 0, + HRTIMER_MODE_REL = 1, + HRTIMER_MODE_PINNED = 2, + HRTIMER_MODE_SOFT = 4, ++ HRTIMER_MODE_HARD = 8, + HRTIMER_MODE_ABS_PINNED = 2, + HRTIMER_MODE_REL_PINNED = 3, + HRTIMER_MODE_ABS_SOFT = 4, + HRTIMER_MODE_REL_SOFT = 5, + HRTIMER_MODE_ABS_PINNED_SOFT = 6, + HRTIMER_MODE_REL_PINNED_SOFT = 7, ++ HRTIMER_MODE_ABS_HARD = 8, ++ HRTIMER_MODE_REL_HARD = 9, ++ HRTIMER_MODE_ABS_PINNED_HARD = 10, ++ HRTIMER_MODE_REL_PINNED_HARD = 11, +}; + +struct zhaoxin_uncore_pmu; @@ -21198,7 +19786,7 @@ index 0000000..bcb9d76 +}; + +struct uncore_event_desc { -+ struct kobj_attribute attr; ++ struct device_attribute attr; + const char *config; +}; + @@ -21239,6 +19827,21 @@ index 0000000..bcb9d76 + +typedef s8 int8_t; + ++typedef u8 uint8_t; ++ ++typedef u64 uint64_t; ++ ++struct atomic_notifier_head { ++ spinlock_t lock; ++ struct notifier_block *head; ++}; ++ ++enum xen_domain_type { ++ XEN_NATIVE = 0, ++ XEN_PV_DOMAIN = 1, ++ XEN_HVM_DOMAIN = 2, ++}; ++ +typedef long unsigned int xen_pfn_t; + +typedef long unsigned int xen_ulong_t; @@ -21306,11 +19909,6 @@ index 0000000..bcb9d76 + long unsigned int nr_p2m_frames; +}; + -+struct xen_memory_region { -+ long unsigned int start_pfn; -+ long unsigned int n_pfns; -+}; -+ +struct sched_shutdown { + unsigned int reason; +}; @@ -21325,74 +19923,6 @@ index 0000000..bcb9d76 + uint32_t rsvd; +}; + -+enum xen_mc_flush_reason { -+ XEN_MC_FL_NONE = 0, -+ XEN_MC_FL_BATCH = 1, -+ XEN_MC_FL_ARGS = 2, -+ XEN_MC_FL_CALLBACK = 3, -+}; -+ -+enum xen_mc_extend_args { -+ XEN_MC_XE_OK = 0, -+ XEN_MC_XE_BAD_OP = 1, -+ XEN_MC_XE_NO_SPACE = 2, -+}; -+ -+typedef void (*xen_mc_callback_fn_t)(void *); -+ -+typedef long int xen_long_t; -+ -+struct multicall_entry { -+ xen_ulong_t op; -+ xen_long_t result; -+ xen_ulong_t args[6]; -+}; -+ -+struct multicall_space { -+ struct multicall_entry *mc; -+ void *args; -+}; -+ -+struct callback { -+ void (*fn)(void *); -+ void *data; -+}; -+ -+struct mc_buffer { -+ unsigned int mcidx; -+ unsigned int argidx; -+ unsigned int cbidx; -+ struct multicall_entry entries[32]; -+ unsigned char args[512]; -+ struct callback callbacks[32]; -+}; -+ -+enum paravirt_lazy_mode { -+ PARAVIRT_LAZY_NONE = 0, -+ PARAVIRT_LAZY_MMU = 1, -+ PARAVIRT_LAZY_CPU = 2, -+}; -+ -+struct mmuext_op { -+ unsigned int cmd; -+ union { -+ xen_pfn_t mfn; -+ long unsigned int linear_addr; -+ } arg1; -+ union { -+ unsigned int nr_ents; -+ void *vcpumask; -+ xen_pfn_t src_mfn; -+ } arg2; -+}; -+ -+typedef uint16_t domid_t; -+ -+struct mmu_update { -+ uint64_t ptr; -+ uint64_t val; -+}; -+ +struct xmaddr { + phys_addr_t maddr; +}; @@ -21405,16 +19935,6 @@ index 0000000..bcb9d76 + +typedef struct xpaddr xpaddr_t; + -+struct remap_data { -+ xen_pfn_t *pfn; -+ bool contiguous; -+ bool no_translate; -+ pgprot_t prot; -+ struct mmu_update *mmu_update; -+}; -+ -+typedef long unsigned int irq_hw_number_t; -+ +enum irqreturn { + IRQ_NONE = 0, + IRQ_HANDLED = 1, @@ -21423,6 +19943,33 @@ index 0000000..bcb9d76 + +typedef enum irqreturn irqreturn_t; + ++struct clocksource { ++ u64 (*read)(struct clocksource *); ++ u64 mask; ++ u32 mult; ++ u32 shift; ++ u64 max_idle_ns; ++ u32 maxadj; ++ u64 max_cycles; ++ const char *name; ++ struct list_head list; ++ int rating; ++ enum vdso_clock_mode vdso_clock_mode; ++ u16 vdso_fix; ++ u16 vdso_shift; ++ long unsigned int flags; ++ int (*enable)(struct clocksource *); ++ void (*disable)(struct clocksource *); ++ void (*suspend)(struct clocksource *); ++ void (*resume)(struct clocksource *); ++ void (*mark_unstable)(struct clocksource *); ++ void (*tick_stable)(struct clocksource *); ++ struct list_head wd_list; ++ u64 cs_last; ++ u64 wd_last; ++ struct module *owner; ++}; ++ +typedef irqreturn_t (*irq_handler_t)(int, void *); + +struct irqaction { @@ -21453,6 +20000,11 @@ index 0000000..bcb9d76 + void (*release)(struct kref *); +}; + ++struct irq_affinity_desc { ++ struct cpumask mask; ++ unsigned int is_managed: 1; ++}; ++ +enum irqchip_irq_state { + IRQCHIP_STATE_PENDING = 0, + IRQCHIP_STATE_ACTIVE = 1, @@ -21460,273 +20012,83 @@ index 0000000..bcb9d76 + IRQCHIP_STATE_LINE_LEVEL = 3, +}; + -+struct irq_desc; -+ -+typedef void (*irq_flow_handler_t)(struct irq_desc *); -+ -+struct msi_desc; -+ -+struct irq_common_data { -+ unsigned int state_use_accessors; -+ unsigned int node; -+ void *handler_data; -+ struct msi_desc *msi_desc; -+ cpumask_var_t affinity; -+ cpumask_var_t effective_affinity; ++struct x86_init_mpparse { ++ void (*setup_ioapic_ids)(); ++ void (*find_smp_config)(); ++ void (*get_smp_config)(unsigned int); +}; + -+struct irq_chip; -+ -+struct irq_data { -+ u32 mask; -+ unsigned int irq; -+ long unsigned int hwirq; -+ struct irq_common_data *common; -+ struct irq_chip *chip; -+ struct irq_domain *domain; -+ struct irq_data *parent_data; -+ void *chip_data; ++struct x86_init_resources { ++ void (*probe_roms)(); ++ void (*reserve_resources)(); ++ char * (*memory_setup)(); +}; + -+struct irq_desc { -+ struct irq_common_data irq_common_data; -+ struct irq_data irq_data; -+ unsigned int *kstat_irqs; -+ irq_flow_handler_t handle_irq; -+ struct irqaction *action; -+ unsigned int status_use_accessors; -+ unsigned int core_internal_state__do_not_mess_with_it; -+ unsigned int depth; -+ unsigned int wake_depth; -+ unsigned int tot_count; -+ unsigned int irq_count; -+ long unsigned int last_unhandled; -+ unsigned int irqs_unhandled; -+ atomic_t threads_handled; -+ int threads_handled_last; -+ raw_spinlock_t lock; -+ struct cpumask *percpu_enabled; -+ const struct cpumask *percpu_affinity; -+ const struct cpumask *affinity_hint; -+ struct irq_affinity_notify *affinity_notify; -+ cpumask_var_t pending_mask; -+ long unsigned int threads_oneshot; -+ atomic_t threads_active; -+ wait_queue_head_t wait_for_threads; -+ unsigned int nr_actions; -+ unsigned int no_suspend_depth; -+ unsigned int cond_suspend_depth; -+ unsigned int force_resume_depth; -+ struct proc_dir_entry *dir; -+ struct callback_head rcu; -+ struct kobject kobj; -+ struct mutex request_mutex; -+ int parent_irq; -+ struct module *owner; -+ const char *name; -+ long: 64; ++struct x86_init_irqs { ++ void (*pre_vector_init)(); ++ void (*intr_init)(); ++ void (*intr_mode_select)(); ++ void (*intr_mode_init)(); ++ struct irq_domain * (*create_pci_msi_domain)(); +}; + -+struct msi_msg { -+ u32 address_lo; -+ u32 address_hi; -+ u32 data; ++struct x86_init_oem { ++ void (*arch_setup)(); ++ void (*banner)(); +}; + -+struct platform_msi_priv_data; -+ -+struct platform_msi_desc { -+ struct platform_msi_priv_data *msi_priv_data; -+ u16 msi_index; ++struct x86_init_paging { ++ void (*pagetable_init)(); +}; + -+struct fsl_mc_msi_desc { -+ u16 msi_index; ++struct x86_init_timers { ++ void (*setup_percpu_clockev)(); ++ void (*timer_init)(); ++ void (*wallclock_init)(); +}; + -+struct msi_desc { -+ struct list_head list; -+ unsigned int irq; -+ unsigned int nvec_used; -+ struct device *dev; -+ struct msi_msg msg; -+ struct cpumask *affinity; -+ union { -+ struct { -+ u32 masked; -+ struct { -+ __u8 is_msix: 1; -+ __u8 multiple: 3; -+ __u8 multi_cap: 3; -+ __u8 maskbit: 1; -+ __u8 is_64: 1; -+ __u16 entry_nr; -+ unsigned int default_irq; -+ } msi_attrib; -+ union { -+ u8 mask_pos; -+ void *mask_base; -+ }; -+ }; -+ struct platform_msi_desc platform; -+ struct fsl_mc_msi_desc fsl_mc; -+ }; ++struct x86_init_iommu { ++ int (*iommu_init)(); +}; + -+struct irq_chip { -+ struct device *parent_device; -+ const char *name; -+ unsigned int (*irq_startup)(struct irq_data *); -+ void (*irq_shutdown)(struct irq_data *); -+ void (*irq_enable)(struct irq_data *); -+ void (*irq_disable)(struct irq_data *); -+ void (*irq_ack)(struct irq_data *); -+ void (*irq_mask)(struct irq_data *); -+ void (*irq_mask_ack)(struct irq_data *); -+ void (*irq_unmask)(struct irq_data *); -+ void (*irq_eoi)(struct irq_data *); -+ int (*irq_set_affinity)(struct irq_data *, const struct cpumask *, bool); -+ int (*irq_retrigger)(struct irq_data *); -+ int (*irq_set_type)(struct irq_data *, unsigned int); -+ int (*irq_set_wake)(struct irq_data *, unsigned int); -+ void (*irq_bus_lock)(struct irq_data *); -+ void (*irq_bus_sync_unlock)(struct irq_data *); -+ void (*irq_cpu_online)(struct irq_data *); -+ void (*irq_cpu_offline)(struct irq_data *); -+ void (*irq_suspend)(struct irq_data *); -+ void (*irq_resume)(struct irq_data *); -+ void (*irq_pm_shutdown)(struct irq_data *); -+ void (*irq_calc_mask)(struct irq_data *); -+ void (*irq_print_chip)(struct irq_data *, struct seq_file *); -+ int (*irq_request_resources)(struct irq_data *); -+ void (*irq_release_resources)(struct irq_data *); -+ void (*irq_compose_msi_msg)(struct irq_data *, struct msi_msg *); -+ void (*irq_write_msi_msg)(struct irq_data *, struct msi_msg *); -+ int (*irq_get_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool *); -+ int (*irq_set_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool); -+ int (*irq_set_vcpu_affinity)(struct irq_data *, void *); -+ void (*ipi_send_single)(struct irq_data *, unsigned int); -+ void (*ipi_send_mask)(struct irq_data *, const struct cpumask *); -+ int (*irq_nmi_setup)(struct irq_data *); -+ void (*irq_nmi_teardown)(struct irq_data *); -+ long unsigned int flags; ++struct x86_init_pci { ++ int (*arch_init)(); ++ int (*init)(); ++ void (*init_irq)(); ++ void (*fixup_irqs)(); +}; + -+enum irq_domain_bus_token { -+ DOMAIN_BUS_ANY = 0, -+ DOMAIN_BUS_WIRED = 1, -+ DOMAIN_BUS_PCI_MSI = 2, -+ DOMAIN_BUS_PLATFORM_MSI = 3, -+ DOMAIN_BUS_NEXUS = 4, -+ DOMAIN_BUS_IPI = 5, -+ DOMAIN_BUS_FSL_MC_MSI = 6, ++struct x86_hyper_init { ++ void (*init_platform)(); ++ void (*guest_late_init)(); ++ bool (*x2apic_available)(); ++ void (*init_mem_mapping)(); ++ void (*init_after_bootmem)(); +}; + -+struct irq_domain_ops; -+ -+struct irq_domain_chip_generic; -+ -+struct irq_domain { -+ struct list_head link; -+ const char *name; -+ const struct irq_domain_ops *ops; -+ void *host_data; -+ unsigned int flags; -+ unsigned int mapcount; -+ struct fwnode_handle *fwnode; -+ enum irq_domain_bus_token bus_token; -+ struct irq_domain_chip_generic *gc; -+ struct irq_domain *parent; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ irq_hw_number_t hwirq_max; -+ unsigned int revmap_direct_max_irq; -+ unsigned int revmap_size; -+ struct radix_tree_root revmap_tree; -+ struct mutex revmap_tree_mutex; -+ unsigned int linear_revmap[0]; ++struct x86_init_acpi { ++ void (*set_root_pointer)(u64); ++ u64 (*get_root_pointer)(); ++ void (*reduced_hw_early_init)(); +}; + -+typedef struct irq_desc *vector_irq_t[256]; -+ -+struct irq_chip_regs { -+ long unsigned int enable; -+ long unsigned int disable; -+ long unsigned int mask; -+ long unsigned int ack; -+ long unsigned int eoi; -+ long unsigned int type; -+ long unsigned int polarity; ++struct x86_init_ops { ++ struct x86_init_resources resources; ++ struct x86_init_mpparse mpparse; ++ struct x86_init_irqs irqs; ++ struct x86_init_oem oem; ++ struct x86_init_paging paging; ++ struct x86_init_timers timers; ++ struct x86_init_iommu iommu; ++ struct x86_init_pci pci; ++ struct x86_hyper_init hyper; ++ struct x86_init_acpi acpi; +}; + -+struct irq_chip_type { -+ struct irq_chip chip; -+ struct irq_chip_regs regs; -+ irq_flow_handler_t handler; -+ u32 type; -+ u32 mask_cache_priv; -+ u32 *mask_cache; -+}; -+ -+struct irq_chip_generic { -+ raw_spinlock_t lock; -+ void *reg_base; -+ u32 (*reg_readl)(void *); -+ void (*reg_writel)(u32, void *); -+ void (*suspend)(struct irq_chip_generic *); -+ void (*resume)(struct irq_chip_generic *); -+ unsigned int irq_base; -+ unsigned int irq_cnt; -+ u32 mask_cache; -+ u32 type_cache; -+ u32 polarity_cache; -+ u32 wake_enabled; -+ u32 wake_active; -+ unsigned int num_ct; -+ void *private; -+ long unsigned int installed; -+ long unsigned int unused; -+ struct irq_domain *domain; -+ struct list_head list; -+ struct irq_chip_type chip_types[0]; -+}; -+ -+enum irq_gc_flags { -+ IRQ_GC_INIT_MASK_CACHE = 1, -+ IRQ_GC_INIT_NESTED_LOCK = 2, -+ IRQ_GC_MASK_CACHE_PER_TYPE = 4, -+ IRQ_GC_NO_MASK = 8, -+ IRQ_GC_BE_IO = 16, -+}; -+ -+struct irq_domain_chip_generic { -+ unsigned int irqs_per_chip; -+ unsigned int num_chips; -+ unsigned int irq_flags_to_clear; -+ unsigned int irq_flags_to_set; -+ enum irq_gc_flags gc_flags; -+ struct irq_chip_generic *gc[0]; -+}; -+ -+struct irq_fwspec { -+ struct fwnode_handle *fwnode; -+ int param_count; -+ u32 param[16]; -+}; -+ -+struct irq_domain_ops { -+ int (*match)(struct irq_domain *, struct device_node *, enum irq_domain_bus_token); -+ int (*select)(struct irq_domain *, struct irq_fwspec *, enum irq_domain_bus_token); -+ int (*map)(struct irq_domain *, unsigned int, irq_hw_number_t); -+ void (*unmap)(struct irq_domain *, unsigned int); -+ int (*xlate)(struct irq_domain *, struct device_node *, const u32 *, unsigned int, long unsigned int *, unsigned int *); -+ int (*alloc)(struct irq_domain *, unsigned int, unsigned int, void *); -+ void (*free)(struct irq_domain *, unsigned int, unsigned int); -+ int (*activate)(struct irq_domain *, struct irq_data *, bool); -+ void (*deactivate)(struct irq_domain *, struct irq_data *); -+ int (*translate)(struct irq_domain *, struct irq_fwspec *, long unsigned int *, unsigned int *); ++struct x86_cpuinit_ops { ++ void (*setup_percpu_clockev)(); ++ void (*early_percpu_clock_init)(); ++ void (*fixup_cpu_id)(struct cpuinfo_x86 *, int); +}; + +enum clock_event_state { @@ -21784,6 +20146,238 @@ index 0000000..bcb9d76 + int8_t pad1[3]; +}; + ++struct irq_desc; ++ ++typedef void (*irq_flow_handler_t)(struct irq_desc *); ++ ++struct msi_desc; ++ ++struct irq_common_data { ++ unsigned int state_use_accessors; ++ unsigned int node; ++ void *handler_data; ++ struct msi_desc *msi_desc; ++ cpumask_var_t affinity; ++ cpumask_var_t effective_affinity; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct irq_chip; ++ ++struct irq_data { ++ u32 mask; ++ unsigned int irq; ++ long unsigned int hwirq; ++ struct irq_common_data *common; ++ struct irq_chip *chip; ++ struct irq_domain *domain; ++ struct irq_data *parent_data; ++ void *chip_data; ++}; ++ ++struct irq_desc { ++ struct irq_common_data irq_common_data; ++ struct irq_data irq_data; ++ unsigned int *kstat_irqs; ++ irq_flow_handler_t handle_irq; ++ struct irqaction *action; ++ unsigned int status_use_accessors; ++ unsigned int core_internal_state__do_not_mess_with_it; ++ unsigned int depth; ++ unsigned int wake_depth; ++ unsigned int tot_count; ++ unsigned int irq_count; ++ long unsigned int last_unhandled; ++ unsigned int irqs_unhandled; ++ atomic_t threads_handled; ++ int threads_handled_last; ++ raw_spinlock_t lock; ++ struct cpumask *percpu_enabled; ++ const struct cpumask *percpu_affinity; ++ const struct cpumask *affinity_hint; ++ struct irq_affinity_notify *affinity_notify; ++ cpumask_var_t pending_mask; ++ long unsigned int threads_oneshot; ++ atomic_t threads_active; ++ wait_queue_head_t wait_for_threads; ++ unsigned int nr_actions; ++ unsigned int no_suspend_depth; ++ unsigned int cond_suspend_depth; ++ unsigned int force_resume_depth; ++ struct proc_dir_entry *dir; ++ struct callback_head rcu; ++ struct kobject kobj; ++ struct mutex request_mutex; ++ int parent_irq; ++ struct module *owner; ++ const char *name; ++ u64 kabi_reserved1; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct msi_msg { ++ u32 address_lo; ++ u32 address_hi; ++ u32 data; ++}; ++ ++struct platform_msi_priv_data; ++ ++struct platform_msi_desc { ++ struct platform_msi_priv_data *msi_priv_data; ++ u16 msi_index; ++}; ++ ++struct fsl_mc_msi_desc { ++ u16 msi_index; ++}; ++ ++struct ti_sci_inta_msi_desc { ++ u16 dev_index; ++}; ++ ++struct msi_desc { ++ struct list_head list; ++ unsigned int irq; ++ unsigned int nvec_used; ++ struct device *dev; ++ struct msi_msg msg; ++ struct irq_affinity_desc *affinity; ++ const void *iommu_cookie; ++ void (*write_msi_msg)(struct msi_desc *, void *); ++ void *write_msi_msg_data; ++ union { ++ struct { ++ u32 masked; ++ struct { ++ u8 is_msix: 1; ++ u8 multiple: 3; ++ u8 multi_cap: 3; ++ u8 maskbit: 1; ++ u8 is_64: 1; ++ u8 is_virtual: 1; ++ u16 entry_nr; ++ unsigned int default_irq; ++ } msi_attrib; ++ union { ++ u8 mask_pos; ++ void *mask_base; ++ }; ++ }; ++ struct platform_msi_desc platform; ++ struct fsl_mc_msi_desc fsl_mc; ++ struct ti_sci_inta_msi_desc inta; ++ }; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct irq_chip { ++ struct device *parent_device; ++ const char *name; ++ unsigned int (*irq_startup)(struct irq_data *); ++ void (*irq_shutdown)(struct irq_data *); ++ void (*irq_enable)(struct irq_data *); ++ void (*irq_disable)(struct irq_data *); ++ void (*irq_ack)(struct irq_data *); ++ void (*irq_mask)(struct irq_data *); ++ void (*irq_mask_ack)(struct irq_data *); ++ void (*irq_unmask)(struct irq_data *); ++ void (*irq_eoi)(struct irq_data *); ++ int (*irq_set_affinity)(struct irq_data *, const struct cpumask *, bool); ++ int (*irq_retrigger)(struct irq_data *); ++ int (*irq_set_type)(struct irq_data *, unsigned int); ++ int (*irq_set_wake)(struct irq_data *, unsigned int); ++ void (*irq_bus_lock)(struct irq_data *); ++ void (*irq_bus_sync_unlock)(struct irq_data *); ++ void (*irq_cpu_online)(struct irq_data *); ++ void (*irq_cpu_offline)(struct irq_data *); ++ void (*irq_suspend)(struct irq_data *); ++ void (*irq_resume)(struct irq_data *); ++ void (*irq_pm_shutdown)(struct irq_data *); ++ void (*irq_calc_mask)(struct irq_data *); ++ void (*irq_print_chip)(struct irq_data *, struct seq_file *); ++ int (*irq_request_resources)(struct irq_data *); ++ void (*irq_release_resources)(struct irq_data *); ++ void (*irq_compose_msi_msg)(struct irq_data *, struct msi_msg *); ++ void (*irq_write_msi_msg)(struct irq_data *, struct msi_msg *); ++ int (*irq_get_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool *); ++ int (*irq_set_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool); ++ int (*irq_set_vcpu_affinity)(struct irq_data *, void *); ++ void (*ipi_send_single)(struct irq_data *, unsigned int); ++ void (*ipi_send_mask)(struct irq_data *, const struct cpumask *); ++ int (*irq_nmi_setup)(struct irq_data *); ++ void (*irq_nmi_teardown)(struct irq_data *); ++ long unsigned int flags; ++ u64 kabi_reserved1; ++}; ++ ++struct irq_chip_regs { ++ long unsigned int enable; ++ long unsigned int disable; ++ long unsigned int mask; ++ long unsigned int ack; ++ long unsigned int eoi; ++ long unsigned int type; ++ long unsigned int polarity; ++}; ++ ++struct irq_chip_type { ++ struct irq_chip chip; ++ struct irq_chip_regs regs; ++ irq_flow_handler_t handler; ++ u32 type; ++ u32 mask_cache_priv; ++ u32 *mask_cache; ++ u64 kabi_reserved1; ++}; ++ ++struct irq_chip_generic { ++ raw_spinlock_t lock; ++ void *reg_base; ++ u32 (*reg_readl)(void *); ++ void (*reg_writel)(u32, void *); ++ void (*suspend)(struct irq_chip_generic *); ++ void (*resume)(struct irq_chip_generic *); ++ unsigned int irq_base; ++ unsigned int irq_cnt; ++ u32 mask_cache; ++ u32 type_cache; ++ u32 polarity_cache; ++ u32 wake_enabled; ++ u32 wake_active; ++ unsigned int num_ct; ++ void *private; ++ long unsigned int installed; ++ long unsigned int unused; ++ struct irq_domain *domain; ++ struct list_head list; ++ struct irq_chip_type chip_types[0]; ++}; ++ ++enum irq_gc_flags { ++ IRQ_GC_INIT_MASK_CACHE = 1, ++ IRQ_GC_INIT_NESTED_LOCK = 2, ++ IRQ_GC_MASK_CACHE_PER_TYPE = 4, ++ IRQ_GC_NO_MASK = 8, ++ IRQ_GC_BE_IO = 16, ++}; ++ ++struct irq_domain_chip_generic { ++ unsigned int irqs_per_chip; ++ unsigned int num_chips; ++ unsigned int irq_flags_to_clear; ++ unsigned int irq_flags_to_set; ++ enum irq_gc_flags gc_flags; ++ struct irq_chip_generic *gc[0]; ++}; ++ +struct vcpu_set_singleshot_timer { + uint64_t timeout_abs_ns; + uint32_t flags; @@ -21810,26 +20404,25 @@ index 0000000..bcb9d76 + long: 64; +}; + -+typedef uint16_t grant_status_t; ++typedef u16 uint16_t; + -+struct grant_frames { -+ xen_pfn_t *pfn; -+ unsigned int count; -+ void *vaddr; -+}; ++typedef uint16_t grant_status_t; + +struct gnttab_vm_area { + struct vm_struct *area; + pte_t **ptes; ++ int idx; +}; + -+typedef u64 pto_T_____3; ++struct pv_info { ++ const char *name; ++}; + -+struct vcpu_info___2; ++struct irq_stack { ++ char stack[16384]; ++}; + -+struct start_info___2; -+ -+struct shared_info___2; ++typedef uint16_t domid_t; + +struct xen_add_to_physmap { + domid_t domid; @@ -21848,6 +20441,15 @@ index 0000000..bcb9d76 + void (*emergency_restart)(); +}; + ++struct irqentry_state { ++ union { ++ bool exit_rcu; ++ bool lockdep; ++ }; ++}; ++ ++typedef struct irqentry_state irqentry_state_t; ++ +enum x86_hypervisor_type { + X86_HYPER_NATIVE = 0, + X86_HYPER_VMWARE = 1, @@ -21856,6 +20458,7 @@ index 0000000..bcb9d76 + X86_HYPER_XEN_HVM = 4, + X86_HYPER_KVM = 5, + X86_HYPER_JAILHOUSE = 6, ++ X86_HYPER_ACRN = 7, +}; + +struct hypervisor_x86 { @@ -21864,9 +20467,20 @@ index 0000000..bcb9d76 + enum x86_hypervisor_type type; + struct x86_hyper_init init; + struct x86_hyper_runtime runtime; ++ bool ignore_nopv; +}; + -+typedef uint32_t pto_T_____4; ++enum e820_type { ++ E820_TYPE_RAM = 1, ++ E820_TYPE_RESERVED = 2, ++ E820_TYPE_ACPI = 3, ++ E820_TYPE_NVS = 4, ++ E820_TYPE_UNUSABLE = 5, ++ E820_TYPE_PMEM = 7, ++ E820_TYPE_PRAM = 12, ++ E820_TYPE_SOFT_RESERVED = 4026531839, ++ E820_TYPE_RESERVED_KERN = 128, ++}; + +struct xen_hvm_pagetable_dying { + domid_t domid; @@ -21886,6 +20500,35 @@ index 0000000..bcb9d76 + uint64_t pfn; +}; + ++enum paravirt_lazy_mode { ++ PARAVIRT_LAZY_NONE = 0, ++ PARAVIRT_LAZY_MMU = 1, ++ PARAVIRT_LAZY_CPU = 2, ++}; ++ ++typedef long int xen_long_t; ++ ++struct multicall_entry { ++ xen_ulong_t op; ++ xen_long_t result; ++ xen_ulong_t args[6]; ++}; ++ ++enum xen_mc_flush_reason { ++ XEN_MC_FL_NONE = 0, ++ XEN_MC_FL_BATCH = 1, ++ XEN_MC_FL_ARGS = 2, ++ XEN_MC_FL_CALLBACK = 3, ++}; ++ ++enum xen_mc_extend_args { ++ XEN_MC_XE_OK = 0, ++ XEN_MC_XE_BAD_OP = 1, ++ XEN_MC_XE_NO_SPACE = 2, ++}; ++ ++typedef void (*xen_mc_callback_fn_t)(void *); ++ +struct trace_event_raw_xen_mc__batch { + struct trace_entry ent; + enum paravirt_lazy_mode mode; @@ -21942,15 +20585,6 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_raw_xen_mmu_set_pte_at { -+ struct trace_entry ent; -+ struct mm_struct *mm; -+ long unsigned int addr; -+ pte_t *ptep; -+ pteval_t pteval; -+ char __data[0]; -+}; -+ +struct trace_event_raw_xen_mmu_set_pmd { + struct trace_entry ent; + pmd_t *pmdp; @@ -22012,7 +20646,7 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_raw_xen_mmu_flush_tlb_others { ++struct trace_event_raw_xen_mmu_flush_tlb_multi { + struct trace_entry ent; + unsigned int ncpus; + struct mm_struct *mm; @@ -22081,8 +20715,6 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_xen_mmu__set_pte {}; + -+struct trace_event_data_offsets_xen_mmu_set_pte_at {}; -+ +struct trace_event_data_offsets_xen_mmu_set_pmd {}; + +struct trace_event_data_offsets_xen_mmu_set_pud {}; @@ -22099,7 +20731,7 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_xen_mmu_flush_tlb_one_user {}; + -+struct trace_event_data_offsets_xen_mmu_flush_tlb_others {}; ++struct trace_event_data_offsets_xen_mmu_flush_tlb_multi {}; + +struct trace_event_data_offsets_xen_mmu_write_cr3 {}; + @@ -22113,6 +20745,58 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_xen_cpu_set_ldt {}; + ++typedef void (*btf_trace_xen_mc_batch)(void *, enum paravirt_lazy_mode); ++ ++typedef void (*btf_trace_xen_mc_issue)(void *, enum paravirt_lazy_mode); ++ ++typedef void (*btf_trace_xen_mc_entry)(void *, struct multicall_entry *, unsigned int); ++ ++typedef void (*btf_trace_xen_mc_entry_alloc)(void *, size_t); ++ ++typedef void (*btf_trace_xen_mc_callback)(void *, xen_mc_callback_fn_t, void *); ++ ++typedef void (*btf_trace_xen_mc_flush_reason)(void *, enum xen_mc_flush_reason); ++ ++typedef void (*btf_trace_xen_mc_flush)(void *, unsigned int, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_xen_mc_extend_args)(void *, long unsigned int, size_t, enum xen_mc_extend_args); ++ ++typedef void (*btf_trace_xen_mmu_set_pte)(void *, pte_t *, pte_t); ++ ++typedef void (*btf_trace_xen_mmu_set_pmd)(void *, pmd_t *, pmd_t); ++ ++typedef void (*btf_trace_xen_mmu_set_pud)(void *, pud_t *, pud_t); ++ ++typedef void (*btf_trace_xen_mmu_set_p4d)(void *, p4d_t *, p4d_t *, p4d_t); ++ ++typedef void (*btf_trace_xen_mmu_ptep_modify_prot_start)(void *, struct mm_struct *, long unsigned int, pte_t *, pte_t); ++ ++typedef void (*btf_trace_xen_mmu_ptep_modify_prot_commit)(void *, struct mm_struct *, long unsigned int, pte_t *, pte_t); ++ ++typedef void (*btf_trace_xen_mmu_alloc_ptpage)(void *, struct mm_struct *, long unsigned int, unsigned int, bool); ++ ++typedef void (*btf_trace_xen_mmu_release_ptpage)(void *, long unsigned int, unsigned int, bool); ++ ++typedef void (*btf_trace_xen_mmu_pgd_pin)(void *, struct mm_struct *, pgd_t *); ++ ++typedef void (*btf_trace_xen_mmu_pgd_unpin)(void *, struct mm_struct *, pgd_t *); ++ ++typedef void (*btf_trace_xen_mmu_flush_tlb_one_user)(void *, long unsigned int); ++ ++typedef void (*btf_trace_xen_mmu_flush_tlb_multi)(void *, const struct cpumask *, struct mm_struct *, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_xen_mmu_write_cr3)(void *, bool, long unsigned int); ++ ++typedef void (*btf_trace_xen_cpu_write_ldt_entry)(void *, struct desc_struct *, int, u64); ++ ++typedef void (*btf_trace_xen_cpu_write_idt_entry)(void *, gate_desc *, int, const gate_desc *); ++ ++typedef void (*btf_trace_xen_cpu_load_idt)(void *, const struct desc_ptr *); ++ ++typedef void (*btf_trace_xen_cpu_write_gdt_entry)(void *, struct desc_struct *, int, const void *, int); ++ ++typedef void (*btf_trace_xen_cpu_set_ldt)(void *, const void *, unsigned int); ++ +enum ipi_vector { + XEN_RESCHEDULE_VECTOR = 0, + XEN_CALL_FUNCTION_VECTOR = 1, @@ -22128,6 +20812,18 @@ index 0000000..bcb9d76 + char *name; +}; + ++struct sg_table { ++ struct scatterlist *sgl; ++ unsigned int nents; ++ unsigned int orig_nents; ++}; ++ ++enum swiotlb_force { ++ SWIOTLB_NORMAL = 0, ++ SWIOTLB_FORCE = 1, ++ SWIOTLB_NO_FORCE = 2, ++}; ++ +struct iommu_table_entry { + initcall_t detect; + initcall_t depend; @@ -22138,6 +20834,53 @@ index 0000000..bcb9d76 + +typedef s16 int16_t; + ++union efi_boot_services; ++ ++typedef union efi_boot_services efi_boot_services_t; ++ ++typedef struct { ++ efi_table_hdr_t hdr; ++ u32 fw_vendor; ++ u32 fw_revision; ++ u32 con_in_handle; ++ u32 con_in; ++ u32 con_out_handle; ++ u32 con_out; ++ u32 stderr_handle; ++ u32 stderr; ++ u32 runtime; ++ u32 boottime; ++ u32 nr_tables; ++ u32 tables; ++} efi_system_table_32_t; ++ ++union efi_simple_text_input_protocol; ++ ++typedef union efi_simple_text_input_protocol efi_simple_text_input_protocol_t; ++ ++union efi_simple_text_output_protocol; ++ ++typedef union efi_simple_text_output_protocol efi_simple_text_output_protocol_t; ++ ++typedef union { ++ struct { ++ efi_table_hdr_t hdr; ++ long unsigned int fw_vendor; ++ u32 fw_revision; ++ long unsigned int con_in_handle; ++ efi_simple_text_input_protocol_t *con_in; ++ long unsigned int con_out_handle; ++ efi_simple_text_output_protocol_t *con_out; ++ long unsigned int stderr_handle; ++ long unsigned int stderr; ++ efi_runtime_services_t *runtime; ++ efi_boot_services_t *boottime; ++ long unsigned int nr_tables; ++ long unsigned int tables; ++ }; ++ efi_system_table_32_t mixed_mode; ++} efi_system_table_t; ++ +enum efi_secureboot_mode { + efi_secureboot_mode_unset = 0, + efi_secureboot_mode_unknown = 1, @@ -22513,12 +21256,10 @@ index 0000000..bcb9d76 + WORK_OFFQ_POOL_BITS = 31, + WORK_OFFQ_POOL_NONE = 2147483647, + WORK_STRUCT_FLAG_MASK = 255, -+ WORK_STRUCT_WQ_DATA_MASK = -256, -+ WORK_STRUCT_NO_POOL = -32, ++ WORK_STRUCT_WQ_DATA_MASK = 4294967040, ++ WORK_STRUCT_NO_POOL = 4294967264, + WORK_BUSY_PENDING = 1, + WORK_BUSY_RUNNING = 2, -+ WORK_FLUSH_FROM_CANCEL = 1, -+ WORK_FLUSH_AT_NICE = 2, + WORKER_DESC_LEN = 24, +}; + @@ -22549,7 +21290,34 @@ index 0000000..bcb9d76 + __u64 reserved: 63; +}; + -+typedef u8 pto_T_____5; ++struct hv_nested_enlightenments_control { ++ struct { ++ __u32 directhypercall: 1; ++ __u32 reserved: 31; ++ } features; ++ struct { ++ __u32 reserved; ++ } hypercallControls; ++}; ++ ++struct hv_vp_assist_page { ++ __u32 apic_assist; ++ __u32 reserved1; ++ __u64 vtl_control[3]; ++ struct hv_nested_enlightenments_control nested_control; ++ __u8 enlighten_vmentry; ++ __u8 reserved2[7]; ++ __u64 current_nested_vmcs; ++}; ++ ++struct ms_hyperv_info { ++ u32 features; ++ u32 misc_features; ++ u32 hints; ++ u32 nested_features; ++ u32 max_vp_index; ++ u32 max_lp_index; ++}; + +struct mmu_gather_batch { + struct mmu_gather_batch *next; @@ -22572,18 +21340,12 @@ index 0000000..bcb9d76 + unsigned int cleared_pmds: 1; + unsigned int cleared_puds: 1; + unsigned int cleared_p4ds: 1; ++ unsigned int vma_exec: 1; ++ unsigned int vma_huge: 1; ++ unsigned int batch_count; + struct mmu_gather_batch *active; + struct mmu_gather_batch local; + struct page *__pages[8]; -+ unsigned int batch_count; -+ int page_size; -+}; -+ -+struct clocksource___2; -+ -+struct mmu_notifier_mm { -+ struct hlist_head list; -+ spinlock_t lock; +}; + +enum HV_GENERIC_SET_FORMAT { @@ -22617,7 +21379,7 @@ index 0000000..bcb9d76 + void *tables[0]; +}; + -+struct trace_event_raw_hyperv_mmu_flush_tlb_others { ++struct trace_event_raw_hyperv_mmu_flush_tlb_multi { + struct trace_entry ent; + unsigned int ncpus; + struct mm_struct *mm; @@ -22633,6 +21395,13 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_hyperv_nested_flush_guest_mapping_range { ++ struct trace_entry ent; ++ u64 as; ++ int ret; ++ char __data[0]; ++}; ++ +struct trace_event_raw_hyperv_send_ipi_mask { + struct trace_entry ent; + unsigned int ncpus; @@ -22640,17 +21409,55 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_data_offsets_hyperv_mmu_flush_tlb_others {}; ++struct trace_event_raw_hyperv_send_ipi_one { ++ struct trace_entry ent; ++ int cpu; ++ int vector; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_hyperv_mmu_flush_tlb_multi {}; + +struct trace_event_data_offsets_hyperv_nested_flush_guest_mapping {}; + ++struct trace_event_data_offsets_hyperv_nested_flush_guest_mapping_range {}; ++ +struct trace_event_data_offsets_hyperv_send_ipi_mask {}; + ++struct trace_event_data_offsets_hyperv_send_ipi_one {}; ++ ++typedef void (*btf_trace_hyperv_mmu_flush_tlb_multi)(void *, const struct cpumask *, const struct flush_tlb_info *); ++ ++typedef void (*btf_trace_hyperv_nested_flush_guest_mapping)(void *, u64, int); ++ ++typedef void (*btf_trace_hyperv_nested_flush_guest_mapping_range)(void *, u64, int); ++ ++typedef void (*btf_trace_hyperv_send_ipi_mask)(void *, const struct cpumask *, int); ++ ++typedef void (*btf_trace_hyperv_send_ipi_one)(void *, int, int); ++ +struct hv_guest_mapping_flush { + u64 address_space; + u64 flags; +}; + ++union hv_gpa_page_range { ++ u64 address_space; ++ struct { ++ u64 additional_pages: 11; ++ u64 largepage: 1; ++ u64 basepfn: 52; ++ } page; ++}; ++ ++struct hv_guest_mapping_flush_list { ++ u64 address_space; ++ u64 flags; ++ union hv_gpa_page_range gpa_list[510]; ++}; ++ ++typedef int (*hyperv_fill_flush_list_func)(struct hv_guest_mapping_flush_list *, void *); ++ +struct hv_send_ipi { + u32 vector; + u32 reserved; @@ -22663,6 +21470,19 @@ index 0000000..bcb9d76 + struct hv_vpset vp_set; +}; + ++struct real_mode_header { ++ u32 text_start; ++ u32 ro_end; ++ u32 trampoline_start; ++ u32 trampoline_header; ++ u32 sev_es_trampoline_start; ++ u32 trampoline_pgd; ++ u32 wakeup_start; ++ u32 wakeup_header; ++ u32 machine_real_restart_asm; ++ u32 machine_real_restart_seg; ++}; ++ +struct trampoline_header { + u64 start; + u64 efer; @@ -22670,11 +21490,529 @@ index 0000000..bcb9d76 + u32 flags; +}; + -+enum { -+ EI_ETYPE_NONE = 0, -+ EI_ETYPE_NULL = 1, -+ EI_ETYPE_ERRNO = 2, -+ EI_ETYPE_ERRNO_NULL = 3, ++struct pkru_state { ++ u32 pkru; ++ u32 pad; ++}; ++ ++struct x86_hw_tss { ++ u32 reserved1; ++ u64 sp0; ++ u64 sp1; ++ u64 sp2; ++ u64 reserved2; ++ u64 ist[7]; ++ u32 reserved3; ++ u32 reserved4; ++ u16 reserved5; ++ u16 io_bitmap_base; ++} __attribute__((packed)); ++ ++struct x86_io_bitmap { ++ u64 prev_sequence; ++ unsigned int prev_max; ++ long unsigned int bitmap[1025]; ++ long unsigned int mapall[1025]; ++}; ++ ++struct tss_struct { ++ struct x86_hw_tss x86_tss; ++ struct x86_io_bitmap io_bitmap; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; +}; + +enum show_regs_mode { @@ -22683,44 +22021,11 @@ index 0000000..bcb9d76 + SHOW_REGS_ALL = 2, +}; + -+struct inactive_task_frame { -+ long unsigned int flags; -+ long unsigned int r15; -+ long unsigned int r14; -+ long unsigned int r13; -+ long unsigned int r12; -+ long unsigned int bx; -+ long unsigned int bp; -+ long unsigned int ret_addr; -+}; -+ -+struct fork_frame { -+ struct inactive_task_frame frame; -+ struct pt_regs regs; -+}; -+ -+struct syscall_metadata { -+ const char *name; -+ int syscall_nr; -+ int nb_args; -+ const char **types; -+ const char **args; -+ struct list_head enter_fields; -+ struct trace_event_call *enter_event; -+ struct trace_event_call *exit_event; -+}; -+ -+struct user_desc { -+ unsigned int entry_number; -+ unsigned int base_addr; -+ unsigned int limit; -+ unsigned int seg_32bit: 1; -+ unsigned int contents: 2; -+ unsigned int read_exec_only: 1; -+ unsigned int limit_in_pages: 1; -+ unsigned int seg_not_present: 1; -+ unsigned int useable: 1; -+ unsigned int lm: 1; ++struct resctrl_pqr_state { ++ u32 cur_rmid; ++ u32 cur_closid; ++ u32 default_rmid; ++ u32 default_closid; +}; + +enum which_selector { @@ -22728,10 +22033,6 @@ index 0000000..bcb9d76 + GS = 1, +}; + -+typedef struct task_struct *pto_T_____6; -+ -+typedef struct fpu *pto_T_____7; -+ +struct sigcontext_64 { + __u64 r8; + __u64 r9; @@ -22771,6 +22072,28 @@ index 0000000..bcb9d76 + +typedef struct sigaltstack stack_t; + ++struct siginfo { ++ union { ++ struct { ++ int si_signo; ++ int si_errno; ++ int si_code; ++ union __sifields _sifields; ++ }; ++ int _si_pad[32]; ++ }; ++}; ++ ++struct ksignal { ++ struct k_sigaction ka; ++ kernel_siginfo_t info; ++ int sig; ++}; ++ ++struct __large_struct { ++ long unsigned int buf[100]; ++}; ++ +typedef u32 compat_sigset_word; + +typedef struct { @@ -22785,48 +22108,6 @@ index 0000000..bcb9d76 + sigset_t uc_sigmask; +}; + -+struct mce { -+ __u64 status; -+ __u64 misc; -+ __u64 addr; -+ __u64 mcgstatus; -+ __u64 ip; -+ __u64 tsc; -+ __u64 time; -+ __u8 cpuvendor; -+ __u8 inject_flags; -+ __u8 severity; -+ __u8 pad; -+ __u32 cpuid; -+ __u8 cs; -+ __u8 bank; -+ __u8 cpu; -+ __u8 finished; -+ __u32 extcpu; -+ __u32 socketid; -+ __u32 apicid; -+ __u64 mcgcap; -+ __u64 synd; -+ __u64 ipid; -+ __u64 ppin; -+ __u32 microcode; -+}; -+ -+typedef long unsigned int mce_banks_t[1]; -+ -+struct smca_hwid { -+ unsigned int bank_type; -+ u32 hwid_mcatype; -+ u32 xec_bitmap; -+ u8 count; -+}; -+ -+struct smca_bank { -+ struct smca_hwid *hwid; -+ u32 id; -+ u8 sysfs_id; -+}; -+ +struct kernel_vm86_regs { + struct pt_regs pt; + short unsigned int es; @@ -22845,16 +22126,18 @@ index 0000000..bcb9d76 + struct siginfo info; +}; + ++typedef struct siginfo siginfo_t; ++ +typedef s32 compat_clock_t; + +typedef s32 compat_pid_t; + -+typedef u32 __compat_uid32_t; -+ +typedef s32 compat_timer_t; + +typedef s32 compat_int_t; + ++typedef u32 __compat_uid32_t; ++ +union compat_sigval { + compat_int_t sival_int; + compat_uptr_t sival_ptr; @@ -22924,23 +22207,36 @@ index 0000000..bcb9d76 + BUG_TRAP_TYPE_BUG = 2, +}; + -+enum xfeature { -+ XFEATURE_FP = 0, -+ XFEATURE_SSE = 1, -+ XFEATURE_YMM = 2, -+ XFEATURE_BNDREGS = 3, -+ XFEATURE_BNDCSR = 4, -+ XFEATURE_OPMASK = 5, -+ XFEATURE_ZMM_Hi256 = 6, -+ XFEATURE_Hi16_ZMM = 7, -+ XFEATURE_PT_UNIMPLEMENTED_SO_FAR = 8, -+ XFEATURE_PKRU = 9, -+ XFEATURE_MAX = 10, ++typedef u8 kprobe_opcode_t; ++ ++struct arch_specific_insn { ++ kprobe_opcode_t *insn; ++ bool boostable; ++ bool if_modifier; ++ int tp_len; +}; + -+struct mpx_bndcsr { -+ u64 bndcfgu; -+ u64 bndstatus; ++struct kprobe; ++ ++typedef int (*kprobe_pre_handler_t)(struct kprobe *, struct pt_regs *); ++ ++typedef void (*kprobe_post_handler_t)(struct kprobe *, struct pt_regs *, long unsigned int); ++ ++typedef int (*kprobe_fault_handler_t)(struct kprobe *, struct pt_regs *, int); ++ ++struct kprobe { ++ struct hlist_node hlist; ++ struct list_head list; ++ long unsigned int nmissed; ++ kprobe_opcode_t *addr; ++ const char *symbol_name; ++ unsigned int offset; ++ kprobe_pre_handler_t pre_handler; ++ kprobe_post_handler_t post_handler; ++ kprobe_fault_handler_t fault_handler; ++ kprobe_opcode_t opcode; ++ struct arch_specific_insn ainsn; ++ u32 flags; +}; + +enum die_val { @@ -22958,28 +22254,34 @@ index 0000000..bcb9d76 + DIE_NMIUNKNOWN = 12, +}; + ++struct cea_exception_stacks { ++ char DF_stack_guard[4096]; ++ char DF_stack[8192]; ++ char NMI_stack_guard[4096]; ++ char NMI_stack[8192]; ++ char DB_stack_guard[4096]; ++ char DB_stack[8192]; ++ char MCE_stack_guard[4096]; ++ char MCE_stack[8192]; ++ char VC_stack_guard[4096]; ++ char VC_stack[8192]; ++ char VC2_stack_guard[4096]; ++ char VC2_stack[8192]; ++ char IST_top_guard[4096]; ++}; ++ ++enum kernel_gp_hint { ++ GP_NO_HINT = 0, ++ GP_NON_CANONICAL = 1, ++ GP_CANONICAL = 2, ++}; ++ +struct bad_iret_stack { + void *error_entry_ret; + struct pt_regs regs; +}; + -+enum { -+ GATE_INTERRUPT = 14, -+ GATE_TRAP = 15, -+ GATE_CALL = 12, -+ GATE_TASK = 5, -+}; -+ -+struct irq_desc___2; -+ -+typedef struct irq_desc___2 *vector_irq_t___2[256]; -+ -+struct idt_data { -+ unsigned int vector; -+ unsigned int segment; -+ struct idt_bits bits; -+ const void *addr; -+}; ++typedef struct irq_desc *vector_irq_t[256]; + +struct trace_event_raw_x86_irq_vector { + struct trace_entry ent; @@ -23084,47 +22386,119 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_vector_free_moved {}; + -+typedef struct irq_desc *pto_T_____8; ++typedef void (*btf_trace_local_timer_entry)(void *, int); + -+typedef struct pt_regs *pto_T_____9; ++typedef void (*btf_trace_local_timer_exit)(void *, int); + -+struct legacy_pic { -+ int nr_legacy_irqs; -+ struct irq_chip *chip; -+ void (*mask)(unsigned int); -+ void (*unmask)(unsigned int); -+ void (*mask_all)(); -+ void (*restore_mask)(); -+ void (*init)(int); -+ int (*probe)(); -+ int (*irq_pending)(unsigned int); -+ void (*make_irq)(unsigned int); ++typedef void (*btf_trace_spurious_apic_entry)(void *, int); ++ ++typedef void (*btf_trace_spurious_apic_exit)(void *, int); ++ ++typedef void (*btf_trace_error_apic_entry)(void *, int); ++ ++typedef void (*btf_trace_error_apic_exit)(void *, int); ++ ++typedef void (*btf_trace_x86_platform_ipi_entry)(void *, int); ++ ++typedef void (*btf_trace_x86_platform_ipi_exit)(void *, int); ++ ++typedef void (*btf_trace_irq_work_entry)(void *, int); ++ ++typedef void (*btf_trace_irq_work_exit)(void *, int); ++ ++typedef void (*btf_trace_reschedule_entry)(void *, int); ++ ++typedef void (*btf_trace_reschedule_exit)(void *, int); ++ ++typedef void (*btf_trace_call_function_entry)(void *, int); ++ ++typedef void (*btf_trace_call_function_exit)(void *, int); ++ ++typedef void (*btf_trace_call_function_single_entry)(void *, int); ++ ++typedef void (*btf_trace_call_function_single_exit)(void *, int); ++ ++typedef void (*btf_trace_threshold_apic_entry)(void *, int); ++ ++typedef void (*btf_trace_threshold_apic_exit)(void *, int); ++ ++typedef void (*btf_trace_deferred_error_apic_entry)(void *, int); ++ ++typedef void (*btf_trace_deferred_error_apic_exit)(void *, int); ++ ++typedef void (*btf_trace_thermal_apic_entry)(void *, int); ++ ++typedef void (*btf_trace_thermal_apic_exit)(void *, int); ++ ++typedef void (*btf_trace_vector_config)(void *, unsigned int, unsigned int, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_vector_update)(void *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_vector_clear)(void *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_vector_reserve_managed)(void *, unsigned int, int); ++ ++typedef void (*btf_trace_vector_reserve)(void *, unsigned int, int); ++ ++typedef void (*btf_trace_vector_alloc)(void *, unsigned int, unsigned int, bool, int); ++ ++typedef void (*btf_trace_vector_alloc_managed)(void *, unsigned int, unsigned int, int); ++ ++typedef void (*btf_trace_vector_activate)(void *, unsigned int, bool, bool, bool); ++ ++typedef void (*btf_trace_vector_deactivate)(void *, unsigned int, bool, bool, bool); ++ ++typedef void (*btf_trace_vector_teardown)(void *, unsigned int, bool, bool); ++ ++typedef void (*btf_trace_vector_setup)(void *, unsigned int, bool, int); ++ ++typedef void (*btf_trace_vector_free_moved)(void *, unsigned int, unsigned int, unsigned int, bool); ++ ++struct estack_pages { ++ u32 offs; ++ u16 size; ++ u16 type; +}; + -+struct ldttss_desc { -+ u16 limit0; -+ u16 base0; -+ u16 base1: 8; -+ u16 type: 5; -+ u16 dpl: 2; -+ u16 p: 1; -+ u16 limit1: 4; -+ u16 zero0: 3; -+ u16 g: 1; -+ u16 base2: 8; -+ u32 base3; -+ u32 zero1; ++enum lockdown_reason { ++ LOCKDOWN_NONE = 0, ++ LOCKDOWN_MODULE_SIGNATURE = 1, ++ LOCKDOWN_DEV_MEM = 2, ++ LOCKDOWN_EFI_TEST = 3, ++ LOCKDOWN_KEXEC = 4, ++ LOCKDOWN_HIBERNATION = 5, ++ LOCKDOWN_PCI_ACCESS = 6, ++ LOCKDOWN_IOPORT = 7, ++ LOCKDOWN_MSR = 8, ++ LOCKDOWN_ACPI_TABLES = 9, ++ LOCKDOWN_PCMCIA_CIS = 10, ++ LOCKDOWN_TIOCSSERIAL = 11, ++ LOCKDOWN_MODULE_PARAMETERS = 12, ++ LOCKDOWN_MMIOTRACE = 13, ++ LOCKDOWN_DEBUGFS = 14, ++ LOCKDOWN_XMON_WR = 15, ++ LOCKDOWN_BPF_WRITE_USER = 16, ++ LOCKDOWN_DBG_WRITE_KERNEL = 17, ++ LOCKDOWN_INTEGRITY_MAX = 18, ++ LOCKDOWN_KCORE = 19, ++ LOCKDOWN_KPROBES = 20, ++ LOCKDOWN_BPF_READ = 21, ++ LOCKDOWN_DBG_READ_KERNEL = 22, ++ LOCKDOWN_PERF = 23, ++ LOCKDOWN_TRACEFS = 24, ++ LOCKDOWN_XMON_RW = 25, ++ LOCKDOWN_CONFIDENTIALITY_MAX = 26, +}; + -+typedef struct ldttss_desc tss_desc; -+ -+typedef bool pto_T_____10; -+ +enum lockdep_ok { + LOCKDEP_STILL_OK = 0, + LOCKDEP_NOW_UNRELIABLE = 1, +}; + ++struct entry_stack { ++ char stack[4096]; ++}; ++ +typedef long unsigned int uintptr_t; + +struct trace_event_raw_nmi_handler { @@ -23137,6 +22511,8 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_nmi_handler {}; + ++typedef void (*btf_trace_nmi_handler)(void *, void *, s64, int); ++ +struct nmi_desc { + raw_spinlock_t lock; + struct list_head head; @@ -23155,7 +22531,191 @@ index 0000000..bcb9d76 + NMI_LATCHED = 2, +}; + -+typedef enum nmi_states pto_T_____11; ++enum { ++ DESC_TSS = 9, ++ DESC_LDT = 2, ++ DESCTYPE_S = 16, ++}; ++ ++struct ldttss_desc { ++ u16 limit0; ++ u16 base0; ++ u16 base1: 8; ++ u16 type: 5; ++ u16 dpl: 2; ++ u16 p: 1; ++ u16 limit1: 4; ++ u16 zero0: 3; ++ u16 g: 1; ++ u16 base2: 8; ++ u32 base3; ++ u32 zero1; ++}; ++ ++typedef struct ldttss_desc ldt_desc; ++ ++struct user_desc { ++ unsigned int entry_number; ++ unsigned int base_addr; ++ unsigned int limit; ++ unsigned int seg_32bit: 1; ++ unsigned int contents: 2; ++ unsigned int read_exec_only: 1; ++ unsigned int limit_in_pages: 1; ++ unsigned int seg_not_present: 1; ++ unsigned int useable: 1; ++ unsigned int lm: 1; ++}; ++ ++enum con_scroll { ++ SM_UP = 0, ++ SM_DOWN = 1, ++}; ++ ++enum vc_intensity { ++ VCI_HALF_BRIGHT = 0, ++ VCI_NORMAL = 1, ++ VCI_BOLD = 2, ++ VCI_MASK = 3, ++}; ++ ++struct vc_data; ++ ++struct console_font; ++ ++struct consw { ++ struct module *owner; ++ const char * (*con_startup)(); ++ void (*con_init)(struct vc_data *, int); ++ void (*con_deinit)(struct vc_data *); ++ void (*con_clear)(struct vc_data *, int, int, int, int); ++ void (*con_putc)(struct vc_data *, int, int, int); ++ void (*con_putcs)(struct vc_data *, const short unsigned int *, int, int, int); ++ void (*con_cursor)(struct vc_data *, int); ++ bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); ++ int (*con_switch)(struct vc_data *); ++ int (*con_blank)(struct vc_data *, int, int); ++ int (*con_font_set)(struct vc_data *, struct console_font *, unsigned int); ++ int (*con_font_get)(struct vc_data *, struct console_font *); ++ int (*con_font_default)(struct vc_data *, struct console_font *, char *); ++ int (*con_font_copy)(struct vc_data *, int); ++ int (*con_resize)(struct vc_data *, unsigned int, unsigned int, unsigned int); ++ void (*con_set_palette)(struct vc_data *, const unsigned char *); ++ void (*con_scrolldelta)(struct vc_data *, int); ++ int (*con_set_origin)(struct vc_data *); ++ void (*con_save_screen)(struct vc_data *); ++ u8 (*con_build_attr)(struct vc_data *, u8, enum vc_intensity, bool, bool, bool, bool); ++ void (*con_invert_region)(struct vc_data *, u16 *, int); ++ u16 * (*con_screen_pos)(const struct vc_data *, int); ++ long unsigned int (*con_getxy)(struct vc_data *, long unsigned int, int *, int *); ++ void (*con_flush_scrollback)(struct vc_data *); ++ int (*con_debug_enter)(struct vc_data *); ++ int (*con_debug_leave)(struct vc_data *); ++}; ++ ++struct vc_state { ++ unsigned int x; ++ unsigned int y; ++ unsigned char color; ++ unsigned char Gx_charset[2]; ++ unsigned int charset: 1; ++ enum vc_intensity intensity; ++ bool italic; ++ bool underline; ++ bool blink; ++ bool reverse; ++}; ++ ++struct console_font { ++ unsigned int width; ++ unsigned int height; ++ unsigned int charcount; ++ unsigned char *data; ++}; ++ ++struct vt_mode { ++ char mode; ++ char waitv; ++ short int relsig; ++ short int acqsig; ++ short int frsig; ++}; ++ ++struct uni_pagedir; ++ ++struct uni_screen; ++ ++struct vc_data { ++ struct tty_port port; ++ struct vc_state state; ++ struct vc_state saved_state; ++ short unsigned int vc_num; ++ unsigned int vc_cols; ++ unsigned int vc_rows; ++ unsigned int vc_size_row; ++ unsigned int vc_scan_lines; ++ unsigned int vc_cell_height; ++ long unsigned int vc_origin; ++ long unsigned int vc_scr_end; ++ long unsigned int vc_visible_origin; ++ unsigned int vc_top; ++ unsigned int vc_bottom; ++ const struct consw *vc_sw; ++ short unsigned int *vc_screenbuf; ++ unsigned int vc_screenbuf_size; ++ unsigned char vc_mode; ++ unsigned char vc_attr; ++ unsigned char vc_def_color; ++ unsigned char vc_ulcolor; ++ unsigned char vc_itcolor; ++ unsigned char vc_halfcolor; ++ unsigned int vc_cursor_type; ++ short unsigned int vc_complement_mask; ++ short unsigned int vc_s_complement_mask; ++ long unsigned int vc_pos; ++ short unsigned int vc_hi_font_mask; ++ struct console_font vc_font; ++ short unsigned int vc_video_erase_char; ++ unsigned int vc_state; ++ unsigned int vc_npar; ++ unsigned int vc_par[16]; ++ struct vt_mode vt_mode; ++ struct pid *vt_pid; ++ int vt_newvt; ++ wait_queue_head_t paste_wait; ++ unsigned int vc_disp_ctrl: 1; ++ unsigned int vc_toggle_meta: 1; ++ unsigned int vc_decscnm: 1; ++ unsigned int vc_decom: 1; ++ unsigned int vc_decawm: 1; ++ unsigned int vc_deccm: 1; ++ unsigned int vc_decim: 1; ++ unsigned int vc_priv: 3; ++ unsigned int vc_need_wrap: 1; ++ unsigned int vc_can_do_color: 1; ++ unsigned int vc_report_mouse: 2; ++ unsigned char vc_utf: 1; ++ unsigned char vc_utf_count; ++ int vc_utf_char; ++ long unsigned int vc_tab_stop[4]; ++ unsigned char vc_palette[48]; ++ short unsigned int *vc_translate; ++ unsigned int vc_resize_user; ++ unsigned int vc_bell_pitch; ++ unsigned int vc_bell_duration; ++ short unsigned int vc_cur_blink_ms; ++ struct vc_data **vc_display_fg; ++ struct uni_pagedir *vc_uni_pagedir; ++ struct uni_pagedir **vc_uni_pagedir_loc; ++ struct uni_screen *vc_uni_screen; ++}; ++ ++struct edd { ++ unsigned int mbr_signature[16]; ++ struct edd_info edd_info[6]; ++ unsigned char mbr_signature_nr; ++ unsigned char edd_info_nr; ++}; + +struct setup_data { + __u64 next; @@ -23164,152 +22724,61 @@ index 0000000..bcb9d76 + __u8 data[0]; +}; + -+struct acpi_table_ibft { -+ struct acpi_table_header header; -+ u8 reserved[12]; ++struct setup_indirect { ++ __u32 type; ++ __u32 reserved; ++ __u64 len; ++ __u64 addr; +}; + -+enum cpufreq_table_sorting { -+ CPUFREQ_TABLE_UNSORTED = 0, -+ CPUFREQ_TABLE_SORTED_ASCENDING = 1, -+ CPUFREQ_TABLE_SORTED_DESCENDING = 2, ++enum memblock_flags { ++ MEMBLOCK_NONE = 0, ++ MEMBLOCK_HOTPLUG = 1, ++ MEMBLOCK_MIRROR = 2, ++ MEMBLOCK_NOMAP = 4, ++ MEMBLOCK_MEMMAP = 8, +}; + -+struct cpufreq_cpuinfo { -+ unsigned int max_freq; -+ unsigned int min_freq; -+ unsigned int transition_latency; ++struct memblock_region { ++ phys_addr_t base; ++ phys_addr_t size; ++ enum memblock_flags flags; ++ int nid; +}; + -+struct cpufreq_user_policy { -+ unsigned int min; -+ unsigned int max; ++struct memblock_type { ++ long unsigned int cnt; ++ long unsigned int max; ++ phys_addr_t total_size; ++ struct memblock_region *regions; ++ char *name; +}; + -+struct clk; -+ -+struct cpufreq_governor; -+ -+struct cpufreq_frequency_table; -+ -+struct cpufreq_stats; -+ -+struct cpufreq_policy { -+ cpumask_var_t cpus; -+ cpumask_var_t related_cpus; -+ cpumask_var_t real_cpus; -+ unsigned int shared_type; -+ unsigned int cpu; -+ struct clk *clk; -+ struct cpufreq_cpuinfo cpuinfo; -+ unsigned int min; -+ unsigned int max; -+ unsigned int cur; -+ unsigned int restore_freq; -+ unsigned int suspend_freq; -+ unsigned int policy; -+ unsigned int last_policy; -+ struct cpufreq_governor *governor; -+ void *governor_data; -+ char last_governor[16]; -+ struct work_struct update; -+ struct cpufreq_user_policy user_policy; -+ struct cpufreq_frequency_table *freq_table; -+ enum cpufreq_table_sorting freq_table_sorted; -+ struct list_head policy_list; -+ struct kobject kobj; -+ struct completion kobj_unregister; -+ struct rw_semaphore rwsem; -+ bool fast_switch_possible; -+ bool fast_switch_enabled; -+ unsigned int transition_delay_us; -+ bool dvfs_possible_from_any_cpu; -+ unsigned int cached_target_freq; -+ int cached_resolved_idx; -+ bool transition_ongoing; -+ spinlock_t transition_lock; -+ wait_queue_head_t transition_wait; -+ struct task_struct *transition_task; -+ struct cpufreq_stats *stats; -+ void *driver_data; ++struct memblock { ++ bool bottom_up; ++ phys_addr_t current_limit; ++ struct memblock_type memory; ++ struct memblock_type reserved; +}; + -+struct cpufreq_governor { -+ char name[16]; -+ int (*init)(struct cpufreq_policy *); -+ void (*exit)(struct cpufreq_policy *); -+ int (*start)(struct cpufreq_policy *); -+ void (*stop)(struct cpufreq_policy *); -+ void (*limits)(struct cpufreq_policy *); -+ ssize_t (*show_setspeed)(struct cpufreq_policy *, char *); -+ int (*store_setspeed)(struct cpufreq_policy *, unsigned int); -+ bool dynamic_switching; -+ struct list_head governor_list; -+ struct module *owner; -+}; -+ -+struct cpufreq_frequency_table { -+ unsigned int flags; -+ unsigned int driver_data; -+ unsigned int frequency; -+}; -+ -+struct freq_attr { -+ struct attribute attr; -+ ssize_t (*show)(struct cpufreq_policy *, char *); -+ ssize_t (*store)(struct cpufreq_policy *, const char *, size_t); -+}; -+ -+struct tboot_mac_region { -+ u64 start; -+ u32 size; ++struct e820_entry { ++ u64 addr; ++ u64 size; ++ enum e820_type type; +} __attribute__((packed)); + -+struct tboot_acpi_generic_address { -+ u8 space_id; -+ u8 bit_width; -+ u8 bit_offset; -+ u8 access_width; -+ u64 address; ++struct e820_table { ++ __u32 nr_entries; ++ struct e820_entry entries[3200]; +} __attribute__((packed)); + -+struct tboot_acpi_sleep_info { -+ struct tboot_acpi_generic_address pm1a_cnt_blk; -+ struct tboot_acpi_generic_address pm1b_cnt_blk; -+ struct tboot_acpi_generic_address pm1a_evt_blk; -+ struct tboot_acpi_generic_address pm1b_evt_blk; -+ u16 pm1a_cnt_val; -+ u16 pm1b_cnt_val; -+ u64 wakeup_vector; -+ u32 vector_width; -+ u64 kernel_s3_resume_vector; -+} __attribute__((packed)); -+ -+struct tboot { -+ u8 uuid[16]; -+ u32 version; -+ u32 log_addr; -+ u32 shutdown_entry; -+ u32 shutdown_type; -+ struct tboot_acpi_sleep_info acpi_sinfo; -+ u32 tboot_base; -+ u32 tboot_size; -+ u8 num_mac_regions; -+ struct tboot_mac_region mac_regions[32]; -+ u8 s3_key[64]; -+ u8 reserved_align[3]; -+ u32 num_in_wfs; -+} __attribute__((packed)); -+ -+struct efi_scratch { -+ u64 phys_stack; -+ struct mm_struct *prev_mm; ++struct x86_msi_ops { ++ void (*restore_msi_irqs)(struct pci_dev *); +}; + -+struct amd_nb_bus_dev_range { -+ u8 bus; -+ u8 dev_base; -+ u8 dev_limit; ++struct x86_apic_ops { ++ unsigned int (*io_apic_read)(unsigned int, unsigned int); ++ void (*restore)(); +}; + +struct msi_controller { @@ -23322,23 +22791,29 @@ index 0000000..bcb9d76 + void (*teardown_irq)(struct msi_controller *, unsigned int); +}; + -+struct pci_raw_ops { -+ int (*read)(unsigned int, unsigned int, unsigned int, int, int, u32 *); -+ int (*write)(unsigned int, unsigned int, unsigned int, int, int, u32); ++struct legacy_pic { ++ int nr_legacy_irqs; ++ struct irq_chip *chip; ++ void (*mask)(unsigned int); ++ void (*unmask)(unsigned int); ++ void (*mask_all)(); ++ void (*restore_mask)(); ++ void (*init)(int); ++ int (*probe)(); ++ int (*irq_pending)(unsigned int); ++ void (*make_irq)(unsigned int); +}; + -+struct clock_event_device___2; -+ +enum jump_label_type { + JUMP_LABEL_NOP = 0, + JUMP_LABEL_JMP = 1, +}; + -+union jump_code_union { -+ char code[5]; ++union text_poke_insn { ++ u8 text[5]; + struct { -+ char jump; -+ int offset; ++ u8 opcode; ++ s32 disp; + } __attribute__((packed)); +}; + @@ -23348,6 +22823,80 @@ index 0000000..bcb9d76 + JL_STATE_UPDATE = 2, +}; + ++typedef short unsigned int __kernel_old_uid_t; ++ ++typedef short unsigned int __kernel_old_gid_t; ++ ++typedef struct { ++ int val[2]; ++} __kernel_fsid_t; ++ ++typedef __kernel_old_uid_t old_uid_t; ++ ++typedef __kernel_old_gid_t old_gid_t; ++ ++struct kernel_clone_args { ++ u64 flags; ++ int *pidfd; ++ int *child_tid; ++ int *parent_tid; ++ int exit_signal; ++ long unsigned int stack; ++ long unsigned int stack_size; ++ long unsigned int tls; ++ pid_t *set_tid; ++ size_t set_tid_size; ++ int cgroup; ++ struct cgroup *cgrp; ++ struct css_set *cset; ++}; ++ ++struct kstatfs { ++ long int f_type; ++ long int f_bsize; ++ u64 f_blocks; ++ u64 f_bfree; ++ u64 f_bavail; ++ u64 f_files; ++ u64 f_ffree; ++ __kernel_fsid_t f_fsid; ++ long int f_namelen; ++ long int f_frsize; ++ long int f_flags; ++ long int f_spare[4]; ++}; ++ ++struct stat64 { ++ long long unsigned int st_dev; ++ unsigned char __pad0[4]; ++ unsigned int __st_ino; ++ unsigned int st_mode; ++ unsigned int st_nlink; ++ unsigned int st_uid; ++ unsigned int st_gid; ++ long long unsigned int st_rdev; ++ unsigned char __pad3[4]; ++ long long int st_size; ++ unsigned int st_blksize; ++ long long int st_blocks; ++ unsigned int st_atime; ++ unsigned int st_atime_nsec; ++ unsigned int st_mtime; ++ unsigned int st_mtime_nsec; ++ unsigned int st_ctime; ++ unsigned int st_ctime_nsec; ++ long long unsigned int st_ino; ++} __attribute__((packed)); ++ ++struct mmap_arg_struct32 { ++ unsigned int addr; ++ unsigned int len; ++ unsigned int prot; ++ unsigned int flags; ++ unsigned int fd; ++ unsigned int offset; ++}; ++ +struct vm_unmapped_area_info { + long unsigned int flags; + long unsigned int length; @@ -23362,6 +22911,23 @@ index 0000000..bcb9d76 + ALIGN_VA_64 = 2, +}; + ++struct va_alignment { ++ int flags; ++ long unsigned int mask; ++ long unsigned int bits; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct kobj_attribute { ++ struct attribute attr; ++ ssize_t (*show)(struct kobject *, struct kobj_attribute *, char *); ++ ssize_t (*store)(struct kobject *, struct kobj_attribute *, const char *, size_t); ++}; ++ +enum { + MEMREMAP_WB = 1, + MEMREMAP_WT = 2, @@ -23378,8 +22944,9 @@ index 0000000..bcb9d76 + IORES_DESC_PERSISTENT_MEMORY = 4, + IORES_DESC_PERSISTENT_MEMORY_LEGACY = 5, + IORES_DESC_DEVICE_PRIVATE_MEMORY = 6, -+ IORES_DESC_DEVICE_PUBLIC_MEMORY = 7, -+ IORES_DESC_QUICK_KEXEC = 8, ++ IORES_DESC_RESERVED = 7, ++ IORES_DESC_SOFT_RESERVED = 8, ++ IORES_DESC_QUICK_KEXEC = 9, +}; + +struct change_member { @@ -23387,30 +22954,238 @@ index 0000000..bcb9d76 + long long unsigned int addr; +}; + ++struct iopf_device_param; ++ ++struct iommu_fault_param; ++ ++struct iommu_fwspec; ++ ++struct dev_iommu { ++ struct mutex lock; ++ struct iommu_fault_param *fault_param; ++ struct iopf_device_param *iopf_param; ++ struct iommu_fwspec *fwspec; ++ struct iommu_device *iommu_dev; ++ void *priv; ++}; ++ ++struct of_phandle_args { ++ struct device_node *np; ++ int args_count; ++ uint32_t args[16]; ++}; ++ ++struct iommu_fault_unrecoverable { ++ __u32 reason; ++ __u32 flags; ++ __u32 pasid; ++ __u32 perm; ++ __u64 addr; ++ __u64 fetch_addr; ++}; ++ ++struct iommu_fault_page_request { ++ __u32 flags; ++ __u32 pasid; ++ __u32 grpid; ++ __u32 perm; ++ __u64 addr; ++ __u64 private_data[2]; ++}; ++ ++struct iommu_fault { ++ __u32 type; ++ __u32 padding; ++ union { ++ struct iommu_fault_unrecoverable event; ++ struct iommu_fault_page_request prm; ++ __u8 padding2[56]; ++ }; ++}; ++ ++struct iommu_page_response { ++ __u32 argsz; ++ __u32 version; ++ __u32 flags; ++ __u32 pasid; ++ __u32 grpid; ++ __u32 code; ++}; ++ ++struct iommu_inv_addr_info { ++ __u32 flags; ++ __u32 archid; ++ __u64 pasid; ++ __u64 addr; ++ __u64 granule_size; ++ __u64 nb_granules; ++}; ++ ++struct iommu_inv_pasid_info { ++ __u32 flags; ++ __u32 archid; ++ __u64 pasid; ++}; ++ ++struct iommu_cache_invalidate_info { ++ __u32 argsz; ++ __u32 version; ++ __u8 cache; ++ __u8 granularity; ++ __u8 padding[6]; ++ union { ++ struct iommu_inv_pasid_info pasid_info; ++ struct iommu_inv_addr_info addr_info; ++ } granu; ++}; ++ ++struct iommu_gpasid_bind_data_vtd { ++ __u64 flags; ++ __u32 pat; ++ __u32 emt; ++}; ++ ++struct iommu_gpasid_bind_data { ++ __u32 argsz; ++ __u32 version; ++ __u32 format; ++ __u32 addr_width; ++ __u64 flags; ++ __u64 gpgd; ++ __u64 hpasid; ++ __u64 gpasid; ++ __u8 padding[8]; ++ union { ++ struct iommu_gpasid_bind_data_vtd vtd; ++ } vendor; ++}; ++ ++struct iommu_pasid_smmuv3 { ++ __u32 version; ++ __u8 s1fmt; ++ __u8 s1dss; ++ __u8 padding[2]; ++}; ++ ++struct iommu_pasid_table_config { ++ __u32 argsz; ++ __u32 version; ++ __u64 base_ptr; ++ __u32 format; ++ __u8 pasid_bits; ++ __u8 config; ++ __u8 padding[2]; ++ union { ++ struct iommu_pasid_smmuv3 smmuv3; ++ } vendor_data; ++}; ++ ++typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); ++ ++struct iommu_domain_geometry { ++ dma_addr_t aperture_start; ++ dma_addr_t aperture_end; ++ bool force_aperture; ++}; ++ ++struct iommu_domain { ++ unsigned int type; ++ const struct iommu_ops *ops; ++ long unsigned int pgsize_bitmap; ++ iommu_fault_handler_t handler; ++ void *handler_token; ++ struct iommu_domain_geometry geometry; ++ void *iova_cookie; ++ struct mutex switch_log_lock; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++typedef int (*iommu_dev_fault_handler_t)(struct iommu_fault *, void *); ++ ++enum iommu_resv_type { ++ IOMMU_RESV_DIRECT = 0, ++ IOMMU_RESV_DIRECT_RELAXABLE = 1, ++ IOMMU_RESV_RESERVED = 2, ++ IOMMU_RESV_MSI = 3, ++ IOMMU_RESV_SW_MSI = 4, ++}; ++ ++struct iommu_resv_region { ++ struct list_head list; ++ phys_addr_t start; ++ size_t length; ++ int prot; ++ enum iommu_resv_type type; ++}; ++ ++struct iommu_iotlb_gather { ++ long unsigned int start; ++ long unsigned int end; ++ size_t pgsize; ++}; ++ ++struct iommu_device { ++ struct list_head list; ++ const struct iommu_ops *ops; ++ struct fwnode_handle *fwnode; ++ struct device *dev; ++}; ++ ++struct iommu_sva { ++ struct device *dev; ++}; ++ ++struct iommu_fault_event { ++ struct iommu_fault fault; ++ struct list_head list; ++ u64 kabi_reserved_expire; ++}; ++ ++struct iommu_fault_param { ++ iommu_dev_fault_handler_t handler; ++ void *data; ++ struct list_head faults; ++ struct timer_list kabi_reserved_timer; ++ struct mutex lock; ++}; ++ ++struct iommu_fwspec { ++ const struct iommu_ops *ops; ++ struct fwnode_handle *iommu_fwnode; ++ u32 flags; ++ unsigned int num_ids; ++ u32 ids[0]; ++}; ++ +enum dmi_field { + DMI_NONE = 0, + DMI_BIOS_VENDOR = 1, + DMI_BIOS_VERSION = 2, + DMI_BIOS_DATE = 3, -+ DMI_SYS_VENDOR = 4, -+ DMI_PRODUCT_NAME = 5, -+ DMI_PRODUCT_VERSION = 6, -+ DMI_PRODUCT_SERIAL = 7, -+ DMI_PRODUCT_UUID = 8, -+ DMI_PRODUCT_SKU = 9, -+ DMI_PRODUCT_FAMILY = 10, -+ DMI_BOARD_VENDOR = 11, -+ DMI_BOARD_NAME = 12, -+ DMI_BOARD_VERSION = 13, -+ DMI_BOARD_SERIAL = 14, -+ DMI_BOARD_ASSET_TAG = 15, -+ DMI_CHASSIS_VENDOR = 16, -+ DMI_CHASSIS_TYPE = 17, -+ DMI_CHASSIS_VERSION = 18, -+ DMI_CHASSIS_SERIAL = 19, -+ DMI_CHASSIS_ASSET_TAG = 20, -+ DMI_STRING_MAX = 21, -+ DMI_OEM_STRING = 22, ++ DMI_BIOS_RELEASE = 4, ++ DMI_EC_FIRMWARE_RELEASE = 5, ++ DMI_SYS_VENDOR = 6, ++ DMI_PRODUCT_NAME = 7, ++ DMI_PRODUCT_VERSION = 8, ++ DMI_PRODUCT_SERIAL = 9, ++ DMI_PRODUCT_UUID = 10, ++ DMI_PRODUCT_SKU = 11, ++ DMI_PRODUCT_FAMILY = 12, ++ DMI_BOARD_VENDOR = 13, ++ DMI_BOARD_NAME = 14, ++ DMI_BOARD_VERSION = 15, ++ DMI_BOARD_SERIAL = 16, ++ DMI_BOARD_ASSET_TAG = 17, ++ DMI_CHASSIS_VENDOR = 18, ++ DMI_CHASSIS_TYPE = 19, ++ DMI_CHASSIS_VERSION = 20, ++ DMI_CHASSIS_SERIAL = 21, ++ DMI_CHASSIS_ASSET_TAG = 22, ++ DMI_STRING_MAX = 23, ++ DMI_OEM_STRING = 24, +}; + +struct acpi_device; @@ -23421,7 +23196,7 @@ index 0000000..bcb9d76 + struct acpi_device *companion; + void *iommu; + void *fwnode; -+ bool vmd_domain; ++ struct pci_dev *vmd_dev; +}; + +enum { @@ -23433,6 +23208,8 @@ index 0000000..bcb9d76 + ATI_FORCE_HPET_RESUME = 5, +}; + ++typedef struct pglist_data pg_data_t; ++ +enum meminit_context { + MEMINIT_EARLY = 0, + MEMINIT_HOTPLUG = 1, @@ -23459,14 +23236,12 @@ index 0000000..bcb9d76 + u32 len; +}; + -+struct smp_alt_module { -+ struct module *mod; -+ char *name; -+ const s32 *locks; -+ const s32 *locks_end; -+ u8 *text; -+ u8 *text_end; -+ struct list_head next; ++typedef int (*cmp_func_t)(const void *, const void *); ++ ++struct paravirt_patch_site { ++ u8 *instr; ++ u8 type; ++ u8 len; +}; + +struct die_args { @@ -23477,70 +23252,36 @@ index 0000000..bcb9d76 + int signr; +}; + -+struct user_i387_struct { -+ short unsigned int cwd; -+ short unsigned int swd; -+ short unsigned int twd; -+ short unsigned int fop; -+ __u64 rip; -+ __u64 rdp; -+ __u32 mxcsr; -+ __u32 mxcsr_mask; -+ __u32 st_space[32]; -+ __u32 xmm_space[64]; -+ __u32 padding[24]; ++struct tlb_state_shared { ++ bool is_lazy; +}; + -+struct user_regs_struct { -+ long unsigned int r15; -+ long unsigned int r14; -+ long unsigned int r13; -+ long unsigned int r12; -+ long unsigned int bp; -+ long unsigned int bx; -+ long unsigned int r11; -+ long unsigned int r10; -+ long unsigned int r9; -+ long unsigned int r8; -+ long unsigned int ax; -+ long unsigned int cx; -+ long unsigned int dx; -+ long unsigned int si; -+ long unsigned int di; -+ long unsigned int orig_ax; -+ long unsigned int ip; -+ long unsigned int cs; -+ long unsigned int flags; -+ long unsigned int sp; -+ long unsigned int ss; -+ long unsigned int fs_base; -+ long unsigned int gs_base; -+ long unsigned int ds; -+ long unsigned int es; -+ long unsigned int fs; -+ long unsigned int gs; ++struct smp_alt_module { ++ struct module *mod; ++ char *name; ++ const s32 *locks; ++ const s32 *locks_end; ++ u8 *text; ++ u8 *text_end; ++ struct list_head next; +}; + -+struct user { -+ struct user_regs_struct regs; -+ int u_fpvalid; -+ int pad0; -+ struct user_i387_struct i387; -+ long unsigned int u_tsize; -+ long unsigned int u_dsize; -+ long unsigned int u_ssize; -+ long unsigned int start_code; -+ long unsigned int start_stack; -+ long int signal; -+ int reserved; -+ int pad1; -+ long unsigned int u_ar0; -+ struct user_i387_struct *u_fpstate; -+ long unsigned int magic; -+ char u_comm[32]; -+ long unsigned int u_debugreg[8]; -+ long unsigned int error_code; -+ long unsigned int fault_address; ++typedef struct { ++ struct mm_struct *mm; ++} temp_mm_state_t; ++ ++struct text_poke_loc { ++ s32 rel_addr; ++ s32 rel32; ++ u8 opcode; ++ const u8 text[5]; ++ u8 old; ++}; ++ ++struct bp_patching_desc { ++ struct text_poke_loc *vec; ++ int nr_entries; ++ atomic_t refs; +}; + +enum { @@ -23572,8 +23313,137 @@ index 0000000..bcb9d76 + struct clocksource *cs; +}; + -+struct cpufreq_freqs { ++struct plist_head { ++ struct list_head node_list; ++}; ++ ++typedef struct { ++ seqcount_t seqcount; ++} seqcount_latch_t; ++ ++enum pm_qos_type { ++ PM_QOS_UNITIALIZED = 0, ++ PM_QOS_MAX = 1, ++ PM_QOS_MIN = 2, ++}; ++ ++struct pm_qos_constraints { ++ struct plist_head list; ++ s32 target_value; ++ s32 default_value; ++ s32 no_constraint_value; ++ enum pm_qos_type type; ++ struct blocking_notifier_head *notifiers; ++}; ++ ++enum freq_qos_req_type { ++ FREQ_QOS_MIN = 1, ++ FREQ_QOS_MAX = 2, ++}; ++ ++struct freq_constraints { ++ struct pm_qos_constraints min_freq; ++ struct blocking_notifier_head min_freq_notifiers; ++ struct pm_qos_constraints max_freq; ++ struct blocking_notifier_head max_freq_notifiers; ++}; ++ ++struct freq_qos_request { ++ enum freq_qos_req_type type; ++ struct plist_node pnode; ++ struct freq_constraints *qos; ++}; ++ ++enum cpufreq_table_sorting { ++ CPUFREQ_TABLE_UNSORTED = 0, ++ CPUFREQ_TABLE_SORTED_ASCENDING = 1, ++ CPUFREQ_TABLE_SORTED_DESCENDING = 2, ++}; ++ ++struct cpufreq_cpuinfo { ++ unsigned int max_freq; ++ unsigned int min_freq; ++ unsigned int transition_latency; ++}; ++ ++struct clk; ++ ++struct cpufreq_governor; ++ ++struct cpufreq_frequency_table; ++ ++struct cpufreq_stats; ++ ++struct thermal_cooling_device; ++ ++struct cpufreq_policy { ++ cpumask_var_t cpus; ++ cpumask_var_t related_cpus; ++ cpumask_var_t real_cpus; ++ unsigned int shared_type; + unsigned int cpu; ++ struct clk *clk; ++ struct cpufreq_cpuinfo cpuinfo; ++ unsigned int min; ++ unsigned int max; ++ unsigned int cur; ++ unsigned int restore_freq; ++ unsigned int suspend_freq; ++ unsigned int policy; ++ unsigned int last_policy; ++ struct cpufreq_governor *governor; ++ void *governor_data; ++ char last_governor[16]; ++ struct work_struct update; ++ struct freq_constraints constraints; ++ struct freq_qos_request *min_freq_req; ++ struct freq_qos_request *max_freq_req; ++ struct cpufreq_frequency_table *freq_table; ++ enum cpufreq_table_sorting freq_table_sorted; ++ struct list_head policy_list; ++ struct kobject kobj; ++ struct completion kobj_unregister; ++ struct rw_semaphore rwsem; ++ bool fast_switch_possible; ++ bool fast_switch_enabled; ++ bool strict_target; ++ unsigned int transition_delay_us; ++ bool dvfs_possible_from_any_cpu; ++ unsigned int cached_target_freq; ++ unsigned int cached_resolved_idx; ++ bool transition_ongoing; ++ spinlock_t transition_lock; ++ wait_queue_head_t transition_wait; ++ struct task_struct *transition_task; ++ struct cpufreq_stats *stats; ++ void *driver_data; ++ struct thermal_cooling_device *cdev; ++ struct notifier_block nb_min; ++ struct notifier_block nb_max; ++}; ++ ++struct cpufreq_governor { ++ char name[16]; ++ int (*init)(struct cpufreq_policy *); ++ void (*exit)(struct cpufreq_policy *); ++ int (*start)(struct cpufreq_policy *); ++ void (*stop)(struct cpufreq_policy *); ++ void (*limits)(struct cpufreq_policy *); ++ ssize_t (*show_setspeed)(struct cpufreq_policy *, char *); ++ int (*store_setspeed)(struct cpufreq_policy *, unsigned int); ++ struct list_head governor_list; ++ struct module *owner; ++ u8 flags; ++}; ++ ++struct cpufreq_frequency_table { ++ unsigned int flags; ++ unsigned int driver_data; ++ unsigned int frequency; ++}; ++ ++struct cpufreq_freqs { ++ struct cpufreq_policy *policy; + unsigned int old; + unsigned int new; + u8 flags; @@ -23581,12 +23451,19 @@ index 0000000..bcb9d76 + +struct cyc2ns { + struct cyc2ns_data data[2]; -+ seqcount_t seq; ++ seqcount_latch_t seq; ++}; ++ ++struct muldiv { ++ u32 multiplier; ++ u32 divider; +}; + +struct freq_desc { -+ u8 msr_plat; -+ u32 freqs[9]; ++ bool use_msr_plat; ++ struct muldiv muldiv[16]; ++ u32 freqs[16]; ++ u32 mask; +}; + +struct dmi_strmatch { @@ -23613,6 +23490,8 @@ index 0000000..bcb9d76 + int id; + bool id_auto; + struct device dev; ++ u64 platform_dma_mask; ++ struct device_dma_parameters dma_parms; + u32 num_resources; + struct resource *resource; + const struct platform_device_id *id_entry; @@ -23651,6 +23530,85 @@ index 0000000..bcb9d76 + } devs[8]; +}; + ++struct acpi_table_header { ++ char signature[4]; ++ u32 length; ++ u8 revision; ++ u8 checksum; ++ char oem_id[6]; ++ char oem_table_id[8]; ++ u32 oem_revision; ++ char asl_compiler_id[4]; ++ u32 asl_compiler_revision; ++}; ++ ++struct acpi_generic_address { ++ u8 space_id; ++ u8 bit_width; ++ u8 bit_offset; ++ u8 access_width; ++ u64 address; ++} __attribute__((packed)); ++ ++struct acpi_table_fadt { ++ struct acpi_table_header header; ++ u32 facs; ++ u32 dsdt; ++ u8 model; ++ u8 preferred_profile; ++ u16 sci_interrupt; ++ u32 smi_command; ++ u8 acpi_enable; ++ u8 acpi_disable; ++ u8 s4_bios_request; ++ u8 pstate_control; ++ u32 pm1a_event_block; ++ u32 pm1b_event_block; ++ u32 pm1a_control_block; ++ u32 pm1b_control_block; ++ u32 pm2_control_block; ++ u32 pm_timer_block; ++ u32 gpe0_block; ++ u32 gpe1_block; ++ u8 pm1_event_length; ++ u8 pm1_control_length; ++ u8 pm2_control_length; ++ u8 pm_timer_length; ++ u8 gpe0_block_length; ++ u8 gpe1_block_length; ++ u8 gpe1_base; ++ u8 cst_control; ++ u16 c2_latency; ++ u16 c3_latency; ++ u16 flush_size; ++ u16 flush_stride; ++ u8 duty_offset; ++ u8 duty_width; ++ u8 day_alarm; ++ u8 month_alarm; ++ u8 century; ++ u16 boot_flags; ++ u8 reserved; ++ u32 flags; ++ struct acpi_generic_address reset_register; ++ u8 reset_value; ++ u16 arm_boot_flags; ++ u8 minor_revision; ++ u64 Xfacs; ++ u64 Xdsdt; ++ struct acpi_generic_address xpm1a_event_block; ++ struct acpi_generic_address xpm1b_event_block; ++ struct acpi_generic_address xpm1a_control_block; ++ struct acpi_generic_address xpm1b_control_block; ++ struct acpi_generic_address xpm2_control_block; ++ struct acpi_generic_address xpm_timer_block; ++ struct acpi_generic_address xgpe0_block; ++ struct acpi_generic_address xgpe1_block; ++ struct acpi_generic_address sleep_control; ++ struct acpi_generic_address sleep_status; ++ u64 hypervisor_id; ++} __attribute__((packed)); ++ +struct pnp_protocol; + +struct pnp_id; @@ -23703,7 +23661,7 @@ index 0000000..bcb9d76 +}; + +struct pnp_driver { -+ char *name; ++ const char *name; + const struct pnp_device_id *id_table; + unsigned int flags; + int (*probe)(struct pnp_dev *, const struct pnp_device_id *); @@ -23751,22 +23709,14 @@ index 0000000..bcb9d76 + void *data; +}; + -+struct sfi_rtc_table_entry { -+ u64 phys_addr; -+ u32 irq; -+} __attribute__((packed)); -+ -+enum intel_mid_cpu_type { -+ INTEL_MID_CPU_CHIP_PENWELL = 2, -+ INTEL_MID_CPU_CHIP_CLOVERVIEW = 3, -+ INTEL_MID_CPU_CHIP_TANGIER = 4, ++enum insn_type { ++ CALL = 0, ++ NOP = 1, ++ JMP = 2, ++ RET = 3, +}; + -+enum intel_mid_timer_options { -+ INTEL_MID_TIMER_DEFAULT = 0, -+ INTEL_MID_TIMER_APBT_ONLY = 1, -+ INTEL_MID_TIMER_LAPIC_APBT = 2, -+}; ++typedef struct ldttss_desc tss_desc; + +enum idle_boot_override { + IDLE_NO_OVERRIDE = 0, @@ -23775,26 +23725,6 @@ index 0000000..bcb9d76 + IDLE_POLL = 3, +}; + -+struct plist_head { -+ struct list_head node_list; -+}; -+ -+enum pm_qos_type { -+ PM_QOS_UNITIALIZED = 0, -+ PM_QOS_MAX = 1, -+ PM_QOS_MIN = 2, -+ PM_QOS_SUM = 3, -+}; -+ -+struct pm_qos_constraints { -+ struct plist_head list; -+ s32 target_value; -+ s32 default_value; -+ s32 no_constraint_value; -+ enum pm_qos_type type; -+ struct blocking_notifier_head *notifiers; -+}; -+ +struct pm_qos_flags { + struct list_head list; + s32 effective_flags; @@ -23805,10 +23735,13 @@ index 0000000..bcb9d76 +struct dev_pm_qos { + struct pm_qos_constraints resume_latency; + struct pm_qos_constraints latency_tolerance; ++ struct freq_constraints freq; + struct pm_qos_flags flags; + struct dev_pm_qos_request *resume_latency_req; + struct dev_pm_qos_request *latency_tolerance_req; + struct dev_pm_qos_request *flags_req; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +enum tick_broadcast_mode { @@ -23822,34 +23755,6 @@ index 0000000..bcb9d76 + TICK_BROADCAST_ENTER = 1, +}; + -+struct cpuidle_state_usage { -+ long long unsigned int disable; -+ long long unsigned int usage; -+ long long unsigned int time; -+ long long unsigned int s2idle_usage; -+ long long unsigned int s2idle_time; -+}; -+ -+struct cpuidle_driver_kobj; -+ -+struct cpuidle_state_kobj; -+ -+struct cpuidle_device_kobj; -+ -+struct cpuidle_device { -+ unsigned int registered: 1; -+ unsigned int enabled: 1; -+ unsigned int use_deepest_state: 1; -+ unsigned int poll_time_limit: 1; -+ unsigned int cpu; -+ int last_residency; -+ struct cpuidle_state_usage states_usage[10]; -+ struct cpuidle_state_kobj *kobjs[10]; -+ struct cpuidle_driver_kobj *kobj_driver; -+ struct cpuidle_device_kobj *kobj_dev; -+ struct list_head device_list; -+}; -+ +struct pm_qos_flags_request { + struct list_head node; + s32 flags; @@ -23858,7 +23763,9 @@ index 0000000..bcb9d76 +enum dev_pm_qos_req_type { + DEV_PM_QOS_RESUME_LATENCY = 1, + DEV_PM_QOS_LATENCY_TOLERANCE = 2, -+ DEV_PM_QOS_FLAGS = 3, ++ DEV_PM_QOS_MIN_FREQUENCY = 3, ++ DEV_PM_QOS_MAX_FREQUENCY = 4, ++ DEV_PM_QOS_FLAGS = 5, +}; + +struct dev_pm_qos_request { @@ -23866,8 +23773,26 @@ index 0000000..bcb9d76 + union { + struct plist_node pnode; + struct pm_qos_flags_request flr; ++ struct freq_qos_request freq; + } data; + struct device *dev; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct inactive_task_frame { ++ long unsigned int r15; ++ long unsigned int r14; ++ long unsigned int r13; ++ long unsigned int r12; ++ long unsigned int bx; ++ long unsigned int bp; ++ long unsigned int ret_addr; ++}; ++ ++struct fork_frame { ++ struct inactive_task_frame frame; ++ struct pt_regs regs; +}; + +struct ssb_state { @@ -23880,7 +23805,7 @@ index 0000000..bcb9d76 +struct trace_event_raw_x86_fpu { + struct trace_entry ent; + struct fpu *fpu; -+ bool initialized; ++ bool load_fpu; + u64 xfeatures; + u64 xcomp_bv; + char __data[0]; @@ -23888,6 +23813,28 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_x86_fpu {}; + ++typedef void (*btf_trace_x86_fpu_before_save)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_after_save)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_before_restore)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_after_restore)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_regs_activated)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_regs_deactivated)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_init_state)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_dropped)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_copy_src)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_copy_dst)(void *, struct fpu *); ++ ++typedef void (*btf_trace_x86_fpu_xstate_check_failed)(void *, struct fpu *); ++ +struct _fpreg { + __u16 significand[4]; + __u16 exponent; @@ -23910,24 +23857,26 @@ index 0000000..bcb9d76 + u32 st_space[20]; +}; + ++struct membuf { ++ void *p; ++ size_t left; ++}; ++ +struct user_regset; + +typedef int user_regset_active_fn(struct task_struct *, const struct user_regset *); + -+typedef int user_regset_get_fn(struct task_struct *, const struct user_regset *, unsigned int, unsigned int, void *, void *); ++typedef int user_regset_get2_fn(struct task_struct *, const struct user_regset *, struct membuf); + +typedef int user_regset_set_fn(struct task_struct *, const struct user_regset *, unsigned int, unsigned int, const void *, const void *); + +typedef int user_regset_writeback_fn(struct task_struct *, const struct user_regset *, int); + -+typedef unsigned int user_regset_get_size_fn(struct task_struct *, const struct user_regset *); -+ +struct user_regset { -+ user_regset_get_fn *get; ++ user_regset_get2_fn *regset_get; + user_regset_set_fn *set; + user_regset_active_fn *active; + user_regset_writeback_fn *writeback; -+ user_regset_get_size_fn *get_size; + unsigned int n; + unsigned int size; + unsigned int align; @@ -24008,22 +23957,45 @@ index 0000000..bcb9d76 + TB_SHUTDOWN_WFS = 5, +}; + -+struct wakeup_header { -+ u16 video_mode; -+ u32 pmode_entry; -+ u16 pmode_cs; -+ u32 pmode_cr0; -+ u32 pmode_cr3; -+ u32 pmode_cr4; -+ u32 pmode_efer_low; -+ u32 pmode_efer_high; -+ u64 pmode_gdt; -+ u32 pmode_misc_en_low; -+ u32 pmode_misc_en_high; -+ u32 pmode_behavior; -+ u32 realmode_flags; -+ u32 real_magic; -+ u32 signature; ++struct tboot_mac_region { ++ u64 start; ++ u32 size; ++} __attribute__((packed)); ++ ++struct tboot_acpi_generic_address { ++ u8 space_id; ++ u8 bit_width; ++ u8 bit_offset; ++ u8 access_width; ++ u64 address; ++} __attribute__((packed)); ++ ++struct tboot_acpi_sleep_info { ++ struct tboot_acpi_generic_address pm1a_cnt_blk; ++ struct tboot_acpi_generic_address pm1b_cnt_blk; ++ struct tboot_acpi_generic_address pm1a_evt_blk; ++ struct tboot_acpi_generic_address pm1b_evt_blk; ++ u16 pm1a_cnt_val; ++ u16 pm1b_cnt_val; ++ u64 wakeup_vector; ++ u32 vector_width; ++ u64 kernel_s3_resume_vector; ++} __attribute__((packed)); ++ ++struct tboot { ++ u8 uuid[16]; ++ u32 version; ++ u32 log_addr; ++ u32 shutdown_entry; ++ u32 shutdown_type; ++ struct tboot_acpi_sleep_info acpi_sinfo; ++ u32 tboot_base; ++ u32 tboot_size; ++ u8 num_mac_regions; ++ struct tboot_mac_region mac_regions[32]; ++ u8 s3_key[64]; ++ u8 reserved_align[3]; ++ u32 num_in_wfs; +} __attribute__((packed)); + +struct sha1_hash { @@ -24048,6 +24020,8 @@ index 0000000..bcb9d76 + u32 vtd_dmars_off; +} __attribute__((packed)); + ++typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); ++ +struct stack_frame_user { + const void *next_fp; + long unsigned int ret_addr; @@ -24105,6 +24079,7 @@ index 0000000..bcb9d76 + struct kobject *kobj; + struct threshold_block *blocks; + refcount_t cpus; ++ unsigned int shared; +}; + +struct amd_northbridge { @@ -24115,24 +24090,6 @@ index 0000000..bcb9d76 + struct threshold_bank *bank4; +}; + -+struct cpu_dev { -+ const char *c_vendor; -+ const char *c_ident[2]; -+ void (*c_early_init)(struct cpuinfo_x86 *); -+ void (*c_bsp_init)(struct cpuinfo_x86 *); -+ void (*c_init)(struct cpuinfo_x86 *); -+ void (*c_identify)(struct cpuinfo_x86 *); -+ void (*c_detect_tlb)(struct cpuinfo_x86 *); -+ void (*c_bsp_resume)(struct cpuinfo_x86 *); -+ int c_x86_vendor; -+}; -+ -+enum tsx_ctrl_states { -+ TSX_CTRL_ENABLE = 0, -+ TSX_CTRL_DISABLE = 1, -+ TSX_CTRL_NOT_SUPPORTED = 2, -+}; -+ +struct _cache_table { + unsigned char descriptor; + char cache_type; @@ -24245,18 +24202,51 @@ index 0000000..bcb9d76 + CPUID_7_EDX = 18, +}; + ++enum kgdb_bptype { ++ BP_BREAKPOINT = 0, ++ BP_HARDWARE_BREAKPOINT = 1, ++ BP_WRITE_WATCHPOINT = 2, ++ BP_READ_WATCHPOINT = 3, ++ BP_ACCESS_WATCHPOINT = 4, ++ BP_POKE_BREAKPOINT = 5, ++}; ++ ++struct kgdb_arch { ++ unsigned char gdb_bpt_instr[1]; ++ long unsigned int flags; ++ int (*set_breakpoint)(long unsigned int, char *); ++ int (*remove_breakpoint)(long unsigned int, char *); ++ int (*set_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); ++ int (*remove_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); ++ void (*disable_hw_break)(struct pt_regs *); ++ void (*remove_all_hw_break)(); ++ void (*correct_hw_break)(); ++ void (*enable_nmi)(bool); ++}; ++ ++struct cpu_dev { ++ const char *c_vendor; ++ const char *c_ident[2]; ++ void (*c_early_init)(struct cpuinfo_x86 *); ++ void (*c_bsp_init)(struct cpuinfo_x86 *); ++ void (*c_init)(struct cpuinfo_x86 *); ++ void (*c_identify)(struct cpuinfo_x86 *); ++ void (*c_detect_tlb)(struct cpuinfo_x86 *); ++ int c_x86_vendor; ++}; ++ +struct cpuid_dependent_feature { + u32 feature; + u32 level; +}; + -+typedef u32 pao_T_____4; -+ +enum spectre_v2_mitigation { + SPECTRE_V2_NONE = 0, -+ SPECTRE_V2_RETPOLINE_GENERIC = 1, -+ SPECTRE_V2_RETPOLINE_AMD = 2, -+ SPECTRE_V2_IBRS_ENHANCED = 3, ++ SPECTRE_V2_RETPOLINE = 1, ++ SPECTRE_V2_LFENCE = 2, ++ SPECTRE_V2_EIBRS = 3, ++ SPECTRE_V2_EIBRS_RETPOLINE = 4, ++ SPECTRE_V2_EIBRS_LFENCE = 5, +}; + +enum spectre_v2_user_mitigation { @@ -24274,17 +24264,27 @@ index 0000000..bcb9d76 + SPEC_STORE_BYPASS_SECCOMP = 3, +}; + ++enum l1tf_mitigations { ++ L1TF_MITIGATION_OFF = 0, ++ L1TF_MITIGATION_FLUSH_NOWARN = 1, ++ L1TF_MITIGATION_FLUSH = 2, ++ L1TF_MITIGATION_FLUSH_NOSMT = 3, ++ L1TF_MITIGATION_FULL = 4, ++ L1TF_MITIGATION_FULL_FORCE = 5, ++}; ++ +enum mds_mitigations { + MDS_MITIGATION_OFF = 0, + MDS_MITIGATION_FULL = 1, + MDS_MITIGATION_VMWERV = 2, +}; + -+enum taa_mitigations { -+ TAA_MITIGATION_OFF = 0, -+ TAA_MITIGATION_UCODE_NEEDED = 1, -+ TAA_MITIGATION_VERW = 2, -+ TAA_MITIGATION_TSX_DISABLED = 3, ++enum cpuhp_smt_control { ++ CPU_SMT_ENABLED = 0, ++ CPU_SMT_DISABLED = 1, ++ CPU_SMT_FORCE_DISABLED = 2, ++ CPU_SMT_NOT_SUPPORTED = 3, ++ CPU_SMT_NOT_IMPLEMENTED = 4, +}; + +enum vmx_l1d_flush_state { @@ -24296,6 +24296,19 @@ index 0000000..bcb9d76 + VMENTER_L1D_FLUSH_NOT_REQUIRED = 5, +}; + ++enum taa_mitigations { ++ TAA_MITIGATION_OFF = 0, ++ TAA_MITIGATION_UCODE_NEEDED = 1, ++ TAA_MITIGATION_VERW = 2, ++ TAA_MITIGATION_TSX_DISABLED = 3, ++}; ++ ++enum mmio_mitigations { ++ MMIO_MITIGATION_OFF = 0, ++ MMIO_MITIGATION_UCODE_NEEDED = 1, ++ MMIO_MITIGATION_VERW = 2, ++}; ++ +enum srbds_mitigations { + SRBDS_MITIGATION_OFF = 0, + SRBDS_MITIGATION_UCODE_NEEDED = 1, @@ -24315,7 +24328,10 @@ index 0000000..bcb9d76 + SPECTRE_V2_CMD_FORCE = 2, + SPECTRE_V2_CMD_RETPOLINE = 3, + SPECTRE_V2_CMD_RETPOLINE_GENERIC = 4, -+ SPECTRE_V2_CMD_RETPOLINE_AMD = 5, ++ SPECTRE_V2_CMD_RETPOLINE_LFENCE = 5, ++ SPECTRE_V2_CMD_EIBRS = 6, ++ SPECTRE_V2_CMD_EIBRS_RETPOLINE = 7, ++ SPECTRE_V2_CMD_EIBRS_LFENCE = 8, +}; + +enum spectre_v2_user_cmd { @@ -24336,6 +24352,18 @@ index 0000000..bcb9d76 + SPEC_STORE_BYPASS_CMD_SECCOMP = 4, +}; + ++enum hk_flags { ++ HK_FLAG_TIMER = 1, ++ HK_FLAG_RCU = 2, ++ HK_FLAG_MISC = 4, ++ HK_FLAG_SCHED = 8, ++ HK_FLAG_TICK = 16, ++ HK_FLAG_DOMAIN = 32, ++ HK_FLAG_WQ = 64, ++ HK_FLAG_MANAGED_IRQ = 128, ++ HK_FLAG_KTHREAD = 256, ++}; ++ +struct aperfmperf_sample { + unsigned int khz; + ktime_t time; @@ -24348,6 +24376,13 @@ index 0000000..bcb9d76 + unsigned int depends; +}; + ++enum vmx_feature_leafs { ++ MISC_FEATURES = 0, ++ PRIMARY_CTLS = 1, ++ SECONDARY_CTLS = 2, ++ NR_VMX_FEATURE_WORDS = 3, ++}; ++ +struct _tlb_table { + unsigned char descriptor; + char tlb_type; @@ -24355,6 +24390,18 @@ index 0000000..bcb9d76 + char info[128]; +}; + ++enum tsx_ctrl_states { ++ TSX_CTRL_ENABLE = 0, ++ TSX_CTRL_DISABLE = 1, ++ TSX_CTRL_NOT_SUPPORTED = 2, ++}; ++ ++enum split_lock_detect_state { ++ sld_off = 0, ++ sld_warn = 1, ++ sld_fatal = 2, ++}; ++ +struct sku_microcode { + u8 model; + u8 stepping; @@ -24379,6 +24426,12 @@ index 0000000..bcb9d76 + PCONFIG_CPUID_SUBLEAF_TARGETID = 1, +}; + ++enum task_work_notify_mode { ++ TWA_NONE = 0, ++ TWA_RESUME = 1, ++ TWA_SIGNAL = 2, ++}; ++ +enum mf_flags { + MF_COUNT_INCREASED = 1, + MF_ACTION_REQUIRED = 2, @@ -24386,20 +24439,53 @@ index 0000000..bcb9d76 + MF_SOFT_OFFLINE = 8, +}; + -+enum mce_notifier_prios { -+ MCE_PRIO_FIRST = 2147483647, -+ MCE_PRIO_SRAO = 2147483646, -+ MCE_PRIO_EXTLOG = 2147483645, -+ MCE_PRIO_NFIT = 2147483644, -+ MCE_PRIO_EDAC = 2147483643, -+ MCE_PRIO_MCELOG = 1, -+ MCE_PRIO_LOWEST = 0, ++struct mce { ++ __u64 status; ++ __u64 misc; ++ __u64 addr; ++ __u64 mcgstatus; ++ __u64 ip; ++ __u64 tsc; ++ __u64 time; ++ __u8 cpuvendor; ++ __u8 inject_flags; ++ __u8 severity; ++ __u8 pad; ++ __u32 cpuid; ++ __u8 cs; ++ __u8 bank; ++ __u8 cpu; ++ __u8 finished; ++ __u32 extcpu; ++ __u32 socketid; ++ __u32 apicid; ++ __u64 mcgcap; ++ __u64 synd; ++ __u64 ipid; ++ __u64 ppin; ++ __u32 microcode; ++ __u64 kflags; +}; + ++enum mce_notifier_prios { ++ MCE_PRIO_LOWEST = 0, ++ MCE_PRIO_MCELOG = 1, ++ MCE_PRIO_EDAC = 2, ++ MCE_PRIO_NFIT = 3, ++ MCE_PRIO_EXTLOG = 4, ++ MCE_PRIO_UC = 5, ++ MCE_PRIO_EARLY = 6, ++ MCE_PRIO_CEC = 7, ++ MCE_PRIO_HIGHEST = 7, ++}; ++ ++typedef long unsigned int mce_banks_t[1]; ++ +enum mcp_flags { + MCP_TIMESTAMP = 1, + MCP_UC = 2, + MCP_DONTLOG = 4, ++ MCP_QUEUE_LOG = 8, +}; + +enum severity_level { @@ -24414,13 +24500,6 @@ index 0000000..bcb9d76 + MCE_PANIC_SEVERITY = 7, +}; + -+struct mce_bank { -+ u64 ctl; -+ unsigned char init; -+ struct device_attribute attr; -+ char attrname[16]; -+}; -+ +struct mce_evt_llist { + struct llist_node llnode; + struct mce mce; @@ -24430,14 +24509,14 @@ index 0000000..bcb9d76 + bool dont_log_ce; + bool cmci_disabled; + bool ignore_ce; ++ bool print_all; + __u64 lmce_disabled: 1; + __u64 disabled: 1; + __u64 ser: 1; + __u64 recovery: 1; + __u64 bios_cmci_threshold: 1; -+ long: 35; ++ int: 27; + __u64 __reserved: 59; -+ u8 banks; + s8 bootlog; + int tolerant; + int monarch_timeout; @@ -24449,7 +24528,8 @@ index 0000000..bcb9d76 + __u64 overflow_recov: 1; + __u64 succor: 1; + __u64 smca: 1; -+ __u64 __reserved_0: 61; ++ __u64 amd_threshold: 1; ++ __u64 __reserved_0: 60; +}; + +struct mca_msr_regs { @@ -24483,6 +24563,26 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_mce_record {}; + ++typedef void (*btf_trace_mce_record)(void *, struct mce *); ++ ++struct mce_bank { ++ u64 ctl; ++ bool init; ++}; ++ ++struct mce_bank_dev { ++ struct device_attribute attr; ++ char attrname[16]; ++ u8 bank; ++}; ++ ++enum handler_type { ++ EX_HANDLER_NONE = 0, ++ EX_HANDLER_FAULT = 1, ++ EX_HANDLER_UACCESS = 2, ++ EX_HANDLER_OTHER = 3, ++}; ++ +enum context { + IN_KERNEL = 1, + IN_USER = 2, @@ -24509,6 +24609,10 @@ index 0000000..bcb9d76 + unsigned char context; + unsigned char excp; + unsigned char covered; ++ unsigned char cpu_model; ++ unsigned char cpu_minstepping; ++ unsigned char bank_lo; ++ unsigned char bank_hi; + char *msg; +}; + @@ -24531,8 +24635,6 @@ index 0000000..bcb9d76 + CMCI_STORM_SUBSIDED = 2, +}; + -+typedef unsigned int pto_T_____12; -+ +enum kobject_action { + KOBJ_ADD = 0, + KOBJ_REMOVE = 1, @@ -24542,25 +24644,43 @@ index 0000000..bcb9d76 + KOBJ_OFFLINE = 5, + KOBJ_BIND = 6, + KOBJ_UNBIND = 7, -+ KOBJ_MAX = 8, +}; + +enum smca_bank_types { + SMCA_LS = 0, -+ SMCA_IF = 1, -+ SMCA_L2_CACHE = 2, -+ SMCA_DE = 3, -+ SMCA_RESERVED = 4, -+ SMCA_EX = 5, -+ SMCA_FP = 6, -+ SMCA_L3_CACHE = 7, -+ SMCA_CS = 8, -+ SMCA_PIE = 9, -+ SMCA_UMC = 10, -+ SMCA_PB = 11, -+ SMCA_PSP = 12, -+ SMCA_SMU = 13, -+ N_SMCA_BANK_TYPES = 14, ++ SMCA_LS_V2 = 1, ++ SMCA_IF = 2, ++ SMCA_L2_CACHE = 3, ++ SMCA_DE = 4, ++ SMCA_RESERVED = 5, ++ SMCA_EX = 6, ++ SMCA_FP = 7, ++ SMCA_L3_CACHE = 8, ++ SMCA_CS = 9, ++ SMCA_CS_V2 = 10, ++ SMCA_PIE = 11, ++ SMCA_UMC = 12, ++ SMCA_PB = 13, ++ SMCA_PSP = 14, ++ SMCA_PSP_V2 = 15, ++ SMCA_SMU = 16, ++ SMCA_SMU_V2 = 17, ++ SMCA_MP5 = 18, ++ SMCA_NBIO = 19, ++ SMCA_PCIE = 20, ++ N_SMCA_BANK_TYPES = 21, ++}; ++ ++struct smca_hwid { ++ unsigned int bank_type; ++ u32 hwid_mcatype; ++ u8 count; ++}; ++ ++struct smca_bank { ++ struct smca_hwid *hwid; ++ u32 id; ++ u8 sysfs_id; +}; + +struct smca_bank_name { @@ -24582,25 +24702,6 @@ index 0000000..bcb9d76 + ssize_t (*store)(struct threshold_block *, const char *, size_t); +}; + -+struct _thermal_state { -+ bool new_event; -+ int event; -+ u64 next_check; -+ long unsigned int count; -+ long unsigned int last_count; -+}; -+ -+struct thermal_state { -+ struct _thermal_state core_throttle; -+ struct _thermal_state core_power_limit; -+ struct _thermal_state package_throttle; -+ struct _thermal_state package_power_limit; -+ struct _thermal_state core_thresh0; -+ struct _thermal_state core_thresh1; -+ struct _thermal_state pkg_thresh0; -+ struct _thermal_state pkg_thresh1; -+}; -+ +enum { + CPER_SEV_RECOVERABLE = 0, + CPER_SEV_FATAL = 1, @@ -24610,57 +24711,57 @@ index 0000000..bcb9d76 + +struct cper_record_header { + char signature[4]; -+ __u16 revision; -+ __u32 signature_end; -+ __u16 section_count; -+ __u32 error_severity; -+ __u32 validation_bits; -+ __u32 record_length; -+ __u64 timestamp; ++ u16 revision; ++ u32 signature_end; ++ u16 section_count; ++ u32 error_severity; ++ u32 validation_bits; ++ u32 record_length; ++ u64 timestamp; + guid_t platform_id; + guid_t partition_id; + guid_t creator_id; + guid_t notification_type; -+ __u64 record_id; -+ __u32 flags; -+ __u64 persistence_information; -+ __u8 reserved[12]; ++ u64 record_id; ++ u32 flags; ++ u64 persistence_information; ++ u8 reserved[12]; +} __attribute__((packed)); + +struct cper_section_descriptor { -+ __u32 section_offset; -+ __u32 section_length; -+ __u16 revision; -+ __u8 validation_bits; -+ __u8 reserved; -+ __u32 flags; ++ u32 section_offset; ++ u32 section_length; ++ u16 revision; ++ u8 validation_bits; ++ u8 reserved; ++ u32 flags; + guid_t section_type; + guid_t fru_id; -+ __u32 section_severity; -+ __u8 fru_text[20]; ++ u32 section_severity; ++ u8 fru_text[20]; +}; + +struct cper_sec_mem_err { -+ __u64 validation_bits; -+ __u64 error_status; -+ __u64 physical_addr; -+ __u64 physical_addr_mask; -+ __u16 node; -+ __u16 card; -+ __u16 module; -+ __u16 bank; -+ __u16 device; -+ __u16 row; -+ __u16 column; -+ __u16 bit_pos; -+ __u64 requestor_id; -+ __u64 responder_id; -+ __u64 target_id; -+ __u8 error_type; -+ __u8 reserved; -+ __u16 rank; -+ __u16 mem_array_handle; -+ __u16 mem_dev_handle; ++ u64 validation_bits; ++ u64 error_status; ++ u64 physical_addr; ++ u64 physical_addr_mask; ++ u16 node; ++ u16 card; ++ u16 module; ++ u16 bank; ++ u16 device; ++ u16 row; ++ u16 column; ++ u16 bit_pos; ++ u64 requestor_id; ++ u64 responder_id; ++ u64 target_id; ++ u8 error_type; ++ u8 extended; ++ u16 rank; ++ u16 mem_array_handle; ++ u16 mem_dev_handle; +}; + +enum { @@ -24696,26 +24797,11 @@ index 0000000..bcb9d76 + unsigned int next; + unsigned int flags; + unsigned int recordlen; -+ struct mce entry[32]; -+}; -+ -+struct mtrr_var_range { -+ __u32 base_lo; -+ __u32 base_hi; -+ __u32 mask_lo; -+ __u32 mask_hi; ++ struct mce entry[0]; +}; + +typedef __u8 mtrr_type; + -+struct mtrr_state_type { -+ struct mtrr_var_range var_ranges[256]; -+ mtrr_type fixed_ranges[88]; -+ unsigned char enabled; -+ unsigned char have_fixed; -+ mtrr_type def_type; -+}; -+ +struct mtrr_ops { + u32 vendor; + u32 use_intel_if; @@ -24740,6 +24826,21 @@ index 0000000..bcb9d76 + long unsigned int lsize; +}; + ++struct proc_ops { ++ unsigned int proc_flags; ++ int (*proc_open)(struct inode *, struct file *); ++ ssize_t (*proc_read)(struct file *, char *, size_t, loff_t *); ++ ssize_t (*proc_read_iter)(struct kiocb *, struct iov_iter *); ++ ssize_t (*proc_write)(struct file *, const char *, size_t, loff_t *); ++ loff_t (*proc_lseek)(struct file *, loff_t, int); ++ int (*proc_release)(struct inode *, struct file *); ++ __poll_t (*proc_poll)(struct file *, struct poll_table_struct *); ++ long int (*proc_ioctl)(struct file *, unsigned int, long unsigned int); ++ long int (*proc_compat_ioctl)(struct file *, unsigned int, long unsigned int); ++ int (*proc_mmap)(struct file *, struct vm_area_struct *); ++ long unsigned int (*proc_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); ++}; ++ +struct mtrr_sentry { + __u64 base; + __u32 size; @@ -24769,6 +24870,21 @@ index 0000000..bcb9d76 + compat_uint_t type; +}; + ++struct mtrr_var_range { ++ __u32 base_lo; ++ __u32 base_hi; ++ __u32 mask_lo; ++ __u32 mask_hi; ++}; ++ ++struct mtrr_state_type { ++ struct mtrr_var_range var_ranges[256]; ++ mtrr_type fixed_ranges[88]; ++ unsigned char enabled; ++ unsigned char have_fixed; ++ mtrr_type def_type; ++}; ++ +struct fixed_range_block { + int base_msr; + int ranges; @@ -24809,6 +24925,7 @@ index 0000000..bcb9d76 +struct platform_device_info { + struct device *parent; + struct fwnode_handle *fwnode; ++ bool of_node_reused; + const char *name; + int id; + const struct resource *res; @@ -24816,7 +24933,33 @@ index 0000000..bcb9d76 + const void *data; + size_t size_data; + u64 dma_mask; -+ struct property_entry *properties; ++ const struct property_entry *properties; ++}; ++ ++enum dev_prop_type { ++ DEV_PROP_U8 = 0, ++ DEV_PROP_U16 = 1, ++ DEV_PROP_U32 = 2, ++ DEV_PROP_U64 = 3, ++ DEV_PROP_STRING = 4, ++ DEV_PROP_REF = 5, ++}; ++ ++struct property_entry { ++ const char *name; ++ size_t length; ++ bool is_inline; ++ enum dev_prop_type type; ++ union { ++ const void *pointer; ++ union { ++ u8 u8_data[8]; ++ u16 u16_data[4]; ++ u32 u32_data[2]; ++ u64 u64_data[1]; ++ const char *str[1]; ++ } value; ++ }; +}; + +struct builtin_fw { @@ -24831,6 +24974,12 @@ index 0000000..bcb9d76 + char name[18]; +}; + ++struct cpu_signature { ++ unsigned int sig; ++ unsigned int pf; ++ unsigned int rev; ++}; ++ +enum ucode_state { + UCODE_OK = 0, + UCODE_NEW = 1, @@ -24847,6 +24996,12 @@ index 0000000..bcb9d76 + int (*collect_cpu_info)(int, struct cpu_signature *); +}; + ++struct ucode_cpu_info { ++ struct cpu_signature cpu_sig; ++ int valid; ++ void *mc; ++}; ++ +struct cpu_info_ctx { + struct cpu_signature *cpu_sig; + int err; @@ -24855,7 +25010,6 @@ index 0000000..bcb9d76 +struct firmware { + size_t size; + const u8 *data; -+ struct page **pages; + void *priv; +}; + @@ -24927,6 +25081,11 @@ index 0000000..bcb9d76 + unsigned int mpb[0]; +}; + ++struct equiv_cpu_table { ++ unsigned int num_entries; ++ struct equiv_cpu_entry *entry; ++}; ++ +struct cont_desc { + struct microcode_amd *mc; + u32 cpuid_1_eax; @@ -24935,6 +25094,846 @@ index 0000000..bcb9d76 + size_t size; +}; + ++enum rdt_group_type { ++ RDTCTRL_GROUP = 0, ++ RDTMON_GROUP = 1, ++ RDT_NUM_GROUP = 2, ++}; ++ ++struct rdtgroup; ++ ++struct mongroup { ++ struct kernfs_node *mon_data_kn; ++ struct rdtgroup *parent; ++ struct list_head crdtgrp_list; ++ u32 rmid; ++}; ++ ++enum rdtgrp_mode { ++ RDT_MODE_SHAREABLE = 0, ++ RDT_MODE_EXCLUSIVE = 1, ++ RDT_MODE_PSEUDO_LOCKSETUP = 2, ++ RDT_MODE_PSEUDO_LOCKED = 3, ++ RDT_NUM_MODES = 4, ++}; ++ ++struct pseudo_lock_region; ++ ++struct rdtgroup { ++ struct kernfs_node *kn; ++ struct list_head rdtgroup_list; ++ u32 closid; ++ struct cpumask cpu_mask; ++ int flags; ++ atomic_t waitcount; ++ enum rdt_group_type type; ++ struct mongroup mon; ++ enum rdtgrp_mode mode; ++ struct pseudo_lock_region *plr; ++}; ++ ++struct rdt_cache { ++ unsigned int cbm_len; ++ unsigned int min_cbm_bits; ++ unsigned int cbm_idx_mult; ++ unsigned int cbm_idx_offset; ++ unsigned int shareable_bits; ++ bool arch_has_sparse_bitmaps; ++ bool arch_has_empty_bitmaps; ++ bool arch_has_per_cpu_cfg; ++}; ++ ++enum membw_throttle_mode { ++ THREAD_THROTTLE_UNDEFINED = 0, ++ THREAD_THROTTLE_MAX = 1, ++ THREAD_THROTTLE_PER_THREAD = 2, ++}; ++ ++struct rdt_membw { ++ u32 min_bw; ++ u32 bw_gran; ++ u32 delay_linear; ++ bool arch_needs_linear; ++ enum membw_throttle_mode throttle_mode; ++ bool mba_sc; ++ u32 *mb_map; ++}; ++ ++struct rdt_domain; ++ ++struct msr_param; ++ ++struct rdt_parse_data; ++ ++struct rdt_resource { ++ int rid; ++ bool alloc_enabled; ++ bool mon_enabled; ++ bool alloc_capable; ++ bool mon_capable; ++ char *name; ++ int num_closid; ++ int cache_level; ++ u32 default_ctrl; ++ unsigned int msr_base; ++ void (*msr_update)(struct rdt_domain *, struct msr_param *, struct rdt_resource *); ++ int data_width; ++ struct list_head domains; ++ struct rdt_cache cache; ++ struct rdt_membw membw; ++ const char *format_str; ++ int (*parse_ctrlval)(struct rdt_parse_data *, struct rdt_resource *, struct rdt_domain *); ++ struct list_head evt_list; ++ int num_rmid; ++ unsigned int mon_scale; ++ unsigned int mbm_width; ++ long unsigned int fflags; ++}; ++ ++struct mbm_state; ++ ++struct rdt_domain { ++ struct list_head list; ++ int id; ++ struct cpumask cpu_mask; ++ long unsigned int *rmid_busy_llc; ++ struct mbm_state *mbm_total; ++ struct mbm_state *mbm_local; ++ struct delayed_work mbm_over; ++ struct delayed_work cqm_limbo; ++ int mbm_work_cpu; ++ int cqm_work_cpu; ++ u32 *ctrl_val; ++ u32 *mbps_val; ++ u32 new_ctrl; ++ bool have_new_ctrl; ++ struct pseudo_lock_region *plr; ++}; ++ ++struct pseudo_lock_region { ++ struct rdt_resource *r; ++ struct rdt_domain *d; ++ u32 cbm; ++ wait_queue_head_t lock_thread_wq; ++ int thread_done; ++ int cpu; ++ unsigned int line_size; ++ unsigned int size; ++ void *kmem; ++ unsigned int minor; ++ struct dentry *debugfs_dir; ++ struct list_head pm_reqs; ++}; ++ ++struct mbm_state { ++ u64 chunks; ++ u64 prev_msr; ++ u64 prev_bw_msr; ++ u32 prev_bw; ++ u32 delta_bw; ++ bool delta_comp; ++}; ++ ++struct msr_param { ++ struct rdt_resource *res; ++ int low; ++ int high; ++}; ++ ++struct rdt_parse_data { ++ struct rdtgroup *rdtgrp; ++ char *buf; ++}; ++ ++enum { ++ RDT_RESOURCE_L3 = 0, ++ RDT_RESOURCE_L3DATA = 1, ++ RDT_RESOURCE_L3CODE = 2, ++ RDT_RESOURCE_L2 = 3, ++ RDT_RESOURCE_L2DATA = 4, ++ RDT_RESOURCE_L2CODE = 5, ++ RDT_RESOURCE_MBA = 6, ++ RDT_NUM_RESOURCES = 7, ++}; ++ ++union cpuid_0x10_1_eax { ++ struct { ++ unsigned int cbm_len: 5; ++ } split; ++ unsigned int full; ++}; ++ ++union cpuid_0x10_3_eax { ++ struct { ++ unsigned int max_delay: 12; ++ } split; ++ unsigned int full; ++}; ++ ++union cpuid_0x10_x_edx { ++ struct { ++ unsigned int cos_max: 16; ++ } split; ++ unsigned int full; ++}; ++ ++enum { ++ RDT_FLAG_CMT = 0, ++ RDT_FLAG_MBM_TOTAL = 1, ++ RDT_FLAG_MBM_LOCAL = 2, ++ RDT_FLAG_L3_CAT = 3, ++ RDT_FLAG_L3_CDP = 4, ++ RDT_FLAG_L2_CAT = 5, ++ RDT_FLAG_L2_CDP = 6, ++ RDT_FLAG_MBA = 7, ++}; ++ ++struct rdt_options { ++ char *name; ++ int flag; ++ bool force_off; ++ bool force_on; ++}; ++ ++typedef unsigned int uint; ++ ++struct __va_list_tag { ++ unsigned int gp_offset; ++ unsigned int fp_offset; ++ void *overflow_arg_area; ++ void *reg_save_area; ++}; ++ ++typedef __builtin_va_list __gnuc_va_list; ++ ++typedef __gnuc_va_list va_list; ++ ++enum kernfs_node_type { ++ KERNFS_DIR = 1, ++ KERNFS_FILE = 2, ++ KERNFS_LINK = 4, ++}; ++ ++enum kernfs_root_flag { ++ KERNFS_ROOT_CREATE_DEACTIVATED = 1, ++ KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 2, ++ KERNFS_ROOT_SUPPORT_EXPORTOP = 4, ++ KERNFS_ROOT_SUPPORT_USER_XATTR = 8, ++}; ++ ++struct kernfs_fs_context { ++ struct kernfs_root *root; ++ void *ns_tag; ++ long unsigned int magic; ++ bool new_sb_created; ++}; ++ ++struct rdt_fs_context { ++ struct kernfs_fs_context kfc; ++ bool enable_cdpl2; ++ bool enable_cdpl3; ++ bool enable_mba_mbps; ++}; ++ ++struct mon_evt { ++ u32 evtid; ++ char *name; ++ struct list_head list; ++}; ++ ++union mon_data_bits { ++ void *priv; ++ struct { ++ unsigned int rid: 10; ++ unsigned int evtid: 8; ++ unsigned int domid: 14; ++ } u; ++}; ++ ++struct rmid_read { ++ struct rdtgroup *rgrp; ++ struct rdt_resource *r; ++ struct rdt_domain *d; ++ int evtid; ++ bool first; ++ u64 val; ++}; ++ ++struct rftype { ++ char *name; ++ umode_t mode; ++ struct kernfs_ops *kf_ops; ++ long unsigned int flags; ++ long unsigned int fflags; ++ int (*seq_show)(struct kernfs_open_file *, struct seq_file *, void *); ++ ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); ++}; ++ ++enum rdt_param { ++ Opt_cdp = 0, ++ Opt_cdpl2 = 1, ++ Opt_mba_mbps = 2, ++ nr__rdt_params = 3, ++}; ++ ++struct rmid_entry { ++ u32 rmid; ++ int busy; ++ struct list_head list; ++}; ++ ++struct trace_event_raw_pseudo_lock_mem_latency { ++ struct trace_entry ent; ++ u32 latency; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_pseudo_lock_l2 { ++ struct trace_entry ent; ++ u64 l2_hits; ++ u64 l2_miss; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_pseudo_lock_l3 { ++ struct trace_entry ent; ++ u64 l3_hits; ++ u64 l3_miss; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_pseudo_lock_mem_latency {}; ++ ++struct trace_event_data_offsets_pseudo_lock_l2 {}; ++ ++struct trace_event_data_offsets_pseudo_lock_l3 {}; ++ ++typedef void (*btf_trace_pseudo_lock_mem_latency)(void *, u32); ++ ++typedef void (*btf_trace_pseudo_lock_l2)(void *, u64, u64); ++ ++typedef void (*btf_trace_pseudo_lock_l3)(void *, u64, u64); ++ ++struct pseudo_lock_pm_req { ++ struct list_head list; ++ struct dev_pm_qos_request req; ++}; ++ ++struct residency_counts { ++ u64 miss_before; ++ u64 hits_before; ++ u64 miss_after; ++ u64 hits_after; ++}; ++ ++enum mmu_notifier_event { ++ MMU_NOTIFY_UNMAP = 0, ++ MMU_NOTIFY_CLEAR = 1, ++ MMU_NOTIFY_PROTECTION_VMA = 2, ++ MMU_NOTIFY_PROTECTION_PAGE = 3, ++ MMU_NOTIFY_SOFT_DIRTY = 4, ++ MMU_NOTIFY_RELEASE = 5, ++ MMU_NOTIFY_MIGRATE = 6, ++}; ++ ++struct mmu_notifier; ++ ++struct mmu_notifier_range; ++ ++struct mmu_notifier_ops { ++ void (*release)(struct mmu_notifier *, struct mm_struct *); ++ int (*clear_flush_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); ++ int (*clear_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); ++ int (*test_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int); ++ void (*change_pte)(struct mmu_notifier *, struct mm_struct *, long unsigned int, pte_t); ++ int (*invalidate_range_start)(struct mmu_notifier *, const struct mmu_notifier_range *); ++ void (*invalidate_range_end)(struct mmu_notifier *, const struct mmu_notifier_range *); ++ void (*invalidate_range)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); ++ struct mmu_notifier * (*alloc_notifier)(struct mm_struct *); ++ void (*free_notifier)(struct mmu_notifier *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct mmu_notifier { ++ struct hlist_node hlist; ++ const struct mmu_notifier_ops *ops; ++ struct mm_struct *mm; ++ struct callback_head rcu; ++ unsigned int users; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct mmu_notifier_range { ++ struct vm_area_struct *vma; ++ struct mm_struct *mm; ++ long unsigned int start; ++ long unsigned int end; ++ unsigned int flags; ++ enum mmu_notifier_event event; ++ void *migrate_pgmap_owner; ++}; ++ ++enum sgx_page_type { ++ SGX_PAGE_TYPE_SECS = 0, ++ SGX_PAGE_TYPE_TCS = 1, ++ SGX_PAGE_TYPE_REG = 2, ++ SGX_PAGE_TYPE_VA = 3, ++ SGX_PAGE_TYPE_TRIM = 4, ++}; ++ ++struct sgx_encl_page; ++ ++struct sgx_epc_page { ++ unsigned int section; ++ u16 flags; ++ u16 poison; ++ struct sgx_encl_page *owner; ++ struct list_head list; ++}; ++ ++struct sgx_encl; ++ ++struct sgx_va_page; ++ ++struct sgx_encl_page { ++ long unsigned int desc; ++ long unsigned int vm_max_prot_bits; ++ struct sgx_epc_page *epc_page; ++ struct sgx_encl *encl; ++ struct sgx_va_page *va_page; ++}; ++ ++struct sgx_encl { ++ long unsigned int base; ++ long unsigned int size; ++ long unsigned int flags; ++ unsigned int page_cnt; ++ unsigned int secs_child_cnt; ++ struct mutex lock; ++ struct xarray page_array; ++ struct sgx_encl_page secs; ++ long unsigned int attributes; ++ long unsigned int attributes_mask; ++ cpumask_t cpumask; ++ struct file *backing; ++ struct kref refcount; ++ struct list_head va_pages; ++ long unsigned int mm_list_version; ++ struct list_head mm_list; ++ spinlock_t mm_lock; ++ struct srcu_struct srcu; ++}; ++ ++struct sgx_va_page { ++ struct sgx_epc_page *epc_page; ++ long unsigned int slots[8]; ++ struct list_head list; ++}; ++ ++struct sgx_encl_mm { ++ struct sgx_encl *encl; ++ struct mm_struct *mm; ++ struct list_head list; ++ struct mmu_notifier mmu_notifier; ++}; ++ ++typedef unsigned int xa_mark_t; ++ ++struct xa_node { ++ unsigned char shift; ++ unsigned char offset; ++ unsigned char count; ++ unsigned char nr_values; ++ struct xa_node *parent; ++ struct xarray *array; ++ union { ++ struct list_head private_list; ++ struct callback_head callback_head; ++ }; ++ void *slots[64]; ++ union { ++ long unsigned int tags[3]; ++ long unsigned int marks[3]; ++ }; ++}; ++ ++typedef void (*xa_update_node_t)(struct xa_node *); ++ ++struct xa_state { ++ struct xarray *xa; ++ long unsigned int xa_index; ++ unsigned char xa_shift; ++ unsigned char xa_sibs; ++ unsigned char xa_offset; ++ unsigned char xa_pad; ++ struct xa_node *xa_node; ++ struct xa_node *xa_alloc; ++ xa_update_node_t xa_update; ++}; ++ ++enum { ++ XA_CHECK_SCHED = 4096, ++}; ++ ++enum sgx_encls_function { ++ ECREATE = 0, ++ EADD = 1, ++ EINIT = 2, ++ EREMOVE = 3, ++ EDGBRD = 4, ++ EDGBWR = 5, ++ EEXTEND = 6, ++ ELDU = 8, ++ EBLOCK = 9, ++ EPA = 10, ++ EWB = 11, ++ ETRACK = 12, ++ EAUG = 13, ++ EMODPR = 14, ++ EMODT = 15, ++}; ++ ++struct sgx_pageinfo { ++ u64 addr; ++ u64 contents; ++ u64 metadata; ++ u64 secs; ++}; ++ ++struct sgx_numa_node { ++ struct list_head free_page_list; ++ struct list_head sgx_poison_page_list; ++ spinlock_t lock; ++}; ++ ++struct sgx_epc_section { ++ long unsigned int phys_addr; ++ void *virt_addr; ++ struct sgx_epc_page *pages; ++ struct sgx_numa_node *node; ++}; ++ ++enum sgx_encl_flags { ++ SGX_ENCL_IOCTL = 1, ++ SGX_ENCL_DEBUG = 2, ++ SGX_ENCL_CREATED = 4, ++ SGX_ENCL_INITIALIZED = 8, ++}; ++ ++struct sgx_backing { ++ long unsigned int page_index; ++ struct page *contents; ++ struct page *pcmd; ++ long unsigned int pcmd_offset; ++}; ++ ++enum sgx_return_code { ++ SGX_NOT_TRACKED = 11, ++ SGX_CHILD_PRESENT = 13, ++ SGX_INVALID_EINITTOKEN = 16, ++ SGX_UNMASKED_EVENT = 128, ++}; ++ ++enum sgx_attribute { ++ SGX_ATTR_INIT = 1, ++ SGX_ATTR_DEBUG = 2, ++ SGX_ATTR_MODE64BIT = 4, ++ SGX_ATTR_PROVISIONKEY = 16, ++ SGX_ATTR_EINITTOKENKEY = 32, ++ SGX_ATTR_KSS = 128, ++}; ++ ++struct sgx_secs { ++ u64 size; ++ u64 base; ++ u32 ssa_frame_size; ++ u32 miscselect; ++ u8 reserved1[24]; ++ u64 attributes; ++ u64 xfrm; ++ u32 mrenclave[8]; ++ u8 reserved2[32]; ++ u32 mrsigner[8]; ++ u8 reserved3[32]; ++ u32 config_id[16]; ++ u16 isv_prod_id; ++ u16 isv_svn; ++ u16 config_svn; ++ u8 reserved4[3834]; ++}; ++ ++enum sgx_secinfo_flags { ++ SGX_SECINFO_R = 1, ++ SGX_SECINFO_W = 2, ++ SGX_SECINFO_X = 4, ++ SGX_SECINFO_SECS = 0, ++ SGX_SECINFO_TCS = 256, ++ SGX_SECINFO_REG = 512, ++ SGX_SECINFO_VA = 768, ++ SGX_SECINFO_TRIM = 1024, ++}; ++ ++struct sgx_secinfo { ++ u64 flags; ++ u8 reserved[56]; ++}; ++ ++struct sgx_sigstruct_header { ++ u64 header1[2]; ++ u32 vendor; ++ u32 date; ++ u64 header2[2]; ++ u32 swdefined; ++ u8 reserved1[84]; ++}; ++ ++struct sgx_sigstruct_body { ++ u32 miscselect; ++ u32 misc_mask; ++ u8 reserved2[20]; ++ u64 attributes; ++ u64 xfrm; ++ u64 attributes_mask; ++ u64 xfrm_mask; ++ u8 mrenclave[32]; ++ u8 reserved3[32]; ++ u16 isvprodid; ++ u16 isvsvn; ++} __attribute__((packed)); ++ ++struct sgx_sigstruct { ++ struct sgx_sigstruct_header header; ++ u8 modulus[384]; ++ u32 exponent; ++ u8 signature[384]; ++ struct sgx_sigstruct_body body; ++ u8 reserved4[12]; ++ u8 q1[384]; ++ u8 q2[384]; ++} __attribute__((packed)); ++ ++struct crypto_alg; ++ ++struct crypto_tfm { ++ u32 crt_flags; ++ int node; ++ void (*exit)(struct crypto_tfm *); ++ struct crypto_alg *__crt_alg; ++ void *__crt_ctx[0]; ++}; ++ ++struct cipher_alg { ++ unsigned int cia_min_keysize; ++ unsigned int cia_max_keysize; ++ int (*cia_setkey)(struct crypto_tfm *, const u8 *, unsigned int); ++ void (*cia_encrypt)(struct crypto_tfm *, u8 *, const u8 *); ++ void (*cia_decrypt)(struct crypto_tfm *, u8 *, const u8 *); ++}; ++ ++struct compress_alg { ++ int (*coa_compress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); ++ int (*coa_decompress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); ++}; ++ ++struct crypto_type; ++ ++struct crypto_alg { ++ struct list_head cra_list; ++ struct list_head cra_users; ++ u32 cra_flags; ++ unsigned int cra_blocksize; ++ unsigned int cra_ctxsize; ++ unsigned int cra_alignmask; ++ int cra_priority; ++ refcount_t cra_refcnt; ++ char cra_name[128]; ++ char cra_driver_name[128]; ++ const struct crypto_type *cra_type; ++ union { ++ struct cipher_alg cipher; ++ struct compress_alg compress; ++ } cra_u; ++ int (*cra_init)(struct crypto_tfm *); ++ void (*cra_exit)(struct crypto_tfm *); ++ void (*cra_destroy)(struct crypto_alg *); ++ struct module *cra_module; ++}; ++ ++struct crypto_instance; ++ ++struct crypto_type { ++ unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); ++ unsigned int (*extsize)(struct crypto_alg *); ++ int (*init)(struct crypto_tfm *, u32, u32); ++ int (*init_tfm)(struct crypto_tfm *); ++ void (*show)(struct seq_file *, struct crypto_alg *); ++ int (*report)(struct sk_buff *, struct crypto_alg *); ++ void (*free)(struct crypto_instance *); ++ unsigned int type; ++ unsigned int maskclear; ++ unsigned int maskset; ++ unsigned int tfmsize; ++}; ++ ++struct crypto_shash; ++ ++struct shash_desc { ++ struct crypto_shash *tfm; ++ void *__ctx[0]; ++}; ++ ++struct crypto_shash { ++ unsigned int descsize; ++ struct crypto_tfm base; ++}; ++ ++enum sgx_page_flags { ++ SGX_PAGE_MEASURE = 1, ++}; ++ ++struct sgx_enclave_create { ++ __u64 src; ++}; ++ ++struct sgx_enclave_add_pages { ++ __u64 src; ++ __u64 offset; ++ __u64 length; ++ __u64 secinfo; ++ __u64 flags; ++ __u64 count; ++}; ++ ++struct sgx_enclave_init { ++ __u64 sigstruct; ++}; ++ ++struct sgx_enclave_provision { ++ __u64 fd; ++}; ++ ++struct vmcb_seg { ++ u16 selector; ++ u16 attrib; ++ u32 limit; ++ u64 base; ++}; ++ ++struct vmcb_save_area { ++ struct vmcb_seg es; ++ struct vmcb_seg cs; ++ struct vmcb_seg ss; ++ struct vmcb_seg ds; ++ struct vmcb_seg fs; ++ struct vmcb_seg gs; ++ struct vmcb_seg gdtr; ++ struct vmcb_seg ldtr; ++ struct vmcb_seg idtr; ++ struct vmcb_seg tr; ++ u8 reserved_1[43]; ++ u8 cpl; ++ u8 reserved_2[4]; ++ u64 efer; ++ u8 reserved_3[112]; ++ u64 cr4; ++ u64 cr3; ++ u64 cr0; ++ u64 dr7; ++ u64 dr6; ++ u64 rflags; ++ u64 rip; ++ u8 reserved_4[88]; ++ u64 rsp; ++ u8 reserved_5[24]; ++ u64 rax; ++ u64 star; ++ u64 lstar; ++ u64 cstar; ++ u64 sfmask; ++ u64 kernel_gs_base; ++ u64 sysenter_cs; ++ u64 sysenter_esp; ++ u64 sysenter_eip; ++ u64 cr2; ++ u8 reserved_6[32]; ++ u64 g_pat; ++ u64 dbgctl; ++ u64 br_from; ++ u64 br_to; ++ u64 last_excp_from; ++ u64 last_excp_to; ++ u8 reserved_7[104]; ++ u64 reserved_8; ++ u64 rcx; ++ u64 rdx; ++ u64 rbx; ++ u64 reserved_9; ++ u64 rbp; ++ u64 rsi; ++ u64 rdi; ++ u64 r8; ++ u64 r9; ++ u64 r10; ++ u64 r11; ++ u64 r12; ++ u64 r13; ++ u64 r14; ++ u64 r15; ++ u8 reserved_10[16]; ++ u64 sw_exit_code; ++ u64 sw_exit_info_1; ++ u64 sw_exit_info_2; ++ u64 sw_scratch; ++ u8 reserved_11[56]; ++ u64 xcr0; ++ u8 valid_bitmap[16]; ++ u64 x87_state_gpa; ++}; ++ ++struct ghcb { ++ struct vmcb_save_area save; ++ u8 reserved_save[1016]; ++ u8 shared_buffer[2032]; ++ u8 reserved_1[10]; ++ u16 protocol_version; ++ u32 ghcb_usage; ++}; ++ ++enum intercept_words { ++ INTERCEPT_CR = 0, ++ INTERCEPT_DR = 1, ++ INTERCEPT_EXCEPTION = 2, ++ INTERCEPT_WORD3 = 3, ++ INTERCEPT_WORD4 = 4, ++ INTERCEPT_WORD5 = 5, ++ MAX_INTERCEPT = 6, ++}; ++ ++struct vmware_steal_time { ++ union { ++ uint64_t clock; ++ struct { ++ uint32_t clock_low; ++ uint32_t clock_high; ++ }; ++ }; ++ uint64_t reserved[7]; ++}; ++ ++struct mpc_intsrc { ++ unsigned char type; ++ unsigned char irqtype; ++ short unsigned int irqflag; ++ unsigned char srcbus; ++ unsigned char srcbusirq; ++ unsigned char dstapic; ++ unsigned char dstirq; ++}; ++ +enum mp_irq_source_types { + mp_INT = 0, + mp_NMI = 1, @@ -24942,20 +25941,6 @@ index 0000000..bcb9d76 + mp_ExtINT = 3, +}; + -+struct IO_APIC_route_entry { -+ __u32 vector: 8; -+ __u32 delivery_mode: 3; -+ __u32 dest_mode: 1; -+ __u32 delivery_status: 1; -+ __u32 polarity: 1; -+ __u32 irr: 1; -+ __u32 trigger: 1; -+ __u32 mask: 1; -+ __u32 __reserved_2: 15; -+ __u32 __reserved_3: 24; -+ __u32 dest: 8; -+}; -+ +typedef u64 acpi_physical_address; + +typedef u32 acpi_status; @@ -24969,16 +25954,6 @@ index 0000000..bcb9d76 + u8 length; +}; + -+struct acpi_table_bgrt { -+ struct acpi_table_header header; -+ u16 version; -+ u8 status; -+ u8 image_type; -+ u64 image_address; -+ u32 image_offset_x; -+ u32 image_offset_y; -+}; -+ +struct acpi_table_boot { + struct acpi_table_header header; + u8 cmos_index; @@ -25096,6 +26071,15 @@ index 0000000..bcb9d76 + u8 reserved[3]; +}; + ++enum acpi_irq_model_id { ++ ACPI_IRQ_MODEL_PIC = 0, ++ ACPI_IRQ_MODEL_IOAPIC = 1, ++ ACPI_IRQ_MODEL_IOSAPIC = 2, ++ ACPI_IRQ_MODEL_PLATFORM = 3, ++ ACPI_IRQ_MODEL_GIC = 4, ++ ACPI_IRQ_MODEL_COUNT = 5, ++}; ++ +union acpi_subtable_headers { + struct acpi_subtable_header common; + struct acpi_hmat_structure hmat; @@ -25114,58 +26098,60 @@ index 0000000..bcb9d76 +enum irq_alloc_type { + X86_IRQ_ALLOC_TYPE_IOAPIC = 1, + X86_IRQ_ALLOC_TYPE_HPET = 2, -+ X86_IRQ_ALLOC_TYPE_MSI = 3, -+ X86_IRQ_ALLOC_TYPE_MSIX = 4, ++ X86_IRQ_ALLOC_TYPE_PCI_MSI = 3, ++ X86_IRQ_ALLOC_TYPE_PCI_MSIX = 4, + X86_IRQ_ALLOC_TYPE_DMAR = 5, + X86_IRQ_ALLOC_TYPE_UV = 6, ++ X86_IRQ_ALLOC_TYPE_IOAPIC_GET_PARENT = 7, ++ X86_IRQ_ALLOC_TYPE_HPET_GET_PARENT = 8, ++}; ++ ++struct IO_APIC_route_entry; ++ ++struct ioapic_alloc_info { ++ int pin; ++ int node; ++ u32 trigger: 1; ++ u32 polarity: 1; ++ u32 valid: 1; ++ struct IO_APIC_route_entry *entry; ++}; ++ ++struct IO_APIC_route_entry { ++ __u32 vector: 8; ++ __u32 delivery_mode: 3; ++ __u32 dest_mode: 1; ++ __u32 delivery_status: 1; ++ __u32 polarity: 1; ++ __u32 irr: 1; ++ __u32 trigger: 1; ++ __u32 mask: 1; ++ __u32 __reserved_2: 15; ++ __u32 __reserved_3: 24; ++ __u32 dest: 8; ++}; ++ ++struct uv_alloc_info { ++ int limit; ++ int blade; ++ long unsigned int offset; ++ char *name; +}; + +struct irq_alloc_info { + enum irq_alloc_type type; + u32 flags; ++ u32 devid; ++ irq_hw_number_t hwirq; + const struct cpumask *mask; ++ struct msi_desc *desc; ++ void *data; + union { -+ int unused; -+ struct { -+ int hpet_id; -+ int hpet_index; -+ void *hpet_data; -+ }; -+ struct { -+ struct pci_dev *msi_dev; -+ irq_hw_number_t msi_hwirq; -+ }; -+ struct { -+ int ioapic_id; -+ int ioapic_pin; -+ int ioapic_node; -+ u32 ioapic_trigger: 1; -+ u32 ioapic_polarity: 1; -+ u32 ioapic_valid: 1; -+ struct IO_APIC_route_entry *ioapic_entry; -+ }; -+ struct { -+ int dmar_id; -+ void *dmar_data; -+ }; -+ struct { -+ int uv_limit; -+ int uv_blade; -+ long unsigned int uv_offset; -+ char *uv_name; -+ }; -+ struct { -+ struct msi_desc *desc; -+ }; ++ struct ioapic_alloc_info ioapic; ++ struct uv_alloc_info uv; + }; +}; + -+struct circ_buf { -+ char *buf; -+ int head; -+ int tail; -+}; -+ +struct serial_icounter_struct { + int cts; + int dsr; @@ -25202,151 +26188,6 @@ index 0000000..bcb9d76 + long unsigned int iomap_base; +}; + -+struct serial_rs485 { -+ __u32 flags; -+ __u32 delay_rts_before_send; -+ __u32 delay_rts_after_send; -+ __u32 padding[5]; -+}; -+ -+struct uart_port; -+ -+struct uart_ops { -+ unsigned int (*tx_empty)(struct uart_port *); -+ void (*set_mctrl)(struct uart_port *, unsigned int); -+ unsigned int (*get_mctrl)(struct uart_port *); -+ void (*stop_tx)(struct uart_port *); -+ void (*start_tx)(struct uart_port *); -+ void (*throttle)(struct uart_port *); -+ void (*unthrottle)(struct uart_port *); -+ void (*send_xchar)(struct uart_port *, char); -+ void (*stop_rx)(struct uart_port *); -+ void (*enable_ms)(struct uart_port *); -+ void (*break_ctl)(struct uart_port *, int); -+ int (*startup)(struct uart_port *); -+ void (*shutdown)(struct uart_port *); -+ void (*flush_buffer)(struct uart_port *); -+ void (*set_termios)(struct uart_port *, struct ktermios *, struct ktermios *); -+ void (*set_ldisc)(struct uart_port *, struct ktermios *); -+ void (*pm)(struct uart_port *, unsigned int, unsigned int); -+ const char * (*type)(struct uart_port *); -+ void (*release_port)(struct uart_port *); -+ int (*request_port)(struct uart_port *); -+ void (*config_port)(struct uart_port *, int); -+ int (*verify_port)(struct uart_port *, struct serial_struct *); -+ int (*ioctl)(struct uart_port *, unsigned int, long unsigned int); -+ int (*poll_init)(struct uart_port *); -+ void (*poll_put_char)(struct uart_port *, unsigned char); -+ int (*poll_get_char)(struct uart_port *); -+}; -+ -+struct uart_icount { -+ __u32 cts; -+ __u32 dsr; -+ __u32 rng; -+ __u32 dcd; -+ __u32 rx; -+ __u32 tx; -+ __u32 frame; -+ __u32 overrun; -+ __u32 parity; -+ __u32 brk; -+ __u32 buf_overrun; -+}; -+ -+typedef unsigned int upf_t; -+ -+typedef unsigned int upstat_t; -+ -+struct uart_state; -+ -+struct uart_port { -+ spinlock_t lock; -+ long unsigned int iobase; -+ unsigned char *membase; -+ unsigned int (*serial_in)(struct uart_port *, int); -+ void (*serial_out)(struct uart_port *, int, int); -+ void (*set_termios)(struct uart_port *, struct ktermios *, struct ktermios *); -+ void (*set_ldisc)(struct uart_port *, struct ktermios *); -+ unsigned int (*get_mctrl)(struct uart_port *); -+ void (*set_mctrl)(struct uart_port *, unsigned int); -+ unsigned int (*get_divisor)(struct uart_port *, unsigned int, unsigned int *); -+ void (*set_divisor)(struct uart_port *, unsigned int, unsigned int, unsigned int); -+ int (*startup)(struct uart_port *); -+ void (*shutdown)(struct uart_port *); -+ void (*throttle)(struct uart_port *); -+ void (*unthrottle)(struct uart_port *); -+ int (*handle_irq)(struct uart_port *); -+ void (*pm)(struct uart_port *, unsigned int, unsigned int); -+ void (*handle_break)(struct uart_port *); -+ int (*rs485_config)(struct uart_port *, struct serial_rs485 *); -+ unsigned int irq; -+ long unsigned int irqflags; -+ unsigned int uartclk; -+ unsigned int fifosize; -+ unsigned char x_char; -+ unsigned char regshift; -+ unsigned char iotype; -+ unsigned char quirks; -+ unsigned int read_status_mask; -+ unsigned int ignore_status_mask; -+ struct uart_state *state; -+ struct uart_icount icount; -+ struct console *cons; -+ long unsigned int sysrq; -+ unsigned int sysrq_ch; -+ upf_t flags; -+ upstat_t status; -+ int hw_stopped; -+ unsigned int mctrl; -+ unsigned int timeout; -+ unsigned int type; -+ const struct uart_ops *ops; -+ unsigned int custom_divisor; -+ unsigned int line; -+ unsigned int minor; -+ resource_size_t mapbase; -+ resource_size_t mapsize; -+ struct device *dev; -+ unsigned char hub6; -+ unsigned char suspended; -+ unsigned char unused[2]; -+ const char *name; -+ struct attribute_group *attr_group; -+ const struct attribute_group **tty_groups; -+ struct serial_rs485 rs485; -+ void *private_data; -+}; -+ -+enum uart_pm_state { -+ UART_PM_STATE_ON = 0, -+ UART_PM_STATE_OFF = 3, -+ UART_PM_STATE_UNDEFINED = 4, -+}; -+ -+struct uart_state { -+ struct tty_port port; -+ enum uart_pm_state pm_state; -+ struct circ_buf xmit; -+ atomic_t refcount; -+ wait_queue_head_t remove_wait; -+ struct uart_port *uart_port; -+}; -+ -+struct earlycon_device { -+ struct console *con; -+ struct uart_port port; -+ char options[16]; -+ unsigned int baud; -+}; -+ -+struct earlycon_id { -+ char name[15]; -+ char name_term; -+ char compatible[128]; -+ int (*setup)(struct earlycon_device *, const char *); -+}; -+ +enum ioapic_domain_type { + IOAPIC_DOMAIN_INVALID = 0, + IOAPIC_DOMAIN_LEGACY = 1, @@ -25360,336 +26201,24 @@ index 0000000..bcb9d76 + struct device_node *dev; +}; + -+enum thermal_device_mode { -+ THERMAL_DEVICE_DISABLED = 0, -+ THERMAL_DEVICE_ENABLED = 1, -+}; -+ -+enum thermal_trip_type { -+ THERMAL_TRIP_ACTIVE = 0, -+ THERMAL_TRIP_PASSIVE = 1, -+ THERMAL_TRIP_HOT = 2, -+ THERMAL_TRIP_CRITICAL = 3, -+}; -+ -+enum thermal_trend { -+ THERMAL_TREND_STABLE = 0, -+ THERMAL_TREND_RAISING = 1, -+ THERMAL_TREND_DROPPING = 2, -+ THERMAL_TREND_RAISE_FULL = 3, -+ THERMAL_TREND_DROP_FULL = 4, -+}; -+ -+enum thermal_notify_event { -+ THERMAL_EVENT_UNSPECIFIED = 0, -+ THERMAL_EVENT_TEMP_SAMPLE = 1, -+ THERMAL_TRIP_VIOLATED = 2, -+ THERMAL_TRIP_CHANGED = 3, -+ THERMAL_DEVICE_DOWN = 4, -+ THERMAL_DEVICE_UP = 5, -+ THERMAL_DEVICE_POWER_CAPABILITY_CHANGED = 6, -+ THERMAL_TABLE_CHANGED = 7, -+}; -+ -+struct thermal_zone_device; -+ -+struct thermal_cooling_device; -+ -+struct thermal_zone_device_ops { -+ int (*bind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ int (*unbind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ int (*get_temp)(struct thermal_zone_device *, int *); -+ int (*set_trips)(struct thermal_zone_device *, int, int); -+ int (*get_mode)(struct thermal_zone_device *, enum thermal_device_mode *); -+ int (*set_mode)(struct thermal_zone_device *, enum thermal_device_mode); -+ int (*get_trip_type)(struct thermal_zone_device *, int, enum thermal_trip_type *); -+ int (*get_trip_temp)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_temp)(struct thermal_zone_device *, int, int); -+ int (*get_trip_hyst)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_hyst)(struct thermal_zone_device *, int, int); -+ int (*get_crit_temp)(struct thermal_zone_device *, int *); -+ int (*set_emul_temp)(struct thermal_zone_device *, int); -+ int (*get_trend)(struct thermal_zone_device *, int, enum thermal_trend *); -+ int (*notify)(struct thermal_zone_device *, int, enum thermal_trip_type); -+}; -+ -+struct thermal_attr; -+ -+struct thermal_zone_params; -+ -+struct thermal_governor; -+ -+struct thermal_zone_device { -+ int id; -+ char type[20]; -+ struct device device; -+ struct attribute_group trips_attribute_group; -+ struct thermal_attr *trip_temp_attrs; -+ struct thermal_attr *trip_type_attrs; -+ struct thermal_attr *trip_hyst_attrs; -+ void *devdata; -+ int trips; -+ long unsigned int trips_disabled; -+ int passive_delay; -+ int polling_delay; -+ int temperature; -+ int last_temperature; -+ int emul_temperature; -+ int passive; -+ int prev_low_trip; -+ int prev_high_trip; -+ unsigned int forced_passive; -+ atomic_t need_update; -+ struct thermal_zone_device_ops *ops; -+ struct thermal_zone_params *tzp; -+ struct thermal_governor *governor; -+ void *governor_data; -+ struct list_head thermal_instances; -+ struct ida ida; -+ struct mutex lock; -+ struct list_head node; -+ struct delayed_work poll_queue; -+ enum thermal_notify_event notify_event; -+}; -+ -+struct thermal_cooling_device_ops; -+ -+struct thermal_cooling_device { -+ int id; -+ char type[20]; -+ struct device device; -+ struct device_node *np; -+ void *devdata; -+ void *stats; -+ const struct thermal_cooling_device_ops *ops; -+ bool updated; -+ struct mutex lock; -+ struct list_head thermal_instances; -+ struct list_head node; -+}; -+ -+struct thermal_cooling_device_ops { -+ int (*get_max_state)(struct thermal_cooling_device *, long unsigned int *); -+ int (*get_cur_state)(struct thermal_cooling_device *, long unsigned int *); -+ int (*set_cur_state)(struct thermal_cooling_device *, long unsigned int); -+ int (*get_requested_power)(struct thermal_cooling_device *, struct thermal_zone_device *, u32 *); -+ int (*state2power)(struct thermal_cooling_device *, struct thermal_zone_device *, long unsigned int, u32 *); -+ int (*power2state)(struct thermal_cooling_device *, struct thermal_zone_device *, u32, long unsigned int *); -+}; -+ -+struct thermal_attr { -+ struct device_attribute attr; -+ char name[20]; -+}; -+ -+struct thermal_bind_params; -+ -+struct thermal_zone_params { -+ char governor_name[20]; -+ bool no_hwmon; -+ int num_tbps; -+ struct thermal_bind_params *tbp; -+ u32 sustainable_power; -+ s32 k_po; -+ s32 k_pu; -+ s32 k_i; -+ s32 k_d; -+ s32 integral_cutoff; -+ int slope; -+ int offset; -+}; -+ -+struct thermal_governor { -+ char name[20]; -+ int (*bind_to_tz)(struct thermal_zone_device *); -+ void (*unbind_from_tz)(struct thermal_zone_device *); -+ int (*throttle)(struct thermal_zone_device *, int); -+ struct list_head governor_list; -+}; -+ -+struct thermal_bind_params { -+ struct thermal_cooling_device *cdev; -+ int weight; -+ int trip_mask; -+ long unsigned int *binding_limits; -+ int (*match)(struct thermal_zone_device *, struct thermal_cooling_device *); -+}; -+ -+struct acpi_processor_cx { -+ u8 valid; -+ u8 type; -+ u32 address; -+ u8 entry_method; -+ u8 index; -+ u32 latency; -+ u8 bm_sts_skip; -+ char desc[32]; -+}; -+ -+struct acpi_lpi_state { -+ u32 min_residency; -+ u32 wake_latency; -+ u32 flags; -+ u32 arch_flags; -+ u32 res_cnt_freq; -+ u32 enable_parent_state; -+ u64 address; -+ u8 index; -+ u8 entry_method; -+ char desc[32]; -+}; -+ -+struct acpi_processor_power { -+ int count; -+ union { -+ struct acpi_processor_cx states[8]; -+ struct acpi_lpi_state lpi_states[8]; -+ }; -+ int timer_broadcast_on_state; -+}; -+ -+struct acpi_psd_package { -+ u64 num_entries; -+ u64 revision; -+ u64 domain; -+ u64 coord_type; -+ u64 num_processors; -+}; -+ -+struct acpi_pct_register { -+ u8 descriptor; -+ u16 length; -+ u8 space_id; -+ u8 bit_width; -+ u8 bit_offset; -+ u8 reserved; -+ u64 address; ++struct wakeup_header { ++ u16 video_mode; ++ u32 pmode_entry; ++ u16 pmode_cs; ++ u32 pmode_cr0; ++ u32 pmode_cr3; ++ u32 pmode_cr4; ++ u32 pmode_efer_low; ++ u32 pmode_efer_high; ++ u64 pmode_gdt; ++ u32 pmode_misc_en_low; ++ u32 pmode_misc_en_high; ++ u32 pmode_behavior; ++ u32 realmode_flags; ++ u32 real_magic; ++ u32 signature; +} __attribute__((packed)); + -+struct acpi_processor_px { -+ u64 core_frequency; -+ u64 power; -+ u64 transition_latency; -+ u64 bus_master_latency; -+ u64 control; -+ u64 status; -+}; -+ -+struct acpi_processor_performance { -+ unsigned int state; -+ unsigned int platform_limit; -+ struct acpi_pct_register control_register; -+ struct acpi_pct_register status_register; -+ short: 16; -+ unsigned int state_count; -+ int: 32; -+ struct acpi_processor_px *states; -+ struct acpi_psd_package domain_info; -+ cpumask_var_t shared_cpu_map; -+ unsigned int shared_type; -+ int: 32; -+} __attribute__((packed)); -+ -+struct acpi_tsd_package { -+ u64 num_entries; -+ u64 revision; -+ u64 domain; -+ u64 coord_type; -+ u64 num_processors; -+}; -+ -+struct acpi_processor_tx_tss { -+ u64 freqpercentage; -+ u64 power; -+ u64 transition_latency; -+ u64 control; -+ u64 status; -+}; -+ -+struct acpi_processor_tx { -+ u16 power; -+ u16 performance; -+}; -+ -+struct acpi_processor; -+ -+struct acpi_processor_throttling { -+ unsigned int state; -+ unsigned int platform_limit; -+ struct acpi_pct_register control_register; -+ struct acpi_pct_register status_register; -+ short: 16; -+ unsigned int state_count; -+ int: 32; -+ struct acpi_processor_tx_tss *states_tss; -+ struct acpi_tsd_package domain_info; -+ cpumask_var_t shared_cpu_map; -+ int (*acpi_processor_get_throttling)(struct acpi_processor *); -+ int (*acpi_processor_set_throttling)(struct acpi_processor *, int, bool); -+ u32 address; -+ u8 duty_offset; -+ u8 duty_width; -+ u8 tsd_valid_flag; -+ char: 8; -+ unsigned int shared_type; -+ struct acpi_processor_tx states[16]; -+ int: 32; -+} __attribute__((packed)); -+ -+struct acpi_processor_flags { -+ u8 power: 1; -+ u8 performance: 1; -+ u8 throttling: 1; -+ u8 limit: 1; -+ u8 bm_control: 1; -+ u8 bm_check: 1; -+ u8 has_cst: 1; -+ u8 has_lpi: 1; -+ u8 power_setup_done: 1; -+ u8 bm_rld_set: 1; -+ u8 need_hotplug_init: 1; -+}; -+ -+struct acpi_processor_lx { -+ int px; -+ int tx; -+}; -+ -+struct acpi_processor_limit { -+ struct acpi_processor_lx state; -+ struct acpi_processor_lx thermal; -+ struct acpi_processor_lx user; -+}; -+ -+struct acpi_processor { -+ acpi_handle handle; -+ u32 acpi_id; -+ phys_cpuid_t phys_id; -+ u32 id; -+ u32 pblk; -+ int performance_platform_limit; -+ int throttling_platform_limit; -+ struct acpi_processor_flags flags; -+ struct acpi_processor_power power; -+ struct acpi_processor_performance *performance; -+ struct acpi_processor_throttling throttling; -+ struct acpi_processor_limit limit; -+ struct thermal_cooling_device *cdev; -+ struct device *dev; -+}; -+ -+struct acpi_processor_errata { -+ u8 smp; -+ struct { -+ u8 throttle: 1; -+ u8 fdma: 1; -+ u8 reserved: 6; -+ u32 bmisx; -+ } piix4; -+}; -+ -+struct cpuidle_driver; -+ +struct acpi_hest_header { + u16 type; + u16 source_id; @@ -25751,6 +26280,31 @@ index 0000000..bcb9d76 + u64 address; +} __attribute__((packed)); + ++struct acpi_processor_cx { ++ u8 valid; ++ u8 type; ++ u32 address; ++ u8 entry_method; ++ u8 index; ++ u32 latency; ++ u8 bm_sts_skip; ++ char desc[32]; ++}; ++ ++struct acpi_processor_flags { ++ u8 power: 1; ++ u8 performance: 1; ++ u8 throttling: 1; ++ u8 limit: 1; ++ u8 bm_control: 1; ++ u8 bm_check: 1; ++ u8 has_cst: 1; ++ u8 has_lpi: 1; ++ u8 power_setup_done: 1; ++ u8 bm_rld_set: 1; ++ u8 need_hotplug_init: 1; ++}; ++ +struct cstate_entry { + struct { + unsigned int eax; @@ -25758,27 +26312,40 @@ index 0000000..bcb9d76 + } states[8]; +}; + ++enum reboot_mode { ++ REBOOT_UNDEFINED = 4294967295, ++ REBOOT_COLD = 0, ++ REBOOT_WARM = 1, ++ REBOOT_HARD = 2, ++ REBOOT_SOFT = 3, ++ REBOOT_GPIO = 4, ++}; ++ ++enum reboot_type { ++ BOOT_TRIPLE = 116, ++ BOOT_KBD = 107, ++ BOOT_BIOS = 98, ++ BOOT_ACPI = 97, ++ BOOT_EFI = 101, ++ BOOT_CF9_FORCE = 112, ++ BOOT_CF9_SAFE = 113, ++}; ++ +typedef void (*nmi_shootdown_cb)(int, struct pt_regs *); + -+struct pci_ops___2; ++enum allow_write_msrs { ++ MSR_WRITES_ON = 0, ++ MSR_WRITES_OFF = 1, ++ MSR_WRITES_DEFAULT = 2, ++}; ++ ++typedef struct __call_single_data call_single_data_t; + +struct cpuid_regs_done { + struct cpuid_regs regs; + struct completion done; +}; + -+struct pinctrl; -+ -+struct pinctrl_state; -+ -+struct dev_pin_info { -+ struct pinctrl *p; -+ struct pinctrl_state *default_state; -+ struct pinctrl_state *init_state; -+ struct pinctrl_state *sleep_state; -+ struct pinctrl_state *idle_state; -+}; -+ +struct intel_early_ops { + resource_size_t (*stolen_size)(int, int, int); + resource_size_t (*stolen_base)(int, int, int, resource_size_t); @@ -25793,6 +26360,22 @@ index 0000000..bcb9d76 + void (*f)(int, int, int); +}; + ++enum { ++ SD_BALANCE_NEWIDLE = 1, ++ SD_BALANCE_EXEC = 2, ++ SD_BALANCE_FORK = 4, ++ SD_BALANCE_WAKE = 8, ++ SD_WAKE_AFFINE = 16, ++ SD_ASYM_CPUCAPACITY = 32, ++ SD_SHARE_CPUCAPACITY = 64, ++ SD_SHARE_PKG_RESOURCES = 128, ++ SD_SERIALIZE = 256, ++ SD_ASYM_PACKING = 512, ++ SD_PREFER_SIBLING = 1024, ++ SD_OVERLAP = 2048, ++ SD_NUMA = 4096, ++}; ++ +struct sparsemask; + +struct sched_domain_shared { @@ -25813,12 +26396,6 @@ index 0000000..bcb9d76 + unsigned int busy_factor; + unsigned int imbalance_pct; + unsigned int cache_nice_tries; -+ unsigned int busy_idx; -+ unsigned int idle_idx; -+ unsigned int newidle_idx; -+ unsigned int wake_idx; -+ unsigned int forkexec_idx; -+ unsigned int smt_gain; + int nohz_idle; + int flags; + int level; @@ -25854,6 +26431,8 @@ index 0000000..bcb9d76 + struct callback_head rcu; + }; + struct sched_domain_shared *shared; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; + unsigned int span_weight; + long unsigned int span[0]; +}; @@ -25880,6 +26459,14 @@ index 0000000..bcb9d76 + char *name; +}; + ++enum apic_intr_mode_id { ++ APIC_PIC = 0, ++ APIC_VIRTUAL_WIRE = 1, ++ APIC_VIRTUAL_WIRE_NO_CONFIG = 2, ++ APIC_SYMMETRIC_IO = 3, ++ APIC_SYMMETRIC_IO_NO_ROUTING = 4, ++}; ++ +struct tsc_adjust { + s64 bootval; + s64 adjusted; @@ -25906,6 +26493,36 @@ index 0000000..bcb9d76 + unsigned char feature5; +}; + ++struct mpc_table { ++ char signature[4]; ++ short unsigned int length; ++ char spec; ++ char checksum; ++ char oem[8]; ++ char productid[12]; ++ unsigned int oemptr; ++ short unsigned int oemsize; ++ short unsigned int oemcount; ++ unsigned int lapic; ++ unsigned int reserved; ++}; ++ ++struct mpc_cpu { ++ unsigned char type; ++ unsigned char apicid; ++ unsigned char apicver; ++ unsigned char cpuflag; ++ unsigned int cpufeature; ++ unsigned int featureflag; ++ unsigned int reserved[2]; ++}; ++ ++struct mpc_bus { ++ unsigned char type; ++ unsigned char busid; ++ unsigned char bustype[6]; ++}; ++ +struct mpc_ioapic { + unsigned char type; + unsigned char apicid; @@ -25924,6 +26541,16 @@ index 0000000..bcb9d76 + unsigned char destapiclint; +}; + ++enum page_cache_mode { ++ _PAGE_CACHE_MODE_WB = 0, ++ _PAGE_CACHE_MODE_WC = 1, ++ _PAGE_CACHE_MODE_UC_MINUS = 2, ++ _PAGE_CACHE_MODE_UC = 3, ++ _PAGE_CACHE_MODE_WT = 4, ++ _PAGE_CACHE_MODE_WP = 5, ++ _PAGE_CACHE_MODE_NUM = 8, ++}; ++ +enum { + IRQ_REMAP_XAPIC_MODE = 0, + IRQ_REMAP_X2APIC_MODE = 1, @@ -25981,6 +26608,7 @@ index 0000000..bcb9d76 + IRQD_MSI_NOMASK_QUIRK = 134217728, + IRQD_HANDLE_ENFORCE_IRQCTX = 268435456, + IRQD_AFFINITY_ON_ACTIVATE = 536870912, ++ IRQD_IRQ_ENABLED_ON_SUSPEND = 1073741824, +}; + +struct irq_cfg { @@ -26015,6 +26643,48 @@ index 0000000..bcb9d76 + +struct irq_matrix; + ++enum { ++ IRQ_TYPE_NONE = 0, ++ IRQ_TYPE_EDGE_RISING = 1, ++ IRQ_TYPE_EDGE_FALLING = 2, ++ IRQ_TYPE_EDGE_BOTH = 3, ++ IRQ_TYPE_LEVEL_HIGH = 4, ++ IRQ_TYPE_LEVEL_LOW = 8, ++ IRQ_TYPE_LEVEL_MASK = 12, ++ IRQ_TYPE_SENSE_MASK = 15, ++ IRQ_TYPE_DEFAULT = 15, ++ IRQ_TYPE_PROBE = 16, ++ IRQ_LEVEL = 256, ++ IRQ_PER_CPU = 512, ++ IRQ_NOPROBE = 1024, ++ IRQ_NOREQUEST = 2048, ++ IRQ_NOAUTOEN = 4096, ++ IRQ_NO_BALANCING = 8192, ++ IRQ_MOVE_PCNTXT = 16384, ++ IRQ_NESTED_THREAD = 32768, ++ IRQ_NOTHREAD = 65536, ++ IRQ_PER_CPU_DEVID = 131072, ++ IRQ_IS_POLLED = 262144, ++ IRQ_DISABLE_UNLAZY = 524288, ++ IRQ_HIDDEN = 1048576, ++}; ++ ++enum { ++ IRQCHIP_SET_TYPE_MASKED = 1, ++ IRQCHIP_EOI_IF_HANDLED = 2, ++ IRQCHIP_MASK_ON_SUSPEND = 4, ++ IRQCHIP_ONOFFLINE_ENABLED = 8, ++ IRQCHIP_SKIP_SET_WAKE = 16, ++ IRQCHIP_ONESHOT_SAFE = 32, ++ IRQCHIP_EOI_THREADED = 64, ++ IRQCHIP_SUPPORTS_LEVEL_MSI = 128, ++ IRQCHIP_SUPPORTS_NMI = 256, ++ IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND = 512, ++ IRQCHIP_AFFINITY_PRE_STARTUP = 1024, ++}; ++ ++struct clock_event_device; ++ +union IO_APIC_reg_00 { + u32 raw; + struct { @@ -26068,44 +26738,6 @@ index 0000000..bcb9d76 + __u64 index: 15; +}; + -+enum { -+ IRQ_TYPE_NONE = 0, -+ IRQ_TYPE_EDGE_RISING = 1, -+ IRQ_TYPE_EDGE_FALLING = 2, -+ IRQ_TYPE_EDGE_BOTH = 3, -+ IRQ_TYPE_LEVEL_HIGH = 4, -+ IRQ_TYPE_LEVEL_LOW = 8, -+ IRQ_TYPE_LEVEL_MASK = 12, -+ IRQ_TYPE_SENSE_MASK = 15, -+ IRQ_TYPE_DEFAULT = 15, -+ IRQ_TYPE_PROBE = 16, -+ IRQ_LEVEL = 256, -+ IRQ_PER_CPU = 512, -+ IRQ_NOPROBE = 1024, -+ IRQ_NOREQUEST = 2048, -+ IRQ_NOAUTOEN = 4096, -+ IRQ_NO_BALANCING = 8192, -+ IRQ_MOVE_PCNTXT = 16384, -+ IRQ_NESTED_THREAD = 32768, -+ IRQ_NOTHREAD = 65536, -+ IRQ_PER_CPU_DEVID = 131072, -+ IRQ_IS_POLLED = 262144, -+ IRQ_DISABLE_UNLAZY = 524288, -+}; -+ -+enum { -+ IRQCHIP_SET_TYPE_MASKED = 1, -+ IRQCHIP_EOI_IF_HANDLED = 2, -+ IRQCHIP_MASK_ON_SUSPEND = 4, -+ IRQCHIP_ONOFFLINE_ENABLED = 8, -+ IRQCHIP_SKIP_SET_WAKE = 16, -+ IRQCHIP_ONESHOT_SAFE = 32, -+ IRQCHIP_EOI_THREADED = 64, -+ IRQCHIP_SUPPORTS_LEVEL_MSI = 128, -+ IRQCHIP_SUPPORTS_NMI = 256, -+ IRQCHIP_AFFINITY_PRE_STARTUP = 1024, -+}; -+ +struct irq_pin_list { + struct list_head list; + int apic; @@ -26176,6 +26808,8 @@ index 0000000..bcb9d76 + void (*msi_finish)(msi_alloc_info_t *, int); + void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); + int (*handle_error)(struct irq_domain *, struct msi_desc *, int); ++ int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); ++ void (*domain_free_irqs)(struct irq_domain *, struct device *); +}; + +struct msi_domain_info { @@ -26199,12 +26833,328 @@ index 0000000..bcb9d76 + MSI_FLAG_LEVEL_CAPABLE = 64, +}; + -+struct hpet_dev; ++struct hpet_channel; + -+struct semaphore { -+ raw_spinlock_t lock; -+ unsigned int count; -+ struct list_head wait_list; ++struct acpi_device_status { ++ u32 present: 1; ++ u32 enabled: 1; ++ u32 show_in_ui: 1; ++ u32 functional: 1; ++ u32 battery_present: 1; ++ u32 reserved: 27; ++}; ++ ++struct acpi_device_flags { ++ u32 dynamic_status: 1; ++ u32 removable: 1; ++ u32 ejectable: 1; ++ u32 power_manageable: 1; ++ u32 match_driver: 1; ++ u32 initialized: 1; ++ u32 visited: 1; ++ u32 hotplug_notify: 1; ++ u32 is_dock_station: 1; ++ u32 of_compatible_ok: 1; ++ u32 coherent_dma: 1; ++ u32 cca_seen: 1; ++ u32 enumeration_by_parent: 1; ++ u32 reserved: 19; ++}; ++ ++typedef char acpi_bus_id[8]; ++ ++struct acpi_pnp_type { ++ u32 hardware_id: 1; ++ u32 bus_address: 1; ++ u32 platform_id: 1; ++ u32 reserved: 29; ++}; ++ ++typedef u64 acpi_bus_address; ++ ++typedef char acpi_device_name[40]; ++ ++typedef char acpi_device_class[20]; ++ ++union acpi_object; ++ ++struct acpi_device_pnp { ++ acpi_bus_id bus_id; ++ int instance_no; ++ struct acpi_pnp_type type; ++ acpi_bus_address bus_address; ++ char *unique_id; ++ struct list_head ids; ++ acpi_device_name device_name; ++ acpi_device_class device_class; ++ union acpi_object *str_obj; ++}; ++ ++struct acpi_device_power_flags { ++ u32 explicit_get: 1; ++ u32 power_resources: 1; ++ u32 inrush_current: 1; ++ u32 power_removed: 1; ++ u32 ignore_parent: 1; ++ u32 dsw_present: 1; ++ u32 reserved: 26; ++}; ++ ++struct acpi_device_power_state { ++ struct { ++ u8 valid: 1; ++ u8 explicit_set: 1; ++ u8 reserved: 6; ++ } flags; ++ int power; ++ int latency; ++ struct list_head resources; ++}; ++ ++struct acpi_device_power { ++ int state; ++ struct acpi_device_power_flags flags; ++ struct acpi_device_power_state states[5]; ++ u64 kabi_reserved1; ++}; ++ ++struct acpi_device_wakeup_flags { ++ u8 valid: 1; ++ u8 notifier_present: 1; ++}; ++ ++struct acpi_device_wakeup_context { ++ void (*func)(struct acpi_device_wakeup_context *); ++ struct device *dev; ++}; ++ ++struct acpi_device_wakeup { ++ acpi_handle gpe_device; ++ u64 gpe_number; ++ u64 sleep_state; ++ struct list_head resources; ++ struct acpi_device_wakeup_flags flags; ++ struct acpi_device_wakeup_context context; ++ struct wakeup_source *ws; ++ int prepare_count; ++ int enable_count; ++}; ++ ++struct acpi_device_perf_flags { ++ u8 reserved: 8; ++}; ++ ++struct acpi_device_perf_state; ++ ++struct acpi_device_perf { ++ int state; ++ struct acpi_device_perf_flags flags; ++ int state_count; ++ struct acpi_device_perf_state *states; ++}; ++ ++struct acpi_device_dir { ++ struct proc_dir_entry *entry; ++}; ++ ++struct acpi_device_data { ++ const union acpi_object *pointer; ++ struct list_head properties; ++ const union acpi_object *of_compatible; ++ struct list_head subnodes; ++}; ++ ++struct acpi_scan_handler; ++ ++struct acpi_hotplug_context; ++ ++struct acpi_driver; ++ ++struct acpi_gpio_mapping; ++ ++struct acpi_device { ++ int device_type; ++ acpi_handle handle; ++ struct fwnode_handle fwnode; ++ struct acpi_device *parent; ++ struct list_head children; ++ struct list_head node; ++ struct list_head wakeup_list; ++ struct list_head del_list; ++ struct acpi_device_status status; ++ struct acpi_device_flags flags; ++ struct acpi_device_pnp pnp; ++ struct acpi_device_power power; ++ struct acpi_device_wakeup wakeup; ++ struct acpi_device_perf performance; ++ struct acpi_device_dir dir; ++ struct acpi_device_data data; ++ struct acpi_scan_handler *handler; ++ struct acpi_hotplug_context *hp; ++ struct acpi_driver *driver; ++ const struct acpi_gpio_mapping *driver_gpios; ++ void *driver_data; ++ struct device dev; ++ unsigned int physical_node_count; ++ unsigned int dep_unmet; ++ struct list_head physical_node_list; ++ struct mutex physical_node_lock; ++ void (*remove)(struct acpi_device *); ++}; ++ ++typedef u64 acpi_io_address; ++ ++typedef u32 acpi_object_type; ++ ++union acpi_object { ++ acpi_object_type type; ++ struct { ++ acpi_object_type type; ++ u64 value; ++ } integer; ++ struct { ++ acpi_object_type type; ++ u32 length; ++ char *pointer; ++ } string; ++ struct { ++ acpi_object_type type; ++ u32 length; ++ u8 *pointer; ++ } buffer; ++ struct { ++ acpi_object_type type; ++ u32 count; ++ union acpi_object *elements; ++ } package; ++ struct { ++ acpi_object_type type; ++ acpi_object_type actual_type; ++ acpi_handle handle; ++ } reference; ++ struct { ++ acpi_object_type type; ++ u32 proc_id; ++ acpi_io_address pblk_address; ++ u32 pblk_length; ++ } processor; ++ struct { ++ acpi_object_type type; ++ u32 system_level; ++ u32 resource_order; ++ } power_resource; ++}; ++ ++struct acpi_hotplug_profile { ++ struct kobject kobj; ++ int (*scan_dependent)(struct acpi_device *); ++ void (*notify_online)(struct acpi_device *); ++ bool enabled: 1; ++ bool demand_offline: 1; ++}; ++ ++struct acpi_scan_handler { ++ const struct acpi_device_id *ids; ++ struct list_head list_node; ++ bool (*match)(const char *, const struct acpi_device_id **); ++ int (*attach)(struct acpi_device *, const struct acpi_device_id *); ++ void (*detach)(struct acpi_device *); ++ void (*bind)(struct device *); ++ void (*unbind)(struct device *); ++ struct acpi_hotplug_profile hotplug; ++}; ++ ++struct acpi_hotplug_context { ++ struct acpi_device *self; ++ int (*notify)(struct acpi_device *, u32); ++ void (*uevent)(struct acpi_device *, u32); ++ void (*fixup)(struct acpi_device *); ++}; ++ ++typedef int (*acpi_op_add)(struct acpi_device *); ++ ++typedef int (*acpi_op_remove)(struct acpi_device *); ++ ++typedef void (*acpi_op_notify)(struct acpi_device *, u32); ++ ++struct acpi_device_ops { ++ acpi_op_add add; ++ acpi_op_remove remove; ++ acpi_op_notify notify; ++}; ++ ++struct acpi_driver { ++ char name[80]; ++ char class[80]; ++ const struct acpi_device_id *ids; ++ unsigned int flags; ++ struct acpi_device_ops ops; ++ struct device_driver drv; ++ struct module *owner; ++}; ++ ++struct acpi_device_perf_state { ++ struct { ++ u8 valid: 1; ++ u8 reserved: 7; ++ } flags; ++ u8 power; ++ u8 performance; ++ int latency; ++}; ++ ++struct acpi_gpio_params; ++ ++struct acpi_gpio_mapping { ++ const char *name; ++ const struct acpi_gpio_params *data; ++ unsigned int size; ++ unsigned int quirks; ++}; ++ ++struct acpi_gpio_params { ++ unsigned int crs_entry_index; ++ unsigned int line_index; ++ bool active_low; ++}; ++ ++struct uvyh_gr0_gam_gr_config_s { ++ long unsigned int rsvd_0_9: 10; ++ long unsigned int subspace: 1; ++ long unsigned int rsvd_11_63: 53; ++}; ++ ++struct uv5h_gr0_gam_gr_config_s { ++ long unsigned int rsvd_0_9: 10; ++ long unsigned int subspace: 1; ++ long unsigned int rsvd_11_63: 53; ++}; ++ ++struct uv4h_gr0_gam_gr_config_s { ++ long unsigned int rsvd_0_9: 10; ++ long unsigned int subspace: 1; ++ long unsigned int rsvd_11_63: 53; ++}; ++ ++struct uv3h_gr0_gam_gr_config_s { ++ long unsigned int m_skt: 6; ++ long unsigned int undef_6_9: 4; ++ long unsigned int subspace: 1; ++ long unsigned int reserved: 53; ++}; ++ ++struct uv2h_gr0_gam_gr_config_s { ++ long unsigned int n_gr: 4; ++ long unsigned int reserved: 60; ++}; ++ ++union uvyh_gr0_gam_gr_config_u { ++ long unsigned int v; ++ struct uvyh_gr0_gam_gr_config_s sy; ++ struct uv5h_gr0_gam_gr_config_s s5; ++ struct uv4h_gr0_gam_gr_config_s s4; ++ struct uv3h_gr0_gam_gr_config_s s3; ++ struct uv2h_gr0_gam_gr_config_s s2; +}; + +struct uvh_node_id_s { @@ -26212,21 +27162,7 @@ index 0000000..bcb9d76 + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; -+ long unsigned int node_id: 15; -+ long unsigned int rsvd_47_63: 17; -+}; -+ -+struct uv1h_node_id_s { -+ long unsigned int force1: 1; -+ long unsigned int manufacturer: 11; -+ long unsigned int part_number: 16; -+ long unsigned int revision: 4; -+ long unsigned int node_id: 15; -+ long unsigned int rsvd_47: 1; -+ long unsigned int nodes_per_bit: 7; -+ long unsigned int rsvd_55: 1; -+ long unsigned int ni_port: 4; -+ long unsigned int rsvd_60_63: 4; ++ long unsigned int rsvd_32_63: 32; +}; + +struct uvxh_node_id_s { @@ -26241,13 +27177,37 @@ index 0000000..bcb9d76 + long unsigned int rsvd_62_63: 2; +}; + -+struct uv2h_node_id_s { ++struct uvyh_node_id_s { ++ long unsigned int force1: 1; ++ long unsigned int manufacturer: 11; ++ long unsigned int part_number: 16; ++ long unsigned int revision: 4; ++ long unsigned int node_id: 7; ++ long unsigned int rsvd_39_56: 18; ++ long unsigned int ni_port: 6; ++ long unsigned int rsvd_63: 1; ++}; ++ ++struct uv5h_node_id_s { ++ long unsigned int force1: 1; ++ long unsigned int manufacturer: 11; ++ long unsigned int part_number: 16; ++ long unsigned int revision: 4; ++ long unsigned int node_id: 7; ++ long unsigned int rsvd_39_56: 18; ++ long unsigned int ni_port: 6; ++ long unsigned int rsvd_63: 1; ++}; ++ ++struct uv4h_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 15; -+ long unsigned int rsvd_47_49: 3; ++ long unsigned int rsvd_47: 1; ++ long unsigned int router_select: 1; ++ long unsigned int rsvd_49: 1; + long unsigned int nodes_per_bit: 7; + long unsigned int ni_port: 5; + long unsigned int rsvd_62_63: 2; @@ -26267,15 +27227,13 @@ index 0000000..bcb9d76 + long unsigned int rsvd_62_63: 2; +}; + -+struct uv4h_node_id_s { ++struct uv2h_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 15; -+ long unsigned int rsvd_47: 1; -+ long unsigned int router_select: 1; -+ long unsigned int rsvd_49: 1; ++ long unsigned int rsvd_47_49: 3; + long unsigned int nodes_per_bit: 7; + long unsigned int ni_port: 5; + long unsigned int rsvd_62_63: 2; @@ -26284,190 +27242,279 @@ index 0000000..bcb9d76 +union uvh_node_id_u { + long unsigned int v; + struct uvh_node_id_s s; -+ struct uv1h_node_id_s s1; + struct uvxh_node_id_s sx; -+ struct uv2h_node_id_s s2; -+ struct uv3h_node_id_s s3; ++ struct uvyh_node_id_s sy; ++ struct uv5h_node_id_s s5; + struct uv4h_node_id_s s4; ++ struct uv3h_node_id_s s3; ++ struct uv2h_node_id_s s2; +}; + -+struct uvh_rh_gam_alias210_overlay_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int base: 8; -+ long unsigned int rsvd_32_47: 16; -+ long unsigned int m_alias: 5; -+ long unsigned int rsvd_53_62: 10; -+ long unsigned int enable: 1; ++struct uvh_rh10_gam_addr_map_config_s { ++ long unsigned int undef_0_5: 6; ++ long unsigned int n_skt: 3; ++ long unsigned int undef_9_11: 3; ++ long unsigned int ls_enable: 1; ++ long unsigned int undef_13_15: 3; ++ long unsigned int mk_tme_keyid_bits: 4; ++ long unsigned int rsvd_20_63: 44; +}; + -+struct uv1h_rh_gam_alias210_overlay_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int base: 8; -+ long unsigned int rsvd_32_47: 16; -+ long unsigned int m_alias: 5; -+ long unsigned int rsvd_53_62: 10; -+ long unsigned int enable: 1; ++struct uvyh_rh10_gam_addr_map_config_s { ++ long unsigned int undef_0_5: 6; ++ long unsigned int n_skt: 3; ++ long unsigned int undef_9_11: 3; ++ long unsigned int ls_enable: 1; ++ long unsigned int undef_13_15: 3; ++ long unsigned int mk_tme_keyid_bits: 4; ++ long unsigned int rsvd_20_63: 44; +}; + -+struct uvxh_rh_gam_alias210_overlay_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int base: 8; -+ long unsigned int rsvd_32_47: 16; -+ long unsigned int m_alias: 5; -+ long unsigned int rsvd_53_62: 10; -+ long unsigned int enable: 1; ++struct uv5h_rh10_gam_addr_map_config_s { ++ long unsigned int undef_0_5: 6; ++ long unsigned int n_skt: 3; ++ long unsigned int undef_9_11: 3; ++ long unsigned int ls_enable: 1; ++ long unsigned int undef_13_15: 3; ++ long unsigned int mk_tme_keyid_bits: 4; +}; + -+struct uv2h_rh_gam_alias210_overlay_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int base: 8; -+ long unsigned int rsvd_32_47: 16; -+ long unsigned int m_alias: 5; -+ long unsigned int rsvd_53_62: 10; -+ long unsigned int enable: 1; -+}; -+ -+struct uv3h_rh_gam_alias210_overlay_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int base: 8; -+ long unsigned int rsvd_32_47: 16; -+ long unsigned int m_alias: 5; -+ long unsigned int rsvd_53_62: 10; -+ long unsigned int enable: 1; -+}; -+ -+struct uv4h_rh_gam_alias210_overlay_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int base: 8; -+ long unsigned int rsvd_32_47: 16; -+ long unsigned int m_alias: 5; -+ long unsigned int rsvd_53_62: 10; -+ long unsigned int enable: 1; -+}; -+ -+union uvh_rh_gam_alias210_overlay_config_2_mmr_u { ++union uvh_rh10_gam_addr_map_config_u { + long unsigned int v; -+ struct uvh_rh_gam_alias210_overlay_config_2_mmr_s s; -+ struct uv1h_rh_gam_alias210_overlay_config_2_mmr_s s1; -+ struct uvxh_rh_gam_alias210_overlay_config_2_mmr_s sx; -+ struct uv2h_rh_gam_alias210_overlay_config_2_mmr_s s2; -+ struct uv3h_rh_gam_alias210_overlay_config_2_mmr_s s3; -+ struct uv4h_rh_gam_alias210_overlay_config_2_mmr_s s4; ++ struct uvh_rh10_gam_addr_map_config_s s; ++ struct uvyh_rh10_gam_addr_map_config_s sy; ++ struct uv5h_rh10_gam_addr_map_config_s s5; +}; + -+struct uvh_rh_gam_alias210_redirect_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int dest_base: 22; -+ long unsigned int rsvd_46_63: 18; ++struct uvh_rh10_gam_mmioh_overlay_config0_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; ++ long unsigned int enable: 1; +}; + -+struct uv1h_rh_gam_alias210_redirect_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int dest_base: 22; -+ long unsigned int rsvd_46_63: 18; ++struct uvyh_rh10_gam_mmioh_overlay_config0_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; ++ long unsigned int enable: 1; +}; + -+struct uvxh_rh_gam_alias210_redirect_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int dest_base: 22; -+ long unsigned int rsvd_46_63: 18; ++struct uv5h_rh10_gam_mmioh_overlay_config0_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; ++ long unsigned int enable: 1; +}; + -+struct uv2h_rh_gam_alias210_redirect_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int dest_base: 22; -+ long unsigned int rsvd_46_63: 18; -+}; -+ -+struct uv3h_rh_gam_alias210_redirect_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int dest_base: 22; -+ long unsigned int rsvd_46_63: 18; -+}; -+ -+struct uv4h_rh_gam_alias210_redirect_config_2_mmr_s { -+ long unsigned int rsvd_0_23: 24; -+ long unsigned int dest_base: 22; -+ long unsigned int rsvd_46_63: 18; -+}; -+ -+union uvh_rh_gam_alias210_redirect_config_2_mmr_u { ++union uvh_rh10_gam_mmioh_overlay_config0_u { + long unsigned int v; -+ struct uvh_rh_gam_alias210_redirect_config_2_mmr_s s; -+ struct uv1h_rh_gam_alias210_redirect_config_2_mmr_s s1; -+ struct uvxh_rh_gam_alias210_redirect_config_2_mmr_s sx; -+ struct uv2h_rh_gam_alias210_redirect_config_2_mmr_s s2; -+ struct uv3h_rh_gam_alias210_redirect_config_2_mmr_s s3; -+ struct uv4h_rh_gam_alias210_redirect_config_2_mmr_s s4; ++ struct uvh_rh10_gam_mmioh_overlay_config0_s s; ++ struct uvyh_rh10_gam_mmioh_overlay_config0_s sy; ++ struct uv5h_rh10_gam_mmioh_overlay_config0_s s5; +}; + -+struct uvh_rh_gam_config_mmr_s { ++struct uvh_rh10_gam_mmioh_overlay_config1_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; ++ long unsigned int enable: 1; ++}; ++ ++struct uvyh_rh10_gam_mmioh_overlay_config1_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; ++ long unsigned int enable: 1; ++}; ++ ++struct uv5h_rh10_gam_mmioh_overlay_config1_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; ++ long unsigned int enable: 1; ++}; ++ ++union uvh_rh10_gam_mmioh_overlay_config1_u { ++ long unsigned int v; ++ struct uvh_rh10_gam_mmioh_overlay_config1_s s; ++ struct uvyh_rh10_gam_mmioh_overlay_config1_s sy; ++ struct uv5h_rh10_gam_mmioh_overlay_config1_s s5; ++}; ++ ++struct uvh_rh10_gam_mmr_overlay_config_s { ++ long unsigned int undef_0_24: 25; ++ long unsigned int base: 27; ++ long unsigned int undef_52_62: 11; ++ long unsigned int enable: 1; ++}; ++ ++struct uvyh_rh10_gam_mmr_overlay_config_s { ++ long unsigned int undef_0_24: 25; ++ long unsigned int base: 27; ++ long unsigned int undef_52_62: 11; ++ long unsigned int enable: 1; ++}; ++ ++struct uv5h_rh10_gam_mmr_overlay_config_s { ++ long unsigned int undef_0_24: 25; ++ long unsigned int base: 27; ++ long unsigned int undef_52_62: 11; ++ long unsigned int enable: 1; ++}; ++ ++union uvh_rh10_gam_mmr_overlay_config_u { ++ long unsigned int v; ++ struct uvh_rh10_gam_mmr_overlay_config_s s; ++ struct uvyh_rh10_gam_mmr_overlay_config_s sy; ++ struct uv5h_rh10_gam_mmr_overlay_config_s s5; ++}; ++ ++struct uvh_rh_gam_addr_map_config_s { + long unsigned int rsvd_0_5: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + -+struct uv1h_rh_gam_config_mmr_s { -+ long unsigned int m_skt: 6; -+ long unsigned int n_skt: 4; -+ long unsigned int rsvd_10_11: 2; -+ long unsigned int mmiol_cfg: 1; -+ long unsigned int rsvd_13_63: 51; -+}; -+ -+struct uvxh_rh_gam_config_mmr_s { ++struct uvxh_rh_gam_addr_map_config_s { + long unsigned int rsvd_0_5: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + -+struct uv2h_rh_gam_config_mmr_s { -+ long unsigned int m_skt: 6; -+ long unsigned int n_skt: 4; -+ long unsigned int rsvd_10_63: 54; -+}; -+ -+struct uv3h_rh_gam_config_mmr_s { -+ long unsigned int m_skt: 6; -+ long unsigned int n_skt: 4; -+ long unsigned int rsvd_10_63: 54; -+}; -+ -+struct uv4h_rh_gam_config_mmr_s { ++struct uv4h_rh_gam_addr_map_config_s { + long unsigned int rsvd_0_5: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + -+union uvh_rh_gam_config_mmr_u { ++struct uv3h_rh_gam_addr_map_config_s { ++ long unsigned int m_skt: 6; ++ long unsigned int n_skt: 4; ++ long unsigned int rsvd_10_63: 54; ++}; ++ ++struct uv2h_rh_gam_addr_map_config_s { ++ long unsigned int m_skt: 6; ++ long unsigned int n_skt: 4; ++ long unsigned int rsvd_10_63: 54; ++}; ++ ++union uvh_rh_gam_addr_map_config_u { + long unsigned int v; -+ struct uvh_rh_gam_config_mmr_s s; -+ struct uv1h_rh_gam_config_mmr_s s1; -+ struct uvxh_rh_gam_config_mmr_s sx; -+ struct uv2h_rh_gam_config_mmr_s s2; -+ struct uv3h_rh_gam_config_mmr_s s3; -+ struct uv4h_rh_gam_config_mmr_s s4; ++ struct uvh_rh_gam_addr_map_config_s s; ++ struct uvxh_rh_gam_addr_map_config_s sx; ++ struct uv4h_rh_gam_addr_map_config_s s4; ++ struct uv3h_rh_gam_addr_map_config_s s3; ++ struct uv2h_rh_gam_addr_map_config_s s2; +}; + -+struct uvh_rh_gam_gru_overlay_config_mmr_s { -+ long unsigned int rsvd_0_51: 52; -+ long unsigned int n_gru: 4; -+ long unsigned int rsvd_56_62: 7; ++struct uvh_rh_gam_alias_2_overlay_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int base: 8; ++ long unsigned int rsvd_32_47: 16; ++ long unsigned int m_alias: 5; ++ long unsigned int rsvd_53_62: 10; + long unsigned int enable: 1; +}; + -+struct uv1h_rh_gam_gru_overlay_config_mmr_s { -+ long unsigned int rsvd_0_27: 28; -+ long unsigned int base: 18; -+ long unsigned int rsvd_46_47: 2; -+ long unsigned int gr4: 1; -+ long unsigned int rsvd_49_51: 3; -+ long unsigned int n_gru: 4; -+ long unsigned int rsvd_56_62: 7; ++struct uvxh_rh_gam_alias_2_overlay_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int base: 8; ++ long unsigned int rsvd_32_47: 16; ++ long unsigned int m_alias: 5; ++ long unsigned int rsvd_53_62: 10; + long unsigned int enable: 1; +}; + -+struct uvxh_rh_gam_gru_overlay_config_mmr_s { ++struct uv4h_rh_gam_alias_2_overlay_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int base: 8; ++ long unsigned int rsvd_32_47: 16; ++ long unsigned int m_alias: 5; ++ long unsigned int rsvd_53_62: 10; ++ long unsigned int enable: 1; ++}; ++ ++struct uv3h_rh_gam_alias_2_overlay_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int base: 8; ++ long unsigned int rsvd_32_47: 16; ++ long unsigned int m_alias: 5; ++ long unsigned int rsvd_53_62: 10; ++ long unsigned int enable: 1; ++}; ++ ++struct uv2h_rh_gam_alias_2_overlay_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int base: 8; ++ long unsigned int rsvd_32_47: 16; ++ long unsigned int m_alias: 5; ++ long unsigned int rsvd_53_62: 10; ++ long unsigned int enable: 1; ++}; ++ ++union uvh_rh_gam_alias_2_overlay_config_u { ++ long unsigned int v; ++ struct uvh_rh_gam_alias_2_overlay_config_s s; ++ struct uvxh_rh_gam_alias_2_overlay_config_s sx; ++ struct uv4h_rh_gam_alias_2_overlay_config_s s4; ++ struct uv3h_rh_gam_alias_2_overlay_config_s s3; ++ struct uv2h_rh_gam_alias_2_overlay_config_s s2; ++}; ++ ++struct uvh_rh_gam_alias_2_redirect_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int dest_base: 22; ++ long unsigned int rsvd_46_63: 18; ++}; ++ ++struct uvxh_rh_gam_alias_2_redirect_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int dest_base: 22; ++ long unsigned int rsvd_46_63: 18; ++}; ++ ++struct uv4h_rh_gam_alias_2_redirect_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int dest_base: 22; ++ long unsigned int rsvd_46_63: 18; ++}; ++ ++struct uv3h_rh_gam_alias_2_redirect_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int dest_base: 22; ++ long unsigned int rsvd_46_63: 18; ++}; ++ ++struct uv2h_rh_gam_alias_2_redirect_config_s { ++ long unsigned int rsvd_0_23: 24; ++ long unsigned int dest_base: 22; ++ long unsigned int rsvd_46_63: 18; ++}; ++ ++union uvh_rh_gam_alias_2_redirect_config_u { ++ long unsigned int v; ++ struct uvh_rh_gam_alias_2_redirect_config_s s; ++ struct uvxh_rh_gam_alias_2_redirect_config_s sx; ++ struct uv4h_rh_gam_alias_2_redirect_config_s s4; ++ struct uv3h_rh_gam_alias_2_redirect_config_s s3; ++ struct uv2h_rh_gam_alias_2_redirect_config_s s2; ++}; ++ ++struct uvh_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_45: 46; + long unsigned int rsvd_46_51: 6; + long unsigned int n_gru: 4; @@ -26475,26 +27522,24 @@ index 0000000..bcb9d76 + long unsigned int enable: 1; +}; + -+struct uv2h_rh_gam_gru_overlay_config_mmr_s { -+ long unsigned int rsvd_0_27: 28; -+ long unsigned int base: 18; ++struct uvxh_rh_gam_gru_overlay_config_s { ++ long unsigned int rsvd_0_45: 46; + long unsigned int rsvd_46_51: 6; + long unsigned int n_gru: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + -+struct uv3h_rh_gam_gru_overlay_config_mmr_s { -+ long unsigned int rsvd_0_27: 28; -+ long unsigned int base: 18; -+ long unsigned int rsvd_46_51: 6; ++struct uv4ah_rh_gam_gru_overlay_config_s { ++ long unsigned int rsvd_0_24: 25; ++ long unsigned int undef_25: 1; ++ long unsigned int base: 26; + long unsigned int n_gru: 4; -+ long unsigned int rsvd_56_61: 6; -+ long unsigned int mode: 1; ++ long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + -+struct uv4h_rh_gam_gru_overlay_config_mmr_s { ++struct uv4h_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_24: 25; + long unsigned int undef_25: 1; + long unsigned int base: 20; @@ -26504,26 +27549,36 @@ index 0000000..bcb9d76 + long unsigned int enable: 1; +}; + -+union uvh_rh_gam_gru_overlay_config_mmr_u { -+ long unsigned int v; -+ struct uvh_rh_gam_gru_overlay_config_mmr_s s; -+ struct uv1h_rh_gam_gru_overlay_config_mmr_s s1; -+ struct uvxh_rh_gam_gru_overlay_config_mmr_s sx; -+ struct uv2h_rh_gam_gru_overlay_config_mmr_s s2; -+ struct uv3h_rh_gam_gru_overlay_config_mmr_s s3; -+ struct uv4h_rh_gam_gru_overlay_config_mmr_s s4; ++struct uv3h_rh_gam_gru_overlay_config_s { ++ long unsigned int rsvd_0_27: 28; ++ long unsigned int base: 18; ++ long unsigned int rsvd_46_51: 6; ++ long unsigned int n_gru: 4; ++ long unsigned int rsvd_56_61: 6; ++ long unsigned int mode: 1; ++ long unsigned int enable: 1; +}; + -+struct uv1h_rh_gam_mmioh_overlay_config_mmr_s { -+ long unsigned int rsvd_0_29: 30; -+ long unsigned int base: 16; -+ long unsigned int m_io: 6; -+ long unsigned int n_io: 4; ++struct uv2h_rh_gam_gru_overlay_config_s { ++ long unsigned int rsvd_0_27: 28; ++ long unsigned int base: 18; ++ long unsigned int rsvd_46_51: 6; ++ long unsigned int n_gru: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + -+struct uv2h_rh_gam_mmioh_overlay_config_mmr_s { ++union uvh_rh_gam_gru_overlay_config_u { ++ long unsigned int v; ++ struct uvh_rh_gam_gru_overlay_config_s s; ++ struct uvxh_rh_gam_gru_overlay_config_s sx; ++ struct uv4ah_rh_gam_gru_overlay_config_s s4a; ++ struct uv4h_rh_gam_gru_overlay_config_s s4; ++ struct uv3h_rh_gam_gru_overlay_config_s s3; ++ struct uv2h_rh_gam_gru_overlay_config_s s2; ++}; ++ ++struct uvh_rh_gam_mmioh_overlay_config_s { + long unsigned int rsvd_0_26: 27; + long unsigned int base: 19; + long unsigned int m_io: 6; @@ -26532,94 +27587,196 @@ index 0000000..bcb9d76 + long unsigned int enable: 1; +}; + -+union uvh_rh_gam_mmioh_overlay_config_mmr_u { ++struct uvxh_rh_gam_mmioh_overlay_config_s { ++ long unsigned int rsvd_0_26: 27; ++ long unsigned int base: 19; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; ++ long unsigned int enable: 1; ++}; ++ ++struct uv2h_rh_gam_mmioh_overlay_config_s { ++ long unsigned int rsvd_0_26: 27; ++ long unsigned int base: 19; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; ++ long unsigned int enable: 1; ++}; ++ ++union uvh_rh_gam_mmioh_overlay_config_u { + long unsigned int v; -+ struct uv1h_rh_gam_mmioh_overlay_config_mmr_s s1; -+ struct uv2h_rh_gam_mmioh_overlay_config_mmr_s s2; ++ struct uvh_rh_gam_mmioh_overlay_config_s s; ++ struct uvxh_rh_gam_mmioh_overlay_config_s sx; ++ struct uv2h_rh_gam_mmioh_overlay_config_s s2; +}; + -+struct uvh_rh_gam_mmr_overlay_config_mmr_s { ++struct uvh_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; -+ long unsigned int rsvd_46_62: 17; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + -+struct uv1h_rh_gam_mmr_overlay_config_mmr_s { ++struct uvxh_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; -+ long unsigned int dual_hub: 1; -+ long unsigned int rsvd_47_62: 16; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + -+struct uvxh_rh_gam_mmr_overlay_config_mmr_s { ++struct uv4ah_rh_gam_mmioh_overlay_config0_mmr_s { + long unsigned int rsvd_0_25: 26; -+ long unsigned int base: 20; -+ long unsigned int rsvd_46_62: 17; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + -+struct uv2h_rh_gam_mmr_overlay_config_mmr_s { ++struct uv4h_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; -+ long unsigned int rsvd_46_62: 17; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + -+struct uv3h_rh_gam_mmr_overlay_config_mmr_s { ++struct uv3h_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; -+ long unsigned int rsvd_46_62: 17; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + -+struct uv4h_rh_gam_mmr_overlay_config_mmr_s { -+ long unsigned int rsvd_0_25: 26; -+ long unsigned int base: 20; -+ long unsigned int rsvd_46_62: 17; -+ long unsigned int enable: 1; -+}; -+ -+union uvh_rh_gam_mmr_overlay_config_mmr_u { ++union uvh_rh_gam_mmioh_overlay_config0_u { + long unsigned int v; -+ struct uvh_rh_gam_mmr_overlay_config_mmr_s s; -+ struct uv1h_rh_gam_mmr_overlay_config_mmr_s s1; -+ struct uvxh_rh_gam_mmr_overlay_config_mmr_s sx; -+ struct uv2h_rh_gam_mmr_overlay_config_mmr_s s2; -+ struct uv3h_rh_gam_mmr_overlay_config_mmr_s s3; -+ struct uv4h_rh_gam_mmr_overlay_config_mmr_s s4; ++ struct uvh_rh_gam_mmioh_overlay_config0_s s; ++ struct uvxh_rh_gam_mmioh_overlay_config0_s sx; ++ struct uv4ah_rh_gam_mmioh_overlay_config0_mmr_s s4a; ++ struct uv4h_rh_gam_mmioh_overlay_config0_s s4; ++ struct uv3h_rh_gam_mmioh_overlay_config0_s s3; +}; + -+struct uv1h_lb_target_physical_apic_id_mask_s { -+ long unsigned int bit_enables: 32; -+ long unsigned int rsvd_32_63: 32; ++struct uvh_rh_gam_mmioh_overlay_config1_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; ++ long unsigned int enable: 1; +}; + -+union uv1h_lb_target_physical_apic_id_mask_u { ++struct uvxh_rh_gam_mmioh_overlay_config1_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; ++ long unsigned int enable: 1; ++}; ++ ++struct uv4ah_rh_gam_mmioh_overlay_config1_mmr_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 26; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int undef_62: 1; ++ long unsigned int enable: 1; ++}; ++ ++struct uv4h_rh_gam_mmioh_overlay_config1_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; ++ long unsigned int enable: 1; ++}; ++ ++struct uv3h_rh_gam_mmioh_overlay_config1_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int m_io: 6; ++ long unsigned int n_io: 4; ++ long unsigned int rsvd_56_62: 7; ++ long unsigned int enable: 1; ++}; ++ ++union uvh_rh_gam_mmioh_overlay_config1_u { + long unsigned int v; -+ struct uv1h_lb_target_physical_apic_id_mask_s s1; ++ struct uvh_rh_gam_mmioh_overlay_config1_s s; ++ struct uvxh_rh_gam_mmioh_overlay_config1_s sx; ++ struct uv4ah_rh_gam_mmioh_overlay_config1_mmr_s s4a; ++ struct uv4h_rh_gam_mmioh_overlay_config1_s s4; ++ struct uv3h_rh_gam_mmioh_overlay_config1_s s3; +}; + -+struct uv3h_gr0_gam_gr_config_s { -+ long unsigned int m_skt: 6; -+ long unsigned int undef_6_9: 4; -+ long unsigned int subspace: 1; -+ long unsigned int reserved: 53; ++struct uvh_rh_gam_mmr_overlay_config_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int rsvd_46_62: 17; ++ long unsigned int enable: 1; +}; + -+union uv3h_gr0_gam_gr_config_u { ++struct uvxh_rh_gam_mmr_overlay_config_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int rsvd_46_62: 17; ++ long unsigned int enable: 1; ++}; ++ ++struct uv4h_rh_gam_mmr_overlay_config_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int rsvd_46_62: 17; ++ long unsigned int enable: 1; ++}; ++ ++struct uv3h_rh_gam_mmr_overlay_config_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int rsvd_46_62: 17; ++ long unsigned int enable: 1; ++}; ++ ++struct uv2h_rh_gam_mmr_overlay_config_s { ++ long unsigned int rsvd_0_25: 26; ++ long unsigned int base: 20; ++ long unsigned int rsvd_46_62: 17; ++ long unsigned int enable: 1; ++}; ++ ++union uvh_rh_gam_mmr_overlay_config_u { + long unsigned int v; -+ struct uv3h_gr0_gam_gr_config_s s3; ++ struct uvh_rh_gam_mmr_overlay_config_s s; ++ struct uvxh_rh_gam_mmr_overlay_config_s sx; ++ struct uv4h_rh_gam_mmr_overlay_config_s s4; ++ struct uv3h_rh_gam_mmr_overlay_config_s s3; ++ struct uv2h_rh_gam_mmr_overlay_config_s s2; ++}; ++ ++enum uv_system_type { ++ UV_NONE = 0, ++ UV_LEGACY_APIC = 1, ++ UV_X2APIC = 2, +}; + +enum { + BIOS_STATUS_MORE_PASSES = 1, + BIOS_STATUS_SUCCESS = 0, -+ BIOS_STATUS_UNIMPLEMENTED = -38, -+ BIOS_STATUS_EINVAL = -22, -+ BIOS_STATUS_UNAVAIL = -16, -+ BIOS_STATUS_ABORT = -4, ++ BIOS_STATUS_UNIMPLEMENTED = 4294967258, ++ BIOS_STATUS_EINVAL = 4294967274, ++ BIOS_STATUS_UNAVAIL = 4294967280, ++ BIOS_STATUS_ABORT = 4294967292, +}; + +struct uv_gam_parameters { @@ -26641,6 +27798,10 @@ index 0000000..bcb9d76 + u32 limit; +}; + ++struct uv_arch_type_entry { ++ char archtype[8]; ++}; ++ +struct uv_systab { + char signature[4]; + u32 revision; @@ -26658,16 +27819,6 @@ index 0000000..bcb9d76 + BIOS_FREQ_BASE_REALTIME_CLOCK = 2, +}; + -+struct uv_scir_s { -+ struct timer_list timer; -+ long unsigned int offset; -+ long unsigned int last; -+ long unsigned int idle_on; -+ long unsigned int idle_off; -+ unsigned char state; -+ unsigned char enabled; -+}; -+ +struct uv_gam_range_s { + u32 limit; + u16 nasid; @@ -26676,6 +27827,8 @@ index 0000000..bcb9d76 +}; + +struct uv_hub_info_s { ++ unsigned int hub_type; ++ unsigned char hub_revision; + long unsigned int global_mmr_base; + long unsigned int global_mmr_shift; + long unsigned int gpa_mask; @@ -26688,9 +27841,9 @@ index 0000000..bcb9d76 + unsigned char m_val; + unsigned char n_val; + unsigned char gr_table_len; -+ unsigned char hub_revision; + unsigned char apic_pnode_shift; + unsigned char gpa_shift; ++ unsigned char nasid_shift; + unsigned char m_shift; + unsigned char n_lshift; + unsigned int gnode_extra; @@ -26711,7 +27864,7 @@ index 0000000..bcb9d76 +struct uv_cpu_info_s { + void *p_uv_hub_info; + unsigned char blade_cpu_id; -+ struct uv_scir_s scir; ++ void *reserved; +}; + +struct uvh_apicid_s { @@ -26728,37 +27881,19 @@ index 0000000..bcb9d76 + struct uvh_apicid_s s; +}; + -+struct uv_hub_nmi_s { -+ raw_spinlock_t nmi_lock; -+ atomic_t in_nmi; -+ atomic_t cpu_owner; -+ atomic_t read_mmr_count; -+ atomic_t nmi_count; -+ long unsigned int nmi_value; -+ bool hub_present; -+ bool pch_owner; -+}; -+ -+struct uv_cpu_nmi_s { -+ struct uv_hub_nmi_s *hub; -+ int state; -+ int pinging; -+ int queries; -+ int pings; -+}; -+ -+enum uv_system_type { -+ UV_NONE = 0, -+ UV_LEGACY_APIC = 1, -+ UV_X2APIC = 2, -+ UV_NON_UNIQUE_APIC = 3, -+}; -+ +enum map_type { + map_wb = 0, + map_uc = 1, +}; + ++enum mmioh_arch { ++ UV2_MMIOH = 4294967295, ++ UVY_MMIOH0 = 0, ++ UVY_MMIOH1 = 1, ++ UVX_MMIOH0 = 2, ++ UVX_MMIOH1 = 3, ++}; ++ +struct mn { + unsigned char m_val; + unsigned char n_val; @@ -26772,10 +27907,6 @@ index 0000000..bcb9d76 + struct cpumask mask; +}; + -+typedef u32 pto_T_____13; -+ -+typedef struct cluster_mask *pto_T_____14; -+ +struct dyn_arch_ftrace {}; + +enum { @@ -26795,16 +27926,20 @@ index 0000000..bcb9d76 + FTRACE_OPS_FL_PID = 8192, + FTRACE_OPS_FL_RCU = 16384, + FTRACE_OPS_FL_TRACE_ARRAY = 32768, ++ FTRACE_OPS_FL_PERMANENT = 65536, ++ FTRACE_OPS_FL_DIRECT = 131072, +}; + +enum { -+ FTRACE_FL_ENABLED = -2147483648, ++ FTRACE_FL_ENABLED = 2147483648, + FTRACE_FL_REGS = 1073741824, + FTRACE_FL_REGS_EN = 536870912, + FTRACE_FL_TRAMP = 268435456, + FTRACE_FL_TRAMP_EN = 134217728, + FTRACE_FL_IPMODIFY = 67108864, + FTRACE_FL_DISABLED = 33554432, ++ FTRACE_FL_DIRECT = 16777216, ++ FTRACE_FL_DIRECT_EN = 8388608, +}; + +struct dyn_ftrace { @@ -26820,14 +27955,6 @@ index 0000000..bcb9d76 + FTRACE_UPDATE_MAKE_NOP = 3, +}; + -+union ftrace_code_union { -+ char code[5]; -+ struct { -+ unsigned char op; -+ int offset; -+ } __attribute__((packed)); -+}; -+ +union ftrace_op_code_union { + char code[7]; + struct { @@ -26838,17 +27965,25 @@ index 0000000..bcb9d76 + +struct ftrace_rec_iter; + ++struct arch_klp_data { ++ unsigned char old_code[5]; ++ unsigned char saved_opcode; ++}; ++ +struct klp_func { + const char *old_name; + void *new_func; + long unsigned int old_sympos; + int force; -+ long unsigned int old_addr; ++ void *old_func; + struct kobject kobj; ++ struct list_head node; + struct list_head stack_node; + long unsigned int old_size; + long unsigned int new_size; ++ bool nop; + bool patched; ++ void *func_node; +}; + +struct klp_hook { @@ -26872,34 +28007,51 @@ index 0000000..bcb9d76 + struct klp_hook *hooks_unload; + struct klp_callbacks callbacks; + struct kobject kobj; ++ struct list_head func_list; ++ struct list_head node; + struct module *mod; ++ bool dynamic; + bool patched; +}; + ++struct klp_state { ++ long unsigned int id; ++ unsigned int version; ++ void *data; ++}; ++ +struct klp_patch { + struct module *mod; + struct klp_object *objs; ++ struct klp_state *states; ++ bool replace; + struct list_head list; + struct kobject kobj; ++ struct list_head obj_list; + bool enabled; ++ bool forced; ++ struct work_struct free_work; + struct completion finish; +}; + -+union klp_code_union { -+ char code[5]; -+ struct { -+ unsigned char e9; -+ int offset; -+ } __attribute__((packed)); -+}; -+ +struct klp_func_node { + struct list_head node; + struct list_head func_stack; -+ long unsigned int old_addr; -+ unsigned char old_code[5]; ++ void *old_func; ++ struct arch_klp_data arch_data; ++ void *brk_func; +}; + ++struct klp_func_list { ++ struct klp_func_list *next; ++ long unsigned int func_addr; ++ long unsigned int func_size; ++ const char *func_name; ++ int force; ++}; ++ ++typedef __s64 Elf64_Sxword; ++ +struct elf64_rela { + Elf64_Addr r_offset; + Elf64_Xword r_info; @@ -26908,6 +28060,82 @@ index 0000000..bcb9d76 + +typedef struct elf64_rela Elf64_Rela; + ++struct kimage_arch { ++ p4d_t *p4d; ++ pud_t *pud; ++ pmd_t *pmd; ++ pte_t *pte; ++}; ++ ++typedef long unsigned int kimage_entry_t; ++ ++struct kexec_segment { ++ union { ++ void *buf; ++ void *kbuf; ++ }; ++ size_t bufsz; ++ long unsigned int mem; ++ size_t memsz; ++}; ++ ++struct purgatory_info { ++ const Elf64_Ehdr *ehdr; ++ Elf64_Shdr *sechdrs; ++ void *purgatory_buf; ++}; ++ ++typedef int kexec_probe_t(const char *, long unsigned int); ++ ++struct kimage; ++ ++typedef void *kexec_load_t(struct kimage *, char *, long unsigned int, char *, long unsigned int, char *, long unsigned int); ++ ++struct kexec_file_ops; ++ ++struct kimage { ++ kimage_entry_t head; ++ kimage_entry_t *entry; ++ kimage_entry_t *last_entry; ++ long unsigned int start; ++ struct page *control_code_page; ++ struct page *swap_page; ++ void *vmcoreinfo_data_copy; ++ long unsigned int nr_segments; ++ struct kexec_segment segment[16]; ++ struct list_head control_pages; ++ struct list_head dest_pages; ++ struct list_head unusable_pages; ++ long unsigned int control_page; ++ unsigned int type: 2; ++ unsigned int preserve_context: 1; ++ unsigned int file_mode: 1; ++ struct kimage_arch arch; ++ void *kernel_buf; ++ long unsigned int kernel_buf_len; ++ void *initrd_buf; ++ long unsigned int initrd_buf_len; ++ char *cmdline_buf; ++ long unsigned int cmdline_buf_len; ++ const struct kexec_file_ops *fops; ++ void *image_loader_data; ++ struct purgatory_info purgatory_info; ++ void *elf_headers; ++ long unsigned int elf_headers_sz; ++ long unsigned int elf_load_addr; ++}; ++ ++typedef int kexec_cleanup_t(void *); ++ ++typedef int kexec_verify_sig_t(const char *, long unsigned int); ++ ++struct kexec_file_ops { ++ kexec_probe_t *probe; ++ kexec_load_t *load; ++ kexec_cleanup_t *cleanup; ++ kexec_verify_sig_t *verify_sig; ++}; ++ +struct x86_mapping_info { + void * (*alloc_pgt_page)(void *); + void *context; @@ -26922,18 +28150,7 @@ index 0000000..bcb9d76 + pgd_t *level4p; +}; + -+struct elf64_phdr { -+ Elf64_Word p_type; -+ Elf64_Word p_flags; -+ Elf64_Off p_offset; -+ Elf64_Addr p_vaddr; -+ Elf64_Addr p_paddr; -+ Elf64_Xword p_filesz; -+ Elf64_Xword p_memsz; -+ Elf64_Xword p_align; -+}; -+ -+typedef struct elf64_phdr Elf64_Phdr; ++typedef void crash_vmclear_fn(); + +struct kexec_buf { + struct kimage *image; @@ -26995,7 +28212,7 @@ index 0000000..bcb9d76 + +struct efi_setup_data { + u64 fw_vendor; -+ u64 runtime; ++ u64 __unused; + u64 tables; + u64 smbios; + u64 reserved[8]; @@ -27005,6 +28222,20 @@ index 0000000..bcb9d76 + void *bootparams_buf; +}; + ++struct prev_kprobe { ++ struct kprobe *kp; ++ long unsigned int status; ++ long unsigned int old_flags; ++ long unsigned int saved_flags; ++}; ++ ++struct kprobe_ctlblk { ++ long unsigned int kprobe_status; ++ long unsigned int kprobe_old_flags; ++ long unsigned int kprobe_saved_flags; ++ struct prev_kprobe prev_kprobe; ++}; ++ +struct kretprobe_instance; + +typedef int (*kretprobe_handler_t)(struct kretprobe_instance *, struct pt_regs *); @@ -27012,7 +28243,10 @@ index 0000000..bcb9d76 +struct kretprobe; + +struct kretprobe_instance { -+ struct hlist_node hlist; ++ union { ++ struct hlist_node hlist; ++ struct callback_head rcu; ++ }; + struct kretprobe *rp; + kprobe_opcode_t *ret_addr; + struct task_struct *task; @@ -27031,7 +28265,20 @@ index 0000000..bcb9d76 + raw_spinlock_t lock; +}; + -+typedef struct kprobe *pto_T_____15; ++struct kretprobe_blackpoint { ++ const char *name; ++ void *addr; ++}; ++ ++struct kprobe_insn_cache { ++ struct mutex mutex; ++ void * (*alloc)(); ++ void (*free)(void *); ++ const char *sym; ++ struct list_head pages; ++ size_t insn_size; ++ int nr_garbage; ++}; + +struct __arch_relative_insn { + u8 op; @@ -27091,6 +28338,12 @@ index 0000000..bcb9d76 + enum kgdb_bpstate state; +}; + ++struct dbg_reg_def_t { ++ char *name; ++ int size; ++ int offset; ++}; ++ +struct hw_breakpoint { + unsigned int enabled; + long unsigned int addr; @@ -27099,30 +28352,22 @@ index 0000000..bcb9d76 + struct perf_event **pev; +}; + -+struct hpet_timer { -+ u64 hpet_config; -+ union { -+ u64 _hpet_hc64; -+ u32 _hpet_hc32; -+ long unsigned int _hpet_compare; -+ } _u1; -+ u64 hpet_fsb[2]; -+}; -+ -+struct hpet { -+ u64 hpet_cap; -+ u64 res0; -+ u64 hpet_config; -+ u64 res1; -+ u64 hpet_isr; -+ u64 res2[25]; -+ union { -+ u64 _hpet_mc64; -+ u32 _hpet_mc32; -+ long unsigned int _hpet_mc; -+ } _u0; -+ u64 res3; -+ struct hpet_timer hpet_timers[1]; ++struct console { ++ char name[16]; ++ void (*write)(struct console *, const char *, unsigned int); ++ int (*read)(struct console *, char *, unsigned int); ++ struct tty_driver * (*device)(struct console *, int *); ++ void (*unblank)(); ++ int (*setup)(struct console *, char *); ++ int (*exit)(struct console *); ++ int (*match)(struct console *, char *, int, char *); ++ short int flags; ++ short int index; ++ int cflag; ++ uint ispeed; ++ uint ospeed; ++ void *data; ++ struct console *next; +}; + +struct hpet_data { @@ -27135,23 +28380,33 @@ index 0000000..bcb9d76 + +typedef irqreturn_t (*rtc_irq_handler)(int, void *); + -+struct hpet_dev___2 { ++enum hpet_mode { ++ HPET_MODE_UNUSED = 0, ++ HPET_MODE_LEGACY = 1, ++ HPET_MODE_CLOCKEVT = 2, ++ HPET_MODE_DEVICE = 3, ++}; ++ ++struct hpet_channel { + struct clock_event_device evt; + unsigned int num; -+ int cpu; ++ unsigned int cpu; + unsigned int irq; -+ unsigned int flags; ++ unsigned int in_use; ++ enum hpet_mode mode; ++ unsigned int boot_cfg; + char name[10]; + long: 48; + long: 64; + long: 64; + long: 64; -+ long: 64; +}; + -+struct hpet_work_struct { -+ struct delayed_work work; -+ struct completion complete; ++struct hpet_base { ++ unsigned int nr_channels; ++ unsigned int nr_clockevents; ++ unsigned int boot_cfg; ++ struct hpet_channel *channels; +}; + +union hpet_lock { @@ -27162,12 +28417,23 @@ index 0000000..bcb9d76 + u64 lockval; +}; + ++struct amd_nb_bus_dev_range { ++ u8 bus; ++ u8 dev_base; ++ u8 dev_limit; ++}; ++ +struct amd_northbridge_info { + u16 num; + u64 flags; + struct amd_northbridge *nb; +}; + ++struct swait_queue { ++ struct task_struct *task; ++ struct list_head task_list; ++}; ++ +struct kvm_steal_time { + __u64 steal; + __u32 version; @@ -27178,27 +28444,17 @@ index 0000000..bcb9d76 +}; + +struct kvm_vcpu_pv_apf_data { -+ __u32 reason; -+ __u8 pad[60]; ++ __u32 flags; ++ __u32 token; ++ __u8 pad[56]; + __u32 enabled; +}; + -+struct swait_queue_head { -+ raw_spinlock_t lock; -+ struct list_head task_list; -+}; -+ -+struct swait_queue { -+ struct task_struct *task; -+ struct list_head task_list; -+}; -+ +struct kvm_task_sleep_node { + struct hlist_node link; + struct swait_queue_head wq; + u32 token; + int cpu; -+ bool halted; +}; + +struct kvm_task_sleep_head { @@ -27206,27 +28462,15 @@ index 0000000..bcb9d76 + struct hlist_head list; +}; + -+typedef __u32 pto_T_____16; -+ -+typedef struct pvclock_vsyscall_time_info *pto_T_____17; -+ -+typedef struct ldttss_desc ldt_desc; -+ -+struct paravirt_patch_template { -+ struct pv_init_ops pv_init_ops; -+ struct pv_time_ops pv_time_ops; -+ struct pv_cpu_ops pv_cpu_ops; -+ struct pv_irq_ops pv_irq_ops; -+ struct pv_mmu_ops pv_mmu_ops; -+ struct pv_lock_ops pv_lock_ops; -+}; -+ +struct branch { + unsigned char opcode; + u32 delta; +} __attribute__((packed)); + -+typedef enum paravirt_lazy_mode pto_T_____18; ++struct patch_lock { ++ unsigned char queued_spin_unlock[3]; ++ unsigned char vcpu_is_preempted[2]; ++}; + +typedef long unsigned int ulong; + @@ -27273,422 +28517,6 @@ index 0000000..bcb9d76 + RP_CHECK_RET = 2, +}; + -+enum dev_prop_type { -+ DEV_PROP_U8 = 0, -+ DEV_PROP_U16 = 1, -+ DEV_PROP_U32 = 2, -+ DEV_PROP_U64 = 3, -+ DEV_PROP_STRING = 4, -+ DEV_PROP_MAX = 5, -+}; -+ -+struct property_entry { -+ const char *name; -+ size_t length; -+ bool is_array; -+ enum dev_prop_type type; -+ union { -+ union { -+ const u8 *u8_data; -+ const u16 *u16_data; -+ const u32 *u32_data; -+ const u64 *u64_data; -+ const char * const *str; -+ } pointer; -+ union { -+ u8 u8_data; -+ u16 u16_data; -+ u32 u32_data; -+ u64 u64_data; -+ const char *str; -+ } value; -+ }; -+}; -+ -+struct fb_fix_screeninfo { -+ char id[16]; -+ long unsigned int smem_start; -+ __u32 smem_len; -+ __u32 type; -+ __u32 type_aux; -+ __u32 visual; -+ __u16 xpanstep; -+ __u16 ypanstep; -+ __u16 ywrapstep; -+ __u32 line_length; -+ long unsigned int mmio_start; -+ __u32 mmio_len; -+ __u32 accel; -+ __u16 capabilities; -+ __u16 reserved[2]; -+}; -+ -+struct fb_bitfield { -+ __u32 offset; -+ __u32 length; -+ __u32 msb_right; -+}; -+ -+struct fb_var_screeninfo { -+ __u32 xres; -+ __u32 yres; -+ __u32 xres_virtual; -+ __u32 yres_virtual; -+ __u32 xoffset; -+ __u32 yoffset; -+ __u32 bits_per_pixel; -+ __u32 grayscale; -+ struct fb_bitfield red; -+ struct fb_bitfield green; -+ struct fb_bitfield blue; -+ struct fb_bitfield transp; -+ __u32 nonstd; -+ __u32 activate; -+ __u32 height; -+ __u32 width; -+ __u32 accel_flags; -+ __u32 pixclock; -+ __u32 left_margin; -+ __u32 right_margin; -+ __u32 upper_margin; -+ __u32 lower_margin; -+ __u32 hsync_len; -+ __u32 vsync_len; -+ __u32 sync; -+ __u32 vmode; -+ __u32 rotate; -+ __u32 colorspace; -+ __u32 reserved[4]; -+}; -+ -+struct fb_cmap { -+ __u32 start; -+ __u32 len; -+ __u16 *red; -+ __u16 *green; -+ __u16 *blue; -+ __u16 *transp; -+}; -+ -+struct fb_copyarea { -+ __u32 dx; -+ __u32 dy; -+ __u32 width; -+ __u32 height; -+ __u32 sx; -+ __u32 sy; -+}; -+ -+struct fb_fillrect { -+ __u32 dx; -+ __u32 dy; -+ __u32 width; -+ __u32 height; -+ __u32 color; -+ __u32 rop; -+}; -+ -+struct fb_image { -+ __u32 dx; -+ __u32 dy; -+ __u32 width; -+ __u32 height; -+ __u32 fg_color; -+ __u32 bg_color; -+ __u8 depth; -+ const char *data; -+ struct fb_cmap cmap; -+}; -+ -+struct fbcurpos { -+ __u16 x; -+ __u16 y; -+}; -+ -+struct fb_cursor { -+ __u16 set; -+ __u16 enable; -+ __u16 rop; -+ const char *mask; -+ struct fbcurpos hot; -+ struct fb_image image; -+}; -+ -+enum backlight_type { -+ BACKLIGHT_RAW = 1, -+ BACKLIGHT_PLATFORM = 2, -+ BACKLIGHT_FIRMWARE = 3, -+ BACKLIGHT_TYPE_MAX = 4, -+}; -+ -+struct backlight_device; -+ -+struct fb_info; -+ -+struct backlight_ops { -+ unsigned int options; -+ int (*update_status)(struct backlight_device *); -+ int (*get_brightness)(struct backlight_device *); -+ int (*check_fb)(struct backlight_device *, struct fb_info *); -+}; -+ -+struct backlight_properties { -+ int brightness; -+ int max_brightness; -+ int power; -+ int fb_blank; -+ enum backlight_type type; -+ unsigned int state; -+}; -+ -+struct backlight_device { -+ struct backlight_properties props; -+ struct mutex update_lock; -+ struct mutex ops_lock; -+ const struct backlight_ops *ops; -+ struct notifier_block fb_notif; -+ struct list_head entry; -+ struct device dev; -+ bool fb_bl_on[32]; -+ int use_count; -+}; -+ -+struct fb_chroma { -+ __u32 redx; -+ __u32 greenx; -+ __u32 bluex; -+ __u32 whitex; -+ __u32 redy; -+ __u32 greeny; -+ __u32 bluey; -+ __u32 whitey; -+}; -+ -+struct fb_videomode; -+ -+struct fb_monspecs { -+ struct fb_chroma chroma; -+ struct fb_videomode *modedb; -+ __u8 manufacturer[4]; -+ __u8 monitor[14]; -+ __u8 serial_no[14]; -+ __u8 ascii[14]; -+ __u32 modedb_len; -+ __u32 model; -+ __u32 serial; -+ __u32 year; -+ __u32 week; -+ __u32 hfmin; -+ __u32 hfmax; -+ __u32 dclkmin; -+ __u32 dclkmax; -+ __u16 input; -+ __u16 dpms; -+ __u16 signal; -+ __u16 vfmin; -+ __u16 vfmax; -+ __u16 gamma; -+ __u16 gtf: 1; -+ __u16 misc; -+ __u8 version; -+ __u8 revision; -+ __u8 max_x; -+ __u8 max_y; -+}; -+ -+struct fb_pixmap { -+ u8 *addr; -+ u32 size; -+ u32 offset; -+ u32 buf_align; -+ u32 scan_align; -+ u32 access_align; -+ u32 flags; -+ u32 blit_x; -+ u32 blit_y; -+ void (*writeio)(struct fb_info *, void *, void *, unsigned int); -+ void (*readio)(struct fb_info *, void *, void *, unsigned int); -+}; -+ -+struct fb_deferred_io; -+ -+struct fb_ops; -+ -+struct fb_tile_ops; -+ -+struct apertures_struct; -+ -+struct fb_info { -+ atomic_t count; -+ int node; -+ int flags; -+ int fbcon_rotate_hint; -+ struct mutex lock; -+ struct mutex mm_lock; -+ struct fb_var_screeninfo var; -+ struct fb_fix_screeninfo fix; -+ struct fb_monspecs monspecs; -+ struct work_struct queue; -+ struct fb_pixmap pixmap; -+ struct fb_pixmap sprite; -+ struct fb_cmap cmap; -+ struct list_head modelist; -+ struct fb_videomode *mode; -+ struct backlight_device *bl_dev; -+ struct mutex bl_curve_mutex; -+ u8 bl_curve[128]; -+ struct delayed_work deferred_work; -+ struct fb_deferred_io *fbdefio; -+ struct fb_ops *fbops; -+ struct device *device; -+ struct device *dev; -+ int class_flag; -+ struct fb_tile_ops *tileops; -+ union { -+ char *screen_base; -+ char *screen_buffer; -+ }; -+ long unsigned int screen_size; -+ void *pseudo_palette; -+ u32 state; -+ void *fbcon_par; -+ void *par; -+ struct apertures_struct *apertures; -+ bool skip_vt_switch; -+}; -+ -+struct fb_videomode { -+ const char *name; -+ u32 refresh; -+ u32 xres; -+ u32 yres; -+ u32 pixclock; -+ u32 left_margin; -+ u32 right_margin; -+ u32 upper_margin; -+ u32 lower_margin; -+ u32 hsync_len; -+ u32 vsync_len; -+ u32 sync; -+ u32 vmode; -+ u32 flag; -+}; -+ -+struct fb_blit_caps { -+ u32 x; -+ u32 y; -+ u32 len; -+ u32 flags; -+}; -+ -+struct fb_deferred_io { -+ long unsigned int delay; -+ struct mutex lock; -+ struct list_head pagelist; -+ void (*first_io)(struct fb_info *); -+ void (*deferred_io)(struct fb_info *, struct list_head *); -+}; -+ -+struct fb_ops { -+ struct module *owner; -+ int (*fb_open)(struct fb_info *, int); -+ int (*fb_release)(struct fb_info *, int); -+ ssize_t (*fb_read)(struct fb_info *, char *, size_t, loff_t *); -+ ssize_t (*fb_write)(struct fb_info *, const char *, size_t, loff_t *); -+ int (*fb_check_var)(struct fb_var_screeninfo *, struct fb_info *); -+ int (*fb_set_par)(struct fb_info *); -+ int (*fb_setcolreg)(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, struct fb_info *); -+ int (*fb_setcmap)(struct fb_cmap *, struct fb_info *); -+ int (*fb_blank)(int, struct fb_info *); -+ int (*fb_pan_display)(struct fb_var_screeninfo *, struct fb_info *); -+ void (*fb_fillrect)(struct fb_info *, const struct fb_fillrect *); -+ void (*fb_copyarea)(struct fb_info *, const struct fb_copyarea *); -+ void (*fb_imageblit)(struct fb_info *, const struct fb_image *); -+ int (*fb_cursor)(struct fb_info *, struct fb_cursor *); -+ int (*fb_sync)(struct fb_info *); -+ int (*fb_ioctl)(struct fb_info *, unsigned int, long unsigned int); -+ int (*fb_compat_ioctl)(struct fb_info *, unsigned int, long unsigned int); -+ int (*fb_mmap)(struct fb_info *, struct vm_area_struct *); -+ void (*fb_get_caps)(struct fb_info *, struct fb_blit_caps *, struct fb_var_screeninfo *); -+ void (*fb_destroy)(struct fb_info *); -+ int (*fb_debug_enter)(struct fb_info *); -+ int (*fb_debug_leave)(struct fb_info *); -+}; -+ -+struct fb_tilemap { -+ __u32 width; -+ __u32 height; -+ __u32 depth; -+ __u32 length; -+ const __u8 *data; -+}; -+ -+struct fb_tilerect { -+ __u32 sx; -+ __u32 sy; -+ __u32 width; -+ __u32 height; -+ __u32 index; -+ __u32 fg; -+ __u32 bg; -+ __u32 rop; -+}; -+ -+struct fb_tilearea { -+ __u32 sx; -+ __u32 sy; -+ __u32 dx; -+ __u32 dy; -+ __u32 width; -+ __u32 height; -+}; -+ -+struct fb_tileblit { -+ __u32 sx; -+ __u32 sy; -+ __u32 width; -+ __u32 height; -+ __u32 fg; -+ __u32 bg; -+ __u32 length; -+ __u32 *indices; -+}; -+ -+struct fb_tilecursor { -+ __u32 sx; -+ __u32 sy; -+ __u32 mode; -+ __u32 shape; -+ __u32 fg; -+ __u32 bg; -+}; -+ -+struct fb_tile_ops { -+ void (*fb_settile)(struct fb_info *, struct fb_tilemap *); -+ void (*fb_tilecopy)(struct fb_info *, struct fb_tilearea *); -+ void (*fb_tilefill)(struct fb_info *, struct fb_tilerect *); -+ void (*fb_tileblit)(struct fb_info *, struct fb_tileblit *); -+ void (*fb_tilecursor)(struct fb_info *, struct fb_tilecursor *); -+ int (*fb_get_tilemax)(struct fb_info *); -+}; -+ -+struct aperture { -+ resource_size_t base; -+ resource_size_t size; -+}; -+ -+struct apertures_struct { -+ unsigned int count; -+ struct aperture ranges[0]; -+}; -+ -+struct dmt_videomode { -+ u32 dmt_id; -+ u32 std_2byte_code; -+ u32 cvt_3byte_code; -+ const struct fb_videomode *mode; -+}; -+ +struct simplefb_platform_data { + u32 width; + u32 height; @@ -27696,15 +28524,6 @@ index 0000000..bcb9d76 + const char *format; +}; + -+struct efifb_dmi_info { -+ char *optname; -+ long unsigned int base; -+ int stride; -+ int width; -+ int height; -+ int flags; -+}; -+ +enum { + M_I17 = 0, + M_I20 = 1, @@ -27740,6 +28559,15 @@ index 0000000..bcb9d76 + M_UNKNOWN = 31, +}; + ++struct efifb_dmi_info { ++ char *optname; ++ long unsigned int base; ++ int stride; ++ int width; ++ int height; ++ int flags; ++}; ++ +enum { + OVERRIDE_NONE = 0, + OVERRIDE_BASE = 1, @@ -27754,38 +28582,11 @@ index 0000000..bcb9d76 + PERF_SAMPLE_REGS_ABI_64 = 2, +}; + -+struct __va_list_tag { -+ unsigned int gp_offset; -+ unsigned int fp_offset; -+ void *overflow_arg_area; -+ void *reg_save_area; -+}; -+ -+typedef __builtin_va_list __gnuc_va_list; -+ -+typedef __gnuc_va_list va_list; -+ +struct va_format { + const char *fmt; + va_list *va; +}; + -+enum x86_pf_error_code { -+ X86_PF_PROT = 1, -+ X86_PF_WRITE = 2, -+ X86_PF_USER = 4, -+ X86_PF_RSVD = 8, -+ X86_PF_INSTR = 16, -+ X86_PF_PK = 32, -+}; -+ -+struct pci_hostbridge_probe { -+ u32 bus; -+ u32 slot; -+ u32 vendor; -+ u32 device; -+}; -+ +enum pg_level { + PG_LEVEL_NONE = 0, + PG_LEVEL_4K = 1, @@ -27795,6 +28596,53 @@ index 0000000..bcb9d76 + PG_LEVEL_NUM = 5, +}; + ++enum es_result { ++ ES_OK = 0, ++ ES_UNSUPPORTED = 1, ++ ES_VMM_ERROR = 2, ++ ES_DECODE_FAILED = 3, ++ ES_EXCEPTION = 4, ++ ES_RETRY = 5, ++}; ++ ++struct es_fault_info { ++ long unsigned int vector; ++ long unsigned int error_code; ++ long unsigned int cr2; ++}; ++ ++struct es_em_ctxt { ++ struct pt_regs *regs; ++ struct insn insn; ++ struct es_fault_info fi; ++}; ++ ++struct sev_es_runtime_data { ++ struct ghcb ghcb_page; ++ struct ghcb backup_ghcb; ++ bool ghcb_active; ++ bool backup_ghcb_active; ++ long unsigned int dr7; ++}; ++ ++struct ghcb_state { ++ struct ghcb *ghcb; ++}; ++ ++enum cc_attr { ++ CC_ATTR_MEM_ENCRYPT = 0, ++ CC_ATTR_HOST_MEM_ENCRYPT = 1, ++ CC_ATTR_GUEST_MEM_ENCRYPT = 2, ++ CC_ATTR_GUEST_STATE_ENCRYPT = 3, ++}; ++ ++struct pci_hostbridge_probe { ++ u32 bus; ++ u32 slot; ++ u32 vendor; ++ u32 device; ++}; ++ +struct trace_print_flags { + long unsigned int mask; + const char *name; @@ -27824,18 +28672,27 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_tlb_flush {}; + ++typedef void (*btf_trace_tlb_flush)(void *, int, long unsigned int); ++ +struct map_range { + long unsigned int start; + long unsigned int end; + unsigned int page_size_mask; +}; + -+enum { -+ MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 12, -+ SECTION_INFO = 12, -+ MIX_SECTION_INFO = 13, -+ NODE_INFO = 14, -+ MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = 14, ++struct mhp_params { ++ struct vmem_altmap *altmap; ++ pgprot_t pgprot; ++}; ++ ++struct mem_section_usage { ++ long unsigned int subsection_map[1]; ++ long unsigned int pageblock_flags[0]; ++}; ++ ++struct mem_section { ++ long unsigned int section_mem_map; ++ struct mem_section_usage *usage; +}; + +enum kcore_type { @@ -27856,7 +28713,16 @@ index 0000000..bcb9d76 + int type; +}; + ++enum { ++ MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 12, ++ SECTION_INFO = 12, ++ MIX_SECTION_INFO = 13, ++ NODE_INFO = 14, ++ MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = 14, ++}; ++ +struct hstate { ++ struct mutex resize_lock; + int next_nid_to_alloc; + int next_nid_to_free; + unsigned int order; @@ -27869,11 +28735,14 @@ index 0000000..bcb9d76 + long unsigned int nr_overcommit_huge_pages; + struct list_head hugepage_activelist; + struct list_head hugepage_freelists[1024]; ++ unsigned int max_huge_pages_node[1024]; + unsigned int nr_huge_pages_node[1024]; + unsigned int free_huge_pages_node[1024]; + unsigned int surplus_huge_pages_node[1024]; + unsigned int resv_huge_pages_node[1024]; -+ struct cftype cgroup_files[5]; ++ unsigned int nr_free_vmemmap_pages; ++ struct cftype cgroup_files_dfl[7]; ++ struct cftype cgroup_files_legacy[9]; + char name[32]; +}; + @@ -27887,12 +28756,75 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_x86_exceptions {}; + -+struct ioremap_mem_flags { -+ bool system_ram; -+ bool desc_other; ++typedef void (*btf_trace_page_fault_user)(void *, long unsigned int, struct pt_regs *, long unsigned int); ++ ++typedef void (*btf_trace_page_fault_kernel)(void *, long unsigned int, struct pt_regs *, long unsigned int); ++ ++enum { ++ IORES_MAP_SYSTEM_RAM = 1, ++ IORES_MAP_ENCRYPTED = 2, +}; + -+typedef bool (*ex_handler_t)(const struct exception_table_entry *, struct pt_regs *, int); ++struct ioremap_desc { ++ unsigned int flags; ++}; ++ ++typedef bool (*ex_handler_t)(const struct exception_table_entry *, struct pt_regs *, int, long unsigned int, long unsigned int); ++ ++struct hugepage_subpool { ++ spinlock_t lock; ++ long int count; ++ long int max_hpages; ++ long int used_hpages; ++ struct hstate *hstate; ++ long int min_hpages; ++ long int rsv_hpages; ++}; ++ ++struct hugetlbfs_sb_info { ++ long int max_inodes; ++ long int free_inodes; ++ spinlock_t stat_lock; ++ struct hstate *hstate; ++ struct hugepage_subpool *spool; ++ kuid_t uid; ++ kgid_t gid; ++ umode_t mode; ++}; ++ ++struct entry_stack_page { ++ struct entry_stack stack; ++}; ++ ++struct debug_store_buffers { ++ char bts_buffer[65536]; ++ char pebs_buffer[65536]; ++}; ++ ++struct exception_stacks { ++ char DF_stack_guard[0]; ++ char DF_stack[8192]; ++ char NMI_stack_guard[0]; ++ char NMI_stack[8192]; ++ char DB_stack_guard[0]; ++ char DB_stack[8192]; ++ char MCE_stack_guard[0]; ++ char MCE_stack[8192]; ++ char VC_stack_guard[0]; ++ char VC_stack[8192]; ++ char VC2_stack_guard[0]; ++ char VC2_stack[8192]; ++ char IST_top_guard[0]; ++}; ++ ++struct cpu_entry_area { ++ char gdt[4096]; ++ struct entry_stack_page entry_stack_page; ++ struct tss_struct tss; ++ struct cea_exception_stacks estacks; ++ struct debug_store cpu_debug_store; ++ struct debug_store_buffers cpu_debug_buffers; ++}; + +struct cpa_data { + long unsigned int *vaddr; @@ -27900,13 +28832,21 @@ index 0000000..bcb9d76 + pgprot_t mask_set; + pgprot_t mask_clr; + long unsigned int numpages; -+ int flags; ++ long unsigned int curpage; + long unsigned int pfn; ++ unsigned int flags; + unsigned int force_split: 1; -+ int curpage; ++ unsigned int force_static_prot: 1; ++ unsigned int force_flush_all: 1; + struct page **pages; +}; + ++enum cpa_warn { ++ CPA_CONFLICT = 0, ++ CPA_PROTECT = 1, ++ CPA_DETECT = 2, ++}; ++ +typedef struct { + u64 val; +} pfn_t; @@ -27934,10 +28874,6 @@ index 0000000..bcb9d76 + int not_ram; +}; + -+typedef u16 pto_T_____19; -+ -+typedef struct mm_struct *pto_T_____20; -+ +struct rb_augment_callbacks { + void (*propagate)(struct rb_node *, struct rb_node *); + void (*copy)(struct rb_node *, struct rb_node *); @@ -27949,27 +28885,6 @@ index 0000000..bcb9d76 + MEMTYPE_END_MATCH = 1, +}; + -+struct hugepage_subpool { -+ spinlock_t lock; -+ long int count; -+ long int max_hpages; -+ long int used_hpages; -+ struct hstate *hstate; -+ long int min_hpages; -+ long int rsv_hpages; -+}; -+ -+struct hugetlbfs_sb_info { -+ long int max_inodes; -+ long int free_inodes; -+ spinlock_t stat_lock; -+ struct hstate *hstate; -+ struct hugepage_subpool *spool; -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ +struct numa_memblk { + u64 start; + u64 end; @@ -28055,8 +28970,6 @@ index 0000000..bcb9d76 + +typedef void (*crypto_completion_t)(struct crypto_async_request *, int); + -+struct crypto_tfm; -+ +struct crypto_async_request { + struct list_head list; + crypto_completion_t complete; @@ -28065,181 +28978,39 @@ index 0000000..bcb9d76 + u32 flags; +}; + -+struct crypto_ablkcipher; -+ -+struct ablkcipher_request; -+ -+struct ablkcipher_tfm { -+ int (*setkey)(struct crypto_ablkcipher *, const u8 *, unsigned int); -+ int (*encrypt)(struct ablkcipher_request *); -+ int (*decrypt)(struct ablkcipher_request *); -+ struct crypto_ablkcipher *base; -+ unsigned int ivsize; -+ unsigned int reqsize; -+}; -+ -+struct blkcipher_desc; -+ -+struct blkcipher_tfm { -+ void *iv; -+ int (*setkey)(struct crypto_tfm *, const u8 *, unsigned int); -+ int (*encrypt)(struct blkcipher_desc *, struct scatterlist *, struct scatterlist *, unsigned int); -+ int (*decrypt)(struct blkcipher_desc *, struct scatterlist *, struct scatterlist *, unsigned int); -+}; -+ -+struct cipher_tfm { -+ int (*cit_setkey)(struct crypto_tfm *, const u8 *, unsigned int); -+ void (*cit_encrypt_one)(struct crypto_tfm *, u8 *, const u8 *); -+ void (*cit_decrypt_one)(struct crypto_tfm *, u8 *, const u8 *); -+}; -+ -+struct compress_tfm { -+ int (*cot_compress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); -+ int (*cot_decompress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); -+}; -+ -+struct crypto_alg; -+ -+struct crypto_tfm { -+ u32 crt_flags; -+ union { -+ struct ablkcipher_tfm ablkcipher; -+ struct blkcipher_tfm blkcipher; -+ struct cipher_tfm cipher; -+ struct compress_tfm compress; -+ } crt_u; -+ void (*exit)(struct crypto_tfm *); -+ struct crypto_alg *__crt_alg; -+ void *__crt_ctx[0]; -+}; -+ -+struct ablkcipher_request { -+ struct crypto_async_request base; -+ unsigned int nbytes; -+ void *info; -+ struct scatterlist *src; -+ struct scatterlist *dst; -+ void *__ctx[0]; -+}; -+ -+struct crypto_blkcipher; -+ -+struct blkcipher_desc { -+ struct crypto_blkcipher *tfm; -+ void *info; -+ u32 flags; -+}; -+ -+struct crypto_blkcipher { -+ struct crypto_tfm base; -+}; -+ -+struct skcipher_givcrypt_request; -+ -+struct ablkcipher_alg { -+ int (*setkey)(struct crypto_ablkcipher *, const u8 *, unsigned int); -+ int (*encrypt)(struct ablkcipher_request *); -+ int (*decrypt)(struct ablkcipher_request *); -+ int (*givencrypt)(struct skcipher_givcrypt_request *); -+ int (*givdecrypt)(struct skcipher_givcrypt_request *); -+ const char *geniv; -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+}; -+ -+struct crypto_ablkcipher { -+ struct crypto_tfm base; -+}; -+ -+struct skcipher_givcrypt_request { -+ u64 seq; -+ u8 *giv; -+ struct ablkcipher_request creq; -+}; -+ -+struct blkcipher_alg { -+ int (*setkey)(struct crypto_tfm *, const u8 *, unsigned int); -+ int (*encrypt)(struct blkcipher_desc *, struct scatterlist *, struct scatterlist *, unsigned int); -+ int (*decrypt)(struct blkcipher_desc *, struct scatterlist *, struct scatterlist *, unsigned int); -+ const char *geniv; -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+}; -+ -+struct cipher_alg { -+ unsigned int cia_min_keysize; -+ unsigned int cia_max_keysize; -+ int (*cia_setkey)(struct crypto_tfm *, const u8 *, unsigned int); -+ void (*cia_encrypt)(struct crypto_tfm *, u8 *, const u8 *); -+ void (*cia_decrypt)(struct crypto_tfm *, u8 *, const u8 *); -+}; -+ -+struct compress_alg { -+ int (*coa_compress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); -+ int (*coa_decompress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); -+}; -+ -+struct crypto_type; -+ -+struct crypto_alg { -+ struct list_head cra_list; -+ struct list_head cra_users; -+ u32 cra_flags; -+ unsigned int cra_blocksize; -+ unsigned int cra_ctxsize; -+ unsigned int cra_alignmask; -+ int cra_priority; -+ refcount_t cra_refcnt; -+ char cra_name[128]; -+ char cra_driver_name[128]; -+ const struct crypto_type *cra_type; -+ union { -+ struct ablkcipher_alg ablkcipher; -+ struct blkcipher_alg blkcipher; -+ struct cipher_alg cipher; -+ struct compress_alg compress; -+ } cra_u; -+ int (*cra_init)(struct crypto_tfm *); -+ void (*cra_exit)(struct crypto_tfm *); -+ void (*cra_destroy)(struct crypto_alg *); -+ struct module *cra_module; -+}; -+ -+struct crypto_instance; -+ -+struct crypto_type { -+ unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); -+ unsigned int (*extsize)(struct crypto_alg *); -+ int (*init)(struct crypto_tfm *, u32, u32); -+ int (*init_tfm)(struct crypto_tfm *); -+ void (*show)(struct seq_file *, struct crypto_alg *); -+ int (*report)(struct sk_buff *, struct crypto_alg *); -+ void (*free)(struct crypto_instance *); -+ unsigned int type; -+ unsigned int maskclear; -+ unsigned int maskset; -+ unsigned int tfmsize; -+}; -+ +struct crypto_template; + ++struct crypto_spawn; ++ +struct crypto_instance { + struct crypto_alg alg; + struct crypto_template *tmpl; -+ struct hlist_node list; ++ union { ++ struct hlist_node list; ++ struct crypto_spawn *spawns; ++ }; + void *__ctx[0]; +}; + ++struct crypto_spawn { ++ struct list_head list; ++ struct crypto_alg *alg; ++ union { ++ struct crypto_instance *inst; ++ struct crypto_spawn *next; ++ }; ++ const struct crypto_type *frontend; ++ u32 mask; ++ bool dead; ++ bool registered; ++}; ++ +struct rtattr; + +struct crypto_template { + struct list_head list; + struct hlist_head instances; + struct module *module; -+ struct crypto_instance * (*alloc)(struct rtattr **); -+ void (*free)(struct crypto_instance *); + int (*create)(struct crypto_template *, struct rtattr **); + char name[128]; +}; @@ -28259,12 +29030,7 @@ index 0000000..bcb9d76 +}; + +struct crypto_skcipher { -+ int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); -+ int (*encrypt)(struct skcipher_request *); -+ int (*decrypt)(struct skcipher_request *); -+ unsigned int ivsize; + unsigned int reqsize; -+ unsigned int keysize; + struct crypto_tfm base; +}; + @@ -28305,13 +29071,13 @@ index 0000000..bcb9d76 + unsigned int alignmask; +}; + -+typedef void (*common_glue_func_t)(void *, u8 *, const u8 *); ++typedef void (*common_glue_func_t)(const void *, u8 *, const u8 *); + -+typedef void (*common_glue_cbc_func_t)(void *, u128 *, const u128 *); ++typedef void (*common_glue_cbc_func_t)(const void *, u8 *, const u8 *); + -+typedef void (*common_glue_ctr_func_t)(void *, u128 *, const u128 *, le128 *); ++typedef void (*common_glue_ctr_func_t)(const void *, u8 *, const u8 *, le128 *); + -+typedef void (*common_glue_xts_func_t)(void *, u128 *, const u128 *, le128 *); ++typedef void (*common_glue_xts_func_t)(const void *, u8 *, const u8 *, le128 *); + +struct common_glue_func_entry { + unsigned int num_blocks; @@ -28335,8 +29101,18 @@ index 0000000..bcb9d76 + u32 key_length; +}; + -+struct crypto_cipher { -+ struct crypto_tfm base; ++struct skcipher_alg { ++ int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); ++ int (*encrypt)(struct skcipher_request *); ++ int (*decrypt)(struct skcipher_request *); ++ int (*init)(struct crypto_skcipher *); ++ void (*exit)(struct crypto_skcipher *); ++ unsigned int min_keysize; ++ unsigned int max_keysize; ++ unsigned int ivsize; ++ unsigned int chunksize; ++ unsigned int walksize; ++ struct crypto_alg base; +}; + +struct aead_request { @@ -28358,7 +29134,6 @@ index 0000000..bcb9d76 + int (*decrypt)(struct aead_request *); + int (*init)(struct crypto_aead *); + void (*exit)(struct crypto_aead *); -+ const char *geniv; + unsigned int ivsize; + unsigned int maxauthsize; + unsigned int chunksize; @@ -28371,24 +29146,6 @@ index 0000000..bcb9d76 + struct crypto_tfm base; +}; + -+struct skcipher_alg { -+ int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); -+ int (*encrypt)(struct skcipher_request *); -+ int (*decrypt)(struct skcipher_request *); -+ int (*init)(struct crypto_skcipher *); -+ void (*exit)(struct crypto_skcipher *); -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+ unsigned int chunksize; -+ unsigned int walksize; -+ struct crypto_alg base; -+}; -+ -+struct cryptd_aead { -+ struct crypto_aead base; -+}; -+ +struct aesni_rfc4106_gcm_ctx { + u8 hash_subkey[16]; + struct crypto_aes_ctx aes_key_expanded; @@ -28421,55 +29178,19 @@ index 0000000..bcb9d76 + u8 current_counter[16]; + u64 partial_block_len; + u64 unused; -+ u8 hash_keys[128]; ++ u8 hash_keys[256]; ++}; ++ ++struct aesni_gcm_tfm_s { ++ void (*init)(void *, struct gcm_context_data *, u8 *, u8 *, const u8 *, long unsigned int); ++ void (*enc_update)(void *, struct gcm_context_data *, u8 *, const u8 *, long unsigned int); ++ void (*dec_update)(void *, struct gcm_context_data *, u8 *, const u8 *, long unsigned int); ++ void (*finalize)(void *, struct gcm_context_data *, u8 *, long unsigned int); +}; + +struct simd_skcipher_alg; + -+struct crypto_attr_type { -+ u32 type; -+ u32 mask; -+}; -+ -+struct crypto_spawn { -+ struct list_head list; -+ struct crypto_alg *alg; -+ struct crypto_instance *inst; -+ const struct crypto_type *frontend; -+ u32 mask; -+}; -+ -+struct skcipher_instance { -+ void (*free)(struct skcipher_instance *); -+ union { -+ struct { -+ char head[64]; -+ struct crypto_instance base; -+ } s; -+ struct skcipher_alg alg; -+ }; -+}; -+ -+struct crypto_skcipher_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_fpu_ctx { -+ struct crypto_skcipher *child; -+}; -+ -+struct crypto_shash; -+ -+struct shash_desc { -+ struct crypto_shash *tfm; -+ u32 flags; -+ void *__ctx[0]; -+}; -+ -+struct crypto_shash { -+ unsigned int descsize; -+ struct crypto_tfm base; -+}; ++struct simd_aead_alg; + +struct shash_alg { + int (*init)(struct shash_desc *); @@ -28480,6 +29201,8 @@ index 0000000..bcb9d76 + int (*export)(struct shash_desc *, void *); + int (*import)(struct shash_desc *, const void *); + int (*setkey)(struct crypto_shash *, const u8 *, unsigned int); ++ int (*init_tfm)(struct crypto_shash *); ++ void (*exit_tfm)(struct crypto_shash *); + unsigned int descsize; + int: 32; + unsigned int digestsize; @@ -28495,8 +29218,6 @@ index 0000000..bcb9d76 + +typedef void sha1_block_fn(struct sha1_state *, const u8 *, int); + -+typedef void sha1_transform_fn(u32 *, const char *, unsigned int); -+ +struct sha256_state { + u32 state[8]; + u64 count; @@ -28505,66 +29226,6 @@ index 0000000..bcb9d76 + +typedef void sha256_block_fn(struct sha256_state *, const u8 *, int); + -+typedef void sha256_transform_fn(u32 *, const char *, u64); -+ -+typedef short unsigned int __kernel_old_uid_t; -+ -+typedef short unsigned int __kernel_old_gid_t; -+ -+typedef struct { -+ int val[2]; -+} __kernel_fsid_t; -+ -+typedef __kernel_old_uid_t old_uid_t; -+ -+typedef __kernel_old_gid_t old_gid_t; -+ -+struct kstatfs { -+ long int f_type; -+ long int f_bsize; -+ u64 f_blocks; -+ u64 f_bfree; -+ u64 f_bavail; -+ u64 f_files; -+ u64 f_ffree; -+ __kernel_fsid_t f_fsid; -+ long int f_namelen; -+ long int f_frsize; -+ long int f_flags; -+ long int f_spare[4]; -+}; -+ -+struct stat64 { -+ long long unsigned int st_dev; -+ unsigned char __pad0[4]; -+ unsigned int __st_ino; -+ unsigned int st_mode; -+ unsigned int st_nlink; -+ unsigned int st_uid; -+ unsigned int st_gid; -+ long long unsigned int st_rdev; -+ unsigned char __pad3[4]; -+ long long int st_size; -+ unsigned int st_blksize; -+ long long int st_blocks; -+ unsigned int st_atime; -+ unsigned int st_atime_nsec; -+ unsigned int st_mtime; -+ unsigned int st_mtime_nsec; -+ unsigned int st_ctime; -+ unsigned int st_ctime_nsec; -+ long long unsigned int st_ino; -+} __attribute__((packed)); -+ -+struct mmap_arg_struct32 { -+ unsigned int addr; -+ unsigned int len; -+ unsigned int prot; -+ unsigned int flags; -+ unsigned int fd; -+ unsigned int offset; -+}; -+ +struct sigcontext_32 { + __u16 gs; + __u16 __gsh; @@ -28638,51 +29299,56 @@ index 0000000..bcb9d76 + u64 table; +} efi_config_table_64_t; + ++struct efi_memory_map_data { ++ phys_addr_t phys_map; ++ long unsigned int size; ++ long unsigned int desc_version; ++ long unsigned int desc_size; ++ long unsigned int flags; ++}; ++ +struct efi_mem_range { + struct range range; + u64 attribute; +}; + -+typedef struct { -+ efi_table_hdr_t hdr; -+ u32 get_time; -+ u32 set_time; -+ u32 get_wakeup_time; -+ u32 set_wakeup_time; -+ u32 set_virtual_address_map; -+ u32 convert_pointer; -+ u32 get_variable; -+ u32 get_next_variable; -+ u32 set_variable; -+ u32 get_next_high_mono_count; -+ u32 reset_system; -+ u32 update_capsule; -+ u32 query_capsule_caps; -+ u32 query_variable_info; -+} efi_runtime_services_32_t; ++enum efi_rts_ids { ++ EFI_NONE = 0, ++ EFI_GET_TIME = 1, ++ EFI_SET_TIME = 2, ++ EFI_GET_WAKEUP_TIME = 3, ++ EFI_SET_WAKEUP_TIME = 4, ++ EFI_GET_VARIABLE = 5, ++ EFI_GET_NEXT_VARIABLE = 6, ++ EFI_SET_VARIABLE = 7, ++ EFI_QUERY_VARIABLE_INFO = 8, ++ EFI_GET_NEXT_HIGH_MONO_COUNT = 9, ++ EFI_RESET_SYSTEM = 10, ++ EFI_UPDATE_CAPSULE = 11, ++ EFI_QUERY_CAPSULE_CAPS = 12, ++}; + -+typedef struct { -+ efi_table_hdr_t hdr; -+ u64 get_time; -+ u64 set_time; -+ u64 get_wakeup_time; -+ u64 set_wakeup_time; -+ u64 set_virtual_address_map; -+ u64 convert_pointer; -+ u64 get_variable; -+ u64 get_next_variable; -+ u64 set_variable; -+ u64 get_next_high_mono_count; -+ u64 reset_system; -+ u64 update_capsule; -+ u64 query_capsule_caps; -+ u64 query_variable_info; -+} efi_runtime_services_64_t; ++struct efi_runtime_work { ++ void *arg1; ++ void *arg2; ++ void *arg3; ++ void *arg4; ++ void *arg5; ++ efi_status_t status; ++ struct work_struct work; ++ enum efi_rts_ids efi_rts_id; ++ struct completion efi_rts_comp; ++}; ++ ++struct efi_scratch { ++ u64 phys_stack; ++ struct mm_struct *prev_mm; ++}; + +typedef struct { + efi_guid_t guid; -+ const char *name; + long unsigned int *ptr; ++ const char name[16]; +} efi_config_table_type_t; + +typedef struct { @@ -28704,35 +29370,14 @@ index 0000000..bcb9d76 +} efi_system_table_64_t; + +typedef struct { -+ efi_table_hdr_t hdr; -+ u32 fw_vendor; -+ u32 fw_revision; -+ u32 con_in_handle; -+ u32 con_in; -+ u32 con_out_handle; -+ u32 con_out; -+ u32 stderr_handle; -+ u32 stderr; -+ u32 runtime; -+ u32 boottime; -+ u32 nr_tables; -+ u32 tables; -+} efi_system_table_32_t; ++ u32 version; ++ u32 length; ++ u64 memory_protection_attribute; ++} efi_properties_table_t; + -+struct efi_memory_map_data { -+ phys_addr_t phys_map; -+ long unsigned int size; -+ long unsigned int desc_version; -+ long unsigned int desc_size; -+}; -+ -+struct font_desc { -+ int idx; -+ const char *name; -+ int width; -+ int height; -+ const void *data; -+ int pref; ++struct pm_qos_request { ++ struct plist_node node; ++ struct pm_qos_constraints *qos; +}; + +struct sfi_table_header { @@ -28757,267 +29402,10 @@ index 0000000..bcb9d76 + u64 phys_addr; +}; + -+enum uv_bau_version { -+ UV_BAU_V1 = 1, -+ UV_BAU_V2 = 2, -+ UV_BAU_V3 = 3, -+ UV_BAU_V4 = 4, -+}; -+ -+struct pnmask { -+ long unsigned int bits[4]; -+}; -+ -+struct uv1_2_3_bau_msg_payload { -+ u64 address; -+ u16 sending_cpu; -+ u16 acknowledge_count; -+}; -+ -+struct uv4_bau_msg_payload { -+ u64 address; -+ u16 sending_cpu; -+ u16 acknowledge_count; -+ u32 reserved: 8; -+ u32 qualifier: 24; -+}; -+ -+struct uv1_bau_msg_header { -+ unsigned int dest_subnodeid: 6; -+ unsigned int base_dest_nasid: 15; -+ unsigned int command: 8; -+ unsigned int rsvd_1: 3; -+ unsigned int rsvd_2: 9; -+ unsigned int sequence: 16; -+ unsigned int rsvd_3: 1; -+ unsigned int replied_to: 1; -+ unsigned int msg_type: 3; -+ unsigned int canceled: 1; -+ unsigned int payload_1a: 1; -+ unsigned int payload_1b: 2; -+ unsigned int payload_1ca: 6; -+ unsigned int payload_1c: 2; -+ unsigned int payload_1d: 6; -+ unsigned int payload_1e: 2; -+ unsigned int rsvd_4: 7; -+ unsigned int swack_flag: 1; -+ unsigned int rsvd_5: 6; -+ unsigned int rsvd_6: 5; -+ unsigned int int_both: 1; -+ unsigned int fairness: 3; -+ unsigned int multilevel: 1; -+ unsigned int chaining: 1; -+ unsigned int rsvd_7: 21; -+}; -+ -+struct uv2_3_bau_msg_header { -+ unsigned int base_dest_nasid: 15; -+ unsigned int dest_subnodeid: 5; -+ unsigned int rsvd_1: 1; -+ unsigned int replied_to: 1; -+ unsigned int msg_type: 3; -+ unsigned int canceled: 1; -+ unsigned int payload_1: 3; -+ unsigned int payload_2a: 3; -+ unsigned int payload_2b: 5; -+ unsigned int payload_3: 8; -+ unsigned int rsvd_2: 7; -+ unsigned int swack_flag: 1; -+ unsigned int rsvd_3a: 3; -+ unsigned int rsvd_3b: 8; -+ unsigned int rsvd_3c: 8; -+ unsigned int rsvd_3d: 3; -+ unsigned int fairness: 3; -+ unsigned int sequence: 16; -+ unsigned int chaining: 1; -+ unsigned int multilevel: 1; -+ unsigned int rsvd_4: 24; -+ unsigned int command: 8; -+}; -+ -+union bau_msg_header { -+ struct uv1_bau_msg_header uv1_hdr; -+ struct uv2_3_bau_msg_header uv2_3_hdr; -+}; -+ -+union bau_payload_header { -+ struct uv1_2_3_bau_msg_payload uv1_2_3; -+ struct uv4_bau_msg_payload uv4; -+}; -+ -+struct bau_desc { -+ struct pnmask distribution; -+ union bau_msg_header header; -+ union bau_payload_header payload; -+}; -+ -+struct bau_pq_entry { -+ long unsigned int address; -+ short unsigned int sending_cpu; -+ short unsigned int acknowledge_count; -+ short unsigned int replied_to: 1; -+ short unsigned int msg_type: 3; -+ short unsigned int canceled: 1; -+ short unsigned int unused1: 3; -+ unsigned char unused2a; -+ unsigned char unused2; -+ unsigned char swack_vec; -+ short unsigned int sequence; -+ unsigned char unused4[2]; -+ int number_of_cpus; -+ unsigned char unused5[8]; -+}; -+ -+struct msg_desc { -+ struct bau_pq_entry *msg; -+ int msg_slot; -+ struct bau_pq_entry *queue_first; -+ struct bau_pq_entry *queue_last; -+}; -+ -+struct reset_args { -+ int sender; -+}; -+ -+struct ptc_stats { -+ long unsigned int s_giveup; -+ long unsigned int s_requestor; -+ long unsigned int s_stimeout; -+ long unsigned int s_dtimeout; -+ long unsigned int s_strongnacks; -+ long unsigned int s_time; -+ long unsigned int s_retriesok; -+ long unsigned int s_ntargcpu; -+ long unsigned int s_ntargself; -+ long unsigned int s_ntarglocals; -+ long unsigned int s_ntargremotes; -+ long unsigned int s_ntarglocaluvhub; -+ long unsigned int s_ntargremoteuvhub; -+ long unsigned int s_ntarguvhub; -+ long unsigned int s_ntarguvhub16; -+ long unsigned int s_ntarguvhub8; -+ long unsigned int s_ntarguvhub4; -+ long unsigned int s_ntarguvhub2; -+ long unsigned int s_ntarguvhub1; -+ long unsigned int s_resets_plug; -+ long unsigned int s_resets_timeout; -+ long unsigned int s_busy; -+ long unsigned int s_throttles; -+ long unsigned int s_retry_messages; -+ long unsigned int s_bau_reenabled; -+ long unsigned int s_bau_disabled; -+ long unsigned int s_uv2_wars; -+ long unsigned int s_uv2_wars_hw; -+ long unsigned int s_uv2_war_waits; -+ long unsigned int s_overipilimit; -+ long unsigned int s_giveuplimit; -+ long unsigned int s_enters; -+ long unsigned int s_ipifordisabled; -+ long unsigned int s_plugged; -+ long unsigned int s_congested; -+ long unsigned int d_alltlb; -+ long unsigned int d_onetlb; -+ long unsigned int d_multmsg; -+ long unsigned int d_nomsg; -+ long unsigned int d_time; -+ long unsigned int d_requestee; -+ long unsigned int d_retries; -+ long unsigned int d_canceled; -+ long unsigned int d_nocanceled; -+ long unsigned int d_resets; -+ long unsigned int d_rcanceled; -+}; -+ -+struct tunables { -+ int *tunp; -+ int deflt; -+}; -+ -+struct hub_and_pnode { -+ short int uvhub; -+ short int pnode; -+}; -+ -+struct socket_desc { -+ short int num_cpus; -+ short int cpu_number[64]; -+}; -+ -+struct uvhub_desc { -+ short unsigned int socket_mask; -+ short int num_cpus; -+ short int uvhub; -+ short int pnode; -+ struct socket_desc socket[2]; -+}; -+ -+struct bau_control { -+ struct bau_desc *descriptor_base; -+ struct bau_pq_entry *queue_first; -+ struct bau_pq_entry *queue_last; -+ struct bau_pq_entry *bau_msg_head; -+ struct bau_control *uvhub_master; -+ struct bau_control *socket_master; -+ struct ptc_stats *statp; -+ cpumask_t *cpumask; -+ long unsigned int timeout_interval; -+ long unsigned int set_bau_on_time; -+ atomic_t active_descriptor_count; -+ int plugged_tries; -+ int timeout_tries; -+ int ipi_attempts; -+ int conseccompletes; -+ u64 status_mmr; -+ int status_index; -+ bool nobau; -+ short int baudisabled; -+ short int cpu; -+ short int osnode; -+ short int uvhub_cpu; -+ short int uvhub; -+ short int uvhub_version; -+ short int cpus_in_socket; -+ short int cpus_in_uvhub; -+ short int partition_base_pnode; -+ short int busy; -+ short unsigned int message_number; -+ short unsigned int uvhub_quiesce; -+ short int socket_acknowledge_count[20]; -+ cycles_t send_message; -+ cycles_t period_end; -+ cycles_t period_time; -+ spinlock_t uvhub_lock; -+ spinlock_t queue_lock; -+ spinlock_t disable_lock; -+ int max_concurr; -+ int max_concurr_const; -+ int plugged_delay; -+ int plugsb4reset; -+ int timeoutsb4reset; -+ int ipi_reset_limit; -+ int complete_threshold; -+ int cong_response_us; -+ int cong_reps; -+ cycles_t disabled_period; -+ int period_giveups; -+ int giveup_limit; -+ long int period_requests; -+ struct hub_and_pnode *thp; -+}; -+ -+struct bau_operations { -+ long unsigned int (*read_l_sw_ack)(); -+ long unsigned int (*read_g_sw_ack)(int); -+ long unsigned int (*bau_gpa_to_offset)(long unsigned int); -+ void (*write_l_sw_ack)(long unsigned int); -+ void (*write_g_sw_ack)(int, long unsigned int); -+ void (*write_payload_first)(int, long unsigned int); -+ void (*write_payload_last)(int, long unsigned int); -+ int (*wait_completion)(struct bau_desc *, struct bau_control *, long int); -+}; -+ -+struct atomic_short { -+ short int counter; ++struct semaphore { ++ raw_spinlock_t lock; ++ unsigned int count; ++ struct list_head wait_list; +}; + +enum uv_bios_cmd { @@ -29078,10 +29466,27 @@ index 0000000..bcb9d76 + struct { + int lcpu; + u64 expires; -+ } cpu[1]; ++ } cpu[0]; +}; + -+typedef int (*get_char_func)(); ++struct uv_hub_nmi_s { ++ raw_spinlock_t nmi_lock; ++ atomic_t in_nmi; ++ atomic_t cpu_owner; ++ atomic_t read_mmr_count; ++ atomic_t nmi_count; ++ long unsigned int nmi_value; ++ bool hub_present; ++ bool pch_owner; ++}; ++ ++struct uv_cpu_nmi_s { ++ struct uv_hub_nmi_s *hub; ++ int state; ++ int pinging; ++ int queries; ++ int pings; ++}; + +struct nmi_action { + char *action; @@ -29111,467 +29516,56 @@ index 0000000..bcb9d76 + __MAX_BPF_REG = 11, +}; + -+struct bpf_cgroup_storage_key { -+ __u64 cgroup_inode_id; -+ __u32 attach_type; ++struct bpf_tramp_progs { ++ struct bpf_prog *progs[40]; ++ int nr_progs; +}; + -+enum bpf_map_type { -+ BPF_MAP_TYPE_UNSPEC = 0, -+ BPF_MAP_TYPE_HASH = 1, -+ BPF_MAP_TYPE_ARRAY = 2, -+ BPF_MAP_TYPE_PROG_ARRAY = 3, -+ BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4, -+ BPF_MAP_TYPE_PERCPU_HASH = 5, -+ BPF_MAP_TYPE_PERCPU_ARRAY = 6, -+ BPF_MAP_TYPE_STACK_TRACE = 7, -+ BPF_MAP_TYPE_CGROUP_ARRAY = 8, -+ BPF_MAP_TYPE_LRU_HASH = 9, -+ BPF_MAP_TYPE_LRU_PERCPU_HASH = 10, -+ BPF_MAP_TYPE_LPM_TRIE = 11, -+ BPF_MAP_TYPE_ARRAY_OF_MAPS = 12, -+ BPF_MAP_TYPE_HASH_OF_MAPS = 13, -+ BPF_MAP_TYPE_DEVMAP = 14, -+ BPF_MAP_TYPE_SOCKMAP = 15, -+ BPF_MAP_TYPE_CPUMAP = 16, -+ BPF_MAP_TYPE_XSKMAP = 17, -+ BPF_MAP_TYPE_SOCKHASH = 18, -+ BPF_MAP_TYPE_CGROUP_STORAGE = 19, -+ BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20, ++enum bpf_jit_poke_reason { ++ BPF_POKE_REASON_TAIL_CALL = 0, +}; + -+union bpf_attr { ++struct bpf_array_aux { + struct { -+ __u32 map_type; -+ __u32 key_size; -+ __u32 value_size; -+ __u32 max_entries; -+ __u32 map_flags; -+ __u32 inner_map_fd; -+ __u32 numa_node; -+ char map_name[16]; -+ __u32 map_ifindex; -+ __u32 btf_fd; -+ __u32 btf_key_type_id; -+ __u32 btf_value_type_id; -+ }; -+ struct { -+ __u32 map_fd; -+ __u64 key; -+ union { -+ __u64 value; -+ __u64 next_key; -+ }; -+ __u64 flags; -+ }; -+ struct { -+ __u32 prog_type; -+ __u32 insn_cnt; -+ __u64 insns; -+ __u64 license; -+ __u32 log_level; -+ __u32 log_size; -+ __u64 log_buf; -+ __u32 kern_version; -+ __u32 prog_flags; -+ char prog_name[16]; -+ __u32 prog_ifindex; -+ __u32 expected_attach_type; -+ }; -+ struct { -+ __u64 pathname; -+ __u32 bpf_fd; -+ __u32 file_flags; -+ }; -+ struct { -+ __u32 target_fd; -+ __u32 attach_bpf_fd; -+ __u32 attach_type; -+ __u32 attach_flags; -+ }; -+ struct { -+ __u32 prog_fd; -+ __u32 retval; -+ __u32 data_size_in; -+ __u32 data_size_out; -+ __u64 data_in; -+ __u64 data_out; -+ __u32 repeat; -+ __u32 duration; -+ } test; -+ struct { -+ union { -+ __u32 start_id; -+ __u32 prog_id; -+ __u32 map_id; -+ __u32 btf_id; -+ }; -+ __u32 next_id; -+ __u32 open_flags; -+ }; -+ struct { -+ __u32 bpf_fd; -+ __u32 info_len; -+ __u64 info; -+ } info; -+ struct { -+ __u32 target_fd; -+ __u32 attach_type; -+ __u32 query_flags; -+ __u32 attach_flags; -+ __u64 prog_ids; -+ __u32 prog_cnt; -+ } query; -+ struct { -+ __u64 name; -+ __u32 prog_fd; -+ } raw_tracepoint; -+ struct { -+ __u64 btf; -+ __u64 btf_log_buf; -+ __u32 btf_size; -+ __u32 btf_log_size; -+ __u32 btf_log_level; -+ }; -+ struct { -+ __u32 pid; -+ __u32 fd; -+ __u32 flags; -+ __u32 buf_len; -+ __u64 buf; -+ __u32 prog_id; -+ __u32 fd_type; -+ __u64 probe_offset; -+ __u64 probe_addr; -+ } task_fd_query; -+}; -+ -+enum bpf_func_id { -+ BPF_FUNC_unspec = 0, -+ BPF_FUNC_map_lookup_elem = 1, -+ BPF_FUNC_map_update_elem = 2, -+ BPF_FUNC_map_delete_elem = 3, -+ BPF_FUNC_probe_read = 4, -+ BPF_FUNC_ktime_get_ns = 5, -+ BPF_FUNC_trace_printk = 6, -+ BPF_FUNC_get_prandom_u32 = 7, -+ BPF_FUNC_get_smp_processor_id = 8, -+ BPF_FUNC_skb_store_bytes = 9, -+ BPF_FUNC_l3_csum_replace = 10, -+ BPF_FUNC_l4_csum_replace = 11, -+ BPF_FUNC_tail_call = 12, -+ BPF_FUNC_clone_redirect = 13, -+ BPF_FUNC_get_current_pid_tgid = 14, -+ BPF_FUNC_get_current_uid_gid = 15, -+ BPF_FUNC_get_current_comm = 16, -+ BPF_FUNC_get_cgroup_classid = 17, -+ BPF_FUNC_skb_vlan_push = 18, -+ BPF_FUNC_skb_vlan_pop = 19, -+ BPF_FUNC_skb_get_tunnel_key = 20, -+ BPF_FUNC_skb_set_tunnel_key = 21, -+ BPF_FUNC_perf_event_read = 22, -+ BPF_FUNC_redirect = 23, -+ BPF_FUNC_get_route_realm = 24, -+ BPF_FUNC_perf_event_output = 25, -+ BPF_FUNC_skb_load_bytes = 26, -+ BPF_FUNC_get_stackid = 27, -+ BPF_FUNC_csum_diff = 28, -+ BPF_FUNC_skb_get_tunnel_opt = 29, -+ BPF_FUNC_skb_set_tunnel_opt = 30, -+ BPF_FUNC_skb_change_proto = 31, -+ BPF_FUNC_skb_change_type = 32, -+ BPF_FUNC_skb_under_cgroup = 33, -+ BPF_FUNC_get_hash_recalc = 34, -+ BPF_FUNC_get_current_task = 35, -+ BPF_FUNC_probe_write_user = 36, -+ BPF_FUNC_current_task_under_cgroup = 37, -+ BPF_FUNC_skb_change_tail = 38, -+ BPF_FUNC_skb_pull_data = 39, -+ BPF_FUNC_csum_update = 40, -+ BPF_FUNC_set_hash_invalid = 41, -+ BPF_FUNC_get_numa_node_id = 42, -+ BPF_FUNC_skb_change_head = 43, -+ BPF_FUNC_xdp_adjust_head = 44, -+ BPF_FUNC_probe_read_str = 45, -+ BPF_FUNC_get_socket_cookie = 46, -+ BPF_FUNC_get_socket_uid = 47, -+ BPF_FUNC_set_hash = 48, -+ BPF_FUNC_setsockopt = 49, -+ BPF_FUNC_skb_adjust_room = 50, -+ BPF_FUNC_redirect_map = 51, -+ BPF_FUNC_sk_redirect_map = 52, -+ BPF_FUNC_sock_map_update = 53, -+ BPF_FUNC_xdp_adjust_meta = 54, -+ BPF_FUNC_perf_event_read_value = 55, -+ BPF_FUNC_perf_prog_read_value = 56, -+ BPF_FUNC_getsockopt = 57, -+ BPF_FUNC_override_return = 58, -+ BPF_FUNC_sock_ops_cb_flags_set = 59, -+ BPF_FUNC_msg_redirect_map = 60, -+ BPF_FUNC_msg_apply_bytes = 61, -+ BPF_FUNC_msg_cork_bytes = 62, -+ BPF_FUNC_msg_pull_data = 63, -+ BPF_FUNC_bind = 64, -+ BPF_FUNC_xdp_adjust_tail = 65, -+ BPF_FUNC_skb_get_xfrm_state = 66, -+ BPF_FUNC_get_stack = 67, -+ BPF_FUNC_skb_load_bytes_relative = 68, -+ BPF_FUNC_fib_lookup = 69, -+ BPF_FUNC_sock_hash_update = 70, -+ BPF_FUNC_msg_redirect_hash = 71, -+ BPF_FUNC_sk_redirect_hash = 72, -+ BPF_FUNC_lwt_push_encap = 73, -+ BPF_FUNC_lwt_seg6_store_bytes = 74, -+ BPF_FUNC_lwt_seg6_adjust_srh = 75, -+ BPF_FUNC_lwt_seg6_action = 76, -+ BPF_FUNC_rc_repeat = 77, -+ BPF_FUNC_rc_keydown = 78, -+ BPF_FUNC_skb_cgroup_id = 79, -+ BPF_FUNC_get_current_cgroup_id = 80, -+ BPF_FUNC_get_local_storage = 81, -+ BPF_FUNC_sk_select_reuseport = 82, -+ BPF_FUNC_skb_ancestor_cgroup_id = 83, -+ __BPF_FUNC_MAX_ID = 84, -+}; -+ -+struct bpf_storage_buffer { -+ struct callback_head rcu; -+ char data[0]; -+}; -+ -+struct bpf_cgroup_storage_map; -+ -+struct bpf_cgroup_storage { -+ struct bpf_storage_buffer *buf; -+ struct bpf_cgroup_storage_map *map; -+ struct bpf_cgroup_storage_key key; -+ struct list_head list; -+ struct rb_node node; -+ struct callback_head rcu; -+}; -+ -+struct bpf_prog_array_item { -+ struct bpf_prog *prog; -+ struct bpf_cgroup_storage *cgroup_storage; -+}; -+ -+struct bpf_prog_array { -+ struct callback_head rcu; -+ struct bpf_prog_array_item items[0]; -+}; -+ -+struct bpf_map_ops; -+ -+struct btf; -+ -+struct bpf_map { -+ const struct bpf_map_ops *ops; -+ struct bpf_map *inner_map_meta; -+ void *security; -+ enum bpf_map_type map_type; -+ u32 key_size; -+ u32 value_size; -+ u32 max_entries; -+ u32 map_flags; -+ u32 pages; -+ u32 id; -+ int numa_node; -+ u32 btf_key_type_id; -+ u32 btf_value_type_id; -+ struct btf *btf; -+ bool unpriv_array; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct user_struct *user; -+ atomic_t refcnt; -+ atomic_t usercnt; ++ spinlock_t lock; ++ enum bpf_prog_type type; ++ bool jited; ++ } owner; ++ struct list_head poke_progs; ++ struct bpf_map *map; ++ struct mutex poke_mutex; + struct work_struct work; -+ char name[16]; ++}; ++ ++struct bpf_array { ++ struct bpf_map map; ++ u32 elem_size; ++ u32 index_mask; ++ struct bpf_array_aux *aux; ++ union { ++ char value[0]; ++ void *ptrs[0]; ++ void *pptrs[0]; ++ }; ++ long: 64; ++ long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + -+struct bpf_map_dev_ops; -+ -+struct bpf_offloaded_map { -+ struct bpf_map map; -+ struct net_device *netdev; -+ const struct bpf_map_dev_ops *dev_ops; -+ void *dev_priv; -+ struct list_head offloads; -+ long: 64; -+ long: 64; -+ long: 64; ++enum bpf_text_poke_type { ++ BPF_MOD_CALL = 0, ++ BPF_MOD_JUMP = 1, +}; + +struct bpf_binary_header { + u32 pages; ++ int: 32; + u8 image[0]; +}; + -+struct bpf_prog_ops; -+ -+struct bpf_prog_offload; -+ -+struct bpf_prog_aux { -+ atomic_t refcnt; -+ u32 used_map_cnt; -+ u32 max_ctx_offset; -+ u32 stack_depth; -+ u32 id; -+ u32 func_cnt; -+ bool offload_requested; -+ struct bpf_prog **func; -+ void *jit_data; -+ struct latch_tree_node ksym_tnode; -+ struct list_head ksym_lnode; -+ const struct bpf_prog_ops *ops; -+ struct bpf_map **used_maps; -+ struct bpf_prog *prog; -+ struct user_struct *user; -+ u64 load_time; -+ struct bpf_map *cgroup_storage; -+ char name[16]; -+ void *security; -+ struct bpf_prog_offload *offload; -+ union { -+ struct work_struct work; -+ struct callback_head rcu; -+ }; -+ u32 max_tp_access; -+}; -+ -+struct btf_type; -+ -+struct bpf_map_ops { -+ int (*map_alloc_check)(union bpf_attr *); -+ struct bpf_map * (*map_alloc)(union bpf_attr *); -+ void (*map_release)(struct bpf_map *, struct file *); -+ void (*map_free)(struct bpf_map *); -+ int (*map_get_next_key)(struct bpf_map *, void *, void *); -+ void (*map_release_uref)(struct bpf_map *); -+ void * (*map_lookup_elem_sys_only)(struct bpf_map *, void *); -+ void * (*map_lookup_elem)(struct bpf_map *, void *); -+ int (*map_update_elem)(struct bpf_map *, void *, void *, u64); -+ int (*map_delete_elem)(struct bpf_map *, void *); -+ void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); -+ void (*map_fd_put_ptr)(void *); -+ u32 (*map_gen_lookup)(struct bpf_map *, struct bpf_insn *); -+ u32 (*map_fd_sys_lookup_elem)(void *); -+ void (*map_seq_show_elem)(struct bpf_map *, void *, struct seq_file *); -+ int (*map_check_btf)(const struct bpf_map *, const struct btf_type *, const struct btf_type *); -+}; -+ -+struct btf_type { -+ __u32 name_off; -+ __u32 info; -+ union { -+ __u32 size; -+ __u32 type; -+ }; -+}; -+ -+struct bpf_map_dev_ops { -+ int (*map_get_next_key)(struct bpf_offloaded_map *, void *, void *); -+ int (*map_lookup_elem)(struct bpf_offloaded_map *, void *, void *); -+ int (*map_update_elem)(struct bpf_offloaded_map *, void *, void *, u64); -+ int (*map_delete_elem)(struct bpf_offloaded_map *, void *); -+}; -+ -+enum bpf_arg_type { -+ ARG_DONTCARE = 0, -+ ARG_CONST_MAP_PTR = 1, -+ ARG_PTR_TO_MAP_KEY = 2, -+ ARG_PTR_TO_MAP_VALUE = 3, -+ ARG_PTR_TO_MEM = 4, -+ ARG_PTR_TO_MEM_OR_NULL = 5, -+ ARG_PTR_TO_UNINIT_MEM = 6, -+ ARG_CONST_SIZE = 7, -+ ARG_CONST_SIZE_OR_ZERO = 8, -+ ARG_PTR_TO_CTX = 9, -+ ARG_ANYTHING = 10, -+}; -+ -+enum bpf_return_type { -+ RET_INTEGER = 0, -+ RET_VOID = 1, -+ RET_PTR_TO_MAP_VALUE = 2, -+ RET_PTR_TO_MAP_VALUE_OR_NULL = 3, -+}; -+ -+struct bpf_func_proto { -+ u64 (*func)(u64, u64, u64, u64, u64); -+ bool gpl_only; -+ bool pkt_access; -+ enum bpf_return_type ret_type; -+ enum bpf_arg_type arg1_type; -+ enum bpf_arg_type arg2_type; -+ enum bpf_arg_type arg3_type; -+ enum bpf_arg_type arg4_type; -+ enum bpf_arg_type arg5_type; -+}; -+ -+enum bpf_access_type { -+ BPF_READ = 1, -+ BPF_WRITE = 2, -+}; -+ -+enum bpf_reg_type { -+ NOT_INIT = 0, -+ SCALAR_VALUE = 1, -+ PTR_TO_CTX = 2, -+ CONST_PTR_TO_MAP = 3, -+ PTR_TO_MAP_VALUE = 4, -+ PTR_TO_MAP_VALUE_OR_NULL = 5, -+ PTR_TO_STACK = 6, -+ PTR_TO_PACKET_META = 7, -+ PTR_TO_PACKET = 8, -+ PTR_TO_PACKET_END = 9, -+ PTR_TO_FLOW_KEYS = 10, -+ PTR_TO_SOCKET = 11, -+ PTR_TO_SOCKET_OR_NULL = 12, -+ PTR_TO_SOCK_COMMON = 13, -+ PTR_TO_SOCK_COMMON_OR_NULL = 14, -+ PTR_TO_TCP_SOCK = 15, -+ PTR_TO_TCP_SOCK_OR_NULL = 16, -+ PTR_TO_TP_BUFFER = 17, -+}; -+ -+struct bpf_insn_access_aux { -+ enum bpf_reg_type reg_type; -+ int ctx_field_size; -+}; -+ -+struct bpf_prog_ops { -+ int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); -+}; -+ -+struct bpf_verifier_ops { -+ const struct bpf_func_proto * (*get_func_proto)(enum bpf_func_id, const struct bpf_prog *); -+ bool (*is_valid_access)(int, int, enum bpf_access_type, const struct bpf_prog *, struct bpf_insn_access_aux *); -+ int (*gen_prologue)(struct bpf_insn *, bool, const struct bpf_prog *); -+ int (*gen_ld_abs)(const struct bpf_insn *, struct bpf_insn *); -+ u32 (*convert_ctx_access)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); -+}; -+ -+struct bpf_prog_offload { -+ struct bpf_prog *prog; -+ struct net_device *netdev; -+ void *dev_priv; -+ struct list_head offloads; -+ bool dev_state; -+ const struct bpf_prog_offload_ops *dev_ops; -+ void *jited_image; -+ u32 jited_len; -+}; -+ +struct jit_context { + int cleanup_addr; +}; @@ -29591,6 +29585,20 @@ index 0000000..bcb9d76 + TK_OFFS_MAX = 3, +}; + ++struct clone_args { ++ __u64 flags; ++ __u64 pidfd; ++ __u64 child_tid; ++ __u64 parent_tid; ++ __u64 exit_signal; ++ __u64 stack; ++ __u64 stack_size; ++ __u64 tls; ++ __u64 set_tid; ++ __u64 set_tid_size; ++ __u64 cgroup; ++}; ++ +struct fdtable { + unsigned int max_fds; + struct file **fd; @@ -29624,6 +29632,30 @@ index 0000000..bcb9d76 + long: 64; +}; + ++struct io_identity { ++ struct files_struct *files; ++ struct mm_struct *mm; ++ struct cgroup_subsys_state *blkcg_css; ++ const struct cred *creds; ++ struct nsproxy *nsproxy; ++ struct fs_struct *fs; ++ long unsigned int fsize; ++ kuid_t loginuid; ++ unsigned int sessionid; ++ refcount_t count; ++}; ++ ++struct io_uring_task { ++ struct xarray xa; ++ struct wait_queue_head wait; ++ struct file *last; ++ struct percpu_counter inflight; ++ struct io_identity __identity; ++ struct io_identity *identity; ++ atomic_t in_idle; ++ bool sqpoll; ++}; ++ +struct robust_list { + struct robust_list *next; +}; @@ -29648,12 +29680,39 @@ index 0000000..bcb9d76 + IOPRIO_CLASS_IDLE = 3, +}; + ++enum page_memcg_data_flags { ++ MEMCG_DATA_OBJCGS = 1, ++ MEMCG_DATA_KMEM = 2, ++ __NR_MEMCG_DATA_FLAGS = 4, ++}; ++ +enum { + FUTEX_STATE_OK = 0, + FUTEX_STATE_EXITING = 1, + FUTEX_STATE_DEAD = 2, +}; + ++enum proc_hidepid { ++ HIDEPID_OFF = 0, ++ HIDEPID_NO_ACCESS = 1, ++ HIDEPID_INVISIBLE = 2, ++ HIDEPID_NOT_PTRACEABLE = 4, ++}; ++ ++enum proc_pidonly { ++ PROC_PIDONLY_OFF = 0, ++ PROC_PIDONLY_ON = 1, ++}; ++ ++struct proc_fs_info { ++ struct pid_namespace *pid_ns; ++ struct dentry *proc_self; ++ struct dentry *proc_thread_self; ++ kgid_t pid_gid; ++ enum proc_hidepid hide_pid; ++ enum proc_pidonly pidonly; ++}; ++ +struct trace_event_raw_task_newtask { + struct trace_entry ent; + pid_t pid; @@ -29676,129 +29735,34 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_task_rename {}; + ++typedef void (*btf_trace_task_newtask)(void *, struct task_struct *, long unsigned int); ++ ++typedef void (*btf_trace_task_rename)(void *, struct task_struct *, const char *); ++ ++struct taint_flag { ++ char c_true; ++ char c_false; ++ bool module; ++}; ++ ++enum ftrace_dump_mode { ++ DUMP_NONE = 0, ++ DUMP_ALL = 1, ++ DUMP_ORIG = 2, ++}; ++ +enum kmsg_dump_reason { + KMSG_DUMP_UNDEF = 0, + KMSG_DUMP_PANIC = 1, + KMSG_DUMP_OOPS = 2, + KMSG_DUMP_EMERG = 3, -+ KMSG_DUMP_RESTART = 4, -+ KMSG_DUMP_HALT = 5, -+ KMSG_DUMP_POWEROFF = 6, ++ KMSG_DUMP_SHUTDOWN = 4, ++ KMSG_DUMP_MAX = 5, +}; + -+struct vt_mode { -+ char mode; -+ char waitv; -+ short int relsig; -+ short int acqsig; -+ short int frsig; -+}; -+ -+struct console_font { -+ unsigned int width; -+ unsigned int height; -+ unsigned int charcount; -+ unsigned char *data; -+}; -+ -+struct uni_pagedir; -+ -+struct uni_screen; -+ -+struct vc_data { -+ struct tty_port port; -+ short unsigned int vc_num; -+ unsigned int vc_cols; -+ unsigned int vc_rows; -+ unsigned int vc_size_row; -+ unsigned int vc_scan_lines; -+ long unsigned int vc_origin; -+ long unsigned int vc_scr_end; -+ long unsigned int vc_visible_origin; -+ unsigned int vc_top; -+ unsigned int vc_bottom; -+ const struct consw *vc_sw; -+ short unsigned int *vc_screenbuf; -+ unsigned int vc_screenbuf_size; -+ unsigned char vc_mode; -+ unsigned char vc_attr; -+ unsigned char vc_def_color; -+ unsigned char vc_color; -+ unsigned char vc_s_color; -+ unsigned char vc_ulcolor; -+ unsigned char vc_itcolor; -+ unsigned char vc_halfcolor; -+ unsigned int vc_cursor_type; -+ short unsigned int vc_complement_mask; -+ short unsigned int vc_s_complement_mask; -+ unsigned int vc_x; -+ unsigned int vc_y; -+ unsigned int vc_saved_x; -+ unsigned int vc_saved_y; -+ long unsigned int vc_pos; -+ short unsigned int vc_hi_font_mask; -+ struct console_font vc_font; -+ short unsigned int vc_video_erase_char; -+ unsigned int vc_state; -+ unsigned int vc_npar; -+ unsigned int vc_par[16]; -+ struct vt_mode vt_mode; -+ struct pid *vt_pid; -+ int vt_newvt; -+ wait_queue_head_t paste_wait; -+ unsigned int vc_charset: 1; -+ unsigned int vc_s_charset: 1; -+ unsigned int vc_disp_ctrl: 1; -+ unsigned int vc_toggle_meta: 1; -+ unsigned int vc_decscnm: 1; -+ unsigned int vc_decom: 1; -+ unsigned int vc_decawm: 1; -+ unsigned int vc_deccm: 1; -+ unsigned int vc_decim: 1; -+ unsigned int vc_intensity: 2; -+ unsigned int vc_italic: 1; -+ unsigned int vc_underline: 1; -+ unsigned int vc_blink: 1; -+ unsigned int vc_reverse: 1; -+ unsigned int vc_s_intensity: 2; -+ unsigned int vc_s_italic: 1; -+ unsigned int vc_s_underline: 1; -+ unsigned int vc_s_blink: 1; -+ unsigned int vc_s_reverse: 1; -+ unsigned int vc_ques: 1; -+ unsigned int vc_need_wrap: 1; -+ unsigned int vc_can_do_color: 1; -+ unsigned int vc_report_mouse: 2; -+ unsigned char vc_utf: 1; -+ unsigned char vc_utf_count; -+ int vc_utf_char; -+ unsigned int vc_tab_stop[8]; -+ unsigned char vc_palette[48]; -+ short unsigned int *vc_translate; -+ unsigned char vc_G0_charset; -+ unsigned char vc_G1_charset; -+ unsigned char vc_saved_G0; -+ unsigned char vc_saved_G1; -+ unsigned int vc_resize_user; -+ unsigned int vc_bell_pitch; -+ unsigned int vc_bell_duration; -+ short unsigned int vc_cur_blink_ms; -+ struct vc_data **vc_display_fg; -+ struct uni_pagedir *vc_uni_pagedir; -+ struct uni_pagedir **vc_uni_pagedir_loc; -+ struct uni_screen *vc_uni_screen; -+ bool vc_panic_force_write; -+}; -+ -+struct vc { -+ struct vc_data *d; -+ struct work_struct SAK_work; -+}; -+ -+struct vt_spawn_console { -+ spinlock_t lock; -+ struct pid *pid; -+ int sig; ++enum con_flush_mode { ++ CONSOLE_FLUSH_PENDING = 0, ++ CONSOLE_REPLAY_ALL = 1, +}; + +struct warn_args { @@ -29853,6 +29817,12 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_cpuhp_exit {}; + ++typedef void (*btf_trace_cpuhp_enter)(void *, unsigned int, int, int, int (*)(unsigned int)); ++ ++typedef void (*btf_trace_cpuhp_multi_enter)(void *, unsigned int, int, int, int (*)(unsigned int, struct hlist_node *), struct hlist_node *); ++ ++typedef void (*btf_trace_cpuhp_exit)(void *, unsigned int, int, int, int); ++ +struct cpuhp_cpu_state { + enum cpuhp_state state; + enum cpuhp_state target; @@ -29862,7 +29832,6 @@ index 0000000..bcb9d76 + bool rollback; + bool single; + bool bringup; -+ bool booted_once; + struct hlist_node *node; + struct hlist_node *last; + enum cpuhp_state cb_state; @@ -29892,31 +29861,19 @@ index 0000000..bcb9d76 + CPU_MITIGATIONS_AUTO_NOSMT = 2, +}; + -+typedef enum cpuhp_state pto_T_____21; -+ -+typedef __kernel_long_t __kernel_suseconds_t; -+ -+struct timeval { -+ __kernel_time_t tv_sec; -+ __kernel_suseconds_t tv_usec; ++struct __kernel_old_timeval { ++ __kernel_long_t tv_sec; ++ __kernel_long_t tv_usec; +}; + -+struct wait_queue_entry; -+ -+typedef int (*wait_queue_func_t)(struct wait_queue_entry *, unsigned int, int, void *); -+ -+struct wait_queue_entry { -+ unsigned int flags; -+ void *private; -+ wait_queue_func_t func; -+ struct list_head entry; ++struct old_timeval32 { ++ old_time32_t tv_sec; ++ s32 tv_usec; +}; + -+typedef struct wait_queue_entry wait_queue_entry_t; -+ +struct rusage { -+ struct timeval ru_utime; -+ struct timeval ru_stime; ++ struct __kernel_old_timeval ru_utime; ++ struct __kernel_old_timeval ru_stime; + __kernel_long_t ru_maxrss; + __kernel_long_t ru_ixrss; + __kernel_long_t ru_idrss; @@ -29933,14 +29890,11 @@ index 0000000..bcb9d76 + __kernel_long_t ru_nivcsw; +}; + -+struct compat_timeval { -+ compat_time_t tv_sec; -+ s32 tv_usec; -+}; ++typedef struct {} mm_segment_t; + +struct compat_rusage { -+ struct compat_timeval ru_utime; -+ struct compat_timeval ru_stime; ++ struct old_timeval32 ru_utime; ++ struct old_timeval32 ru_stime; + compat_long_t ru_maxrss; + compat_long_t ru_ixrss; + compat_long_t ru_idrss; @@ -29983,8 +29937,13 @@ index 0000000..bcb9d76 + struct tasklet_struct *next; + long unsigned int state; + atomic_t count; -+ void (*func)(long unsigned int); ++ bool use_callback; ++ union { ++ void (*func)(long unsigned int); ++ void (*callback)(struct tasklet_struct *); ++ }; + long unsigned int data; ++ u64 kabi_reserved1; +}; + +enum { @@ -29992,10 +29951,9 @@ index 0000000..bcb9d76 + TASKLET_STATE_RUN = 1, +}; + -+struct tasklet_hrtimer { -+ struct hrtimer timer; -+ struct tasklet_struct tasklet; -+ enum hrtimer_restart (*function)(struct hrtimer *); ++struct kernel_stat { ++ long unsigned int irqs_sum; ++ unsigned int softirqs[10]; +}; + +struct trace_event_raw_irq_handler_entry { @@ -30026,13 +29984,21 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_softirq {}; + ++typedef void (*btf_trace_irq_handler_entry)(void *, int, struct irqaction *); ++ ++typedef void (*btf_trace_irq_handler_exit)(void *, int, struct irqaction *, int); ++ ++typedef void (*btf_trace_softirq_entry)(void *, unsigned int); ++ ++typedef void (*btf_trace_softirq_exit)(void *, unsigned int); ++ ++typedef void (*btf_trace_softirq_raise)(void *, unsigned int); ++ +struct tasklet_head { + struct tasklet_struct *head; + struct tasklet_struct **tail; +}; + -+typedef struct tasklet_struct **pto_T_____22; -+ +typedef void (*dr_release_t)(struct device *, void *); + +struct resource_entry { @@ -30060,8 +30026,36 @@ index 0000000..bcb9d76 + resource_size_t n; +}; + ++struct dentry_stat_t { ++ long int nr_dentry; ++ long int nr_unused; ++ long int age_limit; ++ long int want_pages; ++ long int nr_negative; ++ long int dummy; ++}; ++ ++struct files_stat_struct { ++ long unsigned int nr_files; ++ long unsigned int nr_free_files; ++ long unsigned int max_files; ++}; ++ ++struct inodes_stat_t { ++ long int nr_inodes; ++ long int nr_unused; ++ long int dummy[5]; ++}; ++ ++enum sched_tunable_scaling { ++ SCHED_TUNABLESCALING_NONE = 0, ++ SCHED_TUNABLESCALING_LOG = 1, ++ SCHED_TUNABLESCALING_LINEAR = 2, ++ SCHED_TUNABLESCALING_END = 3, ++}; ++ +enum sysctl_writes_mode { -+ SYSCTL_WRITES_LEGACY = -1, ++ SYSCTL_WRITES_LEGACY = 4294967295, + SYSCTL_WRITES_WARN = 0, + SYSCTL_WRITES_STRICT = 1, +}; @@ -30076,161 +30070,6 @@ index 0000000..bcb9d76 + unsigned int *max; +}; + -+struct __sysctl_args { -+ int *name; -+ int nlen; -+ void *oldval; -+ size_t *oldlenp; -+ void *newval; -+ size_t newlen; -+ long unsigned int __unused[4]; -+}; -+ -+enum { -+ CTL_KERN = 1, -+ CTL_VM = 2, -+ CTL_NET = 3, -+ CTL_PROC = 4, -+ CTL_FS = 5, -+ CTL_DEBUG = 6, -+ CTL_DEV = 7, -+ CTL_BUS = 8, -+ CTL_ABI = 9, -+ CTL_CPU = 10, -+ CTL_ARLAN = 254, -+ CTL_S390DBF = 5677, -+ CTL_SUNRPC = 7249, -+ CTL_PM = 9899, -+ CTL_FRV = 9898, -+}; -+ -+enum { -+ KERN_OSTYPE = 1, -+ KERN_OSRELEASE = 2, -+ KERN_OSREV = 3, -+ KERN_VERSION = 4, -+ KERN_SECUREMASK = 5, -+ KERN_PROF = 6, -+ KERN_NODENAME = 7, -+ KERN_DOMAINNAME = 8, -+ KERN_PANIC = 15, -+ KERN_REALROOTDEV = 16, -+ KERN_SPARC_REBOOT = 21, -+ KERN_CTLALTDEL = 22, -+ KERN_PRINTK = 23, -+ KERN_NAMETRANS = 24, -+ KERN_PPC_HTABRECLAIM = 25, -+ KERN_PPC_ZEROPAGED = 26, -+ KERN_PPC_POWERSAVE_NAP = 27, -+ KERN_MODPROBE = 28, -+ KERN_SG_BIG_BUFF = 29, -+ KERN_ACCT = 30, -+ KERN_PPC_L2CR = 31, -+ KERN_RTSIGNR = 32, -+ KERN_RTSIGMAX = 33, -+ KERN_SHMMAX = 34, -+ KERN_MSGMAX = 35, -+ KERN_MSGMNB = 36, -+ KERN_MSGPOOL = 37, -+ KERN_SYSRQ = 38, -+ KERN_MAX_THREADS = 39, -+ KERN_RANDOM = 40, -+ KERN_SHMALL = 41, -+ KERN_MSGMNI = 42, -+ KERN_SEM = 43, -+ KERN_SPARC_STOP_A = 44, -+ KERN_SHMMNI = 45, -+ KERN_OVERFLOWUID = 46, -+ KERN_OVERFLOWGID = 47, -+ KERN_SHMPATH = 48, -+ KERN_HOTPLUG = 49, -+ KERN_IEEE_EMULATION_WARNINGS = 50, -+ KERN_S390_USER_DEBUG_LOGGING = 51, -+ KERN_CORE_USES_PID = 52, -+ KERN_TAINTED = 53, -+ KERN_CADPID = 54, -+ KERN_PIDMAX = 55, -+ KERN_CORE_PATTERN = 56, -+ KERN_PANIC_ON_OOPS = 57, -+ KERN_HPPA_PWRSW = 58, -+ KERN_HPPA_UNALIGNED = 59, -+ KERN_PRINTK_RATELIMIT = 60, -+ KERN_PRINTK_RATELIMIT_BURST = 61, -+ KERN_PTY = 62, -+ KERN_NGROUPS_MAX = 63, -+ KERN_SPARC_SCONS_PWROFF = 64, -+ KERN_HZ_TIMER = 65, -+ KERN_UNKNOWN_NMI_PANIC = 66, -+ KERN_BOOTLOADER_TYPE = 67, -+ KERN_RANDOMIZE = 68, -+ KERN_SETUID_DUMPABLE = 69, -+ KERN_SPIN_RETRY = 70, -+ KERN_ACPI_VIDEO_FLAGS = 71, -+ KERN_IA64_UNALIGNED = 72, -+ KERN_COMPAT_LOG = 73, -+ KERN_MAX_LOCK_DEPTH = 74, -+ KERN_NMI_WATCHDOG = 75, -+ KERN_PANIC_ON_NMI = 76, -+ KERN_PANIC_ON_WARN = 77, -+ KERN_PANIC_PRINT = 78, -+}; -+ -+struct xfs_sysctl_val { -+ int min; -+ int val; -+ int max; -+}; -+ -+typedef struct xfs_sysctl_val xfs_sysctl_val_t; -+ -+struct xfs_param { -+ xfs_sysctl_val_t sgid_inherit; -+ xfs_sysctl_val_t symlink_mode; -+ xfs_sysctl_val_t panic_mask; -+ xfs_sysctl_val_t error_level; -+ xfs_sysctl_val_t syncd_timer; -+ xfs_sysctl_val_t stats_clear; -+ xfs_sysctl_val_t inherit_sync; -+ xfs_sysctl_val_t inherit_nodump; -+ xfs_sysctl_val_t inherit_noatim; -+ xfs_sysctl_val_t xfs_buf_timer; -+ xfs_sysctl_val_t xfs_buf_age; -+ xfs_sysctl_val_t inherit_nosym; -+ xfs_sysctl_val_t rotorstep; -+ xfs_sysctl_val_t inherit_nodfrg; -+ xfs_sysctl_val_t fstrm_timer; -+ xfs_sysctl_val_t eofb_timer; -+ xfs_sysctl_val_t cowb_timer; -+}; -+ -+typedef struct xfs_param xfs_param_t; -+ -+struct xfs_globals { -+ int log_recovery_delay; -+ int mount_delay; -+ bool bug_on_assert; -+}; -+ -+enum { -+ NAPI_STATE_SCHED = 0, -+ NAPI_STATE_MISSED = 1, -+ NAPI_STATE_DISABLE = 2, -+ NAPI_STATE_NPSVC = 3, -+ NAPI_STATE_HASHED = 4, -+ NAPI_STATE_NO_BUSY_POLL = 5, -+ NAPI_STATE_IN_BUSY_POLL = 6, -+}; -+ -+struct compat_sysctl_args { -+ compat_uptr_t name; -+ int nlen; -+ compat_uptr_t oldval; -+ compat_uptr_t oldlenp; -+ compat_uptr_t newval; -+ compat_size_t newlen; -+ compat_ulong_t __unused[4]; -+}; -+ +struct __user_cap_header_struct { + __u32 version; + int pid; @@ -30249,7 +30088,7 @@ index 0000000..bcb9d76 +struct sigqueue { + struct list_head list; + int flags; -+ siginfo_t info; ++ kernel_siginfo_t info; + struct user_struct *user; +}; + @@ -30259,168 +30098,44 @@ index 0000000..bcb9d76 + __s32 nr; +}; + ++struct ptrace_syscall_info { ++ __u8 op; ++ __u8 pad[3]; ++ __u32 arch; ++ __u64 instruction_pointer; ++ __u64 stack_pointer; ++ union { ++ struct { ++ __u64 nr; ++ __u64 args[6]; ++ } entry; ++ struct { ++ __s64 rval; ++ __u8 is_error; ++ } exit; ++ struct { ++ __u64 nr; ++ __u64 args[6]; ++ __u32 ret_data; ++ } seccomp; ++ }; ++}; ++ ++struct ptrace_rseq_configuration { ++ __u64 rseq_abi_pointer; ++ __u32 rseq_abi_size; ++ __u32 signature; ++ __u32 flags; ++ __u32 pad; ++}; ++ +struct compat_iovec { + compat_uptr_t iov_base; + compat_size_t iov_len; +}; + -+typedef int __kernel_mqd_t; -+ -+typedef __kernel_mqd_t mqd_t; -+ +typedef long unsigned int old_sigset_t; + -+enum audit_state { -+ AUDIT_DISABLED = 0, -+ AUDIT_BUILD_CONTEXT = 1, -+ AUDIT_RECORD_CONTEXT = 2, -+}; -+ -+struct audit_cap_data { -+ kernel_cap_t permitted; -+ kernel_cap_t inheritable; -+ union { -+ unsigned int fE; -+ kernel_cap_t effective; -+ }; -+ kernel_cap_t ambient; -+}; -+ -+struct filename; -+ -+struct audit_names { -+ struct list_head list; -+ struct filename *name; -+ int name_len; -+ bool hidden; -+ long unsigned int ino; -+ dev_t dev; -+ umode_t mode; -+ kuid_t uid; -+ kgid_t gid; -+ dev_t rdev; -+ u32 osid; -+ struct audit_cap_data fcap; -+ unsigned int fcap_ver; -+ unsigned char type; -+ bool should_free; -+}; -+ -+struct mq_attr { -+ __kernel_long_t mq_flags; -+ __kernel_long_t mq_maxmsg; -+ __kernel_long_t mq_msgsize; -+ __kernel_long_t mq_curmsgs; -+ __kernel_long_t __reserved[4]; -+}; -+ -+struct audit_proctitle { -+ int len; -+ char *value; -+}; -+ -+struct audit_aux_data; -+ -+struct audit_tree_refs; -+ -+struct audit_context { -+ int dummy; -+ int in_syscall; -+ enum audit_state state; -+ enum audit_state current_state; -+ unsigned int serial; -+ int major; -+ struct timespec64 ctime; -+ long unsigned int argv[4]; -+ long int return_code; -+ u64 prio; -+ int return_valid; -+ struct audit_names preallocated_names[5]; -+ int name_count; -+ struct list_head names_list; -+ char *filterkey; -+ struct path pwd; -+ struct audit_aux_data *aux; -+ struct audit_aux_data *aux_pids; -+ struct __kernel_sockaddr_storage *sockaddr; -+ size_t sockaddr_len; -+ pid_t pid; -+ pid_t ppid; -+ kuid_t uid; -+ kuid_t euid; -+ kuid_t suid; -+ kuid_t fsuid; -+ kgid_t gid; -+ kgid_t egid; -+ kgid_t sgid; -+ kgid_t fsgid; -+ long unsigned int personality; -+ int arch; -+ pid_t target_pid; -+ kuid_t target_auid; -+ kuid_t target_uid; -+ unsigned int target_sessionid; -+ u32 target_sid; -+ char target_comm[16]; -+ struct audit_tree_refs *trees; -+ struct audit_tree_refs *first_trees; -+ struct list_head killed_trees; -+ int tree_count; -+ int type; -+ union { -+ struct { -+ int nargs; -+ long int args[6]; -+ } socketcall; -+ struct { -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+ u32 osid; -+ int has_perm; -+ uid_t perm_uid; -+ gid_t perm_gid; -+ umode_t perm_mode; -+ long unsigned int qbytes; -+ } ipc; -+ struct { -+ mqd_t mqdes; -+ struct mq_attr mqstat; -+ } mq_getsetattr; -+ struct { -+ mqd_t mqdes; -+ int sigev_signo; -+ } mq_notify; -+ struct { -+ mqd_t mqdes; -+ size_t msg_len; -+ unsigned int msg_prio; -+ struct timespec64 abs_timeout; -+ } mq_sendrecv; -+ struct { -+ int oflag; -+ umode_t mode; -+ struct mq_attr attr; -+ } mq_open; -+ struct { -+ pid_t pid; -+ struct audit_cap_data cap; -+ } capset; -+ struct { -+ int fd; -+ int flags; -+ } mmap; -+ struct { -+ int argc; -+ } execve; -+ struct { -+ char *name; -+ } module; -+ }; -+ int fds[2]; -+ struct audit_proctitle proctitle; -+}; -+ +enum siginfo_layout { + SIL_KILL = 0, + SIL_TIMER = 1, @@ -30434,12 +30149,9 @@ index 0000000..bcb9d76 + SIL_SYS = 9, +}; + -+struct filename { -+ const char *name; -+ const char *uptr; -+ int refcnt; -+ struct audit_names *aname; -+ const char iname[0]; ++struct fd { ++ struct file *file; ++ unsigned int flags; +}; + +typedef u32 compat_old_sigset_t; @@ -30492,6 +30204,10 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_signal_deliver {}; + ++typedef void (*btf_trace_signal_generate)(void *, int, struct kernel_siginfo *, struct task_struct *, int, int); ++ ++typedef void (*btf_trace_signal_deliver)(void *, int, struct kernel_siginfo *, struct k_sigaction *); ++ +typedef __kernel_clock_t clock_t; + +struct sysinfo { @@ -30606,11 +30322,6 @@ index 0000000..bcb9d76 + long unsigned int blob[16]; +}; + -+struct fd { -+ struct file *file; -+ unsigned int flags; -+}; -+ +struct compat_sysinfo { + s32 uptime; + u32 loads[3]; @@ -30628,13 +30339,6 @@ index 0000000..bcb9d76 + char _f[8]; +}; + -+struct umh_info { -+ const char *cmdline; -+ struct file *pipe_to_umh; -+ struct file *pipe_from_umh; -+ pid_t pid; -+}; -+ +struct wq_flusher; + +struct worker; @@ -30708,18 +30412,17 @@ index 0000000..bcb9d76 + WQ_DFL_ACTIVE = 256, +}; + -+struct __una_u32 { -+ u32 x; ++enum xa_lock_type { ++ XA_LOCK_IRQ = 1, ++ XA_LOCK_BH = 2, +}; + -+enum hk_flags { -+ HK_FLAG_TIMER = 1, -+ HK_FLAG_RCU = 2, -+ HK_FLAG_MISC = 4, -+ HK_FLAG_SCHED = 8, -+ HK_FLAG_TICK = 16, -+ HK_FLAG_DOMAIN = 32, -+ HK_FLAG_WQ = 64, ++struct ida { ++ struct xarray xa; ++}; ++ ++struct __una_u32 { ++ u32 x; +}; + +struct worker_pool; @@ -30742,6 +30445,11 @@ index 0000000..bcb9d76 + int sleeping; + char desc[24]; + struct workqueue_struct *rescue_wq; ++ work_func_t last_func; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct pool_workqueue { @@ -30765,7 +30473,7 @@ index 0000000..bcb9d76 +}; + +struct worker_pool { -+ spinlock_t lock; ++ raw_spinlock_t lock; + int cpu; + int node; + int id; @@ -30807,7 +30515,6 @@ index 0000000..bcb9d76 + WORKER_CPU_INTENSIVE = 64, + WORKER_UNBOUND = 128, + WORKER_REBOUND = 256, -+ WORKER_NICED = 512, + WORKER_NOT_RUNNING = 456, + NR_STD_WORKER_POOLS = 2, + UNBOUND_POOL_HASH_ORDER = 6, @@ -30817,8 +30524,8 @@ index 0000000..bcb9d76 + MAYDAY_INITIAL_TIMEOUT = 10, + MAYDAY_INTERVAL = 100, + CREATE_COOLDOWN = 1000, -+ RESCUER_NICE_LEVEL = -20, -+ HIGHPRI_NICE_LEVEL = -20, ++ RESCUER_NICE_LEVEL = 4294967276, ++ HIGHPRI_NICE_LEVEL = 4294967276, + WQ_NAME_LEN = 24, +}; + @@ -30833,12 +30540,6 @@ index 0000000..bcb9d76 + struct device dev; +}; + -+struct trace_event_raw_workqueue_work { -+ struct trace_entry ent; -+ void *work; -+ char __data[0]; -+}; -+ +struct trace_event_raw_workqueue_queue_work { + struct trace_entry ent; + void *work; @@ -30849,6 +30550,12 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_workqueue_activate_work { ++ struct trace_entry ent; ++ void *work; ++ char __data[0]; ++}; ++ +struct trace_event_raw_workqueue_execute_start { + struct trace_entry ent; + void *work; @@ -30856,23 +30563,35 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_data_offsets_workqueue_work {}; ++struct trace_event_raw_workqueue_execute_end { ++ struct trace_entry ent; ++ void *work; ++ void *function; ++ char __data[0]; ++}; + +struct trace_event_data_offsets_workqueue_queue_work {}; + ++struct trace_event_data_offsets_workqueue_activate_work {}; ++ +struct trace_event_data_offsets_workqueue_execute_start {}; + ++struct trace_event_data_offsets_workqueue_execute_end {}; ++ ++typedef void (*btf_trace_workqueue_queue_work)(void *, unsigned int, struct pool_workqueue *, struct work_struct *); ++ ++typedef void (*btf_trace_workqueue_activate_work)(void *, struct work_struct *); ++ ++typedef void (*btf_trace_workqueue_execute_start)(void *, struct work_struct *); ++ ++typedef void (*btf_trace_workqueue_execute_end)(void *, struct work_struct *, work_func_t); ++ +struct wq_barrier { + struct work_struct work; + struct completion done; + struct task_struct *task; +}; + -+struct nice_work { -+ struct work_struct work; -+ long int nice; -+}; -+ +struct cwt_wait { + wait_queue_entry_t wait; + struct work_struct *work; @@ -30893,6 +30612,14 @@ index 0000000..bcb9d76 + long int ret; +}; + ++typedef struct {} local_lock_t; ++ ++struct radix_tree_preload { ++ local_lock_t lock; ++ unsigned int nr; ++ struct xa_node *nodes; ++}; ++ +struct ctl_path { + const char *procname; +}; @@ -30935,11 +30662,10 @@ index 0000000..bcb9d76 +}; + +enum { -+ CSS_NO_REF = 1, -+ CSS_ONLINE = 2, -+ CSS_RELEASED = 4, -+ CSS_VISIBLE = 8, -+ CSS_DYING = 16, ++ __PERCPU_REF_ATOMIC = 1, ++ __PERCPU_REF_DEAD = 2, ++ __PERCPU_REF_ATOMIC_DEAD = 3, ++ __PERCPU_REF_FLAG_BITS = 2, +}; + +struct kthread_work; @@ -30961,7 +30687,7 @@ index 0000000..bcb9d76 + +struct kthread_worker { + unsigned int flags; -+ spinlock_t lock; ++ raw_spinlock_t lock; + struct list_head work_list; + struct list_head delayed_work_list; + struct task_struct *task; @@ -30973,6 +30699,14 @@ index 0000000..bcb9d76 + struct timer_list timer; +}; + ++enum { ++ CSS_NO_REF = 1, ++ CSS_ONLINE = 2, ++ CSS_RELEASED = 4, ++ CSS_VISIBLE = 8, ++ CSS_DYING = 16, ++}; ++ +struct kthread_create_info { + int (*threadfn)(void *); + void *data; @@ -30985,7 +30719,9 @@ index 0000000..bcb9d76 +struct kthread { + long unsigned int flags; + unsigned int cpu; ++ int (*threadfn)(void *); + void *data; ++ mm_segment_t oldfs; + struct completion parked; + struct completion exited; + struct cgroup_subsys_state *blkcg_css; @@ -31002,12 +30738,15 @@ index 0000000..bcb9d76 + struct completion done; +}; + ++struct pt_regs; ++ +struct ipc_ids { + int in_use; + short unsigned int seq; + struct rw_semaphore rwsem; + struct idr ipcs_idr; + int max_idx; ++ int last_idx; + int next_id; + struct rhashtable key_ht; +}; @@ -31037,13 +30776,10 @@ index 0000000..bcb9d76 + unsigned int mq_msgsize_default; + struct user_namespace *user_ns; + struct ucounts *ucounts; ++ struct llist_node mnt_llist; + struct ns_common ns; +}; + -+struct raw_notifier_head { -+ struct notifier_block *head; -+}; -+ +struct srcu_notifier_head { + struct mutex mutex; + struct srcu_struct srcu; @@ -31060,7 +30796,7 @@ index 0000000..bcb9d76 + PROC_EVENT_PTRACE = 256, + PROC_EVENT_COMM = 512, + PROC_EVENT_COREDUMP = 1073741824, -+ PROC_EVENT_EXIT = -2147483648, ++ PROC_EVENT_EXIT = 2147483648, +}; + +typedef u64 async_cookie_t; @@ -31094,9 +30830,7 @@ index 0000000..bcb9d76 + HP_THREAD_PARKED = 2, +}; + -+typedef void (*rcu_callback_t)(struct callback_head *); -+ -+typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); ++struct pin_cookie {}; + +struct preempt_notifier; + @@ -31110,13 +30844,80 @@ index 0000000..bcb9d76 + struct preempt_ops *ops; +}; + -+struct pin_cookie {}; ++enum { ++ CSD_FLAG_LOCK = 1, ++ IRQ_WORK_PENDING = 1, ++ IRQ_WORK_BUSY = 2, ++ IRQ_WORK_LAZY = 4, ++ IRQ_WORK_HARD_IRQ = 8, ++ IRQ_WORK_CLAIMED = 3, ++ CSD_TYPE_ASYNC = 0, ++ CSD_TYPE_SYNC = 16, ++ CSD_TYPE_IRQ_WORK = 32, ++ CSD_TYPE_TTWU = 48, ++ CSD_FLAG_TYPE_MASK = 240, ++}; ++ ++struct dl_bw { ++ raw_spinlock_t lock; ++ u64 bw; ++ u64 total_bw; ++}; ++ ++struct cpudl_item; ++ ++struct cpudl { ++ raw_spinlock_t lock; ++ int size; ++ cpumask_var_t free_cpus; ++ struct cpudl_item *elements; ++}; ++ ++struct cpupri_vec { ++ atomic_t count; ++ cpumask_var_t mask; ++}; ++ ++struct cpupri { ++ struct cpupri_vec pri_to_cpu[102]; ++ int *cpu_to_pri; ++}; ++ ++struct perf_domain; ++ ++struct root_domain { ++ atomic_t refcount; ++ atomic_t rto_count; ++ struct callback_head rcu; ++ cpumask_var_t span; ++ cpumask_var_t online; ++ int overload; ++ int overutilized; ++ cpumask_var_t dlo_mask; ++ atomic_t dlo_count; ++ struct dl_bw dl_bw; ++ struct cpudl cpudl; ++ struct irq_work rto_push_work; ++ raw_spinlock_t rto_lock; ++ int rto_loop; ++ int rto_cpu; ++ atomic_t rto_loop_next; ++ atomic_t rto_loop_start; ++ cpumask_var_t rto_mask; ++ struct cpupri cpupri; ++ long unsigned int max_cpu_capacity; ++ struct perf_domain *pd; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; + +struct cfs_rq { + struct load_weight load; -+ long unsigned int runnable_weight; + unsigned int nr_running; + unsigned int h_nr_running; ++ unsigned int idle_h_nr_running; + u64 exec_clock; + u64 min_vruntime; + struct rb_root_cached tasks_timeline; @@ -31135,7 +30936,7 @@ index 0000000..bcb9d76 + int nr; + long unsigned int load_avg; + long unsigned int util_avg; -+ long unsigned int runnable_sum; ++ long unsigned int runnable_avg; + long: 64; + long: 64; + long: 64; @@ -31159,13 +30960,9 @@ index 0000000..bcb9d76 + int throttled; + int throttle_count; + struct list_head throttled_list; -+ union { -+ unsigned int idle_h_nr_running; -+ long unsigned int idle_h_nr_running_padding; -+ }; -+ long unsigned int kabi_reserved2; -+ long: 64; -+ long: 64; ++ struct list_head qos_throttled_list; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; + long: 64; +}; + @@ -31210,15 +31007,21 @@ index 0000000..bcb9d76 + u64 quota; + u64 runtime; + s64 hierarchical_quota; -+ short int idle; -+ short int period_active; ++ u8 idle; ++ u8 period_active; ++ u8 slack_started; + struct hrtimer period_timer; + struct hrtimer slack_timer; + struct list_head throttled_cfs_rq; + int nr_periods; + int nr_throttled; + u64 throttled_time; -+ bool distribute_running; ++ u64 burst; ++ u64 runtime_snap; ++ int nr_burst; ++ u64 burst_time; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; +}; + +struct task_group { @@ -31226,13 +31029,6 @@ index 0000000..bcb9d76 + struct sched_entity **se; + struct cfs_rq **cfs_rq; + long unsigned int shares; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; + atomic_long_t load_avg; + struct sched_rt_entity **rt_se; + struct rt_rq **rt_rq; @@ -31244,14 +31040,51 @@ index 0000000..bcb9d76 + struct list_head children; + struct autogroup *autogroup; + struct cfs_bandwidth cfs_bandwidth; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; ++ long int qos_level; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; + long: 64; + long: 64; +}; + -+struct update_util_data { -+ void (*func)(struct update_util_data *, u64, unsigned int); ++struct sched_group { ++ struct sched_group *next; ++ atomic_t ref; ++ unsigned int group_weight; ++ struct sched_group_capacity *sgc; ++ int asym_prefer_cpu; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ long unsigned int cpumask[0]; ++}; ++ ++struct sched_group_capacity { ++ atomic_t ref; ++ long unsigned int capacity; ++ long unsigned int min_capacity; ++ long unsigned int max_capacity; ++ long unsigned int next_update; ++ int imbalance; ++ int id; ++ long unsigned int cpumask[0]; ++}; ++ ++struct em_perf_state { ++ long unsigned int frequency; ++ long unsigned int power; ++ long unsigned int cost; ++}; ++ ++struct em_perf_domain { ++ struct em_perf_state *table; ++ int nr_perf_states; ++ long unsigned int cpus[0]; +}; + +struct autogroup { @@ -31262,76 +31095,21 @@ index 0000000..bcb9d76 + int nice; +}; + -+enum { -+ MEMBARRIER_STATE_PRIVATE_EXPEDITED_READY = 1, -+ MEMBARRIER_STATE_PRIVATE_EXPEDITED = 2, -+ MEMBARRIER_STATE_GLOBAL_EXPEDITED_READY = 4, -+ MEMBARRIER_STATE_GLOBAL_EXPEDITED = 8, -+ MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE_READY = 16, -+ MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE = 32, ++enum ctx_state { ++ CONTEXT_DISABLED = 4294967295, ++ CONTEXT_KERNEL = 0, ++ CONTEXT_USER = 1, ++ CONTEXT_GUEST = 2, +}; + -+struct sched_group { -+ struct sched_group *next; -+ atomic_t ref; -+ unsigned int group_weight; -+ struct sched_group_capacity *sgc; -+ int asym_prefer_cpu; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int cpumask[0]; ++struct context_tracking { ++ bool active; ++ int recursion; ++ enum ctx_state state; +}; + -+struct sched_group_capacity { -+ atomic_t ref; -+ long unsigned int capacity; -+ long unsigned int min_capacity; -+ long unsigned int next_update; -+ int imbalance; -+ int id; -+ long unsigned int cpumask[0]; -+}; -+ -+struct wake_q_head { -+ struct wake_q_node *first; -+ struct wake_q_node **lastp; -+}; -+ -+struct sched_attr { -+ __u32 size; -+ __u32 sched_policy; -+ __u64 sched_flags; -+ __s32 sched_nice; -+ __u32 sched_priority; -+ __u64 sched_runtime; -+ __u64 sched_deadline; -+ __u64 sched_period; -+}; -+ -+struct cpuidle_driver___2; -+ -+struct cpuidle_state { -+ char name[16]; -+ char desc[32]; -+ unsigned int flags; -+ unsigned int exit_latency; -+ int power_usage; -+ unsigned int target_residency; -+ bool disabled; -+ int (*enter)(struct cpuidle_device *, struct cpuidle_driver___2 *, int); -+ int (*enter_dead)(struct cpuidle_device *, int); -+ void (*enter_s2idle)(struct cpuidle_device *, struct cpuidle_driver___2 *, int); -+}; -+ -+struct cpuidle_driver___2 { -+ const char *name; -+ struct module *owner; -+ int refcnt; -+ unsigned int bctimer: 1; -+ struct cpuidle_state states[10]; -+ int state_count; -+ int safe_state_index; -+ struct cpumask *cpumask; ++struct kernel_cpustat { ++ u64 cpustat[10]; +}; + +enum { @@ -31340,252 +31118,24 @@ index 0000000..bcb9d76 + CFTYPE_NS_DELEGATABLE = 4, + CFTYPE_NO_PREFIX = 8, + CFTYPE_WORLD_WRITABLE = 16, ++ CFTYPE_DEBUG = 32, + __CFTYPE_ONLY_ON_DFL = 65536, + __CFTYPE_NOT_ON_DFL = 131072, +}; + -+struct rcu_synchronize { -+ struct callback_head head; -+ struct completion completion; -+}; -+ -+typedef int (*cpu_stop_fn_t)(void *); -+ -+struct cpu_stop_done; -+ -+struct cpu_stop_work { -+ struct list_head list; -+ cpu_stop_fn_t fn; -+ void *arg; -+ struct cpu_stop_done *done; -+}; -+ -+struct cpupri_vec { -+ atomic_t count; -+ cpumask_var_t mask; -+}; -+ -+struct cpupri { -+ struct cpupri_vec pri_to_cpu[102]; -+ int *cpu_to_pri; -+}; -+ -+struct cpudl_item { -+ u64 dl; -+ int cpu; -+ int idx; -+}; -+ -+struct cpudl { -+ raw_spinlock_t lock; -+ int size; -+ cpumask_var_t free_cpus; -+ struct cpudl_item *elements; -+}; -+ -+struct dl_bandwidth { -+ raw_spinlock_t dl_runtime_lock; -+ u64 dl_runtime; -+ u64 dl_period; -+}; -+ -+struct dl_bw { -+ raw_spinlock_t lock; -+ u64 bw; -+ u64 total_bw; -+}; -+ -+typedef int (*tg_visitor)(struct task_group *, void *); -+ -+struct dl_rq { -+ struct rb_root_cached root; -+ long unsigned int dl_nr_running; -+ struct { -+ u64 curr; -+ u64 next; -+ } earliest_dl; -+ long unsigned int dl_nr_migratory; -+ int overloaded; -+ struct rb_root_cached pushable_dl_tasks_root; -+ u64 running_bw; -+ u64 this_bw; -+ u64 extra_bw; -+ u64 bw_ratio; -+}; -+ -+struct root_domain; -+ -+struct rq { -+ raw_spinlock_t lock; -+ unsigned int nr_running; -+ unsigned int nr_numa_running; -+ unsigned int nr_preferred_running; -+ unsigned int numa_migrate_on; -+ long unsigned int cpu_load[5]; -+ long unsigned int last_load_update_tick; -+ long unsigned int last_blocked_load_update_tick; -+ unsigned int has_blocked_load; -+ unsigned int nohz_tick_stopped; -+ atomic_t nohz_flags; -+ struct load_weight load; -+ long unsigned int nr_load_updates; -+ u64 nr_switches; -+ struct cfs_rq cfs; -+ struct rt_rq rt; -+ struct dl_rq dl; -+ struct sparsemask *cfs_overload_cpus; -+ struct list_head leaf_cfs_rq_list; -+ struct list_head *tmp_alone_branch; -+ long unsigned int nr_uninterruptible; -+ struct task_struct *curr; -+ struct task_struct *idle; -+ struct task_struct *stop; -+ long unsigned int next_balance; -+ struct mm_struct *prev_mm; -+ unsigned int clock_update_flags; -+ u64 clock; -+ u64 clock_task; -+ atomic_t nr_iowait; -+ int membarrier_state; -+ struct root_domain *rd; -+ struct sched_domain *sd; -+ long unsigned int cpu_capacity; -+ long unsigned int cpu_capacity_orig; -+ struct callback_head *balance_callback; -+ unsigned char idle_balance; -+ int active_balance; -+ int push_cpu; -+ struct cpu_stop_work active_balance_work; -+ int cpu; -+ int online; -+ struct list_head cfs_tasks; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sched_avg avg_rt; -+ struct sched_avg avg_dl; -+ struct sched_avg avg_irq; -+ u64 idle_stamp; -+ u64 avg_idle; -+ u64 max_idle_balance_cost; -+ u64 prev_irq_time; -+ u64 prev_steal_time; -+ u64 prev_steal_time_rq; -+ long unsigned int calc_load_update; -+ long int calc_load_active; -+ int hrtick_csd_pending; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ call_single_data_t hrtick_csd; -+ struct hrtimer hrtick_timer; -+ struct sched_info rq_sched_info; -+ long long unsigned int rq_cpu_time; -+ unsigned int yld_count; -+ unsigned int sched_count; -+ unsigned int sched_goidle; -+ unsigned int ttwu_count; -+ unsigned int ttwu_local; -+ unsigned int found_idle_core; -+ unsigned int found_idle_cpu; -+ unsigned int found_idle_cpu_easy; -+ unsigned int nofound_idle_cpu; -+ long unsigned int find_time; -+ unsigned int steal; -+ unsigned int steal_fail; -+ struct llist_head wake_list; -+ struct cpuidle_state *idle_state; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct root_domain { -+ atomic_t refcount; -+ atomic_t rto_count; -+ struct callback_head rcu; -+ cpumask_var_t span; -+ cpumask_var_t online; -+ bool overload; -+ cpumask_var_t dlo_mask; -+ atomic_t dlo_count; -+ struct dl_bw dl_bw; -+ struct cpudl cpudl; -+ struct irq_work rto_push_work; -+ raw_spinlock_t rto_lock; -+ int rto_loop; -+ int rto_cpu; -+ atomic_t rto_loop_next; -+ atomic_t rto_loop_start; -+ cpumask_var_t rto_mask; -+ struct cpupri cpupri; -+ long unsigned int max_cpu_capacity; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct cputime { -+ u64 utime; -+ u64 stime; -+}; -+ -+struct rq_cputime { -+ raw_spinlock_t lock; -+ long long unsigned int sum_idle_time; -+ long long unsigned int last_entry_idle; -+ struct cputime cpu_prev_time; -+ struct cputime cpu_last_time; -+}; -+ -+struct rq_flags { -+ long unsigned int flags; -+ struct pin_cookie cookie; -+ unsigned int clock_update_flags; -+}; -+ -+enum numa_topology_type { -+ NUMA_DIRECT = 0, -+ NUMA_GLUELESS_MESH = 1, -+ NUMA_BACKPLANE = 2, -+}; -+ -+enum { -+ __SCHED_FEAT_GENTLE_FAIR_SLEEPERS = 0, -+ __SCHED_FEAT_START_DEBIT = 1, -+ __SCHED_FEAT_NEXT_BUDDY = 2, -+ __SCHED_FEAT_LAST_BUDDY = 3, -+ __SCHED_FEAT_CACHE_HOT_BUDDY = 4, -+ __SCHED_FEAT_WAKEUP_PREEMPTION = 5, -+ __SCHED_FEAT_HRTICK = 6, -+ __SCHED_FEAT_DOUBLE_TICK = 7, -+ __SCHED_FEAT_LB_BIAS = 8, -+ __SCHED_FEAT_NONTASK_CAPACITY = 9, -+ __SCHED_FEAT_TTWU_QUEUE = 10, -+ __SCHED_FEAT_SIS_AVG_CPU = 11, -+ __SCHED_FEAT_SIS_PROP = 12, -+ __SCHED_FEAT_STEAL = 13, -+ __SCHED_FEAT_WARN_DOUBLE_CLOCK = 14, -+ __SCHED_FEAT_RT_PUSH_IPI = 15, -+ __SCHED_FEAT_RT_RUNTIME_SHARE = 16, -+ __SCHED_FEAT_LB_MIN = 17, -+ __SCHED_FEAT_ATTACH_AGE_LOAD = 18, -+ __SCHED_FEAT_WA_IDLE = 19, -+ __SCHED_FEAT_WA_WEIGHT = 20, -+ __SCHED_FEAT_WA_BIAS = 21, -+ __SCHED_FEAT_UTIL_EST = 22, -+ __SCHED_FEAT_NR = 23, -+}; -+ -+struct irqtime { -+ u64 total; -+ u64 tick_delta; -+ u64 irq_start_time; -+ struct u64_stats_sync sync; ++struct css_task_iter { ++ struct cgroup_subsys *ss; ++ unsigned int flags; ++ struct list_head *cset_pos; ++ struct list_head *cset_head; ++ struct list_head *tcset_pos; ++ struct list_head *tcset_head; ++ struct list_head *task_pos; ++ struct list_head *cur_tasks_head; ++ struct css_set *cur_cset; ++ struct css_set *cur_dcset; ++ struct task_struct *cur_task; ++ struct list_head iters_node; +}; + +struct trace_event_raw_sched_kthread_stop { @@ -31623,6 +31173,23 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_sched_qos_smt_expel { ++ struct trace_entry ent; ++ char sibling_comm[16]; ++ pid_t sibling_pid; ++ int sibling_qos_status; ++ int sibling_cpu; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_sched_qos_smt_expelled { ++ struct trace_entry ent; ++ char comm[16]; ++ pid_t pid; ++ int qos_status; ++ char __data[0]; ++}; ++ +struct trace_event_raw_sched_migrate_task { + struct trace_entry ent; + char comm[16]; @@ -31699,7 +31266,7 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_raw_sched_move_task_template { ++struct trace_event_raw_sched_move_numa { + struct trace_entry ent; + pid_t pid; + pid_t tgid; @@ -31711,7 +31278,7 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_raw_sched_swap_numa { ++struct trace_event_raw_sched_numa_pair_template { + struct trace_entry ent; + pid_t src_pid; + pid_t src_tgid; @@ -31732,6 +31299,12 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_psi_memstall_template { ++ struct trace_entry ent; ++ long unsigned int function; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_sched_kthread_stop {}; + +struct trace_event_data_offsets_sched_kthread_stop_ret {}; @@ -31740,6 +31313,10 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_sched_switch {}; + ++struct trace_event_data_offsets_sched_qos_smt_expel {}; ++ ++struct trace_event_data_offsets_sched_qos_smt_expelled {}; ++ +struct trace_event_data_offsets_sched_migrate_task {}; + +struct trace_event_data_offsets_sched_process_template {}; @@ -31760,12 +31337,395 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_sched_process_hang {}; + -+struct trace_event_data_offsets_sched_move_task_template {}; ++struct trace_event_data_offsets_sched_move_numa {}; + -+struct trace_event_data_offsets_sched_swap_numa {}; ++struct trace_event_data_offsets_sched_numa_pair_template {}; + +struct trace_event_data_offsets_sched_wake_idle_without_ipi {}; + ++struct trace_event_data_offsets_psi_memstall_template {}; ++ ++typedef void (*btf_trace_sched_kthread_stop)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_kthread_stop_ret)(void *, int); ++ ++typedef void (*btf_trace_sched_waking)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_wakeup)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_wakeup_new)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_switch)(void *, bool, struct task_struct *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_qos_smt_expel)(void *, struct task_struct *, int); ++ ++typedef void (*btf_trace_sched_qos_smt_expelled)(void *, struct task_struct *, int); ++ ++typedef void (*btf_trace_sched_migrate_task)(void *, struct task_struct *, int); ++ ++typedef void (*btf_trace_sched_process_free)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_process_exit)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_wait_task)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_process_wait)(void *, struct pid *); ++ ++typedef void (*btf_trace_sched_process_fork)(void *, struct task_struct *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_process_exec)(void *, struct task_struct *, pid_t, struct linux_binprm *); ++ ++typedef void (*btf_trace_sched_stat_wait)(void *, struct task_struct *, u64); ++ ++typedef void (*btf_trace_sched_stat_sleep)(void *, struct task_struct *, u64); ++ ++typedef void (*btf_trace_sched_stat_iowait)(void *, struct task_struct *, u64); ++ ++typedef void (*btf_trace_sched_stat_blocked)(void *, struct task_struct *, u64); ++ ++typedef void (*btf_trace_sched_stat_runtime)(void *, struct task_struct *, u64, u64); ++ ++typedef void (*btf_trace_sched_pi_setprio)(void *, struct task_struct *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_process_hang)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_sched_move_numa)(void *, struct task_struct *, int, int); ++ ++typedef void (*btf_trace_sched_stick_numa)(void *, struct task_struct *, int, struct task_struct *, int); ++ ++typedef void (*btf_trace_sched_swap_numa)(void *, struct task_struct *, int, struct task_struct *, int); ++ ++typedef void (*btf_trace_sched_wake_idle_without_ipi)(void *, int); ++ ++typedef void (*btf_trace_pelt_cfs_tp)(void *, struct cfs_rq *); ++ ++typedef void (*btf_trace_pelt_rt_tp)(void *, struct rq *); ++ ++struct dl_rq { ++ struct rb_root_cached root; ++ long unsigned int dl_nr_running; ++ struct { ++ u64 curr; ++ u64 next; ++ } earliest_dl; ++ long unsigned int dl_nr_migratory; ++ int overloaded; ++ struct rb_root_cached pushable_dl_tasks_root; ++ u64 running_bw; ++ u64 this_bw; ++ u64 extra_bw; ++ u64 bw_ratio; ++}; ++ ++typedef int (*cpu_stop_fn_t)(void *); ++ ++struct cpu_stop_done; ++ ++struct cpu_stop_work { ++ struct list_head list; ++ cpu_stop_fn_t fn; ++ void *arg; ++ struct cpu_stop_done *done; ++ u64 kabi_reserved1; ++}; ++ ++struct cpuidle_state; ++ ++struct rq { ++ raw_spinlock_t lock; ++ unsigned int nr_running; ++ unsigned int nr_numa_running; ++ unsigned int nr_preferred_running; ++ unsigned int numa_migrate_on; ++ long unsigned int last_blocked_load_update_tick; ++ unsigned int has_blocked_load; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ call_single_data_t nohz_csd; ++ unsigned int nohz_tick_stopped; ++ atomic_t nohz_flags; ++ unsigned int ttwu_pending; ++ u64 nr_switches; ++ long: 64; ++ struct cfs_rq cfs; ++ struct rt_rq rt; ++ struct dl_rq dl; ++ struct sparsemask *cfs_overload_cpus; ++ struct list_head leaf_cfs_rq_list; ++ struct list_head *tmp_alone_branch; ++ long unsigned int nr_uninterruptible; ++ struct task_struct *curr; ++ struct task_struct *idle; ++ struct task_struct *stop; ++ long unsigned int next_balance; ++ struct mm_struct *prev_mm; ++ unsigned int clock_update_flags; ++ u64 clock; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ u64 clock_task; ++ u64 clock_pelt; ++ long unsigned int lost_idle_time; ++ atomic_t nr_iowait; ++ int membarrier_state; ++ struct root_domain *rd; ++ struct sched_domain *sd; ++ long unsigned int cpu_capacity; ++ long unsigned int cpu_capacity_orig; ++ struct callback_head *balance_callback; ++ unsigned char nohz_idle_balance; ++ unsigned char idle_balance; ++ long unsigned int misfit_task_load; ++ int active_balance; ++ int push_cpu; ++ struct cpu_stop_work active_balance_work; ++ int cpu; ++ int online; ++ struct list_head cfs_tasks; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct sched_avg avg_rt; ++ struct sched_avg avg_dl; ++ struct sched_avg avg_irq; ++ u64 idle_stamp; ++ u64 avg_idle; ++ u64 max_idle_balance_cost; ++ u64 prev_irq_time; ++ u64 prev_steal_time; ++ u64 prev_steal_time_rq; ++ long unsigned int calc_load_update; ++ long int calc_load_active; ++ call_single_data_t hrtick_csd; ++ struct hrtimer hrtick_timer; ++ ktime_t hrtick_time; ++ struct sched_info rq_sched_info; ++ long long unsigned int rq_cpu_time; ++ unsigned int yld_count; ++ unsigned int sched_count; ++ unsigned int sched_goidle; ++ unsigned int ttwu_count; ++ unsigned int ttwu_local; ++ unsigned int found_idle_cpu_capacity; ++ unsigned int found_idle_cpu; ++ unsigned int found_idle_cpu_easy; ++ unsigned int nofound_idle_cpu; ++ long unsigned int find_time; ++ unsigned int steal; ++ unsigned int steal_fail; ++ struct cpuidle_state *idle_state; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); ++ ++typedef void (*btf_trace_pelt_thermal_tp)(void *, struct rq *); ++ ++typedef void (*btf_trace_pelt_irq_tp)(void *, struct rq *); ++ ++typedef void (*btf_trace_pelt_se_tp)(void *, struct sched_entity *); ++ ++typedef void (*btf_trace_sched_cpu_capacity_tp)(void *, struct rq *); ++ ++typedef void (*btf_trace_sched_overutilized_tp)(void *, struct root_domain *, bool); ++ ++typedef void (*btf_trace_sched_util_est_cfs_tp)(void *, struct cfs_rq *); ++ ++typedef void (*btf_trace_sched_util_est_se_tp)(void *, struct sched_entity *); ++ ++typedef void (*btf_trace_sched_update_nr_running_tp)(void *, struct rq *, int); ++ ++typedef void (*btf_trace_psi_memstall_enter)(void *, long unsigned int); ++ ++typedef void (*btf_trace_psi_memstall_leave)(void *, long unsigned int); ++ ++enum { ++ MEMBARRIER_STATE_PRIVATE_EXPEDITED_READY = 1, ++ MEMBARRIER_STATE_PRIVATE_EXPEDITED = 2, ++ MEMBARRIER_STATE_GLOBAL_EXPEDITED_READY = 4, ++ MEMBARRIER_STATE_GLOBAL_EXPEDITED = 8, ++ MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE_READY = 16, ++ MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE = 32, ++ MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ_READY = 64, ++ MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ = 128, ++}; ++ ++struct wake_q_head { ++ struct wake_q_node *first; ++ struct wake_q_node **lastp; ++}; ++ ++struct sched_attr { ++ __u32 size; ++ __u32 sched_policy; ++ __u64 sched_flags; ++ __s32 sched_nice; ++ __u32 sched_priority; ++ __u64 sched_runtime; ++ __u64 sched_deadline; ++ __u64 sched_period; ++ __u32 sched_util_min; ++ __u32 sched_util_max; ++}; ++ ++struct cpuidle_state_usage { ++ long long unsigned int disable; ++ long long unsigned int usage; ++ u64 time_ns; ++ long long unsigned int above; ++ long long unsigned int below; ++ long long unsigned int rejected; ++ long long unsigned int s2idle_usage; ++ long long unsigned int s2idle_time; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct cpuidle_device; ++ ++struct cpuidle_driver; ++ ++struct cpuidle_state { ++ char name[16]; ++ char desc[32]; ++ u64 exit_latency_ns; ++ u64 target_residency_ns; ++ unsigned int flags; ++ unsigned int exit_latency; ++ int power_usage; ++ unsigned int target_residency; ++ int (*enter)(struct cpuidle_device *, struct cpuidle_driver *, int); ++ int (*enter_dead)(struct cpuidle_device *, int); ++ int (*enter_s2idle)(struct cpuidle_device *, struct cpuidle_driver *, int); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct cpuidle_driver_kobj; ++ ++struct cpuidle_state_kobj; ++ ++struct cpuidle_device_kobj; ++ ++struct cpuidle_device { ++ unsigned int registered: 1; ++ unsigned int enabled: 1; ++ unsigned int poll_time_limit: 1; ++ unsigned int cpu; ++ ktime_t next_hrtimer; ++ int last_state_idx; ++ u64 last_residency_ns; ++ u64 poll_limit_ns; ++ u64 forced_idle_latency_limit_ns; ++ struct cpuidle_state_usage states_usage[10]; ++ struct cpuidle_state_kobj *kobjs[10]; ++ struct cpuidle_driver_kobj *kobj_driver; ++ struct cpuidle_device_kobj *kobj_dev; ++ struct list_head device_list; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct cpuidle_driver { ++ const char *name; ++ struct module *owner; ++ unsigned int bctimer: 1; ++ struct cpuidle_state states[10]; ++ int state_count; ++ int safe_state_index; ++ struct cpumask *cpumask; ++ const char *governor; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct cpudl_item { ++ u64 dl; ++ int cpu; ++ int idx; ++}; ++ ++struct dl_bandwidth { ++ raw_spinlock_t dl_runtime_lock; ++ u64 dl_runtime; ++ u64 dl_period; ++}; ++ ++typedef int (*tg_visitor)(struct task_group *, void *); ++ ++struct perf_domain { ++ struct em_perf_domain *em_pd; ++ struct perf_domain *next; ++ struct callback_head rcu; ++}; ++ ++struct rq_flags { ++ long unsigned int flags; ++ struct pin_cookie cookie; ++ unsigned int clock_update_flags; ++}; ++ ++enum { ++ __SCHED_FEAT_GENTLE_FAIR_SLEEPERS = 0, ++ __SCHED_FEAT_START_DEBIT = 1, ++ __SCHED_FEAT_NEXT_BUDDY = 2, ++ __SCHED_FEAT_LAST_BUDDY = 3, ++ __SCHED_FEAT_CACHE_HOT_BUDDY = 4, ++ __SCHED_FEAT_WAKEUP_PREEMPTION = 5, ++ __SCHED_FEAT_HRTICK = 6, ++ __SCHED_FEAT_DOUBLE_TICK = 7, ++ __SCHED_FEAT_NONTASK_CAPACITY = 8, ++ __SCHED_FEAT_TTWU_QUEUE = 9, ++ __SCHED_FEAT_SIS_PROP = 10, ++ __SCHED_FEAT_STEAL = 11, ++ __SCHED_FEAT_WARN_DOUBLE_CLOCK = 12, ++ __SCHED_FEAT_RT_PUSH_IPI = 13, ++ __SCHED_FEAT_RT_RUNTIME_SHARE = 14, ++ __SCHED_FEAT_LB_MIN = 15, ++ __SCHED_FEAT_ATTACH_AGE_LOAD = 16, ++ __SCHED_FEAT_WA_IDLE = 17, ++ __SCHED_FEAT_WA_WEIGHT = 18, ++ __SCHED_FEAT_WA_BIAS = 19, ++ __SCHED_FEAT_UTIL_EST = 20, ++ __SCHED_FEAT_UTIL_EST_FASTUP = 21, ++ __SCHED_FEAT_ALT_PERIOD = 22, ++ __SCHED_FEAT_BASE_SLICE = 23, ++ __SCHED_FEAT_NR = 24, ++}; ++ ++struct irqtime { ++ u64 total; ++ u64 tick_delta; ++ u64 irq_start_time; ++ struct u64_stats_sync sync; ++}; ++ +struct migration_arg { + struct task_struct *task; + int dest_cpu; @@ -31784,6 +31744,11 @@ index 0000000..bcb9d76 + struct delayed_work work; +}; + ++struct offline_args { ++ struct work_struct work; ++ struct task_struct *p; ++}; ++ +struct cfs_schedulable_data { + struct task_group *tg; + u64 period; @@ -31801,6 +31766,8 @@ index 0000000..bcb9d76 + TICK_DEP_BIT_PERF_EVENTS = 1, + TICK_DEP_BIT_SCHED = 2, + TICK_DEP_BIT_CLOCK_UNSTABLE = 3, ++ TICK_DEP_BIT_RCU = 4, ++ TICK_DEP_BIT_RCU_EXP = 5, +}; + +struct sched_clock_data { @@ -31809,15 +31776,21 @@ index 0000000..bcb9d76 + u64 clock; +}; + -+typedef u64 pao_T_____5; ++enum s2idle_states { ++ S2IDLE_STATE_NONE = 0, ++ S2IDLE_STATE_ENTER = 1, ++ S2IDLE_STATE_WAKE = 2, ++}; + +struct idle_timer { + struct hrtimer timer; + int done; +}; + ++typedef void (*rcu_callback_t)(struct callback_head *); ++ +struct numa_group { -+ atomic_t refcount; ++ refcount_t refcount; + spinlock_t lock; + int nr_tasks; + pid_t gid; @@ -31829,6 +31802,10 @@ index 0000000..bcb9d76 + long unsigned int faults[0]; +}; + ++struct update_util_data { ++ void (*func)(struct update_util_data *, u64, unsigned int); ++}; ++ +struct sparsemask_chunk { + long unsigned int word; + long: 64; @@ -31854,6 +31831,18 @@ index 0000000..bcb9d76 + struct sparsemask_chunk chunks[0]; +}; + ++enum task_qos_level { ++ QOS_LEVEL_OFFLINE = 4294967295, ++ QOS_LEVEL_ONLINE = 0, ++ QOS_LEVEL_MAX = 1, ++}; ++ ++enum numa_topology_type { ++ NUMA_DIRECT = 0, ++ NUMA_GLUELESS_MESH = 1, ++ NUMA_BACKPLANE = 2, ++}; ++ +enum numa_faults_stats { + NUMA_MEM = 0, + NUMA_CPU = 1, @@ -31861,10 +31850,26 @@ index 0000000..bcb9d76 + NUMA_CPUBUF = 3, +}; + ++enum schedutil_type { ++ FREQUENCY_UTIL = 0, ++ ENERGY_UTIL = 1, ++}; ++ ++enum numa_type { ++ node_has_spare = 0, ++ node_fully_busy = 1, ++ node_overloaded = 2, ++}; ++ +struct numa_stats { + long unsigned int load; ++ long unsigned int runnable; ++ long unsigned int util; + long unsigned int compute_capacity; + unsigned int nr_running; ++ unsigned int weight; ++ enum numa_type node_type; ++ int idle_cpu; +}; + +struct task_numa_env { @@ -31888,6 +31893,22 @@ index 0000000..bcb9d76 + all = 2, +}; + ++enum group_type { ++ group_has_spare = 0, ++ group_fully_busy = 1, ++ group_misfit_task = 2, ++ group_asym_packing = 3, ++ group_imbalanced = 4, ++ group_overloaded = 5, ++}; ++ ++enum migration_type { ++ migrate_load = 0, ++ migrate_util = 1, ++ migrate_task = 2, ++ migrate_misfit = 3, ++}; ++ +struct lb_env { + struct sched_domain *sd; + struct rq *src_rq; @@ -31904,27 +31925,23 @@ index 0000000..bcb9d76 + unsigned int loop_break; + unsigned int loop_max; + enum fbq_type fbq_type; ++ enum migration_type migration_type; + struct list_head tasks; +}; + -+enum group_type { -+ group_other = 0, -+ group_imbalanced = 1, -+ group_overloaded = 2, -+}; -+ +struct sg_lb_stats { + long unsigned int avg_load; + long unsigned int group_load; -+ long unsigned int sum_weighted_load; -+ long unsigned int load_per_task; + long unsigned int group_capacity; + long unsigned int group_util; ++ long unsigned int group_runnable; + unsigned int sum_nr_running; ++ unsigned int sum_h_nr_running; + unsigned int idle_cpus; + unsigned int group_weight; + enum group_type group_type; -+ int group_no_capacity; ++ unsigned int group_asym_packing; ++ long unsigned int group_misfit_task_load; + unsigned int nr_numa_running; + unsigned int nr_preferred_running; +}; @@ -31932,10 +31949,10 @@ index 0000000..bcb9d76 +struct sd_lb_stats { + struct sched_group *busiest; + struct sched_group *local; -+ long unsigned int total_running; + long unsigned int total_load; + long unsigned int total_capacity; + long unsigned int avg_load; ++ unsigned int prefer_sibling; + struct sg_lb_stats busiest_stat; + struct sg_lb_stats local_stat; +}; @@ -31961,6 +31978,11 @@ index 0000000..bcb9d76 + +typedef int wait_bit_action_f(struct wait_bit_key *, int); + ++struct sd_flag_debug { ++ unsigned int meta_flags; ++ char *name; ++}; ++ +struct sched_domain_attr { + int relax_domain_level; +}; @@ -31993,8 +32015,58 @@ index 0000000..bcb9d76 + struct kernel_cpustat *cpustat; +}; + ++struct gov_attr_set { ++ struct kobject kobj; ++ struct list_head policy_list; ++ struct mutex update_lock; ++ int usage_count; ++}; ++ ++struct governor_attr { ++ struct attribute attr; ++ ssize_t (*show)(struct gov_attr_set *, char *); ++ ssize_t (*store)(struct gov_attr_set *, const char *, size_t); ++}; ++ ++struct sugov_tunables { ++ struct gov_attr_set attr_set; ++ unsigned int rate_limit_us; ++}; ++ ++struct sugov_policy { ++ struct cpufreq_policy *policy; ++ struct sugov_tunables *tunables; ++ struct list_head tunables_hook; ++ raw_spinlock_t update_lock; ++ u64 last_freq_update_time; ++ s64 freq_update_delay_ns; ++ unsigned int next_freq; ++ unsigned int cached_raw_freq; ++ struct irq_work irq_work; ++ struct kthread_work work; ++ struct mutex work_lock; ++ struct kthread_worker worker; ++ struct task_struct *thread; ++ bool work_in_progress; ++ bool limits_changed; ++ bool need_freq_update; ++}; ++ ++struct sugov_cpu { ++ struct update_util_data update_util; ++ struct sugov_policy *sg_policy; ++ unsigned int cpu; ++ bool iowait_boost_pending; ++ unsigned int iowait_boost; ++ u64 last_update; ++ long unsigned int bw_dl; ++ long unsigned int max; ++ long unsigned int saved_idle_calls; ++}; ++ +enum { + MEMBARRIER_FLAG_SYNC_CORE = 1, ++ MEMBARRIER_FLAG_RSEQ = 2, +}; + +enum membarrier_cmd { @@ -32006,15 +32078,45 @@ index 0000000..bcb9d76 + 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_SHARED = 1, +}; + ++enum membarrier_cmd_flag { ++ MEMBARRIER_CMD_FLAG_CPU = 1, ++}; ++ ++enum psi_res { ++ PSI_IO = 0, ++ PSI_MEM = 1, ++ PSI_CPU = 2, ++ NR_PSI_RESOURCES = 3, ++}; ++ ++struct psi_window { ++ u64 size; ++ u64 start_time; ++ u64 start_value; ++ u64 prev_growth; ++}; ++ ++struct psi_trigger { ++ enum psi_states state; ++ u64 threshold; ++ struct list_head node; ++ struct psi_group *group; ++ wait_queue_head_t event_wait; ++ int event; ++ struct psi_window win; ++ u64 last_event_time; ++}; ++ +struct ww_acquire_ctx; + -+struct mutex_waiter { -+ struct list_head list; -+ struct task_struct *task; -+ struct ww_acquire_ctx *ww_ctx; ++struct ww_mutex { ++ struct mutex base; ++ struct ww_acquire_ctx *ctx; +}; + +struct ww_acquire_ctx { @@ -32025,9 +32127,16 @@ index 0000000..bcb9d76 + short unsigned int is_wait_die; +}; + -+struct ww_mutex { -+ struct mutex base; -+ struct ww_acquire_ctx *ctx; ++struct mutex_waiter { ++ struct list_head list; ++ struct task_struct *task; ++ struct ww_acquire_ctx *ww_ctx; ++}; ++ ++enum mutex_trylock_recursive_enum { ++ MUTEX_TRYLOCK_FAILED = 0, ++ MUTEX_TRYLOCK_SUCCESS = 1, ++ MUTEX_TRYLOCK_RECURSIVE = 2, +}; + +struct semaphore_waiter { @@ -32036,6 +32145,38 @@ index 0000000..bcb9d76 + bool up; +}; + ++enum rwsem_waiter_type { ++ RWSEM_WAITING_FOR_WRITE = 0, ++ RWSEM_WAITING_FOR_READ = 1, ++}; ++ ++struct rwsem_waiter { ++ struct list_head list; ++ struct task_struct *task; ++ enum rwsem_waiter_type type; ++ long unsigned int timeout; ++ long unsigned int last_rowner; ++}; ++ ++enum rwsem_wake_type { ++ RWSEM_WAKE_ANY = 0, ++ RWSEM_WAKE_READERS = 1, ++ RWSEM_WAKE_READ_OWNED = 2, ++}; ++ ++enum writer_wait_state { ++ WRITER_NOT_FIRST = 0, ++ WRITER_FIRST = 1, ++ WRITER_HANDOFF = 2, ++}; ++ ++enum owner_state { ++ OWNER_NULL = 1, ++ OWNER_WRITER = 2, ++ OWNER_READER = 4, ++ OWNER_NONSPINNABLE = 8, ++}; ++ +struct optimistic_spin_node { + struct optimistic_spin_node *next; + struct optimistic_spin_node *prev; @@ -32043,28 +32184,6 @@ index 0000000..bcb9d76 + int cpu; +}; + -+enum qlock_stats { -+ qstat_pv_hash_hops = 0, -+ qstat_pv_kick_unlock = 1, -+ qstat_pv_kick_wake = 2, -+ qstat_pv_latency_kick = 3, -+ qstat_pv_latency_wake = 4, -+ qstat_pv_lock_stealing = 5, -+ qstat_pv_spurious_wakeup = 6, -+ qstat_pv_wait_again = 7, -+ qstat_pv_wait_early = 8, -+ qstat_pv_wait_head = 9, -+ qstat_pv_wait_node = 10, -+ qstat_lock_pending = 11, -+ qstat_lock_slowpath = 12, -+ qstat_lock_use_node2 = 13, -+ qstat_lock_use_node3 = 14, -+ qstat_lock_use_node4 = 15, -+ qstat_lock_no_node = 16, -+ qstat_num = 17, -+ qstat_reset_cnts = 17, -+}; -+ +struct mcs_spinlock { + struct mcs_spinlock *next; + unsigned int locked; @@ -32076,6 +32195,14 @@ index 0000000..bcb9d76 + long int reserved[2]; +}; + ++struct cna_node { ++ struct mcs_spinlock mcs; ++ u16 numa_node; ++ u16 real_numa_node; ++ u32 encoded_tail; ++ u64 start_time; ++}; ++ +enum vcpu_state { + vcpu_running = 0, + vcpu_halted = 1, @@ -32120,48 +32247,42 @@ index 0000000..bcb9d76 + RT_MUTEX_FULL_CHAINWALK = 1, +}; + -+enum rwsem_waiter_type { -+ RWSEM_WAITING_FOR_WRITE = 0, -+ RWSEM_WAITING_FOR_READ = 1, -+}; -+ -+struct rwsem_waiter { -+ struct list_head list; -+ struct task_struct *task; -+ enum rwsem_waiter_type type; -+}; -+ -+enum rwsem_wake_type { -+ RWSEM_WAKE_ANY = 0, -+ RWSEM_WAKE_READERS = 1, -+ RWSEM_WAKE_READ_OWNED = 2, -+}; -+ -+enum { -+ PM_QOS_RESERVED = 0, -+ PM_QOS_CPU_DMA_LATENCY = 1, -+ PM_QOS_NETWORK_LATENCY = 2, -+ PM_QOS_NETWORK_THROUGHPUT = 3, -+ PM_QOS_MEMORY_BANDWIDTH = 4, -+ PM_QOS_NUM_CLASSES = 5, -+}; -+ -+struct pm_qos_request { -+ struct plist_node node; -+ int pm_qos_class; -+ struct delayed_work work; -+}; -+ +enum pm_qos_req_action { + PM_QOS_ADD_REQ = 0, + PM_QOS_UPDATE_REQ = 1, + PM_QOS_REMOVE_REQ = 2, +}; + -+struct pm_qos_object { -+ struct pm_qos_constraints *constraints; -+ struct miscdevice pm_qos_power_miscdev; -+ char *name; ++typedef int suspend_state_t; ++ ++enum suspend_stat_step { ++ SUSPEND_FREEZE = 1, ++ SUSPEND_PREPARE = 2, ++ SUSPEND_SUSPEND = 3, ++ SUSPEND_SUSPEND_LATE = 4, ++ SUSPEND_SUSPEND_NOIRQ = 5, ++ SUSPEND_RESUME_NOIRQ = 6, ++ SUSPEND_RESUME_EARLY = 7, ++ SUSPEND_RESUME = 8, ++}; ++ ++struct suspend_stats { ++ int success; ++ int fail; ++ int failed_freeze; ++ int failed_prepare; ++ int failed_suspend; ++ int failed_suspend_late; ++ int failed_suspend_noirq; ++ int failed_resume; ++ int failed_resume_early; ++ int failed_resume_noirq; ++ int last_failed_dev; ++ char failed_devs[80]; ++ int last_failed_errno; ++ int errno[2]; ++ int last_failed_step; ++ enum suspend_stat_step failed_steps[2]; +}; + +enum { @@ -32196,14 +32317,15 @@ index 0000000..bcb9d76 +struct platform_s2idle_ops { + int (*begin)(); + int (*prepare)(); -+ void (*wake)(); -+ void (*sync)(); ++ int (*prepare_late)(); ++ bool (*wake)(); ++ void (*restore_early)(); + void (*restore)(); + void (*end)(); +}; + +struct platform_hibernation_ops { -+ int (*begin)(); ++ int (*begin)(pm_message_t); + void (*end)(); + int (*pre_snapshot)(); + void (*finish)(); @@ -32225,6 +32347,12 @@ index 0000000..bcb9d76 + __HIBERNATION_AFTER_LAST = 6, +}; + ++struct pbe { ++ void *address; ++ void *orig_address; ++ struct pbe *next; ++}; ++ +struct swsusp_info { + struct new_utsname uts; + u32 version_code; @@ -32755,16 +32883,35 @@ index 0000000..bcb9d76 + long unsigned int val; +} swp_entry_t; + ++enum { ++ BIO_NO_PAGE_REF = 0, ++ BIO_CLONED = 1, ++ BIO_BOUNCED = 2, ++ BIO_WORKINGSET = 3, ++ BIO_QUIET = 4, ++ BIO_CHAIN = 5, ++ BIO_REFFED = 6, ++ BIO_THROTTLED = 7, ++ BIO_TRACE_COMPLETION = 8, ++ BIO_CGROUP_ACCT = 9, ++ BIO_TRACKED = 10, ++ BIO_FLAG_LAST = 11, ++}; ++ +enum req_opf { + REQ_OP_READ = 0, + REQ_OP_WRITE = 1, + REQ_OP_FLUSH = 2, + REQ_OP_DISCARD = 3, -+ REQ_OP_ZONE_REPORT = 4, + REQ_OP_SECURE_ERASE = 5, -+ REQ_OP_ZONE_RESET = 6, + REQ_OP_WRITE_SAME = 7, + REQ_OP_WRITE_ZEROES = 9, ++ REQ_OP_ZONE_OPEN = 10, ++ REQ_OP_ZONE_CLOSE = 11, ++ REQ_OP_ZONE_FINISH = 12, ++ REQ_OP_ZONE_APPEND = 13, ++ REQ_OP_ZONE_RESET = 15, ++ REQ_OP_ZONE_RESET_ALL = 17, + REQ_OP_SCSI_IN = 32, + REQ_OP_SCSI_OUT = 33, + REQ_OP_DRV_IN = 34, @@ -32787,10 +32934,12 @@ index 0000000..bcb9d76 + __REQ_RAHEAD = 19, + __REQ_BACKGROUND = 20, + __REQ_NOWAIT = 21, -+ __REQ_NOUNMAP = 22, -+ __REQ_DRV = 23, -+ __REQ_SWAP = 24, -+ __REQ_NR_BITS = 25, ++ __REQ_CGROUP_PUNT = 22, ++ __REQ_NOUNMAP = 23, ++ __REQ_HIPRI = 24, ++ __REQ_DRV = 25, ++ __REQ_SWAP = 26, ++ __REQ_NR_BITS = 27, +}; + +struct swap_map_page { @@ -32832,6 +32981,7 @@ index 0000000..bcb9d76 + atomic_t count; + wait_queue_head_t wait; + blk_status_t error; ++ struct blk_plug plug; +}; + +struct crc_data { @@ -32888,6 +33038,7 @@ index 0000000..bcb9d76 + bool ready; + bool platform_support; + bool free_bitmaps; ++ dev_t dev; +}; + +struct compat_resume_swap_area { @@ -32896,15 +33047,15 @@ index 0000000..bcb9d76 +} __attribute__((packed)); + +struct sysrq_key_op { -+ void (*handler)(int); -+ char *help_msg; -+ char *action_msg; -+ int enable_mask; ++ void (* const handler)(int); ++ const char * const help_msg; ++ const char * const action_msg; ++ const int enable_mask; +}; + -+enum kdb_msgsrc { -+ KDB_MSGSRC_INTERNAL = 0, -+ KDB_MSGSRC_PRINTK = 1, ++struct dev_printk_info { ++ char subsystem[16]; ++ char device[48]; +}; + +struct kmsg_dumper { @@ -32929,9 +33080,75 @@ index 0000000..bcb9d76 + u32 msg; +}; + ++typedef void (*btf_trace_console)(void *, const char *, size_t); ++ ++struct printk_info { ++ u64 seq; ++ u64 ts_nsec; ++ u16 text_len; ++ u8 facility; ++ u8 flags: 5; ++ u8 level: 3; ++ u32 caller_id; ++ struct dev_printk_info dev_info; ++}; ++ ++struct printk_record { ++ struct printk_info *info; ++ char *text_buf; ++ unsigned int text_buf_size; ++}; ++ ++struct prb_data_blk_lpos { ++ long unsigned int begin; ++ long unsigned int next; ++}; ++ ++struct prb_desc { ++ atomic_long_t state_var; ++ struct prb_data_blk_lpos text_blk_lpos; ++}; ++ ++struct prb_data_ring { ++ unsigned int size_bits; ++ char *data; ++ atomic_long_t head_lpos; ++ atomic_long_t tail_lpos; ++}; ++ ++struct prb_desc_ring { ++ unsigned int count_bits; ++ struct prb_desc *descs; ++ struct printk_info *infos; ++ atomic_long_t head_id; ++ atomic_long_t tail_id; ++}; ++ ++struct printk_ringbuffer { ++ struct prb_desc_ring desc_ring; ++ struct prb_data_ring text_data_ring; ++ atomic_long_t fail; ++}; ++ ++struct prb_reserved_entry { ++ struct printk_ringbuffer *rb; ++ long unsigned int irqflags; ++ long unsigned int id; ++ unsigned int text_space; ++}; ++ ++enum desc_state { ++ desc_miss = 4294967295, ++ desc_reserved = 0, ++ desc_committed = 1, ++ desc_finalized = 2, ++ desc_reusable = 3, ++}; ++ +struct console_cmdline { + char name[16]; + int index; ++ bool user_specified; + char *options; +}; + @@ -32954,36 +33171,22 @@ index 0000000..bcb9d76 + +enum log_flags { + LOG_NEWLINE = 2, -+ LOG_PREFIX = 4, + LOG_CONT = 8, +}; + -+struct printk_log { -+ u64 ts_nsec; -+ u16 len; -+ u16 text_len; -+ u16 dict_len; -+ u8 facility; -+ u8 flags: 5; -+ u8 level: 3; -+}; -+ +struct devkmsg_user { + u64 seq; -+ u32 idx; + struct ratelimit_state rs; + struct mutex lock; + char buf[8192]; ++ struct printk_info info; ++ char text_buf[8192]; ++ struct printk_record record; +}; + -+struct cont { -+ char buf[992]; -+ size_t len; -+ struct task_struct *owner; -+ u64 ts_nsec; -+ u8 level; -+ u8 facility; -+ enum log_flags flags; ++enum kdb_msgsrc { ++ KDB_MSGSRC_INTERNAL = 0, ++ KDB_MSGSRC_PRINTK = 1, +}; + +struct printk_safe_seq_buf { @@ -32993,6 +33196,24 @@ index 0000000..bcb9d76 + unsigned char buffer[8160]; +}; + ++struct prb_data_block { ++ long unsigned int id; ++ char data[0]; ++}; ++ ++enum { ++ IRQS_AUTODETECT = 1, ++ IRQS_SPURIOUS_DISABLED = 2, ++ IRQS_POLL_INPROGRESS = 8, ++ IRQS_ONESHOT = 32, ++ IRQS_REPLAY = 64, ++ IRQS_WAITING = 128, ++ IRQS_PENDING = 512, ++ IRQS_SUSPENDED = 2048, ++ IRQS_TIMINGS = 4096, ++ IRQS_NMI = 8192, ++}; ++ +enum { + _IRQ_DEFAULT_INIT_FLAGS = 0, + _IRQ_PER_CPU = 512, @@ -33007,7 +33228,8 @@ index 0000000..bcb9d76 + _IRQ_PER_CPU_DEVID = 131072, + _IRQ_IS_POLLED = 262144, + _IRQ_DISABLE_UNLAZY = 524288, -+ _IRQF_MODIFY_MASK = 1048335, ++ _IRQ_HIDDEN = 1048576, ++ _IRQF_MODIFY_MASK = 2096911, +}; + +enum { @@ -33018,19 +33240,6 @@ index 0000000..bcb9d76 +}; + +enum { -+ IRQS_AUTODETECT = 1, -+ IRQS_SPURIOUS_DISABLED = 2, -+ IRQS_POLL_INPROGRESS = 8, -+ IRQS_ONESHOT = 32, -+ IRQS_REPLAY = 64, -+ IRQS_WAITING = 128, -+ IRQS_PENDING = 512, -+ IRQS_SUSPENDED = 2048, -+ IRQS_TIMINGS = 4096, -+ IRQS_NMI = 8192, -+}; -+ -+enum { + IRQC_IS_HARDIRQ = 0, + IRQC_IS_NESTED = 1, +}; @@ -33051,303 +33260,11 @@ index 0000000..bcb9d76 + unsigned int cnt; +}; + -+typedef u64 acpi_size; -+ -+typedef u64 acpi_io_address; -+ -+typedef u32 acpi_object_type; -+ -+union acpi_object { -+ acpi_object_type type; -+ struct { -+ acpi_object_type type; -+ u64 value; -+ } integer; -+ struct { -+ acpi_object_type type; -+ u32 length; -+ char *pointer; -+ } string; -+ struct { -+ acpi_object_type type; -+ u32 length; -+ u8 *pointer; -+ } buffer; -+ struct { -+ acpi_object_type type; -+ u32 count; -+ union acpi_object *elements; -+ } package; -+ struct { -+ acpi_object_type type; -+ acpi_object_type actual_type; -+ acpi_handle handle; -+ } reference; -+ struct { -+ acpi_object_type type; -+ u32 proc_id; -+ acpi_io_address pblk_address; -+ u32 pblk_length; -+ } processor; -+ struct { -+ acpi_object_type type; -+ u32 system_level; -+ u32 resource_order; -+ } power_resource; -+}; -+ -+struct acpi_buffer { -+ acpi_size length; -+ void *pointer; -+}; -+ -+struct acpi_hotplug_profile { -+ struct kobject kobj; -+ int (*scan_dependent)(struct acpi_device *); -+ void (*notify_online)(struct acpi_device *); -+ bool enabled: 1; -+ bool demand_offline: 1; -+}; -+ -+struct acpi_device_status { -+ u32 present: 1; -+ u32 enabled: 1; -+ u32 show_in_ui: 1; -+ u32 functional: 1; -+ u32 battery_present: 1; -+ u32 reserved: 27; -+}; -+ -+struct acpi_device_flags { -+ u32 dynamic_status: 1; -+ u32 removable: 1; -+ u32 ejectable: 1; -+ u32 power_manageable: 1; -+ u32 match_driver: 1; -+ u32 initialized: 1; -+ u32 visited: 1; -+ u32 hotplug_notify: 1; -+ u32 is_dock_station: 1; -+ u32 of_compatible_ok: 1; -+ u32 coherent_dma: 1; -+ u32 cca_seen: 1; -+ u32 enumeration_by_parent: 1; -+ u32 reserved: 19; -+}; -+ -+typedef char acpi_bus_id[8]; -+ -+struct acpi_pnp_type { -+ u32 hardware_id: 1; -+ u32 bus_address: 1; -+ u32 platform_id: 1; -+ u32 reserved: 29; -+}; -+ -+typedef long unsigned int acpi_bus_address; -+ -+typedef char acpi_device_name[40]; -+ -+typedef char acpi_device_class[20]; -+ -+struct acpi_device_pnp { -+ acpi_bus_id bus_id; -+ struct acpi_pnp_type type; -+ acpi_bus_address bus_address; -+ char *unique_id; -+ struct list_head ids; -+ acpi_device_name device_name; -+ acpi_device_class device_class; -+ union acpi_object *str_obj; -+}; -+ -+struct acpi_device_power_flags { -+ u32 explicit_get: 1; -+ u32 power_resources: 1; -+ u32 inrush_current: 1; -+ u32 power_removed: 1; -+ u32 ignore_parent: 1; -+ u32 dsw_present: 1; -+ u32 reserved: 26; -+}; -+ -+struct acpi_device_power_state { -+ struct { -+ u8 valid: 1; -+ u8 explicit_set: 1; -+ u8 reserved: 6; -+ } flags; -+ int power; -+ int latency; -+ struct list_head resources; -+}; -+ -+struct acpi_device_power { -+ int state; -+ struct acpi_device_power_flags flags; -+ struct acpi_device_power_state states[5]; -+}; -+ -+struct acpi_device_wakeup_flags { -+ u8 valid: 1; -+ u8 notifier_present: 1; -+}; -+ -+struct acpi_device_wakeup_context { -+ void (*func)(struct acpi_device_wakeup_context *); -+ struct device *dev; -+}; -+ -+struct acpi_device_wakeup { -+ acpi_handle gpe_device; -+ u64 gpe_number; -+ u64 sleep_state; -+ struct list_head resources; -+ struct acpi_device_wakeup_flags flags; -+ struct acpi_device_wakeup_context context; -+ struct wakeup_source *ws; -+ int prepare_count; -+ int enable_count; -+}; -+ -+struct acpi_device_perf_flags { -+ u8 reserved: 8; -+}; -+ -+struct acpi_device_perf_state; -+ -+struct acpi_device_perf { -+ int state; -+ struct acpi_device_perf_flags flags; -+ int state_count; -+ struct acpi_device_perf_state *states; -+}; -+ -+struct acpi_device_dir { -+ struct proc_dir_entry *entry; -+}; -+ -+struct acpi_device_data { -+ const union acpi_object *pointer; -+ const union acpi_object *properties; -+ const union acpi_object *of_compatible; -+ struct list_head subnodes; -+}; -+ -+struct acpi_scan_handler; -+ -+struct acpi_hotplug_context; -+ -+struct acpi_driver; -+ -+struct acpi_gpio_mapping; -+ -+struct acpi_device { -+ int device_type; -+ acpi_handle handle; -+ struct fwnode_handle fwnode; -+ struct acpi_device *parent; -+ struct list_head children; -+ struct list_head node; -+ struct list_head wakeup_list; -+ struct list_head del_list; -+ struct acpi_device_status status; -+ struct acpi_device_flags flags; -+ struct acpi_device_pnp pnp; -+ struct acpi_device_power power; -+ struct acpi_device_wakeup wakeup; -+ struct acpi_device_perf performance; -+ struct acpi_device_dir dir; -+ struct acpi_device_data data; -+ struct acpi_scan_handler *handler; -+ struct acpi_hotplug_context *hp; -+ struct acpi_driver *driver; -+ const struct acpi_gpio_mapping *driver_gpios; -+ void *driver_data; -+ struct device dev; -+ unsigned int physical_node_count; -+ unsigned int dep_unmet; -+ struct list_head physical_node_list; -+ struct mutex physical_node_lock; -+ void (*remove)(struct acpi_device *); -+}; -+ -+struct acpi_scan_handler { -+ const struct acpi_device_id *ids; -+ struct list_head list_node; -+ bool (*match)(const char *, const struct acpi_device_id **); -+ int (*attach)(struct acpi_device *, const struct acpi_device_id *); -+ void (*detach)(struct acpi_device *); -+ void (*bind)(struct device *); -+ void (*unbind)(struct device *); -+ struct acpi_hotplug_profile hotplug; -+}; -+ -+struct acpi_hotplug_context { -+ struct acpi_device *self; -+ int (*notify)(struct acpi_device *, u32); -+ void (*uevent)(struct acpi_device *, u32); -+ void (*fixup)(struct acpi_device *); -+}; -+ -+typedef int (*acpi_op_add)(struct acpi_device *); -+ -+typedef int (*acpi_op_remove)(struct acpi_device *); -+ -+typedef void (*acpi_op_notify)(struct acpi_device *, u32); -+ -+struct acpi_device_ops { -+ acpi_op_add add; -+ acpi_op_remove remove; -+ acpi_op_notify notify; -+}; -+ -+struct acpi_driver { -+ char name[80]; -+ char class[80]; -+ const struct acpi_device_id *ids; -+ unsigned int flags; -+ struct acpi_device_ops ops; -+ struct device_driver drv; -+ struct module *owner; -+}; -+ -+struct acpi_device_perf_state { -+ struct { -+ u8 valid: 1; -+ u8 reserved: 7; -+ } flags; -+ u8 power; -+ u8 performance; -+ int latency; -+}; -+ -+struct acpi_gpio_params; -+ -+struct acpi_gpio_mapping { -+ const char *name; -+ const struct acpi_gpio_params *data; -+ unsigned int size; -+ unsigned int quirks; -+}; -+ -+struct acpi_gpio_params { -+ unsigned int crs_entry_index; -+ unsigned int line_index; -+ bool active_low; -+}; -+ -+struct of_phandle_args { -+ struct device_node *np; -+ int args_count; -+ uint32_t args[16]; -+}; -+ +struct irqchip_fwid { + struct fwnode_handle fwnode; + unsigned int type; + char *name; -+ void *data; ++ phys_addr_t *pa; +}; + +enum { @@ -33358,8 +33275,21 @@ index 0000000..bcb9d76 +}; + +struct irq_affinity { -+ int pre_vectors; -+ int post_vectors; ++ unsigned int pre_vectors; ++ unsigned int post_vectors; ++ unsigned int nr_sets; ++ unsigned int set_size[4]; ++ void (*calc_sets)(struct irq_affinity *, unsigned int); ++ void *priv; ++ u64 kabi_reserved1; ++}; ++ ++struct node_vectors { ++ unsigned int id; ++ union { ++ unsigned int nvectors; ++ unsigned int ncpus; ++ }; +}; + +struct cpumap { @@ -33373,7 +33303,7 @@ index 0000000..bcb9d76 + long unsigned int managed_map[4]; +}; + -+struct irq_matrix___2 { ++struct irq_matrix { + unsigned int matrix_bits; + unsigned int alloc_start; + unsigned int alloc_end; @@ -33428,6 +33358,37 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_irq_matrix_cpu {}; + ++typedef void (*btf_trace_irq_matrix_online)(void *, struct irq_matrix *); ++ ++typedef void (*btf_trace_irq_matrix_offline)(void *, struct irq_matrix *); ++ ++typedef void (*btf_trace_irq_matrix_reserve)(void *, struct irq_matrix *); ++ ++typedef void (*btf_trace_irq_matrix_remove_reserved)(void *, struct irq_matrix *); ++ ++typedef void (*btf_trace_irq_matrix_assign_system)(void *, int, struct irq_matrix *); ++ ++typedef void (*btf_trace_irq_matrix_alloc_reserved)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); ++ ++typedef void (*btf_trace_irq_matrix_reserve_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); ++ ++typedef void (*btf_trace_irq_matrix_remove_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); ++ ++typedef void (*btf_trace_irq_matrix_alloc_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); ++ ++typedef void (*btf_trace_irq_matrix_assign)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); ++ ++typedef void (*btf_trace_irq_matrix_alloc)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); ++ ++typedef void (*btf_trace_irq_matrix_free)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); ++ ++typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); ++ ++struct rcu_synchronize { ++ struct callback_head head; ++ struct completion completion; ++}; ++ +struct trace_event_raw_rcu_utilization { + struct trace_entry ent; + const char *s; @@ -33436,58 +33397,72 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_rcu_utilization {}; + -+enum { -+ GP_IDLE = 0, -+ GP_PENDING = 1, -+ GP_PASSED = 2, ++typedef void (*btf_trace_rcu_utilization)(void *, const char *); ++ ++struct rcu_tasks; ++ ++typedef void (*rcu_tasks_gp_func_t)(struct rcu_tasks *); ++ ++typedef void (*pregp_func_t)(); ++ ++typedef void (*pertask_func_t)(struct task_struct *, struct list_head *); ++ ++typedef void (*postscan_func_t)(struct list_head *); ++ ++typedef void (*holdouts_func_t)(struct list_head *, bool, bool *); ++ ++typedef void (*postgp_func_t)(struct rcu_tasks *); ++ ++struct rcu_tasks { ++ struct callback_head *cbs_head; ++ struct callback_head **cbs_tail; ++ struct wait_queue_head cbs_wq; ++ raw_spinlock_t cbs_lock; ++ int gp_state; ++ int gp_sleep; ++ int init_fract; ++ long unsigned int gp_jiffies; ++ long unsigned int gp_start; ++ long unsigned int n_gps; ++ long unsigned int n_ipis; ++ long unsigned int n_ipis_fails; ++ struct task_struct *kthread_ptr; ++ rcu_tasks_gp_func_t gp_func; ++ pregp_func_t pregp_func; ++ pertask_func_t pertask_func; ++ postscan_func_t postscan_func; ++ holdouts_func_t holdouts_func; ++ postgp_func_t postgp_func; ++ call_rcu_func_t call_func; ++ char *name; ++ char *kname; +}; + +enum { -+ CB_IDLE = 0, -+ CB_PENDING = 1, -+ CB_REPLAY = 2, ++ GP_IDLE = 0, ++ GP_ENTER = 1, ++ GP_PASSED = 2, ++ GP_EXIT = 3, ++ GP_REPLAY = 4, +}; + +struct rcu_cblist { + struct callback_head *head; + struct callback_head **tail; + long int len; -+ long int len_lazy; +}; + +enum rcutorture_type { + RCU_FLAVOR = 0, -+ RCU_BH_FLAVOR = 1, -+ RCU_SCHED_FLAVOR = 2, -+ RCU_TASKS_FLAVOR = 3, -+ SRCU_FLAVOR = 4, -+ INVALID_RCU_FLAVOR = 5, ++ RCU_TASKS_FLAVOR = 1, ++ RCU_TASKS_RUDE_FLAVOR = 2, ++ RCU_TASKS_TRACING_FLAVOR = 3, ++ RCU_TRIVIAL_FLAVOR = 4, ++ SRCU_FLAVOR = 5, ++ INVALID_RCU_FLAVOR = 6, +}; + -+enum tick_device_mode { -+ TICKDEV_MODE_PERIODIC = 0, -+ TICKDEV_MODE_ONESHOT = 1, -+}; -+ -+struct tick_device___2 { -+ struct clock_event_device *evtdev; -+ enum tick_device_mode mode; -+}; -+ -+struct rcu_dynticks { -+ long int dynticks_nesting; -+ long int dynticks_nmi_nesting; -+ atomic_t dynticks; -+ bool rcu_need_heavy_qs; -+ long unsigned int rcu_qs_ctr; -+ bool rcu_urgent_qs; -+}; -+ -+struct rcu_state; -+ +struct rcu_exp_work { -+ smp_call_func_t rew_func; -+ struct rcu_state *rew_rsp; + long unsigned int rew_s; + struct work_struct rew_work; +}; @@ -33504,6 +33479,7 @@ index 0000000..bcb9d76 + long unsigned int expmask; + long unsigned int expmaskinit; + long unsigned int expmaskinitnext; ++ long unsigned int cbovldmask; + long unsigned int ffmask; + long unsigned int grpmask; + int grplo; @@ -33526,7 +33502,6 @@ index 0000000..bcb9d76 + long: 64; + long: 64; + long: 64; -+ long: 64; + raw_spinlock_t fqslock; + long: 32; + long: 64; @@ -33541,66 +33516,6 @@ index 0000000..bcb9d76 + wait_queue_head_t exp_wq[4]; + struct rcu_exp_work rew; + bool exp_need_flush; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct rcu_data; -+ -+struct rcu_state { -+ struct rcu_node node[521]; -+ struct rcu_node *level[4]; -+ struct rcu_data *rda; -+ call_rcu_func_t call; -+ int ncpus; -+ long: 32; -+ long: 64; -+ u8 boost; -+ long unsigned int gp_seq; -+ struct task_struct *gp_kthread; -+ struct swait_queue_head gp_wq; -+ short int gp_flags; -+ short int gp_state; -+ struct mutex barrier_mutex; -+ atomic_t barrier_cpu_count; -+ struct completion barrier_completion; -+ long unsigned int barrier_sequence; -+ struct mutex exp_mutex; -+ struct mutex exp_wake_mutex; -+ long unsigned int expedited_sequence; -+ atomic_t expedited_need_qs; -+ struct swait_queue_head expedited_wq; -+ int ncpus_snap; -+ long unsigned int jiffies_force_qs; -+ long unsigned int jiffies_kick_kthreads; -+ long unsigned int n_force_qs; -+ long unsigned int gp_start; -+ long unsigned int gp_activity; -+ long unsigned int gp_req_activity; -+ long unsigned int jiffies_stall; -+ long unsigned int jiffies_resched; -+ long unsigned int n_force_qs_gpstart; -+ long unsigned int gp_max; -+ const char *name; -+ char abbr; -+ struct list_head flavors; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t ofl_lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; +}; + +union rcu_noqs { @@ -33614,44 +33529,67 @@ index 0000000..bcb9d76 +struct rcu_data { + long unsigned int gp_seq; + long unsigned int gp_seq_needed; -+ long unsigned int rcu_qs_ctr_snap; + union rcu_noqs cpu_no_qs; + bool core_needs_qs; + bool beenonline; + bool gpwrap; ++ bool exp_deferred_qs; ++ bool cpu_started; + struct rcu_node *mynode; + long unsigned int grpmask; + long unsigned int ticks_this_gp; ++ struct irq_work defer_qs_iw; ++ bool defer_qs_iw_pending; ++ struct work_struct strict_work; + struct rcu_segcblist cblist; + long int qlen_last_fqs_check; ++ long unsigned int n_cbs_invoked; + long unsigned int n_force_qs_snap; + long int blimit; -+ struct rcu_dynticks *dynticks; + int dynticks_snap; -+ long unsigned int dynticks_fqs; -+ long unsigned int cond_resched_completed; ++ long int dynticks_nesting; ++ long int dynticks_nmi_nesting; ++ atomic_t dynticks; ++ bool rcu_need_heavy_qs; ++ bool rcu_urgent_qs; ++ bool rcu_forced_tick; ++ bool rcu_forced_tick_exp; + struct callback_head barrier_head; + int exp_dynticks_snap; -+ struct callback_head *nocb_head; -+ struct callback_head **nocb_tail; -+ atomic_long_t nocb_q_count; -+ atomic_long_t nocb_q_count_lazy; -+ struct callback_head *nocb_follower_head; -+ struct callback_head **nocb_follower_tail; -+ struct swait_queue_head nocb_wq; -+ struct task_struct *nocb_kthread; ++ struct swait_queue_head nocb_cb_wq; ++ struct task_struct *nocb_gp_kthread; + raw_spinlock_t nocb_lock; ++ atomic_t nocb_lock_contended; + int nocb_defer_wakeup; + struct timer_list nocb_timer; -+ struct callback_head *nocb_gp_head; -+ struct callback_head **nocb_gp_tail; -+ bool nocb_leader_sleep; -+ struct rcu_data *nocb_next_follower; ++ long unsigned int nocb_gp_adv_time; ++ raw_spinlock_t nocb_bypass_lock; ++ struct rcu_cblist nocb_bypass; ++ long unsigned int nocb_bypass_first; ++ long unsigned int nocb_nobypass_last; ++ int nocb_nobypass_count; ++ long: 32; ++ long: 64; ++ raw_spinlock_t nocb_gp_lock; ++ struct timer_list nocb_bypass_timer; ++ u8 nocb_gp_sleep; ++ u8 nocb_gp_bypass; ++ u8 nocb_gp_gp; ++ long unsigned int nocb_gp_seq; ++ long unsigned int nocb_gp_loops; ++ struct swait_queue_head nocb_gp_wq; ++ bool nocb_cb_sleep; ++ struct task_struct *nocb_cb_kthread; ++ struct rcu_data *nocb_next_cb_rdp; + long: 64; + long: 64; + long: 64; + long: 64; -+ struct rcu_data *nocb_leader; ++ long: 64; ++ struct rcu_data *nocb_gp_rdp; ++ struct task_struct *rcu_cpu_kthread_task; ++ unsigned int rcu_cpu_kthread_status; ++ char rcu_cpu_has_work; + unsigned int softirq_snap; + struct irq_work rcu_iw; + bool rcu_iw_pending; @@ -33660,17 +33598,102 @@ index 0000000..bcb9d76 + short int rcu_ofl_gp_flags; + long unsigned int rcu_onl_gp_seq; + short int rcu_onl_gp_flags; ++ long unsigned int last_fqs_resched; + int cpu; -+ struct rcu_state *rsp; ++ long: 32; ++ long: 64; ++}; ++ ++struct rcu_state { ++ struct rcu_node node[521]; ++ struct rcu_node *level[4]; ++ int ncpus; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ u8 boost; ++ long unsigned int gp_seq; ++ long unsigned int gp_max; ++ struct task_struct *gp_kthread; ++ struct swait_queue_head gp_wq; ++ short int gp_flags; ++ short int gp_state; ++ long unsigned int gp_wake_time; ++ long unsigned int gp_wake_seq; ++ struct mutex barrier_mutex; ++ atomic_t barrier_cpu_count; ++ struct completion barrier_completion; ++ long unsigned int barrier_sequence; ++ struct mutex exp_mutex; ++ struct mutex exp_wake_mutex; ++ long unsigned int expedited_sequence; ++ atomic_t expedited_need_qs; ++ struct swait_queue_head expedited_wq; ++ int ncpus_snap; ++ u8 cbovld; ++ u8 cbovldnext; ++ long unsigned int jiffies_force_qs; ++ long unsigned int jiffies_kick_kthreads; ++ long unsigned int n_force_qs; ++ long unsigned int gp_start; ++ long unsigned int gp_end; ++ long unsigned int gp_activity; ++ long unsigned int gp_req_activity; ++ long unsigned int jiffies_stall; ++ long unsigned int jiffies_resched; ++ long unsigned int n_force_qs_gpstart; ++ const char *name; ++ char abbr; ++ long: 56; ++ long: 64; ++ long: 64; ++ raw_spinlock_t ofl_lock; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + ++struct kvfree_rcu_bulk_data { ++ long unsigned int nr_records; ++ struct kvfree_rcu_bulk_data *next; ++ void *records[0]; ++}; ++ ++struct kfree_rcu_cpu; ++ ++struct kfree_rcu_cpu_work { ++ struct rcu_work rcu_work; ++ struct callback_head *head_free; ++ struct kvfree_rcu_bulk_data *bkvhead_free[2]; ++ struct kfree_rcu_cpu *krcp; ++}; ++ ++struct kfree_rcu_cpu { ++ struct callback_head *head; ++ struct kvfree_rcu_bulk_data *bkvhead[2]; ++ struct kfree_rcu_cpu_work krw_arr[2]; ++ raw_spinlock_t lock; ++ struct delayed_work monitor_work; ++ bool monitor_todo; ++ bool initialized; ++ int count; ++ struct work_struct page_cache_work; ++ atomic_t work_in_progress; ++ struct hrtimer hrtimer; ++ struct llist_head bkvcache; ++ int nr_bkv_objs; ++}; ++ +struct patch_data { + struct klp_patch *patch; + atomic_t cpu_count; ++ bool rollback; +}; + +struct klp_find_arg { @@ -33681,6 +33704,11 @@ index 0000000..bcb9d76 + long unsigned int pos; +}; + ++enum dma_sync_target { ++ SYNC_FOR_CPU = 0, ++ SYNC_FOR_DEVICE = 1, ++}; ++ +struct dma_devres { + size_t size; + void *vaddr; @@ -33688,11 +33716,6 @@ index 0000000..bcb9d76 + long unsigned int attrs; +}; + -+enum dma_sync_target { -+ SYNC_FOR_CPU = 0, -+ SYNC_FOR_DEVICE = 1, -+}; -+ +struct trace_event_raw_swiotlb_bounced { + struct trace_entry ent; + u32 __data_loc_dev_name; @@ -33707,6 +33730,1235 @@ index 0000000..bcb9d76 + u32 dev_name; +}; + ++typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t, enum swiotlb_force); ++ ++struct cma; ++ ++struct trace_event_raw_sys_enter { ++ struct trace_entry ent; ++ long int id; ++ long unsigned int args[6]; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_sys_exit { ++ struct trace_entry ent; ++ long int id; ++ long int ret; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_sys_enter {}; ++ ++struct trace_event_data_offsets_sys_exit {}; ++ ++typedef void (*btf_trace_sys_enter)(void *, struct pt_regs *, long int); ++ ++typedef void (*btf_trace_sys_exit)(void *, struct pt_regs *, long int); ++ ++struct kvm_vm_stat { ++ ulong mmu_shadow_zapped; ++ ulong mmu_pte_write; ++ ulong mmu_pde_zapped; ++ ulong mmu_flooded; ++ ulong mmu_recycled; ++ ulong mmu_cache_miss; ++ ulong mmu_unsync; ++ ulong remote_tlb_flush; ++ ulong lpages; ++ ulong nx_lpage_splits; ++ ulong max_mmu_page_hash_collisions; ++}; ++ ++typedef u64 gpa_t; ++ ++struct kvm_vcpu; ++ ++struct kvm_memory_slot; ++ ++struct kvm_page_track_notifier_node { ++ struct hlist_node node; ++ void (*track_write)(struct kvm_vcpu *, gpa_t, const u8 *, int, struct kvm_page_track_notifier_node *); ++ void (*track_flush_slot)(struct kvm *, struct kvm_memory_slot *, struct kvm_page_track_notifier_node *); ++}; ++ ++struct kvm_page_track_notifier_head { ++ struct srcu_struct track_srcu; ++ struct hlist_head track_notifier_list; ++}; ++ ++struct iommu_domain; ++ ++struct kvm_pic; ++ ++struct kvm_ioapic; ++ ++struct kvm_pit; ++ ++struct kvm_xen_hvm_config { ++ __u32 flags; ++ __u32 msr; ++ __u64 blob_addr_32; ++ __u64 blob_addr_64; ++ __u8 blob_size_32; ++ __u8 blob_size_64; ++ __u8 pad2[30]; ++}; ++ ++struct kvm_hv_syndbg { ++ struct { ++ u64 control; ++ u64 status; ++ u64 send_page; ++ u64 recv_page; ++ u64 pending_page; ++ } control; ++ u64 options; ++}; ++ ++struct hv_partition_assist_pg; ++ ++struct kvm_hv { ++ struct mutex hv_lock; ++ u64 hv_guest_os_id; ++ u64 hv_hypercall; ++ u64 hv_tsc_page; ++ u64 hv_crash_param[5]; ++ u64 hv_crash_ctl; ++ struct ms_hyperv_tsc_page tsc_ref; ++ struct idr conn_to_evt; ++ u64 hv_reenlightenment_control; ++ u64 hv_tsc_emulation_control; ++ u64 hv_tsc_emulation_status; ++ atomic_t num_mismatched_vp_indexes; ++ struct hv_partition_assist_pg *hv_pa_pg; ++ struct kvm_hv_syndbg hv_syndbg; ++}; ++ ++enum kvm_irqchip_mode { ++ KVM_IRQCHIP_NONE = 0, ++ KVM_IRQCHIP_KERNEL = 1, ++ KVM_IRQCHIP_SPLIT = 2, ++}; ++ ++struct kvm_apic_map; ++ ++struct kvm_x86_msr_filter; ++ ++struct kvm_pmu_event_filter; ++ ++struct kvm_arch { ++ long unsigned int n_used_mmu_pages; ++ long unsigned int n_requested_mmu_pages; ++ long unsigned int n_max_mmu_pages; ++ unsigned int indirect_shadow_pages; ++ u8 mmu_valid_gen; ++ struct hlist_head mmu_page_hash[4096]; ++ struct list_head active_mmu_pages; ++ struct list_head zapped_obsolete_pages; ++ struct list_head lpage_disallowed_mmu_pages; ++ struct kvm_page_track_notifier_node mmu_sp_tracker; ++ struct kvm_page_track_notifier_head track_notifier_head; ++ struct list_head assigned_dev_head; ++ struct iommu_domain *iommu_domain; ++ bool iommu_noncoherent; ++ atomic_t noncoherent_dma_count; ++ atomic_t assigned_device_count; ++ struct kvm_pic *vpic; ++ struct kvm_ioapic *vioapic; ++ struct kvm_pit *vpit; ++ atomic_t vapics_in_nmi_mode; ++ struct mutex apic_map_lock; ++ struct kvm_apic_map *apic_map; ++ atomic_t apic_map_dirty; ++ bool apic_access_page_done; ++ long unsigned int apicv_inhibit_reasons; ++ gpa_t wall_clock; ++ bool mwait_in_guest; ++ bool hlt_in_guest; ++ bool pause_in_guest; ++ bool cstate_in_guest; ++ long unsigned int irq_sources_bitmap; ++ s64 kvmclock_offset; ++ raw_spinlock_t tsc_write_lock; ++ u64 last_tsc_nsec; ++ u64 last_tsc_write; ++ u32 last_tsc_khz; ++ u64 cur_tsc_nsec; ++ u64 cur_tsc_write; ++ u64 cur_tsc_offset; ++ u64 cur_tsc_generation; ++ int nr_vcpus_matched_tsc; ++ spinlock_t pvclock_gtod_sync_lock; ++ bool use_master_clock; ++ u64 master_kernel_ns; ++ u64 master_cycle_now; ++ struct delayed_work kvmclock_update_work; ++ struct delayed_work kvmclock_sync_work; ++ struct kvm_xen_hvm_config xen_hvm_config; ++ struct hlist_head mask_notifier_list; ++ struct kvm_hv hyperv; ++ int audit_point; ++ bool backwards_tsc_observed; ++ bool boot_vcpu_runs_old_kvmclock; ++ u32 bsp_vcpu_id; ++ u64 disabled_quirks; ++ enum kvm_irqchip_mode irqchip_mode; ++ u8 nr_reserved_ioapic_pins; ++ bool disabled_lapic_found; ++ bool x2apic_format; ++ bool x2apic_broadcast_quirk_disabled; ++ bool guest_can_read_msr_platform_info; ++ bool exception_payload_enabled; ++ bool bus_lock_detection_enabled; ++ bool sgx_provisioning_allowed; ++ u32 user_space_msr_mask; ++ struct kvm_x86_msr_filter *msr_filter; ++ struct kvm_pmu_event_filter *pmu_event_filter; ++ struct task_struct *nx_lpage_recovery_thread; ++ bool tdp_mmu_enabled; ++ struct list_head tdp_mmu_roots; ++ struct list_head tdp_mmu_pages; ++}; ++ ++struct kvm_memslots; ++ ++struct kvm_io_bus; ++ ++struct kvm_coalesced_mmio_ring; ++ ++struct kvm_irq_routing_table; ++ ++struct kvm_stat_data; ++ ++struct kvm { ++ spinlock_t mmu_lock; ++ struct mutex slots_lock; ++ struct mm_struct *mm; ++ struct kvm_memslots *memslots[2]; ++ struct kvm_vcpu *vcpus[288]; ++ atomic_t online_vcpus; ++ int created_vcpus; ++ int last_boosted_vcpu; ++ struct list_head vm_list; ++ struct mutex lock; ++ struct kvm_io_bus *buses[4]; ++ struct { ++ spinlock_t lock; ++ struct list_head items; ++ struct list_head resampler_list; ++ struct mutex resampler_lock; ++ } irqfds; ++ struct list_head ioeventfds; ++ struct kvm_vm_stat stat; ++ struct kvm_arch arch; ++ refcount_t users_count; ++ struct kvm_coalesced_mmio_ring *coalesced_mmio_ring; ++ spinlock_t ring_lock; ++ struct list_head coalesced_zones; ++ struct mutex irq_lock; ++ struct kvm_irq_routing_table *irq_routing; ++ struct hlist_head irq_ack_notifier_list; ++ struct mmu_notifier mmu_notifier; ++ long unsigned int mmu_notifier_seq; ++ long int mmu_notifier_count; ++ long int tlbs_dirty; ++ struct list_head devices; ++ u64 manual_dirty_log_protect; ++ struct dentry *debugfs_dentry; ++ struct kvm_stat_data **debugfs_stat_data; ++ struct srcu_struct srcu; ++ struct srcu_struct irq_srcu; ++ pid_t userspace_pid; ++ unsigned int max_halt_poll_ns; ++}; ++ ++struct kvm_regs { ++ __u64 rax; ++ __u64 rbx; ++ __u64 rcx; ++ __u64 rdx; ++ __u64 rsi; ++ __u64 rdi; ++ __u64 rsp; ++ __u64 rbp; ++ __u64 r8; ++ __u64 r9; ++ __u64 r10; ++ __u64 r11; ++ __u64 r12; ++ __u64 r13; ++ __u64 r14; ++ __u64 r15; ++ __u64 rip; ++ __u64 rflags; ++}; ++ ++struct kvm_segment { ++ __u64 base; ++ __u32 limit; ++ __u16 selector; ++ __u8 type; ++ __u8 present; ++ __u8 dpl; ++ __u8 db; ++ __u8 s; ++ __u8 l; ++ __u8 g; ++ __u8 avl; ++ __u8 unusable; ++ __u8 padding; ++}; ++ ++struct kvm_dtable { ++ __u64 base; ++ __u16 limit; ++ __u16 padding[3]; ++}; ++ ++struct kvm_sregs { ++ struct kvm_segment cs; ++ struct kvm_segment ds; ++ struct kvm_segment es; ++ struct kvm_segment fs; ++ struct kvm_segment gs; ++ struct kvm_segment ss; ++ struct kvm_segment tr; ++ struct kvm_segment ldt; ++ struct kvm_dtable gdt; ++ struct kvm_dtable idt; ++ __u64 cr0; ++ __u64 cr2; ++ __u64 cr3; ++ __u64 cr4; ++ __u64 cr8; ++ __u64 efer; ++ __u64 apic_base; ++ __u64 interrupt_bitmap[4]; ++}; ++ ++struct kvm_cpuid_entry2 { ++ __u32 function; ++ __u32 index; ++ __u32 flags; ++ __u32 eax; ++ __u32 ebx; ++ __u32 ecx; ++ __u32 edx; ++ __u32 padding[3]; ++}; ++ ++struct kvm_debug_exit_arch { ++ __u32 exception; ++ __u32 pad; ++ __u64 pc; ++ __u64 dr6; ++ __u64 dr7; ++}; ++ ++struct kvm_vcpu_events { ++ struct { ++ __u8 injected; ++ __u8 nr; ++ __u8 has_error_code; ++ __u8 pending; ++ __u32 error_code; ++ } exception; ++ struct { ++ __u8 injected; ++ __u8 nr; ++ __u8 soft; ++ __u8 shadow; ++ } interrupt; ++ struct { ++ __u8 injected; ++ __u8 pending; ++ __u8 masked; ++ __u8 pad; ++ } nmi; ++ __u32 sipi_vector; ++ __u32 flags; ++ struct { ++ __u8 smm; ++ __u8 pending; ++ __u8 smm_inside_nmi; ++ __u8 latched_init; ++ } smi; ++ __u8 reserved[27]; ++ __u8 exception_has_payload; ++ __u64 exception_payload; ++}; ++ ++struct kvm_sync_regs { ++ struct kvm_regs regs; ++ struct kvm_sregs sregs; ++ struct kvm_vcpu_events events; ++}; ++ ++struct kvm_pmu_event_filter { ++ __u32 action; ++ __u32 nevents; ++ __u32 fixed_counter_bitmap; ++ __u32 flags; ++ __u32 pad[4]; ++ __u64 events[0]; ++}; ++ ++struct kvm_hyperv_exit { ++ __u32 type; ++ __u32 pad1; ++ union { ++ struct { ++ __u32 msr; ++ __u32 pad2; ++ __u64 control; ++ __u64 evt_page; ++ __u64 msg_page; ++ } synic; ++ struct { ++ __u64 input; ++ __u64 result; ++ __u64 params[2]; ++ } hcall; ++ struct { ++ __u32 msr; ++ __u32 pad2; ++ __u64 control; ++ __u64 status; ++ __u64 send_page; ++ __u64 recv_page; ++ __u64 pending_page; ++ } syndbg; ++ } u; ++}; ++ ++struct kvm_run { ++ __u8 request_interrupt_window; ++ __u8 immediate_exit; ++ __u8 padding1[6]; ++ __u32 exit_reason; ++ __u8 ready_for_interrupt_injection; ++ __u8 if_flag; ++ __u16 flags; ++ __u64 cr8; ++ __u64 apic_base; ++ union { ++ struct { ++ __u64 hardware_exit_reason; ++ } hw; ++ struct { ++ __u64 hardware_entry_failure_reason; ++ __u32 cpu; ++ } fail_entry; ++ struct { ++ __u32 exception; ++ __u32 error_code; ++ } ex; ++ struct { ++ __u8 direction; ++ __u8 size; ++ __u16 port; ++ __u32 count; ++ __u64 data_offset; ++ } io; ++ struct { ++ struct kvm_debug_exit_arch arch; ++ } debug; ++ struct { ++ __u64 phys_addr; ++ __u8 data[8]; ++ __u32 len; ++ __u8 is_write; ++ } mmio; ++ struct { ++ __u64 nr; ++ __u64 args[6]; ++ __u64 ret; ++ __u32 longmode; ++ __u32 pad; ++ } hypercall; ++ struct { ++ __u64 rip; ++ __u32 is_write; ++ __u32 pad; ++ } tpr_access; ++ struct { ++ __u8 icptcode; ++ __u16 ipa; ++ __u32 ipb; ++ } s390_sieic; ++ __u64 s390_reset_flags; ++ struct { ++ __u64 trans_exc_code; ++ __u32 pgm_code; ++ } s390_ucontrol; ++ struct { ++ __u32 dcrn; ++ __u32 data; ++ __u8 is_write; ++ } dcr; ++ struct { ++ __u32 suberror; ++ __u32 ndata; ++ __u64 data[16]; ++ } internal; ++ struct { ++ __u64 gprs[32]; ++ } osi; ++ struct { ++ __u64 nr; ++ __u64 ret; ++ __u64 args[9]; ++ } papr_hcall; ++ struct { ++ __u16 subchannel_id; ++ __u16 subchannel_nr; ++ __u32 io_int_parm; ++ __u32 io_int_word; ++ __u32 ipb; ++ __u8 dequeued; ++ } s390_tsch; ++ struct { ++ __u32 epr; ++ } epr; ++ struct { ++ __u32 type; ++ __u64 flags; ++ } system_event; ++ struct { ++ __u64 addr; ++ __u8 ar; ++ __u8 reserved; ++ __u8 fc; ++ __u8 sel1; ++ __u16 sel2; ++ } s390_stsi; ++ struct { ++ __u8 vector; ++ } eoi; ++ struct kvm_hyperv_exit hyperv; ++ struct { ++ __u64 esr_iss; ++ __u64 fault_ipa; ++ } arm_nisv; ++ struct { ++ __u8 error; ++ __u8 pad[7]; ++ __u32 reason; ++ __u32 index; ++ __u64 data; ++ } msr; ++ struct { ++ long unsigned int extension_id; ++ long unsigned int function_id; ++ long unsigned int args[6]; ++ long unsigned int ret[2]; ++ } riscv_sbi; ++ char padding[256]; ++ }; ++ __u64 kvm_valid_regs; ++ __u64 kvm_dirty_regs; ++ union { ++ struct kvm_sync_regs regs; ++ char padding[2048]; ++ } s; ++}; ++ ++struct kvm_coalesced_mmio { ++ __u64 phys_addr; ++ __u32 len; ++ union { ++ __u32 pad; ++ __u32 pio; ++ }; ++ __u8 data[8]; ++}; ++ ++struct kvm_coalesced_mmio_ring { ++ __u32 first; ++ __u32 last; ++ struct kvm_coalesced_mmio coalesced_mmio[0]; ++}; ++ ++typedef long unsigned int gva_t; ++ ++typedef u64 gfn_t; ++ ++typedef u64 hpa_t; ++ ++typedef u64 hfn_t; ++ ++typedef hfn_t kvm_pfn_t; ++ ++struct gfn_to_hva_cache { ++ u64 generation; ++ gpa_t gpa; ++ long unsigned int hva; ++ long unsigned int len; ++ struct kvm_memory_slot *memslot; ++}; ++ ++struct kvm_rmap_head; ++ ++struct kvm_lpage_info; ++ ++struct kvm_arch_memory_slot { ++ struct kvm_rmap_head *rmap[3]; ++ struct kvm_lpage_info *lpage_info[2]; ++ short unsigned int *gfn_track[1]; ++}; ++ ++struct kvm_memory_slot { ++ gfn_t base_gfn; ++ long unsigned int npages; ++ long unsigned int *dirty_bitmap; ++ struct kvm_arch_memory_slot arch; ++ long unsigned int userspace_addr; ++ u32 flags; ++ short int id; ++ u16 as_id; ++}; ++ ++struct gfn_to_pfn_cache { ++ u64 generation; ++ gfn_t gfn; ++ kvm_pfn_t pfn; ++ bool dirty; ++}; ++ ++struct kvm_mmu_memory_cache { ++ int nobjs; ++ gfp_t gfp_zero; ++ struct kmem_cache *kmem_cache; ++ void *objects[40]; ++}; ++ ++struct hv_partition_assist_pg { ++ u32 tlb_lock_count; ++}; ++ ++union hv_message_flags { ++ __u8 asu8; ++ struct { ++ __u8 msg_pending: 1; ++ __u8 reserved: 7; ++ }; ++}; ++ ++union hv_port_id { ++ __u32 asu32; ++ struct { ++ __u32 id: 24; ++ __u32 reserved: 8; ++ } u; ++}; ++ ++struct hv_message_header { ++ __u32 message_type; ++ __u8 payload_size; ++ union hv_message_flags message_flags; ++ __u8 reserved[2]; ++ union { ++ __u64 sender; ++ union hv_port_id port; ++ }; ++}; ++ ++struct hv_message { ++ struct hv_message_header header; ++ union { ++ __u64 payload[30]; ++ } u; ++}; ++ ++union hv_stimer_config { ++ u64 as_uint64; ++ struct { ++ u64 enable: 1; ++ u64 periodic: 1; ++ u64 lazy: 1; ++ u64 auto_enable: 1; ++ u64 apic_vector: 8; ++ u64 direct_mode: 1; ++ u64 reserved_z0: 3; ++ u64 sintx: 4; ++ u64 reserved_z1: 44; ++ }; ++}; ++ ++enum kvm_page_track_mode { ++ KVM_PAGE_TRACK_WRITE = 0, ++ KVM_PAGE_TRACK_MAX = 1, ++}; ++ ++struct kvm_vcpu_stat { ++ u64 pid; ++ u64 pf_fixed; ++ u64 pf_guest; ++ u64 tlb_flush; ++ u64 invlpg; ++ u64 exits; ++ u64 io_exits; ++ u64 mmio_exits; ++ u64 signal_exits; ++ u64 irq_window_exits; ++ u64 nmi_window_exits; ++ u64 l1d_flush; ++ u64 halt_exits; ++ u64 halt_successful_poll; ++ u64 halt_attempted_poll; ++ u64 halt_poll_invalid; ++ u64 halt_wakeup; ++ u64 request_irq_exits; ++ u64 irq_exits; ++ u64 host_state_reload; ++ u64 fpu_reload; ++ u64 insn_emulation; ++ u64 insn_emulation_fail; ++ u64 hypercalls; ++ u64 irq_injections; ++ u64 nmi_injections; ++ u64 req_event; ++ u64 halt_poll_success_ns; ++ u64 halt_poll_fail_ns; ++ u64 cr_exits; ++ u64 msr_rd_exits; ++ u64 msr_wr_exits; ++ u64 apic_wr_exits; ++ u64 ept_vio_exits; ++ u64 ept_mis_exits; ++ u64 pause_exits; ++ u64 steal; ++ u64 st_max; ++ u64 utime; ++ u64 stime; ++ u64 gtime; ++ u64 preemption_timer_exits; ++}; ++ ++struct kvm_mmio_fragment { ++ gpa_t gpa; ++ void *data; ++ unsigned int len; ++}; ++ ++struct kvm_lapic; ++ ++struct x86_exception; ++ ++struct kvm_mmu_page; ++ ++union kvm_mmu_page_role { ++ u32 word; ++ struct { ++ unsigned int level: 4; ++ unsigned int gpte_is_8_bytes: 1; ++ unsigned int quadrant: 2; ++ unsigned int direct: 1; ++ unsigned int access: 3; ++ unsigned int invalid: 1; ++ unsigned int nxe: 1; ++ unsigned int cr0_wp: 1; ++ unsigned int smep_andnot_wp: 1; ++ unsigned int smap_andnot_wp: 1; ++ unsigned int ad_disabled: 1; ++ unsigned int guest_mode: 1; ++ char: 6; ++ unsigned int smm: 8; ++ }; ++}; ++ ++union kvm_mmu_extended_role { ++ u32 word; ++ struct { ++ unsigned int valid: 1; ++ unsigned int execonly: 1; ++ unsigned int cr0_pg: 1; ++ unsigned int cr4_pae: 1; ++ unsigned int cr4_pse: 1; ++ unsigned int cr4_pke: 1; ++ unsigned int cr4_smap: 1; ++ unsigned int cr4_smep: 1; ++ unsigned int cr4_la57: 1; ++ unsigned int maxphyaddr: 6; ++ }; ++}; ++ ++union kvm_mmu_role { ++ u64 as_u64; ++ struct { ++ union kvm_mmu_page_role base; ++ union kvm_mmu_extended_role ext; ++ }; ++}; ++ ++struct kvm_mmu_root_info { ++ gpa_t pgd; ++ hpa_t hpa; ++}; ++ ++struct rsvd_bits_validate { ++ u64 rsvd_bits_mask[10]; ++ u64 bad_mt_xwr; ++}; ++ ++struct kvm_mmu { ++ long unsigned int (*get_guest_pgd)(struct kvm_vcpu *); ++ u64 (*get_pdptr)(struct kvm_vcpu *, int); ++ int (*page_fault)(struct kvm_vcpu *, gpa_t, u32, bool); ++ void (*inject_page_fault)(struct kvm_vcpu *, struct x86_exception *); ++ gpa_t (*gva_to_gpa)(struct kvm_vcpu *, gpa_t, u32, struct x86_exception *); ++ gpa_t (*translate_gpa)(struct kvm_vcpu *, gpa_t, u32, struct x86_exception *); ++ int (*sync_page)(struct kvm_vcpu *, struct kvm_mmu_page *); ++ void (*invlpg)(struct kvm_vcpu *, gva_t, hpa_t); ++ hpa_t root_hpa; ++ gpa_t root_pgd; ++ union kvm_mmu_role mmu_role; ++ u8 root_level; ++ u8 shadow_root_level; ++ u8 ept_ad; ++ bool direct_map; ++ struct kvm_mmu_root_info prev_roots[3]; ++ u8 permissions[16]; ++ u32 pkru_mask; ++ u64 *pae_root; ++ u64 *lm_root; ++ struct rsvd_bits_validate shadow_zero_check; ++ struct rsvd_bits_validate guest_rsvd_check; ++ u8 last_nonleaf_level; ++ bool nx; ++ u64 pdptrs[4]; ++}; ++ ++struct kvm_pio_request { ++ long unsigned int linear_rip; ++ long unsigned int count; ++ int in; ++ int port; ++ int size; ++}; ++ ++struct kvm_queued_exception { ++ bool pending; ++ bool injected; ++ bool has_error_code; ++ u8 nr; ++ u32 error_code; ++ long unsigned int payload; ++ bool has_payload; ++ u8 nested_apf; ++}; ++ ++struct kvm_queued_interrupt { ++ bool injected; ++ bool soft; ++ u8 nr; ++}; ++ ++struct x86_emulate_ctxt; ++ ++struct kvm_mtrr_range { ++ u64 base; ++ u64 mask; ++ struct list_head node; ++}; ++ ++struct kvm_mtrr { ++ struct kvm_mtrr_range var_ranges[8]; ++ mtrr_type fixed_ranges[88]; ++ u64 deftype; ++ struct list_head head; ++}; ++ ++enum pmc_type { ++ KVM_PMC_GP = 0, ++ KVM_PMC_FIXED = 1, ++}; ++ ++struct kvm_pmc { ++ enum pmc_type type; ++ u8 idx; ++ u64 counter; ++ u64 eventsel; ++ struct perf_event *perf_event; ++ struct kvm_vcpu *vcpu; ++ u64 current_config; ++}; ++ ++struct kvm_pmu { ++ unsigned int nr_arch_gp_counters; ++ unsigned int nr_arch_fixed_counters; ++ unsigned int available_event_types; ++ u64 fixed_ctr_ctrl; ++ u64 global_ctrl; ++ u64 global_status; ++ u64 global_ovf_ctrl; ++ u64 counter_bitmask[2]; ++ u64 global_ctrl_mask; ++ u64 global_ovf_ctrl_mask; ++ u64 reserved_bits; ++ u8 version; ++ struct kvm_pmc gp_counters[32]; ++ struct kvm_pmc fixed_counters[4]; ++ struct irq_work irq_work; ++ long unsigned int reprogram_pmi[1]; ++ long unsigned int all_valid_pmc_idx[1]; ++ long unsigned int pmc_in_use[1]; ++ bool need_cleanup; ++ u8 event_count; ++}; ++ ++struct kvm_vcpu_hv_synic { ++ u64 version; ++ u64 control; ++ u64 msg_page; ++ u64 evt_page; ++ atomic64_t sint[16]; ++ atomic_t sint_to_gsi[16]; ++ long unsigned int auto_eoi_bitmap[4]; ++ long unsigned int vec_bitmap[4]; ++ bool active; ++ bool dont_zero_synic_pages; ++}; ++ ++struct kvm_vcpu_hv_stimer { ++ struct hrtimer timer; ++ int index; ++ union hv_stimer_config config; ++ u64 count; ++ u64 exp_time; ++ struct hv_message msg; ++ bool msg_pending; ++}; ++ ++struct kvm_vcpu_hv { ++ u32 vp_index; ++ u64 hv_vapic; ++ s64 runtime_offset; ++ struct kvm_vcpu_hv_synic synic; ++ struct kvm_hyperv_exit exit; ++ struct kvm_vcpu_hv_stimer stimer[4]; ++ long unsigned int stimer_pending_bitmap[1]; ++ cpumask_t tlb_flush; ++}; ++ ++struct kvm_vcpu_arch { ++ long unsigned int regs[17]; ++ u32 regs_avail; ++ u32 regs_dirty; ++ long unsigned int cr0; ++ long unsigned int cr0_guest_owned_bits; ++ long unsigned int cr2; ++ long unsigned int cr3; ++ long unsigned int cr4; ++ long unsigned int cr4_guest_owned_bits; ++ long unsigned int cr4_guest_rsvd_bits; ++ long unsigned int cr8; ++ u32 host_pkru; ++ u32 pkru; ++ u32 hflags; ++ u64 efer; ++ u64 apic_base; ++ struct kvm_lapic *apic; ++ bool apicv_active; ++ bool load_eoi_exitmap_pending; ++ long unsigned int ioapic_handled_vectors[4]; ++ long unsigned int apic_attention; ++ int32_t apic_arb_prio; ++ int mp_state; ++ u64 ia32_misc_enable_msr; ++ u64 smbase; ++ u64 smi_count; ++ bool tpr_access_reporting; ++ bool xsaves_enabled; ++ u64 ia32_xss; ++ u64 microcode_version; ++ u64 arch_capabilities; ++ u64 perf_capabilities; ++ struct kvm_mmu *mmu; ++ struct kvm_mmu root_mmu; ++ struct kvm_mmu guest_mmu; ++ struct kvm_mmu nested_mmu; ++ struct kvm_mmu *walk_mmu; ++ struct kvm_mmu_memory_cache mmu_pte_list_desc_cache; ++ struct kvm_mmu_memory_cache mmu_shadow_page_cache; ++ struct kvm_mmu_memory_cache mmu_gfn_array_cache; ++ struct kvm_mmu_memory_cache mmu_page_header_cache; ++ struct fpu *user_fpu; ++ struct fpu *guest_fpu; ++ u64 xcr0; ++ u64 guest_supported_xcr0; ++ struct kvm_pio_request pio; ++ void *pio_data; ++ u8 event_exit_inst_len; ++ struct kvm_queued_exception exception; ++ struct kvm_queued_interrupt interrupt; ++ int halt_request; ++ int cpuid_nent; ++ struct kvm_cpuid_entry2 *cpuid_entries; ++ long unsigned int cr3_lm_rsvd_bits; ++ int maxphyaddr; ++ int max_tdp_level; ++ struct x86_emulate_ctxt *emulate_ctxt; ++ bool emulate_regs_need_sync_to_vcpu; ++ bool emulate_regs_need_sync_from_vcpu; ++ int (*complete_userspace_io)(struct kvm_vcpu *); ++ gpa_t time; ++ struct pvclock_vcpu_time_info hv_clock; ++ unsigned int hw_tsc_khz; ++ struct gfn_to_hva_cache pv_time; ++ bool pv_time_enabled; ++ bool pvclock_set_guest_stopped_request; ++ struct { ++ u8 preempted; ++ u64 msr_val; ++ u64 last_steal; ++ struct gfn_to_pfn_cache cache; ++ } st; ++ u64 l1_tsc_offset; ++ u64 tsc_offset; ++ u64 last_guest_tsc; ++ u64 last_host_tsc; ++ u64 tsc_offset_adjustment; ++ u64 this_tsc_nsec; ++ u64 this_tsc_write; ++ u64 this_tsc_generation; ++ bool tsc_catchup; ++ bool tsc_always_catchup; ++ s8 virtual_tsc_shift; ++ u32 virtual_tsc_mult; ++ u32 virtual_tsc_khz; ++ s64 ia32_tsc_adjust_msr; ++ u64 msr_ia32_power_ctl; ++ u64 tsc_scaling_ratio; ++ atomic_t nmi_queued; ++ unsigned int nmi_pending; ++ bool nmi_injected; ++ bool smi_pending; ++ struct kvm_mtrr mtrr_state; ++ u64 pat; ++ unsigned int switch_db_regs; ++ long unsigned int db[4]; ++ long unsigned int dr6; ++ long unsigned int dr7; ++ long unsigned int eff_db[4]; ++ long unsigned int guest_debug_dr7; ++ u64 msr_platform_info; ++ u64 msr_misc_features_enables; ++ u64 mcg_cap; ++ u64 mcg_status; ++ u64 mcg_ctl; ++ u64 mcg_ext_ctl; ++ u64 *mce_banks; ++ u64 mmio_gva; ++ unsigned int mmio_access; ++ gfn_t mmio_gfn; ++ u64 mmio_gen; ++ struct kvm_pmu pmu; ++ long unsigned int singlestep_rip; ++ struct kvm_vcpu_hv hyperv; ++ cpumask_var_t wbinvd_dirty_mask; ++ long unsigned int last_retry_eip; ++ long unsigned int last_retry_addr; ++ struct { ++ bool halted; ++ gfn_t gfns[64]; ++ struct gfn_to_hva_cache data; ++ u64 msr_en_val; ++ u64 msr_int_val; ++ u16 vec; ++ u32 id; ++ bool send_user_only; ++ u32 host_apf_flags; ++ long unsigned int nested_apf_token; ++ bool delivery_as_pf_vmexit; ++ bool pageready_pending; ++ } apf; ++ struct { ++ u64 length; ++ u64 status; ++ } osvw; ++ struct { ++ u64 msr_val; ++ struct gfn_to_hva_cache data; ++ } pv_eoi; ++ u64 msr_kvm_poll_control; ++ bool write_fault_to_shadow_pgtable; ++ long unsigned int exit_qualification; ++ struct { ++ bool pv_unhalted; ++ } pv; ++ int pending_ioapic_eoi; ++ int pending_external_vector; ++ bool preempted_in_kernel; ++ bool l1tf_flush_l1d; ++ unsigned int last_vmentry_cpu; ++ u64 msr_hwcr; ++ struct { ++ u32 features; ++ bool enforce; ++ } pv_cpuid; ++}; ++ ++struct kvm_vcpu { ++ struct kvm *kvm; ++ struct preempt_notifier preempt_notifier; ++ int cpu; ++ int vcpu_id; ++ int vcpu_idx; ++ int srcu_idx; ++ int mode; ++ u64 requests; ++ long unsigned int guest_debug; ++ int pre_pcpu; ++ struct list_head blocked_vcpu_list; ++ struct mutex mutex; ++ struct kvm_run *run; ++ struct rcuwait wait; ++ struct pid *pid; ++ int sigset_active; ++ sigset_t sigset; ++ struct kvm_vcpu_stat stat; ++ unsigned int halt_poll_ns; ++ bool valid_wakeup; ++ int mmio_needed; ++ int mmio_read_completed; ++ int mmio_is_write; ++ int mmio_cur_fragment; ++ int mmio_nr_fragments; ++ struct kvm_mmio_fragment mmio_fragments[2]; ++ struct { ++ u32 queued; ++ struct list_head queue; ++ struct list_head done; ++ spinlock_t lock; ++ } async_pf; ++ struct { ++ bool in_spin_loop; ++ bool dy_eligible; ++ } spin_loop; ++ bool preempted; ++ bool ready; ++ struct kvm_vcpu_arch arch; ++}; ++ ++enum kvm_reg { ++ VCPU_REGS_RAX = 0, ++ VCPU_REGS_RCX = 1, ++ VCPU_REGS_RDX = 2, ++ VCPU_REGS_RBX = 3, ++ VCPU_REGS_RSP = 4, ++ VCPU_REGS_RBP = 5, ++ VCPU_REGS_RSI = 6, ++ VCPU_REGS_RDI = 7, ++ VCPU_REGS_R8 = 8, ++ VCPU_REGS_R9 = 9, ++ VCPU_REGS_R10 = 10, ++ VCPU_REGS_R11 = 11, ++ VCPU_REGS_R12 = 12, ++ VCPU_REGS_R13 = 13, ++ VCPU_REGS_R14 = 14, ++ VCPU_REGS_R15 = 15, ++ VCPU_REGS_RIP = 16, ++ NR_VCPU_REGS = 17, ++ VCPU_EXREG_PDPTR = 17, ++ VCPU_EXREG_CR0 = 18, ++ VCPU_EXREG_CR3 = 19, ++ VCPU_EXREG_CR4 = 20, ++ VCPU_EXREG_RFLAGS = 21, ++ VCPU_EXREG_SEGMENTS = 22, ++ VCPU_EXREG_EXIT_INFO_1 = 23, ++ VCPU_EXREG_EXIT_INFO_2 = 24, ++}; ++ ++struct kvm_rmap_head { ++ long unsigned int val; ++}; ++ ++struct kvm_lpage_info { ++ int disallow_lpage; ++}; ++ ++struct kvm_apic_map { ++ struct callback_head rcu; ++ u8 mode; ++ u32 max_apic_id; ++ union { ++ struct kvm_lapic *xapic_flat_map[8]; ++ struct kvm_lapic *xapic_cluster_map[64]; ++ }; ++ struct kvm_lapic *phys_map[0]; ++}; ++ ++struct msr_bitmap_range { ++ u32 flags; ++ u32 nmsrs; ++ u32 base; ++ long unsigned int *bitmap; ++}; ++ ++struct kvm_x86_msr_filter { ++ u8 count; ++ bool default_allow: 1; ++ struct msr_bitmap_range ranges[16]; ++}; ++ ++struct kvm_io_device; ++ ++struct kvm_io_range { ++ gpa_t addr; ++ int len; ++ struct kvm_io_device *dev; ++}; ++ ++struct kvm_io_bus { ++ int dev_count; ++ int ioeventfd_count; ++ struct kvm_io_range range[0]; ++}; ++ ++enum kvm_bus { ++ KVM_MMIO_BUS = 0, ++ KVM_PIO_BUS = 1, ++ KVM_VIRTIO_CCW_NOTIFY_BUS = 2, ++ KVM_FAST_MMIO_BUS = 3, ++ KVM_NR_BUSES = 4, ++}; ++ ++struct kvm_irq_routing_table { ++ int chip[72]; ++ u32 nr_rt_entries; ++ struct hlist_head map[0]; ++}; ++ ++struct kvm_memslots { ++ u64 generation; ++ short int id_to_index[512]; ++ atomic_t lru_slot; ++ int used_slots; ++ struct kvm_memory_slot memslots[0]; ++}; ++ ++struct kvm_stats_debugfs_item; ++ ++struct kvm_stat_data { ++ struct kvm *kvm; ++ struct kvm_stats_debugfs_item *dbgfs_item; ++}; ++ ++enum kvm_stat_kind { ++ KVM_STAT_VM = 0, ++ KVM_STAT_VCPU = 1, ++ KVM_STAT_DFX = 2, ++}; ++ ++struct kvm_stats_debugfs_item { ++ const char *name; ++ int offset; ++ enum kvm_stat_kind kind; ++ int mode; ++}; ++ +enum kcmp_type { + KCMP_FILE = 0, + KCMP_VM = 1, @@ -33735,20 +34987,29 @@ index 0000000..bcb9d76 + u32 hits; +}; + -+typedef __kernel_suseconds_t suseconds_t; ++struct stacktrace_cookie { ++ long unsigned int *store; ++ unsigned int size; ++ unsigned int skip; ++ unsigned int len; ++}; + -+typedef __kernel_time_t time_t; ++typedef __kernel_long_t __kernel_suseconds_t; ++ ++typedef __kernel_long_t __kernel_old_time_t; ++ ++typedef __kernel_suseconds_t suseconds_t; + +typedef __u64 timeu64_t; + -+struct itimerspec { -+ struct timespec it_interval; -+ struct timespec it_value; ++struct __kernel_itimerspec { ++ struct __kernel_timespec it_interval; ++ struct __kernel_timespec it_value; +}; + -+struct __kernel_old_timeval { -+ __kernel_long_t tv_sec; -+ __kernel_long_t tv_usec; ++struct timezone { ++ int tz_minuteswest; ++ int tz_dsttime; +}; + +struct itimerspec64 { @@ -33756,26 +35017,65 @@ index 0000000..bcb9d76 + struct timespec64 it_value; +}; + -+struct timex { ++struct old_itimerspec32 { ++ struct old_timespec32 it_interval; ++ struct old_timespec32 it_value; ++}; ++ ++struct old_timex32 { ++ u32 modes; ++ s32 offset; ++ s32 freq; ++ s32 maxerror; ++ s32 esterror; ++ s32 status; ++ s32 constant; ++ s32 precision; ++ s32 tolerance; ++ struct old_timeval32 time; ++ s32 tick; ++ s32 ppsfreq; ++ s32 jitter; ++ s32 shift; ++ s32 stabil; ++ s32 jitcnt; ++ s32 calcnt; ++ s32 errcnt; ++ s32 stbcnt; ++ s32 tai; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct __kernel_timex_timeval { ++ __kernel_time64_t tv_sec; ++ long long int tv_usec; ++}; ++ ++struct __kernel_timex { + unsigned int modes; -+ __kernel_long_t offset; -+ __kernel_long_t freq; -+ __kernel_long_t maxerror; -+ __kernel_long_t esterror; ++ long long int offset; ++ long long int freq; ++ long long int maxerror; ++ long long int esterror; + int status; -+ __kernel_long_t constant; -+ __kernel_long_t precision; -+ __kernel_long_t tolerance; -+ struct timeval time; -+ __kernel_long_t tick; -+ __kernel_long_t ppsfreq; -+ __kernel_long_t jitter; ++ long long int constant; ++ long long int precision; ++ long long int tolerance; ++ struct __kernel_timex_timeval time; ++ long long int tick; ++ long long int ppsfreq; ++ long long int jitter; + int shift; -+ __kernel_long_t stabil; -+ __kernel_long_t jitcnt; -+ __kernel_long_t calcnt; -+ __kernel_long_t errcnt; -+ __kernel_long_t stbcnt; ++ long long int stabil; ++ long long int jitcnt; ++ long long int calcnt; ++ long long int errcnt; ++ long long int stbcnt; + int tai; + long: 32; + long: 64; @@ -33785,45 +35085,6 @@ index 0000000..bcb9d76 + long: 64; +}; + -+struct compat_itimerspec { -+ struct compat_timespec it_interval; -+ struct compat_timespec it_value; -+}; -+ -+struct compat_timex { -+ compat_uint_t modes; -+ compat_long_t offset; -+ compat_long_t freq; -+ compat_long_t maxerror; -+ compat_long_t esterror; -+ compat_int_t status; -+ compat_long_t constant; -+ compat_long_t precision; -+ compat_long_t tolerance; -+ struct compat_timeval time; -+ compat_long_t tick; -+ compat_long_t ppsfreq; -+ compat_long_t jitter; -+ compat_int_t shift; -+ compat_long_t stabil; -+ compat_long_t jitcnt; -+ compat_long_t calcnt; -+ compat_long_t errcnt; -+ compat_long_t stbcnt; -+ compat_int_t tai; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct itimerval { -+ struct timeval it_interval; -+ struct timeval it_value; -+}; -+ +struct trace_event_raw_timer_class { + struct trace_entry ent; + void *timer; @@ -33845,6 +35106,7 @@ index 0000000..bcb9d76 + void *timer; + long unsigned int now; + void *function; ++ long unsigned int baseclk; + char __data[0]; +}; + @@ -33885,9 +35147,9 @@ index 0000000..bcb9d76 + int which; + long long unsigned int expires; + long int value_sec; -+ long int value_usec; ++ long int value_nsec; + long int interval_sec; -+ long int interval_usec; ++ long int interval_nsec; + char __data[0]; +}; + @@ -33926,14 +35188,41 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_tick_stop {}; + ++typedef void (*btf_trace_timer_init)(void *, struct timer_list *); ++ ++typedef void (*btf_trace_timer_start)(void *, struct timer_list *, long unsigned int, unsigned int); ++ ++typedef void (*btf_trace_timer_expire_entry)(void *, struct timer_list *, long unsigned int); ++ ++typedef void (*btf_trace_timer_expire_exit)(void *, struct timer_list *); ++ ++typedef void (*btf_trace_timer_cancel)(void *, struct timer_list *); ++ ++typedef void (*btf_trace_hrtimer_init)(void *, struct hrtimer *, clockid_t, enum hrtimer_mode); ++ ++typedef void (*btf_trace_hrtimer_start)(void *, struct hrtimer *, enum hrtimer_mode); ++ ++typedef void (*btf_trace_hrtimer_expire_entry)(void *, struct hrtimer *, ktime_t *); ++ ++typedef void (*btf_trace_hrtimer_expire_exit)(void *, struct hrtimer *); ++ ++typedef void (*btf_trace_hrtimer_cancel)(void *, struct hrtimer *); ++ ++typedef void (*btf_trace_itimer_state)(void *, int, const struct itimerspec64 * const, long long unsigned int); ++ ++typedef void (*btf_trace_itimer_expire)(void *, int, struct pid *, long long unsigned int); ++ ++typedef void (*btf_trace_tick_stop)(void *, int, int); ++ +struct timer_base { + raw_spinlock_t lock; + struct timer_list *running_timer; + long unsigned int clk; + long unsigned int next_expiry; + unsigned int cpu; ++ bool next_expiry_recalc; + bool is_idle; -+ bool must_forward_clk; ++ bool timers_pending; + long unsigned int pending_map[9]; + struct hlist_head vectors[576]; + long: 64; @@ -33945,6 +35234,22 @@ index 0000000..bcb9d76 + struct task_struct *task; +}; + ++enum tick_device_mode { ++ TICKDEV_MODE_PERIODIC = 0, ++ TICKDEV_MODE_ONESHOT = 1, ++}; ++ ++struct tick_device { ++ struct clock_event_device *evtdev; ++ enum tick_device_mode mode; ++}; ++ ++struct ktime_timestamps { ++ u64 mono; ++ u64 boot; ++ u64 real; ++}; ++ +struct system_time_snapshot { + u64 cycles; + ktime_t real; @@ -33959,13 +35264,59 @@ index 0000000..bcb9d76 + ktime_t sys_monoraw; +}; + ++struct tk_read_base { ++ struct clocksource *clock; ++ u64 mask; ++ u64 cycle_last; ++ u32 mult; ++ u32 shift; ++ u64 xtime_nsec; ++ ktime_t base; ++ u64 base_real; ++}; ++ ++struct timekeeper { ++ struct tk_read_base tkr_mono; ++ struct tk_read_base tkr_raw; ++ u64 xtime_sec; ++ long unsigned int ktime_sec; ++ struct timespec64 wall_to_monotonic; ++ ktime_t offs_real; ++ ktime_t offs_boot; ++ ktime_t offs_tai; ++ s32 tai_offset; ++ unsigned int clock_was_set_seq; ++ u8 cs_was_changed_seq; ++ ktime_t next_leap_ktime; ++ u64 raw_sec; ++ struct timespec64 monotonic_to_boot; ++ u64 cycle_interval; ++ u64 xtime_interval; ++ s64 xtime_remainder; ++ u64 raw_interval; ++ u64 ntp_tick; ++ s64 ntp_error; ++ u32 ntp_error_shift; ++ u32 ntp_err_mult; ++ u32 skip_second_overflow; ++}; ++ ++struct audit_ntp_val { ++ long long int oldval; ++ long long int newval; ++}; ++ ++struct audit_ntp_data { ++ struct audit_ntp_val vals[6]; ++}; ++ +enum timekeeping_adv_mode { + TK_ADV_TICK = 0, + TK_ADV_FREQ = 1, +}; + +struct tk_fast { -+ seqcount_t seq; ++ seqcount_latch_t seq; + struct tk_read_base base[2]; +}; + @@ -34044,71 +35395,6 @@ index 0000000..bcb9d76 + struct rtc_time time; +}; + -+struct class_interface { -+ struct list_head node; -+ struct class *class; -+ int (*add_dev)(struct device *, struct class_interface *); -+ void (*remove_dev)(struct device *, struct class_interface *); -+}; -+ -+struct rtc_class_ops { -+ int (*ioctl)(struct device *, unsigned int, long unsigned int); -+ int (*read_time)(struct device *, struct rtc_time *); -+ int (*set_time)(struct device *, struct rtc_time *); -+ int (*read_alarm)(struct device *, struct rtc_wkalrm *); -+ int (*set_alarm)(struct device *, struct rtc_wkalrm *); -+ int (*proc)(struct device *, struct seq_file *); -+ int (*set_mmss64)(struct device *, time64_t); -+ int (*set_mmss)(struct device *, long unsigned int); -+ int (*read_callback)(struct device *, int); -+ int (*alarm_irq_enable)(struct device *, unsigned int); -+ int (*read_offset)(struct device *, long int *); -+ int (*set_offset)(struct device *, long int); -+}; -+ -+struct rtc_timer { -+ struct timerqueue_node node; -+ ktime_t period; -+ void (*func)(void *); -+ void *private_data; -+ int enabled; -+}; -+ -+struct nvmem_device; -+ -+struct rtc_device { -+ struct device dev; -+ struct module *owner; -+ int id; -+ const struct rtc_class_ops *ops; -+ struct mutex ops_lock; -+ struct cdev char_dev; -+ long unsigned int flags; -+ long unsigned int irq_data; -+ spinlock_t irq_lock; -+ wait_queue_head_t irq_queue; -+ struct fasync_struct *async_queue; -+ int irq_freq; -+ int max_user_freq; -+ struct timerqueue_head timerqueue; -+ struct rtc_timer aie_timer; -+ struct rtc_timer uie_rtctimer; -+ struct hrtimer pie_timer; -+ int pie_enabled; -+ struct work_struct irqwork; -+ int uie_unsupported; -+ long int set_offset_nsec; -+ bool registered; -+ struct nvmem_device *nvmem; -+ bool nvram_old_abi; -+ struct bin_attribute *nvram; -+ time64_t range_min; -+ timeu64_t range_max; -+ time64_t start_secs; -+ time64_t offset_secs; -+ bool set_start_time; -+}; -+ +enum alarmtimer_type { + ALARM_REALTIME = 0, + ALARM_BOOTTIME = 1, @@ -34131,22 +35417,11 @@ index 0000000..bcb9d76 + void *data; +}; + -+struct platform_driver { -+ int (*probe)(struct platform_device *); -+ int (*remove)(struct platform_device *); -+ void (*shutdown)(struct platform_device *); -+ int (*suspend)(struct platform_device *, pm_message_t); -+ int (*resume)(struct platform_device *); -+ struct device_driver driver; -+ const struct platform_device_id *id_table; -+ bool prevent_deferred_probe; -+}; -+ -+struct cpu_timer_list { -+ struct list_head entry; -+ u64 expires; -+ u64 incr; -+ struct task_struct *task; ++struct cpu_timer { ++ struct timerqueue_node node; ++ struct timerqueue_head *head; ++ struct pid *pid; ++ struct list_head elist; + int firing; +}; + @@ -34175,19 +35450,20 @@ index 0000000..bcb9d76 + struct { + struct hrtimer timer; + } real; -+ struct cpu_timer_list cpu; ++ struct cpu_timer cpu; + struct { + struct alarm alarmtimer; + } alarm; -+ struct callback_head rcu; + } it; ++ struct callback_head rcu; +}; + +struct k_clock { + int (*clock_getres)(const clockid_t, struct timespec64 *); + int (*clock_set)(const clockid_t, const struct timespec64 *); -+ int (*clock_get)(const clockid_t, struct timespec64 *); -+ int (*clock_adj)(const clockid_t, struct timex *); ++ int (*clock_get_timespec)(const clockid_t, struct timespec64 *); ++ ktime_t (*clock_get_ktime)(const clockid_t); ++ int (*clock_adj)(const clockid_t, struct __kernel_timex *); + int (*timer_create)(struct k_itimer *); + int (*nsleep)(const clockid_t, int, const struct timespec64 *); + int (*timer_set)(struct k_itimer *, int, struct itimerspec64 *, struct itimerspec64 *); @@ -34198,6 +35474,79 @@ index 0000000..bcb9d76 + ktime_t (*timer_remaining)(struct k_itimer *, ktime_t); + int (*timer_try_to_cancel)(struct k_itimer *); + void (*timer_arm)(struct k_itimer *, ktime_t, bool, bool); ++ void (*timer_wait_running)(struct k_itimer *); ++}; ++ ++struct class_interface { ++ struct list_head node; ++ struct class *class; ++ int (*add_dev)(struct device *, struct class_interface *); ++ void (*remove_dev)(struct device *, struct class_interface *); ++}; ++ ++struct rtc_class_ops { ++ int (*ioctl)(struct device *, unsigned int, long unsigned int); ++ int (*read_time)(struct device *, struct rtc_time *); ++ int (*set_time)(struct device *, struct rtc_time *); ++ int (*read_alarm)(struct device *, struct rtc_wkalrm *); ++ int (*set_alarm)(struct device *, struct rtc_wkalrm *); ++ int (*proc)(struct device *, struct seq_file *); ++ int (*alarm_irq_enable)(struct device *, unsigned int); ++ int (*read_offset)(struct device *, long int *); ++ int (*set_offset)(struct device *, long int); ++}; ++ ++struct rtc_device; ++ ++struct rtc_timer { ++ struct timerqueue_node node; ++ ktime_t period; ++ void (*func)(struct rtc_device *); ++ struct rtc_device *rtc; ++ int enabled; ++}; ++ ++struct rtc_device { ++ struct device dev; ++ struct module *owner; ++ int id; ++ const struct rtc_class_ops *ops; ++ struct mutex ops_lock; ++ struct cdev char_dev; ++ long unsigned int flags; ++ long unsigned int irq_data; ++ spinlock_t irq_lock; ++ wait_queue_head_t irq_queue; ++ struct fasync_struct *async_queue; ++ int irq_freq; ++ int max_user_freq; ++ struct timerqueue_head timerqueue; ++ struct rtc_timer aie_timer; ++ struct rtc_timer uie_rtctimer; ++ struct hrtimer pie_timer; ++ int pie_enabled; ++ struct work_struct irqwork; ++ int uie_unsupported; ++ long int set_offset_nsec; ++ bool registered; ++ bool nvram_old_abi; ++ struct bin_attribute *nvram; ++ time64_t range_min; ++ timeu64_t range_max; ++ time64_t start_secs; ++ time64_t offset_secs; ++ bool set_start_time; ++}; ++ ++struct platform_driver { ++ int (*probe)(struct platform_device *); ++ int (*remove)(struct platform_device *); ++ void (*shutdown)(struct platform_device *); ++ int (*suspend)(struct platform_device *, pm_message_t); ++ int (*resume)(struct platform_device *); ++ struct device_driver driver; ++ const struct platform_device_id *id_table; ++ bool prevent_deferred_probe; +}; + +struct trace_event_raw_alarmtimer_suspend { @@ -34220,10 +35569,19 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_alarm_class {}; + ++typedef void (*btf_trace_alarmtimer_suspend)(void *, ktime_t, int); ++ ++typedef void (*btf_trace_alarmtimer_fired)(void *, struct alarm *, ktime_t); ++ ++typedef void (*btf_trace_alarmtimer_start)(void *, struct alarm *, ktime_t); ++ ++typedef void (*btf_trace_alarmtimer_cancel)(void *, struct alarm *, ktime_t); ++ +struct alarm_base { + spinlock_t lock; + struct timerqueue_head timerqueue; -+ ktime_t (*gettime)(); ++ ktime_t (*get_ktime)(); ++ void (*get_timespec)(struct timespec64 *); + clockid_t base_clockid; +}; + @@ -34257,13 +35615,11 @@ index 0000000..bcb9d76 + } _sigev_un; +}; + -+typedef unsigned int uint; -+ +struct posix_clock; + +struct posix_clock_operations { + struct module *owner; -+ int (*clock_adjtime)(struct posix_clock *, struct timex *); ++ int (*clock_adjtime)(struct posix_clock *, struct __kernel_timex *); + int (*clock_gettime)(struct posix_clock *, struct timespec64 *); + int (*clock_getres)(struct posix_clock *, struct timespec64 *); + int (*clock_settime)(struct posix_clock *, const struct timespec64 *); @@ -34272,6 +35628,12 @@ index 0000000..bcb9d76 + __poll_t (*poll)(struct posix_clock *, struct file *, poll_table *); + int (*release)(struct posix_clock *); + ssize_t (*read)(struct posix_clock *, uint, char *, size_t); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; +}; + +struct posix_clock { @@ -34280,6 +35642,14 @@ index 0000000..bcb9d76 + struct device *dev; + struct rw_semaphore rwsem; + bool zombie; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; +}; + +struct posix_clock_desc { @@ -34287,9 +35657,14 @@ index 0000000..bcb9d76 + struct posix_clock *clk; +}; + -+struct compat_itimerval { -+ struct compat_timeval it_interval; -+ struct compat_timeval it_value; ++struct __kernel_old_itimerval { ++ struct __kernel_old_timeval it_interval; ++ struct __kernel_old_timeval it_value; ++}; ++ ++struct old_itimerval32 { ++ struct old_timeval32 it_interval; ++ struct old_timeval32 it_value; +}; + +struct ce_unbind { @@ -34297,7 +35672,10 @@ index 0000000..bcb9d76 + int res; +}; + -+typedef ktime_t pto_T_____23; ++struct proc_timens_offset { ++ int clockid; ++ struct timespec64 val; ++}; + +union futex_key { + struct { @@ -34324,7 +35702,7 @@ index 0000000..bcb9d76 + struct list_head list; + struct rt_mutex pi_mutex; + struct task_struct *owner; -+ atomic_t refcount; ++ refcount_t refcount; + union futex_key key; +}; + @@ -34360,10 +35738,7 @@ index 0000000..bcb9d76 + const char *device_id; +}; + -+enum { -+ CSD_FLAG_LOCK = 1, -+ CSD_FLAG_SYNCHRONOUS = 2, -+}; ++typedef bool (*smp_cond_func_t)(int, void *); + +struct call_function_data { + call_single_data_t *csd; @@ -34381,7 +35756,7 @@ index 0000000..bcb9d76 +}; + +struct latch_tree_root { -+ seqcount_t seq; ++ seqcount_latch_t seq; + struct rb_root tree[2]; +}; + @@ -34403,8 +35778,7 @@ index 0000000..bcb9d76 +}; + +struct module_sect_attr { -+ struct module_attribute mattr; -+ char *name; ++ struct bin_attribute battr; + long unsigned int address; +}; + @@ -34420,26 +35794,28 @@ index 0000000..bcb9d76 + struct bin_attribute attrs[0]; +}; + ++enum mod_license { ++ NOT_GPL_ONLY = 0, ++ GPL_ONLY = 1, ++ WILL_BE_GPL_ONLY = 2, ++}; ++ +struct symsearch { + const struct kernel_symbol *start; + const struct kernel_symbol *stop; + const s32 *crcs; -+ enum { -+ NOT_GPL_ONLY = 0, -+ GPL_ONLY = 1, -+ WILL_BE_GPL_ONLY = 2, -+ } licence; ++ enum mod_license license; + bool unused; +}; + +enum kernel_read_file_id { + READING_UNKNOWN = 0, + READING_FIRMWARE = 1, -+ READING_FIRMWARE_PREALLOC_BUFFER = 2, -+ READING_MODULE = 3, -+ READING_KEXEC_IMAGE = 4, -+ READING_KEXEC_INITRAMFS = 5, -+ READING_POLICY = 6, ++ READING_MODULE = 2, ++ READING_KEXEC_IMAGE = 3, ++ READING_KEXEC_INITRAMFS = 4, ++ READING_POLICY = 5, ++ READING_DIGEST_LIST = 6, + READING_X509_CERTIFICATE = 7, + READING_MAX_ID = 8, +}; @@ -34447,15 +35823,19 @@ index 0000000..bcb9d76 +enum kernel_load_data_id { + LOADING_UNKNOWN = 0, + LOADING_FIRMWARE = 1, -+ LOADING_FIRMWARE_PREALLOC_BUFFER = 2, -+ LOADING_MODULE = 3, -+ LOADING_KEXEC_IMAGE = 4, -+ LOADING_KEXEC_INITRAMFS = 5, -+ LOADING_POLICY = 6, ++ LOADING_MODULE = 2, ++ LOADING_KEXEC_IMAGE = 3, ++ LOADING_KEXEC_INITRAMFS = 4, ++ LOADING_POLICY = 5, ++ LOADING_DIGEST_LIST = 6, + LOADING_X509_CERTIFICATE = 7, + LOADING_MAX_ID = 8, +}; + ++enum { ++ PROC_ENTRY_PERMANENT = 1, ++}; ++ +struct load_info { + const char *name; + struct module *mod; @@ -34466,6 +35846,8 @@ index 0000000..bcb9d76 + char *strtab; + long unsigned int symoffs; + long unsigned int stroffs; ++ long unsigned int init_typeoffs; ++ long unsigned int core_typeoffs; + struct _ddebug *debug; + unsigned int num_debug; + bool sig_ok; @@ -34525,6 +35907,16 @@ index 0000000..bcb9d76 + u32 name; +}; + ++typedef void (*btf_trace_module_load)(void *, struct module *); ++ ++typedef void (*btf_trace_module_free)(void *, struct module *); ++ ++typedef void (*btf_trace_module_get)(void *, struct module *, long unsigned int); ++ ++typedef void (*btf_trace_module_put)(void *, struct module *, long unsigned int); ++ ++typedef void (*btf_trace_module_request)(void *, char *, bool, long unsigned int); ++ +struct mod_tree_root { + struct latch_tree_root root; + long unsigned int addr_min; @@ -34538,21 +35930,14 @@ index 0000000..bcb9d76 + struct module *owner; + const s32 *crc; + const struct kernel_symbol *sym; ++ enum mod_license license; +}; + +struct mod_initfree { -+ struct callback_head rcu; ++ struct llist_node node; + void *module_init; +}; + -+struct asymmetric_key_subtype; -+ -+enum pkey_id_type { -+ PKEY_ID_PGP = 0, -+ PKEY_ID_X509 = 1, -+ PKEY_ID_PKCS7 = 2, -+}; -+ +struct module_signature { + u8 algo; + u8 hash; @@ -34563,11 +35948,18 @@ index 0000000..bcb9d76 + __be32 sig_len; +}; + ++enum pkey_id_type { ++ PKEY_ID_PGP = 0, ++ PKEY_ID_X509 = 1, ++ PKEY_ID_PKCS7 = 2, ++}; ++ +struct kallsym_iter { + loff_t pos; + loff_t pos_arch_end; + loff_t pos_mod_end; + loff_t pos_ftrace_mod_end; ++ loff_t pos_bpf_end; + long unsigned int value; + unsigned int nameoff; + char type; @@ -34577,14 +35969,6 @@ index 0000000..bcb9d76 + int show_value; +}; + -+enum { -+ SB_UNFROZEN = 0, -+ SB_FREEZE_WRITE = 1, -+ SB_FREEZE_PAGEFAULT = 2, -+ SB_FREEZE_FS = 3, -+ SB_FREEZE_COMPLETE = 4, -+}; -+ +typedef __u16 comp_t; + +struct acct_v3 { @@ -34632,20 +36016,17 @@ index 0000000..bcb9d76 + struct completion done; +}; + -+enum compound_dtor_id { -+ NULL_COMPOUND_DTOR = 0, -+ COMPOUND_PAGE_DTOR = 1, -+ HUGETLB_PAGE_DTOR = 2, -+ TRANSHUGE_PAGE_DTOR = 3, -+ NR_COMPOUND_DTORS = 4, -+}; -+ +struct elf64_note { + Elf64_Word n_namesz; + Elf64_Word n_descsz; + Elf64_Word n_type; +}; + ++struct elf_note_section { ++ struct elf64_note n_hdr; ++ u8 n_data[0]; ++}; ++ +typedef long unsigned int elf_greg_t; + +typedef elf_greg_t elf_gregset_t[27]; @@ -34665,18 +36046,15 @@ index 0000000..bcb9d76 + pid_t pr_ppid; + pid_t pr_pgrp; + pid_t pr_sid; -+ struct timeval pr_utime; -+ struct timeval pr_stime; -+ struct timeval pr_cutime; -+ struct timeval pr_cstime; ++ struct __kernel_old_timeval pr_utime; ++ struct __kernel_old_timeval pr_stime; ++ struct __kernel_old_timeval pr_cutime; ++ struct __kernel_old_timeval pr_cstime; + elf_gregset_t pr_reg; + int pr_fpvalid; +}; + -+struct kexec_sha_region { -+ long unsigned int start; -+ long unsigned int len; -+}; ++typedef u32 note_buf_t[92]; + +struct compat_kexec_segment { + compat_uptr_t buf; @@ -34685,6 +36063,24 @@ index 0000000..bcb9d76 + compat_size_t memsz; +}; + ++struct elf64_phdr { ++ Elf64_Word p_type; ++ Elf64_Word p_flags; ++ Elf64_Off p_offset; ++ Elf64_Addr p_vaddr; ++ Elf64_Addr p_paddr; ++ Elf64_Xword p_filesz; ++ Elf64_Xword p_memsz; ++ Elf64_Xword p_align; ++}; ++ ++typedef struct elf64_phdr Elf64_Phdr; ++ ++struct kexec_sha_region { ++ long unsigned int start; ++ long unsigned int len; ++}; ++ +enum migrate_reason { + MR_COMPACTION = 0, + MR_MEMORY_FAILURE = 1, @@ -34696,21 +36092,88 @@ index 0000000..bcb9d76 + MR_TYPES = 7, +}; + -+enum kernfs_node_type { -+ KERNFS_DIR = 1, -+ KERNFS_FILE = 2, -+ KERNFS_LINK = 4, ++typedef __kernel_ulong_t __kernel_ino_t; ++ ++typedef __kernel_ino_t ino_t; ++ ++enum bpf_link_type { ++ BPF_LINK_TYPE_UNSPEC = 0, ++ BPF_LINK_TYPE_RAW_TRACEPOINT = 1, ++ BPF_LINK_TYPE_TRACING = 2, ++ BPF_LINK_TYPE_CGROUP = 3, ++ BPF_LINK_TYPE_ITER = 4, ++ BPF_LINK_TYPE_NETNS = 5, ++ BPF_LINK_TYPE_XDP = 6, ++ MAX_BPF_LINK_TYPE = 7, +}; + -+enum kernfs_root_flag { -+ KERNFS_ROOT_CREATE_DEACTIVATED = 1, -+ KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 2, -+ KERNFS_ROOT_SUPPORT_EXPORTOP = 4, ++struct bpf_link_info { ++ __u32 type; ++ __u32 id; ++ __u32 prog_id; ++ union { ++ struct { ++ __u64 tp_name; ++ __u32 tp_name_len; ++ } raw_tracepoint; ++ struct { ++ __u32 attach_type; ++ } tracing; ++ struct { ++ __u64 cgroup_id; ++ __u32 attach_type; ++ } cgroup; ++ struct { ++ __u64 target_name; ++ __u32 target_name_len; ++ union { ++ struct { ++ __u32 map_id; ++ } map; ++ }; ++ } iter; ++ struct { ++ __u32 netns_ino; ++ __u32 attach_type; ++ } netns; ++ struct { ++ __u32 ifindex; ++ } xdp; ++ }; ++}; ++ ++struct bpf_link_ops; ++ ++struct bpf_link { ++ atomic64_t refcnt; ++ u32 id; ++ enum bpf_link_type type; ++ const struct bpf_link_ops *ops; ++ struct bpf_prog *prog; ++ struct work_struct work; ++}; ++ ++struct bpf_link_ops { ++ void (*release)(struct bpf_link *); ++ void (*dealloc)(struct bpf_link *); ++ int (*detach)(struct bpf_link *); ++ int (*update_prog)(struct bpf_link *, struct bpf_prog *, struct bpf_prog *); ++ void (*show_fdinfo)(const struct bpf_link *, struct seq_file *); ++ int (*fill_link_info)(const struct bpf_link *, struct bpf_link_info *); ++}; ++ ++struct bpf_cgroup_link { ++ struct bpf_link link; ++ struct cgroup *cgroup; ++ enum bpf_attach_type type; +}; + +enum { + CGRP_NOTIFY_ON_RELEASE = 0, + CGRP_CPUSET_CLONE_CHILDREN = 1, ++ CGRP_FREEZE = 2, ++ CGRP_FROZEN = 3, ++ CGRP_KILL = 4, +}; + +enum { @@ -34718,6 +36181,8 @@ index 0000000..bcb9d76 + CGRP_ROOT_XATTR = 4, + CGRP_ROOT_NS_DELEGATE = 8, + CGRP_ROOT_CPUSET_V2_MODE = 16, ++ CGRP_ROOT_MEMORY_LOCAL_EVENTS = 32, ++ CGRP_ROOT_MEMORY_RECURSIVE_PROT = 64, +}; + +struct cgroup_taskset { @@ -34730,22 +36195,33 @@ index 0000000..bcb9d76 + struct task_struct *cur_task; +}; + -+struct css_task_iter { -+ struct cgroup_subsys *ss; ++struct cgroup_fs_context { ++ struct kernfs_fs_context kfc; ++ struct cgroup_root *root; ++ struct cgroup_namespace *ns; + unsigned int flags; -+ struct list_head *cset_pos; -+ struct list_head *cset_head; -+ struct list_head *tcset_pos; -+ struct list_head *tcset_head; -+ struct list_head *task_pos; -+ struct list_head *tasks_head; -+ struct list_head *mg_tasks_head; -+ struct list_head *dying_tasks_head; -+ struct list_head *cur_tasks_head; -+ struct css_set *cur_cset; -+ struct css_set *cur_dcset; -+ struct task_struct *cur_task; -+ struct list_head iters_node; ++ bool cpuset_clone_children; ++ bool none; ++ bool all_ss; ++ u16 subsys_mask; ++ char *name; ++ char *release_agent; ++}; ++ ++struct cgroup_pidlist; ++ ++struct cgroup_file_ctx { ++ struct cgroup_namespace *ns; ++ struct { ++ void *trigger; ++ } psi; ++ struct { ++ bool started; ++ struct css_task_iter iter; ++ } procs; ++ struct { ++ struct cgroup_pidlist *pidlist; ++ } procs1; +}; + +struct cgrp_cset_link { @@ -34762,15 +36238,6 @@ index 0000000..bcb9d76 + u16 ss_mask; +}; + -+struct cgroup_sb_opts { -+ u16 subsys_mask; -+ unsigned int flags; -+ char *release_agent; -+ bool cpuset_clone_children; -+ char *name; -+ bool none; -+}; -+ +struct trace_event_raw_cgroup_root { + struct trace_entry ent; + int root; @@ -34782,8 +36249,8 @@ index 0000000..bcb9d76 +struct trace_event_raw_cgroup { + struct trace_entry ent; + int root; -+ int id; + int level; ++ u64 id; + u32 __data_loc_path; + char __data[0]; +}; @@ -34791,14 +36258,24 @@ index 0000000..bcb9d76 +struct trace_event_raw_cgroup_migrate { + struct trace_entry ent; + int dst_root; -+ int dst_id; + int dst_level; ++ u64 dst_id; + int pid; + u32 __data_loc_dst_path; + u32 __data_loc_comm; + char __data[0]; +}; + ++struct trace_event_raw_cgroup_event { ++ struct trace_entry ent; ++ int root; ++ int level; ++ u64 id; ++ u32 __data_loc_path; ++ int val; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_cgroup_root { + u32 name; +}; @@ -34812,6 +36289,43 @@ index 0000000..bcb9d76 + u32 comm; +}; + ++struct trace_event_data_offsets_cgroup_event { ++ u32 path; ++}; ++ ++typedef void (*btf_trace_cgroup_setup_root)(void *, struct cgroup_root *); ++ ++typedef void (*btf_trace_cgroup_destroy_root)(void *, struct cgroup_root *); ++ ++typedef void (*btf_trace_cgroup_remount)(void *, struct cgroup_root *); ++ ++typedef void (*btf_trace_cgroup_mkdir)(void *, struct cgroup *, const char *); ++ ++typedef void (*btf_trace_cgroup_rmdir)(void *, struct cgroup *, const char *); ++ ++typedef void (*btf_trace_cgroup_release)(void *, struct cgroup *, const char *); ++ ++typedef void (*btf_trace_cgroup_rename)(void *, struct cgroup *, const char *); ++ ++typedef void (*btf_trace_cgroup_freeze)(void *, struct cgroup *, const char *); ++ ++typedef void (*btf_trace_cgroup_unfreeze)(void *, struct cgroup *, const char *); ++ ++typedef void (*btf_trace_cgroup_attach_task)(void *, struct cgroup *, const char *, struct task_struct *, bool); ++ ++typedef void (*btf_trace_cgroup_transfer_tasks)(void *, struct cgroup *, const char *, struct task_struct *, bool); ++ ++typedef void (*btf_trace_cgroup_notify_populated)(void *, struct cgroup *, const char *, int); ++ ++typedef void (*btf_trace_cgroup_notify_frozen)(void *, struct cgroup *, const char *, int); ++ ++enum cgroup2_param { ++ Opt_nsdelegate = 0, ++ Opt_memory_localevents = 1, ++ Opt_memory_recursiveprot = 2, ++ nr__cgroup2_params = 3, ++}; ++ +struct cgroupstats { + __u64 nr_sleeping; + __u64 nr_running; @@ -34837,6 +36351,17 @@ index 0000000..bcb9d76 + struct delayed_work destroy_dwork; +}; + ++enum cgroup1_param { ++ Opt_all = 0, ++ Opt_clone_children = 1, ++ Opt_cpuset_v2_mode = 2, ++ Opt_name = 3, ++ Opt_none = 4, ++ Opt_noprefix = 5, ++ Opt_release_agent = 6, ++ Opt_xattr = 7, ++}; ++ +enum freezer_state_flags { + CGROUP_FREEZER_ONLINE = 1, + CGROUP_FREEZING_SELF = 2, @@ -34899,6 +36424,8 @@ index 0000000..bcb9d76 + int num_max_cnt; +}; + ++struct root_domain; ++ +struct fmeter { + int cnt; + int val; @@ -34913,11 +36440,26 @@ index 0000000..bcb9d76 + nodemask_t mems_allowed; + cpumask_var_t effective_cpus; + nodemask_t effective_mems; ++ cpumask_var_t subparts_cpus; + nodemask_t old_mems_allowed; + struct fmeter fmeter; + int attach_in_progress; + int pn; + int relax_domain_level; ++ int nr_subparts_cpus; ++ int partition_root_state; ++ int use_parent_ecpus; ++ int child_ecpus_count; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct tmpmasks { ++ cpumask_var_t addmask; ++ cpumask_var_t delmask; ++ cpumask_var_t new_cpus; +}; + +typedef enum { @@ -34931,6 +36473,12 @@ index 0000000..bcb9d76 + CS_SPREAD_SLAB = 7, +} cpuset_flagbits_t; + ++enum subparts_cmd { ++ partcmd_enable = 0, ++ partcmd_disable = 1, ++ partcmd_update = 2, ++}; ++ +struct cpuset_migrate_mm_work { + struct work_struct work; + struct mm_struct *mm; @@ -34944,17 +36492,50 @@ index 0000000..bcb9d76 + FILE_MEMLIST = 2, + FILE_EFFECTIVE_CPULIST = 3, + FILE_EFFECTIVE_MEMLIST = 4, -+ FILE_CPU_EXCLUSIVE = 5, -+ FILE_MEM_EXCLUSIVE = 6, -+ FILE_MEM_HARDWALL = 7, -+ FILE_SCHED_LOAD_BALANCE = 8, -+ FILE_SCHED_RELAX_DOMAIN_LEVEL = 9, -+ FILE_MEMORY_PRESSURE_ENABLED = 10, -+ FILE_MEMORY_PRESSURE = 11, -+ FILE_SPREAD_PAGE = 12, -+ FILE_SPREAD_SLAB = 13, ++ FILE_SUBPARTS_CPULIST = 5, ++ FILE_CPU_EXCLUSIVE = 6, ++ FILE_MEM_EXCLUSIVE = 7, ++ FILE_MEM_HARDWALL = 8, ++ FILE_SCHED_LOAD_BALANCE = 9, ++ FILE_PARTITION_ROOT = 10, ++ FILE_SCHED_RELAX_DOMAIN_LEVEL = 11, ++ FILE_MEMORY_PRESSURE_ENABLED = 12, ++ FILE_MEMORY_PRESSURE = 13, ++ FILE_SPREAD_PAGE = 14, ++ FILE_SPREAD_SLAB = 15, +} cpuset_filetype_t; + ++struct kernel_pkey_query { ++ __u32 supported_ops; ++ __u32 key_size; ++ __u16 max_data_size; ++ __u16 max_sig_size; ++ __u16 max_enc_size; ++ __u16 max_dec_size; ++}; ++ ++enum kernel_pkey_operation { ++ kernel_pkey_encrypt = 0, ++ kernel_pkey_decrypt = 1, ++ kernel_pkey_sign = 2, ++ kernel_pkey_verify = 3, ++}; ++ ++struct kernel_pkey_params { ++ struct key *key; ++ const char *encoding; ++ const char *hash_algo; ++ char *info; ++ __u32 in_len; ++ union { ++ __u32 out_len; ++ __u32 in2_len; ++ }; ++ enum kernel_pkey_operation op: 8; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ +struct key_preparsed_payload { + char *description; + union key_payload payload; @@ -34969,6 +36550,7 @@ index 0000000..bcb9d76 + const void *raw_data; + void *preparsed; + unsigned int lookup_type; ++ u64 kabi_reserved1; +}; + +struct idmap_key { @@ -35008,10 +36590,174 @@ index 0000000..bcb9d76 + atomic_t thread_ack; +}; + -+struct cpu_vfs_cap_data { -+ __u32 magic_etc; ++typedef int __kernel_mqd_t; ++ ++typedef __kernel_mqd_t mqd_t; ++ ++enum audit_state { ++ AUDIT_DISABLED = 0, ++ AUDIT_BUILD_CONTEXT = 1, ++ AUDIT_RECORD_CONTEXT = 2, ++}; ++ ++struct audit_cap_data { + kernel_cap_t permitted; + kernel_cap_t inheritable; ++ union { ++ unsigned int fE; ++ kernel_cap_t effective; ++ }; ++ kernel_cap_t ambient; ++ kuid_t rootid; ++}; ++ ++struct audit_names { ++ struct list_head list; ++ struct filename *name; ++ int name_len; ++ bool hidden; ++ long unsigned int ino; ++ dev_t dev; ++ umode_t mode; ++ kuid_t uid; ++ kgid_t gid; ++ dev_t rdev; ++ u32 osid; ++ struct audit_cap_data fcap; ++ unsigned int fcap_ver; ++ unsigned char type; ++ bool should_free; ++}; ++ ++struct mq_attr { ++ __kernel_long_t mq_flags; ++ __kernel_long_t mq_maxmsg; ++ __kernel_long_t mq_msgsize; ++ __kernel_long_t mq_curmsgs; ++ __kernel_long_t __reserved[4]; ++}; ++ ++struct audit_proctitle { ++ int len; ++ char *value; ++}; ++ ++struct audit_aux_data; ++ ++struct __kernel_sockaddr_storage; ++ ++struct audit_tree_refs; ++ ++struct audit_context { ++ int dummy; ++ int in_syscall; ++ enum audit_state state; ++ enum audit_state current_state; ++ unsigned int serial; ++ int major; ++ struct timespec64 ctime; ++ long unsigned int argv[4]; ++ long int return_code; ++ u64 prio; ++ int return_valid; ++ struct audit_names preallocated_names[5]; ++ int name_count; ++ struct list_head names_list; ++ char *filterkey; ++ struct path pwd; ++ struct audit_aux_data *aux; ++ struct audit_aux_data *aux_pids; ++ struct __kernel_sockaddr_storage *sockaddr; ++ size_t sockaddr_len; ++ pid_t pid; ++ pid_t ppid; ++ kuid_t uid; ++ kuid_t euid; ++ kuid_t suid; ++ kuid_t fsuid; ++ kgid_t gid; ++ kgid_t egid; ++ kgid_t sgid; ++ kgid_t fsgid; ++ long unsigned int personality; ++ int arch; ++ pid_t target_pid; ++ kuid_t target_auid; ++ kuid_t target_uid; ++ unsigned int target_sessionid; ++ u32 target_sid; ++ char target_comm[16]; ++ struct audit_tree_refs *trees; ++ struct audit_tree_refs *first_trees; ++ struct list_head killed_trees; ++ int tree_count; ++ int type; ++ union { ++ struct { ++ int nargs; ++ long int args[6]; ++ } socketcall; ++ struct { ++ kuid_t uid; ++ kgid_t gid; ++ umode_t mode; ++ u32 osid; ++ int has_perm; ++ uid_t perm_uid; ++ gid_t perm_gid; ++ umode_t perm_mode; ++ long unsigned int qbytes; ++ } ipc; ++ struct { ++ mqd_t mqdes; ++ struct mq_attr mqstat; ++ } mq_getsetattr; ++ struct { ++ mqd_t mqdes; ++ int sigev_signo; ++ } mq_notify; ++ struct { ++ mqd_t mqdes; ++ size_t msg_len; ++ unsigned int msg_prio; ++ struct timespec64 abs_timeout; ++ } mq_sendrecv; ++ struct { ++ int oflag; ++ umode_t mode; ++ struct mq_attr attr; ++ } mq_open; ++ struct { ++ pid_t pid; ++ struct audit_cap_data cap; ++ } capset; ++ struct { ++ int fd; ++ int flags; ++ } mmap; ++ struct { ++ int argc; ++ } execve; ++ struct { ++ char *name; ++ } module; ++ struct { ++ struct audit_ntp_data ntp_data; ++ struct timespec64 tk_injoffset; ++ } time; ++ }; ++ int fds[2]; ++ struct audit_proctitle proctitle; ++}; ++ ++struct __kernel_sockaddr_storage { ++ union { ++ struct { ++ __kernel_sa_family_t ss_family; ++ char __data[126]; ++ }; ++ void *__align; ++ }; +}; + +enum audit_nlgrps { @@ -35034,6 +36780,7 @@ index 0000000..bcb9d76 + __u32 feature_bitmap; + }; + __u32 backlog_wait_time; ++ __u32 backlog_wait_time_actual; +}; + +struct audit_features { @@ -35054,16 +36801,6 @@ index 0000000..bcb9d76 + char ctx[0]; +}; + -+struct net_generic { -+ union { -+ struct { -+ unsigned int len; -+ struct callback_head rcu; -+ } s; -+ void *ptr[0]; -+ }; -+}; -+ +struct scm_creds { + u32 pid; + kuid_t uid; @@ -35090,6 +36827,26 @@ index 0000000..bcb9d76 + bool (*compare)(struct net *, struct sock *); +}; + ++struct net_generic { ++ union { ++ struct { ++ unsigned int len; ++ struct callback_head rcu; ++ } s; ++ void *ptr[0]; ++ }; ++}; ++ ++struct pernet_operations { ++ struct list_head list; ++ int (*init)(struct net *); ++ void (*pre_exit)(struct net *); ++ void (*exit)(struct net *); ++ void (*exit_batch)(struct list_head *); ++ unsigned int *id; ++ size_t size; ++}; ++ +struct audit_netlink_list { + __u32 portid; + struct net *net; @@ -35196,12 +36953,19 @@ index 0000000..bcb9d76 + struct audit_krule rule; +}; + -+struct audit_buffer___2; ++struct audit_buffer; + +typedef int __kernel_key_t; + +typedef __kernel_key_t key_t; + ++struct cpu_vfs_cap_data { ++ __u32 magic_etc; ++ kernel_cap_t permitted; ++ kernel_cap_t inheritable; ++ kuid_t rootid; ++}; ++ +struct kern_ipc_perm { + spinlock_t lock; + bool deleted; @@ -35229,7 +36993,9 @@ index 0000000..bcb9d76 + +struct fsnotify_mark_connector { + spinlock_t lock; -+ unsigned int type; ++ short unsigned int type; ++ short unsigned int flags; ++ __kernel_fsid_t fsid; + union { + fsnotify_connp_t *obj; + struct fsnotify_mark_connector *destroy_next; @@ -35237,11 +37003,36 @@ index 0000000..bcb9d76 + struct hlist_head list; +}; + ++enum audit_nfcfgop { ++ AUDIT_XT_OP_REGISTER = 0, ++ AUDIT_XT_OP_REPLACE = 1, ++ AUDIT_XT_OP_UNREGISTER = 2, ++ AUDIT_NFT_OP_TABLE_REGISTER = 3, ++ AUDIT_NFT_OP_TABLE_UNREGISTER = 4, ++ AUDIT_NFT_OP_CHAIN_REGISTER = 5, ++ AUDIT_NFT_OP_CHAIN_UNREGISTER = 6, ++ AUDIT_NFT_OP_RULE_REGISTER = 7, ++ AUDIT_NFT_OP_RULE_UNREGISTER = 8, ++ AUDIT_NFT_OP_SET_REGISTER = 9, ++ AUDIT_NFT_OP_SET_UNREGISTER = 10, ++ AUDIT_NFT_OP_SETELEM_REGISTER = 11, ++ AUDIT_NFT_OP_SETELEM_UNREGISTER = 12, ++ AUDIT_NFT_OP_GEN_REGISTER = 13, ++ AUDIT_NFT_OP_OBJ_REGISTER = 14, ++ AUDIT_NFT_OP_OBJ_UNREGISTER = 15, ++ AUDIT_NFT_OP_OBJ_RESET = 16, ++ AUDIT_NFT_OP_FLOWTABLE_REGISTER = 17, ++ AUDIT_NFT_OP_FLOWTABLE_UNREGISTER = 18, ++ AUDIT_NFT_OP_INVALID = 19, ++}; ++ +enum fsnotify_obj_type { + FSNOTIFY_OBJ_TYPE_INODE = 0, -+ FSNOTIFY_OBJ_TYPE_VFSMOUNT = 1, -+ FSNOTIFY_OBJ_TYPE_COUNT = 2, -+ FSNOTIFY_OBJ_TYPE_DETACHED = 2, ++ FSNOTIFY_OBJ_TYPE_PARENT = 1, ++ FSNOTIFY_OBJ_TYPE_VFSMOUNT = 2, ++ FSNOTIFY_OBJ_TYPE_SB = 3, ++ FSNOTIFY_OBJ_TYPE_COUNT = 4, ++ FSNOTIFY_OBJ_TYPE_DETACHED = 4, +}; + +struct audit_aux_data { @@ -35275,6 +37066,11 @@ index 0000000..bcb9d76 + struct audit_cap_data new_pcap; +}; + ++struct audit_nfcfgop_tab { ++ enum audit_nfcfgop op; ++ const char *s; ++}; ++ +struct audit_parent; + +struct audit_watch { @@ -35296,11 +37092,13 @@ index 0000000..bcb9d76 +struct fsnotify_event; + +struct fsnotify_ops { -+ int (*handle_event)(struct fsnotify_group *, struct inode *, u32, const void *, int, const unsigned char *, u32, struct fsnotify_iter_info *); ++ int (*handle_event)(struct fsnotify_group *, u32, const void *, int, struct inode *, const struct qstr *, u32, struct fsnotify_iter_info *); ++ int (*handle_inode_event)(struct fsnotify_mark *, u32, struct inode *, struct inode *, const struct qstr *, u32); + void (*free_group_priv)(struct fsnotify_group *); + void (*freeing_mark)(struct fsnotify_mark *, struct fsnotify_group *); + void (*free_event)(struct fsnotify_event *); + void (*free_mark)(struct fsnotify_mark *); ++ u64 kabi_reserved1; +}; + +struct inotify_group_private_data { @@ -35312,10 +37110,10 @@ index 0000000..bcb9d76 +struct fanotify_group_private_data { + struct list_head access_list; + wait_queue_head_t access_waitq; ++ int flags; + int f_flags; + unsigned int max_marks; + struct user_struct *user; -+ bool audit; +}; + +struct fsnotify_group { @@ -35343,7 +37141,7 @@ index 0000000..bcb9d76 +}; + +struct fsnotify_iter_info { -+ struct fsnotify_mark *marks[2]; ++ struct fsnotify_mark *marks[4]; + unsigned int report_mask; + int srcu_idx; +}; @@ -35362,8 +37160,7 @@ index 0000000..bcb9d76 + +struct fsnotify_event { + struct list_head list; -+ struct inode *inode; -+ u32 mask; ++ long unsigned int objectid; +}; + +struct audit_parent { @@ -35379,12 +37176,12 @@ index 0000000..bcb9d76 + struct audit_krule *rule; +}; + -+struct audit_chunk___2; ++struct audit_chunk; + +struct audit_tree { + refcount_t count; + int goner; -+ struct audit_chunk___2 *root; ++ struct audit_chunk *root; + struct list_head chunks; + struct list_head rules; + struct list_head list; @@ -35393,22 +37190,26 @@ index 0000000..bcb9d76 + char pathname[0]; +}; + -+struct node___2 { ++struct node { + struct list_head list; + struct audit_tree *owner; + unsigned int index; +}; + -+struct audit_chunk___2 { ++struct audit_chunk { + struct list_head hash; + long unsigned int key; -+ struct fsnotify_mark mark; ++ struct fsnotify_mark *mark; + struct list_head trees; -+ int dead; + int count; + atomic_long_t refs; + struct callback_head head; -+ struct node___2 owners[0]; ++ struct node owners[0]; ++}; ++ ++struct audit_tree_mark { ++ struct fsnotify_mark mark; ++ struct audit_chunk *chunk; +}; + +enum { @@ -35421,6 +37222,13 @@ index 0000000..bcb9d76 + long unsigned int end_addr; +}; + ++enum perf_record_ksymbol_type { ++ PERF_RECORD_KSYMBOL_TYPE_UNKNOWN = 0, ++ PERF_RECORD_KSYMBOL_TYPE_BPF = 1, ++ PERF_RECORD_KSYMBOL_TYPE_OOL = 2, ++ PERF_RECORD_KSYMBOL_TYPE_MAX = 3, ++}; ++ +struct kprobe_insn_page { + struct list_head list; + kprobe_opcode_t *insns; @@ -35436,6 +37244,18 @@ index 0000000..bcb9d76 + SLOT_USED = 2, +}; + ++struct kgdb_io { ++ const char *name; ++ int (*read_char)(); ++ void (*write_char)(u8); ++ void (*flush)(); ++ int (*init)(); ++ void (*deinit)(); ++ void (*pre_exception)(); ++ void (*post_exception)(); ++ struct console *cons; ++}; ++ +enum { + KDB_NOT_INITIALIZED = 0, + KDB_INIT_EARLY = 1, @@ -35462,20 +37282,10 @@ index 0000000..bcb9d76 + int ret_state; + int irq_depth; + int enter_kgdb; ++ bool rounding_up; +}; + -+struct _kdb_bp { -+ long unsigned int bp_addr; -+ unsigned int bp_free: 1; -+ unsigned int bp_enabled: 1; -+ unsigned int bp_type: 4; -+ unsigned int bp_installed: 1; -+ unsigned int bp_delay: 1; -+ unsigned int bp_delayed: 1; -+ unsigned int bph_length; -+}; -+ -+typedef struct _kdb_bp kdb_bp_t; ++typedef int (*get_char_func)(); + +typedef enum { + KDB_ENABLE_ALL = 1, @@ -35501,7 +37311,7 @@ index 0000000..bcb9d76 + KDB_ENABLE_ALWAYS_SAFE_NO_ARGS = 524288, + KDB_ENABLE_MASK_NO_ARGS = 1047552, + KDB_REPEAT_NO_ARGS = 1073741824, -+ KDB_REPEAT_WITH_ARGS = -2147483648, ++ KDB_REPEAT_WITH_ARGS = 2147483648, +} kdb_cmdflags_t; + +typedef int (*kdb_func_t)(int, const char **); @@ -35562,7 +37372,7 @@ index 0000000..bcb9d76 + +struct defcmd_set { + int count; -+ int usable; ++ bool usable; + char *name; + char *usage; + char *help; @@ -35575,15 +37385,81 @@ index 0000000..bcb9d76 + void *caller; +}; + ++struct _kdb_bp { ++ long unsigned int bp_addr; ++ unsigned int bp_free: 1; ++ unsigned int bp_enabled: 1; ++ unsigned int bp_type: 4; ++ unsigned int bp_installed: 1; ++ unsigned int bp_delay: 1; ++ unsigned int bp_delayed: 1; ++ unsigned int bph_length; ++}; ++ ++typedef struct _kdb_bp kdb_bp_t; ++ +typedef short unsigned int u_short; + -+typedef struct perf_event *pto_T_____24; ++struct watchdog_operations { ++ void (*watchdog_nmi_stop)(); ++ void (*watchdog_nmi_start)(); ++ int (*watchdog_nmi_probe)(); ++ int (*watchdog_nmi_enable)(unsigned int); ++ void (*watchdog_nmi_disable)(unsigned int); ++}; ++ ++struct seccomp_data { ++ int nr; ++ __u32 arch; ++ __u64 instruction_pointer; ++ __u64 args[6]; ++}; ++ ++struct seccomp_notif_sizes { ++ __u16 seccomp_notif; ++ __u16 seccomp_notif_resp; ++ __u16 seccomp_data; ++}; ++ ++struct seccomp_notif { ++ __u64 id; ++ __u32 pid; ++ __u32 flags; ++ struct seccomp_data data; ++}; ++ ++struct seccomp_notif_resp { ++ __u64 id; ++ __s64 val; ++ __s32 error; ++ __u32 flags; ++}; ++ ++struct seccomp_notif_addfd { ++ __u64 id; ++ __u32 flags; ++ __u32 srcfd; ++ __u32 newfd; ++ __u32 newfd_flags; ++}; ++ ++struct action_cache { ++ long unsigned int allow_native[8]; ++ long unsigned int allow_compat[8]; ++}; ++ ++struct notification; + +struct seccomp_filter { -+ refcount_t usage; ++ refcount_t refs; ++ refcount_t users; + bool log; ++ struct action_cache cache; + struct seccomp_filter *prev; + struct bpf_prog *prog; ++ struct notification *notif; ++ struct mutex notify_lock; ++ wait_queue_head_t wqh; +}; + +struct seccomp_metadata { @@ -35601,6 +37477,40 @@ index 0000000..bcb9d76 + compat_uptr_t filter; +}; + ++enum notify_state { ++ SECCOMP_NOTIFY_INIT = 0, ++ SECCOMP_NOTIFY_SENT = 1, ++ SECCOMP_NOTIFY_REPLIED = 2, ++}; ++ ++struct seccomp_knotif { ++ struct task_struct *task; ++ u64 id; ++ const struct seccomp_data *data; ++ enum notify_state state; ++ int error; ++ long int val; ++ u32 flags; ++ struct completion ready; ++ struct list_head list; ++ struct list_head addfd; ++}; ++ ++struct seccomp_kaddfd { ++ struct file *file; ++ int fd; ++ unsigned int flags; ++ int ret; ++ struct completion completion; ++ struct list_head list; ++}; ++ ++struct notification { ++ struct semaphore request; ++ u64 next_id; ++ struct list_head notifications; ++}; ++ +struct seccomp_log_name { + u32 log; + const char *name; @@ -35735,7 +37645,7 @@ index 0000000..bcb9d76 + NLA_FLAG = 6, + NLA_MSECS = 7, + NLA_NESTED = 8, -+ NLA_NESTED_COMPAT = 9, ++ NLA_NESTED_ARRAY = 9, + NLA_NUL_STRING = 10, + NLA_BINARY = 11, + NLA_S8 = 12, @@ -35743,7 +37653,8 @@ index 0000000..bcb9d76 + NLA_S32 = 14, + NLA_S64 = 15, + NLA_BITFIELD32 = 16, -+ __NLA_TYPE_MAX = 17, ++ NLA_REJECT = 17, ++ __NLA_TYPE_MAX = 18, +}; + +struct genl_multicast_group { @@ -35754,51 +37665,45 @@ index 0000000..bcb9d76 + +struct genl_info; + ++struct genl_small_ops; ++ +struct genl_family { + int id; + unsigned int hdrsize; + char name[16]; + unsigned int version; + unsigned int maxattr; -+ bool netnsok; -+ bool parallel_ops; ++ unsigned int mcgrp_offset; ++ u8 netnsok: 1; ++ u8 parallel_ops: 1; ++ u8 n_ops; ++ u8 n_small_ops; ++ u8 n_mcgrps; ++ const struct nla_policy *policy; + int (*pre_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); + void (*post_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); -+ int (*mcast_bind)(struct net *, int); -+ void (*mcast_unbind)(struct net *, int); -+ struct nlattr **attrbuf; + const struct genl_ops *ops; ++ const struct genl_small_ops *small_ops; + const struct genl_multicast_group *mcgrps; -+ unsigned int n_ops; -+ unsigned int n_mcgrps; -+ unsigned int mcgrp_offset; + struct module *module; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; ++ u64 kabi_reserved1; +}; + +struct genl_ops { -+ const struct nla_policy *policy; + int (*doit)(struct sk_buff *, struct genl_info *); + int (*start)(struct netlink_callback *); + int (*dumpit)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); ++ const struct nla_policy *policy; ++ unsigned int maxattr; + u8 cmd; + u8 internal_flags; + u8 flags; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; ++ u8 validate; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct genl_info { @@ -35811,6 +37716,22 @@ index 0000000..bcb9d76 + possible_net_t _net; + void *user_ptr[2]; + struct netlink_ext_ack *extack; ++ u64 kabi_reserved1; ++}; ++ ++struct genl_small_ops { ++ int (*doit)(struct sk_buff *, struct genl_info *); ++ int (*dumpit)(struct sk_buff *, struct netlink_callback *); ++ u8 cmd; ++ u8 internal_flags; ++ u8 flags; ++ u8 validate; ++}; ++ ++enum genl_validate_flags { ++ GENL_DONT_VALIDATE_STRICT = 1, ++ GENL_DONT_VALIDATE_DUMP = 2, ++ GENL_DONT_VALIDATE_DUMP_STRICT = 4, +}; + +struct listener { @@ -35835,6 +37756,25 @@ index 0000000..bcb9d76 + struct module *mod; +}; + ++enum tp_func_state { ++ TP_FUNC_0 = 0, ++ TP_FUNC_1 = 1, ++ TP_FUNC_2 = 2, ++ TP_FUNC_N = 3, ++}; ++ ++enum tp_transition_sync { ++ TP_TRANSITION_SYNC_1_0_1 = 0, ++ TP_TRANSITION_SYNC_N_2_1 = 1, ++ _NR_TP_TRANSITION_SYNC = 2, ++}; ++ ++struct tp_transition_snapshot { ++ long unsigned int rcu; ++ long unsigned int srcu; ++ bool ongoing; ++}; ++ +struct tp_probes { + struct callback_head rcu; + struct tracepoint_func probes[0]; @@ -35848,12 +37788,27 @@ index 0000000..bcb9d76 + struct callback_head rcu; +}; + ++struct ftrace_func_entry { ++ struct hlist_node hlist; ++ long unsigned int ip; ++ long unsigned int direct; ++}; ++ ++enum ftrace_bug_type { ++ FTRACE_BUG_UNKNOWN = 0, ++ FTRACE_BUG_INIT = 1, ++ FTRACE_BUG_NOP = 2, ++ FTRACE_BUG_CALL = 3, ++ FTRACE_BUG_UPDATE = 4, ++}; ++ +enum { + FTRACE_UPDATE_CALLS = 1, + FTRACE_DISABLE_CALLS = 2, + FTRACE_UPDATE_TRACE_FUNC = 4, + FTRACE_START_FUNC_RET = 8, + FTRACE_STOP_FUNC_RET = 16, ++ FTRACE_MAY_SLEEP = 32, +}; + +enum { @@ -35866,6 +37821,28 @@ index 0000000..bcb9d76 + FTRACE_ITER_ENABLED = 64, +}; + ++struct ftrace_graph_ent { ++ long unsigned int func; ++ int depth; ++} __attribute__((packed)); ++ ++struct ftrace_graph_ret { ++ long unsigned int func; ++ long unsigned int overrun; ++ long long unsigned int calltime; ++ long long unsigned int rettime; ++ int depth; ++} __attribute__((packed)); ++ ++typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); ++ ++typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); ++ ++struct fgraph_ops { ++ trace_func_graph_ent_t entryfunc; ++ trace_func_graph_ret_t retfunc; ++}; ++ +struct prog_entry; + +struct event_filter { @@ -35875,9 +37852,9 @@ index 0000000..bcb9d76 + +struct trace_array_cpu; + -+struct trace_buffer { ++struct array_buffer { + struct trace_array *tr; -+ struct ring_buffer *buffer; ++ struct trace_buffer *buffer; + struct trace_array_cpu *data; + u64 time_start; + int cpu; @@ -35887,29 +37864,38 @@ index 0000000..bcb9d76 + +struct trace_options; + ++struct cond_snapshot; ++ +struct trace_array { + struct list_head list; + char *name; -+ struct trace_buffer trace_buffer; -+ struct trace_buffer max_buffer; ++ struct array_buffer array_buffer; ++ struct array_buffer max_buffer; + bool allocated_snapshot; + long unsigned int max_latency; ++ struct dentry *d_max_latency; ++ struct work_struct fsnotify_work; ++ struct irq_work fsnotify_irqwork; + struct trace_pid_list *filtered_pids; ++ struct trace_pid_list *filtered_no_pids; + arch_spinlock_t max_lock; + int buffer_disabled; + int sys_refcount_enter; + int sys_refcount_exit; -+ struct trace_event_file *enter_syscall_files[335]; -+ struct trace_event_file *exit_syscall_files[335]; ++ struct trace_event_file *enter_syscall_files[457]; ++ struct trace_event_file *exit_syscall_files[457]; + int stop_count; + int clock_id; + int nr_topts; + bool clear_trace; ++ int buffer_percent; ++ unsigned int n_err_log_entries; + struct tracer *current_trace; + unsigned int trace_flags; + unsigned char trace_flags_index[32]; + unsigned int flags; + raw_spinlock_t start_lock; ++ struct list_head err_log; + struct dentry *dir; + struct dentry *options; + struct dentry *percpu_dir; @@ -35920,14 +37906,17 @@ index 0000000..bcb9d76 + struct trace_event_file *trace_marker_file; + cpumask_var_t tracing_cpumask; + int ref; ++ int trace_ref; + struct ftrace_ops *ops; + struct trace_pid_list *function_pids; ++ struct trace_pid_list *function_no_pids; + struct list_head func_probes; + struct list_head mod_trace; + struct list_head mod_notrace; + int function_enabled; + int time_stamp_abs_ref; + struct list_head hist_vars; ++ struct cond_snapshot *cond_snapshot; +}; + +struct tracer_flags; @@ -35952,7 +37941,6 @@ index 0000000..bcb9d76 + struct tracer *next; + struct tracer_flags *flags; + int enabled; -+ int ref; + bool print_max; + bool allow_instances; + bool use_max_tr; @@ -35986,8 +37974,8 @@ index 0000000..bcb9d76 + pid_t pid; + kuid_t uid; + char comm[16]; ++ int ftrace_ignore_pid; + bool ignore_pid; -+ bool ftrace_ignore_pid; +}; + +struct trace_option_dentry; @@ -36012,6 +38000,18 @@ index 0000000..bcb9d76 +}; + +enum { ++ TRACE_PIDS = 1, ++ TRACE_NO_PIDS = 2, ++}; ++ ++typedef bool (*cond_update_fn_t)(struct trace_array *, void *); ++ ++struct cond_snapshot { ++ void *cond_data; ++ cond_update_fn_t update; ++}; ++ ++enum { + TRACE_ARRAY_FL_GLOBAL = 1, +}; + @@ -36027,24 +38027,30 @@ index 0000000..bcb9d76 +}; + +enum { -+ TRACE_BUFFER_BIT = 0, -+ TRACE_BUFFER_NMI_BIT = 1, -+ TRACE_BUFFER_IRQ_BIT = 2, -+ TRACE_BUFFER_SIRQ_BIT = 3, -+ TRACE_FTRACE_BIT = 4, -+ TRACE_FTRACE_NMI_BIT = 5, -+ TRACE_FTRACE_IRQ_BIT = 6, -+ TRACE_FTRACE_SIRQ_BIT = 7, -+ TRACE_INTERNAL_BIT = 8, -+ TRACE_INTERNAL_NMI_BIT = 9, -+ TRACE_INTERNAL_IRQ_BIT = 10, -+ TRACE_INTERNAL_SIRQ_BIT = 11, -+ TRACE_BRANCH_BIT = 12, -+ TRACE_IRQ_BIT = 13, -+ TRACE_GRAPH_BIT = 14, -+ TRACE_GRAPH_DEPTH_START_BIT = 15, -+ TRACE_GRAPH_DEPTH_END_BIT = 16, -+ TRACE_TRANSITION_BIT = 17, ++ TRACE_FTRACE_BIT = 0, ++ TRACE_FTRACE_NMI_BIT = 1, ++ TRACE_FTRACE_IRQ_BIT = 2, ++ TRACE_FTRACE_SIRQ_BIT = 3, ++ TRACE_FTRACE_TRANSITION_BIT = 4, ++ TRACE_INTERNAL_BIT = 5, ++ TRACE_INTERNAL_NMI_BIT = 6, ++ TRACE_INTERNAL_IRQ_BIT = 7, ++ TRACE_INTERNAL_SIRQ_BIT = 8, ++ TRACE_INTERNAL_TRANSITION_BIT = 9, ++ TRACE_BRANCH_BIT = 10, ++ TRACE_IRQ_BIT = 11, ++ TRACE_GRAPH_BIT = 12, ++ TRACE_GRAPH_DEPTH_START_BIT = 13, ++ TRACE_GRAPH_DEPTH_END_BIT = 14, ++ TRACE_GRAPH_NOTRACE_BIT = 15, ++}; ++ ++enum { ++ TRACE_CTX_NMI = 0, ++ TRACE_CTX_IRQ = 1, ++ TRACE_CTX_SOFTIRQ = 2, ++ TRACE_CTX_NORMAL = 3, ++ TRACE_CTX_TRANSITION = 4, +}; + +struct ftrace_mod_load { @@ -36103,11 +38109,12 @@ index 0000000..bcb9d76 + TRACE_ITER_IRQ_INFO_BIT = 19, + TRACE_ITER_MARKERS_BIT = 20, + TRACE_ITER_EVENT_FORK_BIT = 21, -+ TRACE_ITER_FUNCTION_BIT = 22, -+ TRACE_ITER_FUNC_FORK_BIT = 23, -+ TRACE_ITER_DISPLAY_GRAPH_BIT = 24, -+ TRACE_ITER_STACKTRACE_BIT = 25, -+ TRACE_ITER_LAST_BIT = 26, ++ TRACE_ITER_PAUSE_ON_TRACE_BIT = 22, ++ TRACE_ITER_FUNCTION_BIT = 23, ++ TRACE_ITER_FUNC_FORK_BIT = 24, ++ TRACE_ITER_DISPLAY_GRAPH_BIT = 25, ++ TRACE_ITER_STACKTRACE_BIT = 26, ++ TRACE_ITER_LAST_BIT = 27, +}; + +struct event_subsystem { @@ -36123,18 +38130,24 @@ index 0000000..bcb9d76 + MATCH_MIDDLE_ONLY = 2, + MATCH_END_ONLY = 3, + MATCH_GLOB = 4, ++ MATCH_INDEX = 5, +}; + +struct tracer_stat { + const char *name; + void * (*stat_start)(struct tracer_stat *); + void * (*stat_next)(void *, int); -+ int (*stat_cmp)(void *, void *); ++ cmp_func_t stat_cmp; + int (*stat_show)(struct seq_file *, void *); + void (*stat_release)(void *); + int (*stat_headers)(struct seq_file *); +}; + ++enum { ++ FTRACE_MODIFY_ENABLE_FL = 1, ++ FTRACE_MODIFY_MAY_SLEEP_FL = 2, ++}; ++ +struct ftrace_profile { + struct hlist_node node; + long unsigned int ip; @@ -36157,11 +38170,6 @@ index 0000000..bcb9d76 + struct tracer_stat stat; +}; + -+struct ftrace_func_entry { -+ struct hlist_node hlist; -+ long unsigned int ip; -+}; -+ +struct ftrace_func_probe { + struct ftrace_probe_ops *probe_ops; + struct ftrace_ops ops; @@ -36178,7 +38186,7 @@ index 0000000..bcb9d76 + int size; +}; + -+struct ftrace_rec_iter___2 { ++struct ftrace_rec_iter { + struct ftrace_page *pg; + int index; +}; @@ -36216,6 +38224,12 @@ index 0000000..bcb9d76 + struct ftrace_hash hash; +}; + ++struct ftrace_direct_func { ++ struct list_head next; ++ long unsigned int addr; ++ int count; ++}; ++ +enum graph_filter_type { + GRAPH_FILTER_NOTRACE = 0, + GRAPH_FILTER_FUNCTION = 1, @@ -36227,7 +38241,7 @@ index 0000000..bcb9d76 + int idx; + enum graph_filter_type type; + struct ftrace_hash *new_hash; -+ const struct seq_operations___2 *seq_ops; ++ const struct seq_operations *seq_ops; + struct trace_parser parser; +}; + @@ -36264,6 +38278,23 @@ index 0000000..bcb9d76 + RB_FL_OVERWRITE = 1, +}; + ++struct ring_buffer_per_cpu; ++ ++struct buffer_page; ++ ++struct ring_buffer_iter { ++ struct ring_buffer_per_cpu *cpu_buffer; ++ long unsigned int head; ++ long unsigned int next_event; ++ struct buffer_page *head_page; ++ struct buffer_page *cache_reader_page; ++ long unsigned int cache_read; ++ u64 read_stamp; ++ u64 page_stamp; ++ struct ring_buffer_event *event; ++ int missed_events; ++}; ++ +struct rb_irq_work { + struct irq_work work; + wait_queue_head_t waiters; @@ -36273,13 +38304,10 @@ index 0000000..bcb9d76 + bool wakeup_full; +}; + -+struct ring_buffer_per_cpu; -+ -+struct ring_buffer { ++struct trace_buffer { + unsigned int flags; + int cpus; + atomic_t record_disabled; -+ atomic_t resize_disabled; + cpumask_var_t cpumask; + struct lock_class_key *reader_lock_key; + struct mutex mutex; @@ -36290,17 +38318,6 @@ index 0000000..bcb9d76 + bool time_stamp_abs; +}; + -+struct buffer_page; -+ -+struct ring_buffer_iter { -+ struct ring_buffer_per_cpu *cpu_buffer; -+ long unsigned int head; -+ struct buffer_page *head_page; -+ struct buffer_page *cache_reader_page; -+ long unsigned int cache_read; -+ u64 read_stamp; -+}; -+ +enum { + RB_LEN_TIME_EXTEND = 8, + RB_LEN_TIME_STAMP = 8, @@ -36324,12 +38341,21 @@ index 0000000..bcb9d76 +struct rb_event_info { + u64 ts; + u64 delta; ++ u64 before; ++ u64 after; + long unsigned int length; + struct buffer_page *tail_page; + int add_timestamp; +}; + +enum { ++ RB_ADD_STAMP_NONE = 0, ++ RB_ADD_STAMP_EXTEND = 2, ++ RB_ADD_STAMP_ABSOLUTE = 4, ++ RB_ADD_STAMP_FORCE = 8, ++}; ++ ++enum { + RB_CTX_TRANSITION = 0, + RB_CTX_NMI = 1, + RB_CTX_IRQ = 2, @@ -36338,10 +38364,17 @@ index 0000000..bcb9d76 + RB_CTX_MAX = 5, +}; + ++struct rb_time_struct { ++ local64_t time; ++}; ++ ++typedef struct rb_time_struct rb_time_t; ++ +struct ring_buffer_per_cpu { + int cpu; + atomic_t record_disabled; -+ struct ring_buffer *buffer; ++ atomic_t resize_disabled; ++ struct trace_buffer *buffer; + raw_spinlock_t reader_lock; + arch_spinlock_t lock; + struct lock_class_key lock_key; @@ -36363,9 +38396,14 @@ index 0000000..bcb9d76 + local_t dropped_events; + local_t committing; + local_t commits; ++ local_t pages_touched; ++ local_t pages_read; ++ long int last_pages_touch; ++ size_t shortest_full; + long unsigned int read; + long unsigned int read_bytes; -+ u64 write_stamp; ++ rb_time_t write_stamp; ++ rb_time_t before_stamp; + u64 read_stamp; + long int nr_pages_to_update; + struct list_head new_pages; @@ -36377,6 +38415,13 @@ index 0000000..bcb9d76 +struct trace_export { + struct trace_export *next; + void (*write)(struct trace_export *, const void *, unsigned int); ++ int flags; ++}; ++ ++enum fsnotify_data_type { ++ FSNOTIFY_EVENT_NONE = 0, ++ FSNOTIFY_EVENT_PATH = 1, ++ FSNOTIFY_EVENT_INODE = 2, +}; + +enum trace_iter_flags { @@ -36412,8 +38457,10 @@ index 0000000..bcb9d76 + TRACE_BLK = 13, + TRACE_BPUTS = 14, + TRACE_HWLAT = 15, -+ TRACE_RAW_DATA = 16, -+ __TRACE_LAST_TYPE = 17, ++ TRACE_OSNOISE = 16, ++ TRACE_TIMERLAT = 17, ++ TRACE_RAW_DATA = 18, ++ __TRACE_LAST_TYPE = 19, +}; + +struct ftrace_entry { @@ -36492,10 +38539,18 @@ index 0000000..bcb9d76 + TRACE_ITER_IRQ_INFO = 524288, + TRACE_ITER_MARKERS = 1048576, + TRACE_ITER_EVENT_FORK = 2097152, -+ TRACE_ITER_FUNCTION = 4194304, -+ TRACE_ITER_FUNC_FORK = 8388608, -+ TRACE_ITER_DISPLAY_GRAPH = 16777216, -+ TRACE_ITER_STACKTRACE = 33554432, ++ TRACE_ITER_PAUSE_ON_TRACE = 4194304, ++ TRACE_ITER_FUNCTION = 8388608, ++ TRACE_ITER_FUNC_FORK = 16777216, ++ TRACE_ITER_DISPLAY_GRAPH = 33554432, ++ TRACE_ITER_STACKTRACE = 67108864, ++}; ++ ++struct trace_min_max_param { ++ struct mutex *lock; ++ u64 *val; ++ u64 *min; ++ u64 *max; +}; + +struct saved_cmdlines_buffer { @@ -36507,7 +38562,11 @@ index 0000000..bcb9d76 +}; + +struct ftrace_stack { -+ long unsigned int calls[512]; ++ long unsigned int calls[1024]; ++}; ++ ++struct ftrace_stacks { ++ struct ftrace_stack stacks[4]; +}; + +struct trace_buffer_struct { @@ -36522,14 +38581,28 @@ index 0000000..bcb9d76 + unsigned int read; +}; + ++struct err_info { ++ const char **errs; ++ u8 type; ++ u8 pos; ++ u64 ts; ++}; ++ ++struct tracing_log_err { ++ struct list_head list; ++ struct err_info info; ++ char loc[128]; ++ char cmd[256]; ++}; ++ +struct buffer_ref { -+ struct ring_buffer *buffer; ++ struct trace_buffer *buffer; + void *page; + int cpu; + refcount_t refcount; +}; + -+struct ftrace_func_mapper___2; ++struct ftrace_func_mapper; + +struct ctx_switch_entry { + struct trace_entry ent; @@ -36550,6 +38623,26 @@ index 0000000..bcb9d76 + struct timespec64 timestamp; + unsigned int nmi_count; + unsigned int seqnum; ++ unsigned int count; ++}; ++ ++struct osnoise_entry { ++ struct trace_entry ent; ++ u64 noise; ++ u64 runtime; ++ u64 max_sample; ++ unsigned int hw_count; ++ unsigned int nmi_count; ++ unsigned int irq_count; ++ unsigned int softirq_count; ++ unsigned int thread_count; ++}; ++ ++struct timerlat_entry { ++ struct trace_entry ent; ++ unsigned int seqnum; ++ int context; ++ u64 timer_latency; +}; + +struct trace_mark { @@ -36570,8 +38663,6 @@ index 0000000..bcb9d76 + struct dentry *file; +}; + -+typedef int (*cmp_stat_t)(void *, void *); -+ +struct trace_bprintk_fmt { + struct list_head list; + const char *fmt; @@ -36666,6 +38757,7 @@ index 0000000..bcb9d76 + u64 nmi_total_ts; + struct timespec64 timestamp; + int nmi_count; ++ int count; +}; + +struct hwlat_data { @@ -36675,6 +38767,151 @@ index 0000000..bcb9d76 + u64 sample_width; +}; + ++struct trace_event_raw_thread_noise { ++ struct trace_entry ent; ++ char comm[16]; ++ u64 start; ++ u64 duration; ++ pid_t pid; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_softirq_noise { ++ struct trace_entry ent; ++ u64 start; ++ u64 duration; ++ int vector; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_irq_noise { ++ struct trace_entry ent; ++ u64 start; ++ u64 duration; ++ u32 __data_loc_desc; ++ int vector; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_nmi_noise { ++ struct trace_entry ent; ++ u64 start; ++ u64 duration; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_sample_threshold { ++ struct trace_entry ent; ++ u64 start; ++ u64 duration; ++ u64 interference; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_thread_noise {}; ++ ++struct trace_event_data_offsets_softirq_noise {}; ++ ++struct trace_event_data_offsets_irq_noise { ++ u32 desc; ++}; ++ ++struct trace_event_data_offsets_nmi_noise {}; ++ ++struct trace_event_data_offsets_sample_threshold {}; ++ ++typedef void (*btf_trace_thread_noise)(void *, struct task_struct *, u64, u64); ++ ++typedef void (*btf_trace_softirq_noise)(void *, int, u64, u64); ++ ++typedef void (*btf_trace_irq_noise)(void *, int, const char *, u64, u64); ++ ++typedef void (*btf_trace_nmi_noise)(void *, u64, u64); ++ ++typedef void (*btf_trace_sample_threshold)(void *, u64, u64, u64); ++ ++struct osnoise_instance { ++ struct list_head list; ++ struct trace_array *tr; ++}; ++ ++struct osn_nmi { ++ u64 count; ++ u64 delta_start; ++}; ++ ++struct osn_irq { ++ u64 count; ++ u64 arrival_time; ++ u64 delta_start; ++}; ++ ++struct osn_softirq { ++ u64 count; ++ u64 arrival_time; ++ u64 delta_start; ++}; ++ ++struct osn_thread { ++ u64 count; ++ u64 arrival_time; ++ u64 delta_start; ++}; ++ ++struct osnoise_variables { ++ struct task_struct *kthread; ++ bool sampling; ++ pid_t pid; ++ struct osn_nmi nmi; ++ struct osn_irq irq; ++ struct osn_softirq softirq; ++ struct osn_thread thread; ++ local_t int_counter; ++}; ++ ++struct timerlat_variables { ++ struct task_struct *kthread; ++ struct hrtimer timer; ++ u64 rel_period; ++ u64 abs_period; ++ bool tracing_thread; ++ u64 count; ++}; ++ ++struct osnoise_sample { ++ u64 runtime; ++ u64 noise; ++ u64 max_sample; ++ int hw_count; ++ int nmi_count; ++ int irq_count; ++ int softirq_count; ++ int thread_count; ++}; ++ ++struct timerlat_sample { ++ u64 timer_latency; ++ unsigned int seqnum; ++ int context; ++}; ++ ++struct osnoise_data { ++ u64 sample_period; ++ u64 sample_runtime; ++ u64 stop_tracing; ++ u64 stop_tracing_total; ++ u64 timerlat_period; ++ u64 print_stack; ++ int timerlat_tracer; ++ bool tainted; ++}; ++ ++struct trace_stack { ++ int stack_size; ++ int nr_entries; ++ long unsigned int calls[256]; ++}; ++ +enum { + TRACE_NOP_OPT_ACCEPT = 1, + TRACE_NOP_OPT_REFUSE = 2, @@ -36714,39 +38951,88 @@ index 0000000..bcb9d76 + +typedef __u32 blk_mq_req_flags_t; + -+struct blk_mq_ctxs; -+ -+struct blk_mq_ctx { -+ struct { -+ spinlock_t lock; -+ struct list_head rq_list; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ }; -+ unsigned int cpu; -+ unsigned int index_hw; -+ long unsigned int rq_dispatched[2]; -+ long unsigned int rq_merged; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int rq_completed[2]; -+ struct request_queue *queue; -+ struct blk_mq_ctxs *ctxs; -+ struct kobject kobj; ++struct disk_stats { ++ u64 nsecs[4]; ++ long unsigned int sectors[4]; ++ long unsigned int ios[4]; ++ long unsigned int merges[4]; ++ long unsigned int io_ticks; ++ local_t in_flight[2]; +}; + -+struct sbitmap_word; ++struct sbitmap_word { ++ long unsigned int depth; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long unsigned int word; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long unsigned int cleared; ++ spinlock_t swap_lock; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; + +struct sbitmap { + unsigned int depth; + unsigned int shift; + unsigned int map_nr; + struct sbitmap_word *map; ++ u64 kabi_reserved1; ++}; ++ ++struct sbq_wait_state { ++ atomic_t wait_cnt; ++ wait_queue_head_t wait; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct sbitmap_queue { ++ struct sbitmap sb; ++ unsigned int *alloc_hint; ++ unsigned int wake_batch; ++ atomic_t wake_index; ++ struct sbq_wait_state *ws; ++ atomic_t ws_active; ++ bool round_robin; ++ unsigned int min_shallow_depth; ++}; ++ ++struct blk_mq_ctxs; ++ ++struct blk_mq_ctx { ++ struct { ++ spinlock_t lock; ++ struct list_head rq_lists[3]; ++ long: 64; ++ }; ++ unsigned int cpu; ++ short unsigned int index_hw[3]; ++ struct blk_mq_hw_ctx *hctxs[3]; ++ long unsigned int rq_dispatched[2]; ++ long unsigned int rq_merged; ++ long unsigned int rq_completed[2]; ++ struct request_queue *queue; ++ struct blk_mq_ctxs *ctxs; ++ struct kobject kobj; +}; + +struct blk_mq_tags; @@ -36773,7 +39059,8 @@ index 0000000..bcb9d76 + struct sbitmap ctx_map; + struct blk_mq_ctx *dispatch_from; + unsigned int dispatch_busy; -+ unsigned int nr_ctx; ++ short unsigned int type; ++ short unsigned int nr_ctx; + struct blk_mq_ctx **ctxs; + spinlock_t dispatch_wait_lock; + wait_queue_entry_t dispatch_wait; @@ -36786,7 +39073,7 @@ index 0000000..bcb9d76 + unsigned int numa_node; + unsigned int queue_num; + atomic_t nr_active; -+ unsigned int nr_expired; ++ struct hlist_node cpuhp_online; + struct hlist_node cpuhp_dead; + struct kobject kobj; + long unsigned int poll_considered; @@ -36795,23 +39082,29 @@ index 0000000..bcb9d76 + struct dentry *debugfs_dir; + struct dentry *sched_debugfs_dir; + struct list_head hctx_list; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; ++ long unsigned int dtag_wait_time; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; + struct srcu_struct srcu[0]; + long: 64; + long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; +}; + +struct blk_mq_alloc_data { + struct request_queue *q; + blk_mq_req_flags_t flags; + unsigned int shallow_depth; ++ unsigned int cmd_flags; + struct blk_mq_ctx *ctx; + struct blk_mq_hw_ctx *hctx; +}; @@ -36846,7 +39139,6 @@ index 0000000..bcb9d76 +}; + +struct blk_flush_queue { -+ unsigned int flush_queue_delayed: 1; + unsigned int flush_pending_idx: 1; + unsigned int flush_running_idx: 1; + blk_status_t rq_status; @@ -36854,12 +39146,18 @@ index 0000000..bcb9d76 + struct list_head flush_queue[2]; + struct list_head flush_data_in_flight; + struct request *flush_rq; -+ struct request *orig_rq; + spinlock_t mq_flush_lock; +}; + -+struct blk_mq_tag_set { ++struct blk_mq_queue_map { + unsigned int *mq_map; ++ unsigned int nr_queues; ++ unsigned int queue_offset; ++}; ++ ++struct blk_mq_tag_set { ++ struct blk_mq_queue_map map[3]; ++ unsigned int nr_maps; + const struct blk_mq_ops *ops; + unsigned int nr_hw_queues; + unsigned int queue_depth; @@ -36869,17 +39167,21 @@ index 0000000..bcb9d76 + unsigned int timeout; + unsigned int flags; + void *driver_data; ++ atomic_t active_queues_shared_sbitmap; ++ atomic_t pending_queues_shared_sbitmap; ++ struct sbitmap_queue __bitmap_tags; ++ struct sbitmap_queue __breserved_tags; + struct blk_mq_tags **tags; + struct mutex tag_list_lock; + struct list_head tag_list; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; +}; + +typedef u64 compat_u64; @@ -36980,51 +39282,29 @@ index 0000000..bcb9d76 + u32 pid; +} __attribute__((packed)); + -+struct sbitmap_word { -+ long unsigned int word; -+ long unsigned int depth; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct sbq_wait_state { -+ atomic_t wait_cnt; -+ wait_queue_head_t wait; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct sbitmap_queue { -+ struct sbitmap sb; -+ unsigned int *alloc_hint; -+ unsigned int wake_batch; -+ atomic_t wake_index; -+ struct sbq_wait_state *ws; -+ bool round_robin; -+ unsigned int min_shallow_depth; -+}; -+ +struct blk_mq_tags { + unsigned int nr_tags; + unsigned int nr_reserved_tags; + atomic_t active_queues; -+ struct sbitmap_queue bitmap_tags; -+ struct sbitmap_queue breserved_tags; ++ atomic_t pending_queues; ++ struct sbitmap_queue *bitmap_tags; ++ struct sbitmap_queue *breserved_tags; ++ struct sbitmap_queue __bitmap_tags; ++ struct sbitmap_queue __breserved_tags; + struct request **rqs; + struct request **static_rqs; + struct list_head page_list; ++ spinlock_t lock; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct blk_mq_queue_data { + struct request *rq; + bool last; -+ long unsigned int kabi_reserved1; ++ u64 kabi_reserved1; +}; + +struct blk_mq_ctxs { @@ -37057,42 +39337,6 @@ index 0000000..bcb9d76 + bool enable; +}; + -+struct mmiotrace_rw { -+ resource_size_t phys; -+ long unsigned int value; -+ long unsigned int pc; -+ int map_id; -+ unsigned char opcode; -+ unsigned char width; -+}; -+ -+struct mmiotrace_map { -+ resource_size_t phys; -+ long unsigned int virt; -+ long unsigned int len; -+ int map_id; -+ unsigned char opcode; -+}; -+ -+struct trace_mmiotrace_rw { -+ struct trace_entry ent; -+ struct mmiotrace_rw rw; -+}; -+ -+struct trace_mmiotrace_map { -+ struct trace_entry ent; -+ struct mmiotrace_map map; -+}; -+ -+struct trace_branch { -+ struct trace_entry ent; -+ unsigned int line; -+ char func[31]; -+ char file[21]; -+ char correct; -+ char constant; -+}; -+ +struct syscall_trace_enter { + struct trace_entry ent; + int nr; @@ -37117,19 +39361,6 @@ index 0000000..bcb9d76 + long unsigned int args[6]; +}; + -+enum { -+ FETCH_MTD_reg = 0, -+ FETCH_MTD_stack = 1, -+ FETCH_MTD_retval = 2, -+ FETCH_MTD_comm = 3, -+ FETCH_MTD_memory = 4, -+ FETCH_MTD_symbol = 5, -+ FETCH_MTD_deref = 6, -+ FETCH_MTD_bitfield = 7, -+ FETCH_MTD_file_offset = 8, -+ FETCH_MTD_END = 9, -+}; -+ +typedef long unsigned int perf_trace_t[256]; + +struct filter_pred; @@ -37193,7 +39424,8 @@ index 0000000..bcb9d76 + FILT_ERR_INVALID_FILTER = 13, + FILT_ERR_IP_FIELD_ONLY = 14, + FILT_ERR_INVALID_VALUE = 15, -+ FILT_ERR_NO_FILTER = 16, ++ FILT_ERR_ERRNO = 16, ++ FILT_ERR_NO_FILTER = 17, +}; + +struct filter_parse_error { @@ -37209,10 +39441,14 @@ index 0000000..bcb9d76 + PROCESS_OR = 4, +}; + ++struct ustring_buffer { ++ char buffer[1024]; ++}; ++ +enum { -+ TOO_MANY_CLOSE = -1, -+ TOO_MANY_OPEN = -2, -+ MISSING_QUOTE = -3, ++ TOO_MANY_CLOSE = 4294967295, ++ TOO_MANY_OPEN = 4294967294, ++ MISSING_QUOTE = 4294967293, +}; + +struct filter_list { @@ -37277,6 +39513,166 @@ index 0000000..bcb9d76 + EVENT_CMD_FL_NEEDS_REC = 2, +}; + ++enum dynevent_type { ++ DYNEVENT_TYPE_SYNTH = 1, ++ DYNEVENT_TYPE_KPROBE = 2, ++ DYNEVENT_TYPE_NONE = 3, ++}; ++ ++struct dynevent_cmd; ++ ++typedef int (*dynevent_create_fn_t)(struct dynevent_cmd *); ++ ++struct dynevent_cmd { ++ struct seq_buf seq; ++ const char *event_name; ++ unsigned int n_fields; ++ enum dynevent_type type; ++ dynevent_create_fn_t run_command; ++ void *private_data; ++}; ++ ++struct synth_field_desc { ++ const char *type; ++ const char *name; ++}; ++ ++struct synth_trace_event; ++ ++struct synth_event; ++ ++struct synth_event_trace_state { ++ struct trace_event_buffer fbuffer; ++ struct synth_trace_event *entry; ++ struct trace_buffer *buffer; ++ struct synth_event *event; ++ unsigned int cur_field; ++ unsigned int n_u64; ++ bool disabled; ++ bool add_next; ++ bool add_name; ++}; ++ ++struct synth_trace_event { ++ struct trace_entry ent; ++ u64 fields[0]; ++}; ++ ++struct dyn_event_operations; ++ ++struct dyn_event { ++ struct list_head list; ++ struct dyn_event_operations *ops; ++}; ++ ++struct synth_field; ++ ++struct synth_event { ++ struct dyn_event devent; ++ int ref; ++ char *name; ++ struct synth_field **fields; ++ unsigned int n_fields; ++ struct synth_field **dynamic_fields; ++ unsigned int n_dynamic_fields; ++ unsigned int n_u64; ++ struct trace_event_class class; ++ struct trace_event_call call; ++ struct tracepoint *tp; ++ struct module *mod; ++}; ++ ++struct dyn_event_operations { ++ struct list_head list; ++ int (*create)(int, const char **); ++ int (*show)(struct seq_file *, struct dyn_event *); ++ bool (*is_busy)(struct dyn_event *); ++ int (*free)(struct dyn_event *); ++ bool (*match)(const char *, const char *, int, const char **, struct dyn_event *); ++}; ++ ++struct dynevent_arg { ++ const char *str; ++ char separator; ++}; ++ ++struct dynevent_arg_pair { ++ const char *lhs; ++ const char *rhs; ++ char operator; ++ char separator; ++}; ++ ++struct synth_field { ++ char *type; ++ char *name; ++ size_t size; ++ unsigned int offset; ++ unsigned int field_pos; ++ bool is_signed; ++ bool is_string; ++ bool is_dynamic; ++}; ++ ++enum { ++ SYNTH_ERR_BAD_NAME = 0, ++ SYNTH_ERR_CMD_INCOMPLETE = 1, ++ SYNTH_ERR_EVENT_EXISTS = 2, ++ SYNTH_ERR_TOO_MANY_FIELDS = 3, ++ SYNTH_ERR_INCOMPLETE_TYPE = 4, ++ SYNTH_ERR_INVALID_TYPE = 5, ++ SYNTH_ERR_INVALID_FIELD = 6, ++ SYNTH_ERR_CMD_TOO_LONG = 7, ++}; ++ ++enum { ++ HIST_ERR_NONE = 0, ++ HIST_ERR_DUPLICATE_VAR = 1, ++ HIST_ERR_VAR_NOT_UNIQUE = 2, ++ HIST_ERR_TOO_MANY_VARS = 3, ++ HIST_ERR_MALFORMED_ASSIGNMENT = 4, ++ HIST_ERR_NAMED_MISMATCH = 5, ++ HIST_ERR_TRIGGER_EEXIST = 6, ++ HIST_ERR_TRIGGER_ENOENT_CLEAR = 7, ++ HIST_ERR_SET_CLOCK_FAIL = 8, ++ HIST_ERR_BAD_FIELD_MODIFIER = 9, ++ HIST_ERR_TOO_MANY_SUBEXPR = 10, ++ HIST_ERR_TIMESTAMP_MISMATCH = 11, ++ HIST_ERR_TOO_MANY_FIELD_VARS = 12, ++ HIST_ERR_EVENT_FILE_NOT_FOUND = 13, ++ HIST_ERR_HIST_NOT_FOUND = 14, ++ HIST_ERR_HIST_CREATE_FAIL = 15, ++ HIST_ERR_SYNTH_VAR_NOT_FOUND = 16, ++ HIST_ERR_SYNTH_EVENT_NOT_FOUND = 17, ++ HIST_ERR_SYNTH_TYPE_MISMATCH = 18, ++ HIST_ERR_SYNTH_COUNT_MISMATCH = 19, ++ HIST_ERR_FIELD_VAR_PARSE_FAIL = 20, ++ HIST_ERR_VAR_CREATE_FIND_FAIL = 21, ++ HIST_ERR_ONX_NOT_VAR = 22, ++ HIST_ERR_ONX_VAR_NOT_FOUND = 23, ++ HIST_ERR_ONX_VAR_CREATE_FAIL = 24, ++ HIST_ERR_FIELD_VAR_CREATE_FAIL = 25, ++ HIST_ERR_TOO_MANY_PARAMS = 26, ++ HIST_ERR_PARAM_NOT_FOUND = 27, ++ HIST_ERR_INVALID_PARAM = 28, ++ HIST_ERR_ACTION_NOT_FOUND = 29, ++ HIST_ERR_NO_SAVE_PARAMS = 30, ++ HIST_ERR_TOO_MANY_SAVE_ACTIONS = 31, ++ HIST_ERR_ACTION_MISMATCH = 32, ++ HIST_ERR_NO_CLOSING_PAREN = 33, ++ HIST_ERR_SUBSYS_NOT_FOUND = 34, ++ HIST_ERR_INVALID_SUBSYS_EVENT = 35, ++ HIST_ERR_INVALID_REF_KEY = 36, ++ HIST_ERR_VAR_NOT_FOUND = 37, ++ HIST_ERR_FIELD_NOT_FOUND = 38, ++ HIST_ERR_EMPTY_ASSIGNMENT = 39, ++ HIST_ERR_INVALID_SORT_MODIFIER = 40, ++ HIST_ERR_EMPTY_SORT_FIELD = 41, ++ HIST_ERR_TOO_MANY_SORT_FIELDS = 42, ++ HIST_ERR_INVALID_SORT_FIELD = 43, ++ HIST_ERR_INVALID_STR_OPERAND = 44, ++}; ++ +struct hist_field; + +typedef u64 (*hist_field_fn_t)(struct hist_field *, struct tracing_map_elt *, struct ring_buffer_event *, void *); @@ -37300,6 +39696,7 @@ index 0000000..bcb9d76 + struct ftrace_event_field *field; + long unsigned int flags; + hist_field_fn_t fn; ++ unsigned int ref; + unsigned int size; + unsigned int offset; + unsigned int is_signed; @@ -37311,9 +39708,9 @@ index 0000000..bcb9d76 + char *system; + char *event_name; + char *name; -+ unsigned int var_idx; + unsigned int var_ref_idx; + bool read_once; ++ unsigned int var_str_idx; +}; + +struct hist_trigger_attrs; @@ -37330,6 +39727,7 @@ index 0000000..bcb9d76 + unsigned int n_keys; + unsigned int n_fields; + unsigned int n_vars; ++ unsigned int n_var_str; + unsigned int key_size; + struct tracing_map_sort_key sort_keys[2]; + unsigned int n_sort_keys; @@ -37342,16 +39740,14 @@ index 0000000..bcb9d76 + unsigned int n_var_refs; + struct action_data *actions[8]; + unsigned int n_actions; -+ struct hist_field *synth_var_refs[16]; -+ unsigned int n_synth_var_refs; -+ struct field_var *field_vars[16]; ++ struct field_var *field_vars[32]; + unsigned int n_field_vars; + unsigned int n_field_var_str; -+ struct field_var_hist *field_var_hists[16]; ++ struct field_var_hist *field_var_hists[32]; + unsigned int n_field_var_hists; -+ struct field_var *max_vars[16]; -+ unsigned int n_max_vars; -+ unsigned int n_max_var_str; ++ struct field_var *save_vars[32]; ++ unsigned int n_save_vars; ++ unsigned int n_save_var_str; +}; + +enum hist_field_flags { @@ -37408,68 +39804,246 @@ index 0000000..bcb9d76 + char *cmd; +}; + -+typedef void (*action_fn_t)(struct hist_trigger_data *, struct tracing_map_elt *, void *, struct ring_buffer_event *, struct action_data *, u64 *); ++enum handler_id { ++ HANDLER_ONMATCH = 1, ++ HANDLER_ONMAX = 2, ++ HANDLER_ONCHANGE = 3, ++}; + -+struct synth_event; ++enum action_id { ++ ACTION_SAVE = 1, ++ ACTION_TRACE = 2, ++ ACTION_SNAPSHOT = 3, ++}; ++ ++typedef void (*action_fn_t)(struct hist_trigger_data *, struct tracing_map_elt *, void *, struct ring_buffer_event *, void *, struct action_data *, u64 *); ++ ++typedef bool (*check_track_val_fn_t)(u64, u64); + +struct action_data { ++ enum handler_id handler; ++ enum action_id action; ++ char *action_name; + action_fn_t fn; + unsigned int n_params; -+ char *params[16]; ++ char *params[32]; ++ unsigned int var_ref_idx[16]; ++ struct synth_event *synth_event; ++ bool use_trace_keyword; ++ char *synth_event_name; + union { + struct { -+ unsigned int var_ref_idx; -+ char *match_event; -+ char *match_event_system; -+ char *synth_event_name; -+ struct synth_event *synth_event; -+ } onmatch; ++ char *event; ++ char *event_system; ++ } match_data; + struct { + char *var_str; -+ char *fn_name; -+ unsigned int max_var_ref_idx; -+ struct hist_field *max_var; -+ struct hist_field *var; -+ } onmax; ++ struct hist_field *var_ref; ++ struct hist_field *track_var; ++ check_track_val_fn_t check_val; ++ action_fn_t save_data; ++ } track_data; + }; +}; + -+struct synth_field { -+ char *type; -+ char *name; -+ size_t size; -+ bool is_signed; -+ bool is_string; -+}; -+ -+struct synth_event { -+ struct list_head list; -+ int ref; -+ char *name; -+ struct synth_field **fields; -+ unsigned int n_fields; -+ unsigned int n_u64; -+ struct trace_event_class class; -+ struct trace_event_call call; -+ struct tracepoint *tp; -+}; -+ -+struct synth_trace_event { -+ struct trace_entry ent; -+ u64 fields[0]; -+}; -+ -+typedef void (*synth_probe_func_t)(void *, u64 *, unsigned int); -+ -+struct hist_var_data { -+ struct list_head list; ++struct track_data { ++ u64 track_val; ++ bool updated; ++ unsigned int key_len; ++ void *key; ++ struct tracing_map_elt elt; ++ struct action_data *action_data; + struct hist_trigger_data *hist_data; +}; + +struct hist_elt_data { + char *comm; + u64 *var_ref_vals; -+ char *field_var_str[16]; ++ char *field_var_str[32]; ++}; ++ ++struct snapshot_context { ++ struct tracing_map_elt *elt; ++ void *key; ++}; ++ ++typedef void (*synth_probe_func_t)(void *, u64 *, unsigned int *); ++ ++struct hist_var_data { ++ struct list_head list; ++ struct hist_trigger_data *hist_data; ++}; ++ ++enum bpf_func_id { ++ BPF_FUNC_unspec = 0, ++ BPF_FUNC_map_lookup_elem = 1, ++ BPF_FUNC_map_update_elem = 2, ++ BPF_FUNC_map_delete_elem = 3, ++ BPF_FUNC_probe_read = 4, ++ BPF_FUNC_ktime_get_ns = 5, ++ BPF_FUNC_trace_printk = 6, ++ BPF_FUNC_get_prandom_u32 = 7, ++ BPF_FUNC_get_smp_processor_id = 8, ++ BPF_FUNC_skb_store_bytes = 9, ++ BPF_FUNC_l3_csum_replace = 10, ++ BPF_FUNC_l4_csum_replace = 11, ++ BPF_FUNC_tail_call = 12, ++ BPF_FUNC_clone_redirect = 13, ++ BPF_FUNC_get_current_pid_tgid = 14, ++ BPF_FUNC_get_current_uid_gid = 15, ++ BPF_FUNC_get_current_comm = 16, ++ BPF_FUNC_get_cgroup_classid = 17, ++ BPF_FUNC_skb_vlan_push = 18, ++ BPF_FUNC_skb_vlan_pop = 19, ++ BPF_FUNC_skb_get_tunnel_key = 20, ++ BPF_FUNC_skb_set_tunnel_key = 21, ++ BPF_FUNC_perf_event_read = 22, ++ BPF_FUNC_redirect = 23, ++ BPF_FUNC_get_route_realm = 24, ++ BPF_FUNC_perf_event_output = 25, ++ BPF_FUNC_skb_load_bytes = 26, ++ BPF_FUNC_get_stackid = 27, ++ BPF_FUNC_csum_diff = 28, ++ BPF_FUNC_skb_get_tunnel_opt = 29, ++ BPF_FUNC_skb_set_tunnel_opt = 30, ++ BPF_FUNC_skb_change_proto = 31, ++ BPF_FUNC_skb_change_type = 32, ++ BPF_FUNC_skb_under_cgroup = 33, ++ BPF_FUNC_get_hash_recalc = 34, ++ BPF_FUNC_get_current_task = 35, ++ BPF_FUNC_probe_write_user = 36, ++ BPF_FUNC_current_task_under_cgroup = 37, ++ BPF_FUNC_skb_change_tail = 38, ++ BPF_FUNC_skb_pull_data = 39, ++ BPF_FUNC_csum_update = 40, ++ BPF_FUNC_set_hash_invalid = 41, ++ BPF_FUNC_get_numa_node_id = 42, ++ BPF_FUNC_skb_change_head = 43, ++ BPF_FUNC_xdp_adjust_head = 44, ++ BPF_FUNC_probe_read_str = 45, ++ BPF_FUNC_get_socket_cookie = 46, ++ BPF_FUNC_get_socket_uid = 47, ++ BPF_FUNC_set_hash = 48, ++ BPF_FUNC_setsockopt = 49, ++ BPF_FUNC_skb_adjust_room = 50, ++ BPF_FUNC_redirect_map = 51, ++ BPF_FUNC_sk_redirect_map = 52, ++ BPF_FUNC_sock_map_update = 53, ++ BPF_FUNC_xdp_adjust_meta = 54, ++ BPF_FUNC_perf_event_read_value = 55, ++ BPF_FUNC_perf_prog_read_value = 56, ++ BPF_FUNC_getsockopt = 57, ++ BPF_FUNC_override_return = 58, ++ BPF_FUNC_sock_ops_cb_flags_set = 59, ++ BPF_FUNC_msg_redirect_map = 60, ++ BPF_FUNC_msg_apply_bytes = 61, ++ BPF_FUNC_msg_cork_bytes = 62, ++ BPF_FUNC_msg_pull_data = 63, ++ BPF_FUNC_bind = 64, ++ BPF_FUNC_xdp_adjust_tail = 65, ++ BPF_FUNC_skb_get_xfrm_state = 66, ++ BPF_FUNC_get_stack = 67, ++ BPF_FUNC_skb_load_bytes_relative = 68, ++ BPF_FUNC_fib_lookup = 69, ++ BPF_FUNC_sock_hash_update = 70, ++ BPF_FUNC_msg_redirect_hash = 71, ++ BPF_FUNC_sk_redirect_hash = 72, ++ BPF_FUNC_lwt_push_encap = 73, ++ BPF_FUNC_lwt_seg6_store_bytes = 74, ++ BPF_FUNC_lwt_seg6_adjust_srh = 75, ++ BPF_FUNC_lwt_seg6_action = 76, ++ BPF_FUNC_rc_repeat = 77, ++ BPF_FUNC_rc_keydown = 78, ++ BPF_FUNC_skb_cgroup_id = 79, ++ BPF_FUNC_get_current_cgroup_id = 80, ++ BPF_FUNC_get_local_storage = 81, ++ BPF_FUNC_sk_select_reuseport = 82, ++ BPF_FUNC_skb_ancestor_cgroup_id = 83, ++ BPF_FUNC_sk_lookup_tcp = 84, ++ BPF_FUNC_sk_lookup_udp = 85, ++ BPF_FUNC_sk_release = 86, ++ BPF_FUNC_map_push_elem = 87, ++ BPF_FUNC_map_pop_elem = 88, ++ BPF_FUNC_map_peek_elem = 89, ++ BPF_FUNC_msg_push_data = 90, ++ BPF_FUNC_msg_pop_data = 91, ++ BPF_FUNC_rc_pointer_rel = 92, ++ BPF_FUNC_spin_lock = 93, ++ BPF_FUNC_spin_unlock = 94, ++ BPF_FUNC_sk_fullsock = 95, ++ BPF_FUNC_tcp_sock = 96, ++ BPF_FUNC_skb_ecn_set_ce = 97, ++ BPF_FUNC_get_listener_sock = 98, ++ BPF_FUNC_skc_lookup_tcp = 99, ++ BPF_FUNC_tcp_check_syncookie = 100, ++ BPF_FUNC_sysctl_get_name = 101, ++ BPF_FUNC_sysctl_get_current_value = 102, ++ BPF_FUNC_sysctl_get_new_value = 103, ++ BPF_FUNC_sysctl_set_new_value = 104, ++ BPF_FUNC_strtol = 105, ++ BPF_FUNC_strtoul = 106, ++ BPF_FUNC_sk_storage_get = 107, ++ BPF_FUNC_sk_storage_delete = 108, ++ BPF_FUNC_send_signal = 109, ++ BPF_FUNC_tcp_gen_syncookie = 110, ++ BPF_FUNC_skb_output = 111, ++ BPF_FUNC_probe_read_user = 112, ++ BPF_FUNC_probe_read_kernel = 113, ++ BPF_FUNC_probe_read_user_str = 114, ++ BPF_FUNC_probe_read_kernel_str = 115, ++ BPF_FUNC_tcp_send_ack = 116, ++ BPF_FUNC_send_signal_thread = 117, ++ BPF_FUNC_jiffies64 = 118, ++ BPF_FUNC_read_branch_records = 119, ++ BPF_FUNC_get_ns_current_pid_tgid = 120, ++ BPF_FUNC_xdp_output = 121, ++ BPF_FUNC_get_netns_cookie = 122, ++ BPF_FUNC_get_current_ancestor_cgroup_id = 123, ++ BPF_FUNC_sk_assign = 124, ++ BPF_FUNC_ktime_get_boot_ns = 125, ++ BPF_FUNC_seq_printf = 126, ++ BPF_FUNC_seq_write = 127, ++ BPF_FUNC_sk_cgroup_id = 128, ++ BPF_FUNC_sk_ancestor_cgroup_id = 129, ++ BPF_FUNC_ringbuf_output = 130, ++ BPF_FUNC_ringbuf_reserve = 131, ++ BPF_FUNC_ringbuf_submit = 132, ++ BPF_FUNC_ringbuf_discard = 133, ++ BPF_FUNC_ringbuf_query = 134, ++ BPF_FUNC_csum_level = 135, ++ BPF_FUNC_skc_to_tcp6_sock = 136, ++ BPF_FUNC_skc_to_tcp_sock = 137, ++ BPF_FUNC_skc_to_tcp_timewait_sock = 138, ++ BPF_FUNC_skc_to_tcp_request_sock = 139, ++ BPF_FUNC_skc_to_udp6_sock = 140, ++ BPF_FUNC_get_task_stack = 141, ++ BPF_FUNC_load_hdr_opt = 142, ++ BPF_FUNC_store_hdr_opt = 143, ++ BPF_FUNC_reserve_hdr_opt = 144, ++ BPF_FUNC_inode_storage_get = 145, ++ BPF_FUNC_inode_storage_delete = 146, ++ BPF_FUNC_d_path = 147, ++ BPF_FUNC_copy_from_user = 148, ++ BPF_FUNC_snprintf_btf = 149, ++ BPF_FUNC_seq_printf_btf = 150, ++ BPF_FUNC_skb_cgroup_classid = 151, ++ BPF_FUNC_redirect_neigh = 152, ++ BPF_FUNC_per_cpu_ptr = 153, ++ BPF_FUNC_this_cpu_ptr = 154, ++ BPF_FUNC_redirect_peer = 155, ++ BPF_FUNC_get_sockops_uid_gid = 156, ++ BPF_FUNC_sk_original_addr = 157, ++ __BPF_FUNC_MAX_ID = 158, ++}; ++ ++enum { ++ BPF_F_INDEX_MASK = 4294967295, ++ BPF_F_CURRENT_CPU = 4294967295, ++ BPF_F_CTXLEN_MASK = 0, ++}; ++ ++enum { ++ BPF_F_GET_BRANCH_RECORDS_SIZE = 1, +}; + +struct bpf_perf_event_value { @@ -37491,23 +40065,71 @@ index 0000000..bcb9d76 + BPF_FD_TYPE_URETPROBE = 5, +}; + -+struct bpf_array { -+ struct bpf_map map; -+ u32 elem_size; -+ u32 index_mask; -+ enum bpf_prog_type owner_prog_type; -+ bool owner_jited; ++struct btf_ptr { ++ void *ptr; ++ __u32 type_id; ++ __u32 flags; ++}; ++ ++enum { ++ BTF_F_COMPACT = 1, ++ BTF_F_NONAME = 2, ++ BTF_F_PTR_RAW = 4, ++ BTF_F_ZERO = 8, ++}; ++ ++struct bpf_func_proto { ++ u64 (*func)(u64, u64, u64, u64, u64); ++ bool gpl_only; ++ bool pkt_access; ++ enum bpf_return_type ret_type; + union { -+ char value[0]; -+ void *ptrs[0]; -+ void *pptrs[0]; ++ struct { ++ enum bpf_arg_type arg1_type; ++ enum bpf_arg_type arg2_type; ++ enum bpf_arg_type arg3_type; ++ enum bpf_arg_type arg4_type; ++ enum bpf_arg_type arg5_type; ++ }; ++ enum bpf_arg_type arg_type[5]; + }; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; ++ union { ++ struct { ++ u32 *arg1_btf_id; ++ u32 *arg2_btf_id; ++ u32 *arg3_btf_id; ++ u32 *arg4_btf_id; ++ u32 *arg5_btf_id; ++ }; ++ u32 *arg_btf_id[5]; ++ }; ++ int *ret_btf_id; ++ bool (*allowed)(const struct bpf_prog *); ++}; ++ ++enum bpf_access_type { ++ BPF_READ = 1, ++ BPF_WRITE = 2, ++}; ++ ++struct bpf_verifier_log; ++ ++struct bpf_insn_access_aux { ++ enum bpf_reg_type reg_type; ++ union { ++ int ctx_field_size; ++ u32 btf_id; ++ }; ++ struct bpf_verifier_log *log; ++}; ++ ++struct bpf_verifier_ops { ++ const struct bpf_func_proto * (*get_func_proto)(enum bpf_func_id, const struct bpf_prog *); ++ bool (*is_valid_access)(int, int, enum bpf_access_type, const struct bpf_prog *, struct bpf_insn_access_aux *); ++ int (*gen_prologue)(struct bpf_insn *, bool, const struct bpf_prog *); ++ int (*gen_ld_abs)(const struct bpf_insn *, struct bpf_insn *); ++ u32 (*convert_ctx_access)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); ++ int (*btf_struct_access)(struct bpf_verifier_log *, const struct btf_type *, int, int, enum bpf_access_type, u32 *); +}; + +struct bpf_event_entry { @@ -37519,6 +40141,11 @@ index 0000000..bcb9d76 + +typedef long unsigned int (*bpf_ctx_copy_t)(void *, const void *, long unsigned int, long unsigned int); + ++struct bpf_cg_run_ctx { ++ struct bpf_run_ctx run_ctx; ++ struct bpf_prog_array_item *prog_item; ++}; ++ +typedef struct pt_regs bpf_user_pt_regs_t; + +struct bpf_perf_event_data { @@ -37539,20 +40166,106 @@ index 0000000..bcb9d76 + struct perf_event *event; +}; + ++struct btf_id_set { ++ u32 cnt; ++ u32 ids[0]; ++}; ++ ++struct trace_event_raw_bpf_trace_printk { ++ struct trace_entry ent; ++ u32 __data_loc_bpf_string; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_bpf_trace_printk { ++ u32 bpf_string; ++}; ++ ++typedef void (*btf_trace_bpf_trace_printk)(void *, const char *); ++ +struct bpf_trace_module { + struct module *module; + struct list_head list; +}; + ++typedef u64 (*btf_bpf_probe_read_user)(void *, u32, const void *); ++ ++typedef u64 (*btf_bpf_probe_read_user_str)(void *, u32, const void *); ++ ++typedef u64 (*btf_bpf_probe_read_kernel)(void *, u32, const void *); ++ ++typedef u64 (*btf_bpf_probe_read_kernel_str)(void *, u32, const void *); ++ ++typedef u64 (*btf_bpf_probe_read_compat)(void *, u32, const void *); ++ ++typedef u64 (*btf_bpf_probe_read_compat_str)(void *, u32, const void *); ++ ++typedef u64 (*btf_bpf_probe_write_user)(void *, const void *, u32); ++ ++typedef u64 (*btf_bpf_trace_printk)(char *, u32, u64, u64, u64); ++ ++struct bpf_seq_printf_buf { ++ char buf[768]; ++}; ++ ++typedef u64 (*btf_bpf_seq_printf)(struct seq_file *, char *, u32, const void *, u32); ++ ++typedef u64 (*btf_bpf_seq_write)(struct seq_file *, const void *, u32); ++ ++typedef u64 (*btf_bpf_seq_printf_btf)(struct seq_file *, struct btf_ptr *, u32, u64); ++ ++typedef u64 (*btf_bpf_perf_event_read)(struct bpf_map *, u64); ++ ++typedef u64 (*btf_bpf_perf_event_read_value)(struct bpf_map *, u64, struct bpf_perf_event_value *, u32); ++ +struct bpf_trace_sample_data { + struct perf_sample_data sds[3]; +}; + ++typedef u64 (*btf_bpf_perf_event_output)(struct pt_regs *, struct bpf_map *, u64, void *, u64); ++ ++struct bpf_nested_pt_regs { ++ struct pt_regs regs[3]; ++}; ++ ++typedef u64 (*btf_bpf_get_current_task)(); ++ ++typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); ++ ++struct send_signal_irq_work { ++ struct irq_work irq_work; ++ struct task_struct *task; ++ u32 sig; ++ enum pid_type type; ++}; ++ ++typedef u64 (*btf_bpf_send_signal)(u32); ++ ++typedef u64 (*btf_bpf_send_signal_thread)(u32); ++ ++typedef u64 (*btf_bpf_d_path)(struct path *, char *, u32); ++ ++typedef u64 (*btf_bpf_snprintf_btf)(char *, u32, struct btf_ptr *, u32, u64); ++ ++typedef u64 (*btf_bpf_perf_event_output_tp)(void *, struct bpf_map *, u64, void *, u64); ++ ++typedef u64 (*btf_bpf_get_stackid_tp)(void *, struct bpf_map *, u64); ++ ++typedef u64 (*btf_bpf_get_stack_tp)(void *, void *, u32, u64); ++ ++typedef u64 (*btf_bpf_perf_prog_read_value)(struct bpf_perf_event_data_kern *, struct bpf_perf_event_value *, u32); ++ ++typedef u64 (*btf_bpf_read_branch_records)(struct bpf_perf_event_data_kern *, void *, u32, u64); ++ +struct bpf_raw_tp_regs { + struct pt_regs regs[3]; +}; + -+typedef void *pto_T_____25; ++typedef u64 (*btf_bpf_perf_event_output_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64, void *, u64); ++ ++typedef u64 (*btf_bpf_get_stackid_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64); ++ ++typedef u64 (*btf_bpf_get_stack_raw_tp)(struct bpf_raw_tracepoint_args *, void *, u32, u64); + +struct kprobe_trace_entry_head { + struct trace_entry ent; @@ -37565,9 +40278,49 @@ index 0000000..bcb9d76 + long unsigned int ret_ip; +}; + -+typedef void (*fetch_func_t)(struct pt_regs *, void *, void *); ++typedef int (*print_type_func_t)(struct trace_seq *, void *, void *); + -+typedef int (*print_type_func_t)(struct trace_seq *, const char *, void *, void *); ++enum fetch_op { ++ FETCH_OP_NOP = 0, ++ FETCH_OP_REG = 1, ++ FETCH_OP_STACK = 2, ++ FETCH_OP_STACKP = 3, ++ FETCH_OP_RETVAL = 4, ++ FETCH_OP_IMM = 5, ++ FETCH_OP_COMM = 6, ++ FETCH_OP_ARG = 7, ++ FETCH_OP_FOFFS = 8, ++ FETCH_OP_DATA = 9, ++ FETCH_OP_DEREF = 10, ++ FETCH_OP_UDEREF = 11, ++ FETCH_OP_ST_RAW = 12, ++ FETCH_OP_ST_MEM = 13, ++ FETCH_OP_ST_UMEM = 14, ++ FETCH_OP_ST_STRING = 15, ++ FETCH_OP_ST_USTRING = 16, ++ FETCH_OP_MOD_BF = 17, ++ FETCH_OP_LP_ARRAY = 18, ++ FETCH_OP_END = 19, ++ FETCH_NOP_SYMBOL = 20, ++}; ++ ++struct fetch_insn { ++ enum fetch_op op; ++ union { ++ unsigned int param; ++ struct { ++ unsigned int size; ++ int offset; ++ }; ++ struct { ++ unsigned char basesize; ++ unsigned char lshift; ++ unsigned char rshift; ++ }; ++ long unsigned int immediate; ++ void *data; ++ }; ++}; + +struct fetch_type { + const char *name; @@ -37576,32 +40329,37 @@ index 0000000..bcb9d76 + print_type_func_t print; + const char *fmt; + const char *fmttype; -+ fetch_func_t fetch[9]; +}; + -+struct fetch_param { -+ fetch_func_t fn; -+ void *data; -+}; -+ -+typedef u32 string; -+ -+typedef u32 string_size; -+ +struct probe_arg { -+ struct fetch_param fetch; -+ struct fetch_param fetch_size; ++ struct fetch_insn *code; ++ bool dynamic; + unsigned int offset; ++ unsigned int count; + const char *name; + const char *comm; ++ char *fmt; + const struct fetch_type *type; +}; + -+struct trace_probe { ++struct trace_uprobe_filter { ++ rwlock_t rwlock; ++ int nr_systemwide; ++ struct list_head perf_events; ++}; ++ ++struct trace_probe_event { + unsigned int flags; + struct trace_event_class class; + struct trace_event_call call; + struct list_head files; ++ struct list_head probes; ++ struct trace_uprobe_filter filter[0]; ++}; ++ ++struct trace_probe { ++ struct list_head list; ++ struct trace_probe_event *event; + ssize_t size; + unsigned int nr_args; + struct probe_arg args[0]; @@ -37612,20 +40370,87 @@ index 0000000..bcb9d76 + struct list_head list; +}; + ++enum { ++ TP_ERR_FILE_NOT_FOUND = 0, ++ TP_ERR_NO_REGULAR_FILE = 1, ++ TP_ERR_BAD_REFCNT = 2, ++ TP_ERR_REFCNT_OPEN_BRACE = 3, ++ TP_ERR_BAD_REFCNT_SUFFIX = 4, ++ TP_ERR_BAD_UPROBE_OFFS = 5, ++ TP_ERR_MAXACT_NO_KPROBE = 6, ++ TP_ERR_BAD_MAXACT = 7, ++ TP_ERR_MAXACT_TOO_BIG = 8, ++ TP_ERR_BAD_PROBE_ADDR = 9, ++ TP_ERR_BAD_RETPROBE = 10, ++ TP_ERR_BAD_ADDR_SUFFIX = 11, ++ TP_ERR_NO_GROUP_NAME = 12, ++ TP_ERR_GROUP_TOO_LONG = 13, ++ TP_ERR_BAD_GROUP_NAME = 14, ++ TP_ERR_NO_EVENT_NAME = 15, ++ TP_ERR_EVENT_TOO_LONG = 16, ++ TP_ERR_BAD_EVENT_NAME = 17, ++ TP_ERR_EVENT_EXIST = 18, ++ TP_ERR_RETVAL_ON_PROBE = 19, ++ TP_ERR_BAD_STACK_NUM = 20, ++ TP_ERR_BAD_ARG_NUM = 21, ++ TP_ERR_BAD_VAR = 22, ++ TP_ERR_BAD_REG_NAME = 23, ++ TP_ERR_BAD_MEM_ADDR = 24, ++ TP_ERR_BAD_IMM = 25, ++ TP_ERR_IMMSTR_NO_CLOSE = 26, ++ TP_ERR_FILE_ON_KPROBE = 27, ++ TP_ERR_BAD_FILE_OFFS = 28, ++ TP_ERR_SYM_ON_UPROBE = 29, ++ TP_ERR_TOO_MANY_OPS = 30, ++ TP_ERR_DEREF_NEED_BRACE = 31, ++ TP_ERR_BAD_DEREF_OFFS = 32, ++ TP_ERR_DEREF_OPEN_BRACE = 33, ++ TP_ERR_COMM_CANT_DEREF = 34, ++ TP_ERR_BAD_FETCH_ARG = 35, ++ TP_ERR_ARRAY_NO_CLOSE = 36, ++ TP_ERR_BAD_ARRAY_SUFFIX = 37, ++ TP_ERR_BAD_ARRAY_NUM = 38, ++ TP_ERR_ARRAY_TOO_BIG = 39, ++ TP_ERR_BAD_TYPE = 40, ++ TP_ERR_BAD_STRING = 41, ++ TP_ERR_BAD_BITFIELD = 42, ++ TP_ERR_ARG_NAME_TOO_LONG = 43, ++ TP_ERR_NO_ARG_NAME = 44, ++ TP_ERR_BAD_ARG_NAME = 45, ++ TP_ERR_USED_ARG_NAME = 46, ++ TP_ERR_ARG_TOO_LONG = 47, ++ TP_ERR_NO_ARG_BODY = 48, ++ TP_ERR_BAD_INSN_BNDRY = 49, ++ TP_ERR_FAIL_REG_PROBE = 50, ++ TP_ERR_DIFF_PROBE_TYPE = 51, ++ TP_ERR_DIFF_ARG_TYPE = 52, ++ TP_ERR_SAME_PROBE = 53, ++}; ++ +struct trace_kprobe { -+ struct list_head list; ++ struct dyn_event devent; + struct kretprobe rp; + long unsigned int *nhit; + const char *symbol; + struct trace_probe tp; +}; + -+struct symbol_cache { -+ char *symbol; -+ long int offset; -+ long unsigned int addr; ++enum error_detector { ++ ERROR_DETECTOR_KFENCE = 0, ++ ERROR_DETECTOR_KASAN = 1, +}; + ++struct trace_event_raw_error_report_template { ++ struct trace_entry ent; ++ enum error_detector error_detector; ++ long unsigned int id; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_error_report_template {}; ++ ++typedef void (*btf_trace_error_report_end)(void *, enum error_detector, long unsigned int); ++ +struct trace_event_raw_cpu { + struct trace_entry ent; + u32 state; @@ -37712,21 +40537,12 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_raw_pm_qos_request { ++struct trace_event_raw_cpu_latency_qos_request { + struct trace_entry ent; -+ int pm_qos_class; + s32 value; + char __data[0]; +}; + -+struct trace_event_raw_pm_qos_update_request_timeout { -+ struct trace_entry ent; -+ int pm_qos_class; -+ s32 value; -+ long unsigned int timeout_us; -+ char __data[0]; -+}; -+ +struct trace_event_raw_pm_qos_update { + struct trace_entry ent; + enum pm_qos_req_action action; @@ -37779,9 +40595,7 @@ index 0000000..bcb9d76 + u32 name; +}; + -+struct trace_event_data_offsets_pm_qos_request {}; -+ -+struct trace_event_data_offsets_pm_qos_update_request_timeout {}; ++struct trace_event_data_offsets_cpu_latency_qos_request {}; + +struct trace_event_data_offsets_pm_qos_update {}; + @@ -37789,6 +40603,50 @@ index 0000000..bcb9d76 + u32 name; +}; + ++typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_powernv_throttle)(void *, int, const char *, int); ++ ++typedef void (*btf_trace_pstate_sample)(void *, u32, u32, u32, u32, u64, u64, u64, u32, u32); ++ ++typedef void (*btf_trace_cpu_frequency)(void *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_cpu_frequency_limits)(void *, struct cpufreq_policy *); ++ ++typedef void (*btf_trace_device_pm_callback_start)(void *, struct device *, const char *, int); ++ ++typedef void (*btf_trace_device_pm_callback_end)(void *, struct device *, int); ++ ++typedef void (*btf_trace_suspend_resume)(void *, const char *, int, bool); ++ ++typedef void (*btf_trace_wakeup_source_activate)(void *, const char *, unsigned int); ++ ++typedef void (*btf_trace_wakeup_source_deactivate)(void *, const char *, unsigned int); ++ ++typedef void (*btf_trace_clock_enable)(void *, const char *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_clock_disable)(void *, const char *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_clock_set_rate)(void *, const char *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_power_domain_target)(void *, const char *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_pm_qos_add_request)(void *, s32); ++ ++typedef void (*btf_trace_pm_qos_update_request)(void *, s32); ++ ++typedef void (*btf_trace_pm_qos_remove_request)(void *, s32); ++ ++typedef void (*btf_trace_pm_qos_update_target)(void *, enum pm_qos_req_action, int, int); ++ ++typedef void (*btf_trace_pm_qos_update_flags)(void *, enum pm_qos_req_action, int, int); ++ ++typedef void (*btf_trace_dev_pm_qos_add_request)(void *, const char *, enum dev_pm_qos_req_type, s32); ++ ++typedef void (*btf_trace_dev_pm_qos_update_request)(void *, const char *, enum dev_pm_qos_req_type, s32); ++ ++typedef void (*btf_trace_dev_pm_qos_remove_request)(void *, const char *, enum dev_pm_qos_req_type, s32); ++ +struct trace_event_raw_rpm_internal { + struct trace_entry ent; + u32 __data_loc_name; @@ -37818,17 +40676,23 @@ index 0000000..bcb9d76 + u32 name; +}; + -+struct deref_fetch_param { -+ struct fetch_param orig; -+ long int offset; -+ fetch_func_t fetch; -+ fetch_func_t fetch_size; -+}; ++typedef void (*btf_trace_rpm_suspend)(void *, struct device *, int); + -+struct bitfield_fetch_param { -+ struct fetch_param orig; -+ unsigned char hi_shift; -+ unsigned char low_shift; ++typedef void (*btf_trace_rpm_resume)(void *, struct device *, int); ++ ++typedef void (*btf_trace_rpm_idle)(void *, struct device *, int); ++ ++typedef void (*btf_trace_rpm_usage)(void *, struct device *, int); ++ ++typedef void (*btf_trace_rpm_return_int)(void *, struct device *, long unsigned int, int); ++ ++typedef int (*dynevent_check_arg_fn_t)(void *); ++ ++struct trace_probe_log { ++ const char *subsystem; ++ const char **argv; ++ int argc; ++ int index; +}; + +enum uprobe_filter_ctx { @@ -37849,20 +40713,14 @@ index 0000000..bcb9d76 + long unsigned int vaddr[0]; +}; + -+struct trace_uprobe_filter { -+ rwlock_t rwlock; -+ int nr_systemwide; -+ struct list_head perf_events; -+}; -+ +struct trace_uprobe { -+ struct list_head list; -+ struct trace_uprobe_filter filter; ++ struct dyn_event devent; + struct uprobe_consumer consumer; + struct path path; + struct inode *inode; + char *filename; + long unsigned int offset; ++ long unsigned int ref_ctr_offset; + long unsigned int nhit; + struct trace_probe tp; +}; @@ -37879,6 +40737,20 @@ index 0000000..bcb9d76 + +typedef bool (*filter_func_t)(struct uprobe_consumer *, enum uprobe_filter_ctx, struct mm_struct *); + ++struct rhash_lock_head; ++ ++struct bucket_table { ++ unsigned int size; ++ unsigned int nest; ++ u32 hash_rnd; ++ struct list_head walkers; ++ struct callback_head rcu; ++ struct bucket_table *future_tbl; ++ struct lockdep_map dep_map; ++ long: 64; ++ struct rhash_lock_head *buckets[0]; ++}; ++ +enum xdp_action { + XDP_ABORTED = 0, + XDP_DROP = 1, @@ -37887,12 +40759,49 @@ index 0000000..bcb9d76 + XDP_REDIRECT = 4, +}; + ++enum xdp_mem_type { ++ MEM_TYPE_PAGE_SHARED = 0, ++ MEM_TYPE_PAGE_ORDER0 = 1, ++ MEM_TYPE_PAGE_POOL = 2, ++ MEM_TYPE_XSK_BUFF_POOL = 3, ++ MEM_TYPE_MAX = 4, ++}; ++ ++struct xdp_cpumap_stats { ++ unsigned int redirect; ++ unsigned int pass; ++ unsigned int drop; ++}; ++ +typedef void (*bpf_jit_fill_hole_t)(void *, unsigned int); + +struct bpf_prog_dummy { + struct bpf_prog prog; +}; + ++typedef u64 (*btf_bpf_user_rnd_u32)(); ++ ++typedef u64 (*btf_bpf_get_raw_cpu_id)(); ++ ++struct _bpf_dtab_netdev { ++ struct net_device *dev; ++}; ++ ++struct rhash_lock_head {}; ++ ++struct zero_copy_allocator; ++ ++struct xdp_mem_allocator { ++ struct xdp_mem_info mem; ++ union { ++ void *allocator; ++ struct page_pool *page_pool; ++ struct zero_copy_allocator *zc_alloc; ++ }; ++ struct rhash_head node; ++ struct callback_head rcu; ++}; ++ +struct trace_event_raw_xdp_exception { + struct trace_entry ent; + int prog_id; @@ -37901,6 +40810,16 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_xdp_bulk_tx { ++ struct trace_entry ent; ++ int ifindex; ++ u32 act; ++ int drops; ++ int sent; ++ int err; ++ char __data[0]; ++}; ++ +struct trace_event_raw_xdp_redirect_template { + struct trace_entry ent; + int prog_id; @@ -37921,6 +40840,9 @@ index 0000000..bcb9d76 + unsigned int drops; + unsigned int processed; + int sched; ++ unsigned int xdp_pass; ++ unsigned int xdp_drop; ++ unsigned int xdp_redirect; + char __data[0]; +}; + @@ -37937,19 +40859,47 @@ index 0000000..bcb9d76 + +struct trace_event_raw_xdp_devmap_xmit { + struct trace_entry ent; -+ int map_id; ++ int from_ifindex; + u32 act; -+ u32 map_index; ++ int to_ifindex; + int drops; + int sent; -+ int from_ifindex; -+ int to_ifindex; + int err; + char __data[0]; +}; + ++struct trace_event_raw_mem_disconnect { ++ struct trace_entry ent; ++ const struct xdp_mem_allocator *xa; ++ u32 mem_id; ++ u32 mem_type; ++ const void *allocator; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_mem_connect { ++ struct trace_entry ent; ++ const struct xdp_mem_allocator *xa; ++ u32 mem_id; ++ u32 mem_type; ++ const void *allocator; ++ const struct xdp_rxq_info *rxq; ++ int ifindex; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_mem_return_failed { ++ struct trace_entry ent; ++ const struct page *page; ++ u32 mem_id; ++ u32 mem_type; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_xdp_exception {}; + ++struct trace_event_data_offsets_xdp_bulk_tx {}; ++ +struct trace_event_data_offsets_xdp_redirect_template {}; + +struct trace_event_data_offsets_xdp_cpumap_kthread {}; @@ -37958,6 +40908,36 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_xdp_devmap_xmit {}; + ++struct trace_event_data_offsets_mem_disconnect {}; ++ ++struct trace_event_data_offsets_mem_connect {}; ++ ++struct trace_event_data_offsets_mem_return_failed {}; ++ ++typedef void (*btf_trace_xdp_exception)(void *, const struct net_device *, const struct bpf_prog *, u32); ++ ++typedef void (*btf_trace_xdp_bulk_tx)(void *, const struct net_device *, int, int, int); ++ ++typedef void (*btf_trace_xdp_redirect)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, const struct bpf_map *, u32); ++ ++typedef void (*btf_trace_xdp_redirect_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, const struct bpf_map *, u32); ++ ++typedef void (*btf_trace_xdp_redirect_map)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, const struct bpf_map *, u32); ++ ++typedef void (*btf_trace_xdp_redirect_map_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, const struct bpf_map *, u32); ++ ++typedef void (*btf_trace_xdp_cpumap_kthread)(void *, int, unsigned int, unsigned int, int, struct xdp_cpumap_stats *); ++ ++typedef void (*btf_trace_xdp_cpumap_enqueue)(void *, int, unsigned int, unsigned int, int); ++ ++typedef void (*btf_trace_xdp_devmap_xmit)(void *, const struct net_device *, const struct net_device *, int, int, int); ++ ++typedef void (*btf_trace_mem_disconnect)(void *, const struct xdp_mem_allocator *); ++ ++typedef void (*btf_trace_mem_connect)(void *, const struct xdp_mem_allocator *, const struct xdp_rxq_info *); ++ ++typedef void (*btf_trace_mem_return_failed)(void *, const struct xdp_mem_info *, const struct page *); ++ +enum bpf_cmd { + BPF_MAP_CREATE = 0, + BPF_MAP_LOOKUP_ELEM = 1, @@ -37980,6 +40960,48 @@ index 0000000..bcb9d76 + BPF_BTF_LOAD = 18, + BPF_BTF_GET_FD_BY_ID = 19, + BPF_TASK_FD_QUERY = 20, ++ BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21, ++ BPF_MAP_FREEZE = 22, ++ BPF_BTF_GET_NEXT_ID = 23, ++ BPF_MAP_LOOKUP_BATCH = 24, ++ BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25, ++ BPF_MAP_UPDATE_BATCH = 26, ++ BPF_MAP_DELETE_BATCH = 27, ++ BPF_LINK_CREATE = 28, ++ BPF_LINK_UPDATE = 29, ++ BPF_LINK_GET_FD_BY_ID = 30, ++ BPF_LINK_GET_NEXT_ID = 31, ++ BPF_ENABLE_STATS = 32, ++ BPF_ITER_CREATE = 33, ++ BPF_LINK_DETACH = 34, ++ BPF_PROG_BIND_MAP = 35, ++}; ++ ++enum { ++ BPF_ANY = 0, ++ BPF_NOEXIST = 1, ++ BPF_EXIST = 2, ++ BPF_F_LOCK = 4, ++}; ++ ++enum { ++ BPF_F_NO_PREALLOC = 1, ++ BPF_F_NO_COMMON_LRU = 2, ++ BPF_F_NUMA_NODE = 4, ++ BPF_F_RDONLY = 8, ++ BPF_F_WRONLY = 16, ++ BPF_F_STACK_BUILD_ID = 32, ++ BPF_F_ZERO_SEED = 64, ++ BPF_F_RDONLY_PROG = 128, ++ BPF_F_WRONLY_PROG = 256, ++ BPF_F_CLONE = 512, ++ BPF_F_MMAPABLE = 1024, ++ BPF_F_PRESERVE_ELEMS = 2048, ++ BPF_F_INNER_MAP = 4096, ++}; ++ ++enum bpf_stats_type { ++ BPF_STATS_RUN_TIME = 0, +}; + +struct bpf_prog_info { @@ -38003,6 +41025,20 @@ index 0000000..bcb9d76 + __u32 nr_jited_func_lens; + __u64 jited_ksyms; + __u64 jited_func_lens; ++ __u32 btf_id; ++ __u32 func_info_rec_size; ++ __u64 func_info; ++ __u32 nr_func_info; ++ __u32 nr_line_info; ++ __u64 line_info; ++ __u64 jited_line_info; ++ __u32 nr_jited_line_info; ++ __u32 line_info_rec_size; ++ __u32 jited_line_info_rec_size; ++ __u32 nr_prog_tags; ++ __u64 prog_tags; ++ __u64 run_time_ns; ++ __u64 run_cnt; +}; + +struct bpf_map_info { @@ -38014,6 +41050,7 @@ index 0000000..bcb9d76 + __u32 map_flags; + char name[16]; + __u32 ifindex; ++ __u32 btf_vmlinux_value_type_id; + __u64 netns_dev; + __u64 netns_ino; + __u32 btf_id; @@ -38027,36 +41064,70 @@ index 0000000..bcb9d76 + __u32 id; +}; + -+struct btf_header { -+ __u16 magic; -+ __u8 version; -+ __u8 flags; -+ __u32 hdr_len; -+ __u32 type_off; -+ __u32 type_len; -+ __u32 str_off; -+ __u32 str_len; ++struct bpf_spin_lock { ++ __u32 val; +}; + -+struct btf { -+ void *data; -+ struct btf_type **types; -+ u32 *resolved_ids; -+ u32 *resolved_sizes; -+ const char *strings; -+ void *nohdr_data; -+ struct btf_header hdr; -+ u32 nr_types; -+ u32 types_size; -+ u32 data_size; -+ refcount_t refcnt; ++struct bpf_attach_target_info { ++ struct btf_func_model fmodel; ++ long int tgt_addr; ++ const char *tgt_name; ++ const struct btf_type *tgt_type; ++}; ++ ++struct bpf_link_primer { ++ struct bpf_link *link; ++ struct file *file; ++ int fd; + u32 id; -+ struct callback_head rcu; +}; + -+struct bpf_raw_tracepoint { ++enum perf_bpf_event_type { ++ PERF_BPF_EVENT_UNKNOWN = 0, ++ PERF_BPF_EVENT_PROG_LOAD = 1, ++ PERF_BPF_EVENT_PROG_UNLOAD = 2, ++ PERF_BPF_EVENT_MAX = 3, ++}; ++ ++enum bpf_audit { ++ BPF_AUDIT_LOAD = 0, ++ BPF_AUDIT_UNLOAD = 1, ++ BPF_AUDIT_MAX = 2, ++}; ++ ++struct bpf_tracing_link { ++ struct bpf_link link; ++ enum bpf_attach_type attach_type; ++ struct bpf_trampoline *trampoline; ++ struct bpf_prog *tgt_prog; ++}; ++ ++struct bpf_raw_tp_link { ++ struct bpf_link link; + struct bpf_raw_event_map *btp; -+ struct bpf_prog *prog; ++}; ++ ++struct btf_member { ++ __u32 name_off; ++ __u32 type; ++ __u32 offset; ++}; ++ ++enum btf_func_linkage { ++ BTF_FUNC_STATIC = 0, ++ BTF_FUNC_GLOBAL = 1, ++ BTF_FUNC_EXTERN = 2, ++}; ++ ++struct btf_var_secinfo { ++ __u32 type; ++ __u32 offset; ++ __u32 size; ++}; ++ ++enum sk_action { ++ SK_DROP = 0, ++ SK_PASS = 1, +}; + +struct bpf_verifier_log { @@ -38069,7 +41140,11 @@ index 0000000..bcb9d76 + +struct bpf_subprog_info { + u32 start; ++ u32 linfo_idx; + u16 stack_depth; ++ bool has_tail_call; ++ bool tail_call_reachable; ++ bool has_ld_abs; +}; + +struct bpf_id_pair { @@ -38093,21 +41168,62 @@ index 0000000..bcb9d76 + struct bpf_verifier_stack_elem *head; + int stack_size; + bool strict_alignment; ++ bool test_state_freq; + struct bpf_verifier_state *cur_state; + struct bpf_verifier_state_list **explored_states; ++ struct bpf_verifier_state_list *free_list; + struct bpf_map *used_maps[64]; + u32 used_map_cnt; + u32 id_gen; + bool explore_alu_limits; + bool allow_ptr_leaks; ++ bool allow_uninit_stack; ++ bool allow_ptr_to_map_access; ++ bool bpf_capable; ++ bool bypass_spec_v1; ++ bool bypass_spec_v4; + bool seen_direct_write; + struct bpf_insn_aux_data *insn_aux_data; ++ const struct bpf_line_info *prev_linfo; + struct bpf_verifier_log log; + struct bpf_subprog_info subprog_info[257]; + struct bpf_id_pair idmap_scratch[75]; ++ struct { ++ int *insn_state; ++ int *insn_stack; ++ int cur_stack; ++ } cfg; ++ u32 pass_cnt; + u32 subprog_cnt; ++ u32 prev_insn_processed; ++ u32 insn_processed; ++ u32 prev_jmps_processed; ++ u32 jmps_processed; ++ u64 verification_time; ++ u32 max_states_per_insn; ++ u32 total_states; ++ u32 peak_states; ++ u32 longest_mark_read_walk; ++ char type_str_buf[64]; +}; + ++struct bpf_struct_ops { ++ const struct bpf_verifier_ops *verifier_ops; ++ int (*init)(struct btf *); ++ int (*check_member)(const struct btf_type *, const struct btf_member *); ++ int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); ++ int (*reg)(void *); ++ void (*unreg)(void *); ++ const struct btf_type *type; ++ const struct btf_type *value_type; ++ const char *name; ++ struct btf_func_model func_models[64]; ++ u32 type_id; ++ u32 value_id; ++}; ++ ++typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); ++ +struct tnum { + u64 value; + u64 mask; @@ -38115,8 +41231,11 @@ index 0000000..bcb9d76 + +enum bpf_reg_liveness { + REG_LIVE_NONE = 0, -+ REG_LIVE_READ = 1, -+ REG_LIVE_WRITTEN = 2, ++ REG_LIVE_READ32 = 1, ++ REG_LIVE_READ64 = 2, ++ REG_LIVE_READ = 3, ++ REG_LIVE_WRITTEN = 4, ++ REG_LIVE_DONE = 8, +}; + +struct bpf_reg_state { @@ -38124,18 +41243,27 @@ index 0000000..bcb9d76 + union { + u16 range; + struct bpf_map *map_ptr; ++ u32 btf_id; ++ u32 mem_size; + long unsigned int raw; + }; + s32 off; + u32 id; ++ u32 ref_obj_id; + struct tnum var_off; + s64 smin_value; + s64 smax_value; + u64 umin_value; + u64 umax_value; ++ s32 s32_min_value; ++ s32 s32_max_value; ++ u32 u32_min_value; ++ u32 u32_max_value; + struct bpf_reg_state *parent; + u32 frameno; ++ s32 subreg_def; + enum bpf_reg_liveness live; ++ bool precise; +}; + +enum bpf_stack_slot_type { @@ -38150,37 +41278,74 @@ index 0000000..bcb9d76 + u8 slot_type[8]; +}; + ++struct bpf_reference_state { ++ int id; ++ int insn_idx; ++}; ++ +struct bpf_func_state { + struct bpf_reg_state regs[11]; + int callsite; + u32 frameno; + u32 subprogno; ++ int acquired_refs; ++ struct bpf_reference_state *refs; + int allocated_stack; + struct bpf_stack_state *stack; +}; + ++struct bpf_idx_pair { ++ u32 prev_idx; ++ u32 idx; ++}; ++ +struct bpf_verifier_state { + struct bpf_func_state *frame[8]; ++ struct bpf_verifier_state *parent; ++ u32 branches; ++ u32 insn_idx; + u32 curframe; ++ u32 active_spin_lock; + bool speculative; ++ u32 first_insn_idx; ++ u32 last_insn_idx; ++ struct bpf_idx_pair *jmp_history; ++ u32 jmp_history_cnt; +}; + +struct bpf_verifier_state_list { + struct bpf_verifier_state state; + struct bpf_verifier_state_list *next; ++ int miss_cnt; ++ int hit_cnt; +}; + +struct bpf_insn_aux_data { + union { + enum bpf_reg_type ptr_type; -+ long unsigned int map_state; ++ long unsigned int map_ptr_state; + s32 call_imm; + u32 alu_limit; ++ struct { ++ u32 map_index; ++ u32 map_off; ++ }; ++ struct { ++ enum bpf_reg_type reg_type; ++ union { ++ u32 btf_id; ++ u32 mem_size; ++ }; ++ } btf_var; + }; ++ u64 map_key_state; + int ctx_field_size; -+ bool seen; ++ u32 seen; + bool sanitize_stack_spill; ++ bool zext_dst; + u8 alu_state; ++ unsigned int orig_idx; ++ bool prune_point; +}; + +struct bpf_verifier_stack_elem { @@ -38188,6 +41353,24 @@ index 0000000..bcb9d76 + int insn_idx; + int prev_insn_idx; + struct bpf_verifier_stack_elem *next; ++ u32 log_pos; ++}; ++ ++enum { ++ BTF_SOCK_TYPE_INET = 0, ++ BTF_SOCK_TYPE_INET_CONN = 1, ++ BTF_SOCK_TYPE_INET_REQ = 2, ++ BTF_SOCK_TYPE_INET_TW = 3, ++ BTF_SOCK_TYPE_REQ = 4, ++ BTF_SOCK_TYPE_SOCK = 5, ++ BTF_SOCK_TYPE_SOCK_COMMON = 6, ++ BTF_SOCK_TYPE_TCP = 7, ++ BTF_SOCK_TYPE_TCP_REQ = 8, ++ BTF_SOCK_TYPE_TCP_TW = 9, ++ BTF_SOCK_TYPE_TCP6 = 10, ++ BTF_SOCK_TYPE_UDP = 11, ++ BTF_SOCK_TYPE_UDP6 = 12, ++ MAX_BTF_SOCK_TYPE = 13, +}; + +typedef void (*bpf_insn_print_t)(void *, const char *, ...); @@ -38209,7 +41392,12 @@ index 0000000..bcb9d76 + bool pkt_access; + int regno; + int access_size; ++ int mem_size; + u64 msize_max_value; ++ int ref_obj_id; ++ int func_id; ++ u32 btf_id; ++ u32 ret_btf_id; +}; + +enum reg_arg_type { @@ -38218,12 +41406,22 @@ index 0000000..bcb9d76 + DST_OP_NO_MARK = 2, +}; + ++enum stack_access_src { ++ ACCESS_DIRECT = 1, ++ ACCESS_HELPER = 2, ++}; ++ ++struct bpf_reg_types { ++ const enum bpf_reg_type types[10]; ++ u32 *btf_id; ++}; ++ +enum { -+ REASON_BOUNDS = -1, -+ REASON_TYPE = -2, -+ REASON_PATHS = -3, -+ REASON_LIMIT = -4, -+ REASON_STACK = -5, ++ REASON_BOUNDS = 4294967295, ++ REASON_TYPE = 4294967294, ++ REASON_PATHS = 4294967293, ++ REASON_LIMIT = 4294967292, ++ REASON_STACK = 4294967291, +}; + +struct bpf_sanitize_info { @@ -38244,19 +41442,31 @@ index 0000000..bcb9d76 + int mode; +}; + -+struct match_token { -+ int token; -+ const char *pattern; ++struct umd_info { ++ const char *driver_name; ++ struct file *pipe_to_umh; ++ struct file *pipe_from_umh; ++ struct path wd; ++ struct pid *tgid; +}; + -+enum { -+ MAX_OPT_ARGS = 3, ++struct bpf_preload_info { ++ char link_name[16]; ++ int link_id; ++}; ++ ++struct bpf_preload_ops { ++ struct umd_info info; ++ int (*preload)(struct bpf_preload_info *); ++ int (*finish)(); ++ struct module *owner; +}; + +enum bpf_type { + BPF_TYPE_UNSPEC = 0, + BPF_TYPE_PROG = 1, + BPF_TYPE_MAP = 2, ++ BPF_TYPE_LINK = 3, +}; + +struct map_iter { @@ -38266,13 +41476,205 @@ index 0000000..bcb9d76 + +enum { + OPT_MODE = 0, -+ OPT_ERR = 1, +}; + +struct bpf_mount_opts { + umode_t mode; +}; + ++struct bpf_pidns_info { ++ __u32 pid; ++ __u32 tgid; ++}; ++ ++typedef u64 (*btf_bpf_map_lookup_elem)(struct bpf_map *, void *); ++ ++typedef u64 (*btf_bpf_map_update_elem)(struct bpf_map *, void *, void *, u64); ++ ++typedef u64 (*btf_bpf_map_delete_elem)(struct bpf_map *, void *); ++ ++typedef u64 (*btf_bpf_map_push_elem)(struct bpf_map *, void *, u64); ++ ++typedef u64 (*btf_bpf_map_pop_elem)(struct bpf_map *, void *); ++ ++typedef u64 (*btf_bpf_map_peek_elem)(struct bpf_map *, void *); ++ ++typedef u64 (*btf_bpf_get_smp_processor_id)(); ++ ++typedef u64 (*btf_bpf_get_numa_node_id)(); ++ ++typedef u64 (*btf_bpf_ktime_get_ns)(); ++ ++typedef u64 (*btf_bpf_ktime_get_boot_ns)(); ++ ++typedef u64 (*btf_bpf_get_current_pid_tgid)(); ++ ++typedef u64 (*btf_bpf_get_current_uid_gid)(); ++ ++typedef u64 (*btf_bpf_get_current_comm)(char *, u32); ++ ++typedef u64 (*btf_bpf_spin_lock)(struct bpf_spin_lock *); ++ ++typedef u64 (*btf_bpf_spin_unlock)(struct bpf_spin_lock *); ++ ++typedef u64 (*btf_bpf_jiffies64)(); ++ ++typedef u64 (*btf_bpf_get_current_cgroup_id)(); ++ ++typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); ++ ++typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); ++ ++typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, long int *); ++ ++typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, long unsigned int *); ++ ++typedef u64 (*btf_bpf_get_ns_current_pid_tgid)(u64, u64, struct bpf_pidns_info *, u32); ++ ++typedef u64 (*btf_bpf_event_output_data)(void *, struct bpf_map *, u64, void *, u64); ++ ++typedef u64 (*btf_bpf_copy_from_user)(void *, u32, const void *); ++ ++typedef u64 (*btf_bpf_per_cpu_ptr)(const void *, u32); ++ ++typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); ++ ++union bpf_iter_link_info { ++ struct { ++ __u32 map_fd; ++ } map; ++}; ++ ++typedef int (*bpf_iter_attach_target_t)(struct bpf_prog *, union bpf_iter_link_info *, struct bpf_iter_aux_info *); ++ ++typedef void (*bpf_iter_detach_target_t)(struct bpf_iter_aux_info *); ++ ++typedef void (*bpf_iter_show_fdinfo_t)(const struct bpf_iter_aux_info *, struct seq_file *); ++ ++typedef int (*bpf_iter_fill_link_info_t)(const struct bpf_iter_aux_info *, struct bpf_link_info *); ++ ++struct bpf_iter_reg { ++ const char *target; ++ bpf_iter_attach_target_t attach_target; ++ bpf_iter_detach_target_t detach_target; ++ bpf_iter_show_fdinfo_t show_fdinfo; ++ bpf_iter_fill_link_info_t fill_link_info; ++ u32 ctx_arg_info_size; ++ struct bpf_ctx_arg_aux ctx_arg_info[2]; ++ const struct bpf_iter_seq_info *seq_info; ++}; ++ ++struct bpf_iter_meta { ++ union { ++ struct seq_file *seq; ++ }; ++ u64 session_id; ++ u64 seq_num; ++}; ++ ++struct bpf_iter_target_info { ++ struct list_head list; ++ const struct bpf_iter_reg *reg_info; ++ u32 btf_id; ++}; ++ ++struct bpf_iter_link { ++ struct bpf_link link; ++ struct bpf_iter_aux_info aux; ++ struct bpf_iter_target_info *tinfo; ++}; ++ ++struct bpf_iter_priv_data { ++ struct bpf_iter_target_info *tinfo; ++ const struct bpf_iter_seq_info *seq_info; ++ struct bpf_prog *prog; ++ u64 session_id; ++ u64 seq_num; ++ bool done_stop; ++ long: 56; ++ u8 target_private[0]; ++}; ++ ++struct bpf_iter_seq_map_info { ++ u32 map_id; ++}; ++ ++struct bpf_iter__bpf_map { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct bpf_map *map; ++ }; ++}; ++ ++struct bpf_iter_seq_task_common { ++ struct pid_namespace *ns; ++}; ++ ++struct bpf_iter_seq_task_info { ++ struct bpf_iter_seq_task_common common; ++ u32 tid; ++}; ++ ++struct bpf_iter__task { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct task_struct *task; ++ }; ++}; ++ ++struct bpf_iter_seq_task_file_info { ++ struct bpf_iter_seq_task_common common; ++ struct task_struct *task; ++ struct files_struct *files; ++ u32 tid; ++ u32 fd; ++}; ++ ++struct bpf_iter__task_file { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct task_struct *task; ++ }; ++ u32 fd; ++ union { ++ struct file *file; ++ }; ++}; ++ ++struct bpf_iter_seq_prog_info { ++ u32 prog_id; ++}; ++ ++struct bpf_iter__bpf_prog { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct bpf_prog *prog; ++ }; ++}; ++ ++struct bpf_iter__bpf_map_elem { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct bpf_map *map; ++ }; ++ union { ++ void *key; ++ }; ++ union { ++ void *value; ++ }; ++}; ++ +struct pcpu_freelist_node; + +struct pcpu_freelist_head { @@ -38286,6 +41688,7 @@ index 0000000..bcb9d76 + +struct pcpu_freelist { + struct pcpu_freelist_head *freelist; ++ struct pcpu_freelist_head extralist; +}; + +struct bpf_lru_node { @@ -38349,7 +41752,10 @@ index 0000000..bcb9d76 + +struct bucket { + struct hlist_nulls_head head; -+ raw_spinlock_t lock; ++ union { ++ raw_spinlock_t raw_lock; ++ spinlock_t lock; ++ }; +}; + +struct htab_elem; @@ -38388,6 +41794,7 @@ index 0000000..bcb9d76 + union { + struct bpf_htab *htab; + struct pcpu_freelist_node fnode; ++ struct htab_elem *batch_flink; + }; + }; + }; @@ -38400,6 +41807,25 @@ index 0000000..bcb9d76 + char key[0]; +}; + ++struct bpf_iter_seq_hash_map_info { ++ struct bpf_map *map; ++ struct bpf_htab *htab; ++ void *percpu_value_buf; ++ u32 bucket_id; ++ u32 skip_elems; ++}; ++ ++struct bpf_iter_seq_array_map_info { ++ struct bpf_map *map; ++ void *percpu_value_buf; ++ u32 index; ++}; ++ ++struct prog_poke_elem { ++ struct list_head list; ++ struct bpf_prog_aux *aux; ++}; ++ +enum bpf_lru_list_type { + BPF_LRU_LIST_T_ACTIVE = 0, + BPF_LRU_LIST_T_INACTIVE = 1, @@ -38427,7 +41853,7 @@ index 0000000..bcb9d76 + size_t n_entries; + size_t max_prefixlen; + size_t data_size; -+ raw_spinlock_t lock; ++ spinlock_t lock; + long: 32; + long: 64; + long: 64; @@ -38437,14 +41863,1611 @@ index 0000000..bcb9d76 +struct bpf_cgroup_storage_map { + struct bpf_map map; + spinlock_t lock; -+ struct bpf_prog *prog; + struct rb_root root; + struct list_head list; + long: 64; + long: 64; + long: 64; ++ long: 64; +}; + ++struct bpf_queue_stack { ++ struct bpf_map map; ++ raw_spinlock_t lock; ++ u32 head; ++ u32 tail; ++ u32 size; ++ char elements[0]; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++enum { ++ BPF_RB_NO_WAKEUP = 1, ++ BPF_RB_FORCE_WAKEUP = 2, ++}; ++ ++enum { ++ BPF_RB_AVAIL_DATA = 0, ++ BPF_RB_RING_SIZE = 1, ++ BPF_RB_CONS_POS = 2, ++ BPF_RB_PROD_POS = 3, ++}; ++ ++enum { ++ BPF_RINGBUF_BUSY_BIT = 2147483648, ++ BPF_RINGBUF_DISCARD_BIT = 1073741824, ++ BPF_RINGBUF_HDR_SZ = 8, ++}; ++ ++struct bpf_ringbuf { ++ wait_queue_head_t waitq; ++ struct irq_work work; ++ u64 mask; ++ struct page **pages; ++ int nr_pages; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ spinlock_t spinlock; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long unsigned int consumer_pos; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long unsigned int producer_pos; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ char data[0]; ++}; ++ ++struct bpf_ringbuf_map { ++ struct bpf_map map; ++ struct bpf_map_memory memory; ++ struct bpf_ringbuf *rb; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct bpf_ringbuf_hdr { ++ u32 len; ++ u32 pg_off; ++}; ++ ++typedef u64 (*btf_bpf_ringbuf_reserve)(struct bpf_map *, u64, u64); ++ ++typedef u64 (*btf_bpf_ringbuf_submit)(void *, u64); ++ ++typedef u64 (*btf_bpf_ringbuf_discard)(void *, u64); ++ ++typedef u64 (*btf_bpf_ringbuf_output)(struct bpf_map *, void *, u64, u64); ++ ++typedef u64 (*btf_bpf_ringbuf_query)(struct bpf_map *, u64); ++ +struct btf_enum { + __u32 name_off; + __s32 val; @@ -38456,465 +43479,269 @@ index 0000000..bcb9d76 + __u32 nelems; +}; + -+struct btf_member { ++struct btf_param { + __u32 name_off; + __u32 type; -+ __u32 offset; +}; + -+enum verifier_phase { -+ CHECK_META = 0, -+ CHECK_TYPE = 1, ++enum { ++ BTF_VAR_STATIC = 0, ++ BTF_VAR_GLOBAL_ALLOCATED = 1, ++ BTF_VAR_GLOBAL_EXTERN = 2, +}; + -+struct resolve_vertex { -+ const struct btf_type *t; -+ u32 type_id; -+ u16 next_member; ++struct btf_var { ++ __u32 linkage; +}; + -+enum visit_state { -+ NOT_VISITED = 0, -+ VISITED = 1, -+ RESOLVED = 2, ++struct bpf_flow_keys { ++ __u16 nhoff; ++ __u16 thoff; ++ __u16 addr_proto; ++ __u8 is_frag; ++ __u8 is_first_frag; ++ __u8 is_encap; ++ __u8 ip_proto; ++ __be16 n_proto; ++ __be16 sport; ++ __be16 dport; ++ union { ++ struct { ++ __be32 ipv4_src; ++ __be32 ipv4_dst; ++ }; ++ struct { ++ __u32 ipv6_src[4]; ++ __u32 ipv6_dst[4]; ++ }; ++ }; ++ __u32 flags; ++ __be32 flow_label; +}; + -+enum resolve_mode { -+ RESOLVE_TBD = 0, -+ RESOLVE_PTR = 1, -+ RESOLVE_STRUCT_OR_ARRAY = 2, ++struct bpf_sock { ++ __u32 bound_dev_if; ++ __u32 family; ++ __u32 type; ++ __u32 protocol; ++ __u32 mark; ++ __u32 priority; ++ __u32 src_ip4; ++ __u32 src_ip6[4]; ++ __u32 src_port; ++ __be16 dst_port; ++ __u32 dst_ip4; ++ __u32 dst_ip6[4]; ++ __u32 state; ++ __s32 rx_queue_mapping; +}; + -+struct btf_sec_info { -+ u32 off; -+ u32 len; ++struct __sk_buff { ++ __u32 len; ++ __u32 pkt_type; ++ __u32 mark; ++ __u32 queue_mapping; ++ __u32 protocol; ++ __u32 vlan_present; ++ __u32 vlan_tci; ++ __u32 vlan_proto; ++ __u32 priority; ++ __u32 ingress_ifindex; ++ __u32 ifindex; ++ __u32 tc_index; ++ __u32 cb[5]; ++ __u32 hash; ++ __u32 tc_classid; ++ __u32 data; ++ __u32 data_end; ++ __u32 napi_id; ++ __u32 family; ++ __u32 remote_ip4; ++ __u32 local_ip4; ++ __u32 remote_ip6[4]; ++ __u32 local_ip6[4]; ++ __u32 remote_port; ++ __u32 local_port; ++ __u32 data_meta; ++ union { ++ struct bpf_flow_keys *flow_keys; ++ }; ++ __u64 tstamp; ++ __u32 wire_len; ++ __u32 gso_segs; ++ union { ++ struct bpf_sock *sk; ++ }; ++ __u32 gso_size; +}; + -+struct btf_verifier_env { -+ struct btf *btf; -+ u8 *visit_states; -+ struct resolve_vertex stack[32]; -+ struct bpf_verifier_log log; -+ u32 log_type_id; -+ u32 top_stack; -+ enum verifier_phase phase; -+ enum resolve_mode resolve_mode; ++struct xdp_md { ++ __u32 data; ++ __u32 data_end; ++ __u32 data_meta; ++ __u32 ingress_ifindex; ++ __u32 rx_queue_index; ++ __u32 egress_ifindex; +}; + -+struct btf_kind_operations { -+ s32 (*check_meta)(struct btf_verifier_env *, const struct btf_type *, u32); -+ int (*resolve)(struct btf_verifier_env *, const struct resolve_vertex *); -+ int (*check_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); -+ void (*log_details)(struct btf_verifier_env *, const struct btf_type *); -+ void (*seq_show)(const struct btf *, const struct btf_type *, u32, void *, u8, struct seq_file *); ++struct sk_msg_md { ++ union { ++ void *data; ++ }; ++ union { ++ void *data_end; ++ }; ++ __u32 family; ++ __u32 remote_ip4; ++ __u32 local_ip4; ++ __u32 remote_ip6[4]; ++ __u32 local_ip6[4]; ++ __u32 remote_port; ++ __u32 local_port; ++ __u32 size; ++ union { ++ struct bpf_sock *sk; ++ }; +}; + -+enum xdp_mem_type { -+ MEM_TYPE_PAGE_SHARED = 0, -+ MEM_TYPE_PAGE_ORDER0 = 1, -+ MEM_TYPE_PAGE_POOL = 2, -+ MEM_TYPE_ZERO_COPY = 3, -+ MEM_TYPE_MAX = 4, ++struct sk_reuseport_md { ++ union { ++ void *data; ++ }; ++ union { ++ void *data_end; ++ }; ++ __u32 len; ++ __u32 eth_protocol; ++ __u32 ip_protocol; ++ __u32 bind_inany; ++ __u32 hash; +}; + -+struct xdp_buff { ++struct bpf_sock_addr { ++ __u32 user_family; ++ __u32 user_ip4; ++ __u32 user_ip6[4]; ++ __u32 user_port; ++ __u32 family; ++ __u32 type; ++ __u32 protocol; ++ __u32 msg_src_ip4; ++ __u32 msg_src_ip6[4]; ++ union { ++ struct bpf_sock *sk; ++ }; ++}; ++ ++struct bpf_sock_ops { ++ __u32 op; ++ union { ++ __u32 args[4]; ++ __u32 reply; ++ __u32 replylong[4]; ++ }; ++ __u32 family; ++ __u32 remote_ip4; ++ __u32 local_ip4; ++ __u32 remote_ip6[4]; ++ __u32 local_ip6[4]; ++ __u32 remote_port; ++ __u32 local_port; ++ __u32 is_fullsock; ++ __u32 snd_cwnd; ++ __u32 srtt_us; ++ __u32 bpf_sock_ops_cb_flags; ++ __u32 state; ++ __u32 rtt_min; ++ __u32 snd_ssthresh; ++ __u32 rcv_nxt; ++ __u32 snd_nxt; ++ __u32 snd_una; ++ __u32 mss_cache; ++ __u32 ecn_flags; ++ __u32 rate_delivered; ++ __u32 rate_interval_us; ++ __u32 packets_out; ++ __u32 retrans_out; ++ __u32 total_retrans; ++ __u32 segs_in; ++ __u32 data_segs_in; ++ __u32 segs_out; ++ __u32 data_segs_out; ++ __u32 lost_out; ++ __u32 sacked_out; ++ __u32 sk_txhash; ++ __u64 bytes_received; ++ __u64 bytes_acked; ++ union { ++ struct bpf_sock *sk; ++ }; ++ union { ++ void *skb_data; ++ }; ++ union { ++ void *skb_data_end; ++ }; ++ __u32 skb_len; ++ __u32 skb_tcp_flags; ++}; ++ ++struct bpf_cgroup_dev_ctx { ++ __u32 access_type; ++ __u32 major; ++ __u32 minor; ++}; ++ ++struct bpf_sysctl { ++ __u32 write; ++ __u32 file_pos; ++}; ++ ++struct bpf_sockopt { ++ union { ++ struct bpf_sock *sk; ++ }; ++ union { ++ void *optval; ++ }; ++ union { ++ void *optval_end; ++ }; ++ __s32 level; ++ __s32 optname; ++ __s32 optlen; ++ __s32 retval; ++}; ++ ++struct bpf_sk_lookup { ++ union { ++ struct bpf_sock *sk; ++ }; ++ __u32 family; ++ __u32 protocol; ++ __u32 remote_ip4; ++ __u32 remote_ip6[4]; ++ __u32 remote_port; ++ __u32 local_ip4; ++ __u32 local_ip6[4]; ++ __u32 local_port; ++}; ++ ++struct sk_reuseport_kern { ++ struct sk_buff *skb; ++ struct sock *sk; ++ struct sock *selected_sk; ++ void *data_end; ++ u32 hash; ++ u32 reuseport_id; ++ bool bind_inany; ++}; ++ ++struct bpf_flow_dissector { ++ struct bpf_flow_keys *flow_keys; ++ const struct sk_buff *skb; + void *data; + void *data_end; -+ void *data_meta; -+ void *data_hard_start; -+ long unsigned int handle; -+ struct xdp_rxq_info *rxq; -+}; -+ -+enum net_device_flags { -+ IFF_UP = 1, -+ IFF_BROADCAST = 2, -+ IFF_DEBUG = 4, -+ IFF_LOOPBACK = 8, -+ IFF_POINTOPOINT = 16, -+ IFF_NOTRAILERS = 32, -+ IFF_RUNNING = 64, -+ IFF_NOARP = 128, -+ IFF_PROMISC = 256, -+ IFF_ALLMULTI = 512, -+ IFF_MASTER = 1024, -+ IFF_SLAVE = 2048, -+ IFF_MULTICAST = 4096, -+ IFF_PORTSEL = 8192, -+ IFF_AUTOMEDIA = 16384, -+ IFF_DYNAMIC = 32768, -+ IFF_LOWER_UP = 65536, -+ IFF_DORMANT = 131072, -+ IFF_ECHO = 262144, -+}; -+ -+enum netdev_cmd { -+ NETDEV_UP = 1, -+ NETDEV_DOWN = 2, -+ NETDEV_REBOOT = 3, -+ NETDEV_CHANGE = 4, -+ NETDEV_REGISTER = 5, -+ NETDEV_UNREGISTER = 6, -+ NETDEV_CHANGEMTU = 7, -+ NETDEV_CHANGEADDR = 8, -+ NETDEV_GOING_DOWN = 9, -+ NETDEV_CHANGENAME = 10, -+ NETDEV_FEAT_CHANGE = 11, -+ NETDEV_BONDING_FAILOVER = 12, -+ NETDEV_PRE_UP = 13, -+ NETDEV_PRE_TYPE_CHANGE = 14, -+ NETDEV_POST_TYPE_CHANGE = 15, -+ NETDEV_POST_INIT = 16, -+ NETDEV_RELEASE = 17, -+ NETDEV_NOTIFY_PEERS = 18, -+ NETDEV_JOIN = 19, -+ NETDEV_CHANGEUPPER = 20, -+ NETDEV_RESEND_IGMP = 21, -+ NETDEV_PRECHANGEMTU = 22, -+ NETDEV_CHANGEINFODATA = 23, -+ NETDEV_BONDING_INFO = 24, -+ NETDEV_PRECHANGEUPPER = 25, -+ NETDEV_CHANGELOWERSTATE = 26, -+ NETDEV_UDP_TUNNEL_PUSH_INFO = 27, -+ NETDEV_UDP_TUNNEL_DROP_INFO = 28, -+ NETDEV_CHANGE_TX_QUEUE_LEN = 29, -+ NETDEV_CVLAN_FILTER_PUSH_INFO = 30, -+ NETDEV_CVLAN_FILTER_DROP_INFO = 31, -+ NETDEV_SVLAN_FILTER_PUSH_INFO = 32, -+ NETDEV_SVLAN_FILTER_DROP_INFO = 33, -+}; -+ -+struct netdev_notifier_info { -+ struct net_device *dev; -+ struct netlink_ext_ack *extack; -+}; -+ -+struct xdp_bulk_queue { -+ struct xdp_frame *q[16]; -+ struct net_device *dev_rx; -+ unsigned int count; -+}; -+ -+struct bpf_dtab; -+ -+struct bpf_dtab_netdev { -+ struct net_device *dev; -+ struct bpf_dtab *dtab; -+ unsigned int bit; -+ struct xdp_bulk_queue *bulkq; -+ struct callback_head rcu; -+}; -+ -+struct bpf_dtab { -+ struct bpf_map map; -+ struct bpf_dtab_netdev **netdev_map; -+ long unsigned int *flush_needed; -+ struct list_head list; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct skb_frag_struct { -+ struct { -+ struct page *p; -+ } page; -+ __u32 page_offset; -+ __u32 size; -+}; -+ -+typedef struct skb_frag_struct skb_frag_t; -+ -+struct skb_shared_hwtstamps { -+ ktime_t hwtstamp; -+}; -+ -+struct skb_shared_info { -+ __u8 __unused; -+ __u8 meta_len; -+ __u8 nr_frags; -+ __u8 tx_flags; -+ short unsigned int gso_size; -+ short unsigned int gso_segs; -+ struct sk_buff *frag_list; -+ struct skb_shared_hwtstamps hwtstamps; -+ unsigned int gso_type; -+ u32 tskey; -+ atomic_t dataref; -+ void *destructor_arg; -+ skb_frag_t frags[17]; -+}; -+ -+struct ptr_ring { -+ int producer; -+ spinlock_t producer_lock; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ int consumer_head; -+ int consumer_tail; -+ spinlock_t consumer_lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ int size; -+ int batch; -+ void **queue; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_bulk_queue___2 { -+ void *q[8]; -+ unsigned int count; -+}; -+ -+struct bpf_cpu_map_entry { -+ u32 cpu; -+ int map_id; -+ u32 qsize; -+ struct xdp_bulk_queue___2 *bulkq; -+ struct ptr_ring *queue; -+ struct task_struct *kthread; -+ struct work_struct kthread_stop_wq; -+ atomic_t refcnt; -+ struct callback_head rcu; -+}; -+ -+struct bpf_cpu_map { -+ struct bpf_map map; -+ struct bpf_cpu_map_entry **cpu_map; -+ long unsigned int *flush_needed; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_umem_props { -+ u64 chunk_mask; -+ u64 size; -+}; -+ -+struct xsk_queue; -+ -+struct xdp_umem_page; -+ -+struct xdp_umem { -+ struct xsk_queue *fq; -+ struct xsk_queue *cq; -+ struct xdp_umem_page *pages; -+ struct xdp_umem_props props; -+ u32 headroom; -+ u32 chunk_size_nohr; -+ struct user_struct *user; -+ long unsigned int address; -+ refcount_t users; -+ struct work_struct work; -+ struct page **pgs; -+ u32 npgs; -+ struct net_device *dev; -+ u16 queue_id; -+ bool zc; -+ spinlock_t xsk_list_lock; -+ struct list_head xsk_list; -+}; -+ -+struct xdp_umem_page { -+ void *addr; -+ dma_addr_t dma; -+}; -+ -+struct xdp_sock { -+ struct sock sk; -+ struct xsk_queue *rx; -+ struct net_device *dev; -+ struct xdp_umem *umem; -+ struct list_head flush_node; -+ u16 queue_id; -+ long: 48; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xsk_queue *tx; -+ struct list_head list; -+ bool zc; -+ struct mutex mutex; -+ spinlock_t tx_completion_lock; -+ u64 rx_dropped; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xsk_map { -+ struct bpf_map map; -+ struct xdp_sock **xsk_map; -+ struct list_head *flush_list; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct rhlist_head { -+ struct rhash_head rhead; -+ struct rhlist_head *next; -+}; -+ -+struct bucket_table { -+ unsigned int size; -+ unsigned int nest; -+ unsigned int rehash; -+ u32 hash_rnd; -+ unsigned int locks_mask; -+ spinlock_t *locks; -+ struct list_head walkers; -+ struct callback_head rcu; -+ struct bucket_table *future_tbl; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct rhash_head *buckets[0]; -+}; -+ -+struct bpf_offload_dev { -+ struct list_head netdevs; -+}; -+ -+struct bpf_offload_netdev { -+ struct rhash_head l; -+ struct net_device *netdev; -+ struct bpf_offload_dev *offdev; -+ struct list_head progs; -+ struct list_head maps; -+ struct list_head offdev_netdevs; -+}; -+ -+struct ns_get_path_bpf_prog_args { -+ struct bpf_prog *prog; -+ struct bpf_prog_info *info; -+}; -+ -+struct ns_get_path_bpf_map_args { -+ struct bpf_offloaded_map *offmap; -+ struct bpf_map_info *info; -+}; -+ -+enum sk_action { -+ SK_DROP = 0, -+ SK_PASS = 1, -+}; -+ -+enum { -+ BPF_SOCK_OPS_VOID = 0, -+ BPF_SOCK_OPS_TIMEOUT_INIT = 1, -+ BPF_SOCK_OPS_RWND_INIT = 2, -+ BPF_SOCK_OPS_TCP_CONNECT_CB = 3, -+ BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 4, -+ BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 5, -+ BPF_SOCK_OPS_NEEDS_ECN = 6, -+ BPF_SOCK_OPS_BASE_RTT = 7, -+ BPF_SOCK_OPS_RTO_CB = 8, -+ BPF_SOCK_OPS_RETRANS_CB = 9, -+ BPF_SOCK_OPS_STATE_CB = 10, -+ BPF_SOCK_OPS_TCP_LISTEN_CB = 11, -+}; -+ -+enum sock_type { -+ SOCK_STREAM = 1, -+ SOCK_DGRAM = 2, -+ SOCK_RAW = 3, -+ SOCK_RDM = 4, -+ SOCK_SEQPACKET = 5, -+ SOCK_DCCP = 6, -+ SOCK_PACKET = 10, -+}; -+ -+enum { -+ NETIF_F_SG_BIT = 0, -+ NETIF_F_IP_CSUM_BIT = 1, -+ __UNUSED_NETIF_F_1 = 2, -+ NETIF_F_HW_CSUM_BIT = 3, -+ NETIF_F_IPV6_CSUM_BIT = 4, -+ NETIF_F_HIGHDMA_BIT = 5, -+ NETIF_F_FRAGLIST_BIT = 6, -+ NETIF_F_HW_VLAN_CTAG_TX_BIT = 7, -+ NETIF_F_HW_VLAN_CTAG_RX_BIT = 8, -+ NETIF_F_HW_VLAN_CTAG_FILTER_BIT = 9, -+ NETIF_F_VLAN_CHALLENGED_BIT = 10, -+ NETIF_F_GSO_BIT = 11, -+ NETIF_F_LLTX_BIT = 12, -+ NETIF_F_NETNS_LOCAL_BIT = 13, -+ NETIF_F_GRO_BIT = 14, -+ NETIF_F_LRO_BIT = 15, -+ NETIF_F_GSO_SHIFT = 16, -+ NETIF_F_TSO_BIT = 16, -+ NETIF_F_GSO_ROBUST_BIT = 17, -+ NETIF_F_TSO_ECN_BIT = 18, -+ NETIF_F_TSO_MANGLEID_BIT = 19, -+ NETIF_F_TSO6_BIT = 20, -+ NETIF_F_FSO_BIT = 21, -+ NETIF_F_GSO_GRE_BIT = 22, -+ NETIF_F_GSO_GRE_CSUM_BIT = 23, -+ NETIF_F_GSO_IPXIP4_BIT = 24, -+ NETIF_F_GSO_IPXIP6_BIT = 25, -+ NETIF_F_GSO_UDP_TUNNEL_BIT = 26, -+ NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT = 27, -+ NETIF_F_GSO_PARTIAL_BIT = 28, -+ NETIF_F_GSO_TUNNEL_REMCSUM_BIT = 29, -+ NETIF_F_GSO_SCTP_BIT = 30, -+ NETIF_F_GSO_ESP_BIT = 31, -+ NETIF_F_GSO_UDP_BIT = 32, -+ NETIF_F_GSO_UDP_L4_BIT = 33, -+ NETIF_F_GSO_LAST = 33, -+ NETIF_F_FCOE_CRC_BIT = 34, -+ NETIF_F_SCTP_CRC_BIT = 35, -+ NETIF_F_FCOE_MTU_BIT = 36, -+ NETIF_F_NTUPLE_BIT = 37, -+ NETIF_F_RXHASH_BIT = 38, -+ NETIF_F_RXCSUM_BIT = 39, -+ NETIF_F_NOCACHE_COPY_BIT = 40, -+ NETIF_F_LOOPBACK_BIT = 41, -+ NETIF_F_RXFCS_BIT = 42, -+ NETIF_F_RXALL_BIT = 43, -+ NETIF_F_HW_VLAN_STAG_TX_BIT = 44, -+ NETIF_F_HW_VLAN_STAG_RX_BIT = 45, -+ NETIF_F_HW_VLAN_STAG_FILTER_BIT = 46, -+ NETIF_F_HW_L2FW_DOFFLOAD_BIT = 47, -+ NETIF_F_HW_TC_BIT = 48, -+ NETIF_F_HW_ESP_BIT = 49, -+ NETIF_F_HW_ESP_TX_CSUM_BIT = 50, -+ NETIF_F_RX_UDP_TUNNEL_PORT_BIT = 51, -+ NETIF_F_HW_TLS_TX_BIT = 52, -+ NETIF_F_HW_TLS_RX_BIT = 53, -+ NETIF_F_GRO_HW_BIT = 54, -+ NETIF_F_HW_TLS_RECORD_BIT = 55, -+ NETDEV_FEATURE_COUNT = 56, +}; + +struct inet_listen_hashbucket { @@ -38970,70 +43797,103 @@ index 0000000..bcb9d76 +}; + +struct tcp_fastopen_context { -+ struct crypto_cipher *tfm; -+ __u8 key[16]; ++ siphash_key_t key[2]; ++ int num; + struct callback_head rcu; +}; + -+enum { -+ 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_SCTP = 132, -+ IPPROTO_UDPLITE = 136, -+ IPPROTO_MPLS = 137, -+ IPPROTO_RAW = 255, -+ IPPROTO_MAX = 256, ++struct xdp_txq_info { ++ struct net_device *dev; +}; + -+struct sk_msg_buff { ++struct xdp_buff { + void *data; + void *data_end; -+ __u32 apply_bytes; -+ __u32 cork_bytes; -+ int sg_copybreak; -+ int sg_start; -+ int sg_curr; -+ int sg_end; -+ struct scatterlist sg_data[17]; -+ bool sg_copy[17]; -+ __u32 flags; -+ struct sock *sk_redir; ++ void *data_meta; ++ void *data_hard_start; ++ struct xdp_rxq_info *rxq; ++ struct xdp_txq_info *txq; ++ u32 frame_sz; ++}; ++ ++struct bpf_sock_addr_kern { + struct sock *sk; -+ struct sk_buff *skb; -+ struct list_head list; ++ struct sockaddr *uaddr; ++ u64 tmp_reg; ++ void *t_ctx; +}; + +struct bpf_sock_ops_kern { + struct sock *sk; -+ u32 op; + union { + u32 args[4]; + u32 reply; + u32 replylong[4]; + }; -+ u32 is_fullsock; ++ struct sk_buff *syn_skb; ++ struct sk_buff *skb; ++ void *skb_data_end; ++ u8 op; ++ u8 is_fullsock; ++ u8 remaining_opt_len; + u64 temp; +}; + ++struct bpf_sysctl_kern { ++ struct ctl_table_header *head; ++ struct ctl_table *table; ++ void *cur_val; ++ size_t cur_len; ++ void *new_val; ++ size_t new_len; ++ int new_updated; ++ int write; ++ loff_t *ppos; ++ u64 tmp_reg; ++}; ++ ++struct bpf_sockopt_kern { ++ struct sock *sk; ++ u8 *optval; ++ u8 *optval_end; ++ s32 level; ++ s32 optname; ++ s32 optlen; ++ s32 retval; ++}; ++ ++struct bpf_sk_lookup_kern { ++ u16 family; ++ u16 protocol; ++ __be16 sport; ++ u16 dport; ++ struct { ++ __be32 saddr; ++ __be32 daddr; ++ } v4; ++ struct { ++ const struct in6_addr *saddr; ++ const struct in6_addr *daddr; ++ } v6; ++ struct sock *selected_sk; ++ bool no_reuseport; ++}; ++ ++struct lwtunnel_state { ++ __u16 type; ++ __u16 flags; ++ __u16 headroom; ++ atomic_t refcnt; ++ int (*orig_output)(struct net *, struct sock *, struct sk_buff *); ++ int (*orig_input)(struct sk_buff *); ++ struct callback_head rcu; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ __u8 data[0]; ++}; ++ +struct sock_reuseport { + struct callback_head rcu; + u16 max_socks; @@ -39046,439 +43906,6 @@ index 0000000..bcb9d76 + struct sock *socks[0]; +}; + -+enum sock_flags { -+ SOCK_DEAD = 0, -+ SOCK_DONE = 1, -+ SOCK_URGINLINE = 2, -+ SOCK_KEEPOPEN = 3, -+ SOCK_LINGER = 4, -+ SOCK_DESTROY = 5, -+ SOCK_BROADCAST = 6, -+ SOCK_TIMESTAMP = 7, -+ SOCK_ZAPPED = 8, -+ SOCK_USE_WRITE_QUEUE = 9, -+ SOCK_DBG = 10, -+ SOCK_RCVTSTAMP = 11, -+ SOCK_RCVTSTAMPNS = 12, -+ SOCK_LOCALROUTE = 13, -+ SOCK_QUEUE_SHRUNK = 14, -+ SOCK_MEMALLOC = 15, -+ SOCK_TIMESTAMPING_RX_SOFTWARE = 16, -+ SOCK_FASYNC = 17, -+ SOCK_RXQ_OVFL = 18, -+ SOCK_ZEROCOPY = 19, -+ SOCK_WIFI_STATUS = 20, -+ SOCK_NOFCS = 21, -+ SOCK_FILTER_LOCKED = 22, -+ SOCK_SELECT_ERR_QUEUE = 23, -+ SOCK_RCU_FREE = 24, -+ SOCK_TXTIME = 25, -+ SOCK_COMP = 26, -+}; -+ -+struct strp_stats { -+ long long unsigned int msgs; -+ long long unsigned int bytes; -+ unsigned int mem_fail; -+ unsigned int need_more_hdr; -+ unsigned int msg_too_big; -+ unsigned int msg_timeouts; -+ unsigned int bad_hdr_len; -+}; -+ -+struct strparser; -+ -+struct strp_callbacks { -+ int (*parse_msg)(struct strparser *, struct sk_buff *); -+ void (*rcv_msg)(struct strparser *, struct sk_buff *); -+ int (*read_sock_done)(struct strparser *, int); -+ void (*abort_parser)(struct strparser *, int); -+ void (*lock)(struct strparser *); -+ void (*unlock)(struct strparser *); -+}; -+ -+struct strparser { -+ struct sock *sk; -+ u32 stopped: 1; -+ u32 paused: 1; -+ u32 aborted: 1; -+ u32 interrupted: 1; -+ u32 unrecov_intr: 1; -+ struct sk_buff **skb_nextp; -+ struct sk_buff *skb_head; -+ unsigned int need_bytes; -+ struct delayed_work msg_timer_work; -+ struct work_struct work; -+ struct strp_stats stats; -+ struct strp_callbacks cb; -+}; -+ -+struct fastopen_queue { -+ struct request_sock *rskq_rst_head; -+ struct request_sock *rskq_rst_tail; -+ spinlock_t lock; -+ int qlen; -+ int max_qlen; -+ struct tcp_fastopen_context *ctx; -+}; -+ -+struct request_sock_queue { -+ spinlock_t rskq_lock; -+ u8 rskq_defer_accept; -+ u32 synflood_warned; -+ atomic_t qlen; -+ atomic_t young; -+ struct request_sock *rskq_accept_head; -+ struct request_sock *rskq_accept_tail; -+ struct fastopen_queue fastopenq; -+}; -+ -+struct ip_options { -+ __be32 faddr; -+ __be32 nexthop; -+ unsigned char optlen; -+ unsigned char srr; -+ unsigned char rr; -+ unsigned char ts; -+ unsigned char is_strictroute: 1; -+ unsigned char srr_is_hit: 1; -+ unsigned char is_changed: 1; -+ unsigned char rr_needaddr: 1; -+ unsigned char ts_needtime: 1; -+ unsigned char ts_needaddr: 1; -+ unsigned char router_alert; -+ unsigned char cipso; -+ unsigned char __pad2; -+ unsigned char __data[0]; -+}; -+ -+struct ip_options_rcu { -+ struct callback_head rcu; -+ struct ip_options opt; -+}; -+ -+struct ipv6_opt_hdr; -+ -+struct ipv6_rt_hdr; -+ -+struct ipv6_txoptions { -+ refcount_t refcnt; -+ int tot_len; -+ __u16 opt_flen; -+ __u16 opt_nflen; -+ struct ipv6_opt_hdr *hopopt; -+ struct ipv6_opt_hdr *dst0opt; -+ struct ipv6_rt_hdr *srcrt; -+ struct ipv6_opt_hdr *dst1opt; -+ struct callback_head rcu; -+}; -+ -+struct inet_cork { -+ unsigned int flags; -+ __be32 addr; -+ struct ip_options *opt; -+ unsigned int fragsize; -+ int length; -+ struct dst_entry *dst; -+ u8 tx_flags; -+ __u8 ttl; -+ __s16 tos; -+ char priority; -+ __u16 gso_size; -+ u64 transmit_time; -+}; -+ -+struct inet_cork_full { -+ struct inet_cork base; -+ struct flowi fl; -+}; -+ -+struct ipv6_pinfo; -+ -+struct ip_mc_socklist; -+ -+struct inet_sock { -+ struct sock sk; -+ struct ipv6_pinfo *pinet6; -+ __be32 inet_saddr; -+ __s16 uc_ttl; -+ __u16 cmsg_flags; -+ __be16 inet_sport; -+ __u16 inet_id; -+ struct ip_options_rcu *inet_opt; -+ int rx_dst_ifindex; -+ __u8 tos; -+ __u8 min_ttl; -+ __u8 mc_ttl; -+ __u8 pmtudisc; -+ __u8 recverr: 1; -+ __u8 is_icsk: 1; -+ __u8 freebind: 1; -+ __u8 hdrincl: 1; -+ __u8 mc_loop: 1; -+ __u8 transparent: 1; -+ __u8 mc_all: 1; -+ __u8 nodefrag: 1; -+ __u8 bind_address_no_port: 1; -+ __u8 defer_connect: 1; -+ __u8 rcv_tos; -+ __u8 convert_csum; -+ int uc_index; -+ int mc_index; -+ __be32 mc_addr; -+ struct ip_mc_socklist *mc_list; -+ struct inet_cork_full cork; -+}; -+ -+struct in6_pktinfo { -+ struct in6_addr ipi6_addr; -+ int ipi6_ifindex; -+}; -+ -+struct inet6_cork { -+ struct ipv6_txoptions *opt; -+ u8 hop_limit; -+ u8 tclass; -+}; -+ -+struct ipv6_mc_socklist; -+ -+struct ipv6_ac_socklist; -+ -+struct ipv6_fl_socklist; -+ -+struct ipv6_pinfo { -+ struct in6_addr saddr; -+ struct in6_pktinfo sticky_pktinfo; -+ const struct in6_addr *daddr_cache; -+ __be32 flow_label; -+ __u32 frag_size; -+ __u16 __unused_1: 7; -+ __s16 hop_limit: 9; -+ __u16 mc_loop: 1; -+ __u16 __unused_2: 6; -+ __s16 mcast_hops: 9; -+ int ucast_oif; -+ int mcast_oif; -+ union { -+ struct { -+ __u16 srcrt: 1; -+ __u16 osrcrt: 1; -+ __u16 rxinfo: 1; -+ __u16 rxoinfo: 1; -+ __u16 rxhlim: 1; -+ __u16 rxohlim: 1; -+ __u16 hopopts: 1; -+ __u16 ohopopts: 1; -+ __u16 dstopts: 1; -+ __u16 odstopts: 1; -+ __u16 rxflow: 1; -+ __u16 rxtclass: 1; -+ __u16 rxpmtu: 1; -+ __u16 rxorigdstaddr: 1; -+ __u16 recvfragsize: 1; -+ } bits; -+ __u16 all; -+ } rxopt; -+ __u16 recverr: 1; -+ __u16 sndflow: 1; -+ __u16 repflow: 1; -+ __u16 pmtudisc: 3; -+ __u16 padding: 1; -+ __u16 srcprefs: 3; -+ __u16 dontfrag: 1; -+ __u16 autoflowlabel: 1; -+ __u16 autoflowlabel_set: 1; -+ __u8 min_hopcount; -+ __u8 tclass; -+ __be32 rcv_flowinfo; -+ __u32 dst_cookie; -+ __u32 rx_dst_cookie; -+ struct ipv6_mc_socklist *ipv6_mc_list; -+ struct ipv6_ac_socklist *ipv6_ac_list; -+ struct ipv6_fl_socklist *ipv6_fl_list; -+ struct ipv6_txoptions *opt; -+ struct sk_buff *pktoptions; -+ struct sk_buff *rxpmtu; -+ struct inet6_cork cork; -+}; -+ -+struct inet_connection_sock_af_ops { -+ int (*queue_xmit)(struct sock *, struct sk_buff *, struct flowi *); -+ void (*send_check)(struct sock *, struct sk_buff *); -+ int (*rebuild_header)(struct sock *); -+ void (*sk_rx_dst_set)(struct sock *, const struct sk_buff *); -+ int (*conn_request)(struct sock *, struct sk_buff *); -+ struct sock * (*syn_recv_sock)(const struct sock *, struct sk_buff *, struct request_sock *, struct dst_entry *, struct request_sock *, bool *); -+ u16 net_header_len; -+ u16 net_frag_header_len; -+ u16 sockaddr_len; -+ int (*setsockopt)(struct sock *, int, int, char *, unsigned int); -+ int (*getsockopt)(struct sock *, int, int, char *, int *); -+ int (*compat_setsockopt)(struct sock *, int, int, char *, unsigned int); -+ int (*compat_getsockopt)(struct sock *, int, int, char *, int *); -+ void (*addr2sockaddr)(struct sock *, struct sockaddr *); -+ void (*mtu_reduced)(struct sock *); -+}; -+ -+struct inet_bind_bucket; -+ -+struct tcp_ulp_ops; -+ -+struct inet_connection_sock { -+ struct inet_sock icsk_inet; -+ struct request_sock_queue icsk_accept_queue; -+ struct inet_bind_bucket *icsk_bind_hash; -+ long unsigned int icsk_timeout; -+ struct timer_list icsk_retransmit_timer; -+ struct timer_list icsk_delack_timer; -+ __u32 icsk_rto; -+ __u32 icsk_pmtu_cookie; -+ const struct tcp_congestion_ops *icsk_ca_ops; -+ const struct inet_connection_sock_af_ops *icsk_af_ops; -+ const struct tcp_ulp_ops *icsk_ulp_ops; -+ void *icsk_ulp_data; -+ void (*icsk_clean_acked)(struct sock *, u32); -+ struct hlist_node icsk_listen_portaddr_node; -+ unsigned int (*icsk_sync_mss)(struct sock *, u32); -+ __u8 icsk_ca_state: 6; -+ __u8 icsk_ca_setsockopt: 1; -+ __u8 icsk_ca_dst_locked: 1; -+ __u8 icsk_retransmits; -+ __u8 icsk_pending; -+ __u8 icsk_backoff; -+ __u8 icsk_syn_retries; -+ __u8 icsk_probes_out; -+ __u16 icsk_ext_hdr_len; -+ struct { -+ __u8 pending; -+ __u8 quick; -+ __u8 pingpong; -+ __u8 blocked; -+ __u32 ato; -+ long unsigned int timeout; -+ __u32 lrcvtime; -+ __u16 last_seg_size; -+ __u16 rcv_mss; -+ } icsk_ack; -+ struct { -+ int enabled; -+ int search_high; -+ int search_low; -+ int probe_size; -+ u32 probe_timestamp; -+ } icsk_mtup; -+ u32 icsk_user_timeout; -+ u64 icsk_ca_priv[13]; -+}; -+ -+struct inet_bind_bucket { -+ possible_net_t ib_net; -+ int l3mdev; -+ short unsigned int port; -+ signed char fastreuse; -+ signed char fastreuseport; -+ kuid_t fastuid; -+ struct in6_addr fast_v6_rcv_saddr; -+ __be32 fast_rcv_saddr; -+ short unsigned int fast_sk_family; -+ bool fast_ipv6_only; -+ struct hlist_node node; -+ struct hlist_head owners; -+}; -+ -+struct tcp_ulp_ops { -+ struct list_head list; -+ int (*init)(struct sock *); -+ void (*release)(struct sock *); -+ int uid; -+ char name[16]; -+ bool user_visible; -+ struct module *owner; -+}; -+ -+struct ipv6_rt_hdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __u8 type; -+ __u8 segments_left; -+}; -+ -+struct ipv6_opt_hdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+}; -+ -+struct inet6_skb_parm { -+ int iif; -+ __be16 ra; -+ __u16 dst0; -+ __u16 srcrt; -+ __u16 dst1; -+ __u16 lastopt; -+ __u16 nhoff; -+ __u16 flags; -+ __u16 dsthao; -+ __u16 frag_max_size; -+}; -+ -+struct ip6_sf_socklist; -+ -+struct ipv6_mc_socklist { -+ struct in6_addr addr; -+ int ifindex; -+ struct ipv6_mc_socklist *next; -+ rwlock_t sflock; -+ unsigned int sfmode; -+ struct ip6_sf_socklist *sflist; -+ struct callback_head rcu; -+}; -+ -+struct ipv6_ac_socklist { -+ struct in6_addr acl_addr; -+ int acl_ifindex; -+ struct ipv6_ac_socklist *acl_next; -+}; -+ -+struct ip6_flowlabel; -+ -+struct ipv6_fl_socklist { -+ struct ipv6_fl_socklist *next; -+ struct ip6_flowlabel *fl; -+ struct callback_head rcu; -+}; -+ -+struct ip6_sf_socklist { -+ unsigned int sl_max; -+ unsigned int sl_count; -+ struct in6_addr sl_addr[0]; -+}; -+ -+struct ip6_flowlabel { -+ struct ip6_flowlabel *next; -+ __be32 label; -+ atomic_t users; -+ struct in6_addr dst; -+ struct ipv6_txoptions *opt; -+ long unsigned int linger; -+ struct callback_head rcu; -+ u8 share; -+ union { -+ struct pid *pid; -+ kuid_t uid; -+ } owner; -+ long unsigned int lastuse; -+ long unsigned int expires; -+ struct net *fl_net; -+}; -+ -+struct ip_rt_acct { -+ __u32 o_bytes; -+ __u32 o_packets; -+ __u32 i_bytes; -+ __u32 i_packets; -+}; -+ +struct inet_ehash_bucket { + struct hlist_nulls_head chain; +}; @@ -39488,52 +43915,6 @@ index 0000000..bcb9d76 + struct hlist_head chain; +}; + -+struct inet_skb_parm { -+ int iif; -+ struct ip_options opt; -+ u16 flags; -+ u16 frag_max_size; -+}; -+ -+struct tcp_skb_cb { -+ __u32 seq; -+ __u32 end_seq; -+ union { -+ __u32 tcp_tw_isn; -+ struct { -+ u16 tcp_gso_segs; -+ u16 tcp_gso_size; -+ }; -+ }; -+ __u8 tcp_flags; -+ __u8 sacked; -+ __u8 ip_dsfield; -+ __u8 txstamp_ack: 1; -+ __u8 eor: 1; -+ __u8 has_rxtstamp: 1; -+ __u8 unused: 5; -+ __u32 ack_seq; -+ union { -+ struct { -+ __u32 in_flight: 30; -+ __u32 is_app_limited: 1; -+ __u32 unused: 1; -+ __u32 delivered; -+ u64 first_tx_mstamp; -+ u64 delivered_mstamp; -+ } tx; -+ union { -+ struct inet_skb_parm h4; -+ struct inet6_skb_parm h6; -+ } header; -+ struct { -+ __u32 flags; -+ struct sock *sk_redir; -+ void *data_end; -+ } bpf; -+ }; -+}; -+ +struct ack_sample { + u32 pkts_acked; + s32 rtt_us; @@ -39556,111 +43937,513 @@ index 0000000..bcb9d76 + bool is_ack_delayed; +}; + ++struct sk_msg_sg { ++ u32 start; ++ u32 curr; ++ u32 end; ++ u32 size; ++ u32 copybreak; ++ long unsigned int copy; ++ struct scatterlist data[19]; ++}; ++ ++struct sk_msg { ++ struct sk_msg_sg sg; ++ void *data; ++ void *data_end; ++ u32 apply_bytes; ++ u32 cork_bytes; ++ u32 flags; ++ struct sk_buff *skb; ++ struct sock *sk_redir; ++ struct sock *sk; ++ struct list_head list; ++}; ++ ++enum verifier_phase { ++ CHECK_META = 0, ++ CHECK_TYPE = 1, ++}; ++ ++struct resolve_vertex { ++ const struct btf_type *t; ++ u32 type_id; ++ u16 next_member; ++}; ++ ++enum visit_state { ++ NOT_VISITED = 0, ++ VISITED = 1, ++ RESOLVED = 2, ++}; ++ ++enum resolve_mode { ++ RESOLVE_TBD = 0, ++ RESOLVE_PTR = 1, ++ RESOLVE_STRUCT_OR_ARRAY = 2, ++}; ++ ++struct btf_sec_info { ++ u32 off; ++ u32 len; ++}; ++ ++struct btf_verifier_env { ++ struct btf *btf; ++ u8 *visit_states; ++ struct resolve_vertex stack[32]; ++ struct bpf_verifier_log log; ++ u32 log_type_id; ++ u32 top_stack; ++ enum verifier_phase phase; ++ enum resolve_mode resolve_mode; ++}; ++ ++struct btf_show { ++ u64 flags; ++ void *target; ++ void (*showfn)(struct btf_show *, const char *, struct __va_list_tag *); ++ const struct btf *btf; ++ struct { ++ u8 depth; ++ u8 depth_to_show; ++ u8 depth_check; ++ u8 array_member: 1; ++ u8 array_terminated: 1; ++ u16 array_encoding; ++ u32 type_id; ++ int status; ++ const struct btf_type *type; ++ const struct btf_member *member; ++ char name[80]; ++ } state; ++ struct { ++ u32 size; ++ void *head; ++ void *data; ++ u8 safe[32]; ++ } obj; ++}; ++ ++struct btf_kind_operations { ++ s32 (*check_meta)(struct btf_verifier_env *, const struct btf_type *, u32); ++ int (*resolve)(struct btf_verifier_env *, const struct resolve_vertex *); ++ int (*check_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); ++ int (*check_kflag_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); ++ void (*log_details)(struct btf_verifier_env *, const struct btf_type *); ++ void (*show)(const struct btf *, const struct btf_type *, u32, void *, u8, struct btf_show *); ++}; ++ ++struct bpf_ctx_convert { ++ struct __sk_buff BPF_PROG_TYPE_SOCKET_FILTER_prog; ++ struct sk_buff BPF_PROG_TYPE_SOCKET_FILTER_kern; ++ struct __sk_buff BPF_PROG_TYPE_SCHED_CLS_prog; ++ struct sk_buff BPF_PROG_TYPE_SCHED_CLS_kern; ++ struct __sk_buff BPF_PROG_TYPE_SCHED_ACT_prog; ++ struct sk_buff BPF_PROG_TYPE_SCHED_ACT_kern; ++ struct xdp_md BPF_PROG_TYPE_XDP_prog; ++ struct xdp_buff BPF_PROG_TYPE_XDP_kern; ++ struct __sk_buff BPF_PROG_TYPE_CGROUP_SKB_prog; ++ struct sk_buff BPF_PROG_TYPE_CGROUP_SKB_kern; ++ struct bpf_sock BPF_PROG_TYPE_CGROUP_SOCK_prog; ++ struct sock BPF_PROG_TYPE_CGROUP_SOCK_kern; ++ struct bpf_sock_addr BPF_PROG_TYPE_CGROUP_SOCK_ADDR_prog; ++ struct bpf_sock_addr_kern BPF_PROG_TYPE_CGROUP_SOCK_ADDR_kern; ++ struct __sk_buff BPF_PROG_TYPE_LWT_IN_prog; ++ struct sk_buff BPF_PROG_TYPE_LWT_IN_kern; ++ struct __sk_buff BPF_PROG_TYPE_LWT_OUT_prog; ++ struct sk_buff BPF_PROG_TYPE_LWT_OUT_kern; ++ struct __sk_buff BPF_PROG_TYPE_LWT_XMIT_prog; ++ struct sk_buff BPF_PROG_TYPE_LWT_XMIT_kern; ++ struct __sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_prog; ++ struct sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_kern; ++ struct bpf_sock_ops BPF_PROG_TYPE_SOCK_OPS_prog; ++ struct bpf_sock_ops_kern BPF_PROG_TYPE_SOCK_OPS_kern; ++ struct __sk_buff BPF_PROG_TYPE_SK_SKB_prog; ++ struct sk_buff BPF_PROG_TYPE_SK_SKB_kern; ++ struct sk_msg_md BPF_PROG_TYPE_SK_MSG_prog; ++ struct sk_msg BPF_PROG_TYPE_SK_MSG_kern; ++ struct __sk_buff BPF_PROG_TYPE_FLOW_DISSECTOR_prog; ++ struct bpf_flow_dissector BPF_PROG_TYPE_FLOW_DISSECTOR_kern; ++ bpf_user_pt_regs_t BPF_PROG_TYPE_KPROBE_prog; ++ struct pt_regs BPF_PROG_TYPE_KPROBE_kern; ++ __u64 BPF_PROG_TYPE_TRACEPOINT_prog; ++ u64 BPF_PROG_TYPE_TRACEPOINT_kern; ++ struct bpf_perf_event_data BPF_PROG_TYPE_PERF_EVENT_prog; ++ struct bpf_perf_event_data_kern BPF_PROG_TYPE_PERF_EVENT_kern; ++ struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_prog; ++ u64 BPF_PROG_TYPE_RAW_TRACEPOINT_kern; ++ struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_prog; ++ u64 BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_kern; ++ void *BPF_PROG_TYPE_TRACING_prog; ++ void *BPF_PROG_TYPE_TRACING_kern; ++ struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_prog; ++ struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_kern; ++ struct bpf_sysctl BPF_PROG_TYPE_CGROUP_SYSCTL_prog; ++ struct bpf_sysctl_kern BPF_PROG_TYPE_CGROUP_SYSCTL_kern; ++ struct bpf_sockopt BPF_PROG_TYPE_CGROUP_SOCKOPT_prog; ++ struct bpf_sockopt_kern BPF_PROG_TYPE_CGROUP_SOCKOPT_kern; ++ struct sk_reuseport_md BPF_PROG_TYPE_SK_REUSEPORT_prog; ++ struct sk_reuseport_kern BPF_PROG_TYPE_SK_REUSEPORT_kern; ++ struct bpf_sk_lookup BPF_PROG_TYPE_SK_LOOKUP_prog; ++ struct bpf_sk_lookup_kern BPF_PROG_TYPE_SK_LOOKUP_kern; ++ void *BPF_PROG_TYPE_STRUCT_OPS_prog; ++ void *BPF_PROG_TYPE_STRUCT_OPS_kern; ++ void *BPF_PROG_TYPE_EXT_prog; ++ void *BPF_PROG_TYPE_EXT_kern; ++}; ++ +enum { -+ TCP_ULP_TLS = 0, -+ TCP_ULP_BPF = 1, ++ __ctx_convertBPF_PROG_TYPE_SOCKET_FILTER = 0, ++ __ctx_convertBPF_PROG_TYPE_SCHED_CLS = 1, ++ __ctx_convertBPF_PROG_TYPE_SCHED_ACT = 2, ++ __ctx_convertBPF_PROG_TYPE_XDP = 3, ++ __ctx_convertBPF_PROG_TYPE_CGROUP_SKB = 4, ++ __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK = 5, ++ __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK_ADDR = 6, ++ __ctx_convertBPF_PROG_TYPE_LWT_IN = 7, ++ __ctx_convertBPF_PROG_TYPE_LWT_OUT = 8, ++ __ctx_convertBPF_PROG_TYPE_LWT_XMIT = 9, ++ __ctx_convertBPF_PROG_TYPE_LWT_SEG6LOCAL = 10, ++ __ctx_convertBPF_PROG_TYPE_SOCK_OPS = 11, ++ __ctx_convertBPF_PROG_TYPE_SK_SKB = 12, ++ __ctx_convertBPF_PROG_TYPE_SK_MSG = 13, ++ __ctx_convertBPF_PROG_TYPE_FLOW_DISSECTOR = 14, ++ __ctx_convertBPF_PROG_TYPE_KPROBE = 15, ++ __ctx_convertBPF_PROG_TYPE_TRACEPOINT = 16, ++ __ctx_convertBPF_PROG_TYPE_PERF_EVENT = 17, ++ __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT = 18, ++ __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 19, ++ __ctx_convertBPF_PROG_TYPE_TRACING = 20, ++ __ctx_convertBPF_PROG_TYPE_CGROUP_DEVICE = 21, ++ __ctx_convertBPF_PROG_TYPE_CGROUP_SYSCTL = 22, ++ __ctx_convertBPF_PROG_TYPE_CGROUP_SOCKOPT = 23, ++ __ctx_convertBPF_PROG_TYPE_SK_REUSEPORT = 24, ++ __ctx_convertBPF_PROG_TYPE_SK_LOOKUP = 25, ++ __ctx_convertBPF_PROG_TYPE_STRUCT_OPS = 26, ++ __ctx_convertBPF_PROG_TYPE_EXT = 27, ++ __ctx_convert_unused = 28, +}; + -+struct bpf_sock_progs { -+ struct bpf_prog *bpf_tx_msg; -+ struct bpf_prog *bpf_parse; -+ struct bpf_prog *bpf_verdict; ++enum bpf_struct_walk_result { ++ WALK_SCALAR = 0, ++ WALK_PTR = 1, ++ WALK_STRUCT = 2, +}; + -+struct bpf_stab { ++struct btf_show_snprintf { ++ struct btf_show show; ++ int len_left; ++ int len; ++}; ++ ++struct bpf_dispatcher_prog { ++ struct bpf_prog *prog; ++ refcount_t users; ++}; ++ ++struct bpf_dispatcher { ++ struct mutex mutex; ++ void *func; ++ struct bpf_dispatcher_prog progs[48]; ++ int num_progs; ++ void *image; ++ u32 image_off; ++ struct bpf_ksym ksym; ++}; ++ ++struct bpf_devmap_val { ++ __u32 ifindex; ++ union { ++ int fd; ++ __u32 id; ++ } bpf_prog; ++}; ++ ++enum net_device_flags { ++ IFF_UP = 1, ++ IFF_BROADCAST = 2, ++ IFF_DEBUG = 4, ++ IFF_LOOPBACK = 8, ++ IFF_POINTOPOINT = 16, ++ IFF_NOTRAILERS = 32, ++ IFF_RUNNING = 64, ++ IFF_NOARP = 128, ++ IFF_PROMISC = 256, ++ IFF_ALLMULTI = 512, ++ IFF_MASTER = 1024, ++ IFF_SLAVE = 2048, ++ IFF_MULTICAST = 4096, ++ IFF_PORTSEL = 8192, ++ IFF_AUTOMEDIA = 16384, ++ IFF_DYNAMIC = 32768, ++ IFF_LOWER_UP = 65536, ++ IFF_DORMANT = 131072, ++ IFF_ECHO = 262144, ++}; ++ ++struct xdp_dev_bulk_queue { ++ struct xdp_frame *q[16]; ++ struct list_head flush_node; ++ struct net_device *dev; ++ struct net_device *dev_rx; ++ unsigned int count; ++}; ++ ++enum netdev_cmd { ++ NETDEV_UP = 1, ++ NETDEV_DOWN = 2, ++ NETDEV_REBOOT = 3, ++ NETDEV_CHANGE = 4, ++ NETDEV_REGISTER = 5, ++ NETDEV_UNREGISTER = 6, ++ NETDEV_CHANGEMTU = 7, ++ NETDEV_CHANGEADDR = 8, ++ NETDEV_PRE_CHANGEADDR = 9, ++ NETDEV_GOING_DOWN = 10, ++ NETDEV_CHANGENAME = 11, ++ NETDEV_FEAT_CHANGE = 12, ++ NETDEV_BONDING_FAILOVER = 13, ++ NETDEV_PRE_UP = 14, ++ NETDEV_PRE_TYPE_CHANGE = 15, ++ NETDEV_POST_TYPE_CHANGE = 16, ++ NETDEV_POST_INIT = 17, ++ NETDEV_RELEASE = 18, ++ NETDEV_NOTIFY_PEERS = 19, ++ NETDEV_JOIN = 20, ++ NETDEV_CHANGEUPPER = 21, ++ NETDEV_RESEND_IGMP = 22, ++ NETDEV_PRECHANGEMTU = 23, ++ NETDEV_CHANGEINFODATA = 24, ++ NETDEV_BONDING_INFO = 25, ++ NETDEV_PRECHANGEUPPER = 26, ++ NETDEV_CHANGELOWERSTATE = 27, ++ NETDEV_UDP_TUNNEL_PUSH_INFO = 28, ++ NETDEV_UDP_TUNNEL_DROP_INFO = 29, ++ NETDEV_CHANGE_TX_QUEUE_LEN = 30, ++ NETDEV_CVLAN_FILTER_PUSH_INFO = 31, ++ NETDEV_CVLAN_FILTER_DROP_INFO = 32, ++ NETDEV_SVLAN_FILTER_PUSH_INFO = 33, ++ NETDEV_SVLAN_FILTER_DROP_INFO = 34, ++}; ++ ++struct netdev_notifier_info { ++ struct net_device *dev; ++ struct netlink_ext_ack *extack; ++}; ++ ++struct bpf_dtab; ++ ++struct bpf_dtab_netdev { ++ struct net_device *dev; ++ struct hlist_node index_hlist; ++ struct bpf_dtab *dtab; ++ struct bpf_prog *xdp_prog; ++ struct callback_head rcu; ++ unsigned int idx; ++ struct bpf_devmap_val val; ++}; ++ ++struct bpf_dtab { + struct bpf_map map; -+ struct sock **sock_map; -+ struct bpf_sock_progs progs; -+ raw_spinlock_t lock; ++ struct bpf_dtab_netdev **netdev_map; ++ struct list_head list; ++ struct hlist_head *dev_index_head; ++ spinlock_t index_lock; ++ unsigned int items; ++ u32 n_buckets; + long: 32; + long: 64; + long: 64; ++}; ++ ++struct bpf_cpumap_val { ++ __u32 qsize; ++ union { ++ int fd; ++ __u32 id; ++ } bpf_prog; ++}; ++ ++typedef struct bio_vec skb_frag_t; ++ ++struct skb_shared_hwtstamps { ++ ktime_t hwtstamp; ++}; ++ ++struct skb_shared_info { ++ __u8 __unused; ++ __u8 meta_len; ++ __u8 nr_frags; ++ __u8 tx_flags; ++ short unsigned int gso_size; ++ short unsigned int gso_segs; ++ struct sk_buff *frag_list; ++ struct skb_shared_hwtstamps hwtstamps; ++ unsigned int gso_type; ++ u32 tskey; ++ atomic_t dataref; ++ void *destructor_arg; ++ skb_frag_t frags[17]; ++}; ++ ++struct bpf_nh_params { ++ u32 nh_family; ++ union { ++ u32 ipv4_nh; ++ struct in6_addr ipv6_nh; ++ }; ++}; ++ ++struct bpf_redirect_info { ++ u32 flags; ++ u32 tgt_index; ++ void *tgt_value; ++ struct bpf_map *map; ++ u32 kern_flags; ++ struct bpf_nh_params nh; ++}; ++ ++struct bpf_cpu_map_entry; ++ ++struct xdp_bulk_queue { ++ void *q[8]; ++ struct list_head flush_node; ++ struct bpf_cpu_map_entry *obj; ++ unsigned int count; ++}; ++ ++struct bpf_cpu_map; ++ ++struct bpf_cpu_map_entry { ++ u32 cpu; ++ int map_id; ++ struct xdp_bulk_queue *bulkq; ++ struct bpf_cpu_map *cmap; ++ struct ptr_ring *queue; ++ struct task_struct *kthread; ++ struct bpf_cpumap_val value; ++ struct bpf_prog *prog; ++ atomic_t refcnt; ++ struct callback_head rcu; ++ struct work_struct kthread_stop_wq; ++}; ++ ++struct bpf_cpu_map { ++ struct bpf_map map; ++ struct bpf_cpu_map_entry **cpu_map; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; + long: 64; +}; + -+struct bucket___2 { -+ struct hlist_head head; ++struct bpf_local_storage_map_bucket; ++ ++struct bpf_local_storage_map { ++ struct bpf_map map; ++ struct bpf_local_storage_map_bucket *buckets; ++ u32 bucket_log; ++ u16 elem_size; ++ u16 cache_idx; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct bpf_local_storage_data; ++ ++struct bpf_local_storage { ++ struct bpf_local_storage_data *cache[16]; ++ struct hlist_head list; ++ void *owner; ++ struct callback_head rcu; + raw_spinlock_t lock; +}; + -+struct bpf_htab___2 { -+ struct bpf_map map; -+ struct bucket___2 *buckets; -+ atomic_t count; -+ u32 n_buckets; -+ u32 elem_size; -+ struct bpf_sock_progs progs; ++struct bpf_local_storage_map_bucket { ++ struct hlist_head list; ++ raw_spinlock_t lock; ++}; ++ ++struct bpf_local_storage_data { ++ struct bpf_local_storage_map *smap; ++ u8 data[0]; ++}; ++ ++struct bpf_local_storage_elem { ++ struct hlist_node map_node; ++ struct hlist_node snode; ++ struct bpf_local_storage *local_storage; + struct callback_head rcu; ++ long: 64; ++ struct bpf_local_storage_data sdata; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; +}; + -+struct htab_elem___2 { -+ struct callback_head rcu; -+ struct hlist_node hash_node; -+ u32 hash; -+ struct sock *sk; -+ char key[0]; ++struct bpf_local_storage_cache { ++ spinlock_t idx_lock; ++ u64 idx_usage_counts[16]; +}; + -+enum smap_psock_state { -+ SMAP_TX_RUNNING = 0, ++struct rhlist_head { ++ struct rhash_head rhead; ++ struct rhlist_head *next; +}; + -+struct smap_psock_map_entry { -+ struct list_head list; -+ struct bpf_map *map; -+ struct sock **entry; -+ struct htab_elem___2 *hash_link; ++struct bpf_prog_offload_ops { ++ int (*insn_hook)(struct bpf_verifier_env *, int, int); ++ int (*finalize)(struct bpf_verifier_env *); ++ int (*replace_insn)(struct bpf_verifier_env *, u32, struct bpf_insn *); ++ int (*remove_insns)(struct bpf_verifier_env *, u32, u32); ++ int (*prepare)(struct bpf_prog *); ++ int (*translate)(struct bpf_prog *); ++ void (*destroy)(struct bpf_prog *); +}; + -+struct smap_psock { -+ struct callback_head rcu; -+ refcount_t refcnt; -+ struct sk_buff_head rxqueue; -+ bool strp_enabled; -+ int save_rem; -+ int save_off; -+ struct sk_buff *save_skb; -+ struct sock *sk_redir; -+ int apply_bytes; -+ int cork_bytes; -+ int sg_size; -+ int eval; -+ struct sk_msg_buff *cork; -+ struct list_head ingress; -+ struct strparser strp; -+ struct bpf_prog *bpf_tx_msg; -+ struct bpf_prog *bpf_parse; -+ struct bpf_prog *bpf_verdict; ++struct bpf_offload_dev { ++ const struct bpf_prog_offload_ops *ops; ++ struct list_head netdevs; ++ void *priv; ++}; ++ ++struct bpf_offload_netdev { ++ struct rhash_head l; ++ struct net_device *netdev; ++ struct bpf_offload_dev *offdev; ++ struct list_head progs; + struct list_head maps; -+ spinlock_t maps_lock; -+ struct sock *sock; -+ long unsigned int state; -+ struct work_struct tx_work; -+ struct work_struct gc_work; -+ struct proto *sk_proto; -+ void (*save_unhash)(struct sock *); -+ void (*save_close)(struct sock *, long int); -+ void (*save_data_ready)(struct sock *); -+ void (*save_write_space)(struct sock *); ++ struct list_head offdev_netdevs; +}; + -+enum { -+ SOCKMAP_IPV4 = 0, -+ SOCKMAP_IPV6 = 1, -+ SOCKMAP_NUM_PROTS = 2, ++struct ns_get_path_bpf_prog_args { ++ struct bpf_prog *prog; ++ struct bpf_prog_info *info; +}; + -+enum { -+ SOCKMAP_BASE = 0, -+ SOCKMAP_TX = 1, -+ SOCKMAP_NUM_CONFIGS = 2, ++struct ns_get_path_bpf_map_args { ++ struct bpf_offloaded_map *offmap; ++ struct bpf_map_info *info; +}; + -+enum __sk_action { -+ __SK_DROP = 0, -+ __SK_PASS = 1, -+ __SK_REDIRECT = 2, -+ __SK_NONE = 3, ++struct bpf_netns_link { ++ struct bpf_link link; ++ enum bpf_attach_type type; ++ enum netns_bpf_attach_type netns_type; ++ struct net *net; ++ struct list_head node; +}; + +enum bpf_stack_build_id_status { @@ -39678,6 +44461,14 @@ index 0000000..bcb9d76 + }; +}; + ++enum { ++ BPF_F_SKIP_FIELD_MASK = 255, ++ BPF_F_USER_STACK = 256, ++ BPF_F_FAST_STACK_CMP = 512, ++ BPF_F_REUSE_STACKID = 1024, ++ BPF_F_USER_BUILD_ID = 2048, ++}; ++ +typedef __u32 Elf32_Addr; + +typedef __u16 Elf32_Half; @@ -39718,6 +44509,16 @@ index 0000000..bcb9d76 + +typedef struct elf32_note Elf32_Nhdr; + ++enum perf_callchain_context { ++ PERF_CONTEXT_HV = 4294967264, ++ PERF_CONTEXT_KERNEL = 4294967168, ++ PERF_CONTEXT_USER = 4294966784, ++ PERF_CONTEXT_GUEST = 4294965248, ++ PERF_CONTEXT_GUEST_KERNEL = 4294965120, ++ PERF_CONTEXT_GUEST_USER = 4294964736, ++ PERF_CONTEXT_MAX = 4294963201, ++}; ++ +struct stack_map_bucket { + struct pcpu_freelist_node fnode; + u32 hash; @@ -39734,68 +44535,52 @@ index 0000000..bcb9d76 + long: 64; + long: 64; + long: 64; -+ long: 64; -+ long: 64; +}; + +struct stack_map_irq_work { + struct irq_work irq_work; -+ struct rw_semaphore *sem; ++ struct mm_struct *mm; +}; + -+struct __sk_buff { -+ __u32 len; -+ __u32 pkt_type; -+ __u32 mark; -+ __u32 queue_mapping; -+ __u32 protocol; -+ __u32 vlan_present; -+ __u32 vlan_tci; -+ __u32 vlan_proto; -+ __u32 priority; -+ __u32 ingress_ifindex; -+ __u32 ifindex; -+ __u32 tc_index; -+ __u32 cb[5]; -+ __u32 hash; -+ __u32 tc_classid; -+ __u32 data; -+ __u32 data_end; -+ __u32 napi_id; -+ __u32 family; -+ __u32 remote_ip4; -+ __u32 local_ip4; -+ __u32 remote_ip6[4]; -+ __u32 local_ip6[4]; -+ __u32 remote_port; -+ __u32 local_port; -+ __u32 data_meta; -+}; ++typedef u64 (*btf_bpf_get_stackid)(struct pt_regs *, struct bpf_map *, u64); + -+struct bpf_cgroup_dev_ctx { -+ __u32 access_type; -+ __u32 major; -+ __u32 minor; ++typedef u64 (*btf_bpf_get_stackid_pe)(struct bpf_perf_event_data_kern *, struct bpf_map *, u64); ++ ++typedef u64 (*btf_bpf_get_stack)(struct pt_regs *, void *, u32, u64); ++ ++typedef u64 (*btf_bpf_get_task_stack)(struct task_struct *, void *, u32, u64); ++ ++typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); ++ ++enum { ++ BPF_F_SYSCTL_BASE_NAME = 1, +}; + +struct bpf_prog_list { + struct list_head node; + struct bpf_prog *prog; -+ struct bpf_cgroup_storage *storage; ++ struct bpf_cgroup_link *link; ++ struct bpf_cgroup_storage *storage[10]; +}; + +struct qdisc_skb_cb { -+ unsigned int pkt_len; -+ u16 slave_dev_queue_mapping; -+ u16 tc_classid; ++ struct { ++ unsigned int pkt_len; ++ u16 slave_dev_queue_mapping; ++ u16 tc_classid; ++ }; + unsigned char data[20]; ++ u16 mru; +}; + -+struct bpf_sock_addr_kern { -+ struct sock *sk; -+ struct sockaddr *uaddr; -+ u64 tmp_reg; -+ void *t_ctx; ++struct bpf_skb_data_end { ++ struct qdisc_skb_cb qdisc_cb; ++ void *data_meta; ++ void *data_end; ++}; ++ ++struct bpf_sockopt_buf { ++ u8 data[32]; +}; + +enum { @@ -39813,2908 +44598,123 @@ index 0000000..bcb9d76 + TCPF_NEW_SYN_RECV = 4096, +}; + ++typedef u64 (*btf_bpf_sysctl_get_name)(struct bpf_sysctl_kern *, char *, size_t, u64); ++ ++typedef u64 (*btf_bpf_sysctl_get_current_value)(struct bpf_sysctl_kern *, char *, size_t); ++ ++typedef u64 (*btf_bpf_sysctl_get_new_value)(struct bpf_sysctl_kern *, char *, size_t); ++ ++typedef u64 (*btf_bpf_sysctl_set_new_value)(struct bpf_sysctl_kern *, const char *, size_t); ++ ++enum sock_type { ++ SOCK_STREAM = 1, ++ SOCK_DGRAM = 2, ++ SOCK_RAW = 3, ++ SOCK_RDM = 4, ++ SOCK_SEQPACKET = 5, ++ SOCK_DCCP = 6, ++ SOCK_PACKET = 10, ++}; ++ ++enum { ++ 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_SCTP = 132, ++ IPPROTO_UDPLITE = 136, ++ IPPROTO_MPLS = 137, ++ IPPROTO_ETHERNET = 143, ++ IPPROTO_RAW = 255, ++ IPPROTO_MPTCP = 262, ++ IPPROTO_MAX = 263, ++}; ++ ++enum sock_flags { ++ SOCK_DEAD = 0, ++ SOCK_DONE = 1, ++ SOCK_URGINLINE = 2, ++ SOCK_KEEPOPEN = 3, ++ SOCK_LINGER = 4, ++ SOCK_DESTROY = 5, ++ SOCK_BROADCAST = 6, ++ SOCK_TIMESTAMP = 7, ++ SOCK_ZAPPED = 8, ++ SOCK_USE_WRITE_QUEUE = 9, ++ SOCK_DBG = 10, ++ SOCK_RCVTSTAMP = 11, ++ SOCK_RCVTSTAMPNS = 12, ++ SOCK_LOCALROUTE = 13, ++ SOCK_MEMALLOC = 14, ++ SOCK_TIMESTAMPING_RX_SOFTWARE = 15, ++ SOCK_FASYNC = 16, ++ SOCK_RXQ_OVFL = 17, ++ SOCK_ZEROCOPY = 18, ++ SOCK_WIFI_STATUS = 19, ++ SOCK_NOFCS = 20, ++ SOCK_FILTER_LOCKED = 21, ++ SOCK_SELECT_ERR_QUEUE = 22, ++ SOCK_RCU_FREE = 23, ++ SOCK_TXTIME = 24, ++ SOCK_XDP = 25, ++ SOCK_TSTAMP_NEW = 26, ++ SOCK_COMP = 27, ++}; ++ +struct reuseport_array { + struct bpf_map map; + struct sock *ptrs[0]; +}; + -+struct module___2; -+ -+struct file___2; -+ -+struct kiocb___2; -+ -+struct iov_iter___2; -+ -+struct poll_table_struct___2; -+ -+struct vm_area_struct___2; -+ -+struct file_lock___2; -+ -+struct page___2; -+ -+struct pipe_inode_info___2; -+ -+struct file_operations___2 { -+ struct module___2 *owner; -+ loff_t (*llseek)(struct file___2 *, loff_t, int); -+ ssize_t (*read)(struct file___2 *, char *, size_t, loff_t *); -+ ssize_t (*write)(struct file___2 *, const char *, size_t, loff_t *); -+ ssize_t (*read_iter)(struct kiocb___2 *, struct iov_iter___2 *); -+ ssize_t (*write_iter)(struct kiocb___2 *, struct iov_iter___2 *); -+ int (*iterate)(struct file___2 *, struct dir_context *); -+ int (*iterate_shared)(struct file___2 *, struct dir_context *); -+ __poll_t (*poll)(struct file___2 *, struct poll_table_struct___2 *); -+ long int (*unlocked_ioctl)(struct file___2 *, unsigned int, long unsigned int); -+ long int (*compat_ioctl)(struct file___2 *, unsigned int, long unsigned int); -+ int (*mmap)(struct file___2 *, struct vm_area_struct___2 *); -+ long unsigned int mmap_supported_flags; -+ int (*open)(struct inode___2 *, struct file___2 *); -+ int (*flush)(struct file___2 *, fl_owner_t); -+ int (*release)(struct inode___2 *, struct file___2 *); -+ int (*fsync)(struct file___2 *, loff_t, loff_t, int); -+ int (*fasync)(int, struct file___2 *, int); -+ int (*lock)(struct file___2 *, int, struct file_lock___2 *); -+ ssize_t (*sendpage)(struct file___2 *, struct page___2 *, int, size_t, loff_t *, int); -+ long unsigned int (*get_unmapped_area)(struct file___2 *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ int (*check_flags)(int); -+ int (*flock)(struct file___2 *, int, struct file_lock___2 *); -+ ssize_t (*splice_write)(struct pipe_inode_info___2 *, struct file___2 *, loff_t *, size_t, unsigned int); -+ ssize_t (*splice_read)(struct file___2 *, loff_t *, struct pipe_inode_info___2 *, size_t, unsigned int); -+ int (*setlease)(struct file___2 *, long int, struct file_lock___2 **, void **); -+ long int (*fallocate)(struct file___2 *, int, loff_t, loff_t); -+ void (*show_fdinfo)(struct seq_file___2 *, struct file___2 *); -+ ssize_t (*copy_file_range)(struct file___2 *, loff_t, struct file___2 *, loff_t, size_t, unsigned int); -+ int (*clone_file_range)(struct file___2 *, loff_t, struct file___2 *, loff_t, u64); -+ int (*dedupe_file_range)(struct file___2 *, loff_t, struct file___2 *, loff_t, u64); -+ int (*fadvise)(struct file___2 *, loff_t, loff_t, int); -+ int (*iopoll)(struct kiocb___2 *, bool); -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++enum bpf_struct_ops_state { ++ BPF_STRUCT_OPS_STATE_INIT = 0, ++ BPF_STRUCT_OPS_STATE_INUSE = 1, ++ BPF_STRUCT_OPS_STATE_TOBEFREE = 2, +}; + -+typedef struct page___2 *pgtable_t___2; -+ -+struct address_space___2; -+ -+struct mm_struct___2; -+ -+struct dev_pagemap___2; -+ -+struct page___2 { -+ long unsigned int flags; -+ union { -+ struct { -+ struct list_head lru; -+ struct address_space___2 *mapping; -+ long unsigned int index; -+ long unsigned int private; -+ }; -+ struct { -+ union { -+ struct list_head slab_list; -+ struct { -+ struct page___2 *next; -+ int pages; -+ int pobjects; -+ }; -+ }; -+ struct kmem_cache *slab_cache; -+ void *freelist; -+ union { -+ void *s_mem; -+ long unsigned int counters; -+ struct { -+ unsigned int inuse: 16; -+ unsigned int objects: 15; -+ unsigned int frozen: 1; -+ }; -+ }; -+ }; -+ struct { -+ long unsigned int compound_head; -+ unsigned char compound_dtor; -+ unsigned char compound_order; -+ atomic_t compound_mapcount; -+ }; -+ struct { -+ long unsigned int _compound_pad_1; -+ long unsigned int _compound_pad_2; -+ struct list_head deferred_list; -+ }; -+ struct { -+ long unsigned int _pt_pad_1; -+ pgtable_t___2 pmd_huge_pte; -+ long unsigned int _pt_pad_2; -+ union { -+ struct mm_struct___2 *pt_mm; -+ atomic_t pt_frag_refcount; -+ }; -+ spinlock_t ptl; -+ }; -+ struct { -+ struct dev_pagemap___2 *pgmap; -+ long unsigned int hmm_data; -+ long unsigned int _zd_pad_1; -+ }; -+ struct callback_head callback_head; -+ }; -+ union { -+ atomic_t _mapcount; -+ unsigned int page_type; -+ unsigned int active; -+ int units; -+ }; -+ atomic_t _refcount; -+ struct mem_cgroup *mem_cgroup; -+}; -+ -+struct thread_struct___2; -+ -+struct task_struct___2; -+ -+struct pv_cpu_ops___2 { -+ long unsigned int (*get_debugreg)(int); -+ void (*set_debugreg)(int, long unsigned int); -+ long unsigned int (*read_cr0)(); -+ void (*write_cr0)(long unsigned int); -+ void (*write_cr4)(long unsigned int); -+ long unsigned int (*read_cr8)(); -+ void (*write_cr8)(long unsigned int); -+ void (*load_tr_desc)(); -+ void (*load_gdt)(const struct desc_ptr *); -+ void (*load_idt)(const struct desc_ptr *); -+ void (*set_ldt)(const void *, unsigned int); -+ long unsigned int (*store_tr)(); -+ void (*load_tls)(struct thread_struct___2 *, unsigned int); -+ void (*load_gs_index)(unsigned int); -+ void (*write_ldt_entry)(struct desc_struct *, int, const void *); -+ void (*write_gdt_entry)(struct desc_struct *, int, const void *, int); -+ void (*write_idt_entry)(gate_desc *, int, const gate_desc *); -+ void (*alloc_ldt)(struct desc_struct *, unsigned int); -+ void (*free_ldt)(struct desc_struct *, unsigned int); -+ void (*load_sp0)(long unsigned int); -+ void (*set_iopl_mask)(unsigned int); -+ void (*wbinvd)(); -+ void (*io_delay)(); -+ void (*cpuid)(unsigned int *, unsigned int *, unsigned int *, unsigned int *); -+ u64 (*read_msr)(unsigned int); -+ void (*write_msr)(unsigned int, unsigned int, unsigned int); -+ u64 (*read_msr_safe)(unsigned int, int *); -+ int (*write_msr_safe)(unsigned int, unsigned int, unsigned int); -+ u64 (*read_pmc)(int); -+ void (*usergs_sysret64)(); -+ void (*iret)(); -+ void (*swapgs)(); -+ void (*start_context_switch)(struct task_struct___2 *); -+ void (*end_context_switch)(struct task_struct___2 *); -+}; -+ -+struct perf_event___2; -+ -+struct thread_struct___2 { -+ struct desc_struct tls_array[3]; -+ long unsigned int sp; -+ short unsigned int es; -+ short unsigned int ds; -+ short unsigned int fsindex; -+ short unsigned int gsindex; -+ long unsigned int fsbase; -+ long unsigned int gsbase; -+ struct perf_event___2 *ptrace_bps[4]; -+ long unsigned int debugreg6; -+ long unsigned int ptrace_dr7; -+ long unsigned int cr2; -+ long unsigned int trap_nr; -+ long unsigned int error_code; -+ long unsigned int *io_bitmap_ptr; -+ long unsigned int iopl; -+ unsigned int io_bitmap_max; -+ mm_segment_t addr_limit; -+ unsigned int sig_on_uaccess_err: 1; -+ unsigned int uaccess_err: 1; -+ long: 62; ++struct bpf_struct_ops_value { ++ refcount_t refcnt; ++ enum bpf_struct_ops_state state; + long: 64; + long: 64; + long: 64; -+ struct fpu fpu; -+}; -+ -+struct vmacache___2 { -+ u64 seqnum; -+ struct vm_area_struct___2 *vmas[4]; -+}; -+ -+struct page_frag___2 { -+ struct page___2 *page; -+ __u32 offset; -+ __u32 size; -+}; -+ -+struct pid___2; -+ -+struct cred___2; -+ -+struct nsproxy___2; -+ -+struct signal_struct___2; -+ -+struct css_set___2; -+ -+struct perf_event_context___2; -+ -+struct vm_struct___2; -+ -+struct task_struct___2 { -+ struct thread_info thread_info; -+ volatile long int state; -+ void *stack; -+ atomic_t usage; -+ unsigned int flags; -+ unsigned int ptrace; -+ struct llist_node wake_entry; -+ int on_cpu; -+ unsigned int cpu; -+ unsigned int wakee_flips; -+ long unsigned int wakee_flip_decay_ts; -+ struct task_struct___2 *last_wakee; -+ int recent_used_cpu; -+ int wake_cpu; -+ int on_rq; -+ int prio; -+ int static_prio; -+ int normal_prio; -+ unsigned int rt_priority; -+ const struct sched_class *sched_class; -+ struct sched_entity se; -+ struct sched_rt_entity rt; -+ struct task_group *sched_task_group; -+ struct sched_dl_entity dl; -+ struct hlist_head preempt_notifiers; -+ unsigned int btrace_seq; -+ unsigned int policy; -+ int nr_cpus_allowed; -+ cpumask_t cpus_allowed; -+ struct sched_info sched_info; -+ struct list_head tasks; -+ struct plist_node pushable_tasks; -+ struct rb_node pushable_dl_tasks; -+ struct mm_struct___2 *mm; -+ struct mm_struct___2 *active_mm; -+ struct vmacache___2 vmacache; -+ struct task_rss_stat rss_stat; -+ int exit_state; -+ int exit_code; -+ int exit_signal; -+ int pdeath_signal; -+ long unsigned int jobctl; -+ unsigned int personality; -+ unsigned int sched_reset_on_fork: 1; -+ unsigned int sched_contributes_to_load: 1; -+ unsigned int sched_migrated: 1; -+ unsigned int sched_remote_wakeup: 1; -+ int: 28; -+ unsigned int in_execve: 1; -+ unsigned int in_iowait: 1; -+ unsigned int restore_sigmask: 1; -+ unsigned int in_user_fault: 1; -+ unsigned int memcg_kmem_skip_account: 1; -+ unsigned int no_cgroup_migration: 1; -+ unsigned int use_memdelay: 1; -+ long unsigned int atomic_flags; -+ struct restart_block restart_block; -+ pid_t pid; -+ pid_t tgid; -+ long unsigned int stack_canary; -+ struct task_struct___2 *real_parent; -+ struct task_struct___2 *parent; -+ struct list_head children; -+ struct list_head sibling; -+ struct task_struct___2 *group_leader; -+ struct list_head ptraced; -+ struct list_head ptrace_entry; -+ struct pid___2 *thread_pid; -+ struct hlist_node pid_links[4]; -+ struct list_head thread_group; -+ struct list_head thread_node; -+ struct completion *vfork_done; -+ int *set_child_tid; -+ int *clear_child_tid; -+ u64 utime; -+ u64 stime; -+ u64 gtime; -+ struct prev_cputime prev_cputime; -+ struct vtime vtime; -+ atomic_t tick_dep_mask; -+ long unsigned int nvcsw; -+ long unsigned int nivcsw; -+ u64 start_time; -+ u64 real_start_time; -+ long unsigned int min_flt; -+ long unsigned int maj_flt; -+ struct task_cputime cputime_expires; -+ struct list_head cpu_timers[3]; -+ const struct cred___2 *ptracer_cred; -+ const struct cred___2 *real_cred; -+ const struct cred___2 *cred; -+ char comm[16]; -+ struct nameidata *nameidata; -+ struct sysv_sem sysvsem; -+ struct sysv_shm sysvshm; -+ long unsigned int last_switch_count; -+ long unsigned int last_switch_time; -+ struct fs_struct *fs; -+ struct files_struct *files; -+ struct nsproxy___2 *nsproxy; -+ struct signal_struct___2 *signal; -+ struct sighand_struct *sighand; -+ sigset_t blocked; -+ sigset_t real_blocked; -+ sigset_t saved_sigmask; -+ struct sigpending pending; -+ long unsigned int sas_ss_sp; -+ size_t sas_ss_size; -+ unsigned int sas_ss_flags; -+ struct callback_head *task_works; -+ struct audit_context *audit_context; -+ kuid_t loginuid; -+ unsigned int sessionid; -+ struct seccomp seccomp; -+ u32 parent_exec_id; -+ u32 self_exec_id; -+ spinlock_t alloc_lock; -+ raw_spinlock_t pi_lock; -+ struct wake_q_node wake_q; -+ struct rb_root_cached pi_waiters; -+ struct task_struct___2 *pi_top_task; -+ struct rt_mutex_waiter *pi_blocked_on; -+ void *journal_info; -+ struct bio_list *bio_list; -+ struct blk_plug *plug; -+ struct reclaim_state *reclaim_state; -+ struct backing_dev_info *backing_dev_info; -+ struct io_context *io_context; -+ long unsigned int ptrace_message; -+ siginfo_t *last_siginfo; -+ struct task_io_accounting ioac; -+ u64 acct_rss_mem1; -+ u64 acct_vm_mem1; -+ u64 acct_timexpd; -+ nodemask_t mems_allowed; -+ seqcount_t mems_allowed_seq; -+ int cpuset_mem_spread_rotor; -+ int cpuset_slab_spread_rotor; -+ struct css_set___2 *cgroups; -+ struct list_head cg_list; -+ struct robust_list_head *robust_list; -+ struct compat_robust_list_head *compat_robust_list; -+ struct list_head pi_state_list; -+ struct futex_pi_state *pi_state_cache; -+ struct perf_event_context___2 *perf_event_ctxp[2]; -+ struct mutex perf_event_mutex; -+ struct list_head perf_event_list; -+ struct mempolicy *mempolicy; -+ short int il_prev; -+ short int pref_node_fork; -+ int numa_scan_seq; -+ unsigned int numa_scan_period; -+ unsigned int numa_scan_period_max; -+ int numa_preferred_nid; -+ long unsigned int numa_migrate_retry; -+ u64 node_stamp; -+ u64 last_task_numa_placement; -+ u64 last_sum_exec_runtime; -+ struct callback_head numa_work; -+ struct numa_group *numa_group; -+ long unsigned int *numa_faults; -+ long unsigned int total_numa_faults; -+ long unsigned int numa_faults_locality[3]; -+ long unsigned int numa_pages_migrated; -+ struct rseq *rseq; -+ u32 rseq_len; -+ u32 rseq_sig; -+ long unsigned int rseq_event_mask; -+ struct tlbflush_unmap_batch tlb_ubc; -+ union { -+ refcount_t rcu_users; -+ struct callback_head rcu; -+ }; -+ struct pipe_inode_info___2 *splice_pipe; -+ struct page_frag___2 task_frag; -+ struct task_delay_info *delays; -+ int nr_dirtied; -+ int nr_dirtied_pause; -+ long unsigned int dirty_paused_when; -+ u64 timer_slack_ns; -+ u64 default_timer_slack_ns; -+ int curr_ret_stack; -+ int curr_ret_depth; -+ struct ftrace_ret_stack *ret_stack; -+ long long unsigned int ftrace_timestamp; -+ atomic_t trace_overrun; -+ atomic_t tracing_graph_pause; -+ long unsigned int trace; -+ long unsigned int trace_recursion; -+ struct mem_cgroup *memcg_in_oom; -+ gfp_t memcg_oom_gfp_mask; -+ int memcg_oom_order; -+ unsigned int memcg_nr_pages_over_high; -+ struct mem_cgroup *active_memcg; -+ struct request_queue *throttle_queue; -+ struct uprobe_task *utask; -+ int pagefault_disabled; -+ struct task_struct___2 *oom_reaper_list; -+ struct vm_struct___2 *stack_vm_area; -+ atomic_t stack_refcount; -+ int patch_state; -+ void *security; -+ u64 parent_exec_id_u64; -+ u64 self_exec_id_u64; -+ struct mutex *futex_exit_mutex; -+ long unsigned int futex_state; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; + long: 64; + long: 64; -+ struct thread_struct___2 thread; ++ long: 64; ++ long: 64; ++ char data[0]; +}; + -+struct pv_mmu_ops___2 { -+ long unsigned int (*read_cr2)(); -+ void (*write_cr2)(long unsigned int); -+ long unsigned int (*read_cr3)(); -+ void (*write_cr3)(long unsigned int); -+ void (*activate_mm)(struct mm_struct___2 *, struct mm_struct___2 *); -+ void (*dup_mmap)(struct mm_struct___2 *, struct mm_struct___2 *); -+ void (*exit_mmap)(struct mm_struct___2 *); -+ void (*flush_tlb_user)(); -+ void (*flush_tlb_kernel)(); -+ void (*flush_tlb_one_user)(long unsigned int); -+ void (*flush_tlb_others)(const struct cpumask *, const struct flush_tlb_info *); -+ void (*tlb_remove_table)(struct mmu_gather *, void *); -+ int (*pgd_alloc)(struct mm_struct___2 *); -+ void (*pgd_free)(struct mm_struct___2 *, pgd_t *); -+ void (*alloc_pte)(struct mm_struct___2 *, long unsigned int); -+ void (*alloc_pmd)(struct mm_struct___2 *, long unsigned int); -+ void (*alloc_pud)(struct mm_struct___2 *, long unsigned int); -+ void (*alloc_p4d)(struct mm_struct___2 *, long unsigned int); -+ void (*release_pte)(long unsigned int); -+ void (*release_pmd)(long unsigned int); -+ void (*release_pud)(long unsigned int); -+ void (*release_p4d)(long unsigned int); -+ void (*set_pte)(pte_t *, pte_t); -+ void (*set_pte_at)(struct mm_struct___2 *, long unsigned int, pte_t *, pte_t); -+ void (*set_pmd)(pmd_t *, pmd_t); -+ pte_t (*ptep_modify_prot_start)(struct mm_struct___2 *, long unsigned int, pte_t *); -+ void (*ptep_modify_prot_commit)(struct mm_struct___2 *, long unsigned int, pte_t *, pte_t); -+ struct paravirt_callee_save pte_val; -+ struct paravirt_callee_save make_pte; -+ struct paravirt_callee_save pgd_val; -+ struct paravirt_callee_save make_pgd; -+ void (*set_pud)(pud_t *, pud_t); -+ struct paravirt_callee_save pmd_val; -+ struct paravirt_callee_save make_pmd; -+ struct paravirt_callee_save pud_val; -+ struct paravirt_callee_save make_pud; -+ void (*set_p4d)(p4d_t *, p4d_t); -+ struct paravirt_callee_save p4d_val; -+ struct paravirt_callee_save make_p4d; -+ void (*set_pgd)(pgd_t *, pgd_t); -+ struct pv_lazy_ops lazy_mode; -+ void (*set_fixmap)(unsigned int, phys_addr_t, pgprot_t); -+}; -+ -+struct rw_semaphore___2 { -+ atomic_long_t count; -+ struct list_head wait_list; -+ raw_spinlock_t wait_lock; -+ struct optimistic_spin_queue osq; -+ struct task_struct___2 *owner; -+}; -+ -+typedef struct { -+ u64 ctx_id; -+ atomic64_t tlb_gen; -+ struct rw_semaphore___2 ldt_usr_sem; -+ struct ldt_struct *ldt; -+ short unsigned int ia32_compat; ++struct bpf_struct_ops_map { ++ struct bpf_map map; ++ const struct bpf_struct_ops *st_ops; + struct mutex lock; -+ void *vdso; -+ const struct vdso_image *vdso_image; -+ atomic_t perf_rdpmc_allowed; -+ u16 pkey_allocation_map; -+ s16 execute_only_pkey; -+} mm_context_t___2; -+ -+struct core_state___2; -+ -+struct user_namespace___2; -+ -+struct mm_struct___2 { -+ struct { -+ struct vm_area_struct___2 *mmap; -+ struct rb_root mm_rb; -+ u64 vmacache_seqnum; -+ long unsigned int (*get_unmapped_area)(struct file___2 *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ long unsigned int mmap_base; -+ long unsigned int mmap_legacy_base; -+ long unsigned int mmap_compat_base; -+ long unsigned int mmap_compat_legacy_base; -+ long unsigned int task_size; -+ long unsigned int highest_vm_end; -+ pgd_t *pgd; -+ atomic_t membarrier_state; -+ atomic_t mm_users; -+ atomic_t mm_count; -+ atomic_long_t pgtables_bytes; -+ int map_count; -+ spinlock_t page_table_lock; -+ struct rw_semaphore___2 mmap_sem; -+ struct list_head mmlist; -+ long unsigned int hiwater_rss; -+ long unsigned int hiwater_vm; -+ long unsigned int total_vm; -+ atomic_long_t locked_vm; -+ long unsigned int pinned_vm; -+ long unsigned int data_vm; -+ long unsigned int exec_vm; -+ long unsigned int stack_vm; -+ long unsigned int def_flags; -+ spinlock_t arg_lock; -+ long unsigned int start_code; -+ long unsigned int end_code; -+ long unsigned int start_data; -+ long unsigned int end_data; -+ long unsigned int start_brk; -+ long unsigned int brk; -+ long unsigned int start_stack; -+ long unsigned int arg_start; -+ long unsigned int arg_end; -+ long unsigned int env_start; -+ long unsigned int env_end; -+ long unsigned int saved_auxv[46]; -+ struct mm_rss_stat rss_stat; -+ struct linux_binfmt *binfmt; -+ mm_context_t___2 context; -+ long unsigned int flags; -+ struct core_state___2 *core_state; -+ spinlock_t ioctx_lock; -+ struct kioctx_table *ioctx_table; -+ struct task_struct___2 *owner; -+ struct user_namespace___2 *user_ns; -+ struct file___2 *exe_file; -+ struct mmu_notifier_mm *mmu_notifier_mm; -+ long unsigned int numa_next_scan; -+ long unsigned int numa_scan_offset; -+ int numa_scan_seq; -+ atomic_t tlb_flush_pending; -+ bool tlb_flush_batched; -+ struct uprobes_state uprobes_state; -+ atomic_long_t hugetlb_usage; -+ struct work_struct async_put_work; -+ struct hmm *hmm; -+ }; -+ struct kvm *kvm; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int cpu_bitmap[0]; -+}; -+ -+struct hw_perf_event___2 { -+ union { -+ struct { -+ u64 config; -+ u64 last_tag; -+ long unsigned int config_base; -+ long unsigned int event_base; -+ int event_base_rdpmc; -+ int idx; -+ int last_cpu; -+ int flags; -+ struct hw_perf_event_extra extra_reg; -+ struct hw_perf_event_extra branch_reg; -+ }; -+ struct { -+ struct hrtimer hrtimer; -+ }; -+ struct { -+ struct list_head tp_list; -+ }; -+ struct { -+ u64 pwr_acc; -+ u64 ptsc; -+ }; -+ struct { -+ struct arch_hw_breakpoint info; -+ struct list_head bp_list; -+ }; -+ struct { -+ u8 iommu_bank; -+ u8 iommu_cntr; -+ u16 padding; -+ u64 conf; -+ u64 conf1; -+ }; -+ }; -+ struct task_struct___2 *target; -+ void *addr_filters; -+ long unsigned int addr_filters_gen; -+ int state; -+ local64_t prev_count; -+ u64 sample_period; -+ union { -+ struct { -+ u64 last_period; -+ local64_t period_left; -+ }; -+ struct { -+ u64 saved_metric; -+ u64 saved_slots; -+ }; -+ }; -+ u64 interrupts_seq; -+ u64 interrupts; -+ u64 freq_time_stamp; -+ u64 freq_count_stamp; -+}; -+ -+typedef void (*perf_overflow_handler_t___2)(struct perf_event___2 *, struct perf_sample_data *, struct pt_regs *); -+ -+struct pmu___2; -+ -+struct ring_buffer___2; -+ -+struct fasync_struct___2; -+ -+struct pid_namespace___2; -+ -+struct bpf_prog___2; -+ -+struct trace_event_call___2; -+ -+struct perf_cgroup___2; -+ -+struct perf_event___2 { -+ struct list_head event_entry; -+ struct list_head sibling_list; -+ struct list_head active_list; -+ struct rb_node group_node; -+ u64 group_index; -+ struct list_head migrate_entry; -+ struct hlist_node hlist_entry; -+ struct list_head active_entry; -+ int nr_siblings; -+ int event_caps; -+ int group_caps; -+ struct perf_event___2 *group_leader; -+ struct pmu___2 *pmu; -+ void *pmu_private; -+ enum perf_event_state state; -+ unsigned int attach_state; -+ local64_t count; -+ atomic64_t child_count; -+ u64 total_time_enabled; -+ u64 total_time_running; -+ u64 tstamp; -+ u64 shadow_ctx_time; -+ struct perf_event_attr attr; -+ u16 header_size; -+ u16 id_header_size; -+ u16 read_size; -+ struct hw_perf_event___2 hw; -+ struct perf_event_context___2 *ctx; -+ atomic_long_t refcount; -+ atomic64_t child_total_time_enabled; -+ atomic64_t child_total_time_running; -+ struct mutex child_mutex; -+ struct list_head child_list; -+ struct perf_event___2 *parent; -+ int oncpu; -+ int cpu; -+ struct list_head owner_entry; -+ struct task_struct___2 *owner; -+ struct mutex mmap_mutex; -+ atomic_t mmap_count; -+ struct ring_buffer___2 *rb; -+ struct list_head rb_entry; -+ long unsigned int rcu_batches; -+ int rcu_pending; -+ wait_queue_head_t waitq; -+ struct fasync_struct___2 *fasync; -+ int pending_wakeup; -+ int pending_kill; -+ int pending_disable; -+ struct irq_work pending; -+ atomic_t event_limit; -+ struct perf_addr_filters_head addr_filters; -+ struct perf_addr_filter_range *addr_filter_ranges; -+ long unsigned int addr_filters_gen; -+ void (*destroy)(struct perf_event___2 *); -+ struct callback_head callback_head; -+ struct pid_namespace___2 *ns; -+ u64 id; -+ u64 (*clock)(); -+ perf_overflow_handler_t___2 overflow_handler; -+ void *overflow_handler_context; -+ perf_overflow_handler_t___2 orig_overflow_handler; -+ struct bpf_prog___2 *prog; -+ struct trace_event_call___2 *tp_event; -+ struct event_filter *filter; -+ struct ftrace_ops ftrace_ops; -+ struct perf_cgroup___2 *cgrp; -+ struct list_head sb_list; -+}; -+ -+struct dentry_operations___2; -+ -+struct dentry___2 { -+ unsigned int d_flags; -+ seqcount_t d_seq; -+ struct hlist_bl_node d_hash; -+ struct dentry___2 *d_parent; -+ struct qstr d_name; -+ struct inode___2 *d_inode; -+ unsigned char d_iname[32]; -+ struct lockref d_lockref; -+ const struct dentry_operations___2 *d_op; -+ struct super_block___2 *d_sb; -+ long unsigned int d_time; -+ void *d_fsdata; -+ union { -+ struct list_head d_lru; -+ wait_queue_head_t *d_wait; -+ }; -+ struct list_head d_child; -+ struct list_head d_subdirs; -+ union { -+ struct hlist_node d_alias; -+ struct hlist_bl_node d_in_lookup_hash; -+ struct callback_head d_rcu; -+ } d_u; -+ atomic_t d_neg_dnum; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct address_space_operations___2; -+ -+struct address_space___2 { -+ struct inode___2 *host; -+ struct radix_tree_root i_pages; -+ atomic_t i_mmap_writable; -+ struct rb_root_cached i_mmap; -+ struct rw_semaphore___2 i_mmap_rwsem; -+ long unsigned int nrpages; -+ long unsigned int nrexceptional; -+ long unsigned int writeback_index; -+ const struct address_space_operations___2 *a_ops; -+ long unsigned int flags; -+ spinlock_t private_lock; -+ gfp_t gfp_mask; -+ struct list_head private_list; -+ void *private_data; -+ errseq_t wb_err; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct inode_operations___2; -+ -+struct block_device___2; -+ -+struct inode___2 { -+ umode_t i_mode; -+ short unsigned int i_opflags; -+ kuid_t i_uid; -+ kgid_t i_gid; -+ unsigned int i_flags; -+ struct posix_acl *i_acl; -+ struct posix_acl *i_default_acl; -+ const struct inode_operations___2 *i_op; -+ struct super_block___2 *i_sb; -+ struct address_space___2 *i_mapping; -+ void *i_security; -+ long unsigned int i_ino; -+ union { -+ const unsigned int i_nlink; -+ unsigned int __i_nlink; -+ }; -+ dev_t i_rdev; -+ loff_t i_size; -+ struct timespec64 i_atime; -+ struct timespec64 i_mtime; -+ struct timespec64 i_ctime; -+ spinlock_t i_lock; -+ short unsigned int i_bytes; -+ u8 i_blkbits; -+ u8 i_write_hint; -+ blkcnt_t i_blocks; -+ long unsigned int i_state; -+ struct rw_semaphore___2 i_rwsem; -+ long unsigned int dirtied_when; -+ long unsigned int dirtied_time_when; -+ struct hlist_node i_hash; -+ struct list_head i_io_list; -+ struct bdi_writeback *i_wb; -+ int i_wb_frn_winner; -+ u16 i_wb_frn_avg_time; -+ u16 i_wb_frn_history; -+ struct list_head i_lru; -+ struct list_head i_sb_list; -+ struct list_head i_wb_list; -+ union { -+ struct hlist_head i_dentry; -+ struct callback_head i_rcu; -+ }; -+ atomic64_t i_version; -+ atomic_t i_count; -+ atomic_t i_dio_count; -+ atomic_t i_writecount; -+ atomic_t i_readcount; -+ const struct file_operations___2 *i_fop; -+ struct file_lock_context *i_flctx; -+ struct address_space___2 i_data; -+ struct list_head i_devices; -+ union { -+ struct pipe_inode_info___2 *i_pipe; -+ struct block_device___2 *i_bdev; -+ struct cdev *i_cdev; -+ char *i_link; -+ unsigned int i_dir_seq; -+ }; -+ __u32 i_generation; -+ __u32 i_fsnotify_mask; -+ struct fsnotify_mark_connector *i_fsnotify_marks; -+ void *i_private; -+ atomic64_t i_sequence; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct vfsmount___2; -+ -+struct path___2; -+ -+struct dentry_operations___2 { -+ int (*d_revalidate)(struct dentry___2 *, unsigned int); -+ int (*d_weak_revalidate)(struct dentry___2 *, unsigned int); -+ int (*d_hash)(const struct dentry___2 *, struct qstr *); -+ int (*d_compare)(const struct dentry___2 *, unsigned int, const char *, const struct qstr *); -+ int (*d_delete)(const struct dentry___2 *); -+ int (*d_init)(struct dentry___2 *); -+ void (*d_release)(struct dentry___2 *); -+ void (*d_prune)(struct dentry___2 *); -+ void (*d_iput)(struct dentry___2 *, struct inode___2 *); -+ char * (*d_dname)(struct dentry___2 *, char *, int); -+ struct vfsmount___2 * (*d_automount)(struct path___2 *); -+ int (*d_manage)(const struct path___2 *, bool); -+ struct dentry___2 * (*d_real)(struct dentry___2 *, const struct inode___2 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct quota_format_type___2; -+ -+struct mem_dqinfo___2 { -+ struct quota_format_type___2 *dqi_format; -+ int dqi_fmt_id; -+ struct list_head dqi_dirty_list; -+ long unsigned int dqi_flags; -+ unsigned int dqi_bgrace; -+ unsigned int dqi_igrace; -+ qsize_t dqi_max_spc_limit; -+ qsize_t dqi_max_ino_limit; -+ void *dqi_priv; -+}; -+ -+struct quota_format_ops___2; -+ -+struct quota_info___2 { -+ unsigned int flags; -+ struct rw_semaphore___2 dqio_sem; -+ struct inode___2 *files[3]; -+ struct mem_dqinfo___2 info[3]; -+ const struct quota_format_ops___2 *ops[3]; -+}; -+ -+struct rcuwait___2 { -+ struct task_struct___2 *task; -+}; -+ -+struct percpu_rw_semaphore___2 { -+ struct rcu_sync rss; -+ unsigned int *read_count; -+ struct rw_semaphore___2 rw_sem; -+ struct rcuwait___2 writer; -+ int readers_block; -+}; -+ -+struct sb_writers___2 { -+ int frozen; -+ wait_queue_head_t wait_unfrozen; -+ struct percpu_rw_semaphore___2 rw_sem[3]; -+}; -+ -+struct file_system_type___2; -+ -+struct super_operations___2; -+ -+struct dquot_operations___2; -+ -+struct quotactl_ops___2; -+ -+struct super_block___2 { -+ struct list_head s_list; -+ dev_t s_dev; -+ unsigned char s_blocksize_bits; -+ long unsigned int s_blocksize; -+ loff_t s_maxbytes; -+ struct file_system_type___2 *s_type; -+ const struct super_operations___2 *s_op; -+ const struct dquot_operations___2 *dq_op; -+ const struct quotactl_ops___2 *s_qcop; -+ const struct export_operations *s_export_op; -+ long unsigned int s_flags; -+ long unsigned int s_iflags; -+ long unsigned int s_magic; -+ struct dentry___2 *s_root; -+ struct rw_semaphore___2 s_umount; -+ int s_count; -+ atomic_t s_active; -+ void *s_security; -+ const struct xattr_handler **s_xattr; -+ struct hlist_bl_head s_roots; -+ struct list_head s_mounts; -+ struct block_device___2 *s_bdev; -+ struct backing_dev_info *s_bdi; -+ struct mtd_info *s_mtd; -+ struct hlist_node s_instances; -+ unsigned int s_quota_types; -+ struct quota_info___2 s_dquot; -+ struct sb_writers___2 s_writers; -+ char s_id[32]; -+ uuid_t s_uuid; -+ void *s_fs_info; -+ unsigned int s_max_links; -+ fmode_t s_mode; -+ u32 s_time_gran; -+ struct mutex s_vfs_rename_mutex; -+ char *s_subtype; -+ const struct dentry_operations___2 *s_d_op; -+ int cleancache_poolid; -+ struct shrinker s_shrink; -+ atomic_long_t s_remove_count; -+ atomic_long_t s_fsnotify_inode_refs; -+ int s_readonly_remount; -+ struct workqueue_struct *s_dio_done_wq; -+ struct hlist_head s_pins; -+ struct user_namespace___2 *s_user_ns; -+ struct list_lru s_dentry_lru; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct list_lru s_inode_lru; -+ struct callback_head rcu; -+ struct work_struct destroy_work; -+ struct mutex s_sync_lock; -+ int s_stack_depth; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t s_inode_list_lock; -+ struct list_head s_inodes; -+ spinlock_t s_inode_wblist_lock; -+ struct list_head s_inodes_wb; -+ long: 64; -+ long: 64; -+}; -+ -+struct vfsmount___2 { -+ struct dentry___2 *mnt_root; -+ struct super_block___2 *mnt_sb; -+ int mnt_flags; -+}; -+ -+struct path___2 { -+ struct vfsmount___2 *mnt; -+ struct dentry___2 *dentry; -+}; -+ -+struct proc_ns_operations___2; -+ -+struct ns_common___2 { -+ atomic_long_t stashed; -+ const struct proc_ns_operations___2 *ops; -+ unsigned int inum; -+}; -+ -+struct key___2; -+ -+struct ucounts___2; -+ -+struct user_namespace___2 { -+ struct uid_gid_map uid_map; -+ struct uid_gid_map gid_map; -+ struct uid_gid_map projid_map; -+ atomic_t count; -+ struct user_namespace___2 *parent; -+ int level; -+ kuid_t owner; -+ kgid_t group; -+ struct ns_common___2 ns; -+ long unsigned int flags; -+ struct key___2 *persistent_keyring_register; -+ struct rw_semaphore___2 persistent_keyring_register_sem; -+ struct work_struct work; -+ struct ctl_table_set set; -+ struct ctl_table_header *sysctls; -+ struct ucounts___2 *ucounts; -+ int ucount_max[9]; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct upid___2 { -+ int nr; -+ struct pid_namespace___2 *ns; -+}; -+ -+struct pid_namespace___2 { -+ struct kref kref; -+ struct idr idr; -+ struct callback_head rcu; -+ unsigned int pid_allocated; -+ struct task_struct___2 *child_reaper; -+ struct kmem_cache *pid_cachep; -+ unsigned int level; -+ struct pid_namespace___2 *parent; -+ struct vfsmount___2 *proc_mnt; -+ struct dentry___2 *proc_self; -+ struct dentry___2 *proc_thread_self; -+ struct fs_pin *bacct; -+ struct user_namespace___2 *user_ns; -+ struct ucounts___2 *ucounts; -+ struct work_struct proc_work; -+ kgid_t pid_gid; -+ int hide_pid; -+ int pid_max; -+ int reboot; -+ struct ns_common___2 ns; -+}; -+ -+struct pid___2 { -+ atomic_t count; -+ unsigned int level; -+ struct hlist_head tasks[4]; -+ struct callback_head rcu; -+ struct upid___2 numbers[1]; -+}; -+ -+struct vm_operations_struct___2; -+ -+struct vm_area_struct___2 { -+ long unsigned int vm_start; -+ long unsigned int vm_end; -+ struct vm_area_struct___2 *vm_next; -+ struct vm_area_struct___2 *vm_prev; -+ struct rb_node vm_rb; -+ long unsigned int rb_subtree_gap; -+ struct mm_struct___2 *vm_mm; -+ pgprot_t vm_page_prot; -+ long unsigned int vm_flags; -+ struct { -+ struct rb_node rb; -+ long unsigned int rb_subtree_last; -+ } shared; -+ struct list_head anon_vma_chain; -+ struct anon_vma *anon_vma; -+ const struct vm_operations_struct___2 *vm_ops; -+ long unsigned int vm_pgoff; -+ struct file___2 *vm_file; -+ void *vm_private_data; -+ atomic_long_t swap_readahead_info; -+ struct mempolicy *vm_policy; -+ struct vm_userfaultfd_ctx vm_userfaultfd_ctx; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct blocking_notifier_head___2 { -+ struct rw_semaphore___2 rwsem; -+ struct notifier_block *head; -+}; -+ -+typedef int (*dev_page_fault_t___2)(struct vm_area_struct___2 *, long unsigned int, const struct page___2 *, unsigned int, pmd_t *); -+ -+typedef void (*dev_page_free_t___2)(struct page___2 *, void *); -+ -+struct device___2; -+ -+struct dev_pagemap___2 { -+ dev_page_fault_t___2 page_fault; -+ dev_page_free_t___2 page_free; -+ struct vmem_altmap altmap; -+ bool altmap_valid; -+ struct resource res; -+ struct percpu_ref *ref; -+ void (*kill)(struct percpu_ref *); -+ struct device___2 *dev; -+ void *data; -+ enum memory_type type; -+}; -+ -+struct fown_struct___2 { -+ rwlock_t lock; -+ struct pid___2 *pid; -+ enum pid_type pid_type; -+ kuid_t uid; -+ kuid_t euid; -+ int signum; -+}; -+ -+struct file___2 { -+ union { -+ struct llist_node fu_llist; -+ struct callback_head fu_rcuhead; -+ } f_u; -+ struct path___2 f_path; -+ struct inode___2 *f_inode; -+ const struct file_operations___2 *f_op; -+ spinlock_t f_lock; -+ enum rw_hint f_write_hint; -+ atomic_long_t f_count; -+ unsigned int f_flags; -+ fmode_t f_mode; -+ struct mutex f_pos_lock; -+ loff_t f_pos; -+ struct fown_struct___2 f_owner; -+ const struct cred___2 *f_cred; -+ struct file_ra_state f_ra; -+ u64 f_version; -+ void *f_security; -+ void *private_data; -+ struct list_head f_ep_links; -+ struct list_head f_tfile_llink; -+ struct address_space___2 *f_mapping; -+ errseq_t f_wb_err; -+}; -+ -+struct vm_fault___2; -+ -+struct vm_operations_struct___2 { -+ void (*open)(struct vm_area_struct___2 *); -+ void (*close)(struct vm_area_struct___2 *); -+ int (*split)(struct vm_area_struct___2 *, long unsigned int); -+ int (*mremap)(struct vm_area_struct___2 *); -+ vm_fault_t (*fault)(struct vm_fault___2 *); -+ vm_fault_t (*huge_fault)(struct vm_fault___2 *, enum page_entry_size); -+ void (*map_pages)(struct vm_fault___2 *, long unsigned int, long unsigned int); -+ long unsigned int (*pagesize)(struct vm_area_struct___2 *); -+ vm_fault_t (*page_mkwrite)(struct vm_fault___2 *); -+ vm_fault_t (*pfn_mkwrite)(struct vm_fault___2 *); -+ int (*access)(struct vm_area_struct___2 *, long unsigned int, void *, int, int); -+ const char * (*name)(struct vm_area_struct___2 *); -+ int (*set_policy)(struct vm_area_struct___2 *, struct mempolicy *); -+ struct mempolicy * (*get_policy)(struct vm_area_struct___2 *, long unsigned int); -+ struct page___2 * (*find_special_page)(struct vm_area_struct___2 *, long unsigned int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct core_thread___2 { -+ struct task_struct___2 *task; -+ struct core_thread___2 *next; -+}; -+ -+struct core_state___2 { -+ atomic_t nr_threads; -+ struct core_thread___2 dumper; -+ struct completion startup; -+}; -+ -+struct vm_fault___2 { -+ struct vm_area_struct___2 *vma; -+ unsigned int flags; -+ gfp_t gfp_mask; -+ long unsigned int pgoff; -+ long unsigned int address; -+ pmd_t *pmd; -+ pud_t *pud; -+ pte_t orig_pte; -+ struct page___2 *cow_page; -+ struct mem_cgroup *memcg; -+ struct page___2 *page; -+ pte_t *pte; -+ spinlock_t *ptl; -+ pgtable_t___2 prealloc_pte; -+}; -+ -+struct fwnode_operations___2; -+ -+struct fwnode_handle___2 { -+ struct fwnode_handle___2 *secondary; -+ const struct fwnode_operations___2 *ops; -+}; -+ -+struct fwnode_reference_args___2; -+ -+struct fwnode_endpoint___2; -+ -+struct fwnode_operations___2 { -+ struct fwnode_handle___2 * (*get)(struct fwnode_handle___2 *); -+ void (*put)(struct fwnode_handle___2 *); -+ bool (*device_is_available)(const struct fwnode_handle___2 *); -+ const void * (*device_get_match_data)(const struct fwnode_handle___2 *, const struct device___2 *); -+ bool (*property_present)(const struct fwnode_handle___2 *, const char *); -+ int (*property_read_int_array)(const struct fwnode_handle___2 *, const char *, unsigned int, void *, size_t); -+ int (*property_read_string_array)(const struct fwnode_handle___2 *, const char *, const char **, size_t); -+ struct fwnode_handle___2 * (*get_parent)(const struct fwnode_handle___2 *); -+ struct fwnode_handle___2 * (*get_next_child_node)(const struct fwnode_handle___2 *, struct fwnode_handle___2 *); -+ struct fwnode_handle___2 * (*get_named_child_node)(const struct fwnode_handle___2 *, const char *); -+ int (*get_reference_args)(const struct fwnode_handle___2 *, const char *, const char *, unsigned int, unsigned int, struct fwnode_reference_args___2 *); -+ struct fwnode_handle___2 * (*graph_get_next_endpoint)(const struct fwnode_handle___2 *, struct fwnode_handle___2 *); -+ struct fwnode_handle___2 * (*graph_get_remote_endpoint)(const struct fwnode_handle___2 *); -+ struct fwnode_handle___2 * (*graph_get_port_parent)(struct fwnode_handle___2 *); -+ int (*graph_parse_endpoint)(const struct fwnode_handle___2 *, struct fwnode_endpoint___2 *); -+}; -+ -+struct fwnode_endpoint___2 { -+ unsigned int port; -+ unsigned int id; -+ const struct fwnode_handle___2 *local_fwnode; -+}; -+ -+struct fwnode_reference_args___2 { -+ struct fwnode_handle___2 *fwnode; -+ unsigned int nargs; -+ u64 args[8]; -+}; -+ -+struct kset___2; -+ -+struct kobj_type___2; -+ -+struct kernfs_node___2; -+ -+struct kobject___3 { -+ const char *name; -+ struct list_head entry; -+ struct kobject___3 *parent; -+ struct kset___2 *kset; -+ struct kobj_type___2 *ktype; -+ struct kernfs_node___2 *sd; -+ struct kref kref; -+ unsigned int state_initialized: 1; -+ unsigned int state_in_sysfs: 1; -+ unsigned int state_add_uevent_sent: 1; -+ unsigned int state_remove_uevent_sent: 1; -+ unsigned int uevent_suppress: 1; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct dev_pm_info___2 { -+ pm_message_t power_state; -+ unsigned int can_wakeup: 1; -+ unsigned int async_suspend: 1; -+ bool in_dpm_list: 1; -+ bool is_prepared: 1; -+ bool is_suspended: 1; -+ bool is_noirq_suspended: 1; -+ bool is_late_suspended: 1; -+ bool early_init: 1; -+ bool direct_complete: 1; -+ u32 driver_flags; -+ spinlock_t lock; -+ struct list_head entry; -+ struct completion completion; -+ struct wakeup_source *wakeup; -+ bool wakeup_path: 1; -+ bool syscore: 1; -+ bool no_pm_callbacks: 1; -+ unsigned int must_resume: 1; -+ unsigned int may_skip_resume: 1; -+ struct timer_list suspend_timer; -+ long unsigned int timer_expires; -+ struct work_struct work; -+ wait_queue_head_t wait_queue; -+ struct wake_irq *wakeirq; -+ atomic_t usage_count; -+ atomic_t child_count; -+ unsigned int disable_depth: 3; -+ unsigned int idle_notification: 1; -+ unsigned int request_pending: 1; -+ unsigned int deferred_resume: 1; -+ unsigned int runtime_auto: 1; -+ bool ignore_children: 1; -+ unsigned int no_callbacks: 1; -+ unsigned int irq_safe: 1; -+ unsigned int use_autosuspend: 1; -+ unsigned int timer_autosuspends: 1; -+ unsigned int memalloc_noio: 1; -+ unsigned int links_count; -+ enum rpm_request request; -+ enum rpm_status runtime_status; -+ int runtime_error; -+ int autosuspend_delay; -+ long unsigned int last_busy; -+ long unsigned int active_jiffies; -+ long unsigned int suspended_jiffies; -+ long unsigned int accounting_timestamp; -+ struct pm_subsys_data *subsys_data; -+ void (*set_latency_tolerance)(struct device___2 *, s32); -+ struct dev_pm_qos *qos; -+}; -+ -+struct device_type___2; -+ -+struct bus_type___2; -+ -+struct device_driver___2; -+ -+struct dev_pm_domain___2; -+ -+struct dma_map_ops___2; -+ -+struct device_node___2; -+ -+struct class___2; -+ -+struct attribute_group___2; -+ -+struct device___2 { -+ struct device___2 *parent; -+ struct device_private *p; -+ struct kobject___3 kobj; -+ const char *init_name; -+ const struct device_type___2 *type; -+ struct mutex mutex; -+ struct bus_type___2 *bus; -+ struct device_driver___2 *driver; -+ void *platform_data; -+ void *driver_data; -+ struct dev_links_info links; -+ struct dev_pm_info___2 power; -+ struct dev_pm_domain___2 *pm_domain; -+ struct irq_domain *msi_domain; -+ struct dev_pin_info *pins; -+ struct list_head msi_list; -+ int numa_node; -+ const struct dma_map_ops___2 *dma_ops; -+ u64 *dma_mask; -+ u64 coherent_dma_mask; -+ u64 bus_dma_mask; -+ long unsigned int dma_pfn_offset; -+ struct device_dma_parameters *dma_parms; -+ struct list_head dma_pools; -+ struct dma_coherent_mem *dma_mem; -+ struct dev_archdata archdata; -+ struct device_node___2 *of_node; -+ struct fwnode_handle___2 *fwnode; -+ dev_t devt; -+ u32 id; -+ spinlock_t devres_lock; -+ struct list_head devres_head; -+ struct klist_node knode_class; -+ struct class___2 *class; -+ const struct attribute_group___2 **groups; -+ void (*release)(struct device___2 *); -+ struct iommu_group *iommu_group; -+ struct iommu_fwspec *iommu_fwspec; -+ struct iommu_param *iommu_param; -+ bool offline_disabled: 1; -+ bool offline: 1; -+ bool of_node_reused: 1; -+ union { -+ raw_spinlock_t msi_lock; -+ long unsigned int kabi_reserve1; -+ }; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+}; -+ -+struct vm_struct___2 { -+ struct vm_struct___2 *next; -+ void *addr; -+ long unsigned int size; -+ long unsigned int flags; -+ struct page___2 **pages; -+ unsigned int nr_pages; -+ phys_addr_t phys_addr; -+ const void *caller; -+}; -+ -+struct smp_ops___2 { -+ void (*smp_prepare_boot_cpu)(); -+ void (*smp_prepare_cpus)(unsigned int); -+ void (*smp_cpus_done)(unsigned int); -+ void (*stop_other_cpus)(int); -+ void (*crash_stop_other_cpus)(); -+ void (*smp_send_reschedule)(int); -+ int (*cpu_up)(unsigned int, struct task_struct___2 *); -+ int (*cpu_disable)(); -+ void (*cpu_die)(unsigned int); -+ void (*play_dead)(); -+ void (*send_call_func_ipi)(const struct cpumask *); -+ void (*send_call_func_single_ipi)(int); -+}; -+ -+struct user_struct___2 { -+ refcount_t __count; -+ atomic_t processes; -+ atomic_t sigpending; -+ atomic_t fanotify_listeners; -+ atomic_long_t epoll_watches; -+ long unsigned int mq_bytes; -+ long unsigned int locked_shm; -+ long unsigned int unix_inflight; -+ atomic_long_t pipe_bufs; -+ struct key___2 *uid_keyring; -+ struct key___2 *session_keyring; -+ struct hlist_node uidhash_node; -+ kuid_t uid; -+ atomic_long_t locked_vm; -+ struct ratelimit_state ratelimit; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct cred___2 { -+ atomic_t usage; -+ kuid_t uid; -+ kgid_t gid; -+ kuid_t suid; -+ kgid_t sgid; -+ kuid_t euid; -+ kgid_t egid; -+ kuid_t fsuid; -+ kgid_t fsgid; -+ unsigned int securebits; -+ kernel_cap_t cap_inheritable; -+ kernel_cap_t cap_permitted; -+ kernel_cap_t cap_effective; -+ kernel_cap_t cap_bset; -+ kernel_cap_t cap_ambient; -+ unsigned char jit_keyring; -+ struct key___2 *session_keyring; -+ struct key___2 *process_keyring; -+ struct key___2 *thread_keyring; -+ struct key___2 *request_key_auth; -+ void *security; -+ struct user_struct___2 *user; -+ struct user_namespace___2 *user_ns; -+ struct group_info *group_info; -+ union { -+ int non_rcu; -+ struct callback_head rcu; -+ }; -+}; -+ -+struct net___2; -+ -+struct cgroup_namespace___2; -+ -+struct nsproxy___2 { -+ atomic_t count; -+ struct uts_namespace *uts_ns; -+ struct ipc_namespace *ipc_ns; -+ struct mnt_namespace *mnt_ns; -+ struct pid_namespace___2 *pid_ns_for_children; -+ struct net___2 *net_ns; -+ struct cgroup_namespace___2 *cgroup_ns; -+}; -+ -+struct signal_struct___2 { -+ atomic_t sigcnt; -+ atomic_t live; -+ int nr_threads; -+ struct list_head thread_head; -+ wait_queue_head_t wait_chldexit; -+ struct task_struct___2 *curr_target; -+ struct sigpending shared_pending; -+ struct hlist_head multiprocess; -+ int group_exit_code; -+ int notify_count; -+ struct task_struct___2 *group_exit_task; -+ int group_stop_count; -+ unsigned int flags; -+ unsigned int is_child_subreaper: 1; -+ unsigned int has_child_subreaper: 1; -+ int posix_timer_id; -+ struct list_head posix_timers; -+ struct hrtimer real_timer; -+ ktime_t it_real_incr; -+ struct cpu_itimer it[2]; -+ struct thread_group_cputimer cputimer; -+ struct task_cputime cputime_expires; -+ struct list_head cpu_timers[3]; -+ struct pid___2 *pids[4]; -+ atomic_t tick_dep_mask; -+ struct pid___2 *tty_old_pgrp; -+ int leader; -+ struct tty_struct *tty; -+ struct autogroup *autogroup; -+ seqlock_t stats_lock; -+ u64 utime; -+ u64 stime; -+ u64 cutime; -+ u64 cstime; -+ u64 gtime; -+ u64 cgtime; -+ struct prev_cputime prev_cputime; -+ long unsigned int nvcsw; -+ long unsigned int nivcsw; -+ long unsigned int cnvcsw; -+ long unsigned int cnivcsw; -+ long unsigned int min_flt; -+ long unsigned int maj_flt; -+ long unsigned int cmin_flt; -+ long unsigned int cmaj_flt; -+ long unsigned int inblock; -+ long unsigned int oublock; -+ long unsigned int cinblock; -+ long unsigned int coublock; -+ long unsigned int maxrss; -+ long unsigned int cmaxrss; -+ struct task_io_accounting ioac; -+ long long unsigned int sum_sched_runtime; -+ struct rlimit rlim[16]; -+ struct pacct_struct pacct; -+ struct taskstats *stats; -+ unsigned int audit_tty; -+ struct tty_audit_buf *tty_audit_buf; -+ bool oom_flag_origin; -+ short int oom_score_adj; -+ short int oom_score_adj_min; -+ struct mm_struct___2 *oom_mm; -+ struct mutex cred_guard_mutex; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct cgroup_subsys_state___2; -+ -+struct cgroup___2; -+ -+struct css_set___2 { -+ struct cgroup_subsys_state___2 *subsys[14]; -+ refcount_t refcount; -+ struct css_set___2 *dom_cset; -+ struct cgroup___2 *dfl_cgrp; -+ int nr_tasks; -+ struct list_head tasks; -+ struct list_head mg_tasks; -+ struct list_head dying_tasks; -+ struct list_head task_iters; -+ struct list_head e_cset_node[14]; -+ struct list_head threaded_csets; -+ struct list_head threaded_csets_node; -+ struct hlist_node hlist; -+ struct list_head cgrp_links; -+ struct list_head mg_preload_node; -+ struct list_head mg_node; -+ struct cgroup___2 *mg_src_cgrp; -+ struct cgroup___2 *mg_dst_cgrp; -+ struct css_set___2 *mg_dst_cset; -+ bool dead; -+ struct callback_head callback_head; -+}; -+ -+struct perf_event_context___2 { -+ struct pmu___2 *pmu; -+ raw_spinlock_t lock; -+ struct mutex mutex; -+ struct list_head active_ctx_list; -+ struct perf_event_groups pinned_groups; -+ struct perf_event_groups flexible_groups; -+ struct list_head event_list; -+ struct list_head pinned_active; -+ struct list_head flexible_active; -+ int nr_events; -+ int nr_active; -+ int is_active; -+ int nr_stat; -+ int nr_freq; -+ int rotate_disable; -+ atomic_t refcount; -+ struct task_struct___2 *task; -+ u64 time; -+ u64 timestamp; -+ struct perf_event_context___2 *parent_ctx; -+ u64 parent_gen; -+ u64 generation; -+ int pin_count; -+ int nr_cgroups; -+ void *task_ctx_data; -+ struct callback_head callback_head; -+}; -+ -+struct pipe_buffer___2; -+ -+struct pipe_inode_info___2 { -+ struct mutex mutex; -+ wait_queue_head_t wait; -+ unsigned int nrbufs; -+ unsigned int curbuf; -+ unsigned int buffers; -+ unsigned int readers; -+ unsigned int writers; -+ unsigned int files; -+ unsigned int waiting_writers; -+ unsigned int r_counter; -+ unsigned int w_counter; -+ struct page___2 *tmp_page; -+ struct fasync_struct___2 *fasync_readers; -+ struct fasync_struct___2 *fasync_writers; -+ struct pipe_buffer___2 *bufs; -+ struct user_struct___2 *user; -+}; -+ -+union thread_union___2 { -+ struct task_struct___2 task; -+ long unsigned int stack[2048]; -+}; -+ -+struct kiocb___2 { -+ struct file___2 *ki_filp; -+ loff_t ki_pos; -+ void (*ki_complete)(struct kiocb___2 *, long int, long int); -+ void *private; -+ int ki_flags; -+ u16 ki_hint; -+ u16 ki_ioprio; -+}; -+ -+struct iattr___2 { -+ unsigned int ia_valid; -+ umode_t ia_mode; -+ kuid_t ia_uid; -+ kgid_t ia_gid; -+ loff_t ia_size; -+ struct timespec64 ia_atime; -+ struct timespec64 ia_mtime; -+ struct timespec64 ia_ctime; -+ struct file___2 *ia_file; -+}; -+ -+struct pglist_data___2; -+ -+struct lruvec___2 { -+ struct list_head lists[5]; -+ struct zone_reclaim_stat reclaim_stat; -+ atomic_long_t inactive_age; -+ long unsigned int refaults; -+ struct pglist_data___2 *pgdat; -+}; -+ -+struct zone___2 { -+ long unsigned int watermark[3]; -+ long unsigned int nr_reserved_highatomic; -+ long int lowmem_reserve[5]; -+ int node; -+ struct pglist_data___2 *zone_pgdat; -+ struct per_cpu_pageset *pageset; -+ long unsigned int zone_start_pfn; -+ long unsigned int managed_pages; -+ long unsigned int spanned_pages; -+ long unsigned int present_pages; -+ const char *name; -+ long unsigned int nr_isolate_pageblock; -+ seqlock_t span_seqlock; -+ int initialized; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ struct free_area free_area[11]; -+ long unsigned int flags; -+ spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad2_; -+ long unsigned int percpu_drift_mark; -+ long unsigned int compact_cached_free_pfn; -+ long unsigned int compact_cached_migrate_pfn[2]; -+ unsigned int compact_considered; -+ unsigned int compact_defer_shift; -+ int compact_order_failed; -+ bool compact_blockskip_flush; -+ bool contiguous; -+ long: 16; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad3_; -+ atomic_long_t vm_stat[13]; -+ atomic_long_t vm_numa_stat[6]; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct zoneref___2 { -+ struct zone___2 *zone; -+ int zone_idx; -+}; -+ -+struct zonelist___2 { -+ struct zoneref___2 _zonerefs[5121]; -+}; -+ -+struct pglist_data___2 { -+ struct zone___2 node_zones[5]; -+ struct zonelist___2 node_zonelists[2]; -+ int nr_zones; -+ spinlock_t node_size_lock; -+ long unsigned int node_start_pfn; -+ long unsigned int node_present_pages; -+ long unsigned int node_spanned_pages; -+ int node_id; -+ wait_queue_head_t kswapd_wait; -+ wait_queue_head_t pfmemalloc_wait; -+ struct task_struct___2 *kswapd; -+ int kswapd_order; -+ enum zone_type kswapd_classzone_idx; -+ int kswapd_failures; -+ int kcompactd_max_order; -+ enum zone_type kcompactd_classzone_idx; -+ wait_queue_head_t kcompactd_wait; -+ struct task_struct___2 *kcompactd; -+ long unsigned int totalreserve_pages; -+ long unsigned int min_unmapped_pages; -+ long unsigned int min_slab_pages; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ spinlock_t lru_lock; -+ long unsigned int first_deferred_pfn; -+ long unsigned int static_init_pgcnt; -+ spinlock_t split_queue_lock; -+ struct list_head split_queue; -+ long unsigned int split_queue_len; -+ struct lruvec___2 lruvec; -+ long unsigned int flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad2_; -+ struct per_cpu_nodestat *per_cpu_nodestats; -+ atomic_long_t vm_stat[28]; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long: 64; -+}; -+ -+typedef struct pglist_data___2 pg_data_t___2; -+ -+struct dquot___2 { -+ struct hlist_node dq_hash; -+ struct list_head dq_inuse; -+ struct list_head dq_free; -+ struct list_head dq_dirty; -+ struct mutex dq_lock; -+ spinlock_t dq_dqb_lock; -+ atomic_t dq_count; -+ struct super_block___2 *dq_sb; -+ struct kqid dq_id; -+ loff_t dq_off; -+ long unsigned int dq_flags; -+ struct mem_dqblk dq_dqb; -+}; -+ -+struct quota_format_type___2 { -+ int qf_fmt_id; -+ const struct quota_format_ops___2 *qf_ops; -+ struct module___2 *qf_owner; -+ struct quota_format_type___2 *qf_next; -+}; -+ -+struct quota_format_ops___2 { -+ int (*check_quota_file)(struct super_block___2 *, int); -+ int (*read_file_info)(struct super_block___2 *, int); -+ int (*write_file_info)(struct super_block___2 *, int); -+ int (*free_file_info)(struct super_block___2 *, int); -+ int (*read_dqblk)(struct dquot___2 *); -+ int (*commit_dqblk)(struct dquot___2 *); -+ int (*release_dqblk)(struct dquot___2 *); -+ int (*get_next_id)(struct super_block___2 *, struct kqid *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct dquot_operations___2 { -+ int (*write_dquot)(struct dquot___2 *); -+ struct dquot___2 * (*alloc_dquot)(struct super_block___2 *, int); -+ void (*destroy_dquot)(struct dquot___2 *); -+ int (*acquire_dquot)(struct dquot___2 *); -+ int (*release_dquot)(struct dquot___2 *); -+ int (*mark_dirty)(struct dquot___2 *); -+ int (*write_info)(struct super_block___2 *, int); -+ qsize_t * (*get_reserved_space)(struct inode___2 *); -+ int (*get_projid)(struct inode___2 *, kprojid_t *); -+ int (*get_inode_usage)(struct inode___2 *, qsize_t *); -+ int (*get_next_id)(struct super_block___2 *, struct kqid *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct quotactl_ops___2 { -+ int (*quota_on)(struct super_block___2 *, int, int, const struct path___2 *); -+ int (*quota_off)(struct super_block___2 *, int); -+ int (*quota_enable)(struct super_block___2 *, unsigned int); -+ int (*quota_disable)(struct super_block___2 *, unsigned int); -+ int (*quota_sync)(struct super_block___2 *, int); -+ int (*set_info)(struct super_block___2 *, int, struct qc_info *); -+ int (*get_dqblk)(struct super_block___2 *, struct kqid, struct qc_dqblk *); -+ int (*get_nextdqblk)(struct super_block___2 *, struct kqid *, struct qc_dqblk *); -+ int (*set_dqblk)(struct super_block___2 *, struct kqid, struct qc_dqblk *); -+ int (*get_state)(struct super_block___2 *, struct qc_state *); -+ int (*rm_xquota)(struct super_block___2 *, unsigned int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct module_kobject___2 { -+ struct kobject___3 kobj; -+ struct module___2 *mod; -+ struct kobject___3 *drivers_dir; -+ struct module_param_attrs *mp; -+ struct completion *kobj_completion; -+}; -+ -+struct mod_tree_node___2 { -+ struct module___2 *mod; -+ struct latch_tree_node node; -+}; -+ -+struct module_layout___2 { -+ void *base; -+ unsigned int size; -+ unsigned int text_size; -+ unsigned int ro_size; -+ unsigned int ro_after_init_size; -+ struct mod_tree_node___2 mtn; -+}; -+ -+struct module_attribute___2; -+ -+struct kernel_param___2; -+ -+struct module___2 { -+ enum module_state state; -+ struct list_head list; -+ char name[56]; -+ struct module_kobject___2 mkobj; -+ struct module_attribute___2 *modinfo_attrs; -+ const char *version; -+ const char *srcversion; -+ struct kobject___3 *holders_dir; -+ const struct kernel_symbol *syms; -+ const s32 *crcs; -+ unsigned int num_syms; -+ struct mutex param_lock; -+ struct kernel_param___2 *kp; -+ unsigned int num_kp; -+ unsigned int num_gpl_syms; -+ const struct kernel_symbol *gpl_syms; -+ const s32 *gpl_crcs; -+ bool sig_ok; -+ bool async_probe_requested; -+ const struct kernel_symbol *gpl_future_syms; -+ const s32 *gpl_future_crcs; -+ unsigned int num_gpl_future_syms; -+ unsigned int num_exentries; -+ struct exception_table_entry *extable; -+ int (*init)(); -+ long: 64; -+ struct module_layout___2 core_layout; -+ struct module_layout___2 init_layout; -+ struct mod_arch_specific arch; -+ long unsigned int taints; -+ unsigned int num_bugs; -+ struct list_head bug_list; -+ struct bug_entry *bug_table; -+ struct mod_kallsyms *kallsyms; -+ struct mod_kallsyms core_kallsyms; -+ struct module_sect_attrs *sect_attrs; -+ struct module_notes_attrs *notes_attrs; -+ char *args; -+ void *percpu; -+ unsigned int percpu_size; -+ unsigned int num_tracepoints; -+ tracepoint_ptr_t *tracepoints_ptrs; -+ unsigned int num_bpf_raw_events; -+ struct bpf_raw_event_map *bpf_raw_events; -+ struct jump_entry *jump_entries; -+ unsigned int num_jump_entries; -+ unsigned int num_trace_bprintk_fmt; -+ const char **trace_bprintk_fmt_start; -+ struct trace_event_call___2 **trace_events; -+ unsigned int num_trace_events; -+ struct trace_eval_map **trace_evals; -+ unsigned int num_trace_evals; -+ unsigned int num_ftrace_callsites; -+ long unsigned int *ftrace_callsites; -+ bool klp; -+ bool klp_alive; -+ struct klp_modinfo *klp_info; -+ struct list_head source_list; -+ struct list_head target_list; -+ void (*exit)(); -+ atomic_t refcnt; -+ struct error_injection_entry *ei_funcs; -+ unsigned int num_ei_funcs; -+ union { -+ enum MODULE_KLP_REL_STATE klp_rel_state; -+ long int klp_rel_state_KABI; -+ }; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long: 64; -+ long: 64; -+}; -+ -+struct address_space_operations___2 { -+ int (*writepage)(struct page___2 *, struct writeback_control *); -+ int (*readpage)(struct file___2 *, struct page___2 *); -+ int (*writepages)(struct address_space___2 *, struct writeback_control *); -+ int (*set_page_dirty)(struct page___2 *); -+ int (*readpages)(struct file___2 *, struct address_space___2 *, struct list_head *, unsigned int); -+ int (*write_begin)(struct file___2 *, struct address_space___2 *, loff_t, unsigned int, unsigned int, struct page___2 **, void **); -+ int (*write_end)(struct file___2 *, struct address_space___2 *, loff_t, unsigned int, unsigned int, struct page___2 *, void *); -+ sector_t (*bmap)(struct address_space___2 *, sector_t); -+ void (*invalidatepage)(struct page___2 *, unsigned int, unsigned int); -+ int (*releasepage)(struct page___2 *, gfp_t); -+ void (*freepage)(struct page___2 *); -+ ssize_t (*direct_IO)(struct kiocb___2 *, struct iov_iter___2 *); -+ int (*migratepage)(struct address_space___2 *, struct page___2 *, struct page___2 *, enum migrate_mode); -+ bool (*isolate_page)(struct page___2 *, isolate_mode_t); -+ void (*putback_page)(struct page___2 *); -+ int (*launder_page)(struct page___2 *); -+ int (*is_partially_uptodate)(struct page___2 *, long unsigned int, long unsigned int); -+ void (*is_dirty_writeback)(struct page___2 *, bool *, bool *); -+ int (*error_remove_page)(struct address_space___2 *, struct page___2 *); -+ int (*swap_activate)(struct swap_info_struct *, struct file___2 *, sector_t *); -+ void (*swap_deactivate)(struct file___2 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct iov_iter___2 { -+ int type; -+ size_t iov_offset; -+ size_t count; -+ union { -+ const struct iovec *iov; -+ const struct kvec *kvec; -+ const struct bio_vec *bvec; -+ struct pipe_inode_info___2 *pipe; -+ }; -+ union { -+ long unsigned int nr_segs; -+ struct { -+ int idx; -+ int start_idx; -+ }; -+ }; -+}; -+ -+struct block_device___2 { -+ dev_t bd_dev; -+ int bd_openers; -+ int bd_write_openers; -+ struct inode___2 *bd_inode; -+ struct super_block___2 *bd_super; -+ struct mutex bd_mutex; -+ void *bd_claiming; -+ void *bd_holder; -+ int bd_holders; -+ bool bd_write_holder; -+ struct list_head bd_holder_disks; -+ struct block_device___2 *bd_contains; -+ unsigned int bd_block_size; -+ u8 bd_partno; -+ struct hd_struct *bd_part; -+ unsigned int bd_part_count; -+ int bd_invalidated; -+ struct gendisk *bd_disk; -+ struct request_queue *bd_queue; -+ struct backing_dev_info *bd_bdi; -+ struct list_head bd_list; -+ long unsigned int bd_private; -+ int bd_fsfreeze_count; -+ struct mutex bd_fsfreeze_mutex; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct inode_operations___2 { -+ struct dentry___2 * (*lookup)(struct inode___2 *, struct dentry___2 *, unsigned int); -+ const char * (*get_link)(struct dentry___2 *, struct inode___2 *, struct delayed_call *); -+ int (*permission)(struct inode___2 *, int); -+ struct posix_acl * (*get_acl)(struct inode___2 *, int); -+ int (*readlink)(struct dentry___2 *, char *, int); -+ int (*create)(struct inode___2 *, struct dentry___2 *, umode_t, bool); -+ int (*link)(struct dentry___2 *, struct inode___2 *, struct dentry___2 *); -+ int (*unlink)(struct inode___2 *, struct dentry___2 *); -+ int (*symlink)(struct inode___2 *, struct dentry___2 *, const char *); -+ int (*mkdir)(struct inode___2 *, struct dentry___2 *, umode_t); -+ int (*rmdir)(struct inode___2 *, struct dentry___2 *); -+ int (*mknod)(struct inode___2 *, struct dentry___2 *, umode_t, dev_t); -+ int (*rename)(struct inode___2 *, struct dentry___2 *, struct inode___2 *, struct dentry___2 *, unsigned int); -+ int (*setattr)(struct dentry___2 *, struct iattr___2 *); -+ int (*getattr)(const struct path___2 *, struct kstat *, u32, unsigned int); -+ ssize_t (*listxattr)(struct dentry___2 *, char *, size_t); -+ int (*fiemap)(struct inode___2 *, struct fiemap_extent_info *, u64, u64); -+ int (*update_time)(struct inode___2 *, struct timespec64 *, int); -+ int (*atomic_open)(struct inode___2 *, struct dentry___2 *, struct file___2 *, unsigned int, umode_t); -+ int (*tmpfile)(struct inode___2 *, struct dentry___2 *, umode_t); -+ int (*set_acl)(struct inode___2 *, struct posix_acl *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct file_lock_operations___2 { -+ void (*fl_copy_lock)(struct file_lock___2 *, struct file_lock___2 *); -+ void (*fl_release_private)(struct file_lock___2 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct lock_manager_operations___2; -+ -+struct file_lock___2 { -+ struct file_lock___2 *fl_next; -+ struct list_head fl_list; -+ struct hlist_node fl_link; -+ struct list_head fl_block; -+ fl_owner_t fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_type; -+ unsigned int fl_pid; -+ int fl_link_cpu; -+ wait_queue_head_t fl_wait; -+ struct file___2 *fl_file; -+ loff_t fl_start; -+ loff_t fl_end; -+ struct fasync_struct___2 *fl_fasync; -+ long unsigned int fl_break_time; -+ long unsigned int fl_downgrade_time; -+ const struct file_lock_operations___2 *fl_ops; -+ const struct lock_manager_operations___2 *fl_lmops; -+ union { -+ struct nfs_lock_info nfs_fl; -+ struct nfs4_lock_info nfs4_fl; -+ struct { -+ struct list_head link; -+ int state; -+ } afs; -+ } fl_u; -+}; -+ -+struct lock_manager_operations___2 { -+ int (*lm_compare_owner)(struct file_lock___2 *, struct file_lock___2 *); -+ long unsigned int (*lm_owner_key)(struct file_lock___2 *); -+ fl_owner_t (*lm_get_owner)(fl_owner_t); -+ void (*lm_put_owner)(fl_owner_t); -+ void (*lm_notify)(struct file_lock___2 *); -+ int (*lm_grant)(struct file_lock___2 *, int); -+ bool (*lm_break)(struct file_lock___2 *); -+ int (*lm_change)(struct file_lock___2 *, int, struct list_head *); -+ void (*lm_setup)(struct file_lock___2 *, void **); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct fasync_struct___2 { -+ rwlock_t fa_lock; -+ int magic; -+ int fa_fd; -+ struct fasync_struct___2 *fa_next; -+ struct file___2 *fa_file; -+ struct callback_head fa_rcu; -+}; -+ -+struct file_system_type___2 { -+ const char *name; -+ int fs_flags; -+ struct dentry___2 * (*mount)(struct file_system_type___2 *, int, const char *, void *); -+ void (*kill_sb)(struct super_block___2 *); -+ struct module___2 *owner; -+ struct file_system_type___2 *next; -+ struct hlist_head fs_supers; -+ struct lock_class_key s_lock_key; -+ struct lock_class_key s_umount_key; -+ struct lock_class_key s_vfs_rename_key; -+ struct lock_class_key s_writers_key[3]; -+ struct lock_class_key i_lock_key; -+ struct lock_class_key i_mutex_key; -+ struct lock_class_key i_mutex_dir_key; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct super_operations___2 { -+ struct inode___2 * (*alloc_inode)(struct super_block___2 *); -+ void (*destroy_inode)(struct inode___2 *); -+ void (*dirty_inode)(struct inode___2 *, int); -+ int (*write_inode)(struct inode___2 *, struct writeback_control *); -+ int (*drop_inode)(struct inode___2 *); -+ void (*evict_inode)(struct inode___2 *); -+ void (*put_super)(struct super_block___2 *); -+ int (*sync_fs)(struct super_block___2 *, int); -+ int (*freeze_super)(struct super_block___2 *); -+ int (*freeze_fs)(struct super_block___2 *); -+ int (*thaw_super)(struct super_block___2 *); -+ int (*unfreeze_fs)(struct super_block___2 *); -+ int (*statfs)(struct dentry___2 *, struct kstatfs *); -+ int (*remount_fs)(struct super_block___2 *, int *, char *); -+ void (*umount_begin)(struct super_block___2 *); -+ int (*show_options)(struct seq_file___2 *, struct dentry___2 *); -+ int (*show_devname)(struct seq_file___2 *, struct dentry___2 *); -+ int (*show_path)(struct seq_file___2 *, struct dentry___2 *); -+ int (*show_stats)(struct seq_file___2 *, struct dentry___2 *); -+ ssize_t (*quota_read)(struct super_block___2 *, int, char *, size_t, loff_t); -+ ssize_t (*quota_write)(struct super_block___2 *, int, const char *, size_t, loff_t); -+ struct dquot___2 ** (*get_dquots)(struct inode___2 *); -+ int (*bdev_try_to_free_page)(struct super_block___2 *, struct page___2 *, gfp_t); -+ long int (*nr_cached_objects)(struct super_block___2 *, struct shrink_control *); -+ long int (*free_cached_objects)(struct super_block___2 *, struct shrink_control *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+typedef void (*poll_queue_proc___2)(struct file___2 *, wait_queue_head_t *, struct poll_table_struct___2 *); -+ -+struct poll_table_struct___2 { -+ poll_queue_proc___2 _qproc; -+ __poll_t _key; -+}; -+ -+struct seq_file___2 { -+ char *buf; -+ size_t size; -+ size_t from; -+ size_t count; -+ size_t pad_until; -+ loff_t index; -+ loff_t read_pos; -+ u64 version; -+ struct mutex lock; -+ const struct seq_operations *op; -+ int poll_event; -+ const struct file___2 *file; -+ void *private; -+}; -+ -+struct kobj_attribute___3 { -+ struct attribute attr; -+ ssize_t (*show)(struct kobject___3 *, struct kobj_attribute___3 *, char *); -+ ssize_t (*store)(struct kobject___3 *, struct kobj_attribute___3 *, const char *, size_t); -+}; -+ -+typedef void compound_page_dtor___2(struct page___2 *); -+ -+struct kernfs_root___2; -+ -+struct kernfs_elem_dir___2 { -+ long unsigned int subdirs; -+ struct rb_root children; -+ struct kernfs_root___2 *root; -+}; -+ -+struct kernfs_syscall_ops___2; -+ -+struct kernfs_root___2 { -+ struct kernfs_node___2 *kn; -+ unsigned int flags; -+ struct idr ino_idr; -+ u32 last_ino; -+ u32 next_generation; -+ struct kernfs_syscall_ops___2 *syscall_ops; -+ struct list_head supers; -+ wait_queue_head_t deactivate_waitq; -+}; -+ -+struct kernfs_elem_symlink___2 { -+ struct kernfs_node___2 *target_kn; -+}; -+ -+struct kernfs_ops___2; -+ -+struct kernfs_elem_attr___2 { -+ const struct kernfs_ops___2 *ops; -+ struct kernfs_open_node *open; -+ loff_t size; -+ struct kernfs_node___2 *notify_next; -+}; -+ -+struct kernfs_node___2 { -+ atomic_t count; -+ atomic_t active; -+ struct kernfs_node___2 *parent; -+ const char *name; -+ struct rb_node rb; -+ const void *ns; -+ unsigned int hash; -+ union { -+ struct kernfs_elem_dir___2 dir; -+ struct kernfs_elem_symlink___2 symlink; -+ struct kernfs_elem_attr___2 attr; -+ }; -+ void *priv; -+ union kernfs_node_id id; -+ short unsigned int flags; -+ umode_t mode; -+ struct kernfs_iattrs *iattr; -+}; -+ -+struct kernfs_open_file___2; -+ -+struct kernfs_ops___2 { -+ int (*open)(struct kernfs_open_file___2 *); -+ void (*release)(struct kernfs_open_file___2 *); -+ int (*seq_show)(struct seq_file___2 *, void *); -+ void * (*seq_start)(struct seq_file___2 *, loff_t *); -+ void * (*seq_next)(struct seq_file___2 *, void *, loff_t *); -+ void (*seq_stop)(struct seq_file___2 *, void *); -+ ssize_t (*read)(struct kernfs_open_file___2 *, char *, size_t, loff_t); -+ size_t atomic_write_len; -+ bool prealloc; -+ ssize_t (*write)(struct kernfs_open_file___2 *, char *, size_t, loff_t); -+ int (*mmap)(struct kernfs_open_file___2 *, struct vm_area_struct___2 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+}; -+ -+struct kernfs_syscall_ops___2 { -+ int (*remount_fs)(struct kernfs_root___2 *, int *, char *); -+ int (*show_options)(struct seq_file___2 *, struct kernfs_root___2 *); -+ int (*mkdir)(struct kernfs_node___2 *, const char *, umode_t); -+ int (*rmdir)(struct kernfs_node___2 *); -+ int (*rename)(struct kernfs_node___2 *, struct kernfs_node___2 *, const char *); -+ int (*show_path)(struct seq_file___2 *, struct kernfs_node___2 *, struct kernfs_root___2 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct kernfs_open_file___2 { -+ struct kernfs_node___2 *kn; -+ struct file___2 *file; -+ struct seq_file___2 *seq_file; -+ void *priv; -+ struct mutex mutex; -+ struct mutex prealloc_mutex; -+ int event; -+ struct list_head list; -+ char *prealloc_buf; -+ size_t atomic_write_len; -+ bool mmapped: 1; -+ bool released: 1; -+ const struct vm_operations_struct___2 *vm_ops; -+}; -+ -+struct bin_attribute___2; -+ -+struct attribute_group___2 { -+ const char *name; -+ umode_t (*is_visible)(struct kobject___3 *, struct attribute *, int); -+ umode_t (*is_bin_visible)(struct kobject___3 *, struct bin_attribute___2 *, int); -+ struct attribute **attrs; -+ struct bin_attribute___2 **bin_attrs; -+}; -+ -+struct bin_attribute___2 { -+ struct attribute attr; -+ size_t size; -+ void *private; -+ ssize_t (*read)(struct file___2 *, struct kobject___3 *, struct bin_attribute___2 *, char *, loff_t, size_t); -+ ssize_t (*write)(struct file___2 *, struct kobject___3 *, struct bin_attribute___2 *, char *, loff_t, size_t); -+ int (*mmap)(struct file___2 *, struct kobject___3 *, struct bin_attribute___2 *, struct vm_area_struct___2 *); -+}; -+ -+struct sysfs_ops___2 { -+ ssize_t (*show)(struct kobject___3 *, struct attribute *, char *); -+ ssize_t (*store)(struct kobject___3 *, struct attribute *, const char *, size_t); ++ struct bpf_prog **progs; ++ void *image; ++ struct bpf_struct_ops_value *uvalue; ++ struct bpf_struct_ops_value kvalue; +}; + -+struct kset_uevent_ops___2; -+ -+struct kset___2 { -+ struct list_head list; -+ spinlock_t list_lock; -+ struct kobject___3 kobj; -+ const struct kset_uevent_ops___2 *uevent_ops; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct kobj_type___2 { -+ void (*release)(struct kobject___3 *); -+ const struct sysfs_ops___2 *sysfs_ops; -+ struct attribute **default_attrs; -+ const struct kobj_ns_type_operations * (*child_ns_type)(struct kobject___3 *); -+ const void * (*namespace)(struct kobject___3 *); -+ void (*get_ownership)(struct kobject___3 *, kuid_t *, kgid_t *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct kset_uevent_ops___2 { -+ int (* const filter)(struct kset___2 *, struct kobject___3 *); -+ const char * (* const name)(struct kset___2 *, struct kobject___3 *); -+ int (* const uevent)(struct kset___2 *, struct kobject___3 *, struct kobj_uevent_env *); -+}; -+ -+struct dev_pm_ops___2 { -+ int (*prepare)(struct device___2 *); -+ void (*complete)(struct device___2 *); -+ int (*suspend)(struct device___2 *); -+ int (*resume)(struct device___2 *); -+ int (*freeze)(struct device___2 *); -+ int (*thaw)(struct device___2 *); -+ int (*poweroff)(struct device___2 *); -+ int (*restore)(struct device___2 *); -+ int (*suspend_late)(struct device___2 *); -+ int (*resume_early)(struct device___2 *); -+ int (*freeze_late)(struct device___2 *); -+ int (*thaw_early)(struct device___2 *); -+ int (*poweroff_late)(struct device___2 *); -+ int (*restore_early)(struct device___2 *); -+ int (*suspend_noirq)(struct device___2 *); -+ int (*resume_noirq)(struct device___2 *); -+ int (*freeze_noirq)(struct device___2 *); -+ int (*thaw_noirq)(struct device___2 *); -+ int (*poweroff_noirq)(struct device___2 *); -+ int (*restore_noirq)(struct device___2 *); -+ int (*runtime_suspend)(struct device___2 *); -+ int (*runtime_resume)(struct device___2 *); -+ int (*runtime_idle)(struct device___2 *); -+}; -+ -+struct dev_pm_domain___2 { -+ struct dev_pm_ops___2 ops; -+ void (*detach)(struct device___2 *, bool); -+ int (*activate)(struct device___2 *); -+ void (*sync)(struct device___2 *); -+ void (*dismiss)(struct device___2 *); -+}; -+ -+struct dma_map_ops___2 { -+ void * (*alloc)(struct device___2 *, size_t, dma_addr_t *, gfp_t, long unsigned int); -+ void (*free)(struct device___2 *, size_t, void *, dma_addr_t, long unsigned int); -+ int (*mmap)(struct device___2 *, struct vm_area_struct___2 *, void *, dma_addr_t, size_t, long unsigned int); -+ int (*get_sgtable)(struct device___2 *, struct sg_table *, void *, dma_addr_t, size_t, long unsigned int); -+ dma_addr_t (*map_page)(struct device___2 *, struct page___2 *, long unsigned int, size_t, enum dma_data_direction, long unsigned int); -+ void (*unmap_page)(struct device___2 *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); -+ int (*map_sg)(struct device___2 *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); -+ void (*unmap_sg)(struct device___2 *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); -+ dma_addr_t (*map_resource)(struct device___2 *, phys_addr_t, size_t, enum dma_data_direction, long unsigned int); -+ void (*unmap_resource)(struct device___2 *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); -+ void (*sync_single_for_cpu)(struct device___2 *, dma_addr_t, size_t, enum dma_data_direction); -+ void (*sync_single_for_device)(struct device___2 *, dma_addr_t, size_t, enum dma_data_direction); -+ void (*sync_sg_for_cpu)(struct device___2 *, struct scatterlist *, int, enum dma_data_direction); -+ void (*sync_sg_for_device)(struct device___2 *, struct scatterlist *, int, enum dma_data_direction); -+ void (*cache_sync)(struct device___2 *, void *, size_t, enum dma_data_direction); -+ int (*mapping_error)(struct device___2 *, dma_addr_t); -+ int (*dma_supported)(struct device___2 *, u64); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+}; -+ -+struct bus_type___2 { -+ const char *name; -+ const char *dev_name; -+ struct device___2 *dev_root; -+ const struct attribute_group___2 **bus_groups; -+ const struct attribute_group___2 **dev_groups; -+ const struct attribute_group___2 **drv_groups; -+ int (*match)(struct device___2 *, struct device_driver___2 *); -+ int (*uevent)(struct device___2 *, struct kobj_uevent_env *); -+ int (*probe)(struct device___2 *); -+ int (*remove)(struct device___2 *); -+ void (*shutdown)(struct device___2 *); -+ int (*online)(struct device___2 *); -+ int (*offline)(struct device___2 *); -+ int (*suspend)(struct device___2 *, pm_message_t); -+ int (*resume)(struct device___2 *); -+ int (*num_vf)(struct device___2 *); -+ int (*dma_configure)(struct device___2 *); -+ const struct dev_pm_ops___2 *pm; -+ const struct iommu_ops *iommu_ops; -+ struct subsys_private *p; -+ struct lock_class_key lock_key; -+ bool need_parent_lock; -+}; -+ -+struct device_driver___2 { -+ const char *name; -+ struct bus_type___2 *bus; -+ struct module___2 *owner; -+ const char *mod_name; -+ bool suppress_bind_attrs; -+ enum probe_type probe_type; -+ const struct of_device_id *of_match_table; -+ const struct acpi_device_id *acpi_match_table; -+ int (*probe)(struct device___2 *); -+ int (*remove)(struct device___2 *); -+ void (*shutdown)(struct device___2 *); -+ int (*suspend)(struct device___2 *, pm_message_t); -+ int (*resume)(struct device___2 *); -+ const struct attribute_group___2 **groups; -+ const struct dev_pm_ops___2 *pm; -+ void (*coredump)(struct device___2 *); -+ struct driver_private *p; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct device_type___2 { -+ const char *name; -+ const struct attribute_group___2 **groups; -+ int (*uevent)(struct device___2 *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device___2 *, umode_t *, kuid_t *, kgid_t *); -+ void (*release)(struct device___2 *); -+ const struct dev_pm_ops___2 *pm; -+}; -+ -+struct class___2 { -+ const char *name; -+ struct module___2 *owner; -+ const struct attribute_group___2 **class_groups; -+ const struct attribute_group___2 **dev_groups; -+ struct kobject___3 *dev_kobj; -+ int (*dev_uevent)(struct device___2 *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device___2 *, umode_t *); -+ void (*class_release)(struct class___2 *); -+ void (*dev_release)(struct device___2 *); -+ int (*shutdown_pre)(struct device___2 *); -+ const struct kobj_ns_type_operations *ns_type; -+ const void * (*namespace)(struct device___2 *); -+ void (*get_ownership)(struct device___2 *, kuid_t *, kgid_t *); -+ const struct dev_pm_ops___2 *pm; -+ struct subsys_private *p; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+struct device_attribute___2 { -+ struct attribute attr; -+ ssize_t (*show)(struct device___2 *, struct device_attribute___2 *, char *); -+ ssize_t (*store)(struct device___2 *, struct device_attribute___2 *, const char *, size_t); -+}; -+ -+struct device_node___2 { -+ const char *name; -+ const char *type; -+ phandle phandle; -+ const char *full_name; -+ struct fwnode_handle___2 fwnode; -+ struct property *properties; -+ struct property *deadprops; -+ struct device_node___2 *parent; -+ struct device_node___2 *child; -+ struct device_node___2 *sibling; -+ long unsigned int _flags; -+ void *data; -+}; -+ -+struct node___3 { -+ struct device___2 dev; -+ struct list_head access_list; -+ struct work_struct node_work; -+ struct list_head cache_attrs; -+ struct device___2 *cache_dev; -+}; -+ -+struct fd___2 { -+ struct file___2 *file; -+ unsigned int flags; -+}; -+ -+typedef struct poll_table_struct___2 poll_table___2; -+ -+typedef int (*key_restrict_link_func_t___2)(struct key___2 *, const struct key_type *, const union key_payload *, struct key___2 *); -+ -+struct key_restriction___2; -+ -+struct key___2 { -+ refcount_t usage; -+ key_serial_t serial; -+ union { -+ struct list_head graveyard_link; -+ struct rb_node serial_node; -+ }; -+ struct rw_semaphore___2 sem; -+ struct key_user *user; -+ void *security; -+ union { -+ time64_t expiry; -+ time64_t revoked_at; -+ }; -+ time64_t last_used_at; -+ kuid_t uid; -+ kgid_t gid; -+ key_perm_t perm; -+ short unsigned int quotalen; -+ short unsigned int datalen; -+ short int state; -+ long unsigned int flags; -+ union { -+ struct keyring_index_key index_key; -+ struct { -+ struct key_type *type; -+ char *description; -+ }; -+ }; -+ union { -+ union key_payload payload; -+ struct { -+ struct list_head name_link; -+ struct assoc_array keys; -+ }; -+ }; -+ struct key_restriction___2 *restrict_link; -+}; -+ -+struct key_restriction___2 { -+ key_restrict_link_func_t___2 check; -+ struct key___2 *key; -+ struct key_type *keytype; -+}; -+ -+struct inet_frags___2; -+ -+struct netns_frags___2 { -+ long int high_thresh; -+ long int low_thresh; -+ int timeout; -+ int max_dist; -+ struct inet_frags___2 *f; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct rhashtable rhashtable; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic_long_t mem; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct netns_ipv4___2 { -+ struct ctl_table_header *forw_hdr; -+ struct ctl_table_header *frags_hdr; -+ struct ctl_table_header *ipv4_hdr; -+ struct ctl_table_header *route_hdr; -+ struct ctl_table_header *xfrm4_hdr; -+ struct ipv4_devconf *devconf_all; -+ struct ipv4_devconf *devconf_dflt; -+ struct ip_ra_chain *ra_chain; -+ struct mutex ra_mutex; -+ struct fib_rules_ops *rules_ops; -+ bool fib_has_custom_rules; -+ unsigned int fib_rules_require_fldissect; -+ struct fib_table *fib_main; -+ struct fib_table *fib_default; -+ bool fib_has_custom_local_routes; -+ int fib_num_tclassid_users; -+ struct hlist_head *fib_table_hash; -+ bool fib_offload_disabled; -+ struct sock *fibnl; -+ struct sock **icmp_sk; -+ struct sock *mc_autojoin_sk; -+ struct inet_peer_base *peers; -+ struct sock **tcp_sk; -+ struct netns_frags___2 frags; -+ struct xt_table *iptable_filter; -+ struct xt_table *iptable_mangle; -+ struct xt_table *iptable_raw; -+ struct xt_table *arptable_filter; -+ struct xt_table *iptable_security; -+ struct xt_table *nat_table; -+ int sysctl_icmp_echo_ignore_all; -+ int sysctl_icmp_echo_ignore_broadcasts; -+ int sysctl_icmp_ignore_bogus_error_responses; -+ int sysctl_icmp_ratelimit; -+ int sysctl_icmp_ratemask; -+ int sysctl_icmp_errors_use_inbound_ifaddr; -+ struct local_ports ip_local_ports; -+ int sysctl_tcp_ecn; -+ int sysctl_tcp_ecn_fallback; -+ int sysctl_ip_default_ttl; -+ int sysctl_ip_no_pmtu_disc; -+ int sysctl_ip_fwd_use_pmtu; -+ int sysctl_ip_fwd_update_priority; -+ int sysctl_ip_nonlocal_bind; -+ int sysctl_ip_dynaddr; -+ int sysctl_ip_early_demux; -+ int sysctl_raw_l3mdev_accept; -+ int sysctl_tcp_early_demux; -+ int sysctl_udp_early_demux; -+ int sysctl_fwmark_reflect; -+ int sysctl_tcp_fwmark_accept; -+ int sysctl_tcp_l3mdev_accept; -+ int sysctl_tcp_mtu_probing; -+ int sysctl_tcp_base_mss; -+ int sysctl_tcp_min_snd_mss; -+ int sysctl_tcp_probe_threshold; -+ u32 sysctl_tcp_probe_interval; -+ int sysctl_tcp_keepalive_time; -+ int sysctl_tcp_keepalive_probes; -+ int sysctl_tcp_keepalive_intvl; -+ int sysctl_tcp_syn_retries; -+ int sysctl_tcp_synack_retries; -+ int sysctl_tcp_syncookies; -+ int sysctl_tcp_reordering; -+ int sysctl_tcp_retries1; -+ int sysctl_tcp_retries2; -+ int sysctl_tcp_orphan_retries; -+ int sysctl_tcp_fin_timeout; -+ unsigned int sysctl_tcp_notsent_lowat; -+ int sysctl_tcp_tw_reuse; -+ int sysctl_tcp_sack; -+ int sysctl_tcp_window_scaling; -+ int sysctl_tcp_timestamps; -+ int sysctl_tcp_early_retrans; -+ int sysctl_tcp_recovery; -+ int sysctl_tcp_thin_linear_timeouts; -+ int sysctl_tcp_slow_start_after_idle; -+ int sysctl_tcp_retrans_collapse; -+ int sysctl_tcp_stdurg; -+ int sysctl_tcp_rfc1337; -+ int sysctl_tcp_abort_on_overflow; -+ int sysctl_tcp_fack; -+ int sysctl_tcp_max_reordering; -+ int sysctl_tcp_dsack; -+ int sysctl_tcp_app_win; -+ int sysctl_tcp_adv_win_scale; -+ int sysctl_tcp_frto; -+ int sysctl_tcp_nometrics_save; -+ int sysctl_tcp_moderate_rcvbuf; -+ int sysctl_tcp_tso_win_divisor; -+ int sysctl_tcp_workaround_signed_windows; -+ int sysctl_tcp_limit_output_bytes; -+ int sysctl_tcp_challenge_ack_limit; -+ int sysctl_tcp_min_tso_segs; -+ int sysctl_tcp_min_rtt_wlen; -+ int sysctl_tcp_autocorking; -+ int sysctl_tcp_invalid_ratelimit; -+ int sysctl_tcp_pacing_ss_ratio; -+ int sysctl_tcp_pacing_ca_ratio; -+ int sysctl_tcp_wmem[3]; -+ int sysctl_tcp_rmem[3]; -+ int sysctl_tcp_comp_sack_nr; -+ long unsigned int sysctl_tcp_comp_sack_delay_ns; -+ long: 64; -+ struct inet_timewait_death_row tcp_death_row; -+ int sysctl_max_syn_backlog; -+ int sysctl_tcp_fastopen; -+ const struct tcp_congestion_ops *tcp_congestion_control; -+ struct tcp_fastopen_context *tcp_fastopen_ctx; -+ spinlock_t tcp_fastopen_ctx_lock; -+ unsigned int sysctl_tcp_fastopen_blackhole_timeout; -+ atomic_t tfo_active_disable_times; -+ long unsigned int tfo_active_disable_stamp; -+ int sysctl_udp_wmem_min; -+ int sysctl_udp_rmem_min; -+ int sysctl_udp_l3mdev_accept; -+ int sysctl_igmp_max_memberships; -+ int sysctl_igmp_max_msf; -+ int sysctl_igmp_llm_reports; -+ int sysctl_igmp_qrv; -+ struct ping_group_range ping_group_range; -+ atomic_t dev_addr_genid; -+ long unsigned int *sysctl_local_reserved_ports; -+ int sysctl_ip_prot_sock; -+ struct list_head mr_tables; -+ struct fib_rules_ops *mr_rules_ops; -+ int sysctl_fib_multipath_use_neigh; -+ int sysctl_fib_multipath_hash_policy; -+ struct fib_notifier_ops *notifier_ops; -+ unsigned int fib_seq; -+ struct fib_notifier_ops *ipmr_notifier_ops; -+ unsigned int ipmr_seq; -+ atomic_t rt_genid; -+ siphash_key_t ip_id_key; -+}; -+ -+struct net_device___2; -+ -+struct sk_buff___2; -+ -+struct dst_ops___2 { -+ short unsigned int family; -+ unsigned int gc_thresh; -+ int (*gc)(struct dst_ops___2 *); -+ struct dst_entry * (*check)(struct dst_entry *, __u32); -+ unsigned int (*default_advmss)(const struct dst_entry *); -+ unsigned int (*mtu)(const struct dst_entry *); -+ u32 * (*cow_metrics)(struct dst_entry *, long unsigned int); -+ void (*destroy)(struct dst_entry *); -+ void (*ifdown)(struct dst_entry *, struct net_device___2 *, int); -+ struct dst_entry * (*negative_advice)(struct dst_entry *); -+ void (*link_failure)(struct sk_buff___2 *); -+ void (*update_pmtu)(struct dst_entry *, struct sock *, struct sk_buff___2 *, u32, bool); -+ void (*redirect)(struct dst_entry *, struct sock *, struct sk_buff___2 *); -+ int (*local_out)(struct net___2 *, struct sock *, struct sk_buff___2 *); -+ struct neighbour * (*neigh_lookup)(const struct dst_entry *, struct sk_buff___2 *, const void *); -+ void (*confirm_neigh)(const struct dst_entry *, const void *); -+ struct kmem_cache *kmem_cachep; -+ struct percpu_counter pcpuc_entries; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct netns_ipv6___2 { -+ struct netns_sysctl_ipv6 sysctl; -+ struct ipv6_devconf *devconf_all; -+ struct ipv6_devconf *devconf_dflt; -+ struct inet_peer_base *peers; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netns_frags___2 frags; -+ struct xt_table *ip6table_filter; -+ struct xt_table *ip6table_mangle; -+ struct xt_table *ip6table_raw; -+ struct xt_table *ip6table_security; -+ struct xt_table *ip6table_nat; -+ struct fib6_info *fib6_null_entry; -+ struct rt6_info *ip6_null_entry; -+ struct rt6_statistics *rt6_stats; -+ struct timer_list ip6_fib_timer; -+ struct hlist_head *fib_table_hash; -+ struct fib6_table *fib6_main_tbl; -+ struct list_head fib6_walkers; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dst_ops___2 ip6_dst_ops; -+ rwlock_t fib6_walker_lock; -+ spinlock_t fib6_gc_lock; -+ unsigned int ip6_rt_gc_expire; -+ long unsigned int ip6_rt_last_gc; -+ unsigned int fib6_rules_require_fldissect; -+ bool fib6_has_custom_rules; -+ struct rt6_info *ip6_prohibit_entry; -+ struct rt6_info *ip6_blk_hole_entry; -+ struct fib6_table *fib6_local_tbl; -+ struct fib_rules_ops *fib6_rules_ops; -+ struct sock **icmp_sk; -+ struct sock *ndisc_sk; -+ struct sock *tcp_sk; -+ struct sock *igmp_sk; -+ struct sock *mc_autojoin_sk; -+ struct list_head mr6_tables; -+ struct fib_rules_ops *mr6_rules_ops; -+ atomic_t dev_addr_genid; -+ atomic_t fib6_sernum; -+ struct seg6_pernet_data *seg6_data; -+ struct fib_notifier_ops *notifier_ops; -+ struct fib_notifier_ops *ip6mr_notifier_ops; -+ unsigned int ipmr_seq; -+ struct { -+ struct hlist_head head; -+ spinlock_t lock; -+ u32 seq; -+ } ip6addrlbl_table; -+ long: 64; -+}; -+ -+struct netns_ieee802154_lowpan___2 { -+ struct netns_sysctl_lowpan sysctl; ++struct bpf_struct_ops_tcp_congestion_ops { ++ refcount_t refcnt; ++ enum bpf_struct_ops_state state; + long: 64; + long: 64; + long: 64; @@ -42722,138 +44722,13 @@ index 0000000..bcb9d76 + long: 64; + long: 64; + long: 64; -+ struct netns_frags___2 frags; -+}; -+ -+struct netns_nf_frag___2 { -+ struct netns_frags___2 frags; -+}; -+ -+struct netns_xfrm___2 { -+ struct list_head state_all; -+ struct hlist_head *state_bydst; -+ struct hlist_head *state_bysrc; -+ struct hlist_head *state_byspi; -+ unsigned int state_hmask; -+ unsigned int state_num; -+ struct work_struct state_hash_work; -+ struct list_head policy_all; -+ struct hlist_head *policy_byidx; -+ unsigned int policy_idx_hmask; -+ struct hlist_head policy_inexact[3]; -+ struct xfrm_policy_hash policy_bydst[3]; -+ unsigned int policy_count[6]; -+ struct work_struct policy_hash_work; -+ struct xfrm_policy_hthresh policy_hthresh; -+ struct sock *nlsk; -+ struct sock *nlsk_stash; -+ u32 sysctl_aevent_etime; -+ u32 sysctl_aevent_rseqth; -+ int sysctl_larval_drop; -+ u32 sysctl_acq_expires; -+ struct ctl_table_header *sysctl_hdr; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dst_ops___2 xfrm4_dst_ops; -+ struct dst_ops___2 xfrm6_dst_ops; -+ spinlock_t xfrm_state_lock; -+ spinlock_t xfrm_policy_lock; -+ struct mutex xfrm_cfg_mutex; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct net___2 { -+ refcount_t passive; -+ refcount_t count; -+ spinlock_t rules_mod_lock; -+ u32 hash_mix; -+ atomic64_t cookie_gen; -+ struct list_head list; -+ struct list_head exit_list; -+ struct llist_node cleanup_list; -+ struct user_namespace___2 *user_ns; -+ struct ucounts___2 *ucounts; -+ spinlock_t nsid_lock; -+ struct idr netns_ids; -+ struct ns_common___2 ns; -+ struct proc_dir_entry *proc_net; -+ struct proc_dir_entry *proc_net_stat; -+ struct ctl_table_set sysctls; -+ struct sock *rtnl; -+ struct sock *genl_sock; -+ struct uevent_sock *uevent_sock; -+ struct list_head dev_base_head; -+ struct hlist_head *dev_name_head; -+ struct hlist_head *dev_index_head; -+ unsigned int dev_base_seq; -+ int ifindex; -+ unsigned int dev_unreg_count; -+ struct list_head rules_ops; -+ struct list_head fib_notifier_ops; -+ struct net_device___2 *loopback_dev; -+ struct netns_core core; -+ struct netns_mib mib; -+ struct netns_packet packet; -+ struct netns_unix unx; ++ struct tcp_congestion_ops data; + long: 64; -+ long: 64; -+ struct netns_ipv4___2 ipv4; -+ struct netns_ipv6___2 ipv6; -+ struct netns_ieee802154_lowpan___2 ieee802154_lowpan; -+ struct netns_sctp sctp; -+ struct netns_nf nf; -+ struct netns_xt xt; -+ struct netns_ct ct; -+ struct netns_nftables nft; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netns_nf_frag___2 nf_frag; -+ struct ctl_table_header *nf_frag_frags_hdr; -+ struct sock *nfnl; -+ struct sock *nfnl_stash; -+ struct list_head nfct_timeout_list; -+ struct net_generic *gen; -+ long: 64; -+ long: 64; -+ struct netns_xfrm___2 xfrm; -+ struct netns_ipvs *ipvs; -+ struct netns_mpls mpls; -+ struct netns_can can; -+ struct sock *diag_nlsk; -+ atomic_t fnhe_genid; -+}; -+ -+struct cgroup_namespace___2 { -+ refcount_t count; -+ struct ns_common___2 ns; -+ struct user_namespace___2 *user_ns; -+ struct ucounts___2 *ucounts; -+ struct css_set___2 *root_cset; -+}; -+ -+struct proc_ns_operations___2 { -+ const char *name; -+ const char *real_ns_name; -+ int type; -+ struct ns_common___2 * (*get)(struct task_struct___2 *); -+ void (*put)(struct ns_common___2 *); -+ int (*install)(struct nsproxy___2 *, struct ns_common___2 *); -+ struct user_namespace___2 * (*owner)(struct ns_common___2 *); -+ struct ns_common___2 * (*get_parent)(struct ns_common___2 *); +}; + -+struct ucounts___2 { -+ struct hlist_node node; -+ struct user_namespace___2 *ns; -+ kuid_t uid; -+ int count; -+ atomic_t ucount[9]; ++struct static_call_tramp_key { ++ s32 tramp; ++ s32 key; +}; + +enum perf_event_read_format { @@ -42901,328 +44776,11 @@ index 0000000..bcb9d76 + PERF_RECORD_SWITCH = 14, + PERF_RECORD_SWITCH_CPU_WIDE = 15, + PERF_RECORD_NAMESPACES = 16, -+ PERF_RECORD_MAX = 17, -+}; -+ -+struct perf_cpu_context___2; -+ -+struct pmu___2 { -+ struct list_head entry; -+ struct module___2 *module; -+ struct device___2 *dev; -+ const struct attribute_group___2 **attr_groups; -+ const char *name; -+ int type; -+ int capabilities; -+ int *pmu_disable_count; -+ struct perf_cpu_context___2 *pmu_cpu_context; -+ atomic_t exclusive_cnt; -+ int task_ctx_nr; -+ int hrtimer_interval_ms; -+ unsigned int nr_addr_filters; -+ void (*pmu_enable)(struct pmu___2 *); -+ void (*pmu_disable)(struct pmu___2 *); -+ int (*event_init)(struct perf_event___2 *); -+ void (*event_mapped)(struct perf_event___2 *, struct mm_struct___2 *); -+ void (*event_unmapped)(struct perf_event___2 *, struct mm_struct___2 *); -+ int (*add)(struct perf_event___2 *, int); -+ void (*del)(struct perf_event___2 *, int); -+ void (*start)(struct perf_event___2 *, int); -+ void (*stop)(struct perf_event___2 *, int); -+ void (*read)(struct perf_event___2 *); -+ void (*start_txn)(struct pmu___2 *, unsigned int); -+ int (*commit_txn)(struct pmu___2 *); -+ void (*cancel_txn)(struct pmu___2 *); -+ int (*event_idx)(struct perf_event___2 *); -+ void (*sched_task)(struct perf_event_context___2 *, bool); -+ size_t task_ctx_size; -+ void * (*setup_aux)(struct perf_event___2 *, void **, int, bool); -+ void (*free_aux)(void *); -+ int (*addr_filters_validate)(struct list_head *); -+ void (*addr_filters_sync)(struct perf_event___2 *); -+ int (*filter_match)(struct perf_event___2 *); -+ int (*check_period)(struct perf_event___2 *, u64); -+}; -+ -+struct kernel_param_ops___2 { -+ unsigned int flags; -+ int (*set)(const char *, const struct kernel_param___2 *); -+ int (*get)(char *, const struct kernel_param___2 *); -+ void (*free)(void *); -+}; -+ -+struct kparam_array___2; -+ -+struct kernel_param___2 { -+ const char *name; -+ struct module___2 *mod; -+ const struct kernel_param_ops___2 *ops; -+ const u16 perm; -+ s8 level; -+ u8 flags; -+ union { -+ void *arg; -+ const struct kparam_string *str; -+ const struct kparam_array___2 *arr; -+ }; -+}; -+ -+struct kparam_array___2 { -+ unsigned int max; -+ unsigned int elemsize; -+ unsigned int *num; -+ const struct kernel_param_ops___2 *ops; -+ void *elem; -+}; -+ -+struct module_attribute___2 { -+ struct attribute attr; -+ ssize_t (*show)(struct module_attribute___2 *, struct module_kobject___2 *, char *); -+ ssize_t (*store)(struct module_attribute___2 *, struct module_kobject___2 *, const char *, size_t); -+ void (*setup)(struct module___2 *, const char *); -+ int (*test)(struct module___2 *); -+ void (*free)(struct module___2 *); -+}; -+ -+struct trace_event_class___2; -+ -+struct bpf_prog_array___2; -+ -+struct trace_event_call___2 { -+ struct list_head list; -+ struct trace_event_class___2 *class; -+ union { -+ char *name; -+ struct tracepoint *tp; -+ }; -+ struct trace_event event; -+ char *print_fmt; -+ struct event_filter *filter; -+ void *mod; -+ void *data; -+ int flags; -+ int perf_refcount; -+ struct hlist_head *perf_events; -+ struct bpf_prog_array___2 *prog_array; -+ int (*perf_perm)(struct trace_event_call___2 *, struct perf_event___2 *); -+}; -+ -+struct bpf_prog_aux___2; -+ -+struct bpf_prog___2 { -+ u16 pages; -+ u16 jited: 1; -+ u16 jit_requested: 1; -+ u16 undo_set_mem: 1; -+ u16 gpl_compatible: 1; -+ u16 cb_access: 1; -+ u16 dst_needed: 1; -+ u16 blinded: 1; -+ u16 is_func: 1; -+ u16 kprobe_override: 1; -+ u16 has_callchain_buf: 1; -+ enum bpf_prog_type type; -+ enum bpf_attach_type expected_attach_type; -+ u32 len; -+ u32 jited_len; -+ u8 tag[8]; -+ struct bpf_prog_aux___2 *aux; -+ struct sock_fprog_kern *orig_prog; -+ unsigned int (*bpf_func)(const void *, const struct bpf_insn *); -+ union { -+ struct sock_filter insns[0]; -+ struct bpf_insn insnsi[0]; -+ }; -+}; -+ -+struct cgroup_bpf___2 { -+ struct bpf_prog_array___2 *effective[21]; -+ struct list_head progs[21]; -+ u32 flags[21]; -+ struct bpf_prog_array___2 *inactive; -+}; -+ -+struct bpf_prog_array_item___2 { -+ struct bpf_prog___2 *prog; -+ struct bpf_cgroup_storage *cgroup_storage; -+}; -+ -+struct bpf_prog_array___2 { -+ struct callback_head rcu; -+ struct bpf_prog_array_item___2 items[0]; -+}; -+ -+struct cgroup_file___2 { -+ struct kernfs_node___2 *kn; -+ long unsigned int notified_at; -+ struct timer_list notify_timer; -+}; -+ -+struct cgroup_subsys___2; -+ -+struct cgroup_subsys_state___2 { -+ struct cgroup___2 *cgroup; -+ struct cgroup_subsys___2 *ss; -+ struct percpu_ref refcnt; -+ struct list_head sibling; -+ struct list_head children; -+ struct list_head rstat_css_node; -+ int id; -+ unsigned int flags; -+ u64 serial_nr; -+ atomic_t online_cnt; -+ struct work_struct destroy_work; -+ struct rcu_work destroy_rwork; -+ struct cgroup_subsys_state___2 *parent; -+}; -+ -+struct cgroup_root___2; -+ -+struct cgroup_rstat_cpu___2; -+ -+struct cgroup___2 { -+ struct cgroup_subsys_state___2 self; -+ long unsigned int flags; -+ int id; -+ int level; -+ int max_depth; -+ int nr_descendants; -+ int nr_dying_descendants; -+ int max_descendants; -+ int nr_populated_csets; -+ int nr_populated_domain_children; -+ int nr_populated_threaded_children; -+ int nr_threaded_children; -+ struct kernfs_node___2 *kn; -+ struct cgroup_file___2 procs_file; -+ struct cgroup_file___2 events_file; -+ u16 subtree_control; -+ u16 subtree_ss_mask; -+ u16 old_subtree_control; -+ u16 old_subtree_ss_mask; -+ struct cgroup_subsys_state___2 *subsys[14]; -+ struct cgroup_root___2 *root; -+ struct list_head cset_links; -+ struct list_head e_csets[14]; -+ struct cgroup___2 *dom_cgrp; -+ struct cgroup___2 *old_dom_cgrp; -+ struct cgroup_rstat_cpu___2 *rstat_cpu; -+ struct list_head rstat_css_list; -+ struct cgroup_base_stat pending_bstat; -+ struct cgroup_base_stat bstat; -+ struct prev_cputime prev_cputime; -+ struct list_head pidlists; -+ struct mutex pidlist_mutex; -+ wait_queue_head_t offline_waitq; -+ struct work_struct release_agent_work; -+ struct cgroup_bpf___2 bpf; -+ atomic_t congestion_count; -+ int ancestor_ids[0]; -+}; -+ -+struct cftype___2; -+ -+struct cgroup_subsys___2 { -+ struct cgroup_subsys_state___2 * (*css_alloc)(struct cgroup_subsys_state___2 *); -+ int (*css_online)(struct cgroup_subsys_state___2 *); -+ void (*css_offline)(struct cgroup_subsys_state___2 *); -+ void (*css_released)(struct cgroup_subsys_state___2 *); -+ void (*css_free)(struct cgroup_subsys_state___2 *); -+ void (*css_reset)(struct cgroup_subsys_state___2 *); -+ void (*css_rstat_flush)(struct cgroup_subsys_state___2 *, int); -+ int (*css_extra_stat_show)(struct seq_file___2 *, struct cgroup_subsys_state___2 *); -+ int (*can_attach)(struct cgroup_taskset *); -+ void (*cancel_attach)(struct cgroup_taskset *); -+ void (*attach)(struct cgroup_taskset *); -+ void (*post_attach)(); -+ int (*can_fork)(struct task_struct___2 *); -+ void (*cancel_fork)(struct task_struct___2 *); -+ void (*fork)(struct task_struct___2 *); -+ void (*exit)(struct task_struct___2 *); -+ void (*release)(struct task_struct___2 *); -+ void (*bind)(struct cgroup_subsys_state___2 *); -+ bool early_init: 1; -+ bool implicit_on_dfl: 1; -+ bool threaded: 1; -+ bool broken_hierarchy: 1; -+ bool warned_broken_hierarchy: 1; -+ int id; -+ const char *name; -+ const char *legacy_name; -+ struct cgroup_root___2 *root; -+ struct idr css_idr; -+ struct list_head cfts; -+ struct cftype___2 *dfl_cftypes; -+ struct cftype___2 *legacy_cftypes; -+ unsigned int depends_on; -+}; -+ -+struct cgroup_rstat_cpu___2 { -+ struct u64_stats_sync bsync; -+ struct cgroup_base_stat bstat; -+ struct cgroup_base_stat last_bstat; -+ struct cgroup___2 *updated_children; -+ struct cgroup___2 *updated_next; -+}; -+ -+struct cgroup_root___2 { -+ struct kernfs_root___2 *kf_root; -+ unsigned int subsys_mask; -+ int hierarchy_id; -+ struct cgroup___2 cgrp; -+ int cgrp_ancestor_id_storage; -+ atomic_t nr_cgrps; -+ struct list_head root_list; -+ unsigned int flags; -+ struct idr cgroup_idr; -+ char release_agent_path[4096]; -+ char name[64]; -+}; -+ -+struct cftype___2 { -+ char name[64]; -+ long unsigned int private; -+ size_t max_write_len; -+ unsigned int flags; -+ unsigned int file_offset; -+ struct cgroup_subsys___2 *ss; -+ struct list_head node; -+ struct kernfs_ops___2 *kf_ops; -+ int (*open)(struct kernfs_open_file___2 *); -+ void (*release)(struct kernfs_open_file___2 *); -+ u64 (*read_u64)(struct cgroup_subsys_state___2 *, struct cftype___2 *); -+ s64 (*read_s64)(struct cgroup_subsys_state___2 *, struct cftype___2 *); -+ int (*seq_show)(struct seq_file___2 *, void *); -+ void * (*seq_start)(struct seq_file___2 *, loff_t *); -+ void * (*seq_next)(struct seq_file___2 *, void *, loff_t *); -+ void (*seq_stop)(struct seq_file___2 *, void *); -+ int (*write_u64)(struct cgroup_subsys_state___2 *, struct cftype___2 *, u64); -+ int (*write_s64)(struct cgroup_subsys_state___2 *, struct cftype___2 *, s64); -+ ssize_t (*write)(struct kernfs_open_file___2 *, char *, size_t, loff_t); -+}; -+ -+struct perf_cpu_context___2 { -+ struct perf_event_context___2 ctx; -+ struct perf_event_context___2 *task_ctx; -+ int active_oncpu; -+ int exclusive; -+ raw_spinlock_t hrtimer_lock; -+ struct hrtimer hrtimer; -+ ktime_t hrtimer_interval; -+ unsigned int hrtimer_active; -+ struct perf_cgroup___2 *cgrp; -+ struct list_head cgrp_cpuctx_entry; -+ struct list_head sched_cb_entry; -+ int sched_cb_usage; -+ int online; -+}; -+ -+struct perf_addr_filter___2 { -+ struct list_head entry; -+ struct path___2 path; -+ long unsigned int offset; -+ long unsigned int size; -+ enum perf_addr_filter_action_t action; ++ PERF_RECORD_KSYMBOL = 17, ++ PERF_RECORD_BPF_EVENT = 18, ++ PERF_RECORD_CGROUP = 19, ++ PERF_RECORD_TEXT_POKE = 20, ++ PERF_RECORD_MAX = 21, +}; + +struct swevent_hlist { @@ -43235,15 +44793,15 @@ index 0000000..bcb9d76 + struct list_head list; +}; + -+struct ring_buffer___2 { -+ atomic_t refcount; ++struct perf_buffer { ++ refcount_t refcount; + struct callback_head callback_head; + int nr_pages; + int overwrite; + int paused; + atomic_t poll; + local_t head; -+ local_t nest; ++ unsigned int nest; + local_t events; + local_t wakeup; + local_t lost; @@ -43253,9 +44811,9 @@ index 0000000..bcb9d76 + struct list_head event_list; + atomic_t mmap_count; + long unsigned int mmap_locked; -+ struct user_struct___2 *mmap_user; ++ struct user_struct *mmap_user; + long int aux_head; -+ local_t aux_nest; ++ unsigned int aux_nest; + long int aux_wakeup; + long unsigned int aux_pgoff; + int aux_nr_pages; @@ -43263,1387 +44821,48 @@ index 0000000..bcb9d76 + atomic_t aux_mmap_count; + long unsigned int aux_mmap_locked; + void (*free_aux)(void *); -+ atomic_t aux_refcount; ++ refcount_t aux_refcount; ++ int aux_in_sampling; + void **aux_pages; + void *aux_priv; + struct perf_event_mmap_page *user_page; + void *data_pages[0]; +}; + -+struct perf_cgroup___2 { -+ struct cgroup_subsys_state___2 css; -+ struct perf_cgroup_info *info; ++struct match_token { ++ int token; ++ const char *pattern; +}; + -+struct perf_output_handle___2 { -+ struct perf_event___2 *event; -+ struct ring_buffer___2 *rb; -+ long unsigned int wakeup; -+ long unsigned int size; -+ u64 aux_flags; -+ union { -+ void *addr; -+ long unsigned int head; -+ }; -+ int page; ++enum { ++ MAX_OPT_ARGS = 3, +}; + -+struct bpf_perf_event_data_kern___2 { -+ bpf_user_pt_regs_t *regs; -+ struct perf_sample_data *data; -+ struct perf_event___2 *event; -+}; -+ -+struct perf_pmu_events_attr___2 { -+ struct device_attribute___2 attr; -+ u64 id; -+ const char *event_str; -+}; -+ -+struct trace_event_class___2 { -+ const char *system; -+ void *probe; -+ void *perf_probe; -+ int (*reg)(struct trace_event_call___2 *, enum trace_reg, void *); -+ int (*define_fields)(struct trace_event_call___2 *); -+ struct list_head * (*get_fields)(struct trace_event_call___2 *); -+ struct list_head fields; -+ int (*raw_init)(struct trace_event_call___2 *); -+}; -+ -+struct syscall_metadata___2 { -+ const char *name; -+ int syscall_nr; -+ int nb_args; -+ const char **types; -+ const char **args; -+ struct list_head enter_fields; -+ struct trace_event_call___2 *enter_event; -+ struct trace_event_call___2 *exit_event; -+}; -+ -+struct bpf_map___2; -+ -+struct bpf_map_ops___2 { -+ int (*map_alloc_check)(union bpf_attr *); -+ struct bpf_map___2 * (*map_alloc)(union bpf_attr *); -+ void (*map_release)(struct bpf_map___2 *, struct file___2 *); -+ void (*map_free)(struct bpf_map___2 *); -+ int (*map_get_next_key)(struct bpf_map___2 *, void *, void *); -+ void (*map_release_uref)(struct bpf_map___2 *); -+ void * (*map_lookup_elem_sys_only)(struct bpf_map___2 *, void *); -+ void * (*map_lookup_elem)(struct bpf_map___2 *, void *); -+ int (*map_update_elem)(struct bpf_map___2 *, void *, void *, u64); -+ int (*map_delete_elem)(struct bpf_map___2 *, void *); -+ void * (*map_fd_get_ptr)(struct bpf_map___2 *, struct file___2 *, int); -+ void (*map_fd_put_ptr)(void *); -+ u32 (*map_gen_lookup)(struct bpf_map___2 *, struct bpf_insn *); -+ u32 (*map_fd_sys_lookup_elem)(void *); -+ void (*map_seq_show_elem)(struct bpf_map___2 *, void *, struct seq_file___2 *); -+ int (*map_check_btf)(const struct bpf_map___2 *, const struct btf_type *, const struct btf_type *); -+}; -+ -+struct bpf_map___2 { -+ const struct bpf_map_ops___2 *ops; -+ struct bpf_map___2 *inner_map_meta; -+ void *security; -+ enum bpf_map_type map_type; -+ u32 key_size; -+ u32 value_size; -+ u32 max_entries; -+ u32 map_flags; -+ u32 pages; -+ u32 id; -+ int numa_node; -+ u32 btf_key_type_id; -+ u32 btf_value_type_id; -+ struct btf *btf; -+ bool unpriv_array; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct user_struct___2 *user; -+ atomic_t refcnt; -+ atomic_t usercnt; -+ struct work_struct work; -+ char name[16]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_offloaded_map___2; -+ -+struct bpf_map_dev_ops___2 { -+ int (*map_get_next_key)(struct bpf_offloaded_map___2 *, void *, void *); -+ int (*map_lookup_elem)(struct bpf_offloaded_map___2 *, void *, void *); -+ int (*map_update_elem)(struct bpf_offloaded_map___2 *, void *, void *, u64); -+ int (*map_delete_elem)(struct bpf_offloaded_map___2 *, void *); -+}; -+ -+struct bpf_offloaded_map___2 { -+ struct bpf_map___2 map; -+ struct net_device___2 *netdev; -+ const struct bpf_map_dev_ops___2 *dev_ops; -+ void *dev_priv; -+ struct list_head offloads; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef rx_handler_result_t rx_handler_func_t___2(struct sk_buff___2 **); -+ -+typedef struct { -+ struct net___2 *net; -+} possible_net_t___2; -+ -+struct net_device_ops___2; -+ -+struct ethtool_ops___2; -+ -+struct xfrmdev_ops___2; -+ -+struct tlsdev_ops___2; -+ -+struct header_ops___2; -+ -+struct netdev_rx_queue___2; -+ -+struct mini_Qdisc___2; -+ -+struct netdev_queue___2; -+ -+struct Qdisc___2; -+ -+struct rtnl_link_ops___2; -+ -+struct dcbnl_rtnl_ops___2; -+ -+struct net_device___2 { -+ char name[16]; -+ struct hlist_node name_hlist; -+ struct dev_ifalias *ifalias; -+ long unsigned int mem_end; -+ long unsigned int mem_start; -+ long unsigned int base_addr; -+ int irq; -+ long unsigned int state; -+ struct list_head dev_list; -+ struct list_head napi_list; -+ struct list_head unreg_list; -+ struct list_head close_list; -+ struct list_head ptype_all; -+ struct list_head ptype_specific; -+ struct { -+ struct list_head upper; -+ struct list_head lower; -+ } adj_list; -+ netdev_features_t features; -+ netdev_features_t hw_features; -+ netdev_features_t wanted_features; -+ netdev_features_t vlan_features; -+ netdev_features_t hw_enc_features; -+ netdev_features_t mpls_features; -+ netdev_features_t gso_partial_features; -+ int ifindex; -+ int group; -+ struct net_device_stats stats; -+ atomic_long_t rx_dropped; -+ atomic_long_t tx_dropped; -+ atomic_long_t rx_nohandler; -+ atomic_t carrier_up_count; -+ atomic_t carrier_down_count; -+ const struct net_device_ops___2 *netdev_ops; -+ const struct ethtool_ops___2 *ethtool_ops; -+ const struct switchdev_ops *switchdev_ops; -+ const struct l3mdev_ops *l3mdev_ops; -+ const struct ndisc_ops *ndisc_ops; -+ const struct xfrmdev_ops___2 *xfrmdev_ops; -+ const struct tlsdev_ops___2 *tlsdev_ops; -+ const struct header_ops___2 *header_ops; -+ unsigned int flags; -+ unsigned int priv_flags; -+ short unsigned int gflags; -+ short unsigned int padded; -+ unsigned char operstate; -+ unsigned char link_mode; -+ unsigned char if_port; -+ unsigned char dma; -+ unsigned int mtu; -+ unsigned int min_mtu; -+ unsigned int max_mtu; -+ short unsigned int type; -+ short unsigned int hard_header_len; -+ unsigned char min_header_len; -+ short unsigned int needed_headroom; -+ short unsigned int needed_tailroom; -+ unsigned char perm_addr[32]; -+ unsigned char addr_assign_type; -+ unsigned char addr_len; -+ unsigned char upper_level; -+ unsigned char lower_level; -+ short unsigned int neigh_priv_len; -+ short unsigned int dev_id; -+ short unsigned int dev_port; -+ spinlock_t addr_list_lock; -+ unsigned char name_assign_type; -+ bool uc_promisc; -+ struct netdev_hw_addr_list uc; -+ struct netdev_hw_addr_list mc; -+ struct netdev_hw_addr_list dev_addrs; -+ struct kset___2 *queues_kset; -+ unsigned int promiscuity; -+ unsigned int allmulti; -+ struct vlan_info *vlan_info; -+ struct tipc_bearer *tipc_ptr; -+ struct in_device *ip_ptr; -+ struct inet6_dev *ip6_ptr; -+ struct wireless_dev *ieee80211_ptr; -+ struct wpan_dev *ieee802154_ptr; -+ struct mpls_dev *mpls_ptr; -+ unsigned char *dev_addr; -+ struct netdev_rx_queue___2 *_rx; -+ unsigned int num_rx_queues; -+ unsigned int real_num_rx_queues; -+ struct bpf_prog___2 *xdp_prog; -+ long unsigned int gro_flush_timeout; -+ rx_handler_func_t___2 *rx_handler; -+ void *rx_handler_data; -+ struct mini_Qdisc___2 *miniq_ingress; -+ struct netdev_queue___2 *ingress_queue; -+ struct nf_hook_entries *nf_hooks_ingress; -+ unsigned char broadcast[32]; -+ struct cpu_rmap *rx_cpu_rmap; -+ struct hlist_node index_hlist; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netdev_queue___2 *_tx; -+ unsigned int num_tx_queues; -+ unsigned int real_num_tx_queues; -+ struct Qdisc___2 *qdisc; -+ struct hlist_head qdisc_hash[16]; -+ unsigned int tx_queue_len; -+ spinlock_t tx_global_lock; -+ int watchdog_timeo; -+ struct xps_dev_maps *xps_cpus_map; -+ struct xps_dev_maps *xps_rxqs_map; -+ struct mini_Qdisc___2 *miniq_egress; -+ struct timer_list watchdog_timer; -+ int *pcpu_refcnt; -+ struct list_head todo_list; -+ struct list_head link_watch_list; -+ enum { -+ NETREG_UNINITIALIZED___2 = 0, -+ NETREG_REGISTERED___2 = 1, -+ NETREG_UNREGISTERING___2 = 2, -+ NETREG_UNREGISTERED___2 = 3, -+ NETREG_RELEASED___2 = 4, -+ NETREG_DUMMY___2 = 5, -+ } reg_state: 8; -+ bool dismantle; -+ enum { -+ RTNL_LINK_INITIALIZED___2 = 0, -+ RTNL_LINK_INITIALIZING___2 = 1, -+ } rtnl_link_state: 16; -+ bool needs_free_netdev; -+ void (*priv_destructor)(struct net_device___2 *); -+ struct netpoll_info *npinfo; -+ possible_net_t___2 nd_net; -+ union { -+ void *ml_priv; -+ struct pcpu_lstats *lstats; -+ struct pcpu_sw_netstats *tstats; -+ struct pcpu_dstats *dstats; -+ struct pcpu_vstats *vstats; -+ }; -+ struct garp_port *garp_port; -+ struct mrp_port *mrp_port; -+ struct device___2 dev; -+ const struct attribute_group___2 *sysfs_groups[4]; -+ const struct attribute_group___2 *sysfs_rx_queue_group; -+ const struct rtnl_link_ops___2 *rtnl_link_ops; -+ unsigned int gso_max_size; -+ u16 gso_max_segs; -+ const struct dcbnl_rtnl_ops___2 *dcbnl_ops; -+ s16 num_tc; -+ struct netdev_tc_txq tc_to_txq[16]; -+ u8 prio_tc_map[16]; -+ unsigned int fcoe_ddp_xid; -+ struct netprio_map *priomap; -+ struct phy_device *phydev; -+ struct sfp_bus *sfp_bus; -+ struct lock_class_key *qdisc_tx_busylock; -+ struct lock_class_key *qdisc_running_key; -+ bool proto_down; -+ unsigned int wol_enabled: 1; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+ long unsigned int kabi_reserved17; -+ long unsigned int kabi_reserved18; -+ long unsigned int kabi_reserved19; -+ long unsigned int kabi_reserved20; -+ long unsigned int kabi_reserved21; -+ long unsigned int kabi_reserved22; -+ long unsigned int kabi_reserved23; -+ long unsigned int kabi_reserved24; -+ long unsigned int kabi_reserved25; -+ long unsigned int kabi_reserved26; -+ long unsigned int kabi_reserved27; -+ long unsigned int kabi_reserved28; -+ long unsigned int kabi_reserved29; -+ long unsigned int kabi_reserved30; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_prog_ops___2 { -+ int (*test_run)(struct bpf_prog___2 *, const union bpf_attr *, union bpf_attr *); -+}; -+ -+struct bpf_verifier_ops___2 { -+ const struct bpf_func_proto * (*get_func_proto)(enum bpf_func_id, const struct bpf_prog___2 *); -+ bool (*is_valid_access)(int, int, enum bpf_access_type, const struct bpf_prog___2 *, struct bpf_insn_access_aux *); -+ int (*gen_prologue)(struct bpf_insn *, bool, const struct bpf_prog___2 *); -+ int (*gen_ld_abs)(const struct bpf_insn *, struct bpf_insn *); -+ u32 (*convert_ctx_access)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog___2 *, u32 *); -+}; -+ -+struct bpf_prog_offload___2 { -+ struct bpf_prog___2 *prog; -+ struct net_device___2 *netdev; -+ void *dev_priv; -+ struct list_head offloads; -+ bool dev_state; -+ const struct bpf_prog_offload_ops *dev_ops; -+ void *jited_image; -+ u32 jited_len; -+}; -+ -+struct bpf_prog_aux___2 { -+ atomic_t refcnt; -+ u32 used_map_cnt; -+ u32 max_ctx_offset; -+ u32 stack_depth; -+ u32 id; -+ u32 func_cnt; -+ bool offload_requested; -+ struct bpf_prog___2 **func; -+ void *jit_data; -+ struct latch_tree_node ksym_tnode; -+ struct list_head ksym_lnode; -+ const struct bpf_prog_ops___2 *ops; -+ struct bpf_map___2 **used_maps; -+ struct bpf_prog___2 *prog; -+ struct user_struct___2 *user; -+ u64 load_time; -+ struct bpf_map___2 *cgroup_storage; -+ char name[16]; -+ void *security; -+ struct bpf_prog_offload___2 *offload; -+ union { -+ struct work_struct work; -+ struct callback_head rcu; -+ }; -+ u32 max_tp_access; -+}; -+ -+struct nf_bridge_info___2; -+ -+struct sk_buff___2 { -+ union { -+ struct { -+ struct sk_buff___2 *next; -+ struct sk_buff___2 *prev; -+ union { -+ struct net_device___2 *dev; -+ long unsigned int dev_scratch; -+ }; -+ }; -+ struct rb_node rbnode; -+ struct list_head list; -+ }; -+ union { -+ struct sock *sk; -+ int ip_defrag_offset; -+ }; -+ union { -+ ktime_t tstamp; -+ u64 skb_mstamp; -+ }; -+ char cb[48]; -+ union { -+ struct { -+ long unsigned int _skb_refdst; -+ void (*destructor)(struct sk_buff___2 *); -+ }; -+ struct list_head tcp_tsorted_anchor; -+ }; -+ struct sec_path *sp; -+ long unsigned int _nfct; -+ struct nf_bridge_info___2 *nf_bridge; -+ unsigned int len; -+ unsigned int data_len; -+ __u16 mac_len; -+ __u16 hdr_len; -+ __u16 queue_mapping; -+ __u8 __cloned_offset[0]; -+ __u8 cloned: 1; -+ __u8 nohdr: 1; -+ __u8 fclone: 2; -+ __u8 peeked: 1; -+ __u8 head_frag: 1; -+ __u8 xmit_more: 1; -+ __u8 pfmemalloc: 1; -+ __u32 headers_start[0]; -+ __u8 __pkt_type_offset[0]; -+ __u8 pkt_type: 3; -+ __u8 ignore_df: 1; -+ __u8 nf_trace: 1; -+ __u8 ip_summed: 2; -+ __u8 ooo_okay: 1; -+ __u8 l4_hash: 1; -+ __u8 sw_hash: 1; -+ __u8 wifi_acked_valid: 1; -+ __u8 wifi_acked: 1; -+ __u8 no_fcs: 1; -+ __u8 encapsulation: 1; -+ __u8 encap_hdr_csum: 1; -+ __u8 csum_valid: 1; -+ __u8 csum_complete_sw: 1; -+ __u8 csum_level: 2; -+ __u8 csum_not_inet: 1; -+ __u8 dst_pending_confirm: 1; -+ __u8 ndisc_nodetype: 2; -+ __u8 ipvs_property: 1; -+ __u8 inner_protocol_type: 1; -+ __u8 remcsum_offload: 1; -+ __u8 offload_fwd_mark: 1; -+ __u8 offload_mr_fwd_mark: 1; -+ __u8 tc_skip_classify: 1; -+ __u8 tc_at_ingress: 1; -+ __u8 tc_redirected: 1; -+ __u8 tc_from_ingress: 1; -+ __u8 decrypted: 1; -+ __u16 tc_index; -+ union { -+ __wsum csum; -+ struct { -+ __u16 csum_start; -+ __u16 csum_offset; -+ }; -+ }; -+ __u32 priority; -+ int skb_iif; -+ __u32 hash; -+ __be16 vlan_proto; -+ __u16 vlan_tci; -+ union { -+ unsigned int napi_id; -+ unsigned int sender_cpu; -+ }; -+ __u32 secmark; -+ union { -+ __u32 mark; -+ __u32 reserved_tailroom; -+ }; -+ union { -+ __be16 inner_protocol; -+ __u8 inner_ipproto; -+ }; -+ __u16 inner_transport_header; -+ __u16 inner_network_header; -+ __u16 inner_mac_header; -+ __be16 protocol; -+ __u16 transport_header; -+ __u16 network_header; -+ __u16 mac_header; -+ __u32 headers_end[0]; -+ sk_buff_data_t tail; -+ sk_buff_data_t end; -+ unsigned char *head; -+ unsigned char *data; -+ unsigned int truesize; -+ refcount_t users; -+}; -+ -+struct pipe_buf_operations___2; -+ -+struct pipe_buffer___2 { -+ struct page___2 *page; -+ unsigned int offset; -+ unsigned int len; -+ const struct pipe_buf_operations___2 *ops; -+ unsigned int flags; -+ long unsigned int private; -+}; -+ -+struct pipe_buf_operations___2 { -+ int can_merge; -+ int (*confirm)(struct pipe_inode_info___2 *, struct pipe_buffer___2 *); -+ void (*release)(struct pipe_inode_info___2 *, struct pipe_buffer___2 *); -+ int (*steal)(struct pipe_inode_info___2 *, struct pipe_buffer___2 *); -+ bool (*get)(struct pipe_inode_info___2 *, struct pipe_buffer___2 *); -+}; -+ -+struct nf_bridge_info___2 { -+ refcount_t use; -+ enum { -+ BRNF_PROTO_UNCHANGED___2 = 0, -+ BRNF_PROTO_8021Q___2 = 1, -+ BRNF_PROTO_PPPOE___2 = 2, -+ } orig_proto: 8; -+ u8 pkt_otherhost: 1; -+ u8 in_prerouting: 1; -+ u8 bridged_dnat: 1; -+ __u16 frag_max_size; -+ struct net_device___2 *physindev; -+ struct net_device___2 *physoutdev; -+ union { -+ __be32 ipv4_daddr; -+ struct in6_addr ipv6_daddr; -+ char neigh_header[8]; -+ }; -+}; -+ -+struct sk_buff_head___2 { -+ struct sk_buff___2 *next; -+ struct sk_buff___2 *prev; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+struct ethtool_ops___2 { -+ int (*get_settings)(struct net_device___2 *, struct ethtool_cmd *); -+ int (*set_settings)(struct net_device___2 *, struct ethtool_cmd *); -+ void (*get_drvinfo)(struct net_device___2 *, struct ethtool_drvinfo *); -+ int (*get_regs_len)(struct net_device___2 *); -+ void (*get_regs)(struct net_device___2 *, struct ethtool_regs *, void *); -+ void (*get_wol)(struct net_device___2 *, struct ethtool_wolinfo *); -+ int (*set_wol)(struct net_device___2 *, struct ethtool_wolinfo *); -+ u32 (*get_msglevel)(struct net_device___2 *); -+ void (*set_msglevel)(struct net_device___2 *, u32); -+ int (*nway_reset)(struct net_device___2 *); -+ u32 (*get_link)(struct net_device___2 *); -+ int (*get_eeprom_len)(struct net_device___2 *); -+ int (*get_eeprom)(struct net_device___2 *, struct ethtool_eeprom *, u8 *); -+ int (*set_eeprom)(struct net_device___2 *, struct ethtool_eeprom *, u8 *); -+ int (*get_coalesce)(struct net_device___2 *, struct ethtool_coalesce *); -+ int (*set_coalesce)(struct net_device___2 *, struct ethtool_coalesce *); -+ void (*get_ringparam)(struct net_device___2 *, struct ethtool_ringparam *); -+ int (*set_ringparam)(struct net_device___2 *, struct ethtool_ringparam *); -+ void (*get_pauseparam)(struct net_device___2 *, struct ethtool_pauseparam *); -+ int (*set_pauseparam)(struct net_device___2 *, struct ethtool_pauseparam *); -+ void (*self_test)(struct net_device___2 *, struct ethtool_test *, u64 *); -+ void (*get_strings)(struct net_device___2 *, u32, u8 *); -+ int (*set_phys_id)(struct net_device___2 *, enum ethtool_phys_id_state); -+ void (*get_ethtool_stats)(struct net_device___2 *, struct ethtool_stats *, u64 *); -+ int (*begin)(struct net_device___2 *); -+ void (*complete)(struct net_device___2 *); -+ u32 (*get_priv_flags)(struct net_device___2 *); -+ int (*set_priv_flags)(struct net_device___2 *, u32); -+ int (*get_sset_count)(struct net_device___2 *, int); -+ int (*get_rxnfc)(struct net_device___2 *, struct ethtool_rxnfc *, u32 *); -+ int (*set_rxnfc)(struct net_device___2 *, struct ethtool_rxnfc *); -+ int (*flash_device)(struct net_device___2 *, struct ethtool_flash *); -+ int (*reset)(struct net_device___2 *, u32 *); -+ u32 (*get_rxfh_key_size)(struct net_device___2 *); -+ u32 (*get_rxfh_indir_size)(struct net_device___2 *); -+ int (*get_rxfh)(struct net_device___2 *, u32 *, u8 *, u8 *); -+ int (*set_rxfh)(struct net_device___2 *, const u32 *, const u8 *, const u8); -+ int (*get_rxfh_context)(struct net_device___2 *, u32 *, u8 *, u8 *, u32); -+ int (*set_rxfh_context)(struct net_device___2 *, const u32 *, const u8 *, const u8, u32 *, bool); -+ void (*get_channels)(struct net_device___2 *, struct ethtool_channels *); -+ int (*set_channels)(struct net_device___2 *, struct ethtool_channels *); -+ int (*get_dump_flag)(struct net_device___2 *, struct ethtool_dump *); -+ int (*get_dump_data)(struct net_device___2 *, struct ethtool_dump *, void *); -+ int (*set_dump)(struct net_device___2 *, struct ethtool_dump *); -+ int (*get_ts_info)(struct net_device___2 *, struct ethtool_ts_info *); -+ int (*get_module_info)(struct net_device___2 *, struct ethtool_modinfo *); -+ int (*get_module_eeprom)(struct net_device___2 *, struct ethtool_eeprom *, u8 *); -+ int (*get_eee)(struct net_device___2 *, struct ethtool_eee *); -+ int (*set_eee)(struct net_device___2 *, struct ethtool_eee *); -+ int (*get_tunable)(struct net_device___2 *, const struct ethtool_tunable *, void *); -+ int (*set_tunable)(struct net_device___2 *, const struct ethtool_tunable *, const void *); -+ int (*get_per_queue_coalesce)(struct net_device___2 *, u32, struct ethtool_coalesce *); -+ int (*set_per_queue_coalesce)(struct net_device___2 *, u32, struct ethtool_coalesce *); -+ int (*get_link_ksettings)(struct net_device___2 *, struct ethtool_link_ksettings *); -+ int (*set_link_ksettings)(struct net_device___2 *, const struct ethtool_link_ksettings *); -+ int (*get_fecparam)(struct net_device___2 *, struct ethtool_fecparam *); -+ int (*set_fecparam)(struct net_device___2 *, struct ethtool_fecparam *); -+ void (*get_ethtool_phy_stats)(struct net_device___2 *, struct ethtool_stats *, u64 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+ long unsigned int kabi_reserved17; -+ long unsigned int kabi_reserved18; -+ long unsigned int kabi_reserved19; -+ long unsigned int kabi_reserved20; -+ long unsigned int kabi_reserved21; -+ long unsigned int kabi_reserved22; -+ long unsigned int kabi_reserved23; -+ long unsigned int kabi_reserved24; -+ long unsigned int kabi_reserved25; -+ long unsigned int kabi_reserved26; -+ long unsigned int kabi_reserved27; -+ long unsigned int kabi_reserved28; -+ long unsigned int kabi_reserved29; -+ long unsigned int kabi_reserved30; -+ long unsigned int kabi_reserved31; -+ long unsigned int kabi_reserved32; -+}; -+ -+struct inet_frag_queue___2; -+ -+struct inet_frags___2 { -+ unsigned int qsize; -+ void (*constructor)(struct inet_frag_queue___2 *, const void *); -+ void (*destructor)(struct inet_frag_queue___2 *); -+ void (*frag_expire)(struct timer_list *); -+ struct kmem_cache *frags_cachep; -+ const char *frags_cache_name; -+ struct rhashtable_params rhash_params; -+}; -+ -+struct inet_frag_queue___2 { -+ struct rhash_head node; -+ union { -+ struct frag_v4_compare_key v4; -+ struct frag_v6_compare_key v6; -+ } key; -+ struct timer_list timer; -+ spinlock_t lock; -+ refcount_t refcnt; -+ struct sk_buff___2 *fragments; -+ struct rb_root rb_fragments; -+ struct sk_buff___2 *fragments_tail; -+ struct sk_buff___2 *last_run_head; -+ ktime_t stamp; -+ int len; -+ int meat; -+ __u8 flags; -+ u16 max_size; -+ struct netns_frags___2 *net; -+ struct callback_head rcu; -+}; -+ -+struct pernet_operations___2 { -+ struct list_head list; -+ int (*init)(struct net___2 *); -+ void (*exit)(struct net___2 *); -+ void (*exit_batch)(struct list_head *); -+ unsigned int *id; -+ size_t size; -+}; -+ -+struct dcbnl_rtnl_ops___2 { -+ int (*ieee_getets)(struct net_device___2 *, struct ieee_ets *); -+ int (*ieee_setets)(struct net_device___2 *, struct ieee_ets *); -+ int (*ieee_getmaxrate)(struct net_device___2 *, struct ieee_maxrate *); -+ int (*ieee_setmaxrate)(struct net_device___2 *, struct ieee_maxrate *); -+ int (*ieee_getqcn)(struct net_device___2 *, struct ieee_qcn *); -+ int (*ieee_setqcn)(struct net_device___2 *, struct ieee_qcn *); -+ int (*ieee_getqcnstats)(struct net_device___2 *, struct ieee_qcn_stats *); -+ int (*ieee_getpfc)(struct net_device___2 *, struct ieee_pfc *); -+ int (*ieee_setpfc)(struct net_device___2 *, struct ieee_pfc *); -+ int (*ieee_getapp)(struct net_device___2 *, struct dcb_app *); -+ int (*ieee_setapp)(struct net_device___2 *, struct dcb_app *); -+ int (*ieee_delapp)(struct net_device___2 *, struct dcb_app *); -+ int (*ieee_peer_getets)(struct net_device___2 *, struct ieee_ets *); -+ int (*ieee_peer_getpfc)(struct net_device___2 *, struct ieee_pfc *); -+ u8 (*getstate)(struct net_device___2 *); -+ u8 (*setstate)(struct net_device___2 *, u8); -+ void (*getpermhwaddr)(struct net_device___2 *, u8 *); -+ void (*setpgtccfgtx)(struct net_device___2 *, int, u8, u8, u8, u8); -+ void (*setpgbwgcfgtx)(struct net_device___2 *, int, u8); -+ void (*setpgtccfgrx)(struct net_device___2 *, int, u8, u8, u8, u8); -+ void (*setpgbwgcfgrx)(struct net_device___2 *, int, u8); -+ void (*getpgtccfgtx)(struct net_device___2 *, int, u8 *, u8 *, u8 *, u8 *); -+ void (*getpgbwgcfgtx)(struct net_device___2 *, int, u8 *); -+ void (*getpgtccfgrx)(struct net_device___2 *, int, u8 *, u8 *, u8 *, u8 *); -+ void (*getpgbwgcfgrx)(struct net_device___2 *, int, u8 *); -+ void (*setpfccfg)(struct net_device___2 *, int, u8); -+ void (*getpfccfg)(struct net_device___2 *, int, u8 *); -+ u8 (*setall)(struct net_device___2 *); -+ u8 (*getcap)(struct net_device___2 *, int, u8 *); -+ int (*getnumtcs)(struct net_device___2 *, int, u8 *); -+ int (*setnumtcs)(struct net_device___2 *, int, u8); -+ u8 (*getpfcstate)(struct net_device___2 *); -+ void (*setpfcstate)(struct net_device___2 *, u8); -+ void (*getbcncfg)(struct net_device___2 *, int, u32 *); -+ void (*setbcncfg)(struct net_device___2 *, int, u32); -+ void (*getbcnrp)(struct net_device___2 *, int, u8 *); -+ void (*setbcnrp)(struct net_device___2 *, int, u8); -+ int (*setapp)(struct net_device___2 *, u8, u16, u8); -+ int (*getapp)(struct net_device___2 *, u8, u16); -+ u8 (*getfeatcfg)(struct net_device___2 *, int, u8 *); -+ u8 (*setfeatcfg)(struct net_device___2 *, int, u8); -+ u8 (*getdcbx)(struct net_device___2 *); -+ u8 (*setdcbx)(struct net_device___2 *, u8); -+ int (*peer_getappinfo)(struct net_device___2 *, struct dcb_peer_app_info *, u16 *); -+ int (*peer_getapptable)(struct net_device___2 *, struct dcb_app *); -+ int (*cee_peer_getpg)(struct net_device___2 *, struct cee_pg *); -+ int (*cee_peer_getpfc)(struct net_device___2 *, struct cee_pfc *); -+ int (*dcbnl_getbuffer)(struct net_device___2 *, struct dcbnl_buffer *); -+ int (*dcbnl_setbuffer)(struct net_device___2 *, struct dcbnl_buffer *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+}; -+ -+struct xdp_rxq_info___2 { -+ struct net_device___2 *dev; -+ u32 queue_index; -+ u32 reg_state; -+ struct xdp_mem_info mem; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_frame___2 { ++struct min_heap { + void *data; -+ u16 len; -+ u16 headroom; -+ u16 metasize; -+ struct xdp_mem_info mem; -+ struct net_device___2 *dev_rx; ++ int nr; ++ int size; +}; + -+struct netlink_callback___2 { -+ struct sk_buff___2 *skb; -+ const struct nlmsghdr *nlh; -+ int (*dump)(struct sk_buff___2 *, struct netlink_callback___2 *); -+ int (*done)(struct netlink_callback___2 *); -+ void *data; -+ struct module___2 *module; -+ u16 family; -+ u16 min_dump_alloc; -+ unsigned int prev_seq; -+ unsigned int seq; -+ long int args[6]; -+}; -+ -+struct header_ops___2 { -+ int (*create)(struct sk_buff___2 *, struct net_device___2 *, short unsigned int, const void *, const void *, unsigned int); -+ int (*parse)(const struct sk_buff___2 *, unsigned char *); -+ int (*cache)(const struct neighbour *, struct hh_cache *, __be16); -+ void (*cache_update)(struct hh_cache *, const struct net_device___2 *, const unsigned char *); -+ bool (*validate)(const char *, unsigned int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+}; -+ -+struct napi_struct___2 { -+ struct list_head poll_list; -+ long unsigned int state; -+ int weight; -+ long unsigned int gro_bitmask; -+ int (*poll)(struct napi_struct___2 *, int); -+ int poll_owner; -+ struct net_device___2 *dev; -+ struct gro_list gro_hash[8]; -+ struct sk_buff___2 *skb; -+ struct hrtimer timer; -+ struct list_head dev_list; -+ struct hlist_node napi_hash_node; -+ unsigned int napi_id; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+struct netdev_queue___2 { -+ struct net_device___2 *dev; -+ struct Qdisc___2 *qdisc; -+ struct Qdisc___2 *qdisc_sleeping; -+ struct kobject___3 kobj; -+ int numa_node; -+ long unsigned int tx_maxrate; -+ long unsigned int trans_timeout; -+ struct net_device___2 *sb_dev; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t _xmit_lock; -+ int xmit_lock_owner; -+ long unsigned int trans_start; -+ long unsigned int state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dql dql; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct qdisc_skb_head___2 { -+ struct sk_buff___2 *head; -+ struct sk_buff___2 *tail; -+ union { -+ u32 qlen; -+ atomic_t atomic_qlen; -+ }; -+ spinlock_t lock; -+}; -+ -+struct Qdisc_ops___2; -+ -+struct Qdisc___2 { -+ int (*enqueue)(struct sk_buff___2 *, struct Qdisc___2 *, struct sk_buff___2 **); -+ struct sk_buff___2 * (*dequeue)(struct Qdisc___2 *); -+ unsigned int flags; -+ u32 limit; -+ const struct Qdisc_ops___2 *ops; -+ struct qdisc_size_table *stab; -+ struct hlist_node hash; -+ u32 handle; -+ u32 parent; -+ struct netdev_queue___2 *dev_queue; -+ struct net_rate_estimator *rate_est; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_queue *cpu_qstats; -+ int padded; -+ refcount_t refcnt; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sk_buff_head___2 gso_skb; -+ struct qdisc_skb_head___2 q; -+ struct gnet_stats_basic_packed bstats; -+ seqcount_t running; -+ struct gnet_stats_queue qstats; -+ long unsigned int state; -+ struct Qdisc___2 *next_sched; -+ struct sk_buff_head___2 skb_bad_txq; -+ spinlock_t busylock; -+ spinlock_t seqlock; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct netdev_rx_queue___2 { -+ struct rps_map *rps_map; -+ struct rps_dev_flow_table *rps_flow_table; -+ struct kobject___3 kobj; -+ struct net_device___2 *dev; -+ long: 64; -+ struct xdp_rxq_info___2 xdp_rxq; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+typedef u16 (*select_queue_fallback_t___2)(struct net_device___2 *, struct sk_buff___2 *, struct net_device___2 *); -+ -+struct netdev_bpf___2 { -+ enum bpf_netdev_command command; -+ union { -+ struct { -+ u32 flags; -+ struct bpf_prog___2 *prog; -+ struct netlink_ext_ack *extack; -+ }; -+ struct { -+ u32 prog_id; -+ u32 prog_flags; -+ }; -+ struct { -+ struct bpf_prog___2 *prog; -+ const struct bpf_prog_offload_ops *ops; -+ } verifier; -+ struct { -+ struct bpf_prog___2 *prog; -+ } offload; -+ struct { -+ struct bpf_offloaded_map___2 *offmap; -+ }; -+ struct { -+ struct xdp_umem *umem; -+ u16 queue_id; -+ } xsk; -+ }; -+}; -+ -+struct xfrmdev_ops___2 { -+ int (*xdo_dev_state_add)(struct xfrm_state *); -+ void (*xdo_dev_state_delete)(struct xfrm_state *); -+ void (*xdo_dev_state_free)(struct xfrm_state *); -+ bool (*xdo_dev_offload_ok)(struct sk_buff___2 *, struct xfrm_state *); -+ void (*xdo_dev_state_advance_esn)(struct xfrm_state *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+struct tlsdev_ops___2 { -+ int (*tls_dev_add)(struct net_device___2 *, struct sock *, enum tls_offload_ctx_dir, struct tls_crypto_info *, u32); -+ void (*tls_dev_del)(struct net_device___2 *, struct tls_context *, enum tls_offload_ctx_dir); -+ void (*tls_dev_resync_rx)(struct net_device___2 *, struct sock *, u32, u64); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+}; -+ -+struct net_device_ops___2 { -+ int (*ndo_init)(struct net_device___2 *); -+ void (*ndo_uninit)(struct net_device___2 *); -+ int (*ndo_open)(struct net_device___2 *); -+ int (*ndo_stop)(struct net_device___2 *); -+ netdev_tx_t (*ndo_start_xmit)(struct sk_buff___2 *, struct net_device___2 *); -+ netdev_features_t (*ndo_features_check)(struct sk_buff___2 *, struct net_device___2 *, netdev_features_t); -+ u16 (*ndo_select_queue)(struct net_device___2 *, struct sk_buff___2 *, struct net_device___2 *, select_queue_fallback_t___2); -+ void (*ndo_change_rx_flags)(struct net_device___2 *, int); -+ void (*ndo_set_rx_mode)(struct net_device___2 *); -+ int (*ndo_set_mac_address)(struct net_device___2 *, void *); -+ int (*ndo_validate_addr)(struct net_device___2 *); -+ int (*ndo_do_ioctl)(struct net_device___2 *, struct ifreq *, int); -+ int (*ndo_set_config)(struct net_device___2 *, struct ifmap *); -+ int (*ndo_change_mtu)(struct net_device___2 *, int); -+ int (*ndo_neigh_setup)(struct net_device___2 *, struct neigh_parms *); -+ void (*ndo_tx_timeout)(struct net_device___2 *); -+ void (*ndo_get_stats64)(struct net_device___2 *, struct rtnl_link_stats64 *); -+ bool (*ndo_has_offload_stats)(const struct net_device___2 *, int); -+ int (*ndo_get_offload_stats)(int, const struct net_device___2 *, void *); -+ struct net_device_stats * (*ndo_get_stats)(struct net_device___2 *); -+ int (*ndo_vlan_rx_add_vid)(struct net_device___2 *, __be16, u16); -+ int (*ndo_vlan_rx_kill_vid)(struct net_device___2 *, __be16, u16); -+ void (*ndo_poll_controller)(struct net_device___2 *); -+ int (*ndo_netpoll_setup)(struct net_device___2 *, struct netpoll_info *); -+ void (*ndo_netpoll_cleanup)(struct net_device___2 *); -+ int (*ndo_set_vf_mac)(struct net_device___2 *, int, u8 *); -+ int (*ndo_set_vf_vlan)(struct net_device___2 *, int, u16, u8, __be16); -+ int (*ndo_set_vf_rate)(struct net_device___2 *, int, int, int); -+ int (*ndo_set_vf_spoofchk)(struct net_device___2 *, int, bool); -+ int (*ndo_set_vf_trust)(struct net_device___2 *, int, bool); -+ int (*ndo_get_vf_config)(struct net_device___2 *, int, struct ifla_vf_info *); -+ int (*ndo_set_vf_link_state)(struct net_device___2 *, int, int); -+ int (*ndo_get_vf_stats)(struct net_device___2 *, int, struct ifla_vf_stats *); -+ int (*ndo_set_vf_port)(struct net_device___2 *, int, struct nlattr **); -+ int (*ndo_get_vf_port)(struct net_device___2 *, int, struct sk_buff___2 *); -+ int (*ndo_set_vf_guid)(struct net_device___2 *, int, u64, int); -+ int (*ndo_set_vf_rss_query_en)(struct net_device___2 *, int, bool); -+ int (*ndo_setup_tc)(struct net_device___2 *, enum tc_setup_type, void *); -+ int (*ndo_fcoe_enable)(struct net_device___2 *); -+ int (*ndo_fcoe_disable)(struct net_device___2 *); -+ int (*ndo_fcoe_ddp_setup)(struct net_device___2 *, u16, struct scatterlist *, unsigned int); -+ int (*ndo_fcoe_ddp_done)(struct net_device___2 *, u16); -+ int (*ndo_fcoe_ddp_target)(struct net_device___2 *, u16, struct scatterlist *, unsigned int); -+ int (*ndo_fcoe_get_hbainfo)(struct net_device___2 *, struct netdev_fcoe_hbainfo *); -+ int (*ndo_fcoe_get_wwn)(struct net_device___2 *, u64 *, int); -+ int (*ndo_rx_flow_steer)(struct net_device___2 *, const struct sk_buff___2 *, u16, u32); -+ int (*ndo_add_slave)(struct net_device___2 *, struct net_device___2 *, struct netlink_ext_ack *); -+ int (*ndo_del_slave)(struct net_device___2 *, struct net_device___2 *); -+ netdev_features_t (*ndo_fix_features)(struct net_device___2 *, netdev_features_t); -+ int (*ndo_set_features)(struct net_device___2 *, netdev_features_t); -+ int (*ndo_neigh_construct)(struct net_device___2 *, struct neighbour *); -+ void (*ndo_neigh_destroy)(struct net_device___2 *, struct neighbour *); -+ int (*ndo_fdb_add)(struct ndmsg *, struct nlattr **, struct net_device___2 *, const unsigned char *, u16, u16); -+ int (*ndo_fdb_del)(struct ndmsg *, struct nlattr **, struct net_device___2 *, const unsigned char *, u16); -+ int (*ndo_fdb_dump)(struct sk_buff___2 *, struct netlink_callback___2 *, struct net_device___2 *, struct net_device___2 *, int *); -+ int (*ndo_bridge_setlink)(struct net_device___2 *, struct nlmsghdr *, u16); -+ int (*ndo_bridge_getlink)(struct sk_buff___2 *, u32, u32, struct net_device___2 *, u32, int); -+ int (*ndo_bridge_dellink)(struct net_device___2 *, struct nlmsghdr *, u16); -+ int (*ndo_change_carrier)(struct net_device___2 *, bool); -+ int (*ndo_get_phys_port_id)(struct net_device___2 *, struct netdev_phys_item_id *); -+ int (*ndo_get_phys_port_name)(struct net_device___2 *, char *, size_t); -+ void (*ndo_udp_tunnel_add)(struct net_device___2 *, struct udp_tunnel_info *); -+ void (*ndo_udp_tunnel_del)(struct net_device___2 *, struct udp_tunnel_info *); -+ void * (*ndo_dfwd_add_station)(struct net_device___2 *, struct net_device___2 *); -+ void (*ndo_dfwd_del_station)(struct net_device___2 *, void *); -+ int (*ndo_get_lock_subclass)(struct net_device___2 *); -+ int (*ndo_set_tx_maxrate)(struct net_device___2 *, int, u32); -+ int (*ndo_get_iflink)(const struct net_device___2 *); -+ int (*ndo_change_proto_down)(struct net_device___2 *, bool); -+ int (*ndo_fill_metadata_dst)(struct net_device___2 *, struct sk_buff___2 *); -+ void (*ndo_set_rx_headroom)(struct net_device___2 *, int); -+ int (*ndo_bpf)(struct net_device___2 *, struct netdev_bpf___2 *); -+ int (*ndo_xdp_xmit)(struct net_device___2 *, int, struct xdp_frame___2 **, u32); -+ int (*ndo_xsk_async_xmit)(struct net_device___2 *, u32); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+ long unsigned int kabi_reserved16; -+ long unsigned int kabi_reserved17; -+ long unsigned int kabi_reserved18; -+ long unsigned int kabi_reserved19; -+ long unsigned int kabi_reserved20; -+ long unsigned int kabi_reserved21; -+ long unsigned int kabi_reserved22; -+ long unsigned int kabi_reserved23; -+ long unsigned int kabi_reserved24; -+ long unsigned int kabi_reserved25; -+ long unsigned int kabi_reserved26; -+ long unsigned int kabi_reserved27; -+ long unsigned int kabi_reserved28; -+ long unsigned int kabi_reserved29; -+ long unsigned int kabi_reserved30; -+ long unsigned int kabi_reserved31; -+ long unsigned int kabi_reserved32; -+ long unsigned int kabi_reserved33; -+ long unsigned int kabi_reserved34; -+ long unsigned int kabi_reserved35; -+ long unsigned int kabi_reserved36; -+ long unsigned int kabi_reserved37; -+ long unsigned int kabi_reserved38; -+ long unsigned int kabi_reserved39; -+ long unsigned int kabi_reserved40; -+ long unsigned int kabi_reserved41; -+ long unsigned int kabi_reserved42; -+ long unsigned int kabi_reserved43; -+ long unsigned int kabi_reserved44; -+ long unsigned int kabi_reserved45; -+ long unsigned int kabi_reserved46; -+ long unsigned int kabi_reserved47; -+}; -+ -+struct tcf_proto___2; -+ -+struct mini_Qdisc___2 { -+ struct tcf_proto___2 *filter_list; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_queue *cpu_qstats; -+ struct callback_head rcu; -+}; -+ -+struct rtnl_link_ops___2 { -+ struct list_head list; -+ const char *kind; -+ size_t priv_size; -+ void (*setup)(struct net_device___2 *); -+ unsigned int maxtype; -+ const struct nla_policy *policy; -+ int (*validate)(struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ int (*newlink)(struct net___2 *, struct net_device___2 *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ int (*changelink)(struct net_device___2 *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ void (*dellink)(struct net_device___2 *, struct list_head *); -+ size_t (*get_size)(const struct net_device___2 *); -+ int (*fill_info)(struct sk_buff___2 *, const struct net_device___2 *); -+ size_t (*get_xstats_size)(const struct net_device___2 *); -+ int (*fill_xstats)(struct sk_buff___2 *, const struct net_device___2 *); -+ unsigned int (*get_num_tx_queues)(); -+ unsigned int (*get_num_rx_queues)(); -+ unsigned int slave_maxtype; -+ const struct nla_policy *slave_policy; -+ int (*slave_changelink)(struct net_device___2 *, struct net_device___2 *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); -+ size_t (*get_slave_size)(const struct net_device___2 *, const struct net_device___2 *); -+ int (*fill_slave_info)(struct sk_buff___2 *, const struct net_device___2 *, const struct net_device___2 *); -+ struct net___2 * (*get_link_net)(const struct net_device___2 *); -+ size_t (*get_linkxstats_size)(const struct net_device___2 *, int); -+ int (*fill_linkxstats)(struct sk_buff___2 *, const struct net_device___2 *, int *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+ long unsigned int kabi_reserved9; -+ long unsigned int kabi_reserved10; -+ long unsigned int kabi_reserved11; -+ long unsigned int kabi_reserved12; -+ long unsigned int kabi_reserved13; -+ long unsigned int kabi_reserved14; -+ long unsigned int kabi_reserved15; -+}; -+ -+struct softnet_data___2 { -+ struct list_head poll_list; -+ struct sk_buff_head___2 process_queue; -+ unsigned int processed; -+ unsigned int time_squeeze; -+ unsigned int received_rps; -+ struct softnet_data___2 *rps_ipi_list; -+ struct sd_flow_limit *flow_limit; -+ struct Qdisc___2 *output_queue; -+ struct Qdisc___2 **output_queue_tailp; -+ struct sk_buff___2 *completion_queue; -+ struct sk_buff_head___2 xfrm_backlog; -+ struct { -+ u16 recursion; -+ u8 more; -+ } xmit; -+ int: 32; -+ unsigned int input_queue_head; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ call_single_data_t csd; -+ struct softnet_data___2 *rps_ipi_next; -+ unsigned int cpu; -+ unsigned int input_queue_tail; -+ unsigned int dropped; -+ struct sk_buff_head___2 input_pkt_queue; -+ struct napi_struct___2 backlog; -+ long: 64; -+}; -+ -+struct gnet_dump___2 { -+ spinlock_t *lock; -+ struct sk_buff___2 *skb; -+ struct nlattr *tail; -+ int compat_tc_stats; -+ int compat_xstats; -+ int padattr; -+ void *xstats; -+ int xstats_len; -+ struct tc_stats tc_stats; -+}; -+ -+struct Qdisc_class_ops___2; -+ -+struct Qdisc_ops___2 { -+ struct Qdisc_ops___2 *next; -+ const struct Qdisc_class_ops___2 *cl_ops; -+ char id[16]; -+ int priv_size; -+ unsigned int static_flags; -+ int (*enqueue)(struct sk_buff___2 *, struct Qdisc___2 *, struct sk_buff___2 **); -+ struct sk_buff___2 * (*dequeue)(struct Qdisc___2 *); -+ struct sk_buff___2 * (*peek)(struct Qdisc___2 *); -+ int (*init)(struct Qdisc___2 *, struct nlattr *, struct netlink_ext_ack *); -+ void (*reset)(struct Qdisc___2 *); -+ void (*destroy)(struct Qdisc___2 *); -+ int (*change)(struct Qdisc___2 *, struct nlattr *, struct netlink_ext_ack *); -+ void (*attach)(struct Qdisc___2 *); -+ int (*change_tx_queue_len)(struct Qdisc___2 *, unsigned int); -+ int (*dump)(struct Qdisc___2 *, struct sk_buff___2 *); -+ int (*dump_stats)(struct Qdisc___2 *, struct gnet_dump___2 *); -+ void (*ingress_block_set)(struct Qdisc___2 *, u32); -+ void (*egress_block_set)(struct Qdisc___2 *, u32); -+ u32 (*ingress_block_get)(struct Qdisc___2 *); -+ u32 (*egress_block_get)(struct Qdisc___2 *); -+ struct module___2 *owner; -+}; -+ -+struct tcf_block___2; -+ -+struct Qdisc_class_ops___2 { -+ struct netdev_queue___2 * (*select_queue)(struct Qdisc___2 *, struct tcmsg *); -+ int (*graft)(struct Qdisc___2 *, long unsigned int, struct Qdisc___2 *, struct Qdisc___2 **, struct netlink_ext_ack *); -+ struct Qdisc___2 * (*leaf)(struct Qdisc___2 *, long unsigned int); -+ void (*qlen_notify)(struct Qdisc___2 *, long unsigned int); -+ long unsigned int (*find)(struct Qdisc___2 *, u32); -+ int (*change)(struct Qdisc___2 *, u32, u32, struct nlattr **, long unsigned int *, struct netlink_ext_ack *); -+ int (*delete)(struct Qdisc___2 *, long unsigned int); -+ void (*walk)(struct Qdisc___2 *, struct qdisc_walker *); -+ struct tcf_block___2 * (*tcf_block)(struct Qdisc___2 *, long unsigned int, struct netlink_ext_ack *); -+ long unsigned int (*bind_tcf)(struct Qdisc___2 *, long unsigned int, u32); -+ void (*unbind_tcf)(struct Qdisc___2 *, long unsigned int); -+ int (*dump)(struct Qdisc___2 *, long unsigned int, struct sk_buff___2 *, struct tcmsg *); -+ int (*dump_stats)(struct Qdisc___2 *, long unsigned int, struct gnet_dump___2 *); -+}; -+ -+struct tcf_chain___2; -+ -+struct tcf_block___2 { -+ struct list_head chain_list; -+ u32 index; -+ unsigned int refcnt; -+ struct net___2 *net; -+ struct Qdisc___2 *q; -+ struct list_head cb_list; -+ struct list_head owner_list; -+ bool keep_dst; -+ unsigned int offloadcnt; -+ unsigned int nooffloaddevcnt; -+ struct { -+ struct tcf_chain___2 *chain; -+ struct list_head filter_chain_list; -+ } chain0; -+}; -+ -+struct tcf_result___2; -+ -+struct tcf_proto_ops___2; -+ -+struct tcf_proto___2 { -+ struct tcf_proto___2 *next; -+ void *root; -+ int (*classify)(struct sk_buff___2 *, const struct tcf_proto___2 *, struct tcf_result___2 *); -+ __be16 protocol; -+ u32 prio; -+ void *data; -+ const struct tcf_proto_ops___2 *ops; -+ struct tcf_chain___2 *chain; -+ struct callback_head rcu; -+}; -+ -+struct tcf_result___2 { -+ union { -+ struct { -+ long unsigned int class; -+ u32 classid; -+ }; -+ const struct tcf_proto___2 *goto_tp; -+ struct { -+ bool ingress; -+ struct gnet_stats_queue *qstats; -+ }; -+ }; -+}; -+ -+struct tcf_proto_ops___2 { -+ struct list_head head; -+ char kind[16]; -+ int (*classify)(struct sk_buff___2 *, const struct tcf_proto___2 *, struct tcf_result___2 *); -+ int (*init)(struct tcf_proto___2 *); -+ void (*destroy)(struct tcf_proto___2 *, struct netlink_ext_ack *); -+ void * (*get)(struct tcf_proto___2 *, u32); -+ int (*change)(struct net___2 *, struct sk_buff___2 *, struct tcf_proto___2 *, long unsigned int, u32, struct nlattr **, void **, bool, struct netlink_ext_ack *); -+ int (*delete)(struct tcf_proto___2 *, void *, bool *, struct netlink_ext_ack *); -+ void (*walk)(struct tcf_proto___2 *, struct tcf_walker *); -+ int (*reoffload)(struct tcf_proto___2 *, bool, tc_setup_cb_t *, void *, struct netlink_ext_ack *); -+ void (*bind_class)(void *, u32, long unsigned int); -+ void * (*tmplt_create)(struct net___2 *, struct tcf_chain___2 *, struct nlattr **, struct netlink_ext_ack *); -+ void (*tmplt_destroy)(void *); -+ int (*dump)(struct net___2 *, struct tcf_proto___2 *, void *, struct sk_buff___2 *, struct tcmsg *); -+ int (*tmplt_dump)(struct sk_buff___2 *, struct net___2 *, void *); -+ struct module___2 *owner; -+}; -+ -+struct tcf_chain___2 { -+ struct tcf_proto___2 *filter_chain; -+ struct list_head list; -+ struct tcf_block___2 *block; -+ u32 index; -+ unsigned int refcnt; -+ unsigned int action_refcnt; -+ bool explicitly_created; -+ const struct tcf_proto_ops___2 *tmplt_ops; -+ void *tmplt_priv; -+}; -+ -+struct bpf_redirect_info___2 { -+ u32 ifindex; -+ u32 flags; -+ struct bpf_map___2 *map; -+ struct bpf_map___2 *map_to_flush; -+ u32 kern_flags; ++struct min_heap_callbacks { ++ int elem_size; ++ bool (*less)(const void *, const void *); ++ void (*swp)(void *, void *); +}; + +typedef int (*remote_function_f)(void *); + +struct remote_function_call { -+ struct task_struct___2 *p; ++ struct task_struct *p; + remote_function_f func; + void *info; + int ret; +}; + -+typedef void (*event_f)(struct perf_event___2 *, struct perf_cpu_context___2 *, struct perf_event_context___2 *, void *); ++typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *, struct perf_event_context *, void *); + +struct event_function_struct { -+ struct perf_event___2 *event; ++ struct perf_event *event; + event_f func; + void *data; +}; @@ -44657,18 +44876,12 @@ index 0000000..bcb9d76 +}; + +struct stop_event_data { -+ struct perf_event___2 *event; ++ struct perf_event *event; + unsigned int restart; +}; + -+struct sched_in_data { -+ struct perf_event_context___2 *ctx; -+ struct perf_cpu_context___2 *cpuctx; -+ int can_add_hw; -+}; -+ +struct perf_read_data { -+ struct perf_event___2 *event; ++ struct perf_event *event; + bool group; + int ret; +}; @@ -44679,16 +44892,16 @@ index 0000000..bcb9d76 + u32 tid; +}; + -+typedef void perf_iterate_f(struct perf_event___2 *, void *); ++typedef void perf_iterate_f(struct perf_event *, void *); + +struct remote_output { -+ struct ring_buffer___2 *rb; ++ struct perf_buffer *rb; + int err; +}; + +struct perf_task_event { -+ struct task_struct___2 *task; -+ struct perf_event_context___2 *task_ctx; ++ struct task_struct *task; ++ struct perf_event_context *task_ctx; + struct { + struct perf_event_header header; + u32 pid; @@ -44700,7 +44913,7 @@ index 0000000..bcb9d76 +}; + +struct perf_comm_event { -+ struct task_struct___2 *task; ++ struct task_struct *task; + char *comm; + int comm_size; + struct { @@ -44711,7 +44924,7 @@ index 0000000..bcb9d76 +}; + +struct perf_namespaces_event { -+ struct task_struct___2 *task; ++ struct task_struct *task; + struct { + struct perf_event_header header; + u32 pid; @@ -44721,8 +44934,18 @@ index 0000000..bcb9d76 + } event_id; +}; + ++struct perf_cgroup_event { ++ char *path; ++ int path_size; ++ struct { ++ struct perf_event_header header; ++ u64 id; ++ char path[0]; ++ } event_id; ++}; ++ +struct perf_mmap_event { -+ struct vm_area_struct___2 *vma; ++ struct vm_area_struct *vma; + const char *file_name; + int file_size; + int maj; @@ -44742,8 +44965,8 @@ index 0000000..bcb9d76 +}; + +struct perf_switch_event { -+ struct task_struct___2 *task; -+ struct task_struct___2 *next_prev; ++ struct task_struct *task; ++ struct task_struct *next_prev; + struct { + struct perf_event_header header; + u32 next_prev_pid; @@ -44751,6 +44974,41 @@ index 0000000..bcb9d76 + } event_id; +}; + ++struct perf_ksymbol_event { ++ const char *name; ++ int name_len; ++ struct { ++ struct perf_event_header header; ++ u64 addr; ++ u32 len; ++ u16 ksym_type; ++ u16 flags; ++ } event_id; ++}; ++ ++struct perf_bpf_event { ++ struct bpf_prog *prog; ++ struct { ++ struct perf_event_header header; ++ u16 type; ++ u16 flags; ++ u32 id; ++ u8 tag[8]; ++ } event_id; ++}; ++ ++struct perf_text_poke_event { ++ const void *old_bytes; ++ const void *new_bytes; ++ size_t pad; ++ u16 old_len; ++ u16 new_len; ++ struct { ++ struct perf_event_header header; ++ u64 addr; ++ } event_id; ++}; ++ +struct swevent_htable { + struct swevent_hlist *swevent_hlist; + struct mutex hlist_mutex; @@ -44760,10 +45018,12 @@ index 0000000..bcb9d76 + +enum perf_probe_config { + PERF_PROBE_CONFIG_IS_RETPROBE = 1, ++ PERF_UPROBE_REF_CTR_OFFSET_BITS = 32, ++ PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 32, +}; + +enum { -+ IF_ACT_NONE = -1, ++ IF_ACT_NONE = 4294967295, + IF_ACT_FILTER = 0, + IF_ACT_START = 1, + IF_ACT_STOP = 2, @@ -44792,16 +45052,6 @@ index 0000000..bcb9d76 + u64 flags; +}; + -+enum perf_callchain_context { -+ PERF_CONTEXT_HV = -32, -+ PERF_CONTEXT_KERNEL = -128, -+ PERF_CONTEXT_USER = -512, -+ PERF_CONTEXT_GUEST = -2048, -+ PERF_CONTEXT_GUEST_KERNEL = -2176, -+ PERF_CONTEXT_GUEST_USER = -2560, -+ PERF_CONTEXT_MAX = -4095, -+}; -+ +struct callchain_cpus_entries { + struct callback_head callback_head; + struct perf_callchain_entry *cpu_entries[0]; @@ -44828,13 +45078,14 @@ index 0000000..bcb9d76 + +struct uprobe { + struct rb_node rb_node; -+ atomic_t ref; ++ refcount_t ref; + struct rw_semaphore register_rwsem; + struct rw_semaphore consumer_rwsem; + struct list_head pending_list; + struct uprobe_consumer *consumers; -+ struct inode___2 *inode; ++ struct inode *inode; + loff_t offset; ++ loff_t ref_ctr_offset; + long unsigned int flags; + struct arch_uprobe arch; +}; @@ -44850,7 +45101,12 @@ index 0000000..bcb9d76 + +typedef long unsigned int vm_flags_t; + -+typedef int filler_t(void *, struct page *); ++struct compact_control; ++ ++struct capture_control { ++ struct compact_control *cc; ++ struct page *page; ++}; + +struct page_vma_mapped_walk { + struct page *page; @@ -44862,6 +45118,42 @@ index 0000000..bcb9d76 + unsigned int flags; +}; + ++struct compact_control { ++ struct list_head freepages; ++ struct list_head migratepages; ++ unsigned int nr_freepages; ++ unsigned int nr_migratepages; ++ long unsigned int free_pfn; ++ long unsigned int migrate_pfn; ++ long unsigned int fast_start_pfn; ++ struct zone *zone; ++ long unsigned int total_migrate_scanned; ++ long unsigned int total_free_scanned; ++ short unsigned int fast_search_fail; ++ short int search_order; ++ const gfp_t gfp_mask; ++ int order; ++ int migratetype; ++ const unsigned int alloc_flags; ++ const int highest_zoneidx; ++ enum migrate_mode mode; ++ bool ignore_skip_hint; ++ bool no_set_skip_hint; ++ bool ignore_block_suitable; ++ bool direct_compaction; ++ bool proactive_compaction; ++ bool whole_zone; ++ bool contended; ++ bool rescan; ++ bool alloc_contig; ++}; ++ ++struct delayed_uprobe { ++ struct list_head list; ++ struct uprobe *uprobe; ++ struct mm_struct *mm; ++}; ++ +struct map_info { + struct map_info *next; + struct mm_struct *mm; @@ -44879,7 +45171,7 @@ index 0000000..bcb9d76 + struct list_head list; + struct parallel_data *pd; + int cb_cpu; -+ int cpu; ++ unsigned int seq_nr; + int info; + void (*parallel)(struct padata_priv *); + void (*serial)(struct padata_priv *); @@ -44890,19 +45182,19 @@ index 0000000..bcb9d76 + cpumask_var_t cbcpu; +}; + -+struct padata_instance; ++struct padata_shell; + -+struct padata_parallel_queue; ++struct padata_list; + +struct padata_serial_queue; + +struct parallel_data { -+ struct padata_instance *pinst; -+ struct padata_parallel_queue *pqueue; ++ struct padata_shell *ps; ++ struct padata_list *reorder_list; + struct padata_serial_queue *squeue; -+ atomic_t reorder_objects; + atomic_t refcnt; -+ atomic_t seq_nr; ++ unsigned int seq_nr; ++ unsigned int processed; + int cpu; + struct padata_cpumask cpumask; + struct work_struct reorder_work; @@ -44929,25 +45221,52 @@ index 0000000..bcb9d76 + struct parallel_data *pd; +}; + -+struct padata_parallel_queue { -+ struct padata_list parallel; -+ struct padata_list reorder; -+ struct work_struct work; -+ atomic_t num_obj; -+ int cpu_index; ++struct padata_instance; ++ ++struct padata_shell { ++ struct padata_instance *pinst; ++ struct parallel_data *pd; ++ struct parallel_data *opd; ++ struct list_head list; +}; + +struct padata_instance { -+ struct hlist_node node; -+ struct workqueue_struct *wq; -+ struct parallel_data *pd; ++ struct hlist_node cpu_online_node; ++ struct hlist_node cpu_dead_node; ++ struct workqueue_struct *parallel_wq; ++ struct workqueue_struct *serial_wq; ++ struct list_head pslist; + struct padata_cpumask cpumask; -+ struct blocking_notifier_head___2 cpumask_change_notifier; -+ struct kobject___3 kobj; ++ struct kobject kobj; + struct mutex lock; + u8 flags; +}; + ++struct padata_mt_job { ++ void (*thread_fn)(long unsigned int, long unsigned int, void *); ++ void *fn_arg; ++ long unsigned int start; ++ long unsigned int size; ++ long unsigned int align; ++ long unsigned int min_chunk; ++ int max_threads; ++}; ++ ++struct padata_work { ++ struct work_struct pw_work; ++ struct list_head pw_list; ++ void *pw_data; ++}; ++ ++struct padata_mt_job_state { ++ spinlock_t lock; ++ struct completion completion; ++ struct padata_mt_job *job; ++ int nworks; ++ int nworks_fini; ++ long unsigned int chunk_size; ++}; ++ +struct padata_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct padata_instance *, struct attribute *, char *); @@ -44957,7 +45276,7 @@ index 0000000..bcb9d76 +struct static_key_mod { + struct static_key_mod *next; + struct jump_entry *entries; -+ struct module___2 *mod; ++ struct module *mod; +}; + +struct static_key_deferred { @@ -44974,11 +45293,13 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_context_tracking_user {}; + -+typedef enum ctx_state pto_T_____26; ++typedef void (*btf_trace_user_enter)(void *, int); ++ ++typedef void (*btf_trace_user_exit)(void *, int); + +enum rseq_cpu_id_state { -+ RSEQ_CPU_ID_UNINITIALIZED = -1, -+ RSEQ_CPU_ID_REGISTRATION_FAILED = -2, ++ RSEQ_CPU_ID_UNINITIALIZED = 4294967295, ++ RSEQ_CPU_ID_REGISTRATION_FAILED = 4294967294, +}; + +enum rseq_flags { @@ -45018,35 +45339,38 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_rseq_ip_fixup {}; + ++typedef void (*btf_trace_rseq_update)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_rseq_ip_fixup)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); ++ +struct __key_reference_with_attributes; + +typedef struct __key_reference_with_attributes *key_ref_t; + -+typedef int (*request_key_actor_t___2)(struct key___2 *, void *); ++enum pgp_hash_algo { ++ PGP_HASH_MD5 = 1, ++ PGP_HASH_SHA1 = 2, ++ PGP_HASH_RIPE_MD_160 = 3, ++ PGP_HASH_SHA256 = 8, ++ PGP_HASH_SHA384 = 9, ++ PGP_HASH_SHA512 = 10, ++ PGP_HASH_SHA224 = 11, ++ PGP_HASH__LAST = 12, ++}; + +struct pkcs7_message; + -+struct radix_tree_iter { -+ long unsigned int index; -+ long unsigned int next_index; -+ long unsigned int tags; -+ struct radix_tree_node *node; -+ unsigned int shift; -+}; -+ -+typedef void (*radix_tree_update_node_t)(struct radix_tree_node *); -+ -+enum { -+ RADIX_TREE_ITER_TAG_MASK = 15, -+ RADIX_TREE_ITER_TAGGED = 16, -+ RADIX_TREE_ITER_CONTIG = 32, -+}; ++typedef int __kernel_rwf_t; + +enum positive_aop_returns { + AOP_WRITEPAGE_ACTIVATE = 524288, + AOP_TRUNCATED_PAGE = 524289, +}; + ++struct vm_event_state { ++ long unsigned int event[96]; ++}; ++ +enum mapping_flags { + AS_EIO = 0, + AS_ENOSPC = 1, @@ -45054,14 +45378,21 @@ index 0000000..bcb9d76 + AS_UNEVICTABLE = 3, + AS_EXITING = 4, + AS_NO_WRITEBACK_TAGS = 5, -+ AS_PERCPU_REF = 6, ++ AS_THP_SUPPORT = 6, +}; + -+enum { -+ ITER_IOVEC = 0, -+ ITER_KVEC = 2, -+ ITER_BVEC = 4, -+ ITER_PIPE = 8, ++struct wait_page_key { ++ struct page *page; ++ int bit_nr; ++ int page_match; ++}; ++ ++enum iter_type { ++ ITER_IOVEC = 4, ++ ITER_KVEC = 8, ++ ITER_BVEC = 16, ++ ITER_PIPE = 32, ++ ITER_DISCARD = 64, +}; + +struct pagevec { @@ -45090,8 +45421,6 @@ index 0000000..bcb9d76 + }; +}; + -+typedef void (*poll_queue_proc___3)(struct file___2 *, wait_queue_head_t *, struct poll_table_struct *); -+ +struct trace_event_raw_mm_filemap_op_page_cache { + struct trace_entry ent; + long unsigned int pfn; @@ -45111,7 +45440,7 @@ index 0000000..bcb9d76 + +struct trace_event_raw_file_check_and_advance_wb_err { + struct trace_entry ent; -+ struct file___2 *file; ++ struct file *file; + long unsigned int i_ino; + dev_t s_dev; + errseq_t old; @@ -45125,51 +45454,30 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_file_check_and_advance_wb_err {}; + -+struct percpu_page { -+ struct percpu_ref ref; -+ struct page *page; ++typedef void (*btf_trace_mm_filemap_delete_from_page_cache)(void *, struct page *); ++ ++typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct page *); ++ ++typedef void (*btf_trace_filemap_set_wb_err)(void *, struct address_space *, errseq_t); ++ ++typedef void (*btf_trace_file_check_and_advance_wb_err)(void *, struct file *, errseq_t); ++ ++enum behavior { ++ EXCLUSIVE = 0, ++ SHARED = 1, ++ DROP = 2, +}; + -+struct wait_page_key { -+ struct page *page; -+ int bit_nr; -+ int page_match; -+}; -+ -+struct wait_page_queue { -+ struct page *page; -+ int bit_nr; -+ wait_queue_entry_t wait; ++struct reciprocal_value { ++ u32 m; ++ u8 sh1; ++ u8 sh2; +}; + +struct kmem_cache_order_objects { + unsigned int x; +}; + -+struct memcg_cache_array; -+ -+struct memcg_cache_params { -+ struct kmem_cache *root_cache; -+ union { -+ struct { -+ struct memcg_cache_array *memcg_caches; -+ struct list_head __root_caches_node; -+ struct list_head children; -+ bool dying; -+ }; -+ struct { -+ struct mem_cgroup *memcg; -+ struct list_head children_node; -+ struct list_head kmem_caches_node; -+ void (*deact_fn)(struct kmem_cache *); -+ union { -+ struct callback_head deact_rcu_head; -+ struct work_struct deact_work; -+ }; -+ }; -+ }; -+}; -+ +struct kmem_cache_cpu; + +struct kmem_cache_node; @@ -45180,6 +45488,7 @@ index 0000000..bcb9d76 + long unsigned int min_partial; + unsigned int size; + unsigned int object_size; ++ struct reciprocal_value reciprocal_size; + unsigned int offset; + unsigned int cpu_partial; + struct kmem_cache_order_objects oo; @@ -45194,10 +45503,6 @@ index 0000000..bcb9d76 + const char *name; + struct list_head list; + struct kobject kobj; -+ struct work_struct kobj_remove_work; -+ struct memcg_cache_params memcg_params; -+ unsigned int max_attr_size; -+ struct kset *memcg_kset; + unsigned int remote_node_defrag_ratio; + unsigned int *random_seq; + unsigned int useroffset; @@ -45205,11 +45510,6 @@ index 0000000..bcb9d76 + struct kmem_cache_node *node[1024]; +}; + -+struct memcg_cache_array { -+ struct callback_head rcu; -+ struct kmem_cache *entries[0]; -+}; -+ +struct kmem_cache_cpu { + void **freelist; + long unsigned int tid; @@ -45226,19 +45526,6 @@ index 0000000..bcb9d76 + struct list_head full; +}; + -+enum slab_state { -+ DOWN = 0, -+ PARTIAL = 1, -+ PARTIAL_NODE = 2, -+ UP = 3, -+ FULL = 4, -+}; -+ -+struct kmalloc_info_struct { -+ const char *name; -+ unsigned int size; -+}; -+ +enum oom_constraint { + CONSTRAINT_NONE = 0, + CONSTRAINT_CPUSET = 1, @@ -45254,32 +45541,10 @@ index 0000000..bcb9d76 + const int order; + long unsigned int totalpages; + struct task_struct *chosen; -+ long unsigned int chosen_points; ++ long int chosen_points; + enum oom_constraint constraint; +}; + -+struct mem_cgroup_extension { -+ int memcg_priority; -+ struct mem_cgroup_stat_cpu *vmstats_local; -+ spinlock_t split_queue_lock; -+ struct list_head split_queue; -+ long unsigned int split_queue_len; -+ long: 64; -+ long: 64; -+ struct mem_cgroup memcg; -+}; -+ -+struct sp_proc_stat { -+ atomic_t use_count; -+ int tgid; -+ struct mm_struct *mm; -+ struct mutex lock; -+ struct hlist_head hash[16]; -+ char comm[16]; -+ atomic64_t alloc_size; -+ atomic64_t k2u_size; -+}; -+ +enum compact_priority { + COMPACT_PRIO_SYNC_FULL = 0, + MIN_COMPACT_PRIORITY = 0, @@ -45294,7 +45559,6 @@ index 0000000..bcb9d76 + COMPACT_NOT_SUITABLE_ZONE = 0, + COMPACT_SKIPPED = 1, + COMPACT_DEFERRED = 2, -+ COMPACT_INACTIVE = 2, + COMPACT_NO_SUITABLE_PAGE = 3, + COMPACT_CONTINUE = 4, + COMPACT_COMPLETE = 5, @@ -45381,110 +45645,27 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_compact_retry {}; + ++typedef void (*btf_trace_oom_score_adj_update)(void *, struct task_struct *); ++ ++typedef void (*btf_trace_reclaim_retry_zone)(void *, struct zoneref *, int, long unsigned int, long unsigned int, long unsigned int, int, bool); ++ ++typedef void (*btf_trace_mark_victim)(void *, int); ++ ++typedef void (*btf_trace_wake_reaper)(void *, int); ++ ++typedef void (*btf_trace_start_task_reaping)(void *, int); ++ ++typedef void (*btf_trace_finish_task_reaping)(void *, int); ++ ++typedef void (*btf_trace_skip_task_reaping)(void *, int); ++ ++typedef void (*btf_trace_compact_retry)(void *, int, enum compact_priority, enum compact_result, int, int, bool); ++ +enum wb_congested_state { + WB_async_congested = 0, + WB_sync_congested = 1, +}; + -+enum pageblock_bits { -+ PB_migrate = 0, -+ PB_migrate_end = 2, -+ PB_migrate_skip = 3, -+ NR_PAGEBLOCK_BITS = 4, -+}; -+ -+struct mminit_pfnnid_cache { -+ long unsigned int last_start; -+ long unsigned int last_end; -+ int last_nid; -+}; -+ -+struct page_frag_cache { -+ void *va; -+ __u16 offset; -+ __u16 size; -+ unsigned int pagecnt_bias; -+ bool pfmemalloc; -+}; -+ -+enum { -+ BLK_RW_ASYNC = 0, -+ BLK_RW_SYNC = 1, -+}; -+ -+struct ktask_node { -+ void *kn_start; -+ size_t kn_task_size; -+ int kn_nid; -+ void *kn_position; -+ size_t kn_remaining_size; -+ struct list_head kn_failed_works; -+}; -+ -+typedef int (*ktask_thread_func)(void *, void *, void *); -+ -+typedef void (*ktask_undo_func)(void *, void *, void *); -+ -+typedef void * (*ktask_iter_func)(void *, size_t); -+ -+struct ktask_ctl { -+ ktask_thread_func kc_thread_func; -+ ktask_undo_func kc_undo_func; -+ void *kc_func_arg; -+ size_t kc_min_chunk_size; -+ ktask_iter_func kc_iter_func; -+ size_t kc_max_threads; -+}; -+ -+struct alloc_context { -+ struct zonelist *zonelist; -+ nodemask_t *nodemask; -+ struct zoneref *preferred_zoneref; -+ int migratetype; -+ enum zone_type high_zoneidx; -+ bool spread_dirty_pages; -+}; -+ -+struct compact_control { -+ struct list_head freepages; -+ struct list_head migratepages; -+ struct zone *zone; -+ long unsigned int nr_freepages; -+ long unsigned int nr_migratepages; -+ long unsigned int total_migrate_scanned; -+ long unsigned int total_free_scanned; -+ long unsigned int free_pfn; -+ long unsigned int migrate_pfn; -+ long unsigned int last_migrated_pfn; -+ const gfp_t gfp_mask; -+ int order; -+ int migratetype; -+ const unsigned int alloc_flags; -+ const int classzone_idx; -+ enum migrate_mode mode; -+ bool ignore_skip_hint; -+ bool no_set_skip_hint; -+ bool ignore_block_suitable; -+ bool direct_compaction; -+ bool whole_zone; -+ bool contended; -+ bool finishing_block; -+}; -+ -+enum mminit_level { -+ MMINIT_WARNING = 0, -+ MMINIT_VERIFY = 1, -+ MMINIT_TRACE = 2, -+}; -+ -+typedef int fpi_t; -+ -+struct deferred_args { -+ int nid; -+ int zid; -+ atomic64_t nr_pages; -+}; -+ +enum wb_state { + WB_registered = 0, + WB_writeback_running = 1, @@ -45492,6 +45673,11 @@ index 0000000..bcb9d76 + WB_start_all = 3, +}; + ++enum { ++ BLK_RW_ASYNC = 0, ++ BLK_RW_SYNC = 1, ++}; ++ +struct wb_lock_cookie { + bool locked; + long unsigned int flags; @@ -45514,6 +45700,8 @@ index 0000000..bcb9d76 + long unsigned int pos_ratio; +}; + ++typedef void compound_page_dtor(struct page *); ++ +struct trace_event_raw_mm_lru_insertion { + struct trace_entry ent; + struct page *page; @@ -45534,11 +45722,32 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_mm_lru_activate {}; + ++typedef void (*btf_trace_mm_lru_insertion)(void *, struct page *, int); ++ ++typedef void (*btf_trace_mm_lru_activate)(void *, struct page *); ++ ++struct lru_rotate { ++ local_lock_t lock; ++ struct pagevec pvec; ++}; ++ ++struct lru_pvecs { ++ local_lock_t lock; ++ struct pagevec lru_add; ++ struct pagevec lru_deactivate_file; ++ struct pagevec lru_deactivate; ++ struct pagevec lru_lazyfree; ++ struct pagevec activate_page; ++}; ++ ++enum lruvec_flags { ++ LRUVEC_CONGESTED = 0, ++ LRUVEC_DIRTY = 1, ++}; ++ +enum pgdat_flags { -+ PGDAT_CONGESTED = 0, -+ PGDAT_DIRTY = 1, -+ PGDAT_WRITEBACK = 2, -+ PGDAT_RECLAIM_LOCKED = 3, ++ PGDAT_WRITEBACK = 0, ++ PGDAT_RECLAIM_LOCKED = 1, +}; + +struct reclaim_stat { @@ -45547,27 +45756,18 @@ index 0000000..bcb9d76 + unsigned int nr_congested; + unsigned int nr_writeback; + unsigned int nr_immediate; -+ unsigned int nr_activate; ++ unsigned int nr_pageout; ++ unsigned int nr_activate[2]; + unsigned int nr_ref_keep; + unsigned int nr_unmap_fail; + unsigned int nr_lazyfree_fail; +}; + -+enum mem_cgroup_protection { -+ MEMCG_PROT_NONE = 0, -+ MEMCG_PROT_LOW = 1, -+ MEMCG_PROT_MIN = 2, -+}; -+ -+struct mem_cgroup_reclaim_cookie { -+ pg_data_t *pgdat; -+ int priority; -+ unsigned int generation; -+}; -+ -+struct mem_cgroup_per_node_extension { -+ struct mem_cgroup_per_node pn; -+ struct lruvec_stat *lruvec_stat_local; ++enum page_cache_reclaim_flag { ++ PAGE_CACHE_RECLAIM_NO_UNMAP = 0, ++ PAGE_CACHE_RECLAIM_UNMAP = 1, ++ PAGE_CACHE_RECLAIM_WRITEPAGE = 2, ++ PAGE_CACHE_RECLAIM_NR_FLAGS = 3, +}; + +enum ttu_flags { @@ -45575,12 +45775,11 @@ index 0000000..bcb9d76 + TTU_MUNLOCK = 2, + TTU_SPLIT_HUGE_PMD = 4, + TTU_IGNORE_MLOCK = 8, -+ TTU_IGNORE_ACCESS = 16, ++ TTU_SYNC = 16, + TTU_IGNORE_HWPOISON = 32, + TTU_BATCH_FLUSH = 64, + TTU_RMAP_LOCKED = 128, + TTU_SPLIT_FREEZE = 256, -+ TTU_SYNC = 512, +}; + +struct trace_event_raw_mm_vmscan_kswapd_sleep { @@ -45609,9 +45808,7 @@ index 0000000..bcb9d76 +struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { + struct trace_entry ent; + int order; -+ int may_writepage; + gfp_t gfp_flags; -+ int classzone_idx; + char __data[0]; +}; + @@ -45649,7 +45846,7 @@ index 0000000..bcb9d76 + +struct trace_event_raw_mm_vmscan_lru_isolate { + struct trace_entry ent; -+ int classzone_idx; ++ int highest_zoneidx; + int order; + long unsigned int nr_requested; + long unsigned int nr_scanned; @@ -45676,7 +45873,8 @@ index 0000000..bcb9d76 + long unsigned int nr_writeback; + long unsigned int nr_congested; + long unsigned int nr_immediate; -+ long unsigned int nr_activate; ++ unsigned int nr_activate0; ++ unsigned int nr_activate1; + long unsigned int nr_ref_keep; + long unsigned int nr_unmap_fail; + int priority; @@ -45709,6 +45907,14 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_mm_vmscan_node_reclaim_begin { ++ struct trace_entry ent; ++ int nid; ++ int order; ++ gfp_t gfp_flags; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_mm_vmscan_kswapd_sleep {}; + +struct trace_event_data_offsets_mm_vmscan_kswapd_wake {}; @@ -45733,10 +45939,53 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_mm_vmscan_inactive_list_is_low {}; + ++struct trace_event_data_offsets_mm_vmscan_node_reclaim_begin {}; ++ ++typedef void (*btf_trace_mm_vmscan_kswapd_sleep)(void *, int); ++ ++typedef void (*btf_trace_mm_vmscan_kswapd_wake)(void *, int, int, int); ++ ++typedef void (*btf_trace_mm_vmscan_wakeup_kswapd)(void *, int, int, int, gfp_t); ++ ++typedef void (*btf_trace_mm_vmscan_direct_reclaim_begin)(void *, int, gfp_t); ++ ++typedef void (*btf_trace_mm_vmscan_memcg_reclaim_begin)(void *, int, gfp_t); ++ ++typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_begin)(void *, int, gfp_t); ++ ++typedef void (*btf_trace_mm_vmscan_direct_reclaim_end)(void *, long unsigned int); ++ ++typedef void (*btf_trace_mm_vmscan_memcg_reclaim_end)(void *, long unsigned int); ++ ++typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_end)(void *, long unsigned int); ++ ++typedef void (*btf_trace_mm_shrink_slab_start)(void *, struct shrinker *, struct shrink_control *, long int, long unsigned int, long long unsigned int, long unsigned int, int); ++ ++typedef void (*btf_trace_mm_shrink_slab_end)(void *, struct shrinker *, int, int, long int, long int, long int); ++ ++typedef void (*btf_trace_mm_vmscan_lru_isolate)(void *, int, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, isolate_mode_t, int); ++ ++typedef void (*btf_trace_mm_vmscan_writepage)(void *, struct page *); ++ ++typedef void (*btf_trace_mm_vmscan_lru_shrink_inactive)(void *, int, long unsigned int, long unsigned int, struct reclaim_stat *, int, int); ++ ++typedef void (*btf_trace_mm_vmscan_lru_shrink_active)(void *, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int, int); ++ ++typedef void (*btf_trace_mm_vmscan_inactive_list_is_low)(void *, int, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); ++ ++typedef void (*btf_trace_mm_vmscan_node_reclaim_begin)(void *, int, int, gfp_t); ++ ++typedef void (*btf_trace_mm_vmscan_node_reclaim_end)(void *, long unsigned int); ++ +struct scan_control { + long unsigned int nr_to_reclaim; + nodemask_t *nodemask; + struct mem_cgroup *target_mem_cgroup; ++ long unsigned int anon_cost; ++ long unsigned int file_cost; ++ unsigned int may_deactivate: 2; ++ unsigned int force_deactivate: 1; ++ unsigned int skipped_deactivate: 1; + unsigned int may_writepage: 1; + unsigned int may_unmap: 1; + unsigned int may_swap: 1; @@ -45744,6 +45993,9 @@ index 0000000..bcb9d76 + unsigned int memcg_low_skipped: 1; + unsigned int hibernation_mode: 1; + unsigned int compaction_ready: 1; ++ unsigned int cache_trim_mode: 1; ++ unsigned int file_is_tiny: 1; ++ unsigned int no_shrink_slab: 1; + s8 order; + s8 priority; + s8 reclaim_idx; @@ -45759,6 +46011,7 @@ index 0000000..bcb9d76 + unsigned int file_taken; + unsigned int taken; + } nr; ++ struct reclaim_state reclaim_state; +}; + +typedef enum { @@ -45782,19 +46035,27 @@ index 0000000..bcb9d76 + SCAN_FILE = 3, +}; + -+typedef __kernel_ulong_t __kernel_ino_t; -+ -+typedef __kernel_ino_t ino_t; -+ +enum transparent_hugepage_flag { -+ TRANSPARENT_HUGEPAGE_FLAG = 0, -+ TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG = 1, -+ TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG = 2, -+ TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG = 3, -+ TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG = 4, -+ TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG = 5, -+ TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG = 6, -+ TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG = 7, ++ TRANSPARENT_HUGEPAGE_NEVER_DAX = 0, ++ TRANSPARENT_HUGEPAGE_FLAG = 1, ++ TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG = 2, ++ TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG = 3, ++ TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG = 4, ++ TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG = 5, ++ TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG = 6, ++ TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG = 7, ++ TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG = 8, ++}; ++ ++struct xattr { ++ const char *name; ++ void *value; ++ size_t value_len; ++}; ++ ++struct constant_table { ++ const char *name; ++ int value; +}; + +enum { @@ -45811,12 +46072,6 @@ index 0000000..bcb9d76 + rwlock_t lock; +}; + -+struct xattr { -+ const char *name; -+ void *value; -+ size_t value_len; -+}; -+ +struct simple_xattrs { + struct list_head head; + spinlock_t lock; @@ -45829,34 +46084,19 @@ index 0000000..bcb9d76 + char value[0]; +}; + -+enum fid_type { -+ FILEID_ROOT = 0, -+ FILEID_INO32_GEN = 1, -+ FILEID_INO32_GEN_PARENT = 2, -+ FILEID_BTRFS_WITHOUT_PARENT = 77, -+ FILEID_BTRFS_WITH_PARENT = 78, -+ FILEID_BTRFS_WITH_PARENT_ROOT = 79, -+ FILEID_UDF_WITHOUT_PARENT = 81, -+ FILEID_UDF_WITH_PARENT = 82, -+ FILEID_NILFS_WITHOUT_PARENT = 97, -+ FILEID_NILFS_WITH_PARENT = 98, -+ FILEID_FAT_WITHOUT_PARENT = 113, -+ FILEID_FAT_WITH_PARENT = 114, -+ FILEID_LUSTRE = 151, -+ FILEID_INVALID = 255, -+}; -+ +struct shmem_inode_info { + spinlock_t lock; + unsigned int seals; + long unsigned int flags; + long unsigned int alloced; + long unsigned int swapped; ++ long unsigned int fallocend; + struct list_head shrinklist; + struct list_head swaplist; + struct shared_policy policy; + struct simple_xattrs xattrs; -+ struct inode___2 vfs_inode; ++ atomic_t stop_eviction; ++ struct inode vfs_inode; +}; + +struct shmem_sb_info { @@ -45887,6 +46127,24 @@ index 0000000..bcb9d76 + SGP_FALLOC = 5, +}; + ++enum fid_type { ++ FILEID_ROOT = 0, ++ FILEID_INO32_GEN = 1, ++ FILEID_INO32_GEN_PARENT = 2, ++ FILEID_BTRFS_WITHOUT_PARENT = 77, ++ FILEID_BTRFS_WITH_PARENT = 78, ++ FILEID_BTRFS_WITH_PARENT_ROOT = 79, ++ FILEID_UDF_WITHOUT_PARENT = 81, ++ FILEID_UDF_WITH_PARENT = 82, ++ FILEID_NILFS_WITHOUT_PARENT = 97, ++ FILEID_NILFS_WITH_PARENT = 98, ++ FILEID_FAT_WITHOUT_PARENT = 113, ++ FILEID_FAT_WITH_PARENT = 114, ++ FILEID_LUSTRE = 151, ++ FILEID_KERNFS = 254, ++ FILEID_INVALID = 255, ++}; ++ +struct shmem_falloc { + wait_queue_head_t *waitq; + long unsigned int start; @@ -45895,10 +46153,29 @@ index 0000000..bcb9d76 + long unsigned int nr_unswapped; +}; + -+struct contig_page_info { -+ long unsigned int free_pages; -+ long unsigned int free_blocks_total; -+ long unsigned int free_blocks_suitable; ++struct shmem_options { ++ long long unsigned int blocks; ++ long long unsigned int inodes; ++ struct mempolicy *mpol; ++ kuid_t uid; ++ kgid_t gid; ++ umode_t mode; ++ bool full_inums; ++ int huge; ++ int seen; ++}; ++ ++enum shmem_param { ++ Opt_gid = 0, ++ Opt_huge = 1, ++ Opt_mode = 2, ++ Opt_mpol = 3, ++ Opt_nr_blocks = 4, ++ Opt_nr_inodes = 5, ++ Opt_size = 6, ++ Opt_uid = 7, ++ Opt_inode32 = 8, ++ Opt_inode64 = 9, +}; + +enum writeback_stat_item { @@ -45907,7 +46184,30 @@ index 0000000..bcb9d76 + NR_VM_WRITEBACK_STAT_ITEMS = 2, +}; + -+typedef s8 pto_T_____27; ++struct contig_page_info { ++ long unsigned int free_pages; ++ long unsigned int free_blocks_total; ++ long unsigned int free_blocks_suitable; ++}; ++ ++struct radix_tree_iter { ++ long unsigned int index; ++ long unsigned int next_index; ++ long unsigned int tags; ++ struct xa_node *node; ++}; ++ ++enum { ++ RADIX_TREE_ITER_TAG_MASK = 15, ++ RADIX_TREE_ITER_TAGGED = 16, ++ RADIX_TREE_ITER_CONTIG = 32, ++}; ++ ++enum mminit_level { ++ MMINIT_WARNING = 0, ++ MMINIT_VERIFY = 1, ++ MMINIT_TRACE = 2, ++}; + +struct pcpu_group_info { + int nr_units; @@ -45986,28 +46286,48 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_percpu_destroy_chunk {}; + ++typedef void (*btf_trace_percpu_alloc_percpu)(void *, bool, bool, size_t, size_t, void *, int, void *); ++ ++typedef void (*btf_trace_percpu_free_percpu)(void *, void *, int, void *); ++ ++typedef void (*btf_trace_percpu_alloc_percpu_fail)(void *, bool, bool, size_t, size_t); ++ ++typedef void (*btf_trace_percpu_create_chunk)(void *, void *); ++ ++typedef void (*btf_trace_percpu_destroy_chunk)(void *, void *); ++ ++enum pcpu_chunk_type { ++ PCPU_CHUNK_ROOT = 0, ++ PCPU_CHUNK_MEMCG = 1, ++ PCPU_NR_CHUNK_TYPES = 2, ++ PCPU_FAIL_ALLOC = 2, ++}; ++ +struct pcpu_block_md { ++ int scan_hint; ++ int scan_hint_start; + int contig_hint; + int contig_hint_start; + int left_free; + int right_free; + int first_free; ++ int nr_bits; +}; + +struct pcpu_chunk { + struct list_head list; + int free_bytes; -+ int contig_bits; -+ int contig_bits_start; ++ struct pcpu_block_md chunk_md; + void *base_addr; + long unsigned int *alloc_map; + long unsigned int *bound_map; + struct pcpu_block_md *md_blocks; + void *data; -+ int first_bit; + bool immutable; ++ bool isolated; + int start_offset; + int end_offset; ++ struct obj_cgroup **obj_cgroups; + int nr_pages; + int nr_populated; + int nr_empty_pop_pages; @@ -46091,6 +46411,15 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_rss_stat { ++ struct trace_entry ent; ++ unsigned int mm_id; ++ unsigned int curr; ++ int member; ++ long int size; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_kmem_alloc {}; + +struct trace_event_data_offsets_kmem_alloc_node {}; @@ -46109,6 +46438,47 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_mm_page_alloc_extfrag {}; + ++struct trace_event_data_offsets_rss_stat {}; ++ ++typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); ++ ++typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); ++ ++typedef void (*btf_trace_kmalloc_node)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); ++ ++typedef void (*btf_trace_kmem_cache_alloc_node)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); ++ ++typedef void (*btf_trace_kfree)(void *, long unsigned int, const void *); ++ ++typedef void (*btf_trace_kmem_cache_free)(void *, long unsigned int, const void *); ++ ++typedef void (*btf_trace_mm_page_free)(void *, struct page *, unsigned int); ++ ++typedef void (*btf_trace_mm_page_free_batched)(void *, struct page *); ++ ++typedef void (*btf_trace_mm_page_alloc)(void *, struct page *, unsigned int, gfp_t, int); ++ ++typedef void (*btf_trace_mm_page_alloc_zone_locked)(void *, struct page *, unsigned int, int); ++ ++typedef void (*btf_trace_mm_page_pcpu_drain)(void *, struct page *, unsigned int, int); ++ ++typedef void (*btf_trace_mm_page_alloc_extfrag)(void *, struct page *, int, int, int, int); ++ ++typedef void (*btf_trace_rss_stat)(void *, struct mm_struct *, int, long int); ++ ++enum slab_state { ++ DOWN = 0, ++ PARTIAL = 1, ++ PARTIAL_NODE = 2, ++ UP = 3, ++ FULL = 4, ++}; ++ ++struct kmalloc_info_struct { ++ const char *name[3]; ++ unsigned int size; ++}; ++ +struct slabinfo { + long unsigned int active_objs; + long unsigned int num_objs; @@ -46122,6 +46492,30 @@ index 0000000..bcb9d76 + unsigned int cache_order; +}; + ++enum pageblock_bits { ++ PB_migrate = 0, ++ PB_migrate_end = 2, ++ PB_migrate_skip = 3, ++ NR_PAGEBLOCK_BITS = 4, ++}; ++ ++struct node___2 { ++ struct device dev; ++ struct list_head access_list; ++ struct work_struct node_work; ++ struct list_head cache_attrs; ++ struct device *cache_dev; ++}; ++ ++struct alloc_context { ++ struct zonelist *zonelist; ++ nodemask_t *nodemask; ++ struct zoneref *preferred_zoneref; ++ int migratetype; ++ enum zone_type highest_zoneidx; ++ bool spread_dirty_pages; ++}; ++ +struct trace_event_raw_mm_compaction_isolate_template { + struct trace_entry ent; + long unsigned int start_pfn; @@ -46197,7 +46591,7 @@ index 0000000..bcb9d76 + struct trace_entry ent; + int nid; + int order; -+ enum zone_type classzone_idx; ++ enum zone_type highest_zoneidx; + char __data[0]; +}; + @@ -46219,6 +46613,34 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_kcompactd_wake_template {}; + ++typedef void (*btf_trace_mm_compaction_isolate_migratepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_mm_compaction_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_mm_compaction_migratepages)(void *, long unsigned int, int, struct list_head *); ++ ++typedef void (*btf_trace_mm_compaction_begin)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, bool); ++ ++typedef void (*btf_trace_mm_compaction_end)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, bool, int); ++ ++typedef void (*btf_trace_mm_compaction_try_to_compact_pages)(void *, int, gfp_t, int); ++ ++typedef void (*btf_trace_mm_compaction_finished)(void *, struct zone *, int, int); ++ ++typedef void (*btf_trace_mm_compaction_suitable)(void *, struct zone *, int, int); ++ ++typedef void (*btf_trace_mm_compaction_deferred)(void *, struct zone *, int); ++ ++typedef void (*btf_trace_mm_compaction_defer_compaction)(void *, struct zone *, int); ++ ++typedef void (*btf_trace_mm_compaction_defer_reset)(void *, struct zone *, int); ++ ++typedef void (*btf_trace_mm_compaction_kcompactd_sleep)(void *, int); ++ ++typedef void (*btf_trace_mm_compaction_wakeup_kcompactd)(void *, int, int, enum zone_type); ++ ++typedef void (*btf_trace_mm_compaction_kcompactd_wake)(void *, int, int, enum zone_type); ++ +typedef enum { + ISOLATE_ABORT = 0, + ISOLATE_NONE = 1, @@ -46247,6 +46669,62 @@ index 0000000..bcb9d76 + long unsigned int pd; +} hugepd_t; + ++struct follow_page_context { ++ struct dev_pagemap *pgmap; ++ unsigned int page_mask; ++}; ++ ++struct trace_event_raw_mmap_lock_start_locking { ++ struct trace_entry ent; ++ struct mm_struct *mm; ++ u32 __data_loc_memcg_path; ++ bool write; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_mmap_lock_acquire_returned { ++ struct trace_entry ent; ++ struct mm_struct *mm; ++ u32 __data_loc_memcg_path; ++ bool write; ++ bool success; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_mmap_lock_released { ++ struct trace_entry ent; ++ struct mm_struct *mm; ++ u32 __data_loc_memcg_path; ++ bool write; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_mmap_lock_start_locking { ++ u32 memcg_path; ++}; ++ ++struct trace_event_data_offsets_mmap_lock_acquire_returned { ++ u32 memcg_path; ++}; ++ ++struct trace_event_data_offsets_mmap_lock_released { ++ u32 memcg_path; ++}; ++ ++typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, const char *, bool); ++ ++typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, const char *, bool, bool); ++ ++typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, const char *, bool); ++ ++struct memcg_path { ++ local_lock_t lock; ++ char *buf; ++ local_t buf_idx; ++}; ++ ++typedef unsigned int pgtbl_mod_mask; ++ +struct zap_details { + struct address_space *check_mapping; + long unsigned int first_index; @@ -46254,7 +46732,7 @@ index 0000000..bcb9d76 + struct page *single_page; +}; + -+typedef int (*pte_fn_t)(pte_t *, pgtable_t, long unsigned int, void *); ++typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); + +enum { + SWP_USED = 1, @@ -46265,7 +46743,7 @@ index 0000000..bcb9d76 + SWP_CONTINUED = 32, + SWP_BLKDEV = 64, + SWP_ACTIVATED = 128, -+ SWP_FS = 256, ++ SWP_FS_OPS = 256, + SWP_AREA_DISCARD = 512, + SWP_PAGE_DISCARD = 1024, + SWP_STABLE_WRITES = 2048, @@ -46274,26 +46752,40 @@ index 0000000..bcb9d76 + SWP_SCANNING = 16384, +}; + -+struct cgp_args { -+ struct page *base_page; -+ long unsigned int addr; -+}; -+ +struct copy_subpage_arg { + struct page *dst; + struct page *src; + struct vm_area_struct *vma; +}; + -+struct mm_walk { ++struct mm_walk; ++ ++struct mm_walk_ops { ++ int (*pgd_entry)(pgd_t *, long unsigned int, long unsigned int, struct mm_walk *); ++ int (*p4d_entry)(p4d_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pud_entry)(pud_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pmd_entry)(pmd_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pte_entry)(pte_t *, long unsigned int, long unsigned int, struct mm_walk *); -+ int (*pte_hole)(long unsigned int, long unsigned int, struct mm_walk *); ++ int (*pte_hole)(long unsigned int, long unsigned int, int, struct mm_walk *); + int (*hugetlb_entry)(pte_t *, long unsigned int, long unsigned int, long unsigned int, struct mm_walk *); + int (*test_walk)(long unsigned int, long unsigned int, struct mm_walk *); ++ int (*pre_vma)(long unsigned int, long unsigned int, struct mm_walk *); ++ void (*post_vma)(struct mm_walk *); ++}; ++ ++enum page_walk_action { ++ ACTION_SUBTREE = 0, ++ ACTION_CONTINUE = 1, ++ ACTION_AGAIN = 2, ++}; ++ ++struct mm_walk { ++ const struct mm_walk_ops *ops; + struct mm_struct *mm; ++ pgd_t *pgd; + struct vm_area_struct *vma; ++ enum page_walk_action action; ++ bool no_vma; + void *private; +}; + @@ -46302,7 +46794,29 @@ index 0000000..bcb9d76 + HUGETLB_ANONHUGE_INODE = 2, +}; + -+struct attribute_group___3; ++struct trace_event_raw_vm_unmapped_area { ++ struct trace_entry ent; ++ long unsigned int addr; ++ long unsigned int total_vm; ++ long unsigned int flags; ++ long unsigned int length; ++ long unsigned int low_limit; ++ long unsigned int high_limit; ++ long unsigned int align_mask; ++ long unsigned int align_offset; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_vm_unmapped_area {}; ++ ++typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); ++ ++enum pgt_entry { ++ NORMAL_PMD = 0, ++ HPAGE_PMD = 1, ++ NORMAL_PUD = 2, ++ HPAGE_PUD = 3, ++}; + +struct rmap_walk_control { + void *arg; @@ -46322,12 +46836,12 @@ index 0000000..bcb9d76 +struct vmap_area { + long unsigned int va_start; + long unsigned int va_end; -+ long unsigned int subtree_max_size; -+ long unsigned int flags; + struct rb_node rb_node; + struct list_head list; -+ struct llist_node purge_list; -+ struct vm_struct___2 *vm; ++ union { ++ long unsigned int subtree_max_size; ++ struct vm_struct *vm; ++ }; +}; + +struct vfree_deferred { @@ -46360,6 +46874,53 @@ index 0000000..bcb9d76 + struct list_head purge; +}; + ++struct vmap_pfn_data { ++ long unsigned int *pfns; ++ pgprot_t prot; ++ unsigned int idx; ++}; ++ ++enum node_type { ++ NODE_TYPE_DRAM = 0, ++ NODE_TYPE_PMEM = 1, ++}; ++ ++struct page_frag_cache { ++ void *va; ++ __u16 offset; ++ __u16 size; ++ unsigned int pagecnt_bias; ++ bool pfmemalloc; ++}; ++ ++enum zone_flags { ++ ZONE_BOOSTED_WATERMARK = 0, ++}; ++ ++struct mminit_pfnnid_cache { ++ long unsigned int last_start; ++ long unsigned int last_end; ++ int last_nid; ++}; ++ ++struct migration_target_control { ++ int nid; ++ nodemask_t *nmask; ++ gfp_t gfp_mask; ++}; ++ ++typedef int fpi_t; ++ ++struct pcpu_drain { ++ struct zone *zone; ++ struct work_struct work; ++}; ++ ++struct madvise_walk_private { ++ struct mmu_gather *tlb; ++ bool pageout; ++}; ++ +struct vma_swap_readahead { + short unsigned int win; + short unsigned int offset; @@ -46384,6 +46945,13 @@ index 0000000..bcb9d76 + } info; +}; + ++struct swap_extent { ++ struct rb_node rb_node; ++ long unsigned int start_page; ++ long unsigned int nr_pages; ++ sector_t start_block; ++}; ++ +struct swap_slots_cache { + bool lock_initialized; + struct mutex alloc_lock; @@ -46404,8 +46972,9 @@ index 0000000..bcb9d76 + struct frontswap_ops *next; +}; + -+struct crypto_comp { -+ struct crypto_tfm base; ++struct crypto_wait { ++ struct completion completion; ++ int err; +}; + +struct zpool; @@ -46421,12 +46990,39 @@ index 0000000..bcb9d76 + ZPOOL_MM_DEFAULT = 0, +}; + ++struct acomp_req { ++ struct crypto_async_request base; ++ struct scatterlist *src; ++ struct scatterlist *dst; ++ unsigned int slen; ++ unsigned int dlen; ++ u32 flags; ++ void *__ctx[0]; ++}; ++ ++struct crypto_acomp { ++ int (*compress)(struct acomp_req *); ++ int (*decompress)(struct acomp_req *); ++ void (*dst_free)(struct scatterlist *); ++ unsigned int reqsize; ++ struct crypto_tfm base; ++}; ++ ++struct crypto_acomp_ctx { ++ struct crypto_acomp *acomp; ++ struct acomp_req *req; ++ struct crypto_wait wait; ++ u8 *dstmem; ++ struct mutex *mutex; ++}; ++ +struct zswap_pool { + struct zpool *zpool; -+ struct crypto_comp **tfm; ++ struct crypto_acomp_ctx *acomp_ctx; + struct kref kref; + struct list_head list; -+ struct work_struct work; ++ struct work_struct release_work; ++ struct work_struct shrink_work; + struct hlist_node node; + char tfm_name[128]; +}; @@ -46458,13 +47054,11 @@ index 0000000..bcb9d76 + ZSWAP_SWAPCACHE_FAIL = 2, +}; + -+typedef void (*dr_release_t___2)(struct device___2 *, void *); -+ +struct dma_pool { + struct list_head page_list; + spinlock_t lock; + size_t size; -+ struct device___2 *dev; ++ struct device *dev; + size_t allocation; + size_t boundary; + char name[32]; @@ -46479,9 +47073,12 @@ index 0000000..bcb9d76 + unsigned int offset; +}; + -+enum string_size_units { -+ STRING_UNITS_10 = 0, -+ STRING_UNITS_2 = 1, ++enum { ++ SUBPAGE_INDEX_SUBPOOL = 1, ++ SUBPAGE_INDEX_CGROUP = 2, ++ SUBPAGE_INDEX_CGROUP_RSVD = 3, ++ __MAX_CGROUP_SUBPAGE_INDEX = 3, ++ __NR_USED_SUBPAGE = 4, +}; + +struct resv_map { @@ -46491,6 +47088,33 @@ index 0000000..bcb9d76 + long int adds_in_progress; + struct list_head region_cache; + long int region_cache_count; ++ struct page_counter *reservation_counter; ++ long unsigned int pages_per_hpage; ++ struct cgroup_subsys_state *css; ++}; ++ ++struct file_region { ++ struct list_head link; ++ long int from; ++ long int to; ++ struct page_counter *reservation_counter; ++ struct cgroup_subsys_state *css; ++}; ++ ++struct hugetlbfs_inode_info { ++ struct shared_policy policy; ++ struct inode vfs_inode; ++ unsigned int seals; ++ struct dhugetlb_pool *hpool; ++}; ++ ++enum hugetlb_page_flags { ++ HPG_restore_reserve = 0, ++ HPG_migratable = 1, ++ HPG_temporary = 2, ++ HPG_freed = 3, ++ HPG_vmemmap_optimized = 4, ++ __NR_HPAGEFLAGS = 5, +}; + +struct huge_bootmem_page { @@ -46498,10 +47122,19 @@ index 0000000..bcb9d76 + struct hstate *hstate; +}; + -+struct file_region { -+ struct list_head link; -+ long int from; -+ long int to; ++struct hugetlb_cgroup { ++ struct cgroup_subsys_state css; ++ struct page_counter hugepage[2]; ++ struct page_counter rsvd_hugepage[2]; ++ atomic_long_t events[2]; ++ atomic_long_t events_local[2]; ++ struct cgroup_file events_file[2]; ++ struct cgroup_file events_local_file[2]; ++}; ++ ++enum string_size_units { ++ STRING_UNITS_10 = 0, ++ STRING_UNITS_2 = 1, +}; + +enum vma_resv_mode { @@ -46516,7 +47149,55 @@ index 0000000..bcb9d76 + struct kobject *hstate_kobjs[2]; +}; + -+struct hugetlb_cgroup; ++struct split_hugepage { ++ struct list_head head_pages; ++ long unsigned int start_pfn; ++}; ++ ++struct trace_event_raw_dynamic_hugetlb_split_merge { ++ struct trace_entry ent; ++ const void *hpool; ++ long unsigned int pfn; ++ long unsigned int action; ++ long unsigned int size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_dynamic_hugetlb_acct_memory { ++ struct trace_entry ent; ++ const void *hpool; ++ long unsigned int count; ++ long unsigned int action; ++ long unsigned int size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_dynamic_hugetlb_alloc_free { ++ struct trace_entry ent; ++ const void *hpool; ++ long unsigned int pfn; ++ long unsigned int count; ++ long unsigned int action; ++ long unsigned int size; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_dynamic_hugetlb_split_merge {}; ++ ++struct trace_event_data_offsets_dynamic_hugetlb_acct_memory {}; ++ ++struct trace_event_data_offsets_dynamic_hugetlb_alloc_free {}; ++ ++typedef void (*btf_trace_dynamic_hugetlb_split_merge)(void *, const void *, struct page *, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_dynamic_hugetlb_acct_memory)(void *, const void *, long unsigned int, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_dynamic_hugetlb_alloc_free)(void *, const void *, struct page *, long unsigned int, long unsigned int, long unsigned int); ++ ++struct dhugetlb_pagelist { ++ long unsigned int count; ++ struct dhugetlb_pool *hpool[0]; ++}; + +struct nodemask_scratch { + nodemask_t mask1; @@ -46544,29 +47225,44 @@ index 0000000..bcb9d76 + struct vm_area_struct *first; +}; + -+struct mmu_notifier; -+ -+struct mmu_notifier_ops { -+ int flags; -+ void (*release)(struct mmu_notifier *, struct mm_struct___2 *); -+ int (*clear_flush_young)(struct mmu_notifier *, struct mm_struct___2 *, long unsigned int, long unsigned int); -+ int (*clear_young)(struct mmu_notifier *, struct mm_struct___2 *, long unsigned int, long unsigned int); -+ int (*test_young)(struct mmu_notifier *, struct mm_struct___2 *, long unsigned int); -+ void (*change_pte)(struct mmu_notifier *, struct mm_struct___2 *, long unsigned int, pte_t); -+ int (*invalidate_range_start)(struct mmu_notifier *, struct mm_struct___2 *, long unsigned int, long unsigned int, bool); -+ void (*invalidate_range_end)(struct mmu_notifier *, struct mm_struct___2 *, long unsigned int, long unsigned int); -+ void (*invalidate_range)(struct mmu_notifier *, struct mm_struct___2 *, long unsigned int, long unsigned int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++struct vmemmap_remap_walk { ++ void (*remap_pte)(pte_t *, long unsigned int, struct vmemmap_remap_walk *); ++ long unsigned int nr_walked; ++ struct page *reuse_page; ++ long unsigned int reuse_addr; ++ struct list_head *vmemmap_pages; +}; + -+struct mmu_notifier { -+ struct hlist_node hlist; -+ const struct mmu_notifier_ops *ops; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; ++struct mmu_notifier_subscriptions { ++ struct hlist_head list; ++ bool has_itree; ++ spinlock_t lock; ++ long unsigned int invalidate_seq; ++ long unsigned int active_invalidate_ranges; ++ struct rb_root_cached itree; ++ wait_queue_head_t wq; ++ struct hlist_head deferred_list; ++}; ++ ++struct interval_tree_node { ++ struct rb_node rb; ++ long unsigned int start; ++ long unsigned int last; ++ long unsigned int __subtree_last; ++}; ++ ++struct mmu_interval_notifier; ++ ++struct mmu_interval_notifier_ops { ++ bool (*invalidate)(struct mmu_interval_notifier *, const struct mmu_notifier_range *, long unsigned int); ++}; ++ ++struct mmu_interval_notifier { ++ struct interval_tree_node interval_tree; ++ const struct mmu_interval_notifier_ops *ops; ++ struct mm_struct *mm; ++ struct hlist_node deferred_item; ++ long unsigned int invalidate_seq; +}; + +struct memory_notify { @@ -46736,25 +47432,22 @@ index 0000000..bcb9d76 +}; + +enum { -+ MMOP_OFFLINE = -1, -+ MMOP_ONLINE_KEEP = 0, -+ MMOP_ONLINE_KERNEL = 1, -+ MMOP_ONLINE_MOVABLE = 2, ++ MMOP_OFFLINE = 0, ++ MMOP_ONLINE = 1, ++ MMOP_ONLINE_KERNEL = 2, ++ MMOP_ONLINE_MOVABLE = 3, +}; + ++typedef int mhp_t; ++ +typedef void (*online_page_callback_t)(struct page *, unsigned int); + +struct memory_block { + long unsigned int start_section_nr; -+ long unsigned int end_section_nr; + long unsigned int state; -+ int section_count; + int online_type; -+ int phys_device; -+ void *hw; -+ int (*phys_callback)(struct memory_block *); -+ struct device dev; + int nid; ++ struct device dev; +}; + +struct buffer_head; @@ -46774,49 +47467,18 @@ index 0000000..bcb9d76 + struct list_head b_assoc_buffers; + struct address_space *b_assoc_map; + atomic_t b_count; ++ spinlock_t b_uptodate_lock; +}; + +typedef struct page *new_page_t(struct page *, long unsigned int); + +typedef void free_page_t(struct page *, long unsigned int); + -+struct migrate_vma_ops { -+ void (*alloc_and_copy)(struct vm_area_struct *, const long unsigned int *, long unsigned int *, long unsigned int, long unsigned int, void *); -+ void (*finalize_and_map)(struct vm_area_struct *, const long unsigned int *, const long unsigned int *, long unsigned int, long unsigned int, void *); ++enum migrate_vma_direction { ++ MIGRATE_VMA_SELECT_SYSTEM = 1, ++ MIGRATE_VMA_SELECT_DEVICE_PRIVATE = 2, +}; + -+enum bh_state_bits { -+ BH_Uptodate = 0, -+ BH_Dirty = 1, -+ BH_Lock = 2, -+ BH_Req = 3, -+ BH_Uptodate_Lock = 4, -+ BH_Mapped = 5, -+ BH_New = 6, -+ BH_Async_Read = 7, -+ BH_Async_Write = 8, -+ BH_Delay = 9, -+ BH_Boundary = 10, -+ BH_Write_EIO = 11, -+ BH_Unwritten = 12, -+ BH_Quiet = 13, -+ BH_Meta = 14, -+ BH_Prio = 15, -+ BH_Defer_Completion = 16, -+ BH_PrivateStart = 17, -+}; -+ -+struct trace_event_raw_mm_migrate_pages { -+ struct trace_entry ent; -+ long unsigned int succeeded; -+ long unsigned int failed; -+ enum migrate_mode mode; -+ int reason; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_mm_migrate_pages {}; -+ +struct migrate_vma { + struct vm_area_struct *vma; + long unsigned int *dst; @@ -46825,39 +47487,74 @@ index 0000000..bcb9d76 + long unsigned int npages; + long unsigned int start; + long unsigned int end; ++ void *pgmap_owner; ++ long unsigned int flags; +}; + -+struct deferred_split { -+ spinlock_t *split_queue_lock; -+ struct list_head *split_queue; -+ long unsigned int *split_queue_len; ++enum bh_state_bits { ++ BH_Uptodate = 0, ++ BH_Dirty = 1, ++ BH_Lock = 2, ++ BH_Req = 3, ++ BH_Mapped = 4, ++ BH_New = 5, ++ BH_Async_Read = 6, ++ BH_Async_Write = 7, ++ BH_Delay = 8, ++ BH_Boundary = 9, ++ BH_Write_EIO = 10, ++ BH_Unwritten = 11, ++ BH_Quiet = 12, ++ BH_Meta = 13, ++ BH_Prio = 14, ++ BH_Defer_Completion = 15, ++ BH_PrivateStart = 16, +}; + ++struct trace_event_raw_mm_migrate_pages { ++ struct trace_entry ent; ++ long unsigned int succeeded; ++ long unsigned int failed; ++ long unsigned int thp_succeeded; ++ long unsigned int thp_failed; ++ long unsigned int thp_split; ++ enum migrate_mode mode; ++ int reason; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_mm_migrate_pages {}; ++ ++typedef void (*btf_trace_mm_migrate_pages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, enum migrate_mode, int); ++ +enum scan_result { + SCAN_FAIL = 0, + SCAN_SUCCEED = 1, + SCAN_PMD_NULL = 2, + SCAN_EXCEED_NONE_PTE = 3, -+ SCAN_PTE_NON_PRESENT = 4, -+ SCAN_PAGE_RO = 5, -+ SCAN_LACK_REFERENCED_PAGE = 6, -+ SCAN_PAGE_NULL = 7, -+ SCAN_SCAN_ABORT = 8, -+ SCAN_PAGE_COUNT = 9, -+ SCAN_PAGE_LRU = 10, -+ SCAN_PAGE_LOCK = 11, -+ SCAN_PAGE_ANON = 12, -+ SCAN_PAGE_COMPOUND = 13, -+ SCAN_ANY_PROCESS = 14, -+ SCAN_VMA_NULL = 15, -+ SCAN_VMA_CHECK = 16, -+ SCAN_ADDRESS_RANGE = 17, -+ SCAN_SWAP_CACHE_PAGE = 18, -+ SCAN_DEL_PAGE_LRU = 19, -+ SCAN_ALLOC_HUGE_PAGE_FAIL = 20, -+ SCAN_CGROUP_CHARGE_FAIL = 21, -+ SCAN_EXCEED_SWAP_PTE = 22, -+ SCAN_TRUNCATED = 23, ++ SCAN_EXCEED_SWAP_PTE = 4, ++ SCAN_EXCEED_SHARED_PTE = 5, ++ SCAN_PTE_NON_PRESENT = 6, ++ SCAN_PTE_UFFD_WP = 7, ++ SCAN_PAGE_RO = 8, ++ SCAN_LACK_REFERENCED_PAGE = 9, ++ SCAN_PAGE_NULL = 10, ++ SCAN_SCAN_ABORT = 11, ++ SCAN_PAGE_COUNT = 12, ++ SCAN_PAGE_LRU = 13, ++ SCAN_PAGE_LOCK = 14, ++ SCAN_PAGE_ANON = 15, ++ SCAN_PAGE_COMPOUND = 16, ++ SCAN_ANY_PROCESS = 17, ++ SCAN_VMA_NULL = 18, ++ SCAN_VMA_CHECK = 19, ++ SCAN_ADDRESS_RANGE = 20, ++ SCAN_SWAP_CACHE_PAGE = 21, ++ SCAN_DEL_PAGE_LRU = 22, ++ SCAN_ALLOC_HUGE_PAGE_FAIL = 23, ++ SCAN_CGROUP_CHARGE_FAIL = 24, ++ SCAN_TRUNCATED = 25, ++ SCAN_PAGE_HAS_PRIVATE = 26, +}; + +struct trace_event_raw_mm_khugepaged_scan_pmd { @@ -46907,10 +47604,20 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_mm_collapse_huge_page_swapin {}; + ++typedef void (*btf_trace_mm_khugepaged_scan_pmd)(void *, struct mm_struct *, struct page *, bool, int, int, int, int); ++ ++typedef void (*btf_trace_mm_collapse_huge_page)(void *, struct mm_struct *, int, int); ++ ++typedef void (*btf_trace_mm_collapse_huge_page_isolate)(void *, struct page *, int, int, bool, int); ++ ++typedef void (*btf_trace_mm_collapse_huge_page_swapin)(void *, struct mm_struct *, int, int, int); ++ +struct mm_slot___2 { + struct hlist_node hash; + struct list_head mm_node; + struct mm_struct *mm; ++ int nr_pte_mapped_thp; ++ long unsigned int pte_mapped_thp[8]; +}; + +struct khugepaged_scan { @@ -46919,6 +47626,11 @@ index 0000000..bcb9d76 + long unsigned int address; +}; + ++struct mem_cgroup_reclaim_cookie { ++ pg_data_t *pgdat; ++ unsigned int generation; ++}; ++ +struct mem_cgroup_tree_per_node { + struct rb_root rb_root; + struct rb_node *rb_rightmost; @@ -46967,6 +47679,12 @@ index 0000000..bcb9d76 + _TCP = 4, +}; + ++struct memory_stat { ++ const char *name; ++ unsigned int ratio; ++ unsigned int idx; ++}; ++ +struct oom_wait_info { + struct mem_cgroup *memcg; + wait_queue_entry_t wait; @@ -46982,16 +47700,12 @@ index 0000000..bcb9d76 +struct memcg_stock_pcp { + struct mem_cgroup *cached; + unsigned int nr_pages; ++ struct obj_cgroup *cached_objcg; ++ unsigned int nr_bytes; + struct work_struct work; + long unsigned int flags; +}; + -+struct memcg_kmem_cache_create_work { -+ struct mem_cgroup *memcg; -+ struct kmem_cache *cachep; -+ struct work_struct work; -+}; -+ +enum { + RES_USAGE = 0, + RES_LIMIT = 1, @@ -47014,12 +47728,9 @@ index 0000000..bcb9d76 + +struct uncharge_gather { + struct mem_cgroup *memcg; ++ long unsigned int nr_memory; + long unsigned int pgpgout; -+ long unsigned int nr_anon; -+ long unsigned int nr_file; + long unsigned int nr_kmem; -+ long unsigned int nr_huge; -+ long unsigned int nr_shmem; + struct page *dummy_page; +}; + @@ -47028,10 +47739,6 @@ index 0000000..bcb9d76 + unsigned int lru_mask; +}; + -+typedef long int pao_T_____6; -+ -+typedef long int pto_T_____28; -+ +enum vmpressure_levels { + VMPRESSURE_LOW = 0, + VMPRESSURE_MEDIUM = 1, @@ -47063,16 +47770,15 @@ index 0000000..bcb9d76 + short unsigned int id; +}; + -+struct hugetlb_cgroup___2 { -+ struct cgroup_subsys_state___2 css; -+ struct page_counter hugepage[2]; -+}; -+ +enum { + RES_USAGE___2 = 0, -+ RES_LIMIT___2 = 1, -+ RES_MAX_USAGE___2 = 2, -+ RES_FAILCNT___2 = 3, ++ RES_RSVD_USAGE = 1, ++ RES_LIMIT___2 = 2, ++ RES_RSVD_LIMIT = 3, ++ RES_MAX_USAGE___2 = 4, ++ RES_RSVD_MAX_USAGE = 5, ++ RES_FAILCNT___2 = 6, ++ RES_RSVD_FAILCNT = 7, +}; + +enum mf_result { @@ -47104,9 +47810,12 @@ index 0000000..bcb9d76 + MF_MSG_BUDDY = 18, + MF_MSG_BUDDY_2ND = 19, + MF_MSG_DAX = 20, -+ MF_MSG_UNKNOWN = 21, ++ MF_MSG_UNSPLIT_THP = 21, ++ MF_MSG_UNKNOWN = 22, +}; + ++typedef long unsigned int dax_entry_t; ++ +struct __kfifo { + unsigned int in; + unsigned int out; @@ -47161,19 +47870,13 @@ index 0000000..bcb9d76 +struct cleancache_ops { + int (*init_fs)(size_t); + int (*init_shared_fs)(uuid_t *, size_t); -+ int (*get_page)(int, struct cleancache_filekey, long unsigned int, struct page___2 *); -+ void (*put_page)(int, struct cleancache_filekey, long unsigned int, struct page___2 *); ++ int (*get_page)(int, struct cleancache_filekey, long unsigned int, struct page *); ++ void (*put_page)(int, struct cleancache_filekey, long unsigned int, struct page *); + void (*invalidate_page)(int, struct cleancache_filekey, long unsigned int); + void (*invalidate_inode)(int, struct cleancache_filekey); + void (*invalidate_fs)(int); +}; + -+struct memory_isolate_notify { -+ long unsigned int start_pfn; -+ unsigned int nr_pages; -+ unsigned int pages_found; -+}; -+ +struct trace_event_raw_test_pages_isolated { + struct trace_entry ent; + long unsigned int start_pfn; @@ -47184,6 +47887,8 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_test_pages_isolated {}; + ++typedef void (*btf_trace_test_pages_isolated)(void *, long unsigned int, long unsigned int, long unsigned int); ++ +struct zpool_driver; + +struct zpool { @@ -47191,19 +47896,22 @@ index 0000000..bcb9d76 + void *pool; + const struct zpool_ops *ops; + bool evictable; ++ bool can_sleep_mapped; + struct list_head list; +}; + +struct zpool_driver { + char *type; -+ struct module___2 *owner; ++ struct module *owner; + atomic_t refcount; + struct list_head list; + void * (*create)(const char *, gfp_t, const struct zpool_ops *, struct zpool *); + void (*destroy)(void *); ++ bool malloc_support_movable; + int (*malloc)(void *, size_t, gfp_t, long unsigned int *); + void (*free)(void *, long unsigned int); + int (*shrink)(void *, unsigned int, unsigned int *); ++ bool sleep_mapped; + void * (*map)(void *, long unsigned int, enum zpool_mapmode); + void (*unmap)(void *, long unsigned int); + u64 (*total_size)(void *); @@ -47246,7 +47954,7 @@ index 0000000..bcb9d76 +}; + +struct zs_pool_stats { -+ long unsigned int pages_compacted; ++ atomic_long_t pages_compacted; +}; + +enum fullness_group { @@ -47296,8 +48004,8 @@ index 0000000..bcb9d76 + atomic_long_t pages_allocated; + struct zs_pool_stats stats; + struct shrinker shrinker; -+ struct dentry___2 *stat_dentry; -+ struct inode___2 *inode; ++ struct dentry *stat_dentry; ++ struct inode *inode; + struct work_struct free_work; + struct wait_queue_head migration_wait; + atomic_long_t isolated_pages; @@ -47313,7 +48021,7 @@ index 0000000..bcb9d76 + }; + unsigned int inuse; + unsigned int freeobj; -+ struct page___2 *first_page; ++ struct page *first_page; + struct list_head list; + rwlock_t lock; +}; @@ -47325,8 +48033,8 @@ index 0000000..bcb9d76 +}; + +struct zs_compact_control { -+ struct page___2 *s_page; -+ struct page___2 *d_page; ++ struct page *s_page; ++ struct page *d_page; + int obj_idx; +}; + @@ -47334,8 +48042,8 @@ index 0000000..bcb9d76 + long unsigned int isolated_pages; + spinlock_t pages_lock; + struct list_head pages; -+ int (*migratepage)(struct balloon_dev_info *, struct page___2 *, struct page___2 *, enum migrate_mode); -+ struct inode___2 *inode; ++ int (*migratepage)(struct balloon_dev_info *, struct page *, struct page *, enum migrate_mode); ++ struct inode *inode; +}; + +struct frame_vector { @@ -47347,99 +48055,157 @@ index 0000000..bcb9d76 +}; + +enum { -+ BAD_STACK = -1, ++ BAD_STACK = 4294967295, + NOT_STACK = 0, + GOOD_FRAME = 1, + GOOD_STACK = 2, +}; + -+struct hmm { -+ struct mm_struct *mm; -+ spinlock_t lock; -+ atomic_t sequence; -+ struct list_head ranges; -+ struct list_head mirrors; -+ struct mmu_notifier mmu_notifier; -+ struct rw_semaphore mirrors_sem; -+}; -+ -+enum hmm_pfn_flag_e { ++enum hmm_pfn_flags { + HMM_PFN_VALID = 0, -+ HMM_PFN_WRITE = 1, -+ HMM_PFN_DEVICE_PRIVATE = 2, -+ HMM_PFN_FLAG_MAX = 3, -+}; -+ -+enum hmm_pfn_value_e { ++ HMM_PFN_WRITE = 0, + HMM_PFN_ERROR = 0, -+ HMM_PFN_NONE = 1, -+ HMM_PFN_SPECIAL = 2, -+ HMM_PFN_VALUE_MAX = 3, ++ HMM_PFN_ORDER_SHIFT = 56, ++ HMM_PFN_REQ_FAULT = 0, ++ HMM_PFN_REQ_WRITE = 0, ++ HMM_PFN_FLAGS = 0, +}; + +struct hmm_range { -+ struct vm_area_struct *vma; -+ struct list_head list; ++ struct mmu_interval_notifier *notifier; ++ long unsigned int notifier_seq; + long unsigned int start; + long unsigned int end; -+ uint64_t *pfns; -+ const uint64_t *flags; -+ const uint64_t *values; -+ uint8_t pfn_shift; -+ bool valid; -+}; -+ -+enum hmm_update_type { -+ HMM_UPDATE_INVALIDATE = 0, -+}; -+ -+struct hmm_mirror; -+ -+struct hmm_mirror_ops { -+ void (*release)(struct hmm_mirror *); -+ void (*sync_cpu_device_pagetables)(struct hmm_mirror *, enum hmm_update_type, long unsigned int, long unsigned int); -+}; -+ -+struct hmm_mirror { -+ struct hmm *hmm; -+ const struct hmm_mirror_ops *ops; -+ struct list_head list; -+}; -+ -+struct hmm_devmem; -+ -+struct hmm_devmem_ops { -+ void (*free)(struct hmm_devmem *, struct page *); -+ int (*fault)(struct hmm_devmem *, struct vm_area_struct *, long unsigned int, const struct page *, unsigned int, pmd_t *); -+}; -+ -+struct hmm_devmem { -+ struct completion completion; -+ long unsigned int pfn_first; -+ long unsigned int pfn_last; -+ struct resource *resource; -+ struct device *device; -+ struct dev_pagemap pagemap; -+ const struct hmm_devmem_ops *ops; -+ struct percpu_ref ref; -+}; -+ -+struct hmm_device { -+ struct device device; -+ unsigned int minor; ++ long unsigned int *hmm_pfns; ++ long unsigned int default_flags; ++ long unsigned int pfn_flags_mask; ++ void *dev_private_owner; +}; + +struct hmm_vma_walk { + struct hmm_range *range; + long unsigned int last; -+ bool fault; -+ bool block; +}; + -+struct hugetlbfs_inode_info { -+ struct shared_policy policy; -+ struct inode___2 vfs_inode; -+ unsigned int seals; ++enum { ++ HMM_NEED_FAULT = 1, ++ HMM_NEED_WRITE_FAULT = 2, ++ HMM_NEED_ALL_BITS = 3, ++}; ++ ++struct wp_walk { ++ struct mmu_notifier_range range; ++ long unsigned int tlbflush_start; ++ long unsigned int tlbflush_end; ++ long unsigned int total; ++}; ++ ++struct clean_walk { ++ struct wp_walk base; ++ long unsigned int bitmap_pgoff; ++ long unsigned int *bitmap; ++ long unsigned int start; ++ long unsigned int end; ++}; ++ ++struct page_reporting_dev_info { ++ int (*report)(struct page_reporting_dev_info *, struct scatterlist *, unsigned int); ++ struct delayed_work work; ++ atomic_t state; ++}; ++ ++enum { ++ PAGE_REPORTING_IDLE = 0, ++ PAGE_REPORTING_REQUESTED = 1, ++ PAGE_REPORTING_ACTIVE = 2, ++}; ++ ++struct mount; ++ ++struct mnt_namespace { ++ atomic_t count; ++ struct ns_common ns; ++ struct mount *root; ++ struct list_head list; ++ spinlock_t ns_lock; ++ struct user_namespace *user_ns; ++ struct ucounts *ucounts; ++ u64 seq; ++ wait_queue_head_t poll; ++ u64 event; ++ unsigned int mounts; ++ unsigned int pending_mounts; ++}; ++ ++struct mnt_pcp; ++ ++struct mountpoint; ++ ++struct mount { ++ struct hlist_node mnt_hash; ++ struct mount *mnt_parent; ++ struct dentry *mnt_mountpoint; ++ struct vfsmount mnt; ++ union { ++ struct callback_head mnt_rcu; ++ struct llist_node mnt_llist; ++ }; ++ struct mnt_pcp *mnt_pcp; ++ struct list_head mnt_mounts; ++ struct list_head mnt_child; ++ struct list_head mnt_instance; ++ const char *mnt_devname; ++ struct list_head mnt_list; ++ struct list_head mnt_expire; ++ struct list_head mnt_share; ++ struct list_head mnt_slave_list; ++ struct list_head mnt_slave; ++ struct mount *mnt_master; ++ struct mnt_namespace *mnt_ns; ++ struct mountpoint *mnt_mp; ++ union { ++ struct hlist_node mnt_mp_list; ++ struct hlist_node mnt_umount; ++ }; ++ struct list_head mnt_umounting; ++ struct fsnotify_mark_connector *mnt_fsnotify_marks; ++ __u32 mnt_fsnotify_mask; ++ int mnt_id; ++ int mnt_group_id; ++ int mnt_expiry_mark; ++ struct hlist_head mnt_pins; ++ struct hlist_head mnt_stuck_children; ++}; ++ ++struct mnt_pcp { ++ int mnt_count; ++ int mnt_writers; ++}; ++ ++struct mountpoint { ++ struct hlist_node m_hash; ++ struct dentry *m_dentry; ++ struct hlist_head m_list; ++ int m_count; ++}; ++ ++struct print_files_control { ++ struct mem_cgroup *memcg; ++ struct seq_file *m; ++ long unsigned int size_threshold; ++ long unsigned int max_print_files; ++ char *pathbuf; ++ long unsigned int pathbuf_size; ++ const char *fs_type_name; ++ struct vfsmount *vfsmnt; ++ long unsigned int total_print_files; ++ long unsigned int total_files_size; ++}; ++ ++struct open_how { ++ __u64 flags; ++ __u64 mode; ++ __u64 resolve; +}; + +typedef s32 compat_off_t; @@ -47456,42 +48222,30 @@ index 0000000..bcb9d76 + +typedef __kernel_off_t off_t; + -+struct file_dedupe_range_info { -+ __s64 dest_fd; -+ __u64 dest_offset; -+ __u64 bytes_deduped; -+ __s32 status; -+ __u32 reserved; -+}; -+ -+struct file_dedupe_range { -+ __u64 src_offset; -+ __u64 src_length; -+ __u16 dest_count; -+ __u16 reserved1; -+ __u32 reserved2; -+ struct file_dedupe_range_info info[0]; -+}; -+ -+typedef int __kernel_rwf_t; -+ +typedef __kernel_rwf_t rwf_t; + +struct fs_file_read_ctx { + const unsigned char *name; -+ unsigned int f_mode; ++ unsigned int f_ctl_mode; + unsigned int rsvd; -+ unsigned int clr_f_mode; -+ unsigned int set_f_mode; ++ unsigned int clr_f_ctl_mode; ++ unsigned int set_f_ctl_mode; + long unsigned int key; + long long int i_size; + long long int prev_index; + long long int index; +}; + -+typedef s32 compat_ssize_t; ++typedef void (*btf_trace_fs_file_read)(void *, struct fs_file_read_ctx *, int); + -+typedef int filler_t___2(void *, struct page___2 *); ++typedef void (*btf_trace_fs_file_release)(void *, struct inode *, struct file *); ++ ++enum vfs_get_super_keying { ++ vfs_get_single_super = 0, ++ vfs_get_single_reconf_super = 1, ++ vfs_get_keyed_super = 2, ++ vfs_get_independent_super = 3, ++}; + +struct kobj_map; + @@ -47566,17 +48320,19 @@ index 0000000..bcb9d76 + __u32 stx_rdev_minor; + __u32 stx_dev_major; + __u32 stx_dev_minor; -+ __u64 __spare2[14]; ++ __u64 stx_mnt_id; ++ __u64 __spare2; ++ __u64 __spare3[12]; +}; + ++typedef u32 compat_ino_t; ++ +typedef u16 __compat_uid_t; + +typedef u16 __compat_gid_t; + +typedef u16 compat_mode_t; + -+typedef u32 compat_ino_t; -+ +typedef u16 compat_dev_t; + +typedef u16 compat_nlink_t; @@ -47623,26 +48379,35 @@ index 0000000..bcb9d76 + I_MUTEX_PARENT2 = 5, +}; + ++struct pseudo_fs_context { ++ const struct super_operations *ops; ++ const struct xattr_handler **xattr; ++ const struct dentry_operations *dops; ++ long unsigned int magic; ++}; ++ +struct name_snapshot { -+ const unsigned char *name; ++ struct qstr name; + unsigned char inline_name[32]; +}; + +struct saved { -+ struct path___2 link; ++ struct path link; + struct delayed_call done; + const char *name; + unsigned int seq; +}; + +struct nameidata { -+ struct path___2 path; ++ struct path path; + struct qstr last; -+ struct path___2 root; -+ struct inode___2 *inode; ++ struct path root; ++ struct inode *inode; + unsigned int flags; ++ unsigned int state; + unsigned int seq; + unsigned int m_seq; ++ unsigned int r_seq; + int last_type; + unsigned int depth; + int total_link_count; @@ -47650,9 +48415,10 @@ index 0000000..bcb9d76 + struct saved internal[2]; + struct filename *name; + struct nameidata *saved; -+ struct inode___2 *link_inode; + unsigned int root_seq; + int dfd; ++ kuid_t dir_uid; ++ umode_t dir_mode; +}; + +enum { @@ -47660,78 +48426,12 @@ index 0000000..bcb9d76 + LAST_ROOT = 1, + LAST_DOT = 2, + LAST_DOTDOT = 3, -+ LAST_BIND = 4, -+}; -+ -+struct mount; -+ -+struct mnt_namespace { -+ atomic_t count; -+ struct ns_common___2 ns; -+ struct mount *root; -+ struct list_head list; -+ struct user_namespace___2 *user_ns; -+ struct ucounts___2 *ucounts; -+ u64 seq; -+ wait_queue_head_t poll; -+ u64 event; -+ unsigned int mounts; -+ unsigned int pending_mounts; -+}; -+ -+struct mnt_pcp; -+ -+struct mountpoint; -+ -+struct mount { -+ struct hlist_node mnt_hash; -+ struct mount *mnt_parent; -+ struct dentry___2 *mnt_mountpoint; -+ struct vfsmount___2 mnt; -+ union { -+ struct callback_head mnt_rcu; -+ struct llist_node mnt_llist; -+ }; -+ struct mnt_pcp *mnt_pcp; -+ struct list_head mnt_mounts; -+ struct list_head mnt_child; -+ struct list_head mnt_instance; -+ const char *mnt_devname; -+ struct list_head mnt_list; -+ struct list_head mnt_expire; -+ struct list_head mnt_share; -+ struct list_head mnt_slave_list; -+ struct list_head mnt_slave; -+ struct mount *mnt_master; -+ struct mnt_namespace *mnt_ns; -+ struct mountpoint *mnt_mp; -+ struct hlist_node mnt_mp_list; -+ struct list_head mnt_umounting; -+ struct fsnotify_mark_connector *mnt_fsnotify_marks; -+ __u32 mnt_fsnotify_mask; -+ int mnt_id; -+ int mnt_group_id; -+ int mnt_expiry_mark; -+ struct hlist_head mnt_pins; -+ struct fs_pin mnt_umount; -+ struct dentry___2 *mnt_ex_mountpoint; -+}; -+ -+struct mnt_pcp { -+ int mnt_count; -+ int mnt_writers; -+}; -+ -+struct mountpoint { -+ struct hlist_node m_hash; -+ struct dentry___2 *m_dentry; -+ struct hlist_head m_list; -+ int m_count; +}; + +enum { -+ WALK_FOLLOW = 1, ++ WALK_TRAILING = 1, + WALK_MORE = 2, ++ WALK_NOFOLLOW = 4, +}; + +struct word_at_a_time { @@ -47768,16 +48468,6 @@ index 0000000..bcb9d76 + compat_pid_t l_pid; +} __attribute__((packed)); + -+struct fiemap { -+ __u64 fm_start; -+ __u64 fm_length; -+ __u32 fm_flags; -+ __u32 fm_mapped_extents; -+ __u32 fm_extent_count; -+ __u32 fm_reserved; -+ struct fiemap_extent fm_extents[0]; -+}; -+ +struct file_clone_range { + __s64 src_fd; + __u64 src_offset; @@ -47785,7 +48475,33 @@ index 0000000..bcb9d76 + __u64 dest_offset; +}; + -+typedef int get_block_t(struct inode___2 *, sector_t, struct buffer_head *, int); ++struct file_dedupe_range_info { ++ __s64 dest_fd; ++ __u64 dest_offset; ++ __u64 bytes_deduped; ++ __s32 status; ++ __u32 reserved; ++}; ++ ++struct file_dedupe_range { ++ __u64 src_offset; ++ __u64 src_length; ++ __u16 dest_count; ++ __u16 reserved1; ++ __u32 reserved2; ++ struct file_dedupe_range_info info[0]; ++}; ++ ++typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); ++ ++struct fiemap_extent; ++ ++struct fiemap_extent_info { ++ unsigned int fi_flags; ++ unsigned int fi_extents_mapped; ++ unsigned int fi_extents_max; ++ struct fiemap_extent *fi_extents_start; ++}; + +struct space_resv { + __s16 l_type; @@ -47797,6 +48513,35 @@ index 0000000..bcb9d76 + __s32 l_pad[4]; +}; + ++struct space_resv_32 { ++ __s16 l_type; ++ __s16 l_whence; ++ __s64 l_start; ++ __s64 l_len; ++ __s32 l_sysid; ++ __u32 l_pid; ++ __s32 l_pad[4]; ++} __attribute__((packed)); ++ ++struct fiemap_extent { ++ __u64 fe_logical; ++ __u64 fe_physical; ++ __u64 fe_length; ++ __u64 fe_reserved64[2]; ++ __u32 fe_flags; ++ __u32 fe_reserved[3]; ++}; ++ ++struct fiemap { ++ __u64 fm_start; ++ __u64 fm_length; ++ __u32 fm_flags; ++ __u32 fm_mapped_extents; ++ __u32 fm_extent_count; ++ __u32 fm_reserved; ++ struct fiemap_extent fm_extents[0]; ++}; ++ +struct linux_dirent64 { + u64 d_ino; + s64 d_off; @@ -47828,7 +48573,7 @@ index 0000000..bcb9d76 +struct getdents_callback { + struct dir_context ctx; + struct linux_dirent *current_dir; -+ struct linux_dirent *previous; ++ int prev_reclen; + int count; + int error; +}; @@ -47836,7 +48581,7 @@ index 0000000..bcb9d76 +struct getdents_callback64 { + struct dir_context ctx; + struct linux_dirent64 *current_dir; -+ struct linux_dirent64 *previous; ++ int prev_reclen; + int count; + int error; +}; @@ -47864,7 +48609,7 @@ index 0000000..bcb9d76 +struct compat_getdents_callback { + struct dir_context ctx; + struct compat_linux_dirent *current_dir; -+ struct compat_linux_dirent *previous; ++ int prev_reclen; + int count; + int error; +}; @@ -47916,6 +48661,11 @@ index 0000000..bcb9d76 + long unsigned int *res_ex; +} fd_set_bits; + ++struct sigset_argpack { ++ sigset_t *p; ++ size_t size; ++}; ++ +struct poll_list { + struct poll_list *next; + int len; @@ -47930,6 +48680,11 @@ index 0000000..bcb9d76 + compat_uptr_t tvp; +}; + ++struct compat_sigset_argpack { ++ compat_uptr_t p; ++ compat_size_t size; ++}; ++ +enum dentry_d_lock_class { + DENTRY_D_LOCK_NORMAL = 0, + DENTRY_D_LOCK_NESTED = 1, @@ -47951,14 +48706,26 @@ index 0000000..bcb9d76 +}; + +struct check_mount { -+ struct vfsmount___2 *mnt; ++ struct vfsmount *mnt; + unsigned int mounted; +}; + +struct select_data { -+ struct dentry___2 *start; ++ struct dentry *start; ++ union { ++ long int found; ++ struct dentry *victim; ++ }; + struct list_head dispose; -+ int found; ++}; ++ ++struct fsxattr { ++ __u32 fsx_xflags; ++ __u32 fsx_extsize; ++ __u32 fsx_nextents; ++ __u32 fsx_projid; ++ __u32 fsx_cowextsize; ++ unsigned char fsx_pad[8]; +}; + +enum file_time_flags { @@ -47968,15 +48735,10 @@ index 0000000..bcb9d76 + S_VERSION = 8, +}; + -+struct mnt_namespace_wrapper { -+ struct mnt_namespace ns; -+ spinlock_t ns_lock; -+}; -+ +struct proc_mounts { + struct mnt_namespace *ns; -+ struct path___2 root; -+ int (*show)(struct seq_file___2 *, struct vfsmount___2 *); ++ struct path root; ++ int (*show)(struct seq_file *, struct vfsmount *); + struct mount cursor; +}; + @@ -48001,13 +48763,9 @@ index 0000000..bcb9d76 + struct mutex mutex; +}; + -+struct wb_completion { -+ atomic_t cnt; -+}; -+ +struct wb_writeback_work { + long int nr_pages; -+ struct super_block___2 *sb; ++ struct super_block *sb; + enum writeback_sync_modes sync_mode; + unsigned int tagged_writepages: 1; + unsigned int for_kupdate: 1; @@ -48020,10 +48778,10 @@ index 0000000..bcb9d76 + struct wb_completion *done; +}; + -+struct trace_event_raw_writeback_dirty_page { ++struct trace_event_raw_writeback_page_template { + struct trace_entry ent; + char name[32]; -+ long unsigned int ino; ++ ino_t ino; + long unsigned int index; + char __data[0]; +}; @@ -48031,18 +48789,56 @@ index 0000000..bcb9d76 +struct trace_event_raw_writeback_dirty_inode_template { + struct trace_entry ent; + char name[32]; -+ long unsigned int ino; ++ ino_t ino; + long unsigned int state; + long unsigned int flags; + char __data[0]; +}; + ++struct trace_event_raw_inode_foreign_history { ++ struct trace_entry ent; ++ char name[32]; ++ ino_t ino; ++ ino_t cgroup_ino; ++ unsigned int history; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_inode_switch_wbs { ++ struct trace_entry ent; ++ char name[32]; ++ ino_t ino; ++ ino_t old_cgroup_ino; ++ ino_t new_cgroup_ino; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_track_foreign_dirty { ++ struct trace_entry ent; ++ char name[32]; ++ u64 bdi_id; ++ ino_t ino; ++ unsigned int memcg_id; ++ ino_t cgroup_ino; ++ ino_t page_cgroup_ino; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_flush_foreign { ++ struct trace_entry ent; ++ char name[32]; ++ ino_t cgroup_ino; ++ unsigned int frn_bdi_id; ++ unsigned int frn_memcg_id; ++ char __data[0]; ++}; ++ +struct trace_event_raw_writeback_write_inode_template { + struct trace_entry ent; + char name[32]; -+ long unsigned int ino; ++ ino_t ino; + int sync_mode; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + @@ -48056,7 +48852,7 @@ index 0000000..bcb9d76 + int range_cyclic; + int for_background; + int reason; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + @@ -48069,7 +48865,7 @@ index 0000000..bcb9d76 +struct trace_event_raw_writeback_class { + struct trace_entry ent; + char name[32]; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + @@ -48091,7 +48887,7 @@ index 0000000..bcb9d76 + int range_cyclic; + long int range_start; + long int range_end; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + @@ -48102,7 +48898,7 @@ index 0000000..bcb9d76 + long int age; + int moved; + int reason; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + @@ -48110,7 +48906,6 @@ index 0000000..bcb9d76 + struct trace_entry ent; + long unsigned int nr_dirty; + long unsigned int nr_writeback; -+ long unsigned int nr_unstable; + long unsigned int background_thresh; + long unsigned int dirty_thresh; + long unsigned int dirty_limit; @@ -48128,7 +48923,7 @@ index 0000000..bcb9d76 + long unsigned int dirty_ratelimit; + long unsigned int task_ratelimit; + long unsigned int balanced_dirty_ratelimit; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + @@ -48148,17 +48943,17 @@ index 0000000..bcb9d76 + long int pause; + long unsigned int period; + long int think; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_sb_inodes_requeue { + struct trace_entry ent; + char name[32]; -+ long unsigned int ino; ++ ino_t ino; + long unsigned int state; + long unsigned int dirtied_when; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + @@ -48172,30 +48967,38 @@ index 0000000..bcb9d76 +struct trace_event_raw_writeback_single_inode_template { + struct trace_entry ent; + char name[32]; -+ long unsigned int ino; ++ ino_t ino; + long unsigned int state; + long unsigned int dirtied_when; + long unsigned int writeback_index; + long int nr_to_write; + long unsigned int wrote; -+ unsigned int cgroup_ino; ++ ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_inode_template { + struct trace_entry ent; + dev_t dev; -+ long unsigned int ino; ++ ino_t ino; + long unsigned int state; + __u16 mode; + long unsigned int dirtied_when; + char __data[0]; +}; + -+struct trace_event_data_offsets_writeback_dirty_page {}; ++struct trace_event_data_offsets_writeback_page_template {}; + +struct trace_event_data_offsets_writeback_dirty_inode_template {}; + ++struct trace_event_data_offsets_inode_foreign_history {}; ++ ++struct trace_event_data_offsets_inode_switch_wbs {}; ++ ++struct trace_event_data_offsets_track_foreign_dirty {}; ++ ++struct trace_event_data_offsets_flush_foreign {}; ++ +struct trace_event_data_offsets_writeback_write_inode_template {}; + +struct trace_event_data_offsets_writeback_work_class {}; @@ -48224,8 +49027,76 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_writeback_inode_template {}; + ++typedef void (*btf_trace_writeback_dirty_page)(void *, struct page *, struct address_space *); ++ ++typedef void (*btf_trace_wait_on_page_writeback)(void *, struct page *, struct address_space *); ++ ++typedef void (*btf_trace_writeback_mark_inode_dirty)(void *, struct inode *, int); ++ ++typedef void (*btf_trace_writeback_dirty_inode_start)(void *, struct inode *, int); ++ ++typedef void (*btf_trace_writeback_dirty_inode)(void *, struct inode *, int); ++ ++typedef void (*btf_trace_inode_foreign_history)(void *, struct inode *, struct writeback_control *, unsigned int); ++ ++typedef void (*btf_trace_inode_switch_wbs)(void *, struct inode *, struct bdi_writeback *, struct bdi_writeback *); ++ ++typedef void (*btf_trace_track_foreign_dirty)(void *, struct page *, struct bdi_writeback *); ++ ++typedef void (*btf_trace_flush_foreign)(void *, struct bdi_writeback *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_writeback_write_inode_start)(void *, struct inode *, struct writeback_control *); ++ ++typedef void (*btf_trace_writeback_write_inode)(void *, struct inode *, struct writeback_control *); ++ ++typedef void (*btf_trace_writeback_queue)(void *, struct bdi_writeback *, struct wb_writeback_work *); ++ ++typedef void (*btf_trace_writeback_exec)(void *, struct bdi_writeback *, struct wb_writeback_work *); ++ ++typedef void (*btf_trace_writeback_start)(void *, struct bdi_writeback *, struct wb_writeback_work *); ++ ++typedef void (*btf_trace_writeback_written)(void *, struct bdi_writeback *, struct wb_writeback_work *); ++ ++typedef void (*btf_trace_writeback_wait)(void *, struct bdi_writeback *, struct wb_writeback_work *); ++ ++typedef void (*btf_trace_writeback_pages_written)(void *, long int); ++ ++typedef void (*btf_trace_writeback_wake_background)(void *, struct bdi_writeback *); ++ ++typedef void (*btf_trace_writeback_bdi_register)(void *, struct backing_dev_info *); ++ ++typedef void (*btf_trace_wbc_writepage)(void *, struct writeback_control *, struct backing_dev_info *); ++ ++typedef void (*btf_trace_writeback_queue_io)(void *, struct bdi_writeback *, struct wb_writeback_work *, long unsigned int, int); ++ ++typedef void (*btf_trace_global_dirty_state)(void *, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_bdi_dirty_ratelimit)(void *, struct bdi_writeback *, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_balance_dirty_pages)(void *, struct bdi_writeback *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long int, long unsigned int); ++ ++typedef void (*btf_trace_writeback_sb_inodes_requeue)(void *, struct inode *); ++ ++typedef void (*btf_trace_writeback_congestion_wait)(void *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_writeback_wait_iff_congested)(void *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_writeback_single_inode_start)(void *, struct inode *, struct writeback_control *, long unsigned int); ++ ++typedef void (*btf_trace_writeback_single_inode)(void *, struct inode *, struct writeback_control *, long unsigned int); ++ ++typedef void (*btf_trace_writeback_lazytime)(void *, struct inode *); ++ ++typedef void (*btf_trace_writeback_lazytime_iput)(void *, struct inode *); ++ ++typedef void (*btf_trace_writeback_dirty_inode_enqueue)(void *, struct inode *); ++ ++typedef void (*btf_trace_sb_mark_inode_writeback)(void *, struct inode *); ++ ++typedef void (*btf_trace_sb_clear_inode_writeback)(void *, struct inode *); ++ +struct inode_switch_wbs_context { -+ struct inode___2 *inode; ++ struct inode *inode; + struct bdi_writeback *new_wb; + struct callback_head callback_head; + struct work_struct work; @@ -48237,7 +49108,7 @@ index 0000000..bcb9d76 + unsigned int flags; + union { + void *userptr; -+ struct file___2 *file; ++ struct file *file; + void *data; + } u; + loff_t pos; @@ -48250,14 +49121,14 @@ index 0000000..bcb9d76 + +typedef int splice_direct_actor(struct pipe_inode_info *, struct splice_desc *); + -+struct utimbuf { -+ __kernel_time_t actime; -+ __kernel_time_t modtime; ++struct old_utimbuf32 { ++ old_time32_t actime; ++ old_time32_t modtime; +}; + -+struct compat_utimbuf { -+ compat_time_t actime; -+ compat_time_t modtime; ++struct utimbuf { ++ __kernel_old_time_t actime; ++ __kernel_old_time_t modtime; +}; + +typedef int __kernel_daddr_t; @@ -48340,16 +49211,41 @@ index 0000000..bcb9d76 + __u32 f_spare[4]; +} __attribute__((packed)); + -+typedef struct ns_common___2 *ns_get_path_helper_t(void *); ++typedef struct ns_common *ns_get_path_helper_t(void *); + +struct ns_get_path_task_args { -+ const struct proc_ns_operations___2 *ns_ops; -+ struct task_struct___2 *task; ++ const struct proc_ns_operations *ns_ops; ++ struct task_struct *task; ++}; ++ ++enum legacy_fs_param { ++ LEGACY_FS_UNSET_PARAMS = 0, ++ LEGACY_FS_MONOLITHIC_PARAMS = 1, ++ LEGACY_FS_INDIVIDUAL_PARAMS = 2, ++}; ++ ++struct legacy_fs_context { ++ char *legacy_data; ++ size_t data_size; ++ enum legacy_fs_param param_type; ++}; ++ ++enum fsconfig_command { ++ FSCONFIG_SET_FLAG = 0, ++ FSCONFIG_SET_STRING = 1, ++ FSCONFIG_SET_BINARY = 2, ++ FSCONFIG_SET_PATH = 3, ++ FSCONFIG_SET_PATH_EMPTY = 4, ++ FSCONFIG_SET_FD = 5, ++ FSCONFIG_CMD_CREATE = 6, ++ FSCONFIG_CMD_RECONFIGURE = 7, +}; + +struct dax_device; + -+struct iomap___2 { ++struct iomap_page_ops; ++ ++struct iomap { + u64 addr; + loff_t offset; + u64 length; @@ -48359,7 +49255,17 @@ index 0000000..bcb9d76 + struct dax_device *dax_dev; + void *inline_data; + void *private; -+ void (*page_done)(struct inode___2 *, loff_t, unsigned int, struct page *, struct iomap___2 *); ++ const struct iomap_page_ops *page_ops; ++}; ++ ++struct iomap_page_ops { ++ int (*page_prepare)(struct inode *, loff_t, unsigned int, struct iomap *); ++ void (*page_done)(struct inode *, loff_t, unsigned int, struct page *, struct iomap *); ++}; ++ ++struct decrypt_bh_ctx { ++ struct work_struct work; ++ struct buffer_head *bh; +}; + +struct bh_lru { @@ -48371,25 +49277,11 @@ index 0000000..bcb9d76 + int ratelimit; +}; + -+typedef struct buffer_head *pto_T_____29; -+ +enum { + DISK_EVENT_MEDIA_CHANGE = 1, + DISK_EVENT_EJECT_REQUEST = 2, +}; + -+struct badblocks { -+ struct device *dev; -+ int count; -+ int unacked_exist; -+ int shift; -+ u64 *page; -+ int changed; -+ seqlock_t lock; -+ sector_t sector; -+ sector_t size; -+}; -+ +enum { + BIOSET_NEED_BVECS = 1, + BIOSET_NEED_RESCUER = 2, @@ -48397,7 +49289,7 @@ index 0000000..bcb9d76 + +struct bdev_inode { + struct block_device bdev; -+ struct inode___2 vfs_inode; ++ struct inode vfs_inode; +}; + +struct blkdev_dio { @@ -48421,7 +49313,7 @@ index 0000000..bcb9d76 + +typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); + -+typedef void dio_submit_t(struct bio *, struct inode___2 *, loff_t); ++typedef void dio_submit_t(struct bio *, struct inode *, loff_t); + +enum { + DIO_LOCKING = 1, @@ -48444,7 +49336,7 @@ index 0000000..bcb9d76 + loff_t logical_offset_in_bio; + sector_t final_block_in_bio; + sector_t next_block_for_io; -+ struct page___2 *cur_page; ++ struct page *cur_page; + unsigned int cur_page_offset; + unsigned int cur_page_len; + sector_t cur_page_block; @@ -48462,7 +49354,7 @@ index 0000000..bcb9d76 + int op_flags; + blk_qc_t bio_cookie; + struct gendisk *bio_disk; -+ struct inode___2 *inode; ++ struct inode *inode; + loff_t i_size; + dio_iodone_t *end_io; + void *private; @@ -48474,16 +49366,22 @@ index 0000000..bcb9d76 + int io_error; + long unsigned int refcount; + struct bio *bio_list; -+ struct task_struct___2 *waiter; ++ struct task_struct *waiter; + struct kiocb *iocb; + ssize_t result; + union { -+ struct page___2 *pages[64]; ++ struct page *pages[64]; + struct work_struct complete_work; + }; + long: 64; +}; + ++struct bvec_iter_all { ++ struct bio_vec bv; ++ int idx; ++ unsigned int done; ++}; ++ +struct mpage_readpage_args { + struct bio *bio; + struct page *page; @@ -48504,7 +49402,7 @@ index 0000000..bcb9d76 + +typedef u32 nlink_t; + -+typedef int (*proc_write_t)(struct file___2 *, char *, size_t); ++typedef int (*proc_write_t)(struct file *, char *, size_t); + +struct proc_dir_entry { + atomic_t in_use; @@ -48512,12 +49410,15 @@ index 0000000..bcb9d76 + struct list_head pde_openers; + spinlock_t pde_unload_lock; + struct completion *pde_unload_completion; -+ const struct inode_operations___2 *proc_iops; -+ const struct file_operations___2 *proc_fops; ++ const struct inode_operations *proc_iops; ++ union { ++ const struct proc_ops *proc_ops; ++ const struct file_operations *proc_dir_ops; ++ }; + const struct dentry_operations *proc_dops; + union { + const struct seq_operations *seq_ops; -+ int (*single_show)(struct seq_file___2 *, void *); ++ int (*single_show)(struct seq_file *, void *); + }; + proc_write_t write; + void *data; @@ -48532,13 +49433,15 @@ index 0000000..bcb9d76 + struct rb_node subdir_node; + char *name; + umode_t mode; ++ u8 flags; + u8 namelen; + char inline_name[0]; +}; + +union proc_op { -+ int (*proc_get_link)(struct dentry___2 *, struct path___2 *); -+ int (*proc_show)(struct seq_file___2 *, struct pid_namespace *, struct pid *, struct task_struct___2 *); ++ int (*proc_get_link)(struct dentry *, struct path *); ++ int (*proc_show)(struct seq_file *, struct pid_namespace *, struct pid *, struct task_struct *); ++ const char *lsm; +}; + +struct proc_inode { @@ -48548,12 +49451,12 @@ index 0000000..bcb9d76 + struct proc_dir_entry *pde; + struct ctl_table_header *sysctl; + struct ctl_table *sysctl_entry; -+ struct hlist_node sysctl_inodes; ++ struct hlist_node sibling_inodes; + const struct proc_ns_operations *ns_ops; -+ struct inode___2 vfs_inode; ++ struct inode vfs_inode; +}; + -+struct proc_fs_info { ++struct proc_fs_opts { + int flag; + const char *str; +}; @@ -48573,7 +49476,7 @@ index 0000000..bcb9d76 + struct dnotify_struct *dn_next; + __u32 dn_mask; + int dn_fd; -+ struct file___2 *dn_filp; ++ struct file *dn_filp; + fl_owner_t dn_owner; +}; + @@ -48584,6 +49487,7 @@ index 0000000..bcb9d76 + +struct inotify_event_info { + struct fsnotify_event fse; ++ u32 mask; + int wd; + u32 sync_cookie; + int name_len; @@ -48598,17 +49502,67 @@ index 0000000..bcb9d76 + char name[0]; +}; + -+typedef int (*dev_page_fault_t___3)(struct vm_area_struct___2 *, long unsigned int, const struct page *, unsigned int, pmd_t *); -+ -+struct fanotify_event_info { -+ struct fsnotify_event fse; -+ struct path___2 path; -+ struct pid___2 *tgid; ++enum { ++ FAN_EVENT_INIT = 0, ++ FAN_EVENT_REPORTED = 1, ++ FAN_EVENT_ANSWERED = 2, ++ FAN_EVENT_CANCELED = 3, +}; + -+struct fanotify_perm_event_info { -+ struct fanotify_event_info fae; -+ int response; ++struct fanotify_fh { ++ u8 type; ++ u8 len; ++ u8 flags; ++ u8 pad; ++ unsigned char buf[0]; ++}; ++ ++struct fanotify_info { ++ u8 dir_fh_totlen; ++ u8 file_fh_totlen; ++ u8 name_len; ++ u8 pad; ++ unsigned char buf[0]; ++}; ++ ++enum fanotify_event_type { ++ FANOTIFY_EVENT_TYPE_FID = 0, ++ FANOTIFY_EVENT_TYPE_FID_NAME = 1, ++ FANOTIFY_EVENT_TYPE_PATH = 2, ++ FANOTIFY_EVENT_TYPE_PATH_PERM = 3, ++ FANOTIFY_EVENT_TYPE_OVERFLOW = 4, ++}; ++ ++struct fanotify_event { ++ struct fsnotify_event fse; ++ u32 mask; ++ enum fanotify_event_type type; ++ struct pid *pid; ++}; ++ ++struct fanotify_fid_event { ++ struct fanotify_event fae; ++ __kernel_fsid_t fsid; ++ struct fanotify_fh object_fh; ++ unsigned char _inline_fh_buf[12]; ++}; ++ ++struct fanotify_name_event { ++ struct fanotify_event fae; ++ __kernel_fsid_t fsid; ++ struct fanotify_info info; ++}; ++ ++struct fanotify_path_event { ++ struct fanotify_event fae; ++ struct path path; ++}; ++ ++struct fanotify_perm_event { ++ struct fanotify_event fae; ++ struct path path; ++ short unsigned int response; ++ short unsigned int state; + int fd; +}; + @@ -48622,6 +49576,18 @@ index 0000000..bcb9d76 + __s32 pid; +}; + ++struct fanotify_event_info_header { ++ __u8 info_type; ++ __u8 pad; ++ __u16 len; ++}; ++ ++struct fanotify_event_info_fid { ++ struct fanotify_event_info_header hdr; ++ __kernel_fsid_t fsid; ++ unsigned char handle[0]; ++}; ++ +struct fanotify_response { + __s32 fd; + __u32 response; @@ -48671,6 +49637,7 @@ index 0000000..bcb9d76 + wait_queue_head_t wq; + wait_queue_head_t poll_wait; + struct list_head rdllist; ++ rwlock_t lock; + struct rb_root_cached rbr; + struct epitem *ovflist; + struct wakeup_source *ws; @@ -48745,11 +49712,12 @@ index 0000000..bcb9d76 + bool might_cancel; +}; + -+struct eventfd_ctx___2 { ++struct eventfd_ctx { + struct kref kref; + wait_queue_head_t wqh; + __u64 count; + unsigned int flags; ++ int id; +}; + +struct userfaultfd_ctx { @@ -48757,13 +49725,13 @@ index 0000000..bcb9d76 + wait_queue_head_t fault_wqh; + wait_queue_head_t fd_wqh; + wait_queue_head_t event_wqh; -+ struct seqcount refile_seq; -+ atomic_t refcount; ++ seqcount_spinlock_t refile_seq; ++ refcount_t refcount; + unsigned int flags; + unsigned int features; + bool released; + bool mmap_changing; -+ struct mm_struct___2 *mm; ++ struct mm_struct *mm; +}; + +struct uffd_msg { @@ -48830,6 +49798,11 @@ index 0000000..bcb9d76 + __s64 zeropage; +}; + ++struct uffdio_writeprotect { ++ struct uffdio_range range; ++ __u64 mode; ++}; ++ +struct userfaultfd_fork_ctx { + struct userfaultfd_ctx *orig; + struct userfaultfd_ctx *new; @@ -48898,7 +49871,7 @@ index 0000000..bcb9d76 + __u32 aio_resfd; +}; + -+typedef compat_ulong_t compat_aio_context_t; ++typedef u32 compat_aio_context_t; + +typedef int kiocb_cancel_fn(struct kiocb *); + @@ -48938,6 +49911,8 @@ index 0000000..bcb9d76 + long: 64; + long: 64; + long: 64; ++ long: 64; ++ long: 64; + struct { + atomic_t reqs_available; + long: 32; @@ -48976,7 +49951,7 @@ index 0000000..bcb9d76 + long: 64; + }; + struct page *internal_pages[8]; -+ struct file___2 *aio_ring_file; ++ struct file *aio_ring_file; + unsigned int id; + long: 32; + long: 64; @@ -48997,25 +49972,26 @@ index 0000000..bcb9d76 +}; + +struct fsync_iocb { -+ struct file___2 *file; ++ struct file *file; + struct work_struct work; + bool datasync; + struct cred *creds; +}; + +struct poll_iocb { -+ struct file___2 *file; ++ struct file *file; + struct wait_queue_head *head; + __poll_t events; -+ bool done; + bool cancelled; ++ bool work_scheduled; ++ bool work_need_resched; + struct wait_queue_entry wait; + struct work_struct work; +}; + +struct aio_kiocb { + union { -+ struct file___2 *ki_filp; ++ struct file *ki_filp; + struct kiocb rw; + struct fsync_iocb fsync; + struct poll_iocb poll; @@ -49031,6 +50007,7 @@ index 0000000..bcb9d76 +struct aio_poll_table { + struct poll_table_struct pt; + struct aio_kiocb *iocb; ++ bool queued; + int error; +}; + @@ -49040,10 +50017,15 @@ index 0000000..bcb9d76 +}; + +struct __compat_aio_sigset { -+ compat_sigset_t *sigmask; ++ compat_uptr_t sigmask; + compat_size_t sigsetsize; +}; + ++struct xa_limit { ++ u32 max; ++ u32 min; ++}; ++ +enum { + PERCPU_REF_INIT_ATOMIC = 1, + PERCPU_REF_INIT_DEAD = 2, @@ -49060,6 +50042,8 @@ index 0000000..bcb9d76 + unsigned int msg_flags; +}; + ++typedef s32 compat_ssize_t; ++ +struct compat_msghdr { + compat_uptr_t msg_name; + compat_int_t msg_namelen; @@ -49132,11 +50116,7 @@ index 0000000..bcb9d76 + +struct io_wq_work { + struct io_wq_work_node list; -+ struct files_struct *files; -+ struct mm_struct *mm; -+ const struct cred *creds; -+ struct fs_struct *fs; -+ long unsigned int fsize; ++ struct io_identity *identity; + unsigned int flags; +}; + @@ -49156,13 +50136,6 @@ index 0000000..bcb9d76 + char __data[0]; +}; + -+struct trace_event_raw_io_uring_add_to_prev { -+ struct trace_entry ent; -+ void *req; -+ bool ret; -+ char __data[0]; -+}; -+ +struct trace_event_raw_io_uring_cqring_wait { + struct trace_entry ent; + void *ctx; @@ -49243,8 +50216,6 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_io_uring_link {}; + -+struct trace_event_data_offsets_io_uring_add_to_prev {}; -+ +struct trace_event_data_offsets_io_uring_cqring_wait {}; + +struct trace_event_data_offsets_io_uring_fail_link {}; @@ -49261,6 +50232,34 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_io_uring_task_run {}; + ++typedef void (*btf_trace_io_uring_create)(void *, int, void *, u32, u32, u32); ++ ++typedef void (*btf_trace_io_uring_register)(void *, void *, unsigned int, unsigned int, unsigned int, bool, long int); ++ ++typedef void (*btf_trace_io_uring_file_get)(void *, void *, int); ++ ++typedef void (*btf_trace_io_uring_queue_async_work)(void *, void *, int, void *, struct io_wq_work *, unsigned int); ++ ++typedef void (*btf_trace_io_uring_defer)(void *, void *, void *, long long unsigned int); ++ ++typedef void (*btf_trace_io_uring_link)(void *, void *, void *, void *); ++ ++typedef void (*btf_trace_io_uring_cqring_wait)(void *, void *, int); ++ ++typedef void (*btf_trace_io_uring_fail_link)(void *, void *, void *); ++ ++typedef void (*btf_trace_io_uring_complete)(void *, void *, u64, long int); ++ ++typedef void (*btf_trace_io_uring_submit_sqe)(void *, void *, u8, u64, bool, bool); ++ ++typedef void (*btf_trace_io_uring_poll_arm)(void *, void *, u8, u64, int, int); ++ ++typedef void (*btf_trace_io_uring_poll_wake)(void *, void *, u8, u64, int); ++ ++typedef void (*btf_trace_io_uring_task_add)(void *, void *, u8, u64, int); ++ ++typedef void (*btf_trace_io_uring_task_run)(void *, void *, u8, u64); ++ +struct io_uring_sqe { + __u8 opcode; + __u8 flags; @@ -49398,6 +50397,23 @@ index 0000000..bcb9d76 + struct io_cqring_offsets cq_off; +}; + ++enum { ++ 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_LAST = 13, ++}; ++ +struct io_uring_files_update { + __u32 offset; + __u32 resv; @@ -49419,12 +50435,37 @@ index 0000000..bcb9d76 + struct io_uring_probe_op ops[0]; +}; + ++struct io_uring_restriction { ++ __u16 opcode; ++ union { ++ __u8 register_op; ++ __u8 sqe_op; ++ __u8 sqe_flags; ++ }; ++ __u8 resv; ++ __u32 resv2[3]; ++}; ++ ++enum { ++ 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, ++}; ++ +enum { + IO_WQ_WORK_CANCEL = 1, + IO_WQ_WORK_HASHED = 2, + IO_WQ_WORK_UNBOUND = 4, + IO_WQ_WORK_NO_CANCEL = 8, + IO_WQ_WORK_CONCURRENT = 16, ++ IO_WQ_WORK_FILES = 32, ++ IO_WQ_WORK_FS = 64, ++ IO_WQ_WORK_MM = 128, ++ IO_WQ_WORK_CREDS = 256, ++ IO_WQ_WORK_BLKCG = 512, ++ IO_WQ_WORK_FSIZE = 1024, + IO_WQ_HASH_SHIFT = 24, +}; + @@ -49488,6 +50529,7 @@ index 0000000..bcb9d76 + size_t len; + struct bio_vec *bvec; + unsigned int nr_bvecs; ++ long unsigned int acct_pages; +}; + +struct fixed_file_table { @@ -49519,12 +50561,27 @@ index 0000000..bcb9d76 + +struct io_wq; + ++struct io_restriction { ++ long unsigned int register_op[1]; ++ long unsigned int sqe_op[1]; ++ u8 sqe_flags_allowed; ++ u8 sqe_flags_required; ++ bool registered; ++}; ++ ++struct io_sq_data; ++ +struct io_kiocb; + +struct io_ring_ctx { + struct { + struct percpu_ref refs; + long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; + }; + struct { + unsigned int flags; @@ -49533,40 +50590,51 @@ index 0000000..bcb9d76 + unsigned int cq_overflow_flushed: 1; + unsigned int drain_next: 1; + unsigned int eventfd_async: 1; ++ unsigned int restricted: 1; ++ unsigned int sqo_dead: 1; + u32 *sq_array; + unsigned int cached_sq_head; + unsigned int sq_entries; + unsigned int sq_mask; + unsigned int sq_thread_idle; + unsigned int cached_sq_dropped; -+ atomic_t cached_cq_overflow; ++ unsigned int cached_cq_overflow; + long unsigned int sq_check_overflow; + struct list_head defer_list; + struct list_head timeout_list; + struct list_head cq_overflow_list; -+ wait_queue_head_t inflight_wait; + struct io_uring_sqe *sq_sqes; ++ long: 64; ++ long: 64; ++ long: 64; + }; + struct io_rings *rings; + struct io_wq *io_wq; -+ struct task_struct *sqo_thread; + struct task_struct *sqo_task; + struct mm_struct *mm_account; -+ wait_queue_head_t sqo_wait; ++ struct cgroup_subsys_state *sqo_blkcg_css; ++ struct io_sq_data *sq_data; ++ struct wait_queue_head sqo_sq_wait; ++ struct wait_queue_entry sqo_wait_entry; ++ struct list_head sqd_list; + struct fixed_file_data *file_data; + unsigned int nr_user_files; -+ int ring_fd; -+ struct file *ring_file; + unsigned int nr_user_bufs; + struct io_mapped_ubuf *user_bufs; + struct user_struct *user; + const struct cred *creds; ++ kuid_t loginuid; ++ unsigned int sessionid; + struct completion ref_comp; + struct completion sq_thread_comp; + struct io_kiocb *fallback_req; + struct socket *ring_sock; -+ struct idr io_buffer_idr; -+ struct idr personality_idr; ++ struct xarray io_buffers; ++ struct xarray personalities; ++ u32 pers_next; ++ long: 32; ++ long: 64; ++ long: 64; + long: 64; + struct { + unsigned int cached_cq_tail; @@ -49603,9 +50671,7 @@ index 0000000..bcb9d76 + struct delayed_work file_put_work; + struct llist_head file_put_llist; + struct work_struct exit_work; -+ long: 64; -+ long: 64; -+ long: 64; ++ struct io_restriction restrictions; + long: 64; + long: 64; + long: 64; @@ -49619,6 +50685,16 @@ index 0000000..bcb9d76 + __u16 bid; +}; + ++struct io_sq_data { ++ refcount_t refs; ++ struct mutex lock; ++ struct list_head ctx_list; ++ struct list_head ctx_new_list; ++ struct mutex ctx_lock; ++ struct task_struct *thread; ++ struct wait_queue_head wait; ++}; ++ +struct io_rw { + struct kiocb kiocb; + u64 addr; @@ -49660,13 +50736,16 @@ index 0000000..bcb9d76 + +struct io_timeout { + struct file *file; -+ u64 addr; -+ int flags; + u32 off; + u32 target_seq; + struct list_head list; +}; + ++struct io_timeout_rem { ++ struct file *file; ++ u64 addr; ++}; ++ +struct io_connect { + struct file *file; + struct sockaddr *addr; @@ -49688,11 +50767,9 @@ index 0000000..bcb9d76 +struct io_open { + struct file *file; + int dfd; -+ union { -+ umode_t mode; -+ }; ++ bool ignore_nonblock; + struct filename *filename; -+ int flags; ++ struct open_how how; + long unsigned int nofile; +}; + @@ -49743,7 +50820,7 @@ index 0000000..bcb9d76 +struct io_provide_buf { + struct file *file; + __u64 addr; -+ __s32 len; ++ __u32 len; + __u32 bgid; + __u16 nbufs; + __u16 bid; @@ -49761,11 +50838,9 @@ index 0000000..bcb9d76 +struct io_completion { + struct file *file; + struct list_head list; -+ int cflags; ++ u32 cflags; +}; + -+struct io_async_ctx; -+ +struct async_poll; + +struct io_kiocb { @@ -49777,6 +50852,7 @@ index 0000000..bcb9d76 + struct io_sync sync; + struct io_cancel cancel; + struct io_timeout timeout; ++ struct io_timeout_rem timeout_rem; + struct io_connect connect; + struct io_sr_msg sr_msg; + struct io_open open; @@ -49790,7 +50866,7 @@ index 0000000..bcb9d76 + struct io_statx statx; + struct io_completion compl; + }; -+ struct io_async_ctx *io; ++ void *async_data; + u8 opcode; + u8 iopoll_completed; + u16 buf_index; @@ -49830,18 +50906,10 @@ index 0000000..bcb9d76 + +struct io_async_rw { + struct iovec fast_iov[8]; -+ struct iovec *iov; -+ ssize_t nr_segs; -+ ssize_t size; -+}; -+ -+struct io_async_ctx { -+ union { -+ struct io_async_rw rw; -+ struct io_async_msghdr msg; -+ struct io_async_connect connect; -+ struct io_timeout_data timeout; -+ }; ++ const struct iovec *free_iovec; ++ struct iov_iter iter; ++ size_t bytes_done; ++ struct wait_page_queue wpq; +}; + +enum { @@ -49858,14 +50926,13 @@ index 0000000..bcb9d76 + REQ_F_NOWAIT_BIT = 10, + REQ_F_LINK_TIMEOUT_BIT = 11, + REQ_F_ISREG_BIT = 12, -+ REQ_F_COMP_LOCKED_BIT = 13, -+ REQ_F_NEED_CLEANUP_BIT = 14, -+ REQ_F_POLLED_BIT = 15, -+ REQ_F_BUFFER_SELECTED_BIT = 16, -+ REQ_F_NO_FILE_TABLE_BIT = 17, -+ REQ_F_WORK_INITIALIZED_BIT = 18, -+ REQ_F_TASK_PINNED_BIT = 19, -+ __REQ_F_LAST_BIT = 20, ++ REQ_F_NEED_CLEANUP_BIT = 13, ++ REQ_F_POLLED_BIT = 14, ++ REQ_F_BUFFER_SELECTED_BIT = 15, ++ REQ_F_NO_FILE_TABLE_BIT = 16, ++ REQ_F_WORK_INITIALIZED_BIT = 17, ++ REQ_F_LTIMEOUT_ACTIVE_BIT = 18, ++ __REQ_F_LAST_BIT = 19, +}; + +enum { @@ -49882,13 +50949,12 @@ index 0000000..bcb9d76 + REQ_F_NOWAIT = 1024, + REQ_F_LINK_TIMEOUT = 2048, + REQ_F_ISREG = 4096, -+ REQ_F_COMP_LOCKED = 8192, -+ REQ_F_NEED_CLEANUP = 16384, -+ REQ_F_POLLED = 32768, -+ REQ_F_BUFFER_SELECTED = 65536, -+ REQ_F_NO_FILE_TABLE = 131072, -+ REQ_F_WORK_INITIALIZED = 262144, -+ REQ_F_TASK_PINNED = 524288, ++ REQ_F_NEED_CLEANUP = 8192, ++ REQ_F_POLLED = 16384, ++ REQ_F_BUFFER_SELECTED = 32768, ++ REQ_F_NO_FILE_TABLE = 65536, ++ REQ_F_WORK_INITIALIZED = 131072, ++ REQ_F_LTIMEOUT_ACTIVE = 262144, +}; + +struct async_poll { @@ -49920,19 +50986,17 @@ index 0000000..bcb9d76 +}; + +struct io_op_def { -+ unsigned int async_ctx: 1; -+ unsigned int needs_mm: 1; + unsigned int needs_file: 1; + unsigned int needs_file_no_error: 1; + unsigned int hash_reg_file: 1; + unsigned int unbound_nonreg_file: 1; + unsigned int not_supported: 1; -+ unsigned int file_table: 1; -+ unsigned int needs_fs: 1; + unsigned int pollin: 1; + unsigned int pollout: 1; + unsigned int buffer_select: 1; -+ unsigned int needs_fsize: 1; ++ unsigned int needs_async_data: 1; ++ short unsigned int async_size; ++ unsigned int work_flags; +}; + +enum io_mem_account { @@ -49950,9 +51014,16 @@ index 0000000..bcb9d76 +struct io_poll_table { + struct poll_table_struct pt; + struct io_kiocb *req; ++ int nr_entries; + int error; +}; + ++enum sq_ret { ++ SQT_IDLE = 1, ++ SQT_SPIN = 2, ++ SQT_DID_WORK = 4, ++}; ++ +struct io_wait_queue { + struct wait_queue_entry wq; + struct io_ring_ctx *ctx; @@ -49965,6 +51036,13 @@ index 0000000..bcb9d76 + struct file *file; +}; + ++struct io_task_cancel { ++ struct task_struct *task; ++ struct files_struct *files; ++}; ++ ++struct io_identify; ++ +struct io_wq_work_list { + struct io_wq_work_node *first; + struct io_wq_work_node *last; @@ -49976,9 +51054,8 @@ index 0000000..bcb9d76 + IO_WORKER_F_UP = 1, + IO_WORKER_F_RUNNING = 2, + IO_WORKER_F_FREE = 4, -+ IO_WORKER_F_EXITING = 8, -+ IO_WORKER_F_FIXED = 16, -+ IO_WORKER_F_BOUND = 32, ++ IO_WORKER_F_FIXED = 8, ++ IO_WORKER_F_BOUND = 16, +}; + +enum { @@ -49998,15 +51075,17 @@ index 0000000..bcb9d76 + unsigned int flags; + struct hlist_nulls_node nulls_node; + struct list_head all_list; -+ struct task_struct___2 *task; ++ struct task_struct *task; + struct io_wqe *wqe; + struct io_wq_work *cur_work; + spinlock_t lock; + struct callback_head rcu; -+ struct mm_struct___2 *mm; -+ const struct cred___2 *cur_creds; -+ const struct cred___2 *saved_creds; ++ struct mm_struct *mm; ++ struct cgroup_subsys_state *blkcg_css; ++ const struct cred *cur_creds; ++ const struct cred *saved_creds; + struct files_struct *restore_files; ++ struct nsproxy *restore_nsproxy; + struct fs_struct *restore_fs; +}; + @@ -50016,11 +51095,11 @@ index 0000000..bcb9d76 + atomic_t nr_running; +}; + -+struct io_wq___2; ++struct io_wq; + +struct io_wqe { + struct { -+ spinlock_t lock; ++ raw_spinlock_t lock; + struct io_wq_work_list work_list; + long unsigned int hash_map; + unsigned int flags; @@ -50033,7 +51112,7 @@ index 0000000..bcb9d76 + struct io_wqe_acct acct[2]; + struct hlist_nulls_head free_list; + struct list_head all_list; -+ struct io_wq___2 *wq; ++ struct io_wq *wq; + struct io_wq_work *hash_tail[64]; +}; + @@ -50042,15 +51121,16 @@ index 0000000..bcb9d76 + IO_WQ_ACCT_UNBOUND = 1, +}; + -+struct io_wq___2 { ++struct io_wq { + struct io_wqe **wqes; + long unsigned int state; + free_work_fn *free_work; + io_wq_work_fn *do_work; -+ struct task_struct___2 *manager; -+ struct user_struct___2 *user; ++ struct task_struct *manager; ++ struct user_struct *user; + refcount_t refs; + struct completion done; ++ struct hlist_node cpuhp_node; + refcount_t use_refs; +}; + @@ -50063,12 +51143,12 @@ index 0000000..bcb9d76 +}; + +struct iomap_ops { -+ int (*iomap_begin)(struct inode___2 *, loff_t, loff_t, unsigned int, struct iomap___2 *); -+ int (*iomap_end)(struct inode___2 *, loff_t, loff_t, ssize_t, unsigned int, struct iomap___2 *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap *, struct iomap *); ++ int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct trace_event_raw_dax_pmd_fault_class { @@ -50165,8 +51245,36 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_dax_writeback_one {}; + ++typedef void (*btf_trace_dax_pmd_fault)(void *, struct inode *, struct vm_fault *, long unsigned int, int); ++ ++typedef void (*btf_trace_dax_pmd_fault_done)(void *, struct inode *, struct vm_fault *, long unsigned int, int); ++ ++typedef void (*btf_trace_dax_pmd_load_hole)(void *, struct inode *, struct vm_fault *, struct page *, void *); ++ ++typedef void (*btf_trace_dax_pmd_load_hole_fallback)(void *, struct inode *, struct vm_fault *, struct page *, void *); ++ ++typedef void (*btf_trace_dax_pmd_insert_mapping)(void *, struct inode *, struct vm_fault *, long int, pfn_t, void *); ++ ++typedef void (*btf_trace_dax_pte_fault)(void *, struct inode *, struct vm_fault *, int); ++ ++typedef void (*btf_trace_dax_pte_fault_done)(void *, struct inode *, struct vm_fault *, int); ++ ++typedef void (*btf_trace_dax_load_hole)(void *, struct inode *, struct vm_fault *, int); ++ ++typedef void (*btf_trace_dax_insert_pfn_mkwrite_no_entry)(void *, struct inode *, struct vm_fault *, int); ++ ++typedef void (*btf_trace_dax_insert_pfn_mkwrite)(void *, struct inode *, struct vm_fault *, int); ++ ++typedef void (*btf_trace_dax_insert_mapping)(void *, struct inode *, struct vm_fault *, void *); ++ ++typedef void (*btf_trace_dax_writeback_range)(void *, struct inode *, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_dax_writeback_range_done)(void *, struct inode *, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_dax_writeback_one)(void *, struct inode *, long unsigned int, long unsigned int); ++ +struct exceptional_entry_key { -+ struct address_space *mapping; ++ struct xarray *xa; + long unsigned int entry_start; +}; + @@ -50175,6 +51283,11 @@ index 0000000..bcb9d76 + struct exceptional_entry_key key; +}; + ++enum dax_wake_mode { ++ WAKE_ALL = 0, ++ WAKE_NEXT = 1, ++}; ++ +struct flock64 { + short int l_type; + short int l_whence; @@ -50197,7 +51310,7 @@ index 0000000..bcb9d76 + struct file_lock *fl; + long unsigned int i_ino; + dev_t s_dev; -+ struct file_lock *fl_next; ++ struct file_lock *fl_blocker; + fl_owner_t fl_owner; + unsigned int fl_pid; + unsigned int fl_flags; @@ -50213,7 +51326,7 @@ index 0000000..bcb9d76 + struct file_lock *fl; + long unsigned int i_ino; + dev_t s_dev; -+ struct file_lock *fl_next; ++ struct file_lock *fl_blocker; + fl_owner_t fl_owner; + unsigned int fl_flags; + unsigned char fl_type; @@ -50226,7 +51339,7 @@ index 0000000..bcb9d76 + struct trace_entry ent; + long unsigned int i_ino; + int wcount; -+ int dcount; ++ int rcount; + int icount; + dev_t s_dev; + fl_owner_t fl_owner; @@ -50235,6 +51348,18 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_leases_conflict { ++ struct trace_entry ent; ++ void *lease; ++ void *breaker; ++ unsigned int l_fl_flags; ++ unsigned int b_fl_flags; ++ unsigned char l_fl_type; ++ unsigned char b_fl_type; ++ bool conflict; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_locks_get_lock_context {}; + +struct trace_event_data_offsets_filelock_lock {}; @@ -50243,6 +51368,32 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_generic_add_lease {}; + ++struct trace_event_data_offsets_leases_conflict {}; ++ ++typedef void (*btf_trace_locks_get_lock_context)(void *, struct inode *, int, struct file_lock_context *); ++ ++typedef void (*btf_trace_posix_lock_inode)(void *, struct inode *, struct file_lock *, int); ++ ++typedef void (*btf_trace_fcntl_setlk)(void *, struct inode *, struct file_lock *, int); ++ ++typedef void (*btf_trace_locks_remove_posix)(void *, struct inode *, struct file_lock *, int); ++ ++typedef void (*btf_trace_flock_lock_inode)(void *, struct inode *, struct file_lock *, int); ++ ++typedef void (*btf_trace_break_lease_noblock)(void *, struct inode *, struct file_lock *); ++ ++typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lock *); ++ ++typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lock *); ++ ++typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lock *); ++ ++typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lock *); ++ ++typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lock *); ++ ++typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lock *, struct file_lock *); ++ +struct file_lock_list_struct { + spinlock_t lock; + struct hlist_head hlist; @@ -50253,500 +51404,6 @@ index 0000000..bcb9d76 + loff_t li_pos; +}; + -+struct nfs_string { -+ unsigned int len; -+ const char *data; -+}; -+ -+struct nfs4_mount_data { -+ int version; -+ int flags; -+ int rsize; -+ int wsize; -+ int timeo; -+ int retrans; -+ int acregmin; -+ int acregmax; -+ int acdirmin; -+ int acdirmax; -+ struct nfs_string client_addr; -+ struct nfs_string mnt_path; -+ struct nfs_string hostname; -+ unsigned int host_addrlen; -+ struct sockaddr *host_addr; -+ int proto; -+ int auth_flavourlen; -+ int *auth_flavours; -+}; -+ -+struct compat_nfs_string { -+ compat_uint_t len; -+ compat_uptr_t data; -+}; -+ -+struct compat_nfs4_mount_data_v1 { -+ compat_int_t version; -+ compat_int_t flags; -+ compat_int_t rsize; -+ compat_int_t wsize; -+ compat_int_t timeo; -+ compat_int_t retrans; -+ compat_int_t acregmin; -+ compat_int_t acregmax; -+ compat_int_t acdirmin; -+ compat_int_t acdirmax; -+ struct compat_nfs_string client_addr; -+ struct compat_nfs_string mnt_path; -+ struct compat_nfs_string hostname; -+ compat_uint_t host_addrlen; -+ compat_uptr_t host_addr; -+ compat_int_t proto; -+ compat_int_t auth_flavourlen; -+ compat_uptr_t auth_flavours; -+}; -+ -+typedef u32 compat_caddr_t; -+ -+typedef int br_should_route_hook_t(struct sk_buff *); -+ -+struct ppp_idle { -+ __kernel_time_t xmit_idle; -+ __kernel_time_t recv_idle; -+}; -+ -+struct ppp_option_data { -+ __u8 *ptr; -+ __u32 length; -+ int transmit; -+}; -+ -+struct mtget { -+ long int mt_type; -+ long int mt_resid; -+ long int mt_dsreg; -+ long int mt_gstat; -+ long int mt_erreg; -+ __kernel_daddr_t mt_fileno; -+ __kernel_daddr_t mt_blkno; -+}; -+ -+struct mtpos { -+ long int mt_blkno; -+}; -+ -+enum v4l2_preemphasis { -+ V4L2_PREEMPHASIS_DISABLED = 0, -+ V4L2_PREEMPHASIS_50_uS = 1, -+ V4L2_PREEMPHASIS_75_uS = 2, -+}; -+ -+struct atalk_addr { -+ __be16 s_net; -+ __u8 s_node; -+}; -+ -+struct atalk_netrange { -+ __u8 nr_phase; -+ __be16 nr_firstnet; -+ __be16 nr_lastnet; -+}; -+ -+struct atalk_route { -+ struct net_device *dev; -+ struct atalk_addr target; -+ struct atalk_addr gateway; -+ int flags; -+ struct atalk_route *next; -+}; -+ -+struct atalk_iface { -+ struct net_device *dev; -+ struct atalk_addr address; -+ int status; -+ struct atalk_netrange nets; -+ struct atalk_iface *next; -+}; -+ -+struct datalink_proto; -+ -+struct sg_iovec { -+ void *iov_base; -+ size_t iov_len; -+}; -+ -+typedef struct sg_iovec sg_iovec_t; -+ -+struct sg_io_hdr { -+ int interface_id; -+ int dxfer_direction; -+ unsigned char cmd_len; -+ unsigned char mx_sb_len; -+ short unsigned int iovec_count; -+ unsigned int dxfer_len; -+ void *dxferp; -+ unsigned char *cmdp; -+ void *sbp; -+ unsigned int timeout; -+ unsigned int flags; -+ int pack_id; -+ void *usr_ptr; -+ unsigned char status; -+ unsigned char masked_status; -+ unsigned char msg_status; -+ unsigned char sb_len_wr; -+ short unsigned int host_status; -+ short unsigned int driver_status; -+ int resid; -+ unsigned int duration; -+ unsigned int info; -+}; -+ -+typedef struct sg_io_hdr sg_io_hdr_t; -+ -+struct sg_req_info { -+ char req_state; -+ char orphan; -+ char sg_io_owned; -+ char problem; -+ int pack_id; -+ void *usr_ptr; -+ unsigned int duration; -+ int unused; -+}; -+ -+typedef struct sg_req_info sg_req_info_t; -+ -+struct atm_blli { -+ unsigned char l2_proto; -+ union { -+ struct { -+ unsigned char mode; -+ unsigned char window; -+ } itu; -+ unsigned char user; -+ } l2; -+ unsigned char l3_proto; -+ union { -+ struct { -+ unsigned char mode; -+ unsigned char def_size; -+ unsigned char window; -+ } itu; -+ unsigned char user; -+ struct { -+ unsigned char term_type; -+ unsigned char fw_mpx_cap; -+ unsigned char bw_mpx_cap; -+ } h310; -+ struct { -+ unsigned char ipi; -+ unsigned char snap[5]; -+ } tr9577; -+ } l3; -+}; -+ -+struct atm_bhli { -+ unsigned char hl_type; -+ unsigned char hl_length; -+ unsigned char hl_info[8]; -+}; -+ -+struct atm_sap { -+ struct atm_bhli bhli; -+ struct atm_blli blli[3]; -+}; -+ -+struct atm_trafprm { -+ unsigned char traffic_class; -+ int max_pcr; -+ int pcr; -+ int min_pcr; -+ int max_cdv; -+ int max_sdu; -+ unsigned int icr; -+ unsigned int tbe; -+ unsigned int frtt: 24; -+ unsigned int rif: 4; -+ unsigned int rdf: 4; -+ unsigned int nrm_pres: 1; -+ unsigned int trm_pres: 1; -+ unsigned int adtf_pres: 1; -+ unsigned int cdf_pres: 1; -+ unsigned int nrm: 3; -+ unsigned int trm: 3; -+ unsigned int adtf: 10; -+ unsigned int cdf: 3; -+ unsigned int spare: 9; -+}; -+ -+struct atm_qos { -+ struct atm_trafprm txtp; -+ struct atm_trafprm rxtp; -+ unsigned char aal; -+}; -+ -+struct sockaddr_atmsvc { -+ short unsigned int sas_family; -+ struct { -+ unsigned char prv[20]; -+ char pub[13]; -+ char lij_type; -+ __u32 lij_id; -+ } sas_addr; -+}; -+ -+struct atm_cirange { -+ signed char vpi_bits; -+ signed char vci_bits; -+}; -+ -+struct k_atm_aal_stats { -+ atomic_t tx; -+ atomic_t tx_err; -+ atomic_t rx; -+ atomic_t rx_err; -+ atomic_t rx_drop; -+}; -+ -+struct k_atm_dev_stats { -+ struct k_atm_aal_stats aal0; -+ struct k_atm_aal_stats aal34; -+ struct k_atm_aal_stats aal5; -+}; -+ -+struct atm_dev; -+ -+struct atm_vcc { -+ struct sock sk; -+ long unsigned int flags; -+ short int vpi; -+ int vci; -+ long unsigned int aal_options; -+ long unsigned int atm_options; -+ struct atm_dev *dev; -+ struct atm_qos qos; -+ struct atm_sap sap; -+ void (*release_cb)(struct atm_vcc *); -+ void (*push)(struct atm_vcc *, struct sk_buff *); -+ void (*pop)(struct atm_vcc *, struct sk_buff *); -+ int (*push_oam)(struct atm_vcc *, void *); -+ int (*send)(struct atm_vcc *, struct sk_buff *); -+ void *dev_data; -+ void *proto_data; -+ struct k_atm_aal_stats *stats; -+ struct module___2 *owner; -+ short int itf; -+ struct sockaddr_atmsvc local; -+ struct sockaddr_atmsvc remote; -+ struct atm_vcc *session; -+ void *user_back; -+}; -+ -+struct atmdev_ops; -+ -+struct atmphy_ops; -+ -+struct atm_dev { -+ const struct atmdev_ops *ops; -+ const struct atmphy_ops *phy; -+ const char *type; -+ int number; -+ void *dev_data; -+ void *phy_data; -+ long unsigned int flags; -+ struct list_head local; -+ struct list_head lecs; -+ unsigned char esi[6]; -+ struct atm_cirange ci_range; -+ struct k_atm_dev_stats stats; -+ char signal; -+ int link_rate; -+ refcount_t refcnt; -+ spinlock_t lock; -+ struct proc_dir_entry *proc_entry; -+ char *proc_name; -+ struct device class_dev; -+ struct list_head dev_list; -+}; -+ -+struct atmdev_ops { -+ void (*dev_close)(struct atm_dev *); -+ int (*open)(struct atm_vcc *); -+ void (*close)(struct atm_vcc *); -+ int (*ioctl)(struct atm_dev *, unsigned int, void *); -+ int (*compat_ioctl)(struct atm_dev *, unsigned int, void *); -+ int (*getsockopt)(struct atm_vcc *, int, int, void *, int); -+ int (*setsockopt)(struct atm_vcc *, int, int, void *, unsigned int); -+ int (*send)(struct atm_vcc *, struct sk_buff *); -+ int (*send_oam)(struct atm_vcc *, void *, int); -+ void (*phy_put)(struct atm_dev *, unsigned char, long unsigned int); -+ unsigned char (*phy_get)(struct atm_dev *, long unsigned int); -+ int (*change_qos)(struct atm_vcc *, struct atm_qos *, int); -+ int (*proc_read)(struct atm_dev *, loff_t *, char *); -+ struct module___2 *owner; -+}; -+ -+struct atmphy_ops { -+ int (*start)(struct atm_dev *); -+ int (*ioctl)(struct atm_dev *, unsigned int, void *); -+ void (*interrupt)(struct atm_dev *); -+ int (*stop)(struct atm_dev *); -+}; -+ -+struct atm_tcp_ops { -+ int (*attach)(struct atm_vcc *, int); -+ int (*create_persistent)(int); -+ int (*remove_persistent)(int); -+ struct module___2 *owner; -+}; -+ -+typedef enum { -+ VIDEO_FORMAT_4_3 = 0, -+ VIDEO_FORMAT_16_9 = 1, -+ VIDEO_FORMAT_221_1 = 2, -+} video_format_t; -+ -+typedef struct { -+ int w; -+ int h; -+ video_format_t aspect_ratio; -+} video_size_t; -+ -+struct video_event { -+ __s32 type; -+ long int timestamp; -+ union { -+ video_size_t size; -+ unsigned int frame_rate; -+ unsigned char vsync_field; -+ } u; -+}; -+ -+struct video_still_picture { -+ char *iFrame; -+ __s32 size; -+}; -+ -+struct compat_video_event { -+ int32_t type; -+ compat_time_t timestamp; -+ union { -+ video_size_t size; -+ unsigned int frame_rate; -+ } u; -+}; -+ -+struct compat_video_still_picture { -+ compat_uptr_t iFrame; -+ int32_t size; -+}; -+ -+struct sg_io_hdr32 { -+ compat_int_t interface_id; -+ compat_int_t dxfer_direction; -+ unsigned char cmd_len; -+ unsigned char mx_sb_len; -+ short unsigned int iovec_count; -+ compat_uint_t dxfer_len; -+ compat_uint_t dxferp; -+ compat_uptr_t cmdp; -+ compat_uptr_t sbp; -+ compat_uint_t timeout; -+ compat_uint_t flags; -+ compat_int_t pack_id; -+ compat_uptr_t usr_ptr; -+ unsigned char status; -+ unsigned char masked_status; -+ unsigned char msg_status; -+ unsigned char sb_len_wr; -+ short unsigned int host_status; -+ short unsigned int driver_status; -+ compat_int_t resid; -+ compat_uint_t duration; -+ compat_uint_t info; -+}; -+ -+typedef struct sg_io_hdr32 sg_io_hdr32_t; -+ -+struct sg_iovec32 { -+ compat_uint_t iov_base; -+ compat_uint_t iov_len; -+}; -+ -+typedef struct sg_iovec32 sg_iovec32_t; -+ -+struct compat_sg_req_info { -+ char req_state; -+ char orphan; -+ char sg_io_owned; -+ char problem; -+ int pack_id; -+ compat_uptr_t usr_ptr; -+ unsigned int duration; -+ int unused; -+}; -+ -+struct sock_fprog32 { -+ short unsigned int len; -+ compat_caddr_t filter; -+}; -+ -+struct ppp_option_data32 { -+ compat_caddr_t ptr; -+ u32 length; -+ compat_int_t transmit; -+}; -+ -+struct ppp_idle32 { -+ compat_time_t xmit_idle; -+ compat_time_t recv_idle; -+}; -+ -+struct mtget32 { -+ compat_long_t mt_type; -+ compat_long_t mt_resid; -+ compat_long_t mt_dsreg; -+ compat_long_t mt_gstat; -+ compat_long_t mt_erreg; -+ compat_daddr_t mt_fileno; -+ compat_daddr_t mt_blkno; -+}; -+ -+struct mtpos32 { -+ compat_long_t mt_blkno; -+}; -+ -+struct serial_struct32 { -+ compat_int_t type; -+ compat_int_t line; -+ compat_uint_t port; -+ compat_int_t irq; -+ compat_int_t flags; -+ compat_int_t xmit_fifo_size; -+ compat_int_t custom_divisor; -+ compat_int_t baud_base; -+ short unsigned int close_delay; -+ char io_type; -+ char reserved_char[1]; -+ compat_int_t hub6; -+ short unsigned int closing_wait; -+ short unsigned int closing_wait2; -+ compat_uint_t iomem_base; -+ short unsigned int iomem_reg_shift; -+ unsigned int port_high; -+ compat_int_t reserved[1]; -+}; -+ -+struct space_resv_32 { -+ __s16 l_type; -+ __s16 l_whence; -+ __s64 l_start; -+ __s64 l_len; -+ __s32 l_sysid; -+ __u32 l_pid; -+ __s32 l_pad[4]; -+} __attribute__((packed)); -+ +typedef unsigned int __kernel_uid_t; + +typedef unsigned int __kernel_gid_t; @@ -50767,6 +51424,13 @@ index 0000000..bcb9d76 + char pr_psargs[80]; +}; + ++struct core_vma_metadata { ++ long unsigned int start; ++ long unsigned int end; ++ long unsigned int flags; ++ long unsigned int dump_size; ++}; ++ +struct arch_elf_state {}; + +struct memelfnote { @@ -50776,19 +51440,9 @@ index 0000000..bcb9d76 + void *data; +}; + -+typedef int user_regset_active_fn___2(struct task_struct___2 *, const struct user_regset *); -+ -+typedef int user_regset_get_fn___2(struct task_struct___2 *, const struct user_regset *, unsigned int, unsigned int, void *, void *); -+ -+typedef int user_regset_set_fn___2(struct task_struct___2 *, const struct user_regset *, unsigned int, unsigned int, const void *, const void *); -+ -+typedef int user_regset_writeback_fn___2(struct task_struct___2 *, const struct user_regset *, int); -+ -+typedef unsigned int user_regset_get_size_fn___2(struct task_struct___2 *, const struct user_regset *); -+ +struct elf_thread_core_info { + struct elf_thread_core_info *next; -+ struct task_struct___2 *task; ++ struct task_struct *task; + struct elf_prstatus prstatus; + struct memelfnote notes[0]; +}; @@ -50804,6 +51458,36 @@ index 0000000..bcb9d76 + int thread_notes; +}; + ++struct user_regs_struct { ++ long unsigned int r15; ++ long unsigned int r14; ++ long unsigned int r13; ++ long unsigned int r12; ++ long unsigned int bp; ++ long unsigned int bx; ++ long unsigned int r11; ++ long unsigned int r10; ++ long unsigned int r9; ++ long unsigned int r8; ++ long unsigned int ax; ++ long unsigned int cx; ++ long unsigned int dx; ++ long unsigned int si; ++ long unsigned int di; ++ long unsigned int orig_ax; ++ long unsigned int ip; ++ long unsigned int cs; ++ long unsigned int flags; ++ long unsigned int sp; ++ long unsigned int ss; ++ long unsigned int fs_base; ++ long unsigned int gs_base; ++ long unsigned int ds; ++ long unsigned int es; ++ long unsigned int fs; ++ long unsigned int gs; ++}; ++ +struct elf32_shdr { + Elf32_Word sh_name; + Elf32_Word sh_type; @@ -50834,10 +51518,10 @@ index 0000000..bcb9d76 + compat_pid_t pr_ppid; + compat_pid_t pr_pgrp; + compat_pid_t pr_sid; -+ struct compat_timeval pr_utime; -+ struct compat_timeval pr_stime; -+ struct compat_timeval pr_cutime; -+ struct compat_timeval pr_cstime; ++ struct old_timeval32 pr_utime; ++ struct old_timeval32 pr_stime; ++ struct old_timeval32 pr_cutime; ++ struct old_timeval32 pr_cstime; + compat_elf_gregset_t pr_reg; + compat_int_t pr_fpvalid; +}; @@ -50860,7 +51544,7 @@ index 0000000..bcb9d76 + +struct elf_thread_core_info___2 { + struct elf_thread_core_info___2 *next; -+ struct task_struct___2 *task; ++ struct task_struct *task; + struct compat_elf_prstatus prstatus; + struct memelfnote notes[0]; +}; @@ -50876,8 +51560,6 @@ index 0000000..bcb9d76 + int thread_notes; +}; + -+typedef __u32 __le32; -+ +struct posix_acl_xattr_entry { + __le16 e_tag; + __le16 e_perm; @@ -50899,33 +51581,130 @@ index 0000000..bcb9d76 + struct page_counter open_handles; +}; + -+struct iomap_page { -+ atomic_t read_count; -+ atomic_t write_count; -+ spinlock_t uptodate_lock; -+ long unsigned int uptodate[1]; ++struct trace_event_raw_iomap_readpage_class { ++ struct trace_entry ent; ++ dev_t dev; ++ u64 ino; ++ int nr_pages; ++ char __data[0]; +}; + -+typedef int iomap_dio_end_io_t(struct kiocb *, ssize_t, unsigned int); ++struct trace_event_raw_iomap_range_class { ++ struct trace_entry ent; ++ dev_t dev; ++ u64 ino; ++ loff_t size; ++ long unsigned int offset; ++ unsigned int length; ++ char __data[0]; ++}; + -+typedef loff_t (*iomap_actor_t)(struct inode___2 *, loff_t, loff_t, void *, struct iomap___2 *); ++struct trace_event_raw_iomap_class { ++ struct trace_entry ent; ++ dev_t dev; ++ u64 ino; ++ u64 addr; ++ loff_t offset; ++ u64 length; ++ u16 type; ++ u16 flags; ++ dev_t bdev; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_iomap_apply { ++ struct trace_entry ent; ++ dev_t dev; ++ u64 ino; ++ loff_t pos; ++ loff_t length; ++ unsigned int flags; ++ const void *ops; ++ void *actor; ++ long unsigned int caller; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_iomap_readpage_class {}; ++ ++struct trace_event_data_offsets_iomap_range_class {}; ++ ++struct trace_event_data_offsets_iomap_class {}; ++ ++struct trace_event_data_offsets_iomap_apply {}; ++ ++typedef void (*btf_trace_iomap_readpage)(void *, struct inode *, int); ++ ++typedef void (*btf_trace_iomap_readahead)(void *, struct inode *, int); ++ ++typedef void (*btf_trace_iomap_writepage)(void *, struct inode *, long unsigned int, unsigned int); ++ ++typedef void (*btf_trace_iomap_releasepage)(void *, struct inode *, long unsigned int, unsigned int); ++ ++typedef void (*btf_trace_iomap_invalidatepage)(void *, struct inode *, long unsigned int, unsigned int); ++ ++typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, long unsigned int, unsigned int); ++ ++typedef void (*btf_trace_iomap_apply_dstmap)(void *, struct inode *, struct iomap *); ++ ++typedef void (*btf_trace_iomap_apply_srcmap)(void *, struct inode *, struct iomap *); ++ ++typedef void (*btf_trace_iomap_apply)(void *, struct inode *, loff_t, loff_t, unsigned int, const void *, void *, long unsigned int); ++ ++typedef loff_t (*iomap_actor_t)(struct inode *, loff_t, loff_t, void *, struct iomap *, struct iomap *); ++ ++struct iomap_ioend { ++ struct list_head io_list; ++ u16 io_type; ++ u16 io_flags; ++ struct inode *io_inode; ++ size_t io_size; ++ loff_t io_offset; ++ void *io_private; ++ struct bio *io_bio; ++ struct bio io_inline_bio; ++}; ++ ++struct iomap_writepage_ctx; ++ ++struct iomap_writeback_ops { ++ int (*map_blocks)(struct iomap_writepage_ctx *, struct inode *, loff_t); ++ int (*prepare_ioend)(struct iomap_ioend *, int); ++ void (*discard_page)(struct page *, loff_t); ++}; ++ ++struct iomap_writepage_ctx { ++ struct iomap iomap; ++ struct iomap_ioend *ioend; ++ const struct iomap_writeback_ops *ops; ++}; ++ ++struct iomap_page { ++ atomic_t read_bytes_pending; ++ atomic_t write_bytes_pending; ++ spinlock_t uptodate_lock; ++ long unsigned int uptodate[0]; ++}; + +struct iomap_readpage_ctx { + struct page *cur_page; + bool cur_page_in_bio; -+ bool is_readahead; + struct bio *bio; -+ struct list_head *pages; ++ struct readahead_control *rac; +}; + -+struct fiemap_ctx { -+ struct fiemap_extent_info *fi; -+ struct iomap___2 prev; ++enum { ++ IOMAP_WRITE_F_UNSHARE = 1, ++}; ++ ++struct iomap_dio_ops { ++ int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); ++ blk_qc_t (*submit_io)(struct inode *, struct iomap *, struct bio *, loff_t); +}; + +struct iomap_dio { + struct kiocb *iocb; -+ iomap_dio_end_io_t *end_io; ++ const struct iomap_dio_ops *dops; + loff_t i_size; + loff_t size; + atomic_t ref; @@ -50945,8 +51724,13 @@ index 0000000..bcb9d76 + }; +}; + ++struct fiemap_ctx { ++ struct fiemap_extent_info *fi; ++ struct iomap prev; ++}; ++ +struct iomap_swapfile_info { -+ struct iomap___2 iomap; ++ struct iomap iomap; + struct swap_info_struct *sis; + uint64_t lowest_ppage; + uint64_t highest_ppage; @@ -50963,28 +51747,15 @@ index 0000000..bcb9d76 + QIF_ITIME_B = 5, +}; + -+enum { -+ DQF_ROOT_SQUASH_B = 0, -+ DQF_SYS_FILE_B = 16, -+ DQF_PRIVATE = 17, -+}; -+ +typedef __kernel_uid32_t qid_t; + +enum { + DQF_INFO_DIRTY_B = 17, +}; + -+enum { -+ DQST_LOOKUPS = 0, -+ DQST_DROPS = 1, -+ DQST_READS = 2, -+ DQST_WRITES = 3, -+ DQST_CACHE_HITS = 4, -+ DQST_ALLOC_DQUOTS = 5, -+ DQST_FREE_DQUOTS = 6, -+ DQST_SYNCS = 7, -+ _DQST_DQSTAT_LAST = 8, ++struct dqstats { ++ long unsigned int stat[8]; ++ struct percpu_counter counter[8]; +}; + +enum { @@ -51000,19 +51771,19 @@ index 0000000..bcb9d76 +}; + +struct dquot_warn { -+ struct super_block___2 *w_sb; ++ struct super_block *w_sb; + struct kqid w_dq_id; + short int w_type; +}; + +struct qtree_fmt_operations { -+ void (*mem2disk_dqblk)(void *, struct dquot___2 *); -+ void (*disk2mem_dqblk)(struct dquot___2 *, void *); -+ int (*is_id)(void *, struct dquot___2 *); ++ void (*mem2disk_dqblk)(void *, struct dquot *); ++ void (*disk2mem_dqblk)(struct dquot *, void *); ++ int (*is_id)(void *, struct dquot *); +}; + +struct qtree_mem_dqinfo { -+ struct super_block___2 *dqi_sb; ++ struct super_block *dqi_sb; + int dqi_type; + unsigned int dqi_blocks; + unsigned int dqi_free_blk; @@ -51086,7 +51857,10 @@ index 0000000..bcb9d76 + __s32 d_btimer; + __u16 d_iwarns; + __u16 d_bwarns; -+ __s32 d_padding2; ++ __s8 d_itimer_hi; ++ __s8 d_btimer_hi; ++ __s8 d_rtbtimer_hi; ++ __s8 d_padding2; + __u64 d_rtb_hardlimit; + __u64 d_rtb_softlimit; + __u64 d_rtbcount; @@ -51226,7 +52000,7 @@ index 0000000..bcb9d76 +}; + +struct proc_maps_private { -+ struct inode___2 *inode; ++ struct inode *inode; + struct task_struct *task; + struct mm_struct *mm; + struct vm_area_struct *tail_vma; @@ -51244,10 +52018,14 @@ index 0000000..bcb9d76 + long unsigned int lazyfree; + long unsigned int anonymous_thp; + long unsigned int shmem_thp; ++ long unsigned int file_thp; + long unsigned int swap; + long unsigned int shared_hugetlb; + long unsigned int private_hugetlb; + u64 pss; ++ u64 pss_anon; ++ u64 pss_file; ++ u64 pss_shmem; + u64 pss_locked; + u64 swap_pss; + bool check_shmem_swap; @@ -51293,58 +52071,50 @@ index 0000000..bcb9d76 + struct numa_maps md; +}; + -+enum { -+ HIDEPID_OFF = 0, -+ HIDEPID_NO_ACCESS = 1, -+ HIDEPID_INVISIBLE = 2, -+}; -+ +struct pde_opener { -+ struct file___2 *file; + struct list_head lh; ++ struct file *file; + bool closing; + struct completion *c; +}; + +enum { -+ BIAS = -2147483648, ++ BIAS = 2147483648, +}; + -+enum { -+ Opt_gid = 0, ++struct proc_fs_context { ++ struct pid_namespace *pid_ns; ++ unsigned int mask; ++ enum proc_hidepid hidepid; ++ int gid; ++ enum proc_pidonly pidonly; ++}; ++ ++enum proc_param { ++ Opt_gid___2 = 0, + Opt_hidepid = 1, -+ Opt_err = 2, ++ Opt_subset = 2, +}; + -+struct reciprocal_value { -+ u32 m; -+ u8 sh1; -+ u8 sh2; ++struct genradix_root; ++ ++struct __genradix { ++ struct genradix_root *root; +}; + -+struct flex_array_part; -+ -+struct flex_array { -+ union { -+ struct { -+ int element_size; -+ int total_nr_elements; -+ int elems_per_part; -+ struct reciprocal_value reciprocal_elems; -+ struct flex_array_part *parts[0]; -+ }; -+ char padding[4096]; -+ }; ++struct syscall_info { ++ __u64 sp; ++ struct seccomp_data data; +}; + -+typedef struct dentry___2 *instantiate_t(struct dentry___2 *, struct task_struct *, const void *); ++typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); + +struct pid_entry { + const char *name; + unsigned int len; + umode_t mode; -+ const struct inode_operations___2 *iop; -+ const struct file_operations___2 *fop; ++ const struct inode_operations *iop; ++ const struct file_operations *fop; + union proc_op op; +}; + @@ -51372,17 +52142,22 @@ index 0000000..bcb9d76 + struct task_struct *task; +}; + -+typedef struct dentry___2 *instantiate_t___2(struct dentry___2 *, struct task_struct___2 *, const void *); -+ +struct fd_data { + fmode_t mode; + unsigned int fd; +}; + ++struct sysctl_alias { ++ const char *kernel_param; ++ const char *sysctl_param; ++}; ++ +struct seq_net_private { + struct net *net; +}; + ++struct bpf_iter_aux_info; ++ +struct vmcore { + struct list_head list; + long long unsigned int paddr; @@ -51413,15 +52188,19 @@ index 0000000..bcb9d76 +}; + +struct kernfs_iattrs { -+ struct iattr___2 ia_iattr; -+ void *ia_secdata; -+ u32 ia_secdata_len; ++ kuid_t ia_uid; ++ kgid_t ia_gid; ++ struct timespec64 ia_atime; ++ struct timespec64 ia_mtime; ++ struct timespec64 ia_ctime; + struct simple_xattrs xattrs; ++ atomic_t nr_user_xattrs; ++ atomic_t user_xattr_size; +}; + +struct kernfs_super_info { -+ struct super_block___2 *sb; -+ struct kernfs_root___2 *root; ++ struct super_block *sb; ++ struct kernfs_root *root; + const void *ns; + struct list_head node; +}; @@ -51457,7 +52236,7 @@ index 0000000..bcb9d76 + struct config_item *ci_parent; + struct config_group *ci_group; + const struct config_item_type *ci_type; -+ struct dentry___2 *ci_dentry; ++ struct dentry *ci_dentry; +}; + +struct configfs_subsystem; @@ -51532,12 +52311,12 @@ index 0000000..bcb9d76 + int s_dependent_count; + struct list_head s_sibling; + struct list_head s_children; -+ struct list_head s_links; ++ int s_links; + void *s_element; + int s_type; + umode_t s_mode; -+ struct dentry___2 *s_dentry; -+ struct iattr___2 *s_iattr; ++ struct dentry *s_dentry; ++ struct iattr *s_iattr; + struct configfs_fragment *s_frag; +}; + @@ -51554,18 +52333,13 @@ index 0000000..bcb9d76 + int bin_buffer_size; + int cb_max_size; + struct config_item *item; -+ struct module___2 *owner; ++ struct module *owner; + union { + struct configfs_attribute *attr; + struct configfs_bin_attribute *bin_attr; + }; +}; + -+struct configfs_symlink { -+ struct list_head sl_list; -+ struct config_item *sl_target; -+}; -+ +struct pts_mount_opts { + int setuid; + int setgid; @@ -51578,24 +52352,24 @@ index 0000000..bcb9d76 +}; + +enum { -+ Opt_uid = 0, -+ Opt_gid___2 = 1, -+ Opt_mode = 2, ++ Opt_uid___2 = 0, ++ Opt_gid___3 = 1, ++ Opt_mode___2 = 2, + Opt_ptmxmode = 3, + Opt_newinstance = 4, + Opt_max = 5, -+ Opt_err___2 = 6, ++ Opt_err = 6, +}; + +struct pts_fs_info { + struct ida allocated_ptys; + struct pts_mount_opts mount_opts; -+ struct super_block___2 *sb; -+ struct dentry___2 *ptmx_dentry; ++ struct super_block *sb; ++ struct dentry *ptmx_dentry; +}; + +struct dcookie_struct { -+ struct path___2 path; ++ struct path path; + struct list_head hash_list; +}; + @@ -51611,40 +52385,8 @@ index 0000000..bcb9d76 + struct ramfs_mount_opts mount_opts; +}; + -+enum { -+ Opt_mode___2 = 0, -+ Opt_err___3 = 1, -+}; -+ -+struct hugetlbfs_config { -+ struct hstate *hstate; -+ long int max_hpages; -+ long int nr_inodes; -+ long int min_hpages; -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ -+enum { -+ Opt_size = 0, -+ Opt_nr_inodes = 1, -+ Opt_mode___3 = 2, -+ Opt_uid___2 = 3, -+ Opt_gid___3 = 4, -+ Opt_pagesize = 5, -+ Opt_min_size = 6, -+ Opt_err___4 = 7, -+}; -+ -+struct hf_args { -+ struct file___2 *file; -+ struct task_struct *parent_task; -+ struct mm_struct *mm; -+ struct shared_policy *shared_policy; -+ struct hstate *hstate; -+ struct address_space *mapping; -+ int error; ++enum ramfs_param { ++ Opt_mode___3 = 0, +}; + +enum hugetlbfs_size_type { @@ -51653,6 +52395,30 @@ index 0000000..bcb9d76 + SIZE_PERCENT = 2, +}; + ++struct hugetlbfs_fs_context { ++ struct hstate *hstate; ++ long long unsigned int max_size_opt; ++ long long unsigned int min_size_opt; ++ long int max_hpages; ++ long int nr_inodes; ++ long int min_hpages; ++ enum hugetlbfs_size_type max_val_type; ++ enum hugetlbfs_size_type min_val_type; ++ kuid_t uid; ++ kgid_t gid; ++ umode_t mode; ++}; ++ ++enum hugetlb_param { ++ Opt_gid___4 = 0, ++ Opt_min_size = 1, ++ Opt_mode___4 = 2, ++ Opt_nr_inodes___2 = 3, ++ Opt_pagesize = 4, ++ Opt_size___2 = 5, ++ Opt_uid___3 = 6, ++}; ++ +struct getdents_callback___2 { + struct dir_context ctx; + char *name; @@ -51672,7 +52438,7 @@ index 0000000..bcb9d76 + int (*char2uni)(const unsigned char *, int, wchar_t *); + const unsigned char *charset2lower; + const unsigned char *charset2upper; -+ struct module___2 *owner; ++ struct module *owner; + struct nls_table *next; +}; + @@ -51695,16 +52461,15 @@ index 0000000..bcb9d76 +struct autofs_sb_info; + +struct autofs_info { -+ struct dentry___2 *dentry; -+ struct inode___2 *inode; ++ struct dentry *dentry; ++ struct inode *inode; + int flags; + struct completion expire_complete; + struct list_head active; -+ int active_count; + struct list_head expiring; + struct autofs_sb_info *sbi; + long unsigned int last_used; -+ atomic_t count; ++ int count; + kuid_t uid; + kgid_t gid; + struct callback_head rcu; @@ -51715,16 +52480,16 @@ index 0000000..bcb9d76 +struct autofs_sb_info { + u32 magic; + int pipefd; -+ struct file___2 *pipe; -+ struct pid___2 *oz_pgrp; -+ int catatonic; ++ struct file *pipe; ++ struct pid *oz_pgrp; + int version; + int sub_version; + int min_proto; + int max_proto; ++ unsigned int flags; + long unsigned int exp_timeout; + unsigned int type; -+ struct super_block___2 *sb; ++ struct super_block *sb; + struct mutex wq_mutex; + struct mutex pipe_mutex; + spinlock_t fs_lock; @@ -51751,16 +52516,18 @@ index 0000000..bcb9d76 +}; + +enum { -+ Opt_err___5 = 0, ++ Opt_err___2 = 0, + Opt_fd = 1, -+ Opt_uid___3 = 2, -+ Opt_gid___4 = 3, ++ Opt_uid___4 = 2, ++ Opt_gid___5 = 3, + Opt_pgrp = 4, + Opt_minproto = 5, + Opt_maxproto = 6, + Opt_indirect = 7, + Opt_direct = 8, + Opt_offset = 9, ++ Opt_strictexpire = 10, ++ Opt_ignore = 11, +}; + +enum { @@ -51942,12 +52709,12 @@ index 0000000..bcb9d76 + AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD = 126, +}; + -+typedef int (*ioctl_fn)(struct file___2 *, struct autofs_sb_info *, struct autofs_dev_ioctl *); ++typedef int (*ioctl_fn)(struct file *, struct autofs_sb_info *, struct autofs_dev_ioctl *); + -+typedef struct vfsmount___2 * (*debugfs_automount_t)(struct dentry___2 *, void *); ++typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); + +struct debugfs_fsdata { -+ const struct file_operations___2 *real_fops; ++ const struct file_operations *real_fops; + refcount_t active_users; + struct completion active_users_drained; +}; @@ -51959,10 +52726,10 @@ index 0000000..bcb9d76 +}; + +enum { -+ Opt_uid___4 = 0, -+ Opt_gid___5 = 1, -+ Opt_mode___4 = 2, -+ Opt_err___6 = 3, ++ Opt_uid___5 = 0, ++ Opt_gid___6 = 1, ++ Opt_mode___5 = 2, ++ Opt_err___3 = 3, +}; + +struct debugfs_fs_info { @@ -51978,16 +52745,17 @@ index 0000000..bcb9d76 + const struct debugfs_reg32 *regs; + int nregs; + void *base; ++ struct device *dev; +}; + -+struct array_data { -+ void *array; -+ u32 elements; ++struct debugfs_u32_array { ++ u32 *array; ++ u32 n_elements; +}; + +struct debugfs_devm_entry { -+ int (*read)(struct seq_file___2 *, void *); -+ struct device___2 *dev; ++ int (*read)(struct seq_file *, void *); ++ struct device *dev; +}; + +struct tracefs_dir_ops { @@ -52015,7 +52783,7 @@ index 0000000..bcb9d76 + PSTORE_TYPE_PPC_COMMON = 6, + PSTORE_TYPE_PMSG = 7, + PSTORE_TYPE_PPC_OPAL = 8, -+ PSTORE_TYPE_UNKNOWN = 255, ++ PSTORE_TYPE_MAX = 9, +}; + +struct pstore_info; @@ -52035,13 +52803,14 @@ index 0000000..bcb9d76 +}; + +struct pstore_info { -+ struct module___2 *owner; -+ char *name; -+ struct semaphore buf_lock; ++ struct module *owner; ++ const char *name; ++ spinlock_t buf_lock; + char *buf; + size_t bufsize; + struct mutex read_mutex; + int flags; ++ int max_reason; + void *data; + int (*open)(struct pstore_info *); + int (*close)(struct pstore_info *); @@ -52059,6 +52828,7 @@ index 0000000..bcb9d76 + +struct pstore_private { + struct list_head list; ++ struct dentry *dentry; + struct pstore_record *record; + size_t total_size; +}; @@ -52071,7 +52841,11 @@ index 0000000..bcb9d76 + +enum { + Opt_kmsg_bytes = 0, -+ Opt_err___7 = 1, ++ Opt_err___4 = 1, ++}; ++ ++struct crypto_comp { ++ struct crypto_tfm base; +}; + +struct pstore_zbackend { @@ -52112,10 +52886,10 @@ index 0000000..bcb9d76 + __kernel_ulong_t __unused2; +}; + -+typedef u32 __compat_gid32_t; -+ +typedef s32 compat_key_t; + ++typedef u32 __compat_gid32_t; ++ +struct compat_ipc64_perm { + compat_key_t key; + __compat_uid32_t uid; @@ -52205,9 +52979,9 @@ index 0000000..bcb9d76 + struct ipc_perm msg_perm; + struct msg *msg_first; + struct msg *msg_last; -+ __kernel_time_t msg_stime; -+ __kernel_time_t msg_rtime; -+ __kernel_time_t msg_ctime; ++ __kernel_old_time_t msg_stime; ++ __kernel_old_time_t msg_rtime; ++ __kernel_old_time_t msg_ctime; + long unsigned int msg_lcbytes; + long unsigned int msg_lqbytes; + short unsigned int msg_cbytes; @@ -52219,9 +52993,9 @@ index 0000000..bcb9d76 + +struct msqid64_ds { + struct ipc64_perm msg_perm; -+ __kernel_time_t msg_stime; -+ __kernel_time_t msg_rtime; -+ __kernel_time_t msg_ctime; ++ long int msg_stime; ++ long int msg_rtime; ++ long int msg_ctime; + long unsigned int msg_cbytes; + long unsigned int msg_qnum; + long unsigned int msg_qbytes; @@ -52297,9 +53071,9 @@ index 0000000..bcb9d76 + struct compat_ipc_perm msg_perm; + compat_uptr_t msg_first; + compat_uptr_t msg_last; -+ compat_time_t msg_stime; -+ compat_time_t msg_rtime; -+ compat_time_t msg_ctime; ++ old_time32_t msg_stime; ++ old_time32_t msg_rtime; ++ old_time32_t msg_ctime; + compat_ulong_t msg_lcbytes; + compat_ulong_t msg_lqbytes; + short unsigned int msg_cbytes; @@ -52322,8 +53096,8 @@ index 0000000..bcb9d76 + +struct semid_ds { + struct ipc_perm sem_perm; -+ __kernel_time_t sem_otime; -+ __kernel_time_t sem_ctime; ++ __kernel_old_time_t sem_otime; ++ __kernel_old_time_t sem_ctime; + struct sem *sem_base; + struct sem_queue *sem_pending; + struct sem_queue **sem_pending_last; @@ -52366,9 +53140,9 @@ index 0000000..bcb9d76 + +struct semid64_ds { + struct ipc64_perm sem_perm; -+ __kernel_time_t sem_otime; ++ __kernel_long_t sem_otime; + __kernel_ulong_t __unused1; -+ __kernel_time_t sem_ctime; ++ __kernel_long_t sem_ctime; + __kernel_ulong_t __unused2; + __kernel_ulong_t sem_nsems; + __kernel_ulong_t __unused3; @@ -52433,8 +53207,8 @@ index 0000000..bcb9d76 + +struct compat_semid_ds { + struct compat_ipc_perm sem_perm; -+ compat_time_t sem_otime; -+ compat_time_t sem_ctime; ++ old_time32_t sem_otime; ++ old_time32_t sem_ctime; + compat_uptr_t sem_base; + compat_uptr_t sem_pending; + compat_uptr_t sem_pending_last; @@ -52445,9 +53219,9 @@ index 0000000..bcb9d76 +struct shmid_ds { + struct ipc_perm shm_perm; + int shm_segsz; -+ __kernel_time_t shm_atime; -+ __kernel_time_t shm_dtime; -+ __kernel_time_t shm_ctime; ++ __kernel_old_time_t shm_atime; ++ __kernel_old_time_t shm_dtime; ++ __kernel_old_time_t shm_ctime; + __kernel_ipc_pid_t shm_cpid; + __kernel_ipc_pid_t shm_lpid; + short unsigned int shm_nattch; @@ -52459,9 +53233,9 @@ index 0000000..bcb9d76 +struct shmid64_ds { + struct ipc64_perm shm_perm; + size_t shm_segsz; -+ __kernel_time_t shm_atime; -+ __kernel_time_t shm_dtime; -+ __kernel_time_t shm_ctime; ++ long int shm_atime; ++ long int shm_dtime; ++ long int shm_ctime; + __kernel_pid_t shm_cpid; + __kernel_pid_t shm_lpid; + long unsigned int shm_nattch; @@ -52527,7 +53301,7 @@ index 0000000..bcb9d76 + struct user_struct *mlock_user; + struct task_struct *shm_creator; + struct list_head shm_clist; -+ long: 64; ++ struct ipc_namespace *ns; + long: 64; + long: 64; + long: 64; @@ -52543,9 +53317,9 @@ index 0000000..bcb9d76 +struct compat_shmid_ds { + struct compat_ipc_perm shm_perm; + int shm_segsz; -+ compat_time_t shm_atime; -+ compat_time_t shm_dtime; -+ compat_time_t shm_ctime; ++ old_time32_t shm_atime; ++ old_time32_t shm_dtime; ++ old_time32_t shm_ctime; + compat_ipc_pid_t shm_cpid; + compat_ipc_pid_t shm_lpid; + short unsigned int shm_nattch; @@ -52580,6 +53354,10 @@ index 0000000..bcb9d76 + compat_long_t msgtyp; +}; + ++struct mqueue_fs_context { ++ struct ipc_namespace *ipc_ns; ++}; ++ +struct posix_msg_tree_node { + struct rb_node rb_node; + struct list_head msg_list; @@ -52598,6 +53376,7 @@ index 0000000..bcb9d76 + struct inode vfs_inode; + wait_queue_head_t wait_q; + struct rb_root msg_tree; ++ struct rb_node *msg_tree_rightmost; + struct posix_msg_tree_node *node_cache; + struct mq_attr attr; + struct sigevent notify; @@ -52636,6 +53415,31 @@ index 0000000..bcb9d76 + int qnbytes; +}; + ++enum key_need_perm { ++ KEY_NEED_UNSPECIFIED = 0, ++ KEY_NEED_VIEW = 1, ++ KEY_NEED_READ = 2, ++ KEY_NEED_WRITE = 3, ++ KEY_NEED_SEARCH = 4, ++ KEY_NEED_LINK = 5, ++ KEY_NEED_SETATTR = 6, ++ KEY_NEED_UNLINK = 7, ++ KEY_SYSADMIN_OVERRIDE = 8, ++ KEY_AUTHTOKEN_OVERRIDE = 9, ++ KEY_DEFER_PERM_CHECK = 10, ++}; ++ ++enum key_notification_subtype { ++ NOTIFY_KEY_INSTANTIATED = 0, ++ NOTIFY_KEY_UPDATED = 1, ++ NOTIFY_KEY_LINKED = 2, ++ NOTIFY_KEY_UNLINKED = 3, ++ NOTIFY_KEY_CLEARED = 4, ++ NOTIFY_KEY_REVOKED = 5, ++ NOTIFY_KEY_INVALIDATED = 6, ++ NOTIFY_KEY_SETATTR = 7, ++}; ++ +struct assoc_array_edit; + +struct assoc_array_ops { @@ -52661,7 +53465,7 @@ index 0000000..bcb9d76 + long unsigned int index_key[0]; +}; + -+struct assoc_array_edit___2 { ++struct assoc_array_edit { + struct callback_head rcu; + struct assoc_array *array; + const struct assoc_array_ops *ops; @@ -52721,7 +53525,28 @@ index 0000000..bcb9d76 + __u32 __spare[8]; +}; + ++struct keyctl_pkey_query { ++ __u32 supported_ops; ++ __u32 key_size; ++ __u16 max_data_size; ++ __u16 max_sig_size; ++ __u16 max_enc_size; ++ __u16 max_dec_size; ++ __u32 __spare[10]; ++}; ++ ++struct keyctl_pkey_params { ++ __s32 key_id; ++ __u32 in_len; ++ union { ++ __u32 out_len; ++ __u32 in2_len; ++ }; ++ __u32 __spare[7]; ++}; ++ +struct request_key_auth { ++ struct callback_head rcu; + struct key *target_key; + struct key *dest_keyring; + const struct cred *cred; @@ -52738,23 +53563,10 @@ index 0000000..bcb9d76 + char data[0]; +}; + -+struct big_key_buf { -+ unsigned int nr_pages; -+ void *virt; -+ struct scatterlist *sg; -+ struct page *pages[0]; -+}; -+ +enum { -+ big_key_data = 0, -+ big_key_path = 1, -+ big_key_path_2nd_part = 2, -+ big_key_len = 3, -+}; -+ -+enum big_key_op { -+ BIG_KEY_ENC = 0, -+ BIG_KEY_DEC = 1, ++ Opt_err___5 = 0, ++ Opt_enc = 1, ++ Opt_hash = 2, +}; + +enum hash_algo { @@ -52776,7 +53588,136 @@ index 0000000..bcb9d76 + HASH_ALGO_TGR_160 = 15, + HASH_ALGO_TGR_192 = 16, + HASH_ALGO_SM3_256 = 17, -+ HASH_ALGO__LAST = 18, ++ HASH_ALGO_STREEBOG_256 = 18, ++ HASH_ALGO_STREEBOG_512 = 19, ++ HASH_ALGO__LAST = 20, ++}; ++ ++struct hwrng { ++ const char *name; ++ int (*init)(struct hwrng *); ++ void (*cleanup)(struct hwrng *); ++ int (*data_present)(struct hwrng *, int); ++ int (*data_read)(struct hwrng *, u32 *); ++ int (*read)(struct hwrng *, void *, size_t, bool); ++ long unsigned int priv; ++ short unsigned int quality; ++ struct list_head list; ++ struct kref ref; ++ struct completion cleanup_done; ++}; ++ ++struct tpm_digest { ++ u16 alg_id; ++ u8 digest[64]; ++}; ++ ++struct tpm_bank_info { ++ u16 alg_id; ++ u16 digest_size; ++ u16 crypto_id; ++}; ++ ++struct tpm_chip; ++ ++struct tpm_class_ops { ++ unsigned int flags; ++ const u8 req_complete_mask; ++ const u8 req_complete_val; ++ bool (*req_canceled)(struct tpm_chip *, u8); ++ int (*recv)(struct tpm_chip *, u8 *, size_t); ++ int (*send)(struct tpm_chip *, u8 *, size_t); ++ void (*cancel)(struct tpm_chip *); ++ u8 (*status)(struct tpm_chip *); ++ void (*update_timeouts)(struct tpm_chip *, long unsigned int *); ++ void (*update_durations)(struct tpm_chip *, long unsigned int *); ++ int (*go_idle)(struct tpm_chip *); ++ int (*cmd_ready)(struct tpm_chip *); ++ int (*request_locality)(struct tpm_chip *, int); ++ int (*relinquish_locality)(struct tpm_chip *, int); ++ void (*clk_enable)(struct tpm_chip *, bool); ++}; ++ ++struct tpm_bios_log { ++ void *bios_event_log; ++ void *bios_event_log_end; ++}; ++ ++struct tpm_chip_seqops { ++ struct tpm_chip *chip; ++ const struct seq_operations *seqops; ++}; ++ ++struct tpm_space { ++ u32 context_tbl[3]; ++ u8 *context_buf; ++ u32 session_tbl[3]; ++ u8 *session_buf; ++ u32 buf_size; ++}; ++ ++struct tpm_chip { ++ struct device dev; ++ struct device devs; ++ struct cdev cdev; ++ struct cdev cdevs; ++ struct rw_semaphore ops_sem; ++ const struct tpm_class_ops *ops; ++ struct tpm_bios_log log; ++ struct tpm_chip_seqops bin_log_seqops; ++ struct tpm_chip_seqops ascii_log_seqops; ++ unsigned int flags; ++ int dev_num; ++ long unsigned int is_open; ++ char hwrng_name[64]; ++ struct hwrng hwrng; ++ struct mutex tpm_mutex; ++ long unsigned int timeout_a; ++ long unsigned int timeout_b; ++ long unsigned int timeout_c; ++ long unsigned int timeout_d; ++ bool timeout_adjusted; ++ long unsigned int duration[4]; ++ bool duration_adjusted; ++ struct dentry *bios_dir[3]; ++ const struct attribute_group *groups[3]; ++ unsigned int groups_cnt; ++ u32 nr_allocated_banks; ++ struct tpm_bank_info *allocated_banks; ++ acpi_handle acpi_dev_handle; ++ char ppi_version[4]; ++ struct tpm_space work_space; ++ u32 last_cc; ++ u32 nr_commands; ++ u32 *cc_attrs_tbl; ++ int locality; ++}; ++ ++enum tpm_duration { ++ TPM_SHORT = 0, ++ TPM_MEDIUM = 1, ++ TPM_LONG = 2, ++ TPM_LONG_LONG = 3, ++ TPM_UNDEFINED = 4, ++ TPM_NUM_DURATIONS = 4, ++}; ++ ++struct tpm_header { ++ __be16 tag; ++ __be32 length; ++ union { ++ __be32 ordinal; ++ __be32 return_code; ++ }; ++} __attribute__((packed)); ++ ++enum tpm_buf_flags { ++ TPM_BUF_OVERFLOW = 1, ++}; ++ ++struct tpm_buf { ++ unsigned int flags; ++ u8 *data; +}; + +struct trusted_key_payload { @@ -52792,6 +53733,7 @@ index 0000000..bcb9d76 + uint16_t keytype; + uint32_t keyhandle; + unsigned char keyauth[20]; ++ uint32_t blobauth_len; + unsigned char blobauth[20]; + uint32_t pcrinfo_len; + unsigned char pcrinfo[64]; @@ -52802,11 +53744,6 @@ index 0000000..bcb9d76 + uint32_t policyhandle; +}; + -+struct tpm_buf { -+ int len; -+ unsigned char data[512]; -+}; -+ +struct osapsess { + uint32_t handle; + unsigned char secret[20]; @@ -52832,7 +53769,7 @@ index 0000000..bcb9d76 +}; + +enum { -+ Opt_err___8 = 0, ++ Opt_err___6 = 0, + Opt_new = 1, + Opt_load = 2, + Opt_update = 3, @@ -52842,11 +53779,85 @@ index 0000000..bcb9d76 + Opt_pcrinfo = 7, + Opt_pcrlock = 8, + Opt_migratable = 9, -+ Opt_hash = 10, ++ Opt_hash___2 = 10, + Opt_policydigest = 11, + Opt_policyhandle = 12, +}; + ++enum tpm_algorithms { ++ TPM_ALG_ERROR = 0, ++ TPM_ALG_SHA1 = 4, ++ TPM_ALG_KEYEDHASH = 8, ++ TPM_ALG_SHA256 = 11, ++ TPM_ALG_SHA384 = 12, ++ TPM_ALG_SHA512 = 13, ++ TPM_ALG_NULL = 16, ++ TPM_ALG_SM3_256 = 18, ++}; ++ ++enum tpm2_structures { ++ TPM2_ST_NO_SESSIONS = 32769, ++ TPM2_ST_SESSIONS = 32770, ++}; ++ ++enum tpm2_return_codes { ++ TPM2_RC_SUCCESS = 0, ++ TPM2_RC_HASH = 131, ++ TPM2_RC_HANDLE = 139, ++ TPM2_RC_INITIALIZE = 256, ++ TPM2_RC_FAILURE = 257, ++ TPM2_RC_DISABLED = 288, ++ TPM2_RC_COMMAND_CODE = 323, ++ TPM2_RC_TESTING = 2314, ++ TPM2_RC_REFERENCE_H0 = 2320, ++ TPM2_RC_RETRY = 2338, ++}; ++ ++enum tpm2_command_codes { ++ TPM2_CC_FIRST = 287, ++ TPM2_CC_HIERARCHY_CONTROL = 289, ++ TPM2_CC_HIERARCHY_CHANGE_AUTH = 297, ++ TPM2_CC_CREATE_PRIMARY = 305, ++ TPM2_CC_SEQUENCE_COMPLETE = 318, ++ TPM2_CC_SELF_TEST = 323, ++ TPM2_CC_STARTUP = 324, ++ TPM2_CC_SHUTDOWN = 325, ++ TPM2_CC_NV_READ = 334, ++ TPM2_CC_CREATE = 339, ++ TPM2_CC_LOAD = 343, ++ TPM2_CC_SEQUENCE_UPDATE = 348, ++ TPM2_CC_UNSEAL = 350, ++ TPM2_CC_CONTEXT_LOAD = 353, ++ TPM2_CC_CONTEXT_SAVE = 354, ++ TPM2_CC_FLUSH_CONTEXT = 357, ++ TPM2_CC_VERIFY_SIGNATURE = 375, ++ TPM2_CC_GET_CAPABILITY = 378, ++ TPM2_CC_GET_RANDOM = 379, ++ TPM2_CC_PCR_READ = 382, ++ TPM2_CC_PCR_EXTEND = 386, ++ TPM2_CC_EVENT_SEQUENCE_COMPLETE = 389, ++ TPM2_CC_HASH_SEQUENCE_START = 390, ++ TPM2_CC_CREATE_LOADED = 401, ++ TPM2_CC_LAST = 403, ++}; ++ ++enum tpm2_permanent_handles { ++ TPM2_RS_PW = 1073741833, ++}; ++ ++enum tpm2_object_attributes { ++ TPM2_OA_USER_WITH_AUTH = 64, ++}; ++ ++enum tpm2_session_attributes { ++ TPM2_SA_CONTINUE_SESSION = 1, ++}; ++ ++struct tpm2_hash { ++ unsigned int crypto_id; ++ unsigned int tpm_id; ++}; ++ +struct encrypted_key_payload { + struct callback_head rcu; + char *format; @@ -52902,16 +53913,17 @@ index 0000000..bcb9d76 +}; + +enum { -+ Opt_err___9 = -1, + Opt_new___2 = 0, + Opt_load___2 = 1, + Opt_update___2 = 2, ++ Opt_err___7 = 3, +}; + +enum { -+ Opt_error = -1, + Opt_default = 0, + Opt_ecryptfs = 1, ++ Opt_enc32 = 2, ++ Opt_error = 3, +}; + +enum derived_key_type { @@ -52941,12 +53953,6 @@ index 0000000..bcb9d76 + __le32 rootid; +}; + -+struct security_mnt_opts { -+ char **mnt_opts; -+ int *mnt_opts_flags; -+ int num_mnt_opts; -+}; -+ +struct sctp_endpoint; + +struct xfrm_sec_ctx; @@ -52954,39 +53960,56 @@ index 0000000..bcb9d76 +struct xfrm_user_sec_ctx; + +union security_list_options { -+ int (*binder_set_context_mgr)(struct task_struct *); -+ int (*binder_transaction)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_binder)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_file)(struct task_struct *, struct task_struct *, struct file *); ++ int (*binder_set_context_mgr)(const struct cred *); ++ int (*binder_transaction)(const struct cred *, const struct cred *); ++ int (*binder_transfer_binder)(const struct cred *, const struct cred *); ++ int (*binder_transfer_file)(const struct cred *, const struct cred *, struct file *); + int (*ptrace_access_check)(struct task_struct *, unsigned int); + int (*ptrace_traceme)(struct task_struct *); + int (*capget)(struct task_struct *, kernel_cap_t *, kernel_cap_t *, kernel_cap_t *); + int (*capset)(struct cred *, const struct cred *, const kernel_cap_t *, const kernel_cap_t *, const kernel_cap_t *); -+ int (*capable)(const struct cred *, struct user_namespace *, int, int); ++ int (*capable)(const struct cred *, struct user_namespace *, int, unsigned int); + int (*quotactl)(int, int, int, struct super_block *); + int (*quota_on)(struct dentry *); + int (*syslog)(int); + int (*settime)(const struct timespec64 *, const struct timezone *); + int (*vm_enough_memory)(struct mm_struct *, long int); -+ int (*bprm_set_creds)(struct linux_binprm *); ++ int (*bprm_creds_for_exec)(struct linux_binprm *); ++ int (*bprm_creds_from_file)(struct linux_binprm *, struct file *); + int (*bprm_check_security)(struct linux_binprm *); + void (*bprm_committing_creds)(struct linux_binprm *); + void (*bprm_committed_creds)(struct linux_binprm *); ++ int (*fs_context_dup)(struct fs_context *, struct fs_context *); ++ int (*fs_context_parse_param)(struct fs_context *, struct fs_parameter *); + int (*sb_alloc_security)(struct super_block *); + void (*sb_free_security)(struct super_block *); -+ int (*sb_copy_data)(char *, char *); ++ void (*sb_free_mnt_opts)(void *); ++ int (*sb_eat_lsm_opts)(char *, void **); + int (*sb_remount)(struct super_block *, void *); -+ int (*sb_kern_mount)(struct super_block *, int, void *); ++ int (*sb_kern_mount)(struct super_block *); + int (*sb_show_options)(struct seq_file *, struct super_block *); + int (*sb_statfs)(struct dentry *); + int (*sb_mount)(const char *, const struct path *, const char *, long unsigned int, void *); + int (*sb_umount)(struct vfsmount *, int); + int (*sb_pivotroot)(const struct path *, const struct path *); -+ int (*sb_set_mnt_opts)(struct super_block *, struct security_mnt_opts *, long unsigned int, long unsigned int *); ++ int (*sb_set_mnt_opts)(struct super_block *, void *, long unsigned int, long unsigned int *); + int (*sb_clone_mnt_opts)(const struct super_block *, struct super_block *, long unsigned int, long unsigned int *); -+ int (*sb_parse_opts_str)(char *, struct security_mnt_opts *); ++ int (*sb_add_mnt_opt)(const char *, const char *, int, void **); ++ int (*move_mount)(const struct path *, const struct path *); + int (*dentry_init_security)(struct dentry *, int, const struct qstr *, void **, u32 *); + int (*dentry_create_files_as)(struct dentry *, int, struct qstr *, const struct cred *, struct cred *); ++ int (*path_unlink)(const struct path *, struct dentry *); ++ int (*path_mkdir)(const struct path *, struct dentry *, umode_t); ++ int (*path_rmdir)(const struct path *, struct dentry *); ++ int (*path_mknod)(const struct path *, struct dentry *, umode_t, unsigned int); ++ int (*path_truncate)(const struct path *); ++ int (*path_symlink)(const struct path *, struct dentry *, const char *); ++ int (*path_link)(struct dentry *, const struct path *, struct dentry *); ++ int (*path_rename)(const struct path *, struct dentry *, const struct path *, struct dentry *); ++ int (*path_chmod)(const struct path *, umode_t); ++ int (*path_chown)(const struct path *, kuid_t, kgid_t); ++ int (*path_chroot)(const struct path *); ++ int (*path_notify)(const struct path *, u64, unsigned int); + int (*inode_alloc_security)(struct inode *); + void (*inode_free_security)(struct inode *); + int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, const char **, void **, size_t *); @@ -53016,6 +54039,7 @@ index 0000000..bcb9d76 + void (*inode_getsecid)(struct inode *, u32 *); + int (*inode_copy_up)(struct dentry *, struct cred **); + int (*inode_copy_up_xattr)(const char *); ++ int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); + int (*file_permission)(struct file *, int); + int (*file_alloc_security)(struct file *); + void (*file_free_security)(struct file *); @@ -53039,10 +54063,12 @@ index 0000000..bcb9d76 + int (*kernel_act_as)(struct cred *, u32); + int (*kernel_create_files_as)(struct cred *, struct inode *); + int (*kernel_module_request)(char *); -+ int (*kernel_load_data)(enum kernel_load_data_id); -+ int (*kernel_read_file)(struct file *, enum kernel_read_file_id); ++ int (*kernel_load_data)(enum kernel_load_data_id, bool); ++ int (*kernel_post_load_data)(char *, loff_t, enum kernel_load_data_id, char *); ++ int (*kernel_read_file)(struct file *, enum kernel_read_file_id, bool); + int (*kernel_post_read_file)(struct file *, char *, loff_t, enum kernel_read_file_id); + int (*task_fix_setuid)(struct cred *, const struct cred *, int); ++ int (*task_fix_setgid)(struct cred *, const struct cred *, int); + int (*task_setpgid)(struct task_struct *, pid_t); + int (*task_getpgid)(struct task_struct *); + int (*task_getsid)(struct task_struct *); @@ -53055,7 +54081,7 @@ index 0000000..bcb9d76 + int (*task_setscheduler)(struct task_struct *); + int (*task_getscheduler)(struct task_struct *); + int (*task_movememory)(struct task_struct *); -+ int (*task_kill)(struct task_struct *, struct siginfo *, int, const struct cred *); ++ int (*task_kill)(struct task_struct *, struct kernel_siginfo *, int, const struct cred *); + int (*task_prctl)(int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + void (*task_to_inode)(struct task_struct *, struct inode *); + int (*ipc_permission)(struct kern_ipc_perm *, short int); @@ -53147,11 +54173,11 @@ index 0000000..bcb9d76 + int (*xfrm_decode_session)(struct sk_buff *, u32 *, int); + int (*key_alloc)(struct key *, const struct cred *, long unsigned int); + void (*key_free)(struct key *); -+ int (*key_permission)(key_ref_t, const struct cred *, unsigned int); ++ int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); + int (*key_getsecurity)(struct key *, char **); + int (*audit_rule_init)(u32, u32, char *, void **); + int (*audit_rule_known)(struct audit_krule *); -+ int (*audit_rule_match)(u32, u32, u32, void *, struct audit_context *); ++ int (*audit_rule_match)(u32, u32, u32, void *); + void (*audit_rule_free)(void *); + int (*bpf)(int, union bpf_attr *, unsigned int); + int (*bpf_map)(struct bpf_map *, fmode_t); @@ -53160,6 +54186,12 @@ index 0000000..bcb9d76 + void (*bpf_map_free_security)(struct bpf_map *); + int (*bpf_prog_alloc_security)(struct bpf_prog_aux *); + void (*bpf_prog_free_security)(struct bpf_prog_aux *); ++ int (*locked_down)(enum lockdown_reason); ++ int (*perf_event_open)(struct perf_event_attr *, int); ++ int (*perf_event_alloc)(struct perf_event *); ++ void (*perf_event_free)(struct perf_event *); ++ int (*perf_event_read)(struct perf_event *); ++ int (*perf_event_write)(struct perf_event *); +}; + +struct security_hook_heads { @@ -53177,13 +54209,17 @@ index 0000000..bcb9d76 + struct hlist_head syslog; + struct hlist_head settime; + struct hlist_head vm_enough_memory; -+ struct hlist_head bprm_set_creds; ++ struct hlist_head bprm_creds_for_exec; ++ struct hlist_head bprm_creds_from_file; + struct hlist_head bprm_check_security; + struct hlist_head bprm_committing_creds; + struct hlist_head bprm_committed_creds; ++ struct hlist_head fs_context_dup; ++ struct hlist_head fs_context_parse_param; + struct hlist_head sb_alloc_security; + struct hlist_head sb_free_security; -+ struct hlist_head sb_copy_data; ++ struct hlist_head sb_free_mnt_opts; ++ struct hlist_head sb_eat_lsm_opts; + struct hlist_head sb_remount; + struct hlist_head sb_kern_mount; + struct hlist_head sb_show_options; @@ -53193,9 +54229,22 @@ index 0000000..bcb9d76 + struct hlist_head sb_pivotroot; + struct hlist_head sb_set_mnt_opts; + struct hlist_head sb_clone_mnt_opts; -+ struct hlist_head sb_parse_opts_str; ++ struct hlist_head sb_add_mnt_opt; ++ struct hlist_head move_mount; + struct hlist_head dentry_init_security; + struct hlist_head dentry_create_files_as; ++ struct hlist_head path_unlink; ++ struct hlist_head path_mkdir; ++ struct hlist_head path_rmdir; ++ struct hlist_head path_mknod; ++ struct hlist_head path_truncate; ++ struct hlist_head path_symlink; ++ struct hlist_head path_link; ++ struct hlist_head path_rename; ++ struct hlist_head path_chmod; ++ struct hlist_head path_chown; ++ struct hlist_head path_chroot; ++ struct hlist_head path_notify; + struct hlist_head inode_alloc_security; + struct hlist_head inode_free_security; + struct hlist_head inode_init_security; @@ -53225,6 +54274,7 @@ index 0000000..bcb9d76 + struct hlist_head inode_getsecid; + struct hlist_head inode_copy_up; + struct hlist_head inode_copy_up_xattr; ++ struct hlist_head kernfs_init_security; + struct hlist_head file_permission; + struct hlist_head file_alloc_security; + struct hlist_head file_free_security; @@ -53247,11 +54297,13 @@ index 0000000..bcb9d76 + struct hlist_head cred_getsecid; + struct hlist_head kernel_act_as; + struct hlist_head kernel_create_files_as; ++ struct hlist_head kernel_module_request; + struct hlist_head kernel_load_data; ++ struct hlist_head kernel_post_load_data; + struct hlist_head kernel_read_file; + struct hlist_head kernel_post_read_file; -+ struct hlist_head kernel_module_request; + struct hlist_head task_fix_setuid; ++ struct hlist_head task_fix_setgid; + struct hlist_head task_setpgid; + struct hlist_head task_getpgid; + struct hlist_head task_getsid; @@ -53369,6 +54421,12 @@ index 0000000..bcb9d76 + struct hlist_head bpf_map_free_security; + struct hlist_head bpf_prog_alloc_security; + struct hlist_head bpf_prog_free_security; ++ struct hlist_head locked_down; ++ struct hlist_head perf_event_open; ++ struct hlist_head perf_event_alloc; ++ struct hlist_head perf_event_free; ++ struct hlist_head perf_event_read; ++ struct hlist_head perf_event_write; +}; + +struct security_hook_list { @@ -53378,13 +54436,37 @@ index 0000000..bcb9d76 + char *lsm; +}; + ++struct lsm_blob_sizes { ++ int lbs_cred; ++ int lbs_file; ++ int lbs_inode; ++ int lbs_ipc; ++ int lbs_msg_msg; ++ int lbs_task; ++ u64 kabi_reserved1; ++}; ++ ++enum lsm_order { ++ LSM_ORDER_FIRST = 4294967295, ++ LSM_ORDER_MUTABLE = 0, ++}; ++ ++struct lsm_info { ++ const char *name; ++ enum lsm_order order; ++ long unsigned int flags; ++ int *enabled; ++ int (*init)(); ++ struct lsm_blob_sizes *blobs; ++}; ++ +enum lsm_event { + LSM_POLICY_CHANGE = 0, +}; + +typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); + -+enum { ++enum ib_uverbs_write_cmds { + IB_USER_VERBS_CMD_GET_CONTEXT = 0, + IB_USER_VERBS_CMD_QUERY_DEVICE = 1, + IB_USER_VERBS_CMD_QUERY_PORT = 2, @@ -53428,6 +54510,17 @@ index 0000000..bcb9d76 + IB_USER_VERBS_CMD_OPEN_QP = 40, +}; + ++enum ib_uverbs_wc_opcode { ++ IB_UVERBS_WC_SEND = 0, ++ IB_UVERBS_WC_RDMA_WRITE = 1, ++ IB_UVERBS_WC_RDMA_READ = 2, ++ IB_UVERBS_WC_COMP_SWAP = 3, ++ IB_UVERBS_WC_FETCH_ADD = 4, ++ IB_UVERBS_WC_BIND_MW = 5, ++ IB_UVERBS_WC_LOCAL_INV = 6, ++ IB_UVERBS_WC_TSO = 7, ++}; ++ +enum ib_uverbs_create_qp_mask { + IB_UVERBS_CREATE_QP_MASK_IND_TABLE = 1, +}; @@ -53458,14 +54551,57 @@ index 0000000..bcb9d76 + IB_UVERBS_ACCESS_ZERO_BASED = 32, + IB_UVERBS_ACCESS_ON_DEMAND = 64, + IB_UVERBS_ACCESS_HUGETLB = 128, ++ IB_UVERBS_ACCESS_RELAXED_ORDERING = 1048576, ++ IB_UVERBS_ACCESS_OPTIONAL_RANGE = 1072693248, +}; + -+union ib_gid { -+ u8 raw[16]; -+ struct { -+ __be64 subnet_prefix; -+ __be64 interface_id; -+ } global; ++enum ib_uverbs_srq_type { ++ IB_UVERBS_SRQT_BASIC = 0, ++ IB_UVERBS_SRQT_XRC = 1, ++ IB_UVERBS_SRQT_TM = 2, ++}; ++ ++enum ib_uverbs_wq_type { ++ IB_UVERBS_WQT_RQ = 0, ++}; ++ ++enum ib_uverbs_wq_flags { ++ IB_UVERBS_WQ_FLAGS_CVLAN_STRIPPING = 1, ++ IB_UVERBS_WQ_FLAGS_SCATTER_FCS = 2, ++ IB_UVERBS_WQ_FLAGS_DELAY_DROP = 4, ++ IB_UVERBS_WQ_FLAGS_PCI_WRITE_END_PADDING = 8, ++}; ++ ++enum ib_uverbs_qp_type { ++ IB_UVERBS_QPT_RC = 2, ++ IB_UVERBS_QPT_UC = 3, ++ IB_UVERBS_QPT_UD = 4, ++ IB_UVERBS_QPT_RAW_PACKET = 8, ++ IB_UVERBS_QPT_XRC_INI = 9, ++ IB_UVERBS_QPT_XRC_TGT = 10, ++ IB_UVERBS_QPT_DRIVER = 255, ++}; ++ ++enum ib_uverbs_qp_create_flags { ++ IB_UVERBS_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 2, ++ IB_UVERBS_QP_CREATE_SCATTER_FCS = 256, ++ IB_UVERBS_QP_CREATE_CVLAN_STRIPPING = 512, ++ IB_UVERBS_QP_CREATE_PCI_WRITE_END_PADDING = 2048, ++ IB_UVERBS_QP_CREATE_SQ_SIG_ALL = 4096, ++}; ++ ++enum ib_uverbs_gid_type { ++ IB_UVERBS_GID_TYPE_IB = 0, ++ IB_UVERBS_GID_TYPE_ROCE_V1 = 1, ++ IB_UVERBS_GID_TYPE_ROCE_V2 = 2, ++}; ++ ++enum ib_poll_context { ++ IB_POLL_SOFTIRQ = 0, ++ IB_POLL_WORKQUEUE = 1, ++ IB_POLL_UNBOUND_WORKQUEUE = 2, ++ IB_POLL_LAST_POOL_TYPE = 2, ++ IB_POLL_DIRECT = 3, +}; + +struct lsm_network_audit { @@ -53514,6 +54650,8 @@ index 0000000..bcb9d76 + struct selinux_state *state; +}; + ++struct apparmor_audit_data; ++ +struct common_audit_data { + char type; + union { @@ -53533,9 +54671,11 @@ index 0000000..bcb9d76 + struct file *file; + struct lsm_ibpkey_audit *ibpkey; + struct lsm_ibendport_audit *ibendport; ++ int reason; + } u; + union { + struct selinux_audit_data *selinux_audit_data; ++ struct apparmor_audit_data *apparmor_audit_data; + }; +}; + @@ -53546,21 +54686,26 @@ index 0000000..bcb9d76 + POLICYDB_CAPABILITY_ALWAYSNETWORK = 3, + POLICYDB_CAPABILITY_CGROUPSECLABEL = 4, + POLICYDB_CAPABILITY_NNP_NOSUID_TRANSITION = 5, -+ __POLICYDB_CAPABILITY_MAX = 6, ++ POLICYDB_CAPABILITY_GENFS_SECLABEL_SYMLINKS = 6, ++ POLICYDB_CAPABILITY_IOCTL_SKIP_CLOEXEC = 7, ++ __POLICYDB_CAPABILITY_MAX = 8, +}; + +struct selinux_avc; + -+struct selinux_ss; ++struct selinux_policy; + +struct selinux_state { + bool disabled; + bool enforcing; + bool checkreqprot; + bool initialized; -+ bool policycap[6]; ++ bool policycap[8]; ++ struct page *status_page; ++ struct mutex status_lock; + struct selinux_avc *avc; -+ struct selinux_ss *ss; ++ struct selinux_policy *policy; ++ struct mutex policy_mutex; +}; + +struct avc_cache { @@ -53614,6 +54759,26 @@ index 0000000..bcb9d76 + const char *perms[33]; +}; + ++struct trace_event_raw_selinux_audited { ++ struct trace_entry ent; ++ u32 requested; ++ u32 denied; ++ u32 audited; ++ int result; ++ u32 __data_loc_scontext; ++ u32 __data_loc_tcontext; ++ u32 __data_loc_tclass; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_selinux_audited { ++ u32 scontext; ++ u32 tcontext; ++ u32 tclass; ++}; ++ ++typedef void (*btf_trace_selinux_audited)(void *, struct selinux_audit_data *, char *, char *, const char *); ++ +struct avc_xperms_node; + +struct avc_entry { @@ -53648,12 +54813,6 @@ index 0000000..bcb9d76 + +typedef __u16 __sum16; + -+typedef u16 u_int16_t; -+ -+struct rhltable { -+ struct rhashtable ht; -+}; -+ +enum sctp_endpoint_type { + SCTP_EP_TYPE_SOCKET = 0, + SCTP_EP_TYPE_ASSOCIATION = 1, @@ -53684,7 +54843,7 @@ index 0000000..bcb9d76 + struct sctp_bind_addr bind_addr; +}; + -+struct crypto_shash___2; ++struct crypto_shash; + +struct sctp_hmac_algo_param; + @@ -53697,17 +54856,21 @@ index 0000000..bcb9d76 + __u8 *digest; + __u32 sndbuf_policy; + __u32 rcvbuf_policy; -+ struct crypto_shash___2 **auth_hmacs; ++ struct crypto_shash **auth_hmacs; + struct sctp_hmac_algo_param *auth_hmacs_list; + struct sctp_chunks_param *auth_chunk_list; + struct list_head endpoint_shared_keys; + __u16 active_key_id; ++ __u8 ecn_enable: 1; + __u8 auth_enable: 1; ++ __u8 intl_enable: 1; + __u8 prsctp_enable: 1; ++ __u8 asconf_enable: 1; + __u8 reconf_enable: 1; + __u8 strreset_enable; + u32 secid; + u32 peer_secid; ++ struct callback_head rcu; +}; + +struct xfrm_sec_ctx { @@ -53734,10 +54897,6 @@ index 0000000..bcb9d76 + __u32 sin6_scope_id; +}; + -+struct nf_conntrack { -+ atomic_t use; -+}; -+ +struct in_addr { + __be32 s_addr; +}; @@ -53763,17 +54922,6 @@ index 0000000..bcb9d76 + struct nf_hook_entry hooks[0]; +}; + -+enum ip_conntrack_info { -+ IP_CT_ESTABLISHED = 0, -+ IP_CT_RELATED = 1, -+ IP_CT_NEW = 2, -+ IP_CT_IS_REPLY = 3, -+ IP_CT_ESTABLISHED_REPLY = 3, -+ IP_CT_RELATED_REPLY = 4, -+ IP_CT_NUMBER = 5, -+ IP_CT_UNTRACKED = 7, -+}; -+ +struct nf_hook_state { + unsigned int hook; + u_int8_t pf; @@ -53793,191 +54941,15 @@ index 0000000..bcb9d76 + int priority; +}; + -+enum nf_nat_manip_type; -+ -+struct nf_conn; -+ -+struct nf_nat_hook { -+ int (*parse_nat_setup)(struct nf_conn *, enum nf_nat_manip_type, const struct nlattr *); -+ void (*decode_session)(struct sk_buff *, struct flowi *); -+ unsigned int (*manip_pkt)(struct sk_buff *, struct nf_conn *, enum nf_nat_manip_type, enum ip_conntrack_dir); -+}; -+ -+struct nf_conntrack_zone { -+ u16 id; -+ u8 flags; -+ u8 dir; -+}; -+ -+union nf_inet_addr { -+ __u32 all[4]; -+ __be32 ip; -+ __be32 ip6[4]; -+ struct in_addr in; -+ struct in6_addr in6; -+}; -+ -+union nf_conntrack_man_proto { -+ __be16 all; -+ struct { -+ __be16 port; -+ } tcp; -+ struct { -+ __be16 port; -+ } udp; -+ struct { -+ __be16 id; -+ } icmp; -+ struct { -+ __be16 port; -+ } dccp; -+ struct { -+ __be16 port; -+ } sctp; -+ struct { -+ __be16 key; -+ } gre; -+}; -+ -+struct nf_conntrack_man { -+ union nf_inet_addr u3; -+ union nf_conntrack_man_proto u; -+ u_int16_t l3num; -+}; -+ -+struct nf_conntrack_tuple { -+ struct nf_conntrack_man src; -+ struct { -+ union nf_inet_addr u3; -+ union { -+ __be16 all; -+ struct { -+ __be16 port; -+ } tcp; -+ struct { -+ __be16 port; -+ } udp; -+ struct { -+ u_int8_t type; -+ u_int8_t code; -+ } icmp; -+ struct { -+ __be16 port; -+ } dccp; -+ struct { -+ __be16 port; -+ } sctp; -+ struct { -+ __be16 key; -+ } gre; -+ } u; -+ u_int8_t protonum; -+ u_int8_t dir; -+ } dst; -+}; -+ -+struct nf_conntrack_tuple_hash { -+ struct hlist_nulls_node hnnode; -+ struct nf_conntrack_tuple tuple; -+}; -+ -+typedef u32 u_int32_t; -+ -+struct nf_ct_ext; -+ -+typedef u64 u_int64_t; -+ -+struct nf_ct_dccp { -+ u_int8_t role[2]; -+ u_int8_t state; -+ u_int8_t last_pkt; -+ u_int8_t last_dir; -+ u_int64_t handshake_seq; -+}; -+ -+struct ip_ct_sctp { -+ enum sctp_conntrack state; -+ __be32 vtag[2]; -+}; -+ -+struct ip_ct_tcp_state { -+ u_int32_t td_end; -+ u_int32_t td_maxend; -+ u_int32_t td_maxwin; -+ u_int32_t td_maxack; -+ u_int8_t td_scale; -+ u_int8_t flags; -+}; -+ -+struct ip_ct_tcp { -+ struct ip_ct_tcp_state seen[2]; -+ u_int8_t state; -+ u_int8_t last_dir; -+ u_int8_t retrans; -+ u_int8_t last_index; -+ u_int32_t last_seq; -+ u_int32_t last_ack; -+ u_int32_t last_end; -+ u_int16_t last_win; -+ u_int8_t last_wscale; -+ u_int8_t last_flags; -+}; -+ -+struct nf_ct_gre { -+ unsigned int stream_timeout; -+ unsigned int timeout; -+}; -+ -+union nf_conntrack_proto { -+ struct nf_ct_dccp dccp; -+ struct ip_ct_sctp sctp; -+ struct ip_ct_tcp tcp; -+ struct nf_ct_gre gre; -+ unsigned int tmpl_padto; -+}; -+ -+struct nf_conn { -+ struct nf_conntrack ct_general; -+ spinlock_t lock; -+ u16 cpu; -+ struct nf_conntrack_zone zone; -+ struct nf_conntrack_tuple_hash tuplehash[2]; -+ long unsigned int status; -+ u32 timeout; -+ possible_net_t ct_net; -+ struct hlist_node nat_bysource; -+ u8 __nfct_init_offset[0]; -+ struct nf_conn *master; -+ u_int32_t mark; -+ u_int32_t secmark; -+ struct nf_ct_ext *ext; -+ union nf_conntrack_proto proto; -+}; -+ -+struct nf_ct_hook { -+ int (*update)(struct net *, struct sk_buff *); -+ void (*destroy)(struct nf_conntrack *); -+ bool (*get_tuple_skb)(struct nf_conntrack_tuple *, const struct sk_buff *); -+}; -+ -+struct nfnl_ct_hook { -+ struct nf_conn * (*get_ct)(const struct sk_buff *, enum ip_conntrack_info *); -+ size_t (*build_size)(const struct nf_conn *); -+ int (*build)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, u_int16_t, u_int16_t); -+ int (*parse)(const struct nlattr *, struct nf_conn *); -+ int (*attach_expect)(const struct nlattr *, struct nf_conn *, u32, u32); -+ void (*seq_adjust)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, s32); -+}; -+ +enum nf_ip_hook_priorities { -+ NF_IP_PRI_FIRST = -2147483648, -+ NF_IP_PRI_RAW_BEFORE_DEFRAG = -450, -+ NF_IP_PRI_CONNTRACK_DEFRAG = -400, -+ NF_IP_PRI_RAW = -300, -+ NF_IP_PRI_SELINUX_FIRST = -225, -+ NF_IP_PRI_CONNTRACK = -200, -+ NF_IP_PRI_MANGLE = -150, -+ NF_IP_PRI_NAT_DST = -100, ++ NF_IP_PRI_FIRST = 2147483648, ++ NF_IP_PRI_RAW_BEFORE_DEFRAG = 4294966846, ++ NF_IP_PRI_CONNTRACK_DEFRAG = 4294966896, ++ NF_IP_PRI_RAW = 4294966996, ++ NF_IP_PRI_SELINUX_FIRST = 4294967071, ++ NF_IP_PRI_CONNTRACK = 4294967096, ++ NF_IP_PRI_MANGLE = 4294967146, ++ NF_IP_PRI_NAT_DST = 4294967196, + NF_IP_PRI_FILTER = 0, + NF_IP_PRI_SECURITY = 50, + NF_IP_PRI_NAT_SRC = 100, @@ -53988,14 +54960,14 @@ index 0000000..bcb9d76 +}; + +enum nf_ip6_hook_priorities { -+ NF_IP6_PRI_FIRST = -2147483648, -+ NF_IP6_PRI_RAW_BEFORE_DEFRAG = -450, -+ NF_IP6_PRI_CONNTRACK_DEFRAG = -400, -+ NF_IP6_PRI_RAW = -300, -+ NF_IP6_PRI_SELINUX_FIRST = -225, -+ NF_IP6_PRI_CONNTRACK = -200, -+ NF_IP6_PRI_MANGLE = -150, -+ NF_IP6_PRI_NAT_DST = -100, ++ NF_IP6_PRI_FIRST = 2147483648, ++ NF_IP6_PRI_RAW_BEFORE_DEFRAG = 4294966846, ++ NF_IP6_PRI_CONNTRACK_DEFRAG = 4294966896, ++ NF_IP6_PRI_RAW = 4294966996, ++ NF_IP6_PRI_SELINUX_FIRST = 4294967071, ++ NF_IP6_PRI_CONNTRACK = 4294967096, ++ NF_IP6_PRI_MANGLE = 4294967146, ++ NF_IP6_PRI_NAT_DST = 4294967196, + NF_IP6_PRI_FILTER = 0, + NF_IP6_PRI_SECURITY = 50, + NF_IP6_PRI_NAT_SRC = 100, @@ -54004,57 +54976,186 @@ index 0000000..bcb9d76 + NF_IP6_PRI_LAST = 2147483647, +}; + -+struct nf_ipv6_ops { -+ int (*chk_addr)(struct net *, const struct in6_addr *, const struct net_device *, int); -+ void (*route_input)(struct sk_buff *); -+ int (*fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); -+ int (*route)(struct net *, struct dst_entry **, struct flowi *, bool); -+ int (*reroute)(struct sk_buff *, const struct nf_queue_entry *); -+}; -+ -+struct nf_queue_entry { -+ struct list_head list; -+ struct sk_buff *skb; -+ unsigned int id; -+ unsigned int hook_index; -+ struct nf_hook_state state; -+ u16 size; -+}; -+ -+struct tty_file_private { -+ struct tty_struct *tty; -+ struct file *file; -+ struct list_head list; -+}; -+ +struct socket_alloc { + struct socket socket; + struct inode vfs_inode; ++ long: 64; ++ long: 64; +}; + -+struct iphdr { -+ __u8 ihl: 4; -+ __u8 version: 4; -+ __u8 tos; -+ __be16 tot_len; -+ __be16 id; -+ __be16 frag_off; ++struct ip_options { ++ __be32 faddr; ++ __be32 nexthop; ++ unsigned char optlen; ++ unsigned char srr; ++ unsigned char rr; ++ unsigned char ts; ++ unsigned char is_strictroute: 1; ++ unsigned char srr_is_hit: 1; ++ unsigned char is_changed: 1; ++ unsigned char rr_needaddr: 1; ++ unsigned char ts_needtime: 1; ++ unsigned char ts_needaddr: 1; ++ unsigned char router_alert; ++ unsigned char cipso; ++ unsigned char __pad2; ++ unsigned char __data[0]; ++}; ++ ++struct ip_options_rcu { ++ struct callback_head rcu; ++ struct ip_options opt; ++}; ++ ++struct ipv6_opt_hdr; ++ ++struct ipv6_rt_hdr; ++ ++struct ipv6_txoptions { ++ refcount_t refcnt; ++ int tot_len; ++ __u16 opt_flen; ++ __u16 opt_nflen; ++ struct ipv6_opt_hdr *hopopt; ++ struct ipv6_opt_hdr *dst0opt; ++ struct ipv6_rt_hdr *srcrt; ++ struct ipv6_opt_hdr *dst1opt; ++ struct callback_head rcu; ++}; ++ ++struct inet_cork { ++ unsigned int flags; ++ __be32 addr; ++ struct ip_options *opt; ++ unsigned int fragsize; ++ int length; ++ struct dst_entry *dst; ++ u8 tx_flags; + __u8 ttl; -+ __u8 protocol; -+ __sum16 check; -+ __be32 saddr; -+ __be32 daddr; ++ __s16 tos; ++ char priority; ++ __u16 gso_size; ++ u64 transmit_time; ++ u32 mark; +}; + -+struct ipv6hdr { -+ __u8 priority: 4; -+ __u8 version: 4; -+ __u8 flow_lbl[3]; -+ __be16 payload_len; -+ __u8 nexthdr; -+ __u8 hop_limit; ++struct inet_cork_full { ++ struct inet_cork base; ++ struct flowi fl; ++}; ++ ++struct ipv6_pinfo; ++ ++struct ip_mc_socklist; ++ ++struct inet_sock { ++ struct sock sk; ++ struct ipv6_pinfo *pinet6; ++ __be32 inet_saddr; ++ __s16 uc_ttl; ++ __u16 cmsg_flags; ++ __be16 inet_sport; ++ __u16 inet_id; ++ struct ip_options_rcu *inet_opt; ++ int rx_dst_ifindex; ++ __u8 tos; ++ __u8 min_ttl; ++ __u8 mc_ttl; ++ __u8 pmtudisc; ++ __u8 recverr: 1; ++ __u8 is_icsk: 1; ++ __u8 freebind: 1; ++ __u8 hdrincl: 1; ++ __u8 mc_loop: 1; ++ __u8 transparent: 1; ++ __u8 mc_all: 1; ++ __u8 nodefrag: 1; ++ __u8 bind_address_no_port: 1; ++ __u8 recverr_rfc4884: 1; ++ __u8 defer_connect: 1; ++ __u8 rcv_tos; ++ __u8 convert_csum; ++ int uc_index; ++ int mc_index; ++ __be32 mc_addr; ++ struct ip_mc_socklist *mc_list; ++ struct inet_cork_full cork; ++}; ++ ++struct in6_pktinfo { ++ struct in6_addr ipi6_addr; ++ int ipi6_ifindex; ++}; ++ ++struct inet6_cork { ++ struct ipv6_txoptions *opt; ++ u8 hop_limit; ++ u8 tclass; ++}; ++ ++struct ipv6_mc_socklist; ++ ++struct ipv6_ac_socklist; ++ ++struct ipv6_fl_socklist; ++ ++struct ipv6_pinfo { + struct in6_addr saddr; -+ struct in6_addr daddr; ++ struct in6_pktinfo sticky_pktinfo; ++ const struct in6_addr *daddr_cache; ++ __be32 flow_label; ++ __u32 frag_size; ++ __u16 __unused_1: 7; ++ __s16 hop_limit: 9; ++ __u16 mc_loop: 1; ++ __u16 __unused_2: 6; ++ __s16 mcast_hops: 9; ++ int ucast_oif; ++ int mcast_oif; ++ union { ++ struct { ++ __u16 srcrt: 1; ++ __u16 osrcrt: 1; ++ __u16 rxinfo: 1; ++ __u16 rxoinfo: 1; ++ __u16 rxhlim: 1; ++ __u16 rxohlim: 1; ++ __u16 hopopts: 1; ++ __u16 ohopopts: 1; ++ __u16 dstopts: 1; ++ __u16 odstopts: 1; ++ __u16 rxflow: 1; ++ __u16 rxtclass: 1; ++ __u16 rxpmtu: 1; ++ __u16 rxorigdstaddr: 1; ++ __u16 recvfragsize: 1; ++ } bits; ++ __u16 all; ++ } rxopt; ++ __u16 recverr: 1; ++ __u16 sndflow: 1; ++ __u16 repflow: 1; ++ __u16 pmtudisc: 3; ++ __u16 padding: 1; ++ __u16 srcprefs: 3; ++ __u16 dontfrag: 1; ++ __u16 autoflowlabel: 1; ++ __u16 autoflowlabel_set: 1; ++ __u16 mc_all: 1; ++ __u16 recverr_rfc4884: 1; ++ __u16 rtalert_isolate: 1; ++ __u8 min_hopcount; ++ __u8 tclass; ++ __be32 rcv_flowinfo; ++ __u32 dst_cookie; ++ __u32 rx_dst_cookie; ++ struct ipv6_mc_socklist *ipv6_mc_list; ++ struct ipv6_ac_socklist *ipv6_ac_list; ++ struct ipv6_fl_socklist *ipv6_fl_list; ++ struct ipv6_txoptions *opt; ++ struct sk_buff *pktoptions; ++ struct sk_buff *rxpmtu; ++ struct inet6_cork cork; +}; + +struct tcphdr { @@ -54077,6 +55178,43 @@ index 0000000..bcb9d76 + __be16 urg_ptr; +}; + ++struct iphdr { ++ __u8 ihl: 4; ++ __u8 version: 4; ++ __u8 tos; ++ __be16 tot_len; ++ __be16 id; ++ __be16 frag_off; ++ __u8 ttl; ++ __u8 protocol; ++ __sum16 check; ++ __be32 saddr; ++ __be32 daddr; ++}; ++ ++struct ipv6_rt_hdr { ++ __u8 nexthdr; ++ __u8 hdrlen; ++ __u8 type; ++ __u8 segments_left; ++}; ++ ++struct ipv6_opt_hdr { ++ __u8 nexthdr; ++ __u8 hdrlen; ++}; ++ ++struct ipv6hdr { ++ __u8 priority: 4; ++ __u8 version: 4; ++ __u8 flow_lbl[3]; ++ __be16 payload_len; ++ __u8 nexthdr; ++ __u8 hop_limit; ++ struct in6_addr saddr; ++ struct in6_addr daddr; ++}; ++ +struct udphdr { + __be16 source; + __be16 dest; @@ -54084,9 +55222,80 @@ index 0000000..bcb9d76 + __sum16 check; +}; + -+struct icmp_err { -+ int errno; -+ unsigned int fatal: 1; ++struct inet6_skb_parm { ++ int iif; ++ __be16 ra; ++ __u16 dst0; ++ __u16 srcrt; ++ __u16 dst1; ++ __u16 lastopt; ++ __u16 nhoff; ++ __u16 flags; ++ __u16 dsthao; ++ __u16 frag_max_size; ++}; ++ ++struct ip6_sf_socklist; ++ ++struct ipv6_mc_socklist { ++ struct in6_addr addr; ++ int ifindex; ++ unsigned int sfmode; ++ struct ipv6_mc_socklist *next; ++ rwlock_t sflock; ++ struct ip6_sf_socklist *sflist; ++ struct callback_head rcu; ++}; ++ ++struct ipv6_ac_socklist { ++ struct in6_addr acl_addr; ++ int acl_ifindex; ++ struct ipv6_ac_socklist *acl_next; ++}; ++ ++struct ip6_flowlabel; ++ ++struct ipv6_fl_socklist { ++ struct ipv6_fl_socklist *next; ++ struct ip6_flowlabel *fl; ++ struct callback_head rcu; ++}; ++ ++struct ip6_sf_socklist { ++ unsigned int sl_max; ++ unsigned int sl_count; ++ struct in6_addr sl_addr[0]; ++}; ++ ++struct ip6_flowlabel { ++ struct ip6_flowlabel *next; ++ __be32 label; ++ atomic_t users; ++ struct in6_addr dst; ++ struct ipv6_txoptions *opt; ++ long unsigned int linger; ++ struct callback_head rcu; ++ u8 share; ++ union { ++ struct pid *pid; ++ kuid_t uid; ++ } owner; ++ long unsigned int lastuse; ++ long unsigned int expires; ++ struct net *fl_net; ++}; ++ ++struct inet_skb_parm { ++ int iif; ++ struct ip_options opt; ++ u16 flags; ++ u16 frag_max_size; ++}; ++ ++struct tty_file_private { ++ struct tty_struct *tty; ++ struct file *file; ++ struct list_head list; +}; + +struct netlbl_lsm_cache { @@ -54170,22 +55379,6 @@ index 0000000..bcb9d76 + sctp_assoc_t sinfo_assoc_id; +}; + -+struct sctp_event_subscribe { -+ __u8 sctp_data_io_event; -+ __u8 sctp_association_event; -+ __u8 sctp_address_event; -+ __u8 sctp_send_failure_event; -+ __u8 sctp_peer_error_event; -+ __u8 sctp_shutdown_event; -+ __u8 sctp_partial_delivery_event; -+ __u8 sctp_adaptation_layer_event; -+ __u8 sctp_authentication_event; -+ __u8 sctp_sender_dry_event; -+ __u8 sctp_stream_reset_event; -+ __u8 sctp_assoc_reset_event; -+ __u8 sctp_stream_change_event; -+}; -+ +struct sctp_rtoinfo { + sctp_assoc_t srto_assoc_id; + __u32 srto_initial; @@ -54511,15 +55704,41 @@ index 0000000..bcb9d76 + SCTP_STATE_SHUTDOWN_ACK_SENT = 7, +}; + -+struct sctp_stream_out; -+ +struct sctp_stream_out_ext; + ++struct sctp_stream_out { ++ union { ++ __u32 mid; ++ __u16 ssn; ++ }; ++ __u32 mid_uo; ++ struct sctp_stream_out_ext *ext; ++ __u8 state; ++}; ++ ++struct sctp_stream_in { ++ union { ++ __u32 mid; ++ __u16 ssn; ++ }; ++ __u32 mid_uo; ++ __u32 fsn; ++ __u32 fsn_uo; ++ char pd_mode; ++ char pd_mode_uo; ++}; ++ +struct sctp_stream_interleave; + +struct sctp_stream { -+ struct flex_array *out; -+ struct flex_array *in; ++ struct { ++ struct __genradix tree; ++ struct sctp_stream_out type[0]; ++ } out; ++ struct { ++ struct __genradix tree; ++ struct sctp_stream_in type[0]; ++ } in; + __u16 outcnt; + __u16 incnt; + struct sctp_stream_out *out_curr; @@ -54606,17 +55825,18 @@ index 0000000..bcb9d76 + struct sctp_transport *last_data_from; + struct sctp_tsnmap tsn_map; + __be16 addip_disabled_mask; -+ __u8 ecn_capable: 1; -+ __u8 ipv4_address: 1; -+ __u8 ipv6_address: 1; -+ __u8 hostname_address: 1; -+ __u8 asconf_capable: 1; -+ __u8 prsctp_capable: 1; -+ __u8 reconf_capable: 1; -+ __u8 auth_capable: 1; -+ __u8 sack_needed: 1; -+ __u8 sack_generation: 1; -+ __u8 zero_window_announced: 1; ++ __u16 ecn_capable: 1; ++ __u16 ipv4_address: 1; ++ __u16 ipv6_address: 1; ++ __u16 hostname_address: 1; ++ __u16 asconf_capable: 1; ++ __u16 prsctp_capable: 1; ++ __u16 reconf_capable: 1; ++ __u16 intl_capable: 1; ++ __u16 auth_capable: 1; ++ __u16 sack_needed: 1; ++ __u16 sack_generation: 1; ++ __u16 zero_window_announced: 1; + __u32 sack_cnt; + __u32 adaptation_ind; + struct sctp_inithdr_host i; @@ -54635,7 +55855,8 @@ index 0000000..bcb9d76 + long unsigned int rto_min; + int max_burst; + int max_retrans; -+ int pf_retrans; ++ __u16 pf_retrans; ++ __u16 ps_retrans; + __u16 max_init_attempts; + __u16 init_retries; + long unsigned int max_init_timeo; @@ -54698,10 +55919,8 @@ index 0000000..bcb9d76 + __u16 active_key_id; + __u8 need_ecne: 1; + __u8 temp: 1; ++ __u8 pf_expose: 2; + __u8 force_delay: 1; -+ __u8 intl_enable: 1; -+ __u8 prsctp_enable: 1; -+ __u8 reconf_enable: 1; + __u8 strreset_enable; + __u8 strreset_outstanding; + __u32 strreset_outseq; @@ -54710,6 +55929,7 @@ index 0000000..bcb9d76 + struct sctp_chunk *strreset_chunk; + struct sctp_priv_assoc_stats stats; + int sent_cnt_removable; ++ __u16 subscribe; + __u64 abandoned_unsent[3]; + __u64 abandoned_sent[3]; + struct callback_head rcu; @@ -54891,34 +56111,14 @@ index 0000000..bcb9d76 + +struct sctp_bind_bucket { + short unsigned int port; -+ short unsigned int fastreuse; ++ signed char fastreuse; ++ signed char fastreuseport; ++ kuid_t fastuid; + struct hlist_node node; + struct hlist_head owner; + struct net *net; +}; + -+struct sctp_bind_hashbucket { -+ spinlock_t lock; -+ struct hlist_head chain; -+}; -+ -+struct sctp_hashbucket { -+ rwlock_t lock; -+ struct hlist_head chain; -+}; -+ -+struct sctp_globals { -+ struct list_head address_families; -+ struct sctp_hashbucket *ep_hashtable; -+ struct sctp_bind_hashbucket *port_hashtable; -+ struct rhltable transport_hashtable; -+ int ep_hashsize; -+ int port_hashsize; -+ __u16 max_instreams; -+ __u16 max_outstreams; -+ bool checksum_disable; -+}; -+ +enum sctp_socket_type { + SCTP_SOCKET_UDP = 0, + SCTP_SOCKET_UDP_HIGH_BANDWIDTH = 1, @@ -54930,49 +56130,61 @@ index 0000000..bcb9d76 +struct sctp_sock { + struct inet_sock inet; + enum sctp_socket_type type; ++ int: 32; + struct sctp_pf *pf; -+ struct crypto_shash___2 *hmac; ++ struct crypto_shash *hmac; + char *sctp_hmac_alg; + struct sctp_endpoint *ep; + struct sctp_bind_bucket *bind_hash; + __u16 default_stream; ++ short: 16; + __u32 default_ppid; + __u16 default_flags; ++ short: 16; + __u32 default_context; + __u32 default_timetolive; + __u32 default_rcv_context; + int max_burst; + __u32 hbinterval; + __u16 pathmaxrxt; ++ short: 16; + __u32 flowlabel; + __u8 dscp; ++ char: 8; ++ __u16 pf_retrans; ++ __u16 ps_retrans; ++ short: 16; + __u32 pathmtu; + __u32 sackdelay; + __u32 sackfreq; + __u32 param_flags; ++ __u32 default_ss; + struct sctp_rtoinfo rtoinfo; + struct sctp_paddrparams paddrparam; + struct sctp_assocparams assocparams; -+ struct sctp_event_subscribe subscribe; ++ __u16 subscribe; + struct sctp_initmsg initmsg; ++ short: 16; + int user_frag; + __u32 autoclose; + __u32 adaptation_ind; + __u32 pd_point; + __u16 nodelay: 1; ++ __u16 pf_expose: 2; + __u16 reuse: 1; + __u16 disable_fragments: 1; + __u16 v4mapped: 1; + __u16 frag_interleave: 1; -+ __u16 strm_interleave: 1; + __u16 recvrcvinfo: 1; + __u16 recvnxtinfo: 1; + __u16 data_ready_signalled: 1; ++ int: 22; + atomic_t pd_mode; + struct sk_buff_head pd_lobby; + struct list_head auto_asconf_list; + int do_auto_asconf; -+}; ++ int: 32; ++} __attribute__((packed)); + +struct sctp_af; + @@ -55013,10 +56225,8 @@ index 0000000..bcb9d76 + +struct sctp_af { + int (*sctp_xmit)(struct sk_buff *, struct sctp_transport *); -+ int (*setsockopt)(struct sock *, int, int, char *, unsigned int); ++ int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct sock *, int, int, char *, int *); -+ int (*compat_setsockopt)(struct sock *, int, int, char *, unsigned int); -+ int (*compat_getsockopt)(struct sock *, int, int, char *, int *); + void (*get_dst)(struct sctp_transport *, union sctp_addr *, struct flowi *, struct sock *); + void (*get_saddr)(struct sctp_sock *, struct sctp_transport *, struct flowi *); + void (*copy_addrlist)(struct list_head *, struct net_device *); @@ -55094,7 +56304,8 @@ index 0000000..bcb9d76 + __u16 pathmaxrxt; + __u32 flowlabel; + __u8 dscp; -+ int pf_retrans; ++ __u16 pf_retrans; ++ __u16 ps_retrans; + __u32 pathmtu; + __u32 param_flags; + int init_sent_count; @@ -55149,16 +56360,6 @@ index 0000000..bcb9d76 + }; +}; + -+struct sctp_stream_out { -+ union { -+ __u32 mid; -+ __u16 ssn; -+ }; -+ __u32 mid_uo; -+ struct sctp_stream_out_ext *ext; -+ __u8 state; -+}; -+ +struct task_security_struct { + u32 osid; + u32 sid; @@ -55176,10 +56377,7 @@ index 0000000..bcb9d76 + +struct inode_security_struct { + struct inode *inode; -+ union { -+ struct list_head list; -+ struct callback_head rcu; -+ }; ++ struct list_head list; + u32 task_sid; + u32 sid; + u16 sclass; @@ -55249,14 +56447,31 @@ index 0000000..bcb9d76 + u32 sid; +}; + ++struct perf_event_security_struct { ++ u32 sid; ++}; ++ ++struct selinux_mnt_opts { ++ const char *fscontext; ++ const char *context; ++ const char *rootcontext; ++ const char *defcontext; ++}; ++ +enum { -+ Opt_error___2 = -1, -+ Opt_context = 1, ++ Opt_error___2 = 4294967295, ++ Opt_context = 0, ++ Opt_defcontext = 1, + Opt_fscontext = 2, -+ Opt_defcontext = 3, -+ Opt_rootcontext = 4, -+ Opt_labelsupport = 5, -+ Opt_nextmntopt = 6, ++ Opt_rootcontext = 3, ++ Opt_seclabel = 4, ++}; ++ ++struct selinux_policy_convert_data; ++ ++struct selinux_load_state { ++ struct selinux_policy *policy; ++ struct selinux_policy_convert_data *convert_data; +}; + +enum sel_inos { @@ -55292,7 +56507,6 @@ index 0000000..bcb9d76 + long unsigned int last_class_ino; + bool policy_opened; + struct dentry *policycap_dir; -+ struct mutex mutex; + long unsigned int last_ino; + struct selinux_state *state; + struct super_block *sb; @@ -55408,7 +56622,16 @@ index 0000000..bcb9d76 + RTM_NEWCHAIN = 100, + RTM_DELCHAIN = 101, + RTM_GETCHAIN = 102, -+ __RTM_MAX = 103, ++ RTM_NEWNEXTHOP = 104, ++ RTM_DELNEXTHOP = 105, ++ RTM_GETNEXTHOP = 106, ++ RTM_NEWLINKPROP = 108, ++ RTM_DELLINKPROP = 109, ++ RTM_GETLINKPROP = 110, ++ RTM_NEWVLAN = 112, ++ RTM_DELVLAN = 113, ++ RTM_GETVLAN = 114, ++ __RTM_MAX = 115, +}; + +struct nlmsg_perm { @@ -55465,25 +56688,14 @@ index 0000000..bcb9d76 + struct callback_head rcu; +}; + -+struct pkey_security_struct { -+ u64 subnet_prefix; -+ u16 pkey; -+ u32 sid; ++struct selinux_kernel_status { ++ u32 version; ++ u32 sequence; ++ u32 enforcing; ++ u32 policyload; ++ u32 deny_unknown; +}; + -+struct sel_ib_pkey_bkt { -+ int size; -+ struct list_head list; -+}; -+ -+struct sel_ib_pkey { -+ struct pkey_security_struct psec; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+struct path___3; -+ +struct ebitmap_node { + struct ebitmap_node *next; + long unsigned int maps[6]; @@ -55510,8 +56722,6 @@ index 0000000..bcb9d76 + struct hashtab_node **htable; + u32 size; + u32 nel; -+ u32 (*hash_value)(struct hashtab *, const void *); -+ int (*keycmp)(struct hashtab *, const void *, const void *); +}; + +struct hashtab_info { @@ -55519,8 +56729,13 @@ index 0000000..bcb9d76 + u32 max_chain_len; +}; + ++struct hashtab_key_params { ++ u32 (*hash)(const void *); ++ int (*cmp)(const void *, const void *); ++}; ++ +struct symtab { -+ struct hashtab *table; ++ struct hashtab table; + u32 nprim; +}; + @@ -55542,19 +56757,65 @@ index 0000000..bcb9d76 + char *str; +}; + -+struct sidtab_node { ++struct sidtab_str_cache; ++ ++struct sidtab_entry { + u32 sid; ++ u32 hash; + struct context___2 context; -+ struct sidtab_node *next; ++ struct sidtab_str_cache *cache; ++ struct hlist_node list; ++}; ++ ++struct sidtab_str_cache { ++ struct callback_head rcu_member; ++ struct list_head lru_member; ++ struct sidtab_entry *parent; ++ u32 len; ++ char str[0]; ++}; ++ ++struct sidtab_node_inner; ++ ++struct sidtab_node_leaf; ++ ++union sidtab_entry_inner { ++ struct sidtab_node_inner *ptr_inner; ++ struct sidtab_node_leaf *ptr_leaf; ++}; ++ ++struct sidtab_node_inner { ++ union sidtab_entry_inner entries[512]; ++}; ++ ++struct sidtab_node_leaf { ++ struct sidtab_entry entries[39]; ++}; ++ ++struct sidtab_isid_entry { ++ int set; ++ struct sidtab_entry entry; ++}; ++ ++struct sidtab; ++ ++struct sidtab_convert_params { ++ int (*func)(struct context___2 *, struct context___2 *, void *); ++ void *args; ++ struct sidtab *target; +}; + +struct sidtab { -+ struct sidtab_node **htable; -+ unsigned int nel; -+ unsigned int next_sid; -+ unsigned char shutdown; -+ struct sidtab_node *cache[3]; ++ union sidtab_entry_inner roots[4]; ++ u32 count; ++ struct sidtab_convert_params *convert; ++ bool frozen; + spinlock_t lock; ++ u32 cache_free_slots; ++ struct list_head cache_lru_list; ++ spinlock_t cache_lock; ++ struct sidtab_isid_entry isids[27]; ++ struct hlist_head context_to_sid[512]; +}; + +struct avtab_key { @@ -55584,7 +56845,7 @@ index 0000000..bcb9d76 +}; + +struct avtab { -+ struct flex_array *htable; ++ struct avtab_node **htable; + u32 nel; + u32 nslot; + u32 mask; @@ -55638,20 +56899,19 @@ index 0000000..bcb9d76 + struct ebitmap types; +}; + -+struct role_trans { -+ u32 role; -+ u32 type; -+ u32 tclass; -+ u32 new_role; -+ struct role_trans *next; -+}; -+ +struct role_allow { + u32 role; + u32 new_role; + struct role_allow *next; +}; + ++struct type_datum { ++ u32 value; ++ u32 bounds; ++ unsigned char primary; ++ unsigned char attribute; ++}; ++ +struct user_datum { + u32 value; + u32 bounds; @@ -55711,23 +56971,25 @@ index 0000000..bcb9d76 +struct policydb { + int mls_enabled; + struct symtab symtab[8]; -+ struct flex_array *sym_val_to_name[8]; ++ char **sym_val_to_name[8]; + struct class_datum **class_val_to_struct; + struct role_datum **role_val_to_struct; + struct user_datum **user_val_to_struct; -+ struct flex_array *type_val_to_struct_array; ++ struct type_datum **type_val_to_struct; + struct avtab te_avtab; -+ struct role_trans *role_tr; ++ struct hashtab role_tr; + struct ebitmap filename_trans_ttypes; -+ struct hashtab *filename_trans; ++ struct hashtab filename_trans; ++ u32 compat_filename_trans_count; + struct cond_bool_datum **bool_val_to_struct; + struct avtab te_cond_avtab; + struct cond_node *cond_list; ++ u32 cond_list_len; + struct role_allow *role_allow; + struct ocontext *ocontexts[9]; + struct genfs *genfs; -+ struct hashtab *range_tr; -+ struct flex_array *type_attr_map_array; ++ struct hashtab range_tr; ++ struct ebitmap *type_attr_map_array; + struct ebitmap policycaps; + struct ebitmap permissive_map; + size_t len; @@ -55738,43 +57000,30 @@ index 0000000..bcb9d76 + u32 process_trans_perms; +}; + -+struct selinux_mapping; -+ -+struct selinux_map { -+ struct selinux_mapping *mapping; -+ u16 size; -+}; -+ -+struct selinux_ss { -+ struct sidtab sidtab; -+ struct policydb policydb; -+ rwlock_t policy_rwlock; -+ u32 latest_granting; -+ struct selinux_map map; -+ struct page *status_page; -+ struct mutex status_lock; -+}; -+ +struct perm_datum { + u32 value; +}; + -+struct filename_trans { -+ u32 stype; ++struct role_trans_key { ++ u32 role; ++ u32 type; ++ u32 tclass; ++}; ++ ++struct role_trans_datum { ++ u32 new_role; ++}; ++ ++struct filename_trans_key { + u32 ttype; + u16 tclass; + const char *name; +}; + +struct filename_trans_datum { ++ struct ebitmap stypes; + u32 otype; -+}; -+ -+struct type_datum { -+ u32 value; -+ u32 bounds; -+ unsigned char primary; -+ unsigned char attribute; ++ struct filename_trans_datum *next; +}; + +struct level_datum { @@ -55793,16 +57042,23 @@ index 0000000..bcb9d76 + u32 target_class; +}; + -+struct cond_expr; ++struct cond_expr_node; + -+struct cond_av_list; ++struct cond_expr { ++ struct cond_expr_node *nodes; ++ u32 len; ++}; ++ ++struct cond_av_list { ++ struct avtab_node **nodes; ++ u32 len; ++}; + +struct cond_node { + int cur_state; -+ struct cond_expr *expr; -+ struct cond_av_list *true_list; -+ struct cond_av_list *false_list; -+ struct cond_node *next; ++ struct cond_expr expr; ++ struct cond_av_list true_list; ++ struct cond_av_list false_list; +}; + +struct policy_data { @@ -55810,21 +57066,9 @@ index 0000000..bcb9d76 + void *fp; +}; + -+struct cond_expr { -+ __u32 expr_type; -+ __u32 bool; -+ struct cond_expr *next; -+}; -+ -+struct cond_av_list { -+ struct avtab_node *node; -+ struct cond_av_list *next; -+}; -+ -+struct selinux_mapping { -+ u16 value; -+ unsigned int num_perms; -+ u32 perms[32]; ++struct cond_expr_node { ++ u32 expr_type; ++ u32 bool; +}; + +struct policydb_compat_info { @@ -55833,12 +57077,37 @@ index 0000000..bcb9d76 + int ocon_num; +}; + ++struct selinux_mapping; ++ ++struct selinux_map { ++ struct selinux_mapping *mapping; ++ u16 size; ++}; ++ ++struct selinux_policy { ++ struct sidtab *sidtab; ++ struct policydb policydb; ++ struct selinux_map map; ++ u32 latest_granting; ++}; ++ +struct convert_context_args { + struct selinux_state *state; + struct policydb *oldp; + struct policydb *newp; +}; + ++struct selinux_policy_convert_data { ++ struct convert_context_args args; ++ struct sidtab_convert_params sidtab_params; ++}; ++ ++struct selinux_mapping { ++ u16 value; ++ unsigned int num_perms; ++ u32 perms[32]; ++}; ++ +struct selinux_audit_rule { + u32 au_seqno; + struct context___2 au_ctxt; @@ -55846,35 +57115,8 @@ index 0000000..bcb9d76 + +struct cond_insertf_data { + struct policydb *p; ++ struct avtab_node **dst; + struct cond_av_list *other; -+ struct cond_av_list *head; -+ struct cond_av_list *tail; -+}; -+ -+struct selinux_kernel_status { -+ u32 version; -+ u32 sequence; -+ u32 enforcing; -+ u32 policyload; -+ u32 deny_unknown; -+}; -+ -+struct xfrm_offload { -+ struct { -+ __u32 low; -+ __u32 hi; -+ } seq; -+ __u32 flags; -+ __u32 status; -+ __u8 proto; -+}; -+ -+struct sec_path { -+ refcount_t refcnt; -+ int len; -+ int olen; -+ struct xfrm_state *xvec[6]; -+ struct xfrm_offload ovec[1]; +}; + +struct rt6key { @@ -55882,47 +57124,74 @@ index 0000000..bcb9d76 + int plen; +}; + ++struct rtable; ++ ++struct fnhe_hash_bucket; ++ ++struct fib_nh_common { ++ struct net_device *nhc_dev; ++ int nhc_oif; ++ unsigned char nhc_scope; ++ u8 nhc_family; ++ u8 nhc_gw_family; ++ unsigned char nhc_flags; ++ struct lwtunnel_state *nhc_lwtstate; ++ union { ++ __be32 ipv4; ++ struct in6_addr ipv6; ++ } nhc_gw; ++ int nhc_weight; ++ atomic_t nhc_upper_bound; ++ struct rtable **nhc_pcpu_rth_output; ++ struct rtable *nhc_rth_input; ++ struct fnhe_hash_bucket *nhc_exceptions; ++}; ++ ++struct rt6_exception_bucket; ++ +struct fib6_nh { -+ struct in6_addr nh_gw; -+ struct net_device *nh_dev; -+ struct lwtunnel_state *nh_lwtstate; -+ unsigned int nh_flags; -+ atomic_t nh_upper_bound; -+ int nh_weight; ++ struct fib_nh_common nh_common; ++ long unsigned int last_probe; ++ struct rt6_info **rt6i_pcpu; ++ struct rt6_exception_bucket *rt6i_exception_bucket; +}; + +struct fib6_node; + -+struct rt6_exception_bucket; ++struct dst_metrics; ++ ++struct nexthop; + +struct fib6_info { + struct fib6_table *fib6_table; + struct fib6_info *fib6_next; + struct fib6_node *fib6_node; -+ struct list_head fib6_siblings; ++ union { ++ struct list_head fib6_siblings; ++ struct list_head nh_list; ++ }; + unsigned int fib6_nsiblings; -+ atomic_t fib6_ref; ++ refcount_t fib6_ref; + long unsigned int expires; + struct dst_metrics *fib6_metrics; + struct rt6key fib6_dst; + u32 fib6_flags; + struct rt6key fib6_src; + struct rt6key fib6_prefsrc; -+ struct rt6_info **rt6i_pcpu; -+ struct rt6_exception_bucket *rt6i_exception_bucket; -+ long unsigned int last_probe; + u32 fib6_metric; + u8 fib6_protocol; + u8 fib6_type; -+ u8 exception_bucket_flushed: 1; + u8 should_flush: 1; + u8 dst_nocount: 1; + u8 dst_nopolicy: 1; -+ u8 dst_host: 1; + u8 fib6_destroying: 1; ++ u8 offload: 1; ++ u8 trap: 1; + u8 unused: 2; -+ struct fib6_nh fib6_nh; + struct callback_head rcu; ++ struct nexthop *nh; ++ u64 kabi_reserved1; ++ struct fib6_nh fib6_nh[0]; +}; + +struct uncached_list; @@ -55930,15 +57199,16 @@ index 0000000..bcb9d76 +struct rt6_info { + struct dst_entry dst; + struct fib6_info *from; ++ int sernum; + struct rt6key rt6i_dst; + struct rt6key rt6i_src; + struct in6_addr rt6i_gateway; + struct inet6_dev *rt6i_idev; + u32 rt6i_flags; -+ struct rt6key rt6i_prefsrc; + struct list_head rt6i_uncached; + struct uncached_list *rt6i_uncached_list; + short unsigned int rt6i_nfheader_len; ++ u64 kabi_reserved1; +}; + +struct rt6_statistics { @@ -55961,6 +57231,7 @@ index 0000000..bcb9d76 + int fn_sernum; + struct fib6_info *rr_ptr; + struct callback_head rcu; ++ u64 kabi_reserved1; +}; + +struct fib6_table { @@ -56074,6 +57345,42 @@ index 0000000..bcb9d76 + xfrm_address_t encap_oa; +}; + ++enum xfrm_attr_type_t { ++ XFRMA_UNSPEC = 0, ++ XFRMA_ALG_AUTH = 1, ++ XFRMA_ALG_CRYPT = 2, ++ XFRMA_ALG_COMP = 3, ++ XFRMA_ENCAP = 4, ++ XFRMA_TMPL = 5, ++ XFRMA_SA = 6, ++ XFRMA_POLICY = 7, ++ XFRMA_SEC_CTX = 8, ++ XFRMA_LTIME_VAL = 9, ++ XFRMA_REPLAY_VAL = 10, ++ XFRMA_REPLAY_THRESH = 11, ++ XFRMA_ETIMER_THRESH = 12, ++ XFRMA_SRCADDR = 13, ++ XFRMA_COADDR = 14, ++ XFRMA_LASTUSED = 15, ++ XFRMA_POLICY_TYPE = 16, ++ XFRMA_MIGRATE = 17, ++ XFRMA_ALG_AEAD = 18, ++ XFRMA_KMADDRESS = 19, ++ XFRMA_ALG_AUTH_TRUNC = 20, ++ XFRMA_MARK = 21, ++ XFRMA_TFCPAD = 22, ++ XFRMA_REPLAY_ESN_VAL = 23, ++ XFRMA_SA_EXTRA_FLAGS = 24, ++ XFRMA_PROTO = 25, ++ XFRMA_ADDRESS_FILTER = 26, ++ XFRMA_PAD = 27, ++ XFRMA_OFFLOAD_DEV = 28, ++ XFRMA_SET_MARK = 29, ++ XFRMA_SET_MARK_MASK = 30, ++ XFRMA_IF_ID = 31, ++ __XFRMA_MAX = 32, ++}; ++ +struct xfrm_mark { + __u32 v; + __u32 m; @@ -56094,26 +57401,30 @@ index 0000000..bcb9d76 + u8 proto; + u32 seq; + struct xfrm_address_filter *filter; -+ long unsigned int kabi_reserved1; +}; + +struct xfrm_state_offload { + struct net_device *dev; ++ struct net_device *real_dev; + long unsigned int offload_handle; + unsigned int num_exthdrs; + u8 flags; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct xfrm_mode { ++ u8 encap; ++ u8 family; ++ u8 flags; +}; + +struct xfrm_replay; + +struct xfrm_type; + -+struct xfrm_mode; -+ +struct xfrm_type_offload; + +struct xfrm_state { @@ -56155,6 +57466,7 @@ index 0000000..bcb9d76 + struct xfrm_algo_aead *aead; + const char *geniv; + struct xfrm_encap_tmpl *encap; ++ struct sock *encap_sk; + xfrm_address_t *coaddr; + struct xfrm_state *tunnel; + atomic_t tunnel_users; @@ -56169,20 +57481,25 @@ index 0000000..bcb9d76 + struct timer_list rtimer; + struct xfrm_stats stats; + struct xfrm_lifetime_cur curlft; -+ struct tasklet_hrtimer mtimer; ++ struct hrtimer mtimer; + struct xfrm_state_offload xso; + long int saved_tmo; + time64_t lastused; + struct page_frag xfrag; + const struct xfrm_type *type; -+ struct xfrm_mode *inner_mode; -+ struct xfrm_mode *inner_mode_iaf; -+ struct xfrm_mode *outer_mode; ++ struct xfrm_mode inner_mode; ++ struct xfrm_mode inner_mode_iaf; ++ struct xfrm_mode outer_mode; + const struct xfrm_type_offload *type_offload; + struct xfrm_sec_ctx *security; + void *data; +}; + ++struct dst_metrics { ++ u32 metrics[17]; ++ refcount_t refcnt; ++}; ++ +struct xfrm_policy_walk_entry { + struct list_head all; + u8 dead; @@ -56214,6 +57531,7 @@ index 0000000..bcb9d76 + struct hlist_node byidx; + rwlock_t lock; + refcount_t refcnt; ++ u32 pos; + struct timer_list timer; + atomic_t genid; + u32 priority; @@ -56225,6 +57543,7 @@ index 0000000..bcb9d76 + struct xfrm_lifetime_cur curlft; + struct xfrm_policy_walk_entry walk; + struct xfrm_policy_queue polq; ++ bool bydst_reinsert; + u8 type; + u8 action; + u8 flags; @@ -56232,6 +57551,7 @@ index 0000000..bcb9d76 + u16 family; + struct xfrm_sec_ctx *security; + struct xfrm_tmpl xfrm_vec[6]; ++ struct hlist_node bydst_inexact_list; + struct callback_head rcu; +}; + @@ -56244,6 +57564,20 @@ index 0000000..bcb9d76 + unsigned int log; +}; + ++struct fib_nh_exception { ++ struct fib_nh_exception *fnhe_next; ++ int fnhe_genid; ++ __be32 fnhe_daddr; ++ u32 fnhe_pmtu; ++ bool fnhe_mtu_locked; ++ __be32 fnhe_gw; ++ long unsigned int fnhe_expires; ++ struct rtable *fnhe_rth_input; ++ struct rtable *fnhe_rth_output; ++ long unsigned int fnhe_stamp; ++ struct callback_head rcu; ++}; ++ +struct rtable { + struct dst_entry dst; + int rt_genid; @@ -56252,13 +57586,21 @@ index 0000000..bcb9d76 + __u8 rt_is_input; + __u8 rt_uses_gateway; + int rt_iif; -+ __be32 rt_gateway; ++ u8 rt_gw_family; ++ union { ++ __be32 rt_gw4; ++ struct in6_addr rt_gw6; ++ }; + u32 rt_mtu_locked: 1; + u32 rt_pmtu: 31; + struct list_head rt_uncached; + struct uncached_list *rt_uncached_list; +}; + ++struct fnhe_hash_bucket { ++ struct fib_nh_exception *chain; ++}; ++ +struct rt6_exception_bucket { + struct hlist_head chain; + int depth; @@ -56283,22 +57625,6 @@ index 0000000..bcb9d76 + int (*output)(struct xfrm_state *, struct sk_buff *); + int (*reject)(struct xfrm_state *, struct sk_buff *, const struct flowi *); + int (*hdr_offset)(struct xfrm_state *, struct sk_buff *, u8 **); -+ u32 (*get_mtu)(struct xfrm_state *, int); -+}; -+ -+struct xfrm_state_afinfo; -+ -+struct xfrm_mode { -+ int (*input2)(struct xfrm_state *, struct sk_buff *); -+ int (*input)(struct xfrm_state *, struct sk_buff *); -+ int (*output2)(struct xfrm_state *, struct sk_buff *); -+ int (*output)(struct xfrm_state *, struct sk_buff *); -+ struct sk_buff * (*gso_segment)(struct xfrm_state *, struct sk_buff *, netdev_features_t); -+ void (*xmit)(struct xfrm_state *, struct sk_buff *); -+ struct xfrm_state_afinfo *afinfo; -+ struct module *owner; -+ unsigned int encap; -+ int flags; +}; + +struct xfrm_type_offload { @@ -56330,25 +57656,21 @@ index 0000000..bcb9d76 + u32 path_cookie; +}; + -+struct xfrm_state_afinfo { -+ unsigned int family; -+ unsigned int proto; -+ __be16 eth_proto; -+ struct module *owner; -+ const struct xfrm_type *type_map[256]; -+ const struct xfrm_type_offload *type_offload_map[256]; -+ struct xfrm_mode *mode_map[5]; -+ int (*init_flags)(struct xfrm_state *); -+ void (*init_tempsel)(struct xfrm_selector *, const struct flowi *); -+ void (*init_temprop)(struct xfrm_state *, const struct xfrm_tmpl *, const xfrm_address_t *, const xfrm_address_t *); -+ int (*tmpl_sort)(struct xfrm_tmpl **, struct xfrm_tmpl **, int); -+ int (*state_sort)(struct xfrm_state **, struct xfrm_state **, int); -+ int (*output)(struct net *, struct sock *, struct sk_buff *); -+ int (*output_finish)(struct sock *, struct sk_buff *); -+ int (*extract_input)(struct xfrm_state *, struct sk_buff *); -+ int (*extract_output)(struct xfrm_state *, struct sk_buff *); -+ int (*transport_finish)(struct sk_buff *, int); -+ void (*local_error)(struct sk_buff *, u32); ++struct xfrm_offload { ++ struct { ++ __u32 low; ++ __u32 hi; ++ } seq; ++ __u32 flags; ++ __u32 status; ++ __u8 proto; ++}; ++ ++struct sec_path { ++ int len; ++ int olen; ++ struct xfrm_state *xvec[6]; ++ struct xfrm_offload ovec[1]; +}; + +struct udp_hslot { @@ -56357,6 +57679,23 @@ index 0000000..bcb9d76 + spinlock_t lock; +}; + ++struct pkey_security_struct { ++ u64 subnet_prefix; ++ u16 pkey; ++ u32 sid; ++}; ++ ++struct sel_ib_pkey_bkt { ++ int size; ++ struct list_head list; ++}; ++ ++struct sel_ib_pkey { ++ struct pkey_security_struct psec; ++ struct list_head list; ++ struct callback_head rcu; ++}; ++ +struct sockaddr_un { + __kernel_sa_family_t sun_family; + char sun_path[108]; @@ -56369,6 +57708,10 @@ index 0000000..bcb9d76 + struct sockaddr_un name[0]; +}; + ++struct scm_stat { ++ atomic_t nr_fds; ++}; ++ +struct unix_sock { + struct sock sk; + struct unix_address *addr; @@ -56380,11 +57723,483 @@ index 0000000..bcb9d76 + atomic_long_t inflight; + spinlock_t lock; + long unsigned int gc_flags; ++ long: 64; ++ long: 64; + struct socket_wq peer_wq; + wait_queue_entry_t peer_wake; ++ struct scm_stat scm_stat; ++ long: 32; + long: 64; + long: 64; -+ long: 64; ++}; ++ ++typedef unsigned char Byte; ++ ++typedef long unsigned int uLong; ++ ++struct internal_state; ++ ++struct z_stream_s { ++ const Byte *next_in; ++ uLong avail_in; ++ uLong total_in; ++ Byte *next_out; ++ uLong avail_out; ++ uLong total_out; ++ char *msg; ++ struct internal_state *state; ++ void *workspace; ++ int data_type; ++ uLong adler; ++ uLong reserved; ++}; ++ ++struct internal_state { ++ int dummy; ++}; ++ ++enum audit_mode { ++ AUDIT_NORMAL = 0, ++ AUDIT_QUIET_DENIED = 1, ++ AUDIT_QUIET = 2, ++ AUDIT_NOQUIET = 3, ++ AUDIT_ALL = 4, ++}; ++ ++enum aa_sfs_type { ++ AA_SFS_TYPE_BOOLEAN = 0, ++ AA_SFS_TYPE_STRING = 1, ++ AA_SFS_TYPE_U64 = 2, ++ AA_SFS_TYPE_FOPS = 3, ++ AA_SFS_TYPE_DIR = 4, ++}; ++ ++struct aa_sfs_entry { ++ const char *name; ++ struct dentry *dentry; ++ umode_t mode; ++ enum aa_sfs_type v_type; ++ union { ++ bool boolean; ++ char *string; ++ long unsigned int u64; ++ struct aa_sfs_entry *files; ++ } v; ++ const struct file_operations *file_ops; ++}; ++ ++enum aafs_ns_type { ++ AAFS_NS_DIR = 0, ++ AAFS_NS_PROFS = 1, ++ AAFS_NS_NS = 2, ++ AAFS_NS_RAW_DATA = 3, ++ AAFS_NS_LOAD = 4, ++ AAFS_NS_REPLACE = 5, ++ AAFS_NS_REMOVE = 6, ++ AAFS_NS_REVISION = 7, ++ AAFS_NS_COUNT = 8, ++ AAFS_NS_MAX_COUNT = 9, ++ AAFS_NS_SIZE = 10, ++ AAFS_NS_MAX_SIZE = 11, ++ AAFS_NS_OWNER = 12, ++ AAFS_NS_SIZEOF = 13, ++}; ++ ++enum aafs_prof_type { ++ AAFS_PROF_DIR = 0, ++ AAFS_PROF_PROFS = 1, ++ AAFS_PROF_NAME = 2, ++ AAFS_PROF_MODE = 3, ++ AAFS_PROF_ATTACH = 4, ++ AAFS_PROF_HASH = 5, ++ AAFS_PROF_RAW_DATA = 6, ++ AAFS_PROF_RAW_HASH = 7, ++ AAFS_PROF_RAW_ABI = 8, ++ AAFS_PROF_SIZEOF = 9, ++}; ++ ++struct table_header { ++ u16 td_id; ++ u16 td_flags; ++ u32 td_hilen; ++ u32 td_lolen; ++ char td_data[0]; ++}; ++ ++struct aa_dfa { ++ struct kref count; ++ u16 flags; ++ u32 max_oob; ++ struct table_header *tables[8]; ++}; ++ ++struct aa_policy { ++ const char *name; ++ char *hname; ++ struct list_head list; ++ struct list_head profiles; ++}; ++ ++struct aa_labelset { ++ rwlock_t lock; ++ struct rb_root root; ++}; ++ ++enum label_flags { ++ FLAG_HAT = 1, ++ FLAG_UNCONFINED = 2, ++ FLAG_NULL = 4, ++ FLAG_IX_ON_NAME_ERROR = 8, ++ FLAG_IMMUTIBLE = 16, ++ FLAG_USER_DEFINED = 32, ++ FLAG_NO_LIST_REF = 64, ++ FLAG_NS_COUNT = 128, ++ FLAG_IN_TREE = 256, ++ FLAG_PROFILE = 512, ++ FLAG_EXPLICIT = 1024, ++ FLAG_STALE = 2048, ++ FLAG_RENAMED = 4096, ++ FLAG_REVOKED = 8192, ++}; ++ ++struct aa_label; ++ ++struct aa_proxy { ++ struct kref count; ++ struct aa_label *label; ++}; ++ ++struct aa_profile; ++ ++struct aa_label { ++ struct kref count; ++ struct rb_node node; ++ struct callback_head rcu; ++ struct aa_proxy *proxy; ++ char *hname; ++ long int flags; ++ u32 secid; ++ int size; ++ struct aa_profile *vec[0]; ++}; ++ ++struct label_it { ++ int i; ++ int j; ++}; ++ ++struct aa_policydb { ++ struct aa_dfa *dfa; ++ unsigned int start[17]; ++}; ++ ++struct aa_domain { ++ int size; ++ char **table; ++}; ++ ++struct aa_file_rules { ++ unsigned int start; ++ struct aa_dfa *dfa; ++ struct aa_domain trans; ++}; ++ ++struct aa_caps { ++ kernel_cap_t allow; ++ kernel_cap_t audit; ++ kernel_cap_t denied; ++ kernel_cap_t quiet; ++ kernel_cap_t kill; ++ kernel_cap_t extended; ++}; ++ ++struct aa_rlimit { ++ unsigned int mask; ++ struct rlimit limits[16]; ++}; ++ ++struct aa_ns; ++ ++struct aa_secmark; ++ ++struct aa_loaddata; ++ ++struct aa_profile { ++ struct aa_policy base; ++ struct aa_profile *parent; ++ struct aa_ns *ns; ++ const char *rename; ++ const char *attach; ++ struct aa_dfa *xmatch; ++ int xmatch_len; ++ enum audit_mode audit; ++ long int mode; ++ u32 path_flags; ++ const char *disconnected; ++ int size; ++ struct aa_policydb policy; ++ struct aa_file_rules file; ++ struct aa_caps caps; ++ int xattr_count; ++ char **xattrs; ++ struct aa_rlimit rlimits; ++ int secmark_count; ++ struct aa_secmark *secmark; ++ struct aa_loaddata *rawdata; ++ unsigned char *hash; ++ char *dirname; ++ struct dentry *dents[9]; ++ struct rhashtable *data; ++ struct aa_label label; ++}; ++ ++struct aa_perms { ++ u32 allow; ++ u32 audit; ++ u32 deny; ++ u32 quiet; ++ u32 kill; ++ u32 stop; ++ u32 complain; ++ u32 cond; ++ u32 hide; ++ u32 prompt; ++ u16 xindex; ++}; ++ ++struct path_cond { ++ kuid_t uid; ++ umode_t mode; ++}; ++ ++struct aa_secmark { ++ u8 audit; ++ u8 deny; ++ u32 secid; ++ char *label; ++}; ++ ++enum profile_mode { ++ APPARMOR_ENFORCE = 0, ++ APPARMOR_COMPLAIN = 1, ++ APPARMOR_KILL = 2, ++ APPARMOR_UNCONFINED = 3, ++}; ++ ++struct aa_data { ++ char *key; ++ u32 size; ++ char *data; ++ struct rhash_head head; ++}; ++ ++struct aa_ns_acct { ++ int max_size; ++ int max_count; ++ int size; ++ int count; ++}; ++ ++struct aa_ns { ++ struct aa_policy base; ++ struct aa_ns *parent; ++ struct mutex lock; ++ struct aa_ns_acct acct; ++ struct aa_profile *unconfined; ++ struct list_head sub_ns; ++ atomic_t uniq_null; ++ long int uniq_id; ++ int level; ++ long int revision; ++ wait_queue_head_t wait; ++ struct aa_labelset labels; ++ struct list_head rawdata_list; ++ struct dentry *dents[13]; ++}; ++ ++struct aa_loaddata { ++ struct kref count; ++ struct list_head list; ++ struct work_struct work; ++ struct dentry *dents[6]; ++ struct aa_ns *ns; ++ char *name; ++ size_t size; ++ size_t compressed_size; ++ long int revision; ++ int abi; ++ unsigned char *hash; ++ char *data; ++}; ++ ++enum { ++ AAFS_LOADDATA_ABI = 0, ++ AAFS_LOADDATA_REVISION = 1, ++ AAFS_LOADDATA_HASH = 2, ++ AAFS_LOADDATA_DATA = 3, ++ AAFS_LOADDATA_COMPRESSED_SIZE = 4, ++ AAFS_LOADDATA_DIR = 5, ++ AAFS_LOADDATA_NDENTS = 6, ++}; ++ ++struct rawdata_f_data { ++ struct aa_loaddata *loaddata; ++}; ++ ++struct aa_revision { ++ struct aa_ns *ns; ++ long int last_read; ++}; ++ ++struct multi_transaction { ++ struct kref count; ++ ssize_t size; ++ char data[0]; ++}; ++ ++struct apparmor_audit_data { ++ int error; ++ int type; ++ const char *op; ++ struct aa_label *label; ++ const char *name; ++ const char *info; ++ u32 request; ++ u32 denied; ++ union { ++ struct { ++ struct aa_label *peer; ++ union { ++ struct { ++ const char *target; ++ kuid_t ouid; ++ } fs; ++ struct { ++ int rlim; ++ long unsigned int max; ++ } rlim; ++ struct { ++ int signal; ++ int unmappedsig; ++ }; ++ struct { ++ int type; ++ int protocol; ++ struct sock *peer_sk; ++ void *addr; ++ int addrlen; ++ } net; ++ }; ++ }; ++ struct { ++ struct aa_profile *profile; ++ const char *ns; ++ long int pos; ++ } iface; ++ struct { ++ const char *src_name; ++ const char *type; ++ const char *trans; ++ const char *data; ++ long unsigned int flags; ++ } mnt; ++ }; ++}; ++ ++enum audit_type { ++ AUDIT_APPARMOR_AUDIT = 0, ++ AUDIT_APPARMOR_ALLOWED = 1, ++ AUDIT_APPARMOR_DENIED = 2, ++ AUDIT_APPARMOR_HINT = 3, ++ AUDIT_APPARMOR_STATUS = 4, ++ AUDIT_APPARMOR_ERROR = 5, ++ AUDIT_APPARMOR_KILL = 6, ++ AUDIT_APPARMOR_AUTO = 7, ++}; ++ ++struct aa_audit_rule { ++ struct aa_label *label; ++}; ++ ++struct audit_cache { ++ struct aa_profile *profile; ++ kernel_cap_t caps; ++}; ++ ++struct aa_task_ctx { ++ struct aa_label *nnp; ++ struct aa_label *onexec; ++ struct aa_label *previous; ++ u64 token; ++}; ++ ++struct counted_str { ++ struct kref count; ++ char name[0]; ++}; ++ ++struct match_workbuf { ++ unsigned int count; ++ unsigned int pos; ++ unsigned int len; ++ unsigned int size; ++ unsigned int history[24]; ++}; ++ ++enum path_flags { ++ PATH_IS_DIR = 1, ++ PATH_CONNECT_PATH = 4, ++ PATH_CHROOT_REL = 8, ++ PATH_CHROOT_NSCONNECT = 16, ++ PATH_DELEGATE_DELETED = 32768, ++ PATH_MEDIATE_DELETED = 65536, ++}; ++ ++struct aa_load_ent { ++ struct list_head list; ++ struct aa_profile *new; ++ struct aa_profile *old; ++ struct aa_profile *rename; ++ const char *ns_name; ++}; ++ ++enum aa_code { ++ AA_U8 = 0, ++ AA_U16 = 1, ++ AA_U32 = 2, ++ AA_U64 = 3, ++ AA_NAME = 4, ++ AA_STRING = 5, ++ AA_BLOB = 6, ++ AA_STRUCT = 7, ++ AA_STRUCTEND = 8, ++ AA_LIST = 9, ++ AA_LISTEND = 10, ++ AA_ARRAY = 11, ++ AA_ARRAYEND = 12, ++}; ++ ++struct aa_ext { ++ void *start; ++ void *end; ++ void *pos; ++ u32 version; ++}; ++ ++struct aa_file_ctx { ++ spinlock_t lock; ++ struct aa_label *label; ++ u32 allow; ++}; ++ ++struct aa_sk_ctx { ++ struct aa_label *label; ++ struct aa_label *peer; ++}; ++ ++union aa_buffer { ++ struct list_head list; ++ char buffer[1]; +}; + +struct ptrace_relation { @@ -56427,9 +58242,10 @@ index 0000000..bcb9d76 + INTEGRITY_PASS = 0, + INTEGRITY_PASS_IMMUTABLE = 1, + INTEGRITY_FAIL = 2, -+ INTEGRITY_NOLABEL = 3, -+ INTEGRITY_NOXATTRS = 4, -+ INTEGRITY_UNKNOWN = 5, ++ INTEGRITY_FAIL_IMMUTABLE = 3, ++ INTEGRITY_NOLABEL = 4, ++ INTEGRITY_NOXATTRS = 5, ++ INTEGRITY_UNKNOWN = 6, +}; + +struct ima_digest_data { @@ -56466,16 +58282,24 @@ index 0000000..bcb9d76 + struct ima_digest_data *ima_hash; +}; + ++struct modsig; ++ +struct asymmetric_key_id; + +struct public_key_signature { + struct asymmetric_key_id *auth_ids[2]; + u8 *s; -+ u32 s_size; + u8 *digest; -+ u8 digest_size; ++ u32 s_size; ++ u32 digest_size; + const char *pkey_algo; + const char *hash_algo; ++ const char *encoding; ++ const void *data; ++ unsigned int data_size; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; +}; + +struct asymmetric_key_id { @@ -56492,11 +58316,30 @@ index 0000000..bcb9d76 + uint8_t sig[0]; +} __attribute__((packed)); + -+struct tpm_chip; ++typedef struct { ++ efi_guid_t signature_owner; ++ u8 signature_data[0]; ++} efi_signature_data_t; ++ ++typedef struct { ++ efi_guid_t signature_type; ++ u32 signature_list_size; ++ u32 signature_header_size; ++ u32 signature_size; ++ u8 signature_header[0]; ++} efi_signature_list_t; ++ ++typedef void (*efi_element_handler_t)(const char *, const void *, size_t); ++ ++struct efi_mokvar_table_entry { ++ char name[256]; ++ u64 data_size; ++ u8 data[0]; ++}; + +struct evm_ima_xattr_data { + u8 type; -+ u8 digest[32]; ++ u8 data[0]; +}; + +enum ima_show_type { @@ -56512,7 +58355,10 @@ index 0000000..bcb9d76 + const unsigned char *filename; + struct evm_ima_xattr_data *xattr_value; + int xattr_len; ++ const struct modsig *modsig; + const char *violation; ++ const void *buf; ++ int buf_len; +}; + +struct ima_field_data { @@ -56531,12 +58377,12 @@ index 0000000..bcb9d76 + char *name; + char *fmt; + int num_fields; -+ struct ima_template_field **fields; ++ const struct ima_template_field **fields; +}; + +struct ima_template_entry { + int pcr; -+ u8 digest[20]; ++ struct tpm_digest *digests; + struct ima_template_desc *template_desc; + u32 template_data_len; + struct ima_field_data template_data[0]; @@ -56551,11 +58397,13 @@ index 0000000..bcb9d76 +struct ima_h_table { + atomic_long_t len; + atomic_long_t violations; -+ struct hlist_head queue[512]; ++ struct hlist_head queue[1024]; +}; + +enum ima_fs_flags { -+ IMA_FS_BUSY = 0, ++ IMA_POLICY_BUSY = 0, ++ IMA_DIGEST_LIST_DATA_BUSY = 1, ++ IMA_FS_BUSY = 2, +}; + +enum evm_ima_xattr_type { @@ -56564,7 +58412,25 @@ index 0000000..bcb9d76 + EVM_IMA_XATTR_DIGSIG = 3, + IMA_XATTR_DIGEST_NG = 4, + EVM_XATTR_PORTABLE_DIGSIG = 5, -+ IMA_XATTR_LAST = 6, ++ EVM_IMA_XATTR_DIGEST_LIST = 6, ++ IMA_XATTR_LAST = 7, ++}; ++ ++enum compact_types { ++ COMPACT_KEY = 0, ++ COMPACT_PARSER = 1, ++ COMPACT_FILE = 2, ++ COMPACT_METADATA = 3, ++ COMPACT__LAST = 4, ++}; ++ ++struct ima_digest { ++ struct hlist_node hnext; ++ enum hash_algo algo; ++ enum compact_types type; ++ u16 modifiers; ++ u16 count; ++ u8 digest[0]; +}; + +enum ima_hooks { @@ -56579,12 +58445,10 @@ index 0000000..bcb9d76 + KEXEC_KERNEL_CHECK = 8, + KEXEC_INITRAMFS_CHECK = 9, + POLICY_CHECK = 10, -+ MAX_CHECK = 11, -+}; -+ -+struct crypto_wait { -+ struct completion completion; -+ int err; ++ KEXEC_CMDLINE = 11, ++ KEY_CHECK = 12, ++ DIGEST_LIST_CHECK = 13, ++ MAX_CHECK = 14, +}; + +struct hash_alg_common { @@ -56618,6 +58482,12 @@ index 0000000..bcb9d76 +enum tpm_pcrs { + TPM_PCR0 = 0, + TPM_PCR8 = 8, ++ TPM_PCR10 = 10, ++}; ++ ++struct ima_algo_desc { ++ struct crypto_shash *tfm; ++ enum hash_algo algo; +}; + +enum lsm_rule_types { @@ -56632,6 +58502,17 @@ index 0000000..bcb9d76 +enum policy_types { + ORIGINAL_TCB = 1, + DEFAULT_TCB = 2, ++ EXEC_TCB = 3, ++}; ++ ++enum policy_rule_list { ++ IMA_DEFAULT_POLICY = 1, ++ IMA_CUSTOM_POLICY = 2, ++}; ++ ++struct ima_rule_opt_list { ++ size_t count; ++ char *items[0]; +}; + +struct ima_rule_entry { @@ -56649,44 +58530,57 @@ index 0000000..bcb9d76 + int pcr; + struct { + void *rule; -+ void *args_p; ++ char *args_p; + int type; + } lsm[6]; + char *fsname; ++ struct ima_rule_opt_list *keyrings; ++ struct ima_template_desc *template; +}; + +enum { -+ Opt_err___10 = -1, -+ Opt_measure = 1, -+ Opt_dont_measure = 2, -+ Opt_appraise = 3, -+ Opt_dont_appraise = 4, -+ Opt_audit = 5, -+ Opt_hash___2 = 6, -+ Opt_dont_hash = 7, -+ Opt_obj_user = 8, -+ Opt_obj_role = 9, -+ Opt_obj_type = 10, -+ Opt_subj_user = 11, -+ Opt_subj_role = 12, -+ Opt_subj_type = 13, -+ Opt_func = 14, -+ Opt_mask = 15, -+ Opt_fsmagic = 16, -+ Opt_fsname = 17, -+ Opt_fsuuid = 18, -+ Opt_uid_eq = 19, -+ Opt_euid_eq = 20, -+ Opt_fowner_eq = 21, -+ Opt_uid_gt = 22, -+ Opt_euid_gt = 23, -+ Opt_fowner_gt = 24, -+ Opt_uid_lt = 25, -+ Opt_euid_lt = 26, -+ Opt_fowner_lt = 27, -+ Opt_appraise_type = 28, ++ Opt_measure = 0, ++ Opt_dont_measure = 1, ++ Opt_appraise = 2, ++ Opt_dont_appraise = 3, ++ Opt_audit = 4, ++ Opt_hash___3 = 5, ++ Opt_dont_hash = 6, ++ Opt_obj_user = 7, ++ Opt_obj_role = 8, ++ Opt_obj_type = 9, ++ Opt_subj_user = 10, ++ Opt_subj_role = 11, ++ Opt_subj_type = 12, ++ Opt_func = 13, ++ Opt_mask = 14, ++ Opt_fsmagic = 15, ++ Opt_fsname = 16, ++ Opt_fsuuid = 17, ++ Opt_uid_eq = 18, ++ Opt_euid_eq = 19, ++ Opt_fowner_eq = 20, ++ Opt_uid_gt = 21, ++ Opt_euid_gt = 22, ++ Opt_fowner_gt = 23, ++ Opt_uid_lt = 24, ++ Opt_euid_lt = 25, ++ Opt_fowner_lt = 26, ++ Opt_appraise_type = 27, ++ Opt_appraise_flag = 28, + Opt_permit_directio = 29, + Opt_pcr = 30, ++ Opt_template = 31, ++ Opt_keyrings = 32, ++ Opt_parser = 33, ++ Opt_err___8 = 34, ++}; ++ ++enum { ++ mask_exec = 0, ++ mask_write = 1, ++ mask_read = 2, ++ mask_append = 3, +}; + +struct ima_kexec_hdr { @@ -56712,6 +58606,38 @@ index 0000000..bcb9d76 + DATA_FMT_HEX = 3, +}; + ++enum compact_modifiers { ++ COMPACT_MOD_IMMUTABLE = 0, ++ COMPACT_MOD__LAST = 1, ++}; ++ ++struct ima_key_entry { ++ struct list_head list; ++ void *payload; ++ size_t payload_len; ++ char *keyring_name; ++}; ++ ++struct compact_list_hdr { ++ u8 version; ++ u8 _reserved; ++ u16 type; ++ u16 modifiers; ++ u16 algo; ++ u32 count; ++ u32 datalen; ++}; ++ ++struct readdir_callback___2 { ++ struct dir_context ctx; ++ struct path *path; ++}; ++ ++struct evm_xattr { ++ struct evm_ima_xattr_data data; ++ u8 digest[64]; ++}; ++ +struct xattr_list { + struct list_head list; + char *name; @@ -56733,6 +58659,7 @@ index 0000000..bcb9d76 +enum { + CRYPTO_MSG_ALG_REQUEST = 0, + CRYPTO_MSG_ALG_REGISTER = 1, ++ CRYPTO_MSG_ALG_LOADED = 2, +}; + +struct crypto_larval { @@ -56742,6 +58669,10 @@ index 0000000..bcb9d76 + u32 mask; +}; + ++struct crypto_cipher { ++ struct crypto_tfm base; ++}; ++ +enum { + CRYPTOA_UNSPEC = 0, + CRYPTOA_ALG = 1, @@ -56754,6 +58685,11 @@ index 0000000..bcb9d76 + char name[128]; +}; + ++struct crypto_attr_type { ++ u32 type; ++ u32 mask; ++}; ++ +struct crypto_attr_u32 { + u32 num; +}; @@ -56770,11 +58706,143 @@ index 0000000..bcb9d76 + unsigned int max_qlen; +}; + ++enum ethtool_link_mode_bit_indices { ++ ETHTOOL_LINK_MODE_10baseT_Half_BIT = 0, ++ ETHTOOL_LINK_MODE_10baseT_Full_BIT = 1, ++ ETHTOOL_LINK_MODE_100baseT_Half_BIT = 2, ++ ETHTOOL_LINK_MODE_100baseT_Full_BIT = 3, ++ ETHTOOL_LINK_MODE_1000baseT_Half_BIT = 4, ++ ETHTOOL_LINK_MODE_1000baseT_Full_BIT = 5, ++ ETHTOOL_LINK_MODE_Autoneg_BIT = 6, ++ ETHTOOL_LINK_MODE_TP_BIT = 7, ++ ETHTOOL_LINK_MODE_AUI_BIT = 8, ++ ETHTOOL_LINK_MODE_MII_BIT = 9, ++ ETHTOOL_LINK_MODE_FIBRE_BIT = 10, ++ ETHTOOL_LINK_MODE_BNC_BIT = 11, ++ ETHTOOL_LINK_MODE_10000baseT_Full_BIT = 12, ++ ETHTOOL_LINK_MODE_Pause_BIT = 13, ++ ETHTOOL_LINK_MODE_Asym_Pause_BIT = 14, ++ ETHTOOL_LINK_MODE_2500baseX_Full_BIT = 15, ++ ETHTOOL_LINK_MODE_Backplane_BIT = 16, ++ ETHTOOL_LINK_MODE_1000baseKX_Full_BIT = 17, ++ ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT = 18, ++ ETHTOOL_LINK_MODE_10000baseKR_Full_BIT = 19, ++ ETHTOOL_LINK_MODE_10000baseR_FEC_BIT = 20, ++ ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT = 21, ++ ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT = 22, ++ ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT = 23, ++ ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT = 24, ++ ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT = 25, ++ ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT = 26, ++ ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT = 27, ++ ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT = 28, ++ ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT = 29, ++ ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT = 30, ++ ETHTOOL_LINK_MODE_25000baseCR_Full_BIT = 31, ++ ETHTOOL_LINK_MODE_25000baseKR_Full_BIT = 32, ++ ETHTOOL_LINK_MODE_25000baseSR_Full_BIT = 33, ++ ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT = 34, ++ ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT = 35, ++ ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT = 36, ++ ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT = 37, ++ ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT = 38, ++ ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT = 39, ++ ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT = 40, ++ ETHTOOL_LINK_MODE_1000baseX_Full_BIT = 41, ++ ETHTOOL_LINK_MODE_10000baseCR_Full_BIT = 42, ++ ETHTOOL_LINK_MODE_10000baseSR_Full_BIT = 43, ++ ETHTOOL_LINK_MODE_10000baseLR_Full_BIT = 44, ++ ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT = 45, ++ ETHTOOL_LINK_MODE_10000baseER_Full_BIT = 46, ++ ETHTOOL_LINK_MODE_2500baseT_Full_BIT = 47, ++ ETHTOOL_LINK_MODE_5000baseT_Full_BIT = 48, ++ ETHTOOL_LINK_MODE_FEC_NONE_BIT = 49, ++ ETHTOOL_LINK_MODE_FEC_RS_BIT = 50, ++ ETHTOOL_LINK_MODE_FEC_BASER_BIT = 51, ++ ETHTOOL_LINK_MODE_50000baseKR_Full_BIT = 52, ++ ETHTOOL_LINK_MODE_50000baseSR_Full_BIT = 53, ++ ETHTOOL_LINK_MODE_50000baseCR_Full_BIT = 54, ++ ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT = 55, ++ ETHTOOL_LINK_MODE_50000baseDR_Full_BIT = 56, ++ ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT = 57, ++ ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT = 58, ++ ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT = 59, ++ ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT = 60, ++ ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT = 61, ++ ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT = 62, ++ ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT = 63, ++ ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT = 64, ++ ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT = 65, ++ ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT = 66, ++ ETHTOOL_LINK_MODE_100baseT1_Full_BIT = 67, ++ ETHTOOL_LINK_MODE_1000baseT1_Full_BIT = 68, ++ ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT = 69, ++ ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT = 70, ++ ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT = 71, ++ ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT = 72, ++ ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT = 73, ++ ETHTOOL_LINK_MODE_FEC_LLRS_BIT = 74, ++ ETHTOOL_LINK_MODE_100000baseKR_Full_BIT = 75, ++ ETHTOOL_LINK_MODE_100000baseSR_Full_BIT = 76, ++ ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT = 77, ++ ETHTOOL_LINK_MODE_100000baseCR_Full_BIT = 78, ++ ETHTOOL_LINK_MODE_100000baseDR_Full_BIT = 79, ++ ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT = 80, ++ ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT = 81, ++ ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT = 82, ++ ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT = 83, ++ ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT = 84, ++ ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT = 85, ++ ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT = 86, ++ ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT = 87, ++ ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT = 88, ++ ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT = 89, ++ ETHTOOL_LINK_MODE_100baseFX_Half_BIT = 90, ++ ETHTOOL_LINK_MODE_100baseFX_Full_BIT = 91, ++ __ETHTOOL_LINK_MODE_MASK_NBITS = 92, ++}; ++ ++enum { ++ NAPI_STATE_SCHED = 0, ++ NAPI_STATE_MISSED = 1, ++ NAPI_STATE_DISABLE = 2, ++ NAPI_STATE_NPSVC = 3, ++ NAPI_STATE_LISTED = 4, ++ NAPI_STATE_NO_BUSY_POLL = 5, ++ NAPI_STATE_IN_BUSY_POLL = 6, ++}; ++ ++enum bpf_xdp_mode { ++ XDP_MODE_SKB = 0, ++ XDP_MODE_DRV = 1, ++ XDP_MODE_HW = 2, ++ __MAX_XDP_MODE = 3, ++}; ++ ++enum { ++ NETIF_MSG_DRV_BIT = 0, ++ NETIF_MSG_PROBE_BIT = 1, ++ NETIF_MSG_LINK_BIT = 2, ++ NETIF_MSG_TIMER_BIT = 3, ++ NETIF_MSG_IFDOWN_BIT = 4, ++ NETIF_MSG_IFUP_BIT = 5, ++ NETIF_MSG_RX_ERR_BIT = 6, ++ NETIF_MSG_TX_ERR_BIT = 7, ++ NETIF_MSG_TX_QUEUED_BIT = 8, ++ NETIF_MSG_INTR_BIT = 9, ++ NETIF_MSG_TX_DONE_BIT = 10, ++ NETIF_MSG_RX_STATUS_BIT = 11, ++ NETIF_MSG_PKTDATA_BIT = 12, ++ NETIF_MSG_HW_BIT = 13, ++ NETIF_MSG_WOL_BIT = 14, ++ NETIF_MSG_CLASS_COUNT = 15, ++}; ++ +struct aead_instance { + void (*free)(struct aead_instance *); + union { + struct { -+ char head[72]; ++ char head[64]; + struct crypto_instance base; + } s; + struct aead_alg alg; @@ -56785,10 +58853,46 @@ index 0000000..bcb9d76 + struct crypto_spawn base; +}; + ++enum crypto_attr_type_t { ++ CRYPTOCFGA_UNSPEC = 0, ++ CRYPTOCFGA_PRIORITY_VAL = 1, ++ CRYPTOCFGA_REPORT_LARVAL = 2, ++ CRYPTOCFGA_REPORT_HASH = 3, ++ CRYPTOCFGA_REPORT_BLKCIPHER = 4, ++ CRYPTOCFGA_REPORT_AEAD = 5, ++ CRYPTOCFGA_REPORT_COMPRESS = 6, ++ CRYPTOCFGA_REPORT_RNG = 7, ++ CRYPTOCFGA_REPORT_CIPHER = 8, ++ CRYPTOCFGA_REPORT_AKCIPHER = 9, ++ CRYPTOCFGA_REPORT_KPP = 10, ++ CRYPTOCFGA_REPORT_ACOMP = 11, ++ CRYPTOCFGA_STAT_LARVAL = 12, ++ CRYPTOCFGA_STAT_HASH = 13, ++ CRYPTOCFGA_STAT_BLKCIPHER = 14, ++ CRYPTOCFGA_STAT_AEAD = 15, ++ CRYPTOCFGA_STAT_COMPRESS = 16, ++ CRYPTOCFGA_STAT_RNG = 17, ++ CRYPTOCFGA_STAT_CIPHER = 18, ++ CRYPTOCFGA_STAT_AKCIPHER = 19, ++ CRYPTOCFGA_STAT_KPP = 20, ++ CRYPTOCFGA_STAT_ACOMP = 21, ++ __CRYPTOCFGA_MAX = 22, ++}; ++ ++struct crypto_report_aead { ++ char type[64]; ++ char geniv[64]; ++ unsigned int blocksize; ++ unsigned int maxauthsize; ++ unsigned int ivsize; ++}; ++ ++struct crypto_sync_skcipher; ++ +struct aead_geniv_ctx { + spinlock_t lock; + struct crypto_aead *child; -+ struct crypto_skcipher *sknull; ++ struct crypto_sync_skcipher *sknull; + u8 salt[0]; +}; + @@ -56806,48 +58910,31 @@ index 0000000..bcb9d76 + struct crypto_tfm base; +}; + -+enum crypto_attr_type_t { -+ CRYPTOCFGA_UNSPEC = 0, -+ CRYPTOCFGA_PRIORITY_VAL = 1, -+ CRYPTOCFGA_REPORT_LARVAL = 2, -+ CRYPTOCFGA_REPORT_HASH = 3, -+ CRYPTOCFGA_REPORT_BLKCIPHER = 4, -+ CRYPTOCFGA_REPORT_AEAD = 5, -+ CRYPTOCFGA_REPORT_COMPRESS = 6, -+ CRYPTOCFGA_REPORT_RNG = 7, -+ CRYPTOCFGA_REPORT_CIPHER = 8, -+ CRYPTOCFGA_REPORT_AKCIPHER = 9, -+ CRYPTOCFGA_REPORT_KPP = 10, -+ CRYPTOCFGA_REPORT_ACOMP = 11, -+ __CRYPTOCFGA_MAX = 12, ++struct crypto_cipher_spawn { ++ struct crypto_spawn base; +}; + -+struct crypto_report_aead { -+ char type[64]; -+ char geniv[64]; -+ unsigned int blocksize; -+ unsigned int maxauthsize; -+ unsigned int ivsize; ++struct crypto_sync_skcipher { ++ struct crypto_skcipher base; +}; + -+struct ablkcipher_walk { -+ struct { -+ struct page *page; -+ unsigned int offset; -+ } src; -+ struct { -+ struct page *page; -+ unsigned int offset; -+ } dst; -+ struct scatter_walk in; -+ unsigned int nbytes; -+ struct scatter_walk out; -+ unsigned int total; -+ struct list_head buffers; -+ u8 *iv_buffer; -+ u8 *iv; -+ int flags; -+ unsigned int blocksize; ++struct skcipher_instance { ++ void (*free)(struct skcipher_instance *); ++ union { ++ struct { ++ char head[64]; ++ struct crypto_instance base; ++ } s; ++ struct skcipher_alg alg; ++ }; ++}; ++ ++struct crypto_skcipher_spawn { ++ struct crypto_spawn base; ++}; ++ ++struct skcipher_ctx_simple { ++ struct crypto_cipher *cipher; +}; + +struct crypto_report_blkcipher { @@ -56859,59 +58946,6 @@ index 0000000..bcb9d76 + unsigned int ivsize; +}; + -+struct ablkcipher_buffer { -+ struct list_head entry; -+ struct scatter_walk dst; -+ unsigned int len; -+ void *data; -+}; -+ -+enum { -+ ABLKCIPHER_WALK_SLOW = 1, -+}; -+ -+struct blkcipher_walk { -+ union { -+ struct { -+ struct page *page; -+ long unsigned int offset; -+ } phys; -+ struct { -+ u8 *page; -+ u8 *addr; -+ } virt; -+ } src; -+ union { -+ struct { -+ struct page *page; -+ long unsigned int offset; -+ } phys; -+ struct { -+ u8 *page; -+ u8 *addr; -+ } virt; -+ } dst; -+ struct scatter_walk in; -+ unsigned int nbytes; -+ struct scatter_walk out; -+ unsigned int total; -+ void *page; -+ u8 *buffer; -+ u8 *iv; -+ unsigned int ivsize; -+ int flags; -+ unsigned int walk_blocksize; -+ unsigned int cipher_blocksize; -+ unsigned int alignmask; -+}; -+ -+enum { -+ BLKCIPHER_WALK_PHYS = 1, -+ BLKCIPHER_WALK_SLOW = 2, -+ BLKCIPHER_WALK_COPY = 4, -+ BLKCIPHER_WALK_DIFF = 8, -+}; -+ +enum { + SKCIPHER_WALK_PHYS = 1, + SKCIPHER_WALK_SLOW = 2, @@ -56937,6 +58971,8 @@ index 0000000..bcb9d76 + int (*export)(struct ahash_request *, void *); + int (*import)(struct ahash_request *, const void *); + int (*setkey)(struct crypto_ahash *, const u8 *, unsigned int); ++ int (*init_tfm)(struct crypto_ahash *); ++ void (*exit_tfm)(struct crypto_ahash *); + struct hash_alg_common halg; +}; + @@ -56952,7 +58988,14 @@ index 0000000..bcb9d76 +}; + +struct ahash_instance { -+ struct ahash_alg alg; ++ void (*free)(struct ahash_instance *); ++ union { ++ struct { ++ char head[88]; ++ struct crypto_instance base; ++ } s; ++ struct ahash_alg alg; ++ }; +}; + +struct crypto_ahash_spawn { @@ -56974,7 +59017,14 @@ index 0000000..bcb9d76 +}; + +struct shash_instance { -+ struct shash_alg alg; ++ void (*free)(struct shash_instance *); ++ union { ++ struct { ++ char head[96]; ++ struct crypto_instance base; ++ } s; ++ struct shash_alg alg; ++ }; +}; + +struct crypto_shash_spawn { @@ -57008,6 +59058,7 @@ index 0000000..bcb9d76 + unsigned int (*max_size)(struct crypto_akcipher *); + int (*init)(struct crypto_akcipher *); + void (*exit)(struct crypto_akcipher *); ++ u64 kabi_reserved1; + unsigned int reqsize; + struct crypto_alg base; +}; @@ -57016,7 +59067,7 @@ index 0000000..bcb9d76 + void (*free)(struct akcipher_instance *); + union { + struct { -+ char head[80]; ++ char head[88]; + struct crypto_instance base; + } s; + struct akcipher_alg alg; @@ -57198,9 +59249,9 @@ index 0000000..bcb9d76 + MPI d; +}; + -+struct crypto_template___2; ++struct asn1_decoder; + -+struct asn1_decoder___2; ++typedef int (*rsa_get_func)(void *, size_t, unsigned char, const void *, size_t); + +struct rsa_asn1_template { + const char *name; @@ -57230,24 +59281,6 @@ index 0000000..bcb9d76 + char type[64]; +}; + -+struct acomp_req { -+ struct crypto_async_request base; -+ struct scatterlist *src; -+ struct scatterlist *dst; -+ unsigned int slen; -+ unsigned int dlen; -+ u32 flags; -+ void *__ctx[0]; -+}; -+ -+struct crypto_acomp { -+ int (*compress)(struct acomp_req *); -+ int (*decompress)(struct acomp_req *); -+ void (*dst_free)(struct scatterlist *); -+ unsigned int reqsize; -+ struct crypto_tfm base; -+}; -+ +struct acomp_alg { + int (*compress)(struct acomp_req *); + int (*decompress)(struct acomp_req *); @@ -57274,6 +59307,12 @@ index 0000000..bcb9d76 + struct crypto_alg base; +}; + ++struct scomp_scratch { ++ spinlock_t lock; ++ void *src; ++ void *dst; ++}; ++ +struct cryptomgr_param { + struct rtattr *tb[34]; + struct { @@ -57313,49 +59352,134 @@ index 0000000..bcb9d76 + struct drbg_string *testentropy; +}; + ++enum OID { ++ OID_id_dsa_with_sha1 = 0, ++ OID_id_dsa = 1, ++ OID_id_ecPublicKey = 2, ++ OID_id_ecdsa_with_sha1 = 3, ++ OID_id_ecdsa_with_sha224 = 4, ++ OID_id_ecdsa_with_sha256 = 5, ++ OID_id_ecdsa_with_sha384 = 6, ++ OID_id_ecdsa_with_sha512 = 7, ++ OID_rsaEncryption = 8, ++ OID_md2WithRSAEncryption = 9, ++ OID_md3WithRSAEncryption = 10, ++ OID_md4WithRSAEncryption = 11, ++ OID_sha1WithRSAEncryption = 12, ++ OID_sha256WithRSAEncryption = 13, ++ OID_sha384WithRSAEncryption = 14, ++ OID_sha512WithRSAEncryption = 15, ++ OID_sha224WithRSAEncryption = 16, ++ OID_data = 17, ++ OID_signed_data = 18, ++ OID_email_address = 19, ++ OID_contentType = 20, ++ OID_messageDigest = 21, ++ OID_signingTime = 22, ++ OID_smimeCapabilites = 23, ++ OID_smimeAuthenticatedAttrs = 24, ++ OID_md2 = 25, ++ OID_md4 = 26, ++ OID_md5 = 27, ++ OID_msIndirectData = 28, ++ OID_msStatementType = 29, ++ OID_msSpOpusInfo = 30, ++ OID_msPeImageDataObjId = 31, ++ OID_msIndividualSPKeyPurpose = 32, ++ OID_msOutlookExpress = 33, ++ OID_certAuthInfoAccess = 34, ++ OID_sha1 = 35, ++ OID_sha256 = 36, ++ OID_sha384 = 37, ++ OID_sha512 = 38, ++ OID_sha224 = 39, ++ OID_commonName = 40, ++ OID_surname = 41, ++ OID_countryName = 42, ++ OID_locality = 43, ++ OID_stateOrProvinceName = 44, ++ OID_organizationName = 45, ++ OID_organizationUnitName = 46, ++ OID_title = 47, ++ OID_description = 48, ++ OID_name = 49, ++ OID_givenName = 50, ++ OID_initials = 51, ++ OID_generationalQualifier = 52, ++ OID_subjectKeyIdentifier = 53, ++ OID_keyUsage = 54, ++ OID_subjectAltName = 55, ++ OID_issuerAltName = 56, ++ OID_basicConstraints = 57, ++ OID_crlDistributionPoints = 58, ++ OID_certPolicies = 59, ++ OID_authorityKeyIdentifier = 60, ++ OID_extKeyUsage = 61, ++ OID_gostCPSignA = 62, ++ OID_gostCPSignB = 63, ++ OID_gostCPSignC = 64, ++ OID_gost2012PKey256 = 65, ++ OID_gost2012PKey512 = 66, ++ OID_gost2012Digest256 = 67, ++ OID_gost2012Digest512 = 68, ++ OID_gost2012Signature256 = 69, ++ OID_gost2012Signature512 = 70, ++ OID_gostTC26Sign256A = 71, ++ OID_gostTC26Sign256B = 72, ++ OID_gostTC26Sign256C = 73, ++ OID_gostTC26Sign256D = 74, ++ OID_gostTC26Sign512A = 75, ++ OID_gostTC26Sign512B = 76, ++ OID_gostTC26Sign512C = 77, ++ OID_sm2 = 78, ++ OID_sm3 = 79, ++ OID_SM2_with_SM3 = 80, ++ OID_sm3WithRSAEncryption = 81, ++ OID_mgf1 = 82, ++ OID_rsassaPSS = 83, ++ OID__NR = 84, ++}; ++ +struct hash_testvec { + const char *key; + const char *plaintext; + const char *digest; -+ unsigned char tap[8]; -+ short unsigned int psize; -+ unsigned char np; -+ unsigned char ksize; ++ unsigned int psize; ++ short unsigned int ksize; ++ int setkey_error; ++ int digest_error; +}; + +struct cipher_testvec { + const char *key; + const char *iv; ++ const char *iv_out; + const char *ptext; + const char *ctext; -+ short unsigned int tap[8]; -+ int np; -+ unsigned char also_non_np; -+ bool fail; + unsigned char wk; -+ unsigned char klen; -+ short unsigned int len; ++ short unsigned int klen; ++ unsigned int len; + bool fips_skip; + bool generates_iv; ++ int setkey_error; ++ int crypt_error; +}; + +struct aead_testvec { + const char *key; + const char *iv; -+ const char *input; ++ const char *ptext; + const char *assoc; -+ const char *result; -+ unsigned char tap[8]; -+ unsigned char atap[8]; -+ int np; -+ int anp; -+ bool fail; ++ const char *ctext; + unsigned char novrfy; + unsigned char wk; + unsigned char klen; -+ short unsigned int ilen; -+ short unsigned int alen; -+ short unsigned int rlen; ++ unsigned int plen; ++ unsigned int clen; ++ unsigned int alen; ++ int setkey_error; ++ int setauthsize_error; ++ int crypt_error; +}; + +struct cprng_testvec { @@ -57387,13 +59511,16 @@ index 0000000..bcb9d76 + +struct akcipher_testvec { + const unsigned char *key; ++ const unsigned char *params; + const unsigned char *m; + const unsigned char *c; + unsigned int key_len; ++ unsigned int param_len; + unsigned int m_size; + unsigned int c_size; + bool public_key_vec; + bool siggen_sigver_test; ++ enum OID algo; +}; + +struct kpp_testvec { @@ -57418,14 +59545,10 @@ index 0000000..bcb9d76 +}; + +struct aead_test_suite { -+ struct { -+ const struct aead_testvec *vecs; -+ unsigned int count; -+ } enc; -+ struct { -+ const struct aead_testvec *vecs; -+ unsigned int count; -+ } dec; ++ const struct aead_testvec *vecs; ++ unsigned int count; ++ unsigned int einval_allowed: 1; ++ unsigned int aad_iv: 1; +}; + +struct cipher_test_suite { @@ -57471,6 +59594,7 @@ index 0000000..bcb9d76 + +struct alg_test_desc { + const char *alg; ++ const char *generic_driver; + int (*test)(const struct alg_test_desc *, const char *, u32, u32); + int fips_allowed; + union { @@ -57485,10 +59609,51 @@ index 0000000..bcb9d76 + } suite; +}; + -+enum hash_test { -+ HASH_TEST_DIGEST = 0, -+ HASH_TEST_FINAL = 1, -+ HASH_TEST_FINUP = 2, ++enum flush_type { ++ FLUSH_TYPE_NONE = 0, ++ FLUSH_TYPE_FLUSH = 1, ++ FLUSH_TYPE_REIMPORT = 2, ++}; ++ ++enum finalization_type { ++ FINALIZATION_TYPE_FINAL = 0, ++ FINALIZATION_TYPE_FINUP = 1, ++ FINALIZATION_TYPE_DIGEST = 2, ++}; ++ ++struct test_sg_division { ++ unsigned int proportion_of_total; ++ unsigned int offset; ++ bool offset_relative_to_alignmask; ++ enum flush_type flush_type; ++ bool nosimd; ++}; ++ ++struct testvec_config { ++ const char *name; ++ bool inplace; ++ u32 req_flags; ++ struct test_sg_division src_divs[8]; ++ struct test_sg_division dst_divs[8]; ++ unsigned int iv_offset; ++ unsigned int key_offset; ++ bool iv_offset_relative_to_alignmask; ++ bool key_offset_relative_to_alignmask; ++ enum finalization_type finalization_type; ++ bool nosimd; ++}; ++ ++struct test_sglist { ++ char *bufs[8]; ++ struct scatterlist sgl[8]; ++ struct scatterlist sgl_saved[8]; ++ struct scatterlist *sgl_ptr; ++ unsigned int nents; ++}; ++ ++struct cipher_test_sglists { ++ struct test_sglist src; ++ struct test_sglist dst; +}; + +struct hmac_ctx { @@ -57501,6 +59666,24 @@ index 0000000..bcb9d76 + u64 byte_count; +}; + ++enum blake2b_constant { ++ BLAKE2B_BLOCKBYTES = 128, ++ BLAKE2B_KEYBYTES = 64, ++}; ++ ++struct blake2b_state { ++ u64 h[8]; ++ u64 t[2]; ++ u64 f[2]; ++ u8 buf[128]; ++ size_t buflen; ++}; ++ ++struct blake2b_tfm_ctx { ++ u8 key[64]; ++ unsigned int keylen; ++}; ++ +struct gf128mul_4k { + be128 t[256]; +}; @@ -57509,22 +59692,6 @@ index 0000000..bcb9d76 + struct gf128mul_4k *t[16]; +}; + -+struct crypto_ecb_ctx { -+ struct crypto_cipher *child; -+}; -+ -+struct crypto_cbc_ctx { -+ struct crypto_cipher *child; -+}; -+ -+struct crypto_cfb_ctx { -+ struct crypto_cipher *child; -+}; -+ -+struct crypto_ctr_ctx { -+ struct crypto_cipher *child; -+}; -+ +struct crypto_rfc3686_ctx { + struct crypto_skcipher *child; + u8 nonce[4]; @@ -57562,7 +59729,7 @@ index 0000000..bcb9d76 + +struct crypto_rfc4543_ctx { + struct crypto_aead *child; -+ struct crypto_skcipher *null; ++ struct crypto_sync_skcipher *null; + u8 nonce[4]; +}; + @@ -57590,10 +59757,6 @@ index 0000000..bcb9d76 + } u; +}; + -+struct cryptd_ablkcipher { -+ struct crypto_ablkcipher base; -+}; -+ +struct cryptd_skcipher { + struct crypto_skcipher base; +}; @@ -57602,6 +59765,10 @@ index 0000000..bcb9d76 + struct crypto_ahash base; +}; + ++struct cryptd_aead { ++ struct crypto_aead base; ++}; ++ +struct cryptd_cpu_queue { + struct crypto_queue queue; + struct work_struct work; @@ -57631,18 +59798,9 @@ index 0000000..bcb9d76 + struct cryptd_queue *queue; +}; + -+struct cryptd_blkcipher_ctx { -+ atomic_t refcnt; -+ struct crypto_blkcipher *child; -+}; -+ -+struct cryptd_blkcipher_request_ctx { -+ crypto_completion_t complete; -+}; -+ +struct cryptd_skcipher_ctx { -+ atomic_t refcnt; -+ struct crypto_skcipher *child; ++ refcount_t refcnt; ++ struct crypto_sync_skcipher *child; +}; + +struct cryptd_skcipher_request_ctx { @@ -57650,7 +59808,7 @@ index 0000000..bcb9d76 +}; + +struct cryptd_hash_ctx { -+ atomic_t refcnt; ++ refcount_t refcnt; + struct crypto_shash *child; +}; + @@ -57660,7 +59818,7 @@ index 0000000..bcb9d76 +}; + +struct cryptd_aead_ctx { -+ atomic_t refcnt; ++ refcount_t refcnt; + struct crypto_aead *child; +}; + @@ -57668,31 +59826,6 @@ index 0000000..bcb9d76 + crypto_completion_t complete; +}; + -+typedef unsigned char Byte; -+ -+typedef long unsigned int uLong; -+ -+struct internal_state; -+ -+struct z_stream_s { -+ const Byte *next_in; -+ uLong avail_in; -+ uLong total_in; -+ Byte *next_out; -+ uLong avail_out; -+ uLong total_out; -+ char *msg; -+ struct internal_state *state; -+ void *workspace; -+ int data_type; -+ uLong adler; -+ uLong reserved; -+}; -+ -+struct internal_state { -+ int dummy; -+}; -+ +struct deflate_ctx { + struct z_stream_s comp_stream; + struct z_stream_s decomp_stream; @@ -57714,6 +59847,28 @@ index 0000000..bcb9d76 + void *lzo_comp_mem; +}; + ++struct lzorle_ctx { ++ void *lzorle_comp_mem; ++}; ++ ++struct xxh64_state { ++ uint64_t total_len; ++ uint64_t v1; ++ uint64_t v2; ++ uint64_t v3; ++ uint64_t v4; ++ uint64_t mem64[4]; ++ uint32_t memsize; ++}; ++ ++struct xxhash64_tfm_ctx { ++ u64 seed; ++}; ++ ++struct xxhash64_desc_ctx { ++ struct xxh64_state xxhstate; ++}; ++ +struct crypto_report_rng { + char type[64]; + unsigned int seedsize; @@ -57764,6 +59919,8 @@ index 0000000..bcb9d76 + struct scatterlist sg_out; + bool seeded; + bool pr; ++ bool fips_primed; ++ unsigned char *prev; + struct work_struct seed_work; + struct crypto_rng *jent; + const struct drbg_state_ops *d_ops; @@ -57789,27 +59946,26 @@ index 0000000..bcb9d76 + __u64 prev_time; + __u64 last_delta; + __s64 last_delta2; -+ unsigned int stuck: 1; + unsigned int osr; -+ unsigned int stir: 1; -+ unsigned int disable_unbias: 1; + unsigned char *mem; + unsigned int memlocation; + unsigned int memblocks; + unsigned int memblocksize; + unsigned int memaccessloops; ++ int rct_count; ++ unsigned int apt_observations; ++ unsigned int apt_count; ++ unsigned int apt_base; ++ unsigned int apt_base_set: 1; ++ unsigned int health_failure: 1; +}; + -+union c { -+ __u64 u64; -+ __u32 u32[2]; -+}; -+ -+struct rand_data___2; ++struct rand_data; + +struct jitterentropy { + spinlock_t jent_lock; -+ struct rand_data___2 *entropy_collector; ++ struct rand_data *entropy_collector; ++ unsigned int reset_cnt; +}; + +struct ghash_ctx { @@ -57821,12 +59977,12 @@ index 0000000..bcb9d76 + u32 bytes; +}; + -+struct sockaddr_alg { ++struct sockaddr_alg_new { + __u16 salg_family; + __u8 salg_type[14]; + __u32 salg_feat; + __u32 salg_mask; -+ __u8 salg_name[64]; ++ __u8 salg_name[0]; +}; + +struct af_alg_iv { @@ -57858,8 +60014,8 @@ index 0000000..bcb9d76 +struct alg_sock { + struct sock sk; + struct sock *parent; -+ unsigned int refcnt; -+ unsigned int nokey_refcnt; ++ atomic_t refcnt; ++ atomic_t nokey_refcnt; + const struct af_alg_type *type; + void *private; +}; @@ -57868,6 +60024,7 @@ index 0000000..bcb9d76 + void * (*bind)(const char *, u32, u32); + void (*release)(void *); + int (*setkey)(void *, const u8 *, unsigned int); ++ int (*setentropy)(void *, sockptr_t, unsigned int); + int (*accept)(void *, struct sock *); + int (*accept_nokey)(void *, struct sock *); + int (*setauthsize)(void *, unsigned int); @@ -57927,6 +60084,7 @@ index 0000000..bcb9d76 + bool more; + bool merge; + bool enc; ++ bool init; + unsigned int len; +}; + @@ -57947,37 +60105,18 @@ index 0000000..bcb9d76 +struct rng_ctx { + unsigned int len; + struct crypto_rng *drng; ++ u8 *addtl; ++ size_t addtl_len; ++}; ++ ++struct rng_parent_ctx { ++ struct crypto_rng *drng; ++ u8 *entropy; +}; + +struct aead_tfm { + struct crypto_aead *aead; -+ struct crypto_skcipher *null_tfm; -+}; -+ -+enum { -+ ZSTD_error_no_error = 0, -+ ZSTD_error_GENERIC = 1, -+ ZSTD_error_prefix_unknown = 2, -+ ZSTD_error_version_unsupported = 3, -+ ZSTD_error_parameter_unknown = 4, -+ ZSTD_error_frameParameter_unsupported = 5, -+ ZSTD_error_frameParameter_unsupportedBy32bits = 6, -+ ZSTD_error_frameParameter_windowTooLarge = 7, -+ ZSTD_error_compressionParameter_unsupported = 8, -+ ZSTD_error_init_missing = 9, -+ ZSTD_error_memory_allocation = 10, -+ ZSTD_error_stage_wrong = 11, -+ ZSTD_error_dstSize_tooSmall = 12, -+ ZSTD_error_srcSize_wrong = 13, -+ ZSTD_error_corruption_detected = 14, -+ ZSTD_error_checksum_wrong = 15, -+ ZSTD_error_tableLog_tooLarge = 16, -+ ZSTD_error_maxSymbolValue_tooLarge = 17, -+ ZSTD_error_maxSymbolValue_tooSmall = 18, -+ ZSTD_error_dictionary_corrupted = 19, -+ ZSTD_error_dictionary_wrong = 20, -+ ZSTD_error_dictionaryCreation_failed = 21, -+ ZSTD_error_maxCode = 22, ++ struct crypto_sync_skcipher *null_tfm; +}; + +typedef enum { @@ -58038,12 +60177,14 @@ index 0000000..bcb9d76 + void *id[2]; +}; + -+struct asymmetric_key_subtype___2 { ++struct asymmetric_key_subtype { + struct module *owner; + const char *name; + short unsigned int name_len; + void (*describe)(const struct key *, struct seq_file *); + void (*destroy)(void *, void *); ++ int (*query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); ++ int (*eds_op)(struct kernel_pkey_params *, const void *, void *); + int (*verify_signature)(const struct key *, const struct public_key_signature *); +}; + @@ -58057,8 +60198,17 @@ index 0000000..bcb9d76 +struct public_key { + void *key; + u32 keylen; ++ enum OID algo; ++ void *params; ++ u32 paramlen; ++ bool key_is_private; + const char *id_type; + const char *pkey_algo; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; +}; + +enum x509_actions { @@ -58068,13 +60218,14 @@ index 0000000..bcb9d76 + ACT_x509_note_issuer = 3, + ACT_x509_note_not_after = 4, + ACT_x509_note_not_before = 5, -+ ACT_x509_note_pkey_algo = 6, -+ ACT_x509_note_serial = 7, -+ ACT_x509_note_signature = 8, -+ ACT_x509_note_subject = 9, -+ ACT_x509_note_tbs_certificate = 10, -+ ACT_x509_process_extension = 11, -+ NR__x509_actions = 12, ++ ACT_x509_note_params = 6, ++ ACT_x509_note_pkey_algo = 7, ++ ACT_x509_note_serial = 8, ++ ACT_x509_note_signature = 9, ++ ACT_x509_note_subject = 10, ++ ACT_x509_note_tbs_certificate = 11, ++ ACT_x509_process_extension = 12, ++ NR__x509_actions = 13, +}; + +enum x509_akid_actions { @@ -58086,68 +60237,6 @@ index 0000000..bcb9d76 + NR__x509_akid_actions = 5, +}; + -+enum OID { -+ OID_id_dsa_with_sha1 = 0, -+ OID_id_dsa = 1, -+ OID_id_ecdsa_with_sha1 = 2, -+ OID_id_ecPublicKey = 3, -+ OID_rsaEncryption = 4, -+ OID_md2WithRSAEncryption = 5, -+ OID_md3WithRSAEncryption = 6, -+ OID_md4WithRSAEncryption = 7, -+ OID_sha1WithRSAEncryption = 8, -+ OID_sha256WithRSAEncryption = 9, -+ OID_sha384WithRSAEncryption = 10, -+ OID_sha512WithRSAEncryption = 11, -+ OID_sha224WithRSAEncryption = 12, -+ OID_data = 13, -+ OID_signed_data = 14, -+ OID_email_address = 15, -+ OID_contentType = 16, -+ OID_messageDigest = 17, -+ OID_signingTime = 18, -+ OID_smimeCapabilites = 19, -+ OID_smimeAuthenticatedAttrs = 20, -+ OID_md2 = 21, -+ OID_md4 = 22, -+ OID_md5 = 23, -+ OID_msIndirectData = 24, -+ OID_msStatementType = 25, -+ OID_msSpOpusInfo = 26, -+ OID_msPeImageDataObjId = 27, -+ OID_msIndividualSPKeyPurpose = 28, -+ OID_msOutlookExpress = 29, -+ OID_certAuthInfoAccess = 30, -+ OID_sha1 = 31, -+ OID_sha256 = 32, -+ OID_sha384 = 33, -+ OID_sha512 = 34, -+ OID_sha224 = 35, -+ OID_commonName = 36, -+ OID_surname = 37, -+ OID_countryName = 38, -+ OID_locality = 39, -+ OID_stateOrProvinceName = 40, -+ OID_organizationName = 41, -+ OID_organizationUnitName = 42, -+ OID_title = 43, -+ OID_description = 44, -+ OID_name = 45, -+ OID_givenName = 46, -+ OID_initials = 47, -+ OID_generationalQualifier = 48, -+ OID_subjectKeyIdentifier = 49, -+ OID_keyUsage = 50, -+ OID_subjectAltName = 51, -+ OID_issuerAltName = 52, -+ OID_basicConstraints = 53, -+ OID_crlDistributionPoints = 54, -+ OID_certPolicies = 55, -+ OID_authorityKeyIdentifier = 56, -+ OID_extKeyUsage = 57, -+ OID__NR = 58, -+}; -+ +struct x509_certificate { + struct x509_certificate *next; + struct x509_certificate *signer; @@ -58186,6 +60275,9 @@ index 0000000..bcb9d76 + const void *cert_start; + const void *key; + size_t key_size; ++ const void *params; ++ size_t params_size; ++ enum OID key_algo; + enum OID last_oid; + enum OID algo_oid; + unsigned char nr_mpi; @@ -58237,7 +60329,7 @@ index 0000000..bcb9d76 + struct public_key_signature *sig; +}; + -+struct pkcs7_message___2 { ++struct pkcs7_message { + struct x509_certificate *certs; + struct x509_certificate *crl; + struct pkcs7_signed_info *signed_infos; @@ -58250,7 +60342,7 @@ index 0000000..bcb9d76 +}; + +struct pkcs7_parse_context { -+ struct pkcs7_message___2 *msg; ++ struct pkcs7_message *msg; + struct pkcs7_signed_info *sinfo; + struct pkcs7_signed_info **ppsinfo; + struct x509_certificate *certs; @@ -58288,7 +60380,7 @@ index 0000000..bcb9d76 + uint16_t oem_info; + uint16_t reserved1[10]; + uint32_t peaddr; -+ char message[64]; ++ char message[0]; +}; + +struct pe_hdr { @@ -58432,7 +60524,76 @@ index 0000000..bcb9d76 + NR__mscode_actions = 3, +}; + -+struct simd_skcipher_alg___2 { ++enum pgp_pubkey_algo { ++ PGP_PUBKEY_RSA_ENC_OR_SIG = 1, ++ PGP_PUBKEY_RSA_ENC_ONLY = 2, ++ PGP_PUBKEY_RSA_SIG_ONLY = 3, ++ PGP_PUBKEY_ELGAMAL = 16, ++ PGP_PUBKEY_DSA = 17, ++ PGP_PUBKEY__LAST = 18, ++}; ++ ++enum pgp_packet_tag { ++ PGP_PKT_RESERVED = 0, ++ PGP_PKT_PUBKEY_ENC_SESSION_KEY = 1, ++ PGP_PKT_SIGNATURE = 2, ++ PGP_PKT_SYMKEY_ENC_SESSION_KEY = 3, ++ PGP_PKT_ONEPASS_SIGNATURE = 4, ++ PGP_PKT_SECRET_KEY = 5, ++ PGP_PKT_PUBLIC_KEY = 6, ++ PGP_PKT_SECRET_SUBKEY = 7, ++ PGP_PKT_COMPRESSED_DATA = 8, ++ PGP_PKT_SYM_ENC_DATA = 9, ++ PGP_PKT_MARKER = 10, ++ PGP_PKT_LITERAL_DATA = 11, ++ PGP_PKT_TRUST = 12, ++ PGP_PKT_USER_ID = 13, ++ PGP_PKT_PUBLIC_SUBKEY = 14, ++ PGP_PKT_USER_ATTRIBUTE = 17, ++ PGP_PKT_SYM_ENC_AND_INTEG_DATA = 18, ++ PGP_PKT_MODIFY_DETECT_CODE = 19, ++ PGP_PKT_PRIVATE_0 = 60, ++ PGP_PKT_PRIVATE_3 = 63, ++ PGP_PKT__HIGHEST = 63, ++}; ++ ++enum pgp_key_version { ++ PGP_KEY_VERSION_2 = 2, ++ PGP_KEY_VERSION_3 = 3, ++ PGP_KEY_VERSION_4 = 4, ++}; ++ ++struct pgp_parse_context { ++ u64 types_of_interest; ++ int (*process_packet)(struct pgp_parse_context *, enum pgp_packet_tag, u8, const u8 *, size_t); ++}; ++ ++struct pgp_parse_pubkey { ++ enum pgp_key_version version: 8; ++ enum pgp_pubkey_algo pubkey_algo: 8; ++ __kernel_old_time_t creation_time; ++ __kernel_old_time_t expires_at; ++}; ++ ++struct preload_pgp_keys_context { ++ struct pgp_parse_context pgp; ++ key_ref_t keyring; ++ const u8 *key_start; ++ const u8 *key_end; ++ bool found_key; ++}; ++ ++struct pgp_key_data_parse_context { ++ struct pgp_parse_context pgp; ++ struct public_key *pub; ++ unsigned char *raw_fingerprint; ++ char *fingerprint; ++ const char *user_id; ++ size_t user_id_len; ++ size_t fingerprint_len; ++}; ++ ++struct simd_skcipher_alg { + const char *ialg_name; + struct skcipher_alg alg; +}; @@ -58441,6 +60602,23 @@ index 0000000..bcb9d76 + struct cryptd_skcipher *cryptd_tfm; +}; + ++struct simd_aead_alg { ++ const char *ialg_name; ++ struct aead_alg alg; ++}; ++ ++struct simd_aead_ctx { ++ struct cryptd_aead *cryptd_tfm; ++}; ++ ++enum stat_group { ++ STAT_READ = 0, ++ STAT_WRITE = 1, ++ STAT_DISCARD = 2, ++ STAT_FLUSH = 3, ++ NR_STAT_GROUPS = 4, ++}; ++ +struct biovec_slab { + int nr_vecs; + char *name; @@ -58449,7 +60627,8 @@ index 0000000..bcb9d76 + +enum rq_qos_id { + RQ_QOS_WBT = 0, -+ RQ_QOS_CGROUP = 1, ++ RQ_QOS_LATENCY = 1, ++ RQ_QOS_COST = 2, +}; + +struct rq_qos_ops; @@ -58459,26 +60638,28 @@ index 0000000..bcb9d76 + struct request_queue *q; + enum rq_qos_id id; + struct rq_qos *next; ++ struct dentry *debugfs_dir; +}; + -+struct rq_map_data { -+ struct page **pages; -+ int page_order; -+ int nr_entries; -+ long unsigned int offset; -+ int null_mapped; -+ int from_user; ++enum hctx_type { ++ HCTX_TYPE_DEFAULT = 0, ++ HCTX_TYPE_READ = 1, ++ HCTX_TYPE_POLL = 2, ++ HCTX_MAX_TYPES = 3, +}; + +struct rq_qos_ops { -+ void (*throttle)(struct rq_qos *, struct bio *, spinlock_t *); ++ void (*throttle)(struct rq_qos *, struct bio *); + void (*track)(struct rq_qos *, struct request *, struct bio *); ++ void (*merge)(struct rq_qos *, struct request *, struct bio *); + void (*issue)(struct rq_qos *, struct request *); + void (*requeue)(struct rq_qos *, struct request *); + void (*done)(struct rq_qos *, struct request *); + void (*done_bio)(struct rq_qos *, struct bio *); + void (*cleanup)(struct rq_qos *, struct bio *); ++ void (*queue_depth_changed)(struct rq_qos *); + void (*exit)(struct rq_qos *); ++ const struct blk_mq_debugfs_attr *debugfs_attrs; +}; + +struct bio_slab { @@ -58488,29 +60669,21 @@ index 0000000..bcb9d76 + char name[8]; +}; + -+struct bio_map_data { -+ int is_our_pages; -+ struct iov_iter iter; -+ struct iovec iov[0]; -+}; -+ -+enum { -+ ELV_MQUEUE_MAY = 0, -+ ELV_MQUEUE_NO = 1, -+ ELV_MQUEUE_MUST = 2, -+}; -+ +enum { + BLK_MQ_F_SHOULD_MERGE = 1, -+ BLK_MQ_F_TAG_SHARED = 2, -+ BLK_MQ_F_SG_MERGE = 4, ++ BLK_MQ_F_TAG_QUEUE_SHARED = 2, ++ BLK_MQ_F_STACKING = 4, ++ BLK_MQ_F_TAG_HCTX_SHARED = 8, + BLK_MQ_F_BLOCKING = 32, + BLK_MQ_F_NO_SCHED = 64, ++ BLK_MQ_F_NO_SCHED_BY_DEFAULT = 128, + BLK_MQ_F_ALLOC_POLICY_START_BIT = 8, + BLK_MQ_F_ALLOC_POLICY_BITS = 1, + BLK_MQ_S_STOPPED = 0, + BLK_MQ_S_TAG_ACTIVE = 1, + BLK_MQ_S_SCHED_RESTART = 2, ++ BLK_MQ_S_INACTIVE = 3, ++ BLK_MQ_S_DTAG_WAIT = 4, + BLK_MQ_MAX_DEPTH = 10240, + BLK_MQ_CPU_WORK_BATCH = 8, +}; @@ -58522,13 +60695,6 @@ index 0000000..bcb9d76 + WBT_NUM_RWQ = 3, +}; + -+enum { -+ BLKPREP_OK = 0, -+ BLKPREP_KILL = 1, -+ BLKPREP_DEFER = 2, -+ BLKPREP_INVALID = 3, -+}; -+ +struct blk_plug_cb; + +typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool); @@ -58539,11 +60705,15 @@ index 0000000..bcb9d76 + void *data; +}; + ++struct request_wrapper { ++ struct request rq; ++ u64 stat_time_ns; ++}; ++ +enum { + BLK_MQ_REQ_NOWAIT = 1, + BLK_MQ_REQ_RESERVED = 2, -+ BLK_MQ_REQ_INTERNAL = 4, -+ BLK_MQ_REQ_PREEMPT = 8, ++ BLK_MQ_REQ_PM = 4, +}; + +struct trace_event_raw_block_buffer { @@ -58717,10 +60887,54 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_block_rq_remap {}; + ++typedef void (*btf_trace_block_touch_buffer)(void *, struct buffer_head *); ++ ++typedef void (*btf_trace_block_dirty_buffer)(void *, struct buffer_head *); ++ ++typedef void (*btf_trace_block_rq_requeue)(void *, struct request_queue *, struct request *); ++ ++typedef void (*btf_trace_block_rq_complete)(void *, struct request *, int, unsigned int); ++ ++typedef void (*btf_trace_block_rq_insert)(void *, struct request_queue *, struct request *); ++ ++typedef void (*btf_trace_block_rq_issue)(void *, struct request_queue *, struct request *); ++ ++typedef void (*btf_trace_block_rq_merge)(void *, struct request_queue *, struct request *); ++ ++typedef void (*btf_trace_block_bio_bounce)(void *, struct request_queue *, struct bio *); ++ ++typedef void (*btf_trace_block_bio_complete)(void *, struct request_queue *, struct bio *); ++ ++typedef void (*btf_trace_block_bio_backmerge)(void *, struct request_queue *, struct request *, struct bio *); ++ ++typedef void (*btf_trace_block_bio_frontmerge)(void *, struct request_queue *, struct request *, struct bio *); ++ ++typedef void (*btf_trace_block_bio_queue)(void *, struct request_queue *, struct bio *); ++ ++typedef void (*btf_trace_block_getrq)(void *, struct request_queue *, struct bio *, int); ++ ++typedef void (*btf_trace_block_sleeprq)(void *, struct request_queue *, struct bio *, int); ++ ++typedef void (*btf_trace_block_plug)(void *, struct request_queue *); ++ ++typedef void (*btf_trace_block_unplug)(void *, struct request_queue *, unsigned int, bool); ++ ++typedef void (*btf_trace_block_split)(void *, struct request_queue *, struct bio *, unsigned int); ++ ++typedef void (*btf_trace_block_bio_remap)(void *, struct request_queue *, struct bio *, dev_t, sector_t); ++ ++typedef void (*btf_trace_block_rq_remap)(void *, struct request_queue *, struct request *, dev_t, sector_t); ++ ++enum { ++ BLK_MQ_NO_TAG = 4294967295, ++ BLK_MQ_TAG_MIN = 1, ++ BLK_MQ_TAG_MAX = 4294967294, ++}; ++ +struct request_queue_wrapper { + struct request_queue q; -+ struct mutex mq_freeze_lock; -+ int mq_freeze_depth; ++ struct sbitmap_queue sched_bitmap_tags; ++ struct sbitmap_queue sched_breserved_tags; +}; + +struct queue_sysfs_entry { @@ -58743,7 +60957,7 @@ index 0000000..bcb9d76 + BLK_SAFE_MAX_SECTORS = 255, + BLK_DEF_MAX_SECTORS = 2560, + BLK_MAX_SEGMENT_SIZE = 65536, -+ BLK_SEG_BOUNDARY_MASK = -1, ++ BLK_SEG_BOUNDARY_MASK = 4294967295, +}; + +enum { @@ -58751,6 +60965,33 @@ index 0000000..bcb9d76 + ICQ_DESTROYED = 8, +}; + ++struct rq_map_data { ++ struct page **pages; ++ int page_order; ++ int nr_entries; ++ long unsigned int offset; ++ int null_mapped; ++ int from_user; ++}; ++ ++struct bio_map_data { ++ bool is_our_pages: 1; ++ bool is_null_mapped: 1; ++ struct iov_iter iter; ++ struct iovec iov[0]; ++}; ++ ++struct req_iterator { ++ struct bvec_iter iter; ++ struct bio *bio; ++}; ++ ++enum bio_merge_status { ++ BIO_MERGE_OK = 0, ++ BIO_MERGE_NONE = 1, ++ BIO_MERGE_FAILED = 2, ++}; ++ +typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); + +enum { @@ -58758,20 +60999,9 @@ index 0000000..bcb9d76 + BLK_MQ_UNIQUE_TAG_MASK = 65535, +}; + -+struct blk_mq_tags_wrapper { -+ struct blk_mq_tags tags; -+ spinlock_t lock; -+}; -+ -+enum { -+ BLK_MQ_TAG_FAIL = -1, -+ BLK_MQ_TAG_MIN = 1, -+ BLK_MQ_TAG_MAX = -2, -+}; -+ +struct mq_inflight { + struct hd_struct *part; -+ unsigned int *inflight; ++ unsigned int inflight[2]; +}; + +struct flush_busy_ctx_data { @@ -58784,15 +61014,31 @@ index 0000000..bcb9d76 + struct request *rq; +}; + ++enum prep_dispatch { ++ PREP_DISPATCH_OK = 0, ++ PREP_DISPATCH_NO_TAG = 1, ++ PREP_DISPATCH_NO_BUDGET = 2, ++}; ++ ++struct rq_iter_data { ++ struct blk_mq_hw_ctx *hctx; ++ bool has_rq; ++}; ++ +struct blk_mq_qe_pair { + struct list_head node; + struct request_queue *q; + struct elevator_type *type; +}; + -+typedef void busy_iter_fn(struct blk_mq_hw_ctx *, struct request *, void *, bool); ++struct sbq_wait { ++ struct sbitmap_queue *sbq; ++ struct wait_queue_entry wait; ++}; + -+typedef void busy_tag_iter_fn(struct request *, void *, bool); ++typedef bool busy_iter_fn(struct blk_mq_hw_ctx *, struct request *, void *, bool); ++ ++typedef bool busy_tag_iter_fn(struct request *, void *, bool); + +struct bt_iter_data { + struct blk_mq_hw_ctx *hctx; @@ -58805,7 +61051,7 @@ index 0000000..bcb9d76 + struct blk_mq_tags *tags; + busy_tag_iter_fn *fn; + void *data; -+ bool reserved; ++ unsigned int flags; +}; + +struct blk_queue_stats { @@ -58826,12 +61072,7 @@ index 0000000..bcb9d76 + ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t); +}; + -+struct disk_part_iter { -+ struct gendisk *disk; -+ struct hd_struct *part; -+ int idx; -+ unsigned int flags; -+}; ++typedef u32 compat_caddr_t; + +struct hd_geometry { + unsigned char heads; @@ -58881,6 +61122,22 @@ index 0000000..bcb9d76 + __u32 __pad; +}; + ++struct compat_blkpg_ioctl_arg { ++ compat_int_t op; ++ compat_int_t flags; ++ compat_int_t datalen; ++ compat_caddr_t data; ++}; ++ ++struct compat_hd_geometry { ++ unsigned char heads; ++ unsigned char sectors; ++ short unsigned int cylinders; ++ u32 start; ++}; ++ ++struct klist_node; ++ +struct klist { + spinlock_t k_lock; + struct list_head k_list; @@ -58888,6 +61145,12 @@ index 0000000..bcb9d76 + void (*put)(struct klist_node *); +}; + ++struct klist_node { ++ void *n_klist; ++ struct list_head n_node; ++ struct kref n_ref; ++}; ++ +struct klist_iter { + struct klist *i_klist; + struct klist_node *i_cur; @@ -58898,6 +61161,11 @@ index 0000000..bcb9d76 + const struct device_type *type; +}; + ++enum { ++ DISK_EVENT_FLAG_POLL = 1, ++ DISK_EVENT_FLAG_UEVENT = 2, ++}; ++ +struct disk_events { + struct list_head node; + struct gendisk *disk; @@ -58910,15 +61178,36 @@ index 0000000..bcb9d76 + struct delayed_work dwork; +}; + ++struct badblocks { ++ struct device *dev; ++ int count; ++ int unacked_exist; ++ int shift; ++ u64 *page; ++ int changed; ++ seqlock_t lock; ++ sector_t sector; ++ sector_t size; ++}; ++ ++struct disk_part_iter { ++ struct gendisk *disk; ++ struct hd_struct *part; ++ int idx; ++ unsigned int flags; ++}; ++ +struct blk_major_name { + struct blk_major_name *next; + int major; + char name[16]; +}; + -+typedef struct { -+ struct page *v; -+} Sector; ++enum { ++ IOPRIO_WHO_PROCESS = 1, ++ IOPRIO_WHO_PGRP = 2, ++ IOPRIO_WHO_USER = 3, ++}; + +struct parsed_partitions { + struct block_device *bdev; @@ -58936,11 +61225,9 @@ index 0000000..bcb9d76 + char *pp_buf; +}; + -+enum { -+ IOPRIO_WHO_PROCESS = 1, -+ IOPRIO_WHO_PGRP = 2, -+ IOPRIO_WHO_USER = 3, -+}; ++typedef struct { ++ struct page *v; ++} Sector; + +struct RigidDiskBlock { + __u32 rdb_ID; @@ -59065,12 +61352,23 @@ index 0000000..bcb9d76 + }; +}; + -+enum { ++struct msdos_partition { ++ u8 boot_ind; ++ u8 head; ++ u8 sector; ++ u8 cyl; ++ u8 sys_ind; ++ u8 end_head; ++ u8 end_sector; ++ u8 end_cyl; ++ __le32 start_sect; ++ __le32 nr_sects; ++}; ++ ++enum msdos_sys_ind { + DOS_EXTENDED_PARTITION = 5, + LINUX_EXTENDED_PARTITION = 133, + WIN98_EXTENDED_PARTITION = 15, -+ SUN_WHOLE_DISK = 5, -+ LINUX_SWAP_PARTITION = 130, + LINUX_DATA_PARTITION = 131, + LINUX_LVM_PARTITION = 142, + LINUX_RAID_PARTITION = 253, @@ -59088,19 +61386,6 @@ index 0000000..bcb9d76 + UNIXWARE_PARTITION = 99, +}; + -+struct partition { -+ unsigned char boot_ind; -+ unsigned char head; -+ unsigned char sector; -+ unsigned char cyl; -+ unsigned char sys_ind; -+ unsigned char end_head; -+ unsigned char end_sector; -+ unsigned char end_cyl; -+ __le32 start_sect; -+ __le32 nr_sects; -+}; -+ +struct solaris_x86_slice { + __le16 s_tag; + __le16 s_flag; @@ -59243,6 +61528,10 @@ index 0000000..bcb9d76 + struct d_partition d_partitions[18]; +}; + ++enum { ++ LINUX_RAID_PARTITION___2 = 253, ++}; ++ +struct sgi_volume { + s8 name[8]; + __be32 block_num; @@ -59267,6 +61556,11 @@ index 0000000..bcb9d76 + __be32 _unused1; +}; + ++enum { ++ SUN_WHOLE_DISK = 5, ++ LINUX_RAID_PARTITION___3 = 253, ++}; ++ +struct sun_info { + __be16 id; + __be16 flags; @@ -59403,6 +61697,79 @@ index 0000000..bcb9d76 + unsigned int default_depth; +}; + ++typedef bool acquire_inflight_cb_t(struct rq_wait *, void *); ++ ++typedef void cleanup_cb_t(struct rq_wait *, void *); ++ ++struct rq_qos_wait_data { ++ struct wait_queue_entry wq; ++ struct task_struct *task; ++ struct rq_wait *rqw; ++ acquire_inflight_cb_t *cb; ++ void *private_data; ++ bool got_token; ++}; ++ ++struct cdrom_device_ops; ++ ++struct cdrom_device_info { ++ const struct cdrom_device_ops *ops; ++ struct list_head list; ++ struct gendisk *disk; ++ void *handle; ++ int mask; ++ int speed; ++ int capacity; ++ unsigned int options: 30; ++ unsigned int mc_flags: 2; ++ unsigned int vfs_events; ++ unsigned int ioctl_events; ++ int use_count; ++ char name[20]; ++ __u8 sanyo_slot: 2; ++ __u8 keeplocked: 1; ++ __u8 reserved: 5; ++ int cdda_method; ++ __u8 last_sense; ++ __u8 media_written; ++ short unsigned int mmc3_profile; ++ int for_data; ++ int (*exit)(struct cdrom_device_info *); ++ int mrw_mode_page; ++}; ++ ++struct scsi_sense_hdr { ++ u8 response_code; ++ u8 sense_key; ++ u8 asc; ++ u8 ascq; ++ u8 byte4; ++ u8 byte5; ++ u8 byte6; ++ u8 additional_length; ++}; ++ ++struct cdrom_msf0 { ++ __u8 minute; ++ __u8 second; ++ __u8 frame; ++}; ++ ++union cdrom_addr { ++ struct cdrom_msf0 msf; ++ int lba; ++}; ++ ++struct cdrom_multisession { ++ union cdrom_addr addr; ++ __u8 xa_flag; ++ __u8 addr_format; ++}; ++ ++struct cdrom_mcn { ++ __u8 medium_catalog_number[14]; ++}; ++ +struct request_sense; + +struct cdrom_generic_command { @@ -59414,7 +61781,10 @@ index 0000000..bcb9d76 + unsigned char data_direction; + int quiet; + int timeout; -+ void *reserved[1]; ++ union { ++ void *reserved[1]; ++ void *unused; ++ }; +}; + +struct request_sense { @@ -59435,6 +61805,35 @@ index 0000000..bcb9d76 + __u8 asb[46]; +}; + ++struct packet_command { ++ unsigned char cmd[12]; ++ unsigned char *buffer; ++ unsigned int buflen; ++ int stat; ++ struct scsi_sense_hdr *sshdr; ++ unsigned char data_direction; ++ int quiet; ++ int timeout; ++ void *reserved[1]; ++}; ++ ++struct cdrom_device_ops { ++ int (*open)(struct cdrom_device_info *, int); ++ void (*release)(struct cdrom_device_info *); ++ int (*drive_status)(struct cdrom_device_info *, int); ++ unsigned int (*check_events)(struct cdrom_device_info *, unsigned int, int); ++ int (*tray_move)(struct cdrom_device_info *, int); ++ int (*lock_door)(struct cdrom_device_info *, int); ++ int (*select_speed)(struct cdrom_device_info *, int); ++ int (*select_disc)(struct cdrom_device_info *, int); ++ int (*get_last_session)(struct cdrom_device_info *, struct cdrom_multisession *); ++ int (*get_mcn)(struct cdrom_device_info *, struct cdrom_mcn *); ++ int (*reset)(struct cdrom_device_info *); ++ int (*audio_ioctl)(struct cdrom_device_info *, unsigned int, void *); ++ const int capability; ++ int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); ++}; ++ +struct scsi_ioctl_command { + unsigned int inlen; + unsigned int outlen; @@ -59466,11 +61865,74 @@ index 0000000..bcb9d76 + void *sense; +}; + ++struct sg_io_hdr { ++ int interface_id; ++ int dxfer_direction; ++ unsigned char cmd_len; ++ unsigned char mx_sb_len; ++ short unsigned int iovec_count; ++ unsigned int dxfer_len; ++ void *dxferp; ++ unsigned char *cmdp; ++ void *sbp; ++ unsigned int timeout; ++ unsigned int flags; ++ int pack_id; ++ void *usr_ptr; ++ unsigned char status; ++ unsigned char masked_status; ++ unsigned char msg_status; ++ unsigned char sb_len_wr; ++ short unsigned int host_status; ++ short unsigned int driver_status; ++ int resid; ++ unsigned int duration; ++ unsigned int info; ++}; ++ ++struct compat_sg_io_hdr { ++ compat_int_t interface_id; ++ compat_int_t dxfer_direction; ++ unsigned char cmd_len; ++ unsigned char mx_sb_len; ++ short unsigned int iovec_count; ++ compat_uint_t dxfer_len; ++ compat_uint_t dxferp; ++ compat_uptr_t cmdp; ++ compat_uptr_t sbp; ++ compat_uint_t timeout; ++ compat_uint_t flags; ++ compat_int_t pack_id; ++ compat_uptr_t usr_ptr; ++ unsigned char status; ++ unsigned char masked_status; ++ unsigned char msg_status; ++ unsigned char sb_len_wr; ++ short unsigned int host_status; ++ short unsigned int driver_status; ++ compat_int_t resid; ++ compat_uint_t duration; ++ compat_uint_t info; ++}; ++ +struct blk_cmd_filter { + long unsigned int read_ok[4]; + long unsigned int write_ok[4]; +}; + ++struct compat_cdrom_generic_command { ++ unsigned char cmd[12]; ++ compat_caddr_t buffer; ++ compat_uint_t buflen; ++ compat_int_t stat; ++ compat_caddr_t sense; ++ unsigned char data_direction; ++ unsigned char pad[3]; ++ compat_int_t quiet; ++ compat_int_t timeout; ++ compat_caddr_t unused; ++}; ++ +enum { + OMAX_SB_LEN = 16, +}; @@ -59484,6 +61946,10 @@ index 0000000..bcb9d76 + int max_queue; +}; + ++struct bsg_job; ++ ++typedef int bsg_job_fn(struct bsg_job *); ++ +struct bsg_buffer { + unsigned int payload_len; + int sg_cnt; @@ -59502,14 +61968,17 @@ index 0000000..bcb9d76 + struct bsg_buffer reply_payload; + int result; + unsigned int reply_payload_rcv_len; ++ struct request *bidi_rq; ++ struct bio *bidi_bio; + void *dd_data; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; +}; + -+struct blkg_stat { -+ struct percpu_counter cpu_cnt; -+ atomic64_t aux_cnt; ++typedef enum blk_eh_timer_return bsg_timeout_fn(struct request *); ++ ++struct bsg_set { ++ struct blk_mq_tag_set tag_set; ++ bsg_job_fn *job_fn; ++ bsg_timeout_fn *timeout_fn; +}; + +typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); @@ -59520,7 +61989,7 @@ index 0000000..bcb9d76 + +typedef void blkcg_pol_bind_cpd_fn(struct blkcg_policy_data *); + -+typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(gfp_t, int); ++typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(gfp_t, struct request_queue *, struct blkcg *); + +typedef void blkcg_pol_init_pd_fn(struct blkg_policy_data *); + @@ -59549,10 +62018,10 @@ index 0000000..bcb9d76 + blkcg_pol_free_pd_fn *pd_free_fn; + blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn; + blkcg_pol_stat_pd_fn *pd_stat_fn; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct blkg_conf_ctx { @@ -59561,12 +62030,30 @@ index 0000000..bcb9d76 + char *body; +}; + ++enum blkg_rwstat_type { ++ BLKG_RWSTAT_READ = 0, ++ BLKG_RWSTAT_WRITE = 1, ++ BLKG_RWSTAT_SYNC = 2, ++ BLKG_RWSTAT_ASYNC = 3, ++ BLKG_RWSTAT_DISCARD = 4, ++ BLKG_RWSTAT_NR = 5, ++ BLKG_RWSTAT_TOTAL = 5, ++}; ++ ++struct blkg_rwstat { ++ struct percpu_counter cpu_cnt[5]; ++ atomic64_t aux_cnt[5]; ++}; ++ ++struct blkg_rwstat_sample { ++ u64 cnt[5]; ++}; ++ +struct throtl_service_queue { + struct throtl_service_queue *parent_sq; + struct list_head queued[2]; + unsigned int nr_queued[2]; -+ struct rb_root pending_tree; -+ struct rb_node *first_pending; ++ struct rb_root_cached pending_tree; + unsigned int nr_pending; + long unsigned int first_pending_disptime; + struct timer_list pending_timer; @@ -59641,6 +62128,10 @@ index 0000000..bcb9d76 + unsigned int bio_cnt; + unsigned int bad_bio_cnt; + long unsigned int bio_cnt_reset_time; ++ atomic_t io_split_cnt[2]; ++ atomic_t last_io_split_cnt[2]; ++ struct blkg_rwstat stat_bytes; ++ struct blkg_rwstat stat_ios; +}; + +enum tg_state_flags { @@ -59654,10 +62145,6 @@ index 0000000..bcb9d76 + LIMIT_CNT = 2, +}; + -+struct noop_data { -+ struct list_head queue; -+}; -+ +struct deadline_data { + struct rb_root sort_list[2]; + struct list_head fifo_list[2]; @@ -59668,237 +62155,111 @@ index 0000000..bcb9d76 + int fifo_batch; + int writes_starved; + int front_merges; -+}; -+ -+struct cfq_ttime { -+ u64 last_end_request; -+ u64 ttime_total; -+ u64 ttime_mean; -+ long unsigned int ttime_samples; -+}; -+ -+struct cfq_rb_root { -+ struct rb_root_cached rb; -+ struct rb_node *rb_rightmost; -+ unsigned int count; -+ u64 min_vdisktime; -+ struct cfq_ttime ttime; -+}; -+ -+struct cfq_data; -+ -+struct cfq_group; -+ -+struct cfq_queue { -+ int ref; -+ unsigned int flags; -+ struct cfq_data *cfqd; -+ struct rb_node rb_node; -+ u64 rb_key; -+ struct rb_node p_node; -+ struct rb_root *p_root; -+ struct rb_root sort_list; -+ struct request *next_rq; -+ int queued[2]; -+ int allocated[2]; -+ struct list_head fifo; -+ u64 dispatch_start; -+ u64 allocated_slice; -+ u64 slice_dispatch; -+ u64 slice_start; -+ u64 slice_end; -+ s64 slice_resid; -+ int prio_pending; -+ int dispatched; -+ short unsigned int ioprio; -+ short unsigned int org_ioprio; -+ short unsigned int ioprio_class; -+ short unsigned int org_ioprio_class; -+ pid_t pid; -+ u32 seek_history; -+ sector_t last_request_pos; -+ struct cfq_rb_root *service_tree; -+ struct cfq_queue *new_cfqq; -+ struct cfq_group *cfqg; -+ long unsigned int nr_sectors; -+}; -+ -+enum wl_class_t { -+ BE_WORKLOAD = 0, -+ RT_WORKLOAD = 1, -+ IDLE_WORKLOAD = 2, -+ CFQ_PRIO_NR = 3, -+}; -+ -+enum wl_type_t { -+ ASYNC_WORKLOAD = 0, -+ SYNC_NOIDLE_WORKLOAD = 1, -+ SYNC_WORKLOAD = 2, -+}; -+ -+struct cfq_io_cq; -+ -+struct cfq_data { -+ struct request_queue *queue; -+ struct cfq_rb_root grp_service_tree; -+ struct cfq_group *root_group; -+ enum wl_class_t serving_wl_class; -+ enum wl_type_t serving_wl_type; -+ u64 workload_expires; -+ struct cfq_group *serving_group; -+ struct rb_root prio_trees[8]; -+ unsigned int busy_queues; -+ unsigned int busy_sync_queues; -+ int rq_in_driver; -+ int rq_in_flight[2]; -+ int rq_queued; -+ int hw_tag; -+ int hw_tag_est_depth; -+ unsigned int hw_tag_samples; -+ struct hrtimer idle_slice_timer; -+ struct work_struct unplug_work; -+ struct cfq_queue *active_queue; -+ struct cfq_io_cq *active_cic; -+ sector_t last_position; -+ unsigned int cfq_quantum; -+ unsigned int cfq_back_penalty; -+ unsigned int cfq_back_max; -+ unsigned int cfq_slice_async_rq; -+ unsigned int cfq_latency; -+ u64 cfq_fifo_expire[2]; -+ u64 cfq_slice[2]; -+ u64 cfq_slice_idle; -+ u64 cfq_group_idle; -+ u64 cfq_target_latency; -+ struct cfq_queue oom_cfqq; -+ u64 last_delayed_sync; -+}; -+ -+struct cfqg_stats { -+ struct blkg_rwstat merged; -+ struct blkg_rwstat service_time; -+ struct blkg_rwstat wait_time; -+ struct blkg_rwstat queued; -+ struct blkg_stat time; -+}; -+ -+struct cfq_group { -+ struct blkg_policy_data pd; -+ struct rb_node rb_node; -+ u64 vdisktime; -+ int nr_active; -+ unsigned int children_weight; -+ unsigned int vfraction; -+ unsigned int weight; -+ unsigned int new_weight; -+ unsigned int dev_weight; -+ unsigned int leaf_weight; -+ unsigned int new_leaf_weight; -+ unsigned int dev_leaf_weight; -+ int nr_cfqq; -+ unsigned int busy_queues_avg[3]; -+ struct cfq_rb_root service_trees[6]; -+ struct cfq_rb_root service_tree_idle; -+ u64 saved_wl_slice; -+ enum wl_type_t saved_wl_type; -+ enum wl_class_t saved_wl_class; -+ int dispatched; -+ struct cfq_ttime ttime; -+ struct cfqg_stats stats; -+ struct cfq_queue *async_cfqq[16]; -+ struct cfq_queue *async_idle_cfqq; -+}; -+ -+struct cfq_group_data { -+ struct blkcg_policy_data cpd; -+ unsigned int weight; -+ unsigned int leaf_weight; -+}; -+ -+struct cfq_io_cq { -+ struct io_cq icq; -+ struct cfq_queue *cfqq[2]; -+ struct cfq_ttime ttime; -+ int ioprio; -+ uint64_t blkcg_serial_nr; -+}; -+ -+enum cfqq_state_flags { -+ CFQ_CFQQ_FLAG_on_rr = 0, -+ CFQ_CFQQ_FLAG_wait_request = 1, -+ CFQ_CFQQ_FLAG_must_dispatch = 2, -+ CFQ_CFQQ_FLAG_must_alloc_slice = 3, -+ CFQ_CFQQ_FLAG_fifo_expire = 4, -+ CFQ_CFQQ_FLAG_idle_window = 5, -+ CFQ_CFQQ_FLAG_prio_changed = 6, -+ CFQ_CFQQ_FLAG_slice_new = 7, -+ CFQ_CFQQ_FLAG_sync = 8, -+ CFQ_CFQQ_FLAG_coop = 9, -+ CFQ_CFQQ_FLAG_split_coop = 10, -+ CFQ_CFQQ_FLAG_deep = 11, -+ CFQ_CFQQ_FLAG_wait_busy = 12, -+}; -+ -+struct deadline_data___2 { -+ struct rb_root sort_list[2]; -+ struct list_head fifo_list[2]; -+ struct request *next_rq[2]; -+ unsigned int batching; -+ unsigned int starved; -+ int fifo_expire[2]; -+ int fifo_batch; -+ int writes_starved; -+ int front_merges; + spinlock_t lock; + spinlock_t zone_lock; + struct list_head dispatch; +}; + ++struct trace_event_raw_kyber_latency { ++ struct trace_entry ent; ++ dev_t dev; ++ char domain[16]; ++ char type[8]; ++ u8 percentile; ++ u8 numerator; ++ u8 denominator; ++ unsigned int samples; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_kyber_adjust { ++ struct trace_entry ent; ++ dev_t dev; ++ char domain[16]; ++ unsigned int depth; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_kyber_throttled { ++ struct trace_entry ent; ++ dev_t dev; ++ char domain[16]; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_kyber_latency {}; ++ ++struct trace_event_data_offsets_kyber_adjust {}; ++ ++struct trace_event_data_offsets_kyber_throttled {}; ++ ++typedef void (*btf_trace_kyber_latency)(void *, struct request_queue *, const char *, const char *, unsigned int, unsigned int, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_kyber_adjust)(void *, struct request_queue *, const char *, unsigned int); ++ ++typedef void (*btf_trace_kyber_throttled)(void *, struct request_queue *, const char *); ++ +enum { + KYBER_READ = 0, -+ KYBER_SYNC_WRITE = 1, -+ KYBER_OTHER = 2, -+ KYBER_NUM_DOMAINS = 3, ++ KYBER_WRITE = 1, ++ KYBER_DISCARD = 2, ++ KYBER_OTHER = 3, ++ KYBER_NUM_DOMAINS = 4, +}; + +enum { -+ KYBER_MIN_DEPTH = 256, + KYBER_ASYNC_PERCENT = 75, +}; + ++enum { ++ KYBER_LATENCY_SHIFT = 2, ++ KYBER_GOOD_BUCKETS = 4, ++ KYBER_LATENCY_BUCKETS = 8, ++}; ++ ++enum { ++ KYBER_TOTAL_LATENCY = 0, ++ KYBER_IO_LATENCY = 1, ++}; ++ ++struct kyber_cpu_latency { ++ atomic_t buckets[48]; ++}; ++ +struct kyber_ctx_queue { + spinlock_t lock; -+ struct list_head rq_list[3]; ++ struct list_head rq_list[4]; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; + long: 64; +}; + +struct kyber_queue_data { + struct request_queue *q; -+ struct blk_stat_callback *cb; -+ struct sbitmap_queue domain_tokens[3]; ++ struct sbitmap_queue domain_tokens[4]; + unsigned int async_depth; -+ u64 read_lat_nsec; -+ u64 write_lat_nsec; ++ struct kyber_cpu_latency *cpu_latency; ++ struct timer_list timer; ++ unsigned int latency_buckets[48]; ++ long unsigned int latency_timeout[3]; ++ int domain_p99[3]; ++ u64 latency_targets[3]; +}; + +struct kyber_hctx_data { + spinlock_t lock; -+ struct list_head rqs[3]; ++ struct list_head rqs[4]; + unsigned int cur_domain; + unsigned int batching; + struct kyber_ctx_queue *kcqs; -+ struct sbitmap kcq_map[3]; -+ wait_queue_entry_t domain_wait[3]; -+ struct sbq_wait_state *domain_ws[3]; -+ atomic_t wait_index[3]; -+}; -+ -+enum { -+ NONE___3 = 0, -+ GOOD = 1, -+ GREAT = 2, -+ BAD = -1, -+ AWFUL = -2, ++ struct sbitmap kcq_map[4]; ++ struct sbq_wait domain_wait[4]; ++ struct sbq_wait_state *domain_ws[4]; ++ atomic_t wait_index[4]; +}; + +struct flush_kcq_data { @@ -59918,20 +62279,18 @@ index 0000000..bcb9d76 + long unsigned int wsum; +}; + -+struct bfq_weight_counter; -+ +struct bfq_sched_data; + +struct bfq_entity { + struct rb_node rb_node; -+ struct bfq_weight_counter *weight_counter; -+ bool on_st; ++ bool on_st_or_in_serv; + u64 start; + u64 finish; + struct rb_root *tree; + u64 min_start; + int service; + int budget; ++ int dev_weight; + int weight; + int new_weight; + int orig_weight; @@ -59939,6 +62298,7 @@ index 0000000..bcb9d76 + struct bfq_sched_data *my_sched_data; + struct bfq_sched_data *sched_data; + int prio_changed; ++ bool in_groups_with_pending_reqs; +}; + +struct bfq_sched_data { @@ -59972,6 +62332,9 @@ index 0000000..bcb9d76 + short unsigned int ioprio_class; + short unsigned int new_ioprio; + short unsigned int new_ioprio_class; ++ u64 last_serv_time_ns; ++ unsigned int inject_limit; ++ long unsigned int decrease_time_jif; + struct bfq_queue *new_bfqq; + struct rb_node pos_node; + struct rb_root *pos_root; @@ -59982,6 +62345,7 @@ index 0000000..bcb9d76 + int meta_pending; + struct list_head fifo; + struct bfq_entity entity; ++ struct bfq_weight_counter *weight_counter; + int max_budget; + long unsigned int budget_timeout; + int dispatched; @@ -60005,8 +62369,9 @@ index 0000000..bcb9d76 + long unsigned int split_time; + long unsigned int first_IO_time; + u32 max_service_rate; -+ unsigned int inject_coeff; -+ unsigned int injected_service; ++ struct bfq_queue *waker_bfqq; ++ struct hlist_node woken_list_node; ++ struct hlist_head woken_list; +}; + +struct bfq_group; @@ -60015,12 +62380,13 @@ index 0000000..bcb9d76 + struct request_queue *queue; + struct list_head dispatch; + struct bfq_group *root_group; -+ struct rb_root queue_weights_tree; -+ struct rb_root group_weights_tree; -+ int busy_queues; ++ struct rb_root_cached queue_weights_tree; ++ unsigned int num_groups_with_pending_reqs; ++ unsigned int busy_queues[3]; + int wr_busy_queues; + int queued; + int rq_in_driver; ++ bool nonrot_with_queueing; + int max_rq_in_driver; + int hw_tag_samples; + int hw_tag; @@ -60030,10 +62396,16 @@ index 0000000..bcb9d76 + sector_t last_position; + sector_t in_serv_last_pos; + u64 last_completion; ++ struct bfq_queue *last_completed_rq_bfqq; ++ u64 last_empty_occupied_ns; ++ bool wait_dispatch; ++ struct request *waited_rq; ++ bool rqs_injected; + u64 first_dispatch; + u64 last_dispatch; + ktime_t last_budget_start; + ktime_t last_idling_start; ++ long unsigned int last_idling_start_jiffies; + int peak_rate_samples; + u32 sequential_samples; + u64 tot_sectors_dispatched; @@ -60082,6 +62454,7 @@ index 0000000..bcb9d76 + bool saved_IO_bound; + bool saved_in_large_burst; + bool was_in_burst_list; ++ unsigned int saved_weight; + long unsigned int saved_wr_coeff; + long unsigned int saved_last_wr_start_finish; + long unsigned int saved_wr_start_at_switch_to_srt; @@ -60089,7 +62462,10 @@ index 0000000..bcb9d76 + struct bfq_ttime saved_ttime; +}; + -+struct bfqg_stats {}; ++struct bfqg_stats { ++ struct blkg_rwstat bytes; ++ struct blkg_rwstat ios; ++}; + +struct bfq_group { + struct blkg_policy_data pd; @@ -60119,6 +62495,7 @@ index 0000000..bcb9d76 + BFQQF_softrt_update = 9, + BFQQF_coop = 10, + BFQQF_split_coop = 11, ++ BFQQF_has_waker = 12, +}; + +enum bfqq_expiration { @@ -60134,57 +62511,6 @@ index 0000000..bcb9d76 + unsigned int weight; +}; + -+struct cdrom_msf0 { -+ __u8 minute; -+ __u8 second; -+ __u8 frame; -+}; -+ -+union cdrom_addr { -+ struct cdrom_msf0 msf; -+ int lba; -+}; -+ -+struct cdrom_read_audio { -+ union cdrom_addr addr; -+ __u8 addr_format; -+ int nframes; -+ __u8 *buf; -+}; -+ -+struct compat_hd_geometry { -+ unsigned char heads; -+ unsigned char sectors; -+ short unsigned int cylinders; -+ u32 start; -+}; -+ -+struct compat_cdrom_read_audio { -+ union cdrom_addr addr; -+ u8 addr_format; -+ compat_int_t nframes; -+ compat_caddr_t buf; -+}; -+ -+struct compat_cdrom_generic_command { -+ unsigned char cmd[12]; -+ compat_caddr_t buffer; -+ compat_uint_t buflen; -+ compat_int_t stat; -+ compat_caddr_t sense; -+ unsigned char data_direction; -+ compat_int_t quiet; -+ compat_int_t timeout; -+ compat_caddr_t reserved[1]; -+}; -+ -+struct compat_blkpg_ioctl_arg { -+ compat_int_t op; -+ compat_int_t flags; -+ compat_int_t datalen; -+ compat_caddr_t data; -+}; -+ +enum bip_flags { + BIP_BLOCK_INTEGRITY = 1, + BIP_MAPPED_INTEGRITY = 2, @@ -60206,102 +62532,13 @@ index 0000000..bcb9d76 + ssize_t (*store)(struct blk_integrity *, const char *, size_t); +}; + -+enum t10_dif_type { -+ T10_PI_TYPE0_PROTECTION = 0, -+ T10_PI_TYPE1_PROTECTION = 1, -+ T10_PI_TYPE2_PROTECTION = 2, -+ T10_PI_TYPE3_PROTECTION = 3, -+}; -+ -+struct t10_pi_tuple { -+ __be16 guard_tag; -+ __be16 app_tag; -+ __be32 ref_tag; -+}; -+ -+typedef __be16 csum_fn(void *, unsigned int); -+ +struct virtio_device_id { + __u32 device; + __u32 vendor; +}; + -+typedef __u16 __virtio16; -+ -+typedef __u32 __virtio32; -+ -+typedef __u64 __virtio64; -+ -+struct vring_desc { -+ __virtio64 addr; -+ __virtio32 len; -+ __virtio16 flags; -+ __virtio16 next; -+}; -+ -+struct vring_avail { -+ __virtio16 flags; -+ __virtio16 idx; -+ __virtio16 ring[0]; -+}; -+ -+struct vring_used_elem { -+ __virtio32 id; -+ __virtio32 len; -+}; -+ -+struct vring_used { -+ __virtio16 flags; -+ __virtio16 idx; -+ struct vring_used_elem ring[0]; -+}; -+ -+struct vring { -+ unsigned int num; -+ struct vring_desc *desc; -+ struct vring_avail *avail; -+ struct vring_used *used; -+}; -+ -+struct vringh { -+ bool little_endian; -+ bool event_indices; -+ bool weak_barriers; -+ u16 last_avail_idx; -+ u16 last_used_idx; -+ u32 completed; -+ struct vring vring; -+ void (*notify)(struct vringh *); -+}; -+ +struct virtio_device; + -+typedef void vrh_callback_t(struct virtio_device *, struct vringh *); -+ -+struct virtio_config_ops; -+ -+struct vringh_config_ops; -+ -+struct virtio_device { -+ int index; -+ bool failed; -+ bool config_enabled; -+ bool config_change_pending; -+ spinlock_t config_lock; -+ struct device dev; -+ struct virtio_device_id id; -+ const struct virtio_config_ops *config; -+ const struct vringh_config_ops *vringh_config; -+ struct list_head vqs; -+ u64 features; -+ void *priv; -+}; -+ -+struct vringh_config_ops { -+ int (*find_vrhs)(struct virtio_device *, unsigned int, struct vringh **, vrh_callback_t **); -+ void (*del_vrhs)(struct virtio_device *); -+}; -+ +struct virtqueue { + struct list_head list; + void (*callback)(struct virtqueue *); @@ -60312,8 +62549,30 @@ index 0000000..bcb9d76 + void *priv; +}; + ++struct vringh_config_ops; ++ ++struct virtio_config_ops; ++ ++struct virtio_device { ++ int index; ++ bool failed; ++ bool config_enabled; ++ bool config_change_pending; ++ spinlock_t config_lock; ++ spinlock_t vqs_list_lock; ++ struct device dev; ++ struct virtio_device_id id; ++ const struct virtio_config_ops *config; ++ const struct vringh_config_ops *vringh_config; ++ struct list_head vqs; ++ u64 features; ++ void *priv; ++}; ++ +typedef void vq_callback_t(struct virtqueue *); + ++struct virtio_shm_region; ++ +struct virtio_config_ops { + void (*get)(struct virtio_device *, unsigned int, void *, unsigned int); + void (*set)(struct virtio_device *, unsigned int, const void *, unsigned int); @@ -60328,6 +62587,12 @@ index 0000000..bcb9d76 + const char * (*bus_name)(struct virtio_device *); + int (*set_vq_affinity)(struct virtqueue *, const struct cpumask *); + const struct cpumask * (*get_vq_affinity)(struct virtio_device *, int); ++ bool (*get_shm_region)(struct virtio_device *, struct virtio_shm_region *, u8); ++}; ++ ++struct virtio_shm_region { ++ u64 addr; ++ u64 len; +}; + +struct irq_poll; @@ -60341,21 +62606,58 @@ index 0000000..bcb9d76 + irq_poll_fn *poll; +}; + ++struct dim_sample { ++ ktime_t time; ++ u32 pkt_ctr; ++ u32 byte_ctr; ++ u16 event_ctr; ++ u32 comp_ctr; ++}; ++ ++struct dim_stats { ++ int ppms; ++ int bpms; ++ int epms; ++ int cpms; ++ int cpe_ratio; ++}; ++ ++struct dim { ++ u8 state; ++ struct dim_stats prev_stats; ++ struct dim_sample start_sample; ++ struct dim_sample measuring_sample; ++ struct work_struct work; ++ void *priv; ++ u8 profile_ix; ++ u8 mode; ++ u8 tune_state; ++ u8 steps_right; ++ u8 steps_left; ++ u8 tired; ++}; ++ ++enum rdma_nl_counter_mode { ++ RDMA_COUNTER_MODE_NONE = 0, ++ RDMA_COUNTER_MODE_AUTO = 1, ++ RDMA_COUNTER_MODE_MANUAL = 2, ++ RDMA_COUNTER_MODE_MAX = 3, ++}; ++ ++enum rdma_nl_counter_mask { ++ RDMA_COUNTER_MASK_QP_TYPE = 1, ++ RDMA_COUNTER_MASK_PID = 2, ++}; ++ +enum rdma_restrack_type { + RDMA_RESTRACK_PD = 0, + RDMA_RESTRACK_CQ = 1, + RDMA_RESTRACK_QP = 2, + RDMA_RESTRACK_CM_ID = 3, + RDMA_RESTRACK_MR = 4, -+ RDMA_RESTRACK_MAX = 5, -+}; -+ -+struct rdma_restrack_entry; -+ -+struct rdma_restrack_root { -+ struct rw_semaphore rwsem; -+ struct hlist_head hash[256]; -+ int (*fill_res_entry)(struct sk_buff *, struct rdma_restrack_entry *); ++ RDMA_RESTRACK_CTX = 5, ++ RDMA_RESTRACK_COUNTER = 6, ++ RDMA_RESTRACK_MAX = 7, +}; + +struct rdma_restrack_entry { @@ -60364,8 +62666,59 @@ index 0000000..bcb9d76 + struct completion comp; + struct task_struct *task; + const char *kern_name; -+ struct hlist_node node; + enum rdma_restrack_type type; ++ bool user; ++ u32 id; ++}; ++ ++struct rdma_link_ops { ++ struct list_head list; ++ const char *type; ++ int (*newlink)(const char *, struct net_device *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct auto_mode_param { ++ int qp_type; ++}; ++ ++struct rdma_counter_mode { ++ enum rdma_nl_counter_mode mode; ++ enum rdma_nl_counter_mask mask; ++ struct auto_mode_param param; ++}; ++ ++struct rdma_hw_stats; ++ ++struct rdma_port_counter { ++ struct rdma_counter_mode mode; ++ struct rdma_hw_stats *hstats; ++ unsigned int num_counters; ++ struct mutex lock; ++}; ++ ++struct rdma_hw_stats { ++ struct mutex lock; ++ long unsigned int timestamp; ++ long unsigned int lifespan; ++ const char * const *names; ++ int num_counters; ++ u64 value[0]; ++}; ++ ++struct ib_device; ++ ++struct rdma_counter { ++ struct rdma_restrack_entry res; ++ struct ib_device *device; ++ uint32_t id; ++ struct kref kref; ++ struct rdma_counter_mode mode; ++ struct mutex lock; ++ struct rdma_hw_stats *stats; ++ u8 port; ++ u64 kabi_reserved1; +}; + +enum rdma_driver_id { @@ -60386,75 +62739,8 @@ index 0000000..bcb9d76 + RDMA_DRIVER_RXE = 14, + RDMA_DRIVER_HFI1 = 15, + RDMA_DRIVER_QIB = 16, -+}; -+ -+enum ib_uverbs_flow_action_esp_keymat { -+ IB_UVERBS_FLOW_ACTION_ESP_KEYMAT_AES_GCM = 0, -+}; -+ -+struct ib_uverbs_flow_action_esp_keymat_aes_gcm { -+ __u64 iv; -+ __u32 iv_algo; -+ __u32 salt; -+ __u32 icv_len; -+ __u32 key_len; -+ __u32 aes_key[8]; -+}; -+ -+enum ib_uverbs_flow_action_esp_replay { -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_NONE = 0, -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_BMP = 1, -+}; -+ -+struct ib_uverbs_flow_action_esp_replay_bmp { -+ __u32 size; -+}; -+ -+enum ib_gid_type { -+ IB_GID_TYPE_IB = 0, -+ IB_GID_TYPE_ROCE = 0, -+ IB_GID_TYPE_ROCE_UDP_ENCAP = 1, -+ IB_GID_TYPE_SIZE = 2, -+}; -+ -+struct ib_device; -+ -+struct ib_gid_attr { -+ struct net_device *ndev; -+ struct ib_device *device; -+ union ib_gid gid; -+ enum ib_gid_type gid_type; -+ u16 index; -+ u8 port_num; -+}; -+ -+struct ib_event; -+ -+struct ib_event_handler { -+ struct ib_device *device; -+ void (*handler)(struct ib_event_handler *, struct ib_event *); -+ struct list_head list; -+}; -+ -+struct ib_port_cache; -+ -+struct ib_cache { -+ rwlock_t lock; -+ struct ib_event_handler event_handler; -+ struct ib_port_cache *ports; -+}; -+ -+struct iw_cm_verbs; -+ -+enum rdma_link_layer { -+ IB_LINK_LAYER_UNSPECIFIED = 0, -+ IB_LINK_LAYER_INFINIBAND = 1, -+ IB_LINK_LAYER_ETHERNET = 2, -+}; -+ -+enum ib_srq_attr_mask { -+ IB_SRQ_MAX_WR = 1, -+ IB_SRQ_LIMIT = 2, ++ RDMA_DRIVER_EFA = 17, ++ RDMA_DRIVER_SIW = 18, +}; + +enum ib_cq_notify_flags { @@ -60464,26 +62750,275 @@ index 0000000..bcb9d76 + IB_CQ_REPORT_MISSED_EVENTS = 4, +}; + -+enum ib_mr_type { -+ IB_MR_TYPE_MEM_REG = 0, -+ IB_MR_TYPE_SIGNATURE = 1, -+ IB_MR_TYPE_SG_GAPS = 2, ++struct ib_mad; ++ ++enum rdma_link_layer { ++ IB_LINK_LAYER_UNSPECIFIED = 0, ++ IB_LINK_LAYER_INFINIBAND = 1, ++ IB_LINK_LAYER_ETHERNET = 2, +}; + -+enum ib_mw_type { -+ IB_MW_TYPE_1 = 1, -+ IB_MW_TYPE_2 = 2, -+}; -+ -+struct ib_mad_hdr; -+ -+struct uverbs_attr_bundle; -+ +enum rdma_netdev_t { + RDMA_NETDEV_OPA_VNIC = 0, + RDMA_NETDEV_IPOIB = 1, +}; + ++enum ib_srq_attr_mask { ++ IB_SRQ_MAX_WR = 1, ++ IB_SRQ_LIMIT = 2, ++}; ++ ++enum ib_mr_type { ++ IB_MR_TYPE_MEM_REG = 0, ++ IB_MR_TYPE_SG_GAPS = 1, ++ IB_MR_TYPE_DM = 2, ++ IB_MR_TYPE_USER = 3, ++ IB_MR_TYPE_DMA = 4, ++ IB_MR_TYPE_INTEGRITY = 5, ++}; ++ ++enum ib_uverbs_advise_mr_advice { ++ IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH = 0, ++ IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_WRITE = 1, ++ IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_NO_FAULT = 2, ++}; ++ ++struct uverbs_attr_bundle; ++ ++struct rdma_cm_id; ++ ++struct iw_cm_id; ++ ++struct iw_cm_conn_param; ++ ++struct ib_qp; ++ ++struct ib_send_wr; ++ ++struct ib_recv_wr; ++ ++struct ib_cq; ++ ++struct ib_wc; ++ ++struct ib_srq; ++ ++struct ib_grh; ++ ++struct ib_device_attr; ++ ++struct ib_udata; ++ ++struct ib_device_modify; ++ ++struct ib_port_attr; ++ ++struct ib_port_modify; ++ ++struct ib_port_immutable; ++ ++struct rdma_netdev_alloc_params; ++ ++union ib_gid; ++ ++struct ib_gid_attr; ++ ++struct ib_ucontext; ++ ++struct rdma_user_mmap_entry; ++ ++struct ib_pd; ++ ++struct ib_ah; ++ ++struct rdma_ah_init_attr; ++ ++struct rdma_ah_attr; ++ ++struct ib_srq_init_attr; ++ ++struct ib_srq_attr; ++ ++struct ib_qp_init_attr; ++ ++struct ib_qp_attr; ++ ++struct ib_cq_init_attr; ++ ++struct ib_mr; ++ ++struct ib_sge; ++ ++struct ib_mr_status; ++ ++struct ib_mw; ++ ++struct ib_xrcd; ++ ++struct ib_flow; ++ ++struct ib_flow_attr; ++ ++struct ib_flow_action; ++ ++struct ib_flow_action_attrs_esp; ++ ++struct ib_wq; ++ ++struct ib_wq_init_attr; ++ ++struct ib_wq_attr; ++ ++struct ib_rwq_ind_table; ++ ++struct ib_rwq_ind_table_init_attr; ++ ++struct ib_dm; ++ ++struct ib_dm_alloc_attr; ++ ++struct ib_dm_mr_attr; ++ ++struct ib_counters; ++ ++struct ib_counters_read_attr; ++ ++struct ib_device_ops { ++ struct module *owner; ++ enum rdma_driver_id driver_id; ++ u32 uverbs_abi_ver; ++ unsigned int uverbs_no_driver_id_binding: 1; ++ int (*post_send)(struct ib_qp *, const struct ib_send_wr *, const struct ib_send_wr **); ++ int (*post_recv)(struct ib_qp *, const struct ib_recv_wr *, const struct ib_recv_wr **); ++ void (*drain_rq)(struct ib_qp *); ++ void (*drain_sq)(struct ib_qp *); ++ int (*poll_cq)(struct ib_cq *, int, struct ib_wc *); ++ int (*peek_cq)(struct ib_cq *, int); ++ int (*req_notify_cq)(struct ib_cq *, enum ib_cq_notify_flags); ++ int (*req_ncomp_notif)(struct ib_cq *, int); ++ int (*post_srq_recv)(struct ib_srq *, const struct ib_recv_wr *, const struct ib_recv_wr **); ++ int (*process_mad)(struct ib_device *, int, u8, const struct ib_wc *, const struct ib_grh *, const struct ib_mad *, struct ib_mad *, size_t *, u16 *); ++ int (*query_device)(struct ib_device *, struct ib_device_attr *, struct ib_udata *); ++ int (*modify_device)(struct ib_device *, int, struct ib_device_modify *); ++ void (*get_dev_fw_str)(struct ib_device *, char *); ++ const struct cpumask * (*get_vector_affinity)(struct ib_device *, int); ++ int (*query_port)(struct ib_device *, u8, struct ib_port_attr *); ++ int (*modify_port)(struct ib_device *, u8, int, struct ib_port_modify *); ++ int (*get_port_immutable)(struct ib_device *, u8, struct ib_port_immutable *); ++ enum rdma_link_layer (*get_link_layer)(struct ib_device *, u8); ++ struct net_device * (*get_netdev)(struct ib_device *, u8); ++ struct net_device * (*alloc_rdma_netdev)(struct ib_device *, u8, enum rdma_netdev_t, const char *, unsigned char, void (*)(struct net_device *)); ++ int (*rdma_netdev_get_params)(struct ib_device *, u8, enum rdma_netdev_t, struct rdma_netdev_alloc_params *); ++ int (*query_gid)(struct ib_device *, u8, int, union ib_gid *); ++ int (*add_gid)(const struct ib_gid_attr *, void **); ++ int (*del_gid)(const struct ib_gid_attr *, void **); ++ int (*query_pkey)(struct ib_device *, u8, u16, u16 *); ++ int (*alloc_ucontext)(struct ib_ucontext *, struct ib_udata *); ++ void (*dealloc_ucontext)(struct ib_ucontext *); ++ int (*mmap)(struct ib_ucontext *, struct vm_area_struct *); ++ void (*mmap_free)(struct rdma_user_mmap_entry *); ++ void (*disassociate_ucontext)(struct ib_ucontext *); ++ int (*alloc_pd)(struct ib_pd *, struct ib_udata *); ++ int (*dealloc_pd)(struct ib_pd *, struct ib_udata *); ++ int (*create_ah)(struct ib_ah *, struct rdma_ah_init_attr *, struct ib_udata *); ++ int (*modify_ah)(struct ib_ah *, struct rdma_ah_attr *); ++ int (*query_ah)(struct ib_ah *, struct rdma_ah_attr *); ++ int (*destroy_ah)(struct ib_ah *, u32); ++ int (*create_srq)(struct ib_srq *, struct ib_srq_init_attr *, struct ib_udata *); ++ int (*modify_srq)(struct ib_srq *, struct ib_srq_attr *, enum ib_srq_attr_mask, struct ib_udata *); ++ int (*query_srq)(struct ib_srq *, struct ib_srq_attr *); ++ int (*destroy_srq)(struct ib_srq *, struct ib_udata *); ++ struct ib_qp * (*create_qp)(struct ib_pd *, struct ib_qp_init_attr *, struct ib_udata *); ++ int (*modify_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_udata *); ++ int (*query_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_qp_init_attr *); ++ int (*destroy_qp)(struct ib_qp *, struct ib_udata *); ++ int (*create_cq)(struct ib_cq *, const struct ib_cq_init_attr *, struct ib_udata *); ++ int (*modify_cq)(struct ib_cq *, u16, u16); ++ int (*destroy_cq)(struct ib_cq *, struct ib_udata *); ++ int (*resize_cq)(struct ib_cq *, int, struct ib_udata *); ++ struct ib_mr * (*get_dma_mr)(struct ib_pd *, int); ++ struct ib_mr * (*reg_user_mr)(struct ib_pd *, u64, u64, u64, int, struct ib_udata *); ++ int (*rereg_user_mr)(struct ib_mr *, int, u64, u64, u64, int, struct ib_pd *, struct ib_udata *); ++ int (*dereg_mr)(struct ib_mr *, struct ib_udata *); ++ struct ib_mr * (*alloc_mr)(struct ib_pd *, enum ib_mr_type, u32); ++ struct ib_mr * (*alloc_mr_integrity)(struct ib_pd *, u32, u32); ++ int (*advise_mr)(struct ib_pd *, enum ib_uverbs_advise_mr_advice, u32, struct ib_sge *, u32, struct uverbs_attr_bundle *); ++ int (*map_mr_sg)(struct ib_mr *, struct scatterlist *, int, unsigned int *); ++ int (*check_mr_status)(struct ib_mr *, u32, struct ib_mr_status *); ++ int (*alloc_mw)(struct ib_mw *, struct ib_udata *); ++ int (*dealloc_mw)(struct ib_mw *); ++ int (*attach_mcast)(struct ib_qp *, union ib_gid *, u16); ++ int (*detach_mcast)(struct ib_qp *, union ib_gid *, u16); ++ int (*alloc_xrcd)(struct ib_xrcd *, struct ib_udata *); ++ int (*dealloc_xrcd)(struct ib_xrcd *, struct ib_udata *); ++ struct ib_flow * (*create_flow)(struct ib_qp *, struct ib_flow_attr *, struct ib_udata *); ++ int (*destroy_flow)(struct ib_flow *); ++ struct ib_flow_action * (*create_flow_action_esp)(struct ib_device *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); ++ int (*destroy_flow_action)(struct ib_flow_action *); ++ int (*modify_flow_action_esp)(struct ib_flow_action *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); ++ int (*set_vf_link_state)(struct ib_device *, int, u8, int); ++ int (*get_vf_config)(struct ib_device *, int, u8, struct ifla_vf_info *); ++ int (*get_vf_stats)(struct ib_device *, int, u8, struct ifla_vf_stats *); ++ int (*get_vf_guid)(struct ib_device *, int, u8, struct ifla_vf_guid *, struct ifla_vf_guid *); ++ int (*set_vf_guid)(struct ib_device *, int, u8, u64, int); ++ struct ib_wq * (*create_wq)(struct ib_pd *, struct ib_wq_init_attr *, struct ib_udata *); ++ int (*destroy_wq)(struct ib_wq *, struct ib_udata *); ++ int (*modify_wq)(struct ib_wq *, struct ib_wq_attr *, u32, struct ib_udata *); ++ int (*create_rwq_ind_table)(struct ib_rwq_ind_table *, struct ib_rwq_ind_table_init_attr *, struct ib_udata *); ++ int (*destroy_rwq_ind_table)(struct ib_rwq_ind_table *); ++ struct ib_dm * (*alloc_dm)(struct ib_device *, struct ib_ucontext *, struct ib_dm_alloc_attr *, struct uverbs_attr_bundle *); ++ int (*dealloc_dm)(struct ib_dm *, struct uverbs_attr_bundle *); ++ struct ib_mr * (*reg_dm_mr)(struct ib_pd *, struct ib_dm *, struct ib_dm_mr_attr *, struct uverbs_attr_bundle *); ++ int (*create_counters)(struct ib_counters *, struct uverbs_attr_bundle *); ++ int (*destroy_counters)(struct ib_counters *); ++ int (*read_counters)(struct ib_counters *, struct ib_counters_read_attr *, struct uverbs_attr_bundle *); ++ int (*map_mr_sg_pi)(struct ib_mr *, struct scatterlist *, int, unsigned int *, struct scatterlist *, int, unsigned int *); ++ struct rdma_hw_stats * (*alloc_hw_stats)(struct ib_device *, u8); ++ int (*get_hw_stats)(struct ib_device *, struct rdma_hw_stats *, u8, int); ++ int (*init_port)(struct ib_device *, u8, struct kobject *); ++ int (*fill_res_mr_entry)(struct sk_buff *, struct ib_mr *); ++ int (*fill_res_mr_entry_raw)(struct sk_buff *, struct ib_mr *); ++ int (*fill_res_cq_entry)(struct sk_buff *, struct ib_cq *); ++ int (*fill_res_cq_entry_raw)(struct sk_buff *, struct ib_cq *); ++ int (*fill_res_qp_entry)(struct sk_buff *, struct ib_qp *); ++ int (*fill_res_qp_entry_raw)(struct sk_buff *, struct ib_qp *); ++ int (*fill_res_cm_id_entry)(struct sk_buff *, struct rdma_cm_id *); ++ int (*enable_driver)(struct ib_device *); ++ void (*dealloc_driver)(struct ib_device *); ++ void (*iw_add_ref)(struct ib_qp *); ++ void (*iw_rem_ref)(struct ib_qp *); ++ struct ib_qp * (*iw_get_qp)(struct ib_device *, int); ++ int (*iw_connect)(struct iw_cm_id *, struct iw_cm_conn_param *); ++ int (*iw_accept)(struct iw_cm_id *, struct iw_cm_conn_param *); ++ int (*iw_reject)(struct iw_cm_id *, const void *, u8); ++ int (*iw_create_listen)(struct iw_cm_id *, int); ++ int (*iw_destroy_listen)(struct iw_cm_id *); ++ int (*counter_bind_qp)(struct rdma_counter *, struct ib_qp *); ++ int (*counter_unbind_qp)(struct ib_qp *); ++ int (*counter_dealloc)(struct rdma_counter *); ++ struct rdma_hw_stats * (*counter_alloc_stats)(struct rdma_counter *); ++ int (*counter_update_stats)(struct rdma_counter *); ++ int (*fill_stat_mr_entry)(struct sk_buff *, struct ib_mr *); ++ int (*query_ucontext)(struct ib_ucontext *, struct uverbs_attr_bundle *); ++ size_t size_ib_ah; ++ size_t size_ib_counters; ++ size_t size_ib_cq; ++ size_t size_ib_mw; ++ size_t size_ib_pd; ++ size_t size_ib_rwq_ind_table; ++ size_t size_ib_srq; ++ size_t size_ib_ucontext; ++ size_t size_ib_xrcd; ++}; ++ ++struct ib_core_device { ++ struct device dev; ++ possible_net_t rdma_net; ++ struct kobject *ports_kobj; ++ struct list_head port_list; ++ struct ib_device *owner; ++}; ++ +enum ib_atomic_cap { + IB_ATOMIC_NONE = 0, + IB_ATOMIC_HCA = 1, @@ -60496,6 +63031,7 @@ index 0000000..bcb9d76 + uint32_t rc_odp_caps; + uint32_t uc_odp_caps; + uint32_t ud_odp_caps; ++ uint32_t xrc_odp_caps; + } per_transport_caps; +}; + @@ -60552,12 +63088,11 @@ index 0000000..bcb9d76 + int max_mcast_qp_attach; + int max_total_mcast_qp_attach; + int max_ah; -+ int max_fmr; -+ int max_map_per_fmr; + int max_srq; + int max_srq_wr; + int max_srq_sge; + unsigned int max_fast_reg_page_list_len; ++ unsigned int max_pi_fast_reg_page_list_len; + u16 max_pkeys; + u8 local_ca_ack_delay; + int sig_prot_cap; @@ -60571,207 +63106,42 @@ index 0000000..bcb9d76 + struct ib_tm_caps tm_caps; + struct ib_cq_caps cq_caps; + u64 max_dm_size; ++ u32 max_sgl_rd; +}; + -+struct uverbs_object_tree_def; ++struct rdma_restrack_root; + -+struct ib_port_immutable; ++struct uapi_definition; + -+struct ib_port_pkey_list; -+ -+struct rdma_hw_stats; -+ -+struct ib_udata; -+ -+struct ib_port_attr; -+ -+struct ib_device_modify; -+ -+struct ib_port_modify; -+ -+struct ib_ucontext; -+ -+struct ib_pd; -+ -+struct ib_ah; -+ -+struct rdma_ah_attr; -+ -+struct ib_srq; -+ -+struct ib_srq_init_attr; -+ -+struct ib_srq_attr; -+ -+struct ib_recv_wr; -+ -+struct ib_qp; -+ -+struct ib_qp_init_attr; -+ -+struct ib_qp_attr; -+ -+struct ib_send_wr; -+ -+struct ib_cq; -+ -+struct ib_cq_init_attr; -+ -+struct ib_wc; -+ -+struct ib_mr; -+ -+struct ib_mw; -+ -+struct ib_fmr; -+ -+struct ib_fmr_attr; -+ -+struct ib_grh; -+ -+struct ib_xrcd; -+ -+struct ib_flow; -+ -+struct ib_flow_attr; -+ -+struct ib_mr_status; -+ -+struct ib_wq; -+ -+struct ib_wq_init_attr; -+ -+struct ib_wq_attr; -+ -+struct ib_rwq_ind_table; -+ -+struct ib_rwq_ind_table_init_attr; -+ -+struct ib_flow_action; -+ -+struct ib_flow_action_attrs_esp; -+ -+struct ib_dm; -+ -+struct ib_dm_alloc_attr; -+ -+struct ib_dm_mr_attr; -+ -+struct ib_counters; -+ -+struct ib_counters_read_attr; ++struct ib_port_data; + +struct ib_device { + struct device *dma_device; ++ struct ib_device_ops ops; + char name[64]; ++ struct callback_head callback_head; + struct list_head event_handler_list; -+ spinlock_t event_handler_lock; -+ spinlock_t client_data_lock; -+ struct list_head core_list; -+ struct list_head client_data_list; -+ struct ib_cache cache; -+ struct ib_port_immutable *port_immutable; ++ struct rw_semaphore event_handler_rwsem; ++ spinlock_t qp_open_list_lock; ++ struct rw_semaphore client_data_rwsem; ++ struct xarray client_data; ++ struct mutex unregistration_lock; ++ rwlock_t cache_lock; ++ struct ib_port_data *port_data; + int num_comp_vectors; -+ struct ib_port_pkey_list *port_pkey_list; -+ struct iw_cm_verbs *iwcm; -+ struct rdma_hw_stats * (*alloc_hw_stats)(struct ib_device *, u8); -+ int (*get_hw_stats)(struct ib_device *, struct rdma_hw_stats *, u8, int); -+ int (*query_device)(struct ib_device *, struct ib_device_attr *, struct ib_udata *); -+ int (*query_port)(struct ib_device *, u8, struct ib_port_attr *); -+ enum rdma_link_layer (*get_link_layer)(struct ib_device *, u8); -+ struct net_device * (*get_netdev)(struct ib_device *, u8); -+ int (*query_gid)(struct ib_device *, u8, int, union ib_gid *); -+ int (*add_gid)(const struct ib_gid_attr *, void **); -+ int (*del_gid)(const struct ib_gid_attr *, void **); -+ int (*query_pkey)(struct ib_device *, u8, u16, u16 *); -+ int (*modify_device)(struct ib_device *, int, struct ib_device_modify *); -+ int (*modify_port)(struct ib_device *, u8, int, struct ib_port_modify *); -+ struct ib_ucontext * (*alloc_ucontext)(struct ib_device *, struct ib_udata *); -+ int (*dealloc_ucontext)(struct ib_ucontext *); -+ int (*mmap)(struct ib_ucontext *, struct vm_area_struct *); -+ struct ib_pd * (*alloc_pd)(struct ib_device *, struct ib_ucontext *, struct ib_udata *); -+ int (*dealloc_pd)(struct ib_pd *); -+ struct ib_ah * (*create_ah)(struct ib_pd *, struct rdma_ah_attr *, struct ib_udata *); -+ int (*modify_ah)(struct ib_ah *, struct rdma_ah_attr *); -+ int (*query_ah)(struct ib_ah *, struct rdma_ah_attr *); -+ int (*destroy_ah)(struct ib_ah *); -+ struct ib_srq * (*create_srq)(struct ib_pd *, struct ib_srq_init_attr *, struct ib_udata *); -+ int (*modify_srq)(struct ib_srq *, struct ib_srq_attr *, enum ib_srq_attr_mask, struct ib_udata *); -+ int (*query_srq)(struct ib_srq *, struct ib_srq_attr *); -+ int (*destroy_srq)(struct ib_srq *); -+ int (*post_srq_recv)(struct ib_srq *, const struct ib_recv_wr *, const struct ib_recv_wr **); -+ struct ib_qp * (*create_qp)(struct ib_pd *, struct ib_qp_init_attr *, struct ib_udata *); -+ int (*modify_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_udata *); -+ int (*query_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_qp_init_attr *); -+ int (*destroy_qp)(struct ib_qp *); -+ int (*post_send)(struct ib_qp *, const struct ib_send_wr *, const struct ib_send_wr **); -+ int (*post_recv)(struct ib_qp *, const struct ib_recv_wr *, const struct ib_recv_wr **); -+ struct ib_cq * (*create_cq)(struct ib_device *, const struct ib_cq_init_attr *, struct ib_ucontext *, struct ib_udata *); -+ int (*modify_cq)(struct ib_cq *, u16, u16); -+ int (*destroy_cq)(struct ib_cq *); -+ int (*resize_cq)(struct ib_cq *, int, struct ib_udata *); -+ int (*poll_cq)(struct ib_cq *, int, struct ib_wc *); -+ int (*peek_cq)(struct ib_cq *, int); -+ int (*req_notify_cq)(struct ib_cq *, enum ib_cq_notify_flags); -+ int (*req_ncomp_notif)(struct ib_cq *, int); -+ struct ib_mr * (*get_dma_mr)(struct ib_pd *, int); -+ struct ib_mr * (*reg_user_mr)(struct ib_pd *, u64, u64, u64, int, struct ib_udata *); -+ int (*rereg_user_mr)(struct ib_mr *, int, u64, u64, u64, int, struct ib_pd *, struct ib_udata *); -+ int (*dereg_mr)(struct ib_mr *); -+ struct ib_mr * (*alloc_mr)(struct ib_pd *, enum ib_mr_type, u32); -+ int (*map_mr_sg)(struct ib_mr *, struct scatterlist *, int, unsigned int *); -+ struct ib_mw * (*alloc_mw)(struct ib_pd *, enum ib_mw_type, struct ib_udata *); -+ int (*dealloc_mw)(struct ib_mw *); -+ struct ib_fmr * (*alloc_fmr)(struct ib_pd *, int, struct ib_fmr_attr *); -+ int (*map_phys_fmr)(struct ib_fmr *, u64 *, int, u64); -+ int (*unmap_fmr)(struct list_head *); -+ int (*dealloc_fmr)(struct ib_fmr *); -+ int (*attach_mcast)(struct ib_qp *, union ib_gid *, u16); -+ int (*detach_mcast)(struct ib_qp *, union ib_gid *, u16); -+ int (*process_mad)(struct ib_device *, int, u8, const struct ib_wc *, const struct ib_grh *, const struct ib_mad_hdr *, size_t, struct ib_mad_hdr *, size_t *, u16 *); -+ struct ib_xrcd * (*alloc_xrcd)(struct ib_device *, struct ib_ucontext *, struct ib_udata *); -+ int (*dealloc_xrcd)(struct ib_xrcd *); -+ struct ib_flow * (*create_flow)(struct ib_qp *, struct ib_flow_attr *, int, struct ib_udata *); -+ int (*destroy_flow)(struct ib_flow *); -+ int (*check_mr_status)(struct ib_mr *, u32, struct ib_mr_status *); -+ void (*disassociate_ucontext)(struct ib_ucontext *); -+ void (*drain_rq)(struct ib_qp *); -+ void (*drain_sq)(struct ib_qp *); -+ int (*set_vf_link_state)(struct ib_device *, int, u8, int); -+ int (*get_vf_config)(struct ib_device *, int, u8, struct ifla_vf_info *); -+ int (*get_vf_stats)(struct ib_device *, int, u8, struct ifla_vf_stats *); -+ int (*set_vf_guid)(struct ib_device *, int, u8, u64, int); -+ struct ib_wq * (*create_wq)(struct ib_pd *, struct ib_wq_init_attr *, struct ib_udata *); -+ int (*destroy_wq)(struct ib_wq *); -+ int (*modify_wq)(struct ib_wq *, struct ib_wq_attr *, u32, struct ib_udata *); -+ struct ib_rwq_ind_table * (*create_rwq_ind_table)(struct ib_device *, struct ib_rwq_ind_table_init_attr *, struct ib_udata *); -+ int (*destroy_rwq_ind_table)(struct ib_rwq_ind_table *); -+ struct ib_flow_action * (*create_flow_action_esp)(struct ib_device *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ int (*destroy_flow_action)(struct ib_flow_action *); -+ int (*modify_flow_action_esp)(struct ib_flow_action *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ struct ib_dm * (*alloc_dm)(struct ib_device *, struct ib_ucontext *, struct ib_dm_alloc_attr *, struct uverbs_attr_bundle *); -+ int (*dealloc_dm)(struct ib_dm *); -+ struct ib_mr * (*reg_dm_mr)(struct ib_pd *, struct ib_dm *, struct ib_dm_mr_attr *, struct uverbs_attr_bundle *); -+ struct ib_counters * (*create_counters)(struct ib_device *, struct uverbs_attr_bundle *); -+ int (*destroy_counters)(struct ib_counters *); -+ int (*read_counters)(struct ib_counters *, struct ib_counters_read_attr *, struct uverbs_attr_bundle *); -+ struct net_device * (*alloc_rdma_netdev)(struct ib_device *, u8, enum rdma_netdev_t, const char *, unsigned char, void (*)(struct net_device *)); -+ struct module *owner; -+ struct device dev; -+ struct kobject *ports_parent; -+ struct list_head port_list; -+ enum { -+ IB_DEV_UNINITIALIZED = 0, -+ IB_DEV_REGISTERED = 1, -+ IB_DEV_UNREGISTERED = 2, -+ } reg_state; -+ int uverbs_abi_ver; ++ union { ++ struct device dev; ++ struct ib_core_device coredev; ++ }; ++ const struct attribute_group *groups[3]; + u64 uverbs_cmd_mask; + u64 uverbs_ex_cmd_mask; + char node_desc[64]; + __be64 node_guid; + u32 local_dma_lkey; + u16 is_switch: 1; ++ u16 kverbs_provider: 1; ++ u16 use_cq_dim: 1; + u8 node_type; + u8 phys_port_cnt; + struct ib_device_attr attrs; @@ -60779,14 +63149,115 @@ index 0000000..bcb9d76 + struct rdma_hw_stats *hw_stats; + struct rdmacg_device cg_device; + u32 index; -+ struct rdma_restrack_root res; -+ int (*get_port_immutable)(struct ib_device *, u8, struct ib_port_immutable *); -+ void (*get_dev_fw_str)(struct ib_device *, char *); -+ const struct cpumask * (*get_vector_affinity)(struct ib_device *, int); -+ const struct uverbs_object_tree_def * const *driver_specs; -+ enum rdma_driver_id driver_id; ++ spinlock_t cq_pools_lock; ++ struct list_head cq_pools[3]; ++ struct rdma_restrack_root *res; ++ const struct uapi_definition *driver_def; + refcount_t refcount; + struct completion unreg_completion; ++ struct work_struct unregistration_work; ++ const struct rdma_link_ops *link_ops; ++ struct mutex compat_devs_mutex; ++ struct xarray compat_devs; ++ char iw_ifname[16]; ++ u32 iw_driver_flags; ++ u32 lag_flags; ++}; ++ ++enum ib_signature_type { ++ IB_SIG_TYPE_NONE = 0, ++ IB_SIG_TYPE_T10_DIF = 1, ++}; ++ ++enum ib_t10_dif_bg_type { ++ IB_T10DIF_CRC = 0, ++ IB_T10DIF_CSUM = 1, ++}; ++ ++struct ib_t10_dif_domain { ++ enum ib_t10_dif_bg_type bg_type; ++ u16 pi_interval; ++ u16 bg; ++ u16 app_tag; ++ u32 ref_tag; ++ bool ref_remap; ++ bool app_escape; ++ bool ref_escape; ++ u16 apptag_check_mask; ++}; ++ ++struct ib_sig_domain { ++ enum ib_signature_type sig_type; ++ union { ++ struct ib_t10_dif_domain dif; ++ } sig; ++}; ++ ++struct ib_sig_attrs { ++ u8 check_mask; ++ struct ib_sig_domain mem; ++ struct ib_sig_domain wire; ++ int meta_length; ++}; ++ ++enum ib_sig_err_type { ++ IB_SIG_BAD_GUARD = 0, ++ IB_SIG_BAD_REFTAG = 1, ++ IB_SIG_BAD_APPTAG = 2, ++}; ++ ++struct ib_sig_err { ++ enum ib_sig_err_type err_type; ++ u32 expected; ++ u32 actual; ++ u64 sig_err_offset; ++ u32 key; ++}; ++ ++enum ib_uverbs_flow_action_esp_keymat { ++ IB_UVERBS_FLOW_ACTION_ESP_KEYMAT_AES_GCM = 0, ++}; ++ ++struct ib_uverbs_flow_action_esp_keymat_aes_gcm { ++ __u64 iv; ++ __u32 iv_algo; ++ __u32 salt; ++ __u32 icv_len; ++ __u32 key_len; ++ __u32 aes_key[8]; ++}; ++ ++enum ib_uverbs_flow_action_esp_replay { ++ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_NONE = 0, ++ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_BMP = 1, ++}; ++ ++struct ib_uverbs_flow_action_esp_replay_bmp { ++ __u32 size; ++}; ++ ++union ib_gid { ++ u8 raw[16]; ++ struct { ++ __be64 subnet_prefix; ++ __be64 interface_id; ++ } global; ++}; ++ ++enum ib_gid_type { ++ IB_GID_TYPE_IB = 0, ++ IB_GID_TYPE_ROCE = 1, ++ IB_GID_TYPE_ROCE_UDP_ENCAP = 2, ++ IB_GID_TYPE_SIZE = 3, ++}; ++ ++struct ib_gid_attr { ++ struct net_device *ndev; ++ struct ib_device *device; ++ union ib_gid gid; ++ enum ib_gid_type gid_type; ++ u16 index; ++ u8 port_num; +}; + +struct ib_cq_init_attr { @@ -60824,20 +63295,12 @@ index 0000000..bcb9d76 + IB_PORT_ACTIVE_DEFER = 5, +}; + -+struct rdma_hw_stats { -+ struct mutex lock; -+ long unsigned int timestamp; -+ long unsigned int lifespan; -+ const char * const *names; -+ int num_counters; -+ u64 value[0]; -+}; -+ +struct ib_port_attr { + u64 subnet_prefix; + enum ib_port_state state; + enum ib_mtu max_mtu; + enum ib_mtu active_mtu; ++ u32 phys_mtu; + int gid_tbl_len; + unsigned int ip_gids: 1; + u32 port_cap_flags; @@ -60853,8 +63316,9 @@ index 0000000..bcb9d76 + u8 subnet_timeout; + u8 init_type_reply; + u8 active_width; -+ u8 active_speed; ++ u16 active_speed; + u8 phys_state; ++ u16 port_cap_flags2; +}; + +struct ib_device_modify { @@ -60891,35 +63355,39 @@ index 0000000..bcb9d76 + IB_EVENT_WQ_FATAL = 19, +}; + ++struct ib_ucq_object; ++ +typedef void (*ib_comp_handler)(struct ib_cq *, void *); + -+enum ib_poll_context { -+ IB_POLL_DIRECT = 0, -+ IB_POLL_SOFTIRQ = 1, -+ IB_POLL_WORKQUEUE = 2, -+ IB_POLL_UNBOUND_WORKQUEUE = 3, -+}; -+ -+struct ib_uobject; ++struct ib_event; + +struct ib_cq { + struct ib_device *device; -+ struct ib_uobject *uobject; ++ struct ib_ucq_object *uobject; + ib_comp_handler comp_handler; + void (*event_handler)(struct ib_event *, void *); + void *cq_context; + int cqe; ++ unsigned int cqe_used; + atomic_t usecnt; + enum ib_poll_context poll_ctx; + struct ib_wc *wc; ++ struct list_head pool_entry; + union { + struct irq_poll iop; + struct work_struct work; + }; + struct workqueue_struct *comp_wq; ++ struct dim *dim; ++ ktime_t timestamp; ++ u8 interrupt: 1; ++ u8 shared: 1; ++ unsigned int comp_vector; + struct rdma_restrack_entry res; +}; + ++struct ib_uqp_object; ++ +enum ib_qp_type { + IB_QPT_SMI = 0, + IB_QPT_GSI = 1, @@ -60962,7 +63430,7 @@ index 0000000..bcb9d76 + atomic_t usecnt; + struct list_head open_list; + struct ib_qp *real_qp; -+ struct ib_uobject *uobject; ++ struct ib_uqp_object *uobject; + void (*event_handler)(struct ib_event *, void *); + void *qp_context; + const struct ib_gid_attr *av_sgid_attr; @@ -60974,9 +63442,13 @@ index 0000000..bcb9d76 + struct ib_rwq_ind_table *rwq_ind_tbl; + struct ib_qp_security *qp_sec; + u8 port; ++ bool integrity_en; + struct rdma_restrack_entry res; ++ struct rdma_counter *counter; +}; + ++struct ib_usrq_object; ++ +enum ib_srq_type { + IB_SRQT_BASIC = 0, + IB_SRQT_XRC = 1, @@ -60986,7 +63458,7 @@ index 0000000..bcb9d76 +struct ib_srq { + struct ib_device *device; + struct ib_pd *pd; -+ struct ib_uobject *uobject; ++ struct ib_usrq_object *uobject; + void (*event_handler)(struct ib_event *, void *); + void *srq_context; + enum ib_srq_type srq_type; @@ -61002,6 +63474,8 @@ index 0000000..bcb9d76 + } ext; +}; + ++struct ib_uwq_object; ++ +enum ib_wq_state { + IB_WQS_RESET = 0, + IB_WQS_RDY = 1, @@ -61014,7 +63488,7 @@ index 0000000..bcb9d76 + +struct ib_wq { + struct ib_device *device; -+ struct ib_uobject *uobject; ++ struct ib_uwq_object *uobject; + void *wq_context; + void (*event_handler)(struct ib_event *, void *); + struct ib_pd *pd; @@ -61055,25 +63529,17 @@ index 0000000..bcb9d76 + union ib_gid dgid; +}; + -+enum ib_sig_err_type { -+ IB_SIG_BAD_GUARD = 0, -+ IB_SIG_BAD_REFTAG = 1, -+ IB_SIG_BAD_APPTAG = 2, -+}; -+ -+struct ib_sig_err { -+ enum ib_sig_err_type err_type; -+ u32 expected; -+ u32 actual; -+ u64 sig_err_offset; -+ u32 key; -+}; -+ +struct ib_mr_status { + u32 fail_status; + struct ib_sig_err sig_err; +}; + ++struct rdma_ah_init_attr { ++ struct rdma_ah_attr *ah_attr; ++ u32 flags; ++ struct net_device *xmit_slave; ++}; ++ +enum rdma_ah_attr_type { + RDMA_AH_ATTR_TYPE_UNDEFINED = 0, + RDMA_AH_ATTR_TYPE_IB = 1, @@ -61141,11 +63607,12 @@ index 0000000..bcb9d76 + IB_WC_RDMA_READ = 2, + IB_WC_COMP_SWAP = 3, + IB_WC_FETCH_ADD = 4, -+ IB_WC_LSO = 5, ++ IB_WC_BIND_MW = 5, + IB_WC_LOCAL_INV = 6, -+ IB_WC_REG_MR = 7, -+ IB_WC_MASKED_COMP_SWAP = 8, -+ IB_WC_MASKED_FETCH_ADD = 9, ++ IB_WC_LSO = 7, ++ IB_WC_REG_MR = 8, ++ IB_WC_MASKED_COMP_SWAP = 9, ++ IB_WC_MASKED_FETCH_ADD = 10, + IB_WC_RECV = 128, + IB_WC_RECV_RDMA_WITH_IMM = 129, +}; @@ -61190,8 +63657,8 @@ index 0000000..bcb9d76 + struct ib_device *device; + atomic_t usecnt; + struct inode *inode; -+ struct mutex tgt_qp_mutex; -+ struct list_head tgt_qp_list; ++ struct rw_semaphore tgt_qps_rwsem; ++ struct xarray tgt_qps; +}; + +struct ib_srq_init_attr { @@ -61242,6 +63709,8 @@ index 0000000..bcb9d76 + u32 source_qpn; +}; + ++struct ib_uobject; ++ +struct ib_rwq_ind_table { + struct ib_device *device; + struct ib_uobject *uobject; @@ -61267,6 +63736,11 @@ index 0000000..bcb9d76 + IB_MIG_ARMED = 2, +}; + ++enum ib_mw_type { ++ IB_MW_TYPE_1 = 1, ++ IB_MW_TYPE_2 = 2, ++}; ++ +struct ib_qp_attr { + enum ib_qp_state qp_state; + enum ib_qp_state cur_qp_state; @@ -61294,6 +63768,7 @@ index 0000000..bcb9d76 + u8 alt_port_num; + u8 alt_timeout; + u32 rate_limit; ++ struct net_device *xmit_slave; +}; + +enum ib_wr_opcode { @@ -61304,6 +63779,7 @@ index 0000000..bcb9d76 + IB_WR_RDMA_READ = 4, + IB_WR_ATOMIC_CMP_AND_SWP = 5, + IB_WR_ATOMIC_FETCH_AND_ADD = 6, ++ IB_WR_BIND_MW = 8, + IB_WR_LSO = 10, + IB_WR_SEND_WITH_INV = 9, + IB_WR_RDMA_READ_WITH_INV = 11, @@ -61311,7 +63787,7 @@ index 0000000..bcb9d76 + IB_WR_MASKED_ATOMIC_CMP_AND_SWP = 12, + IB_WR_MASKED_ATOMIC_FETCH_AND_ADD = 13, + IB_WR_REG_MR = 32, -+ IB_WR_REG_SIG_MR = 33, ++ IB_WR_REG_MR_INTEGRITY = 33, + IB_WR_RESERVED1 = 240, + IB_WR_RESERVED2 = 241, + IB_WR_RESERVED3 = 242, @@ -61362,12 +63838,14 @@ index 0000000..bcb9d76 + u64 iova; + u64 length; + unsigned int page_size; ++ enum ib_mr_type type; + bool need_inval; + union { + struct ib_uobject *uobject; + struct list_head qp_entry; + }; + struct ib_dm *dm; ++ struct ib_sig_attrs *sig_attrs; + struct rdma_restrack_entry res; +}; + @@ -61381,34 +63859,19 @@ index 0000000..bcb9d76 + int num_sge; +}; + -+struct ib_fmr_attr { -+ int max_pages; -+ int max_maps; -+ u8 page_shift; -+}; -+ +struct ib_rdmacg_object { + struct rdma_cgroup *cg; +}; + +struct ib_uverbs_file; + -+struct ib_umem; -+ +struct ib_ucontext { + struct ib_device *device; + struct ib_uverbs_file *ufile; -+ int closing; + bool cleanup_retryable; -+ struct pid *tgid; -+ struct rb_root_cached umem_tree; -+ struct rw_semaphore umem_rwsem; -+ void (*invalidate_range)(struct ib_umem *, long unsigned int, long unsigned int); -+ struct mmu_notifier mn; -+ atomic_t notifier_count; -+ struct list_head no_private_counters; -+ int odp_mrs_count; + struct ib_rdmacg_object cg_obj; ++ struct rdma_restrack_entry res; ++ struct xarray mmap_xa; +}; + +struct uverbs_api_object; @@ -61518,14 +63981,6 @@ index 0000000..bcb9d76 + enum ib_mw_type type; +}; + -+struct ib_fmr { -+ struct ib_device *device; -+ struct ib_pd *pd; -+ struct list_head list; -+ u32 lkey; -+ u32 rkey; -+}; -+ +enum ib_flow_attr_type { + IB_FLOW_ATTR_NORMAL = 0, + IB_FLOW_ATTR_ALL_DEFAULT = 1, @@ -61804,9 +64259,25 @@ index 0000000..bcb9d76 + u32 max_mad_size; +}; + -+struct ib_port_pkey_list { -+ spinlock_t list_lock; ++struct ib_port_data { ++ struct ib_device *ib_dev; ++ struct ib_port_immutable immutable; ++ spinlock_t pkey_list_lock; + struct list_head pkey_list; ++ struct ib_port_cache cache; ++ spinlock_t netdev_lock; ++ struct net_device *netdev; ++ struct hlist_node ndev_hash_link; ++ struct rdma_port_counter port_counter; ++ struct rdma_hw_stats *hw_stats; ++}; ++ ++struct rdma_netdev_alloc_params { ++ size_t sizeof_priv; ++ unsigned int txqs; ++ unsigned int rxqs; ++ void *param; ++ int (*initialize_rdma_netdev)(struct ib_device *, u8, struct net_device *, void *); +}; + +struct ib_counters_read_attr { @@ -61815,6 +64286,60 @@ index 0000000..bcb9d76 + u32 flags; +}; + ++struct rdma_user_mmap_entry { ++ struct kref ref; ++ struct ib_ucontext *ucontext; ++ long unsigned int start_pgoff; ++ size_t npages; ++ bool driver_removed; ++}; ++ ++enum blk_zone_type { ++ BLK_ZONE_TYPE_CONVENTIONAL = 1, ++ BLK_ZONE_TYPE_SEQWRITE_REQ = 2, ++ BLK_ZONE_TYPE_SEQWRITE_PREF = 3, ++}; ++ ++enum blk_zone_cond { ++ BLK_ZONE_COND_NOT_WP = 0, ++ BLK_ZONE_COND_EMPTY = 1, ++ BLK_ZONE_COND_IMP_OPEN = 2, ++ BLK_ZONE_COND_EXP_OPEN = 3, ++ BLK_ZONE_COND_CLOSED = 4, ++ BLK_ZONE_COND_READONLY = 13, ++ BLK_ZONE_COND_FULL = 14, ++ BLK_ZONE_COND_OFFLINE = 15, ++}; ++ ++enum blk_zone_report_flags { ++ BLK_ZONE_REP_CAPACITY = 1, ++}; ++ ++struct blk_zone_report { ++ __u64 sector; ++ __u32 nr_zones; ++ __u32 flags; ++ struct blk_zone zones[0]; ++}; ++ ++struct blk_zone_range { ++ __u64 sector; ++ __u64 nr_sectors; ++}; ++ ++struct zone_report_args { ++ struct blk_zone *zones; ++}; ++ ++struct blk_revalidate_zone_args { ++ struct gendisk *disk; ++ long unsigned int *conv_zones_bitmap; ++ long unsigned int *seq_zones_wlock; ++ unsigned int nr_zones; ++ sector_t zone_sectors; ++ sector_t sector; ++}; ++ +enum wbt_flags { + WBT_TRACKED = 1, + WBT_READ = 2, @@ -61900,6 +64425,14 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_wbt_timer {}; + ++typedef void (*btf_trace_wbt_stat)(void *, struct backing_dev_info *, struct blk_rq_stat *); ++ ++typedef void (*btf_trace_wbt_lat)(void *, struct backing_dev_info *, long unsigned int); ++ ++typedef void (*btf_trace_wbt_step)(void *, struct backing_dev_info *, const char *, int, long unsigned int, unsigned int, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_wbt_timer)(void *, struct backing_dev_info *, unsigned int, int, unsigned int); ++ +enum { + RWB_DEF_DEPTH = 16, + RWB_WINDOW_NSEC = 100000000, @@ -61915,12 +64448,9 @@ index 0000000..bcb9d76 +}; + +struct wbt_wait_data { -+ struct wait_queue_entry wq; -+ struct task_struct *task; + struct rq_wb *rwb; -+ struct rq_wait *rqw; ++ enum wbt_flags wb_acct; + long unsigned int rw; -+ bool got_token; +}; + +struct show_busy_params { @@ -61928,6 +64458,10 @@ index 0000000..bcb9d76 + struct blk_mq_hw_ctx *hctx; +}; + ++typedef void (*swap_func_t)(void *, void *, int); ++ ++typedef int (*cmp_r_func_t)(const void *, const void *, const void *); ++ +struct siprand_state { + long unsigned int v0; + long unsigned int v1; @@ -61939,6 +64473,13 @@ index 0000000..bcb9d76 + +typedef __kernel_ptrdiff_t ptrdiff_t; + ++struct region { ++ unsigned int start; ++ unsigned int off; ++ unsigned int group_len; ++ unsigned int end; ++}; ++ +enum { + REG_OP_ISFREE = 0, + REG_OP_ALLOC = 1, @@ -61956,6 +64497,10 @@ index 0000000..bcb9d76 + int __pg_advance; +}; + ++struct sg_dma_page_iter { ++ struct sg_page_iter base; ++}; ++ +struct sg_mapping_iter { + struct page *page; + void *addr; @@ -61967,8 +64512,15 @@ index 0000000..bcb9d76 + unsigned int __flags; +}; + -+struct flex_array_part { -+ char elements[4096]; ++typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); ++ ++struct csum_state { ++ __wsum csum; ++ size_t off; ++}; ++ ++struct rhltable { ++ struct rhashtable ht; +}; + +struct rhashtable_walker { @@ -61988,7 +64540,25 @@ index 0000000..bcb9d76 + +union nested_table { + union nested_table *table; -+ struct rhash_head *bucket; ++ struct rhash_lock_head *bucket; ++}; ++ ++struct once_work { ++ struct work_struct work; ++ struct static_key_true *key; ++ struct module *module; ++}; ++ ++struct genradix_iter { ++ size_t offset; ++ size_t pos; ++}; ++ ++struct genradix_node { ++ union { ++ struct genradix_node *children[512]; ++ u8 data[4096]; ++ }; +}; + +struct reciprocal_value_adv { @@ -61998,80 +64568,9 @@ index 0000000..bcb9d76 + bool is_wide_m; +}; + -+struct once_work { -+ struct work_struct work; -+ struct static_key_true *key; -+ struct module *module; -+}; -+ -+struct test_fail { -+ const char *str; -+ unsigned int base; -+}; -+ -+struct test_s8 { -+ const char *str; -+ unsigned int base; -+ s8 expected_res; -+}; -+ -+struct test_u8 { -+ const char *str; -+ unsigned int base; -+ u8 expected_res; -+}; -+ -+struct test_s16 { -+ const char *str; -+ unsigned int base; -+ s16 expected_res; -+}; -+ -+struct test_u16 { -+ const char *str; -+ unsigned int base; -+ u16 expected_res; -+}; -+ -+struct test_s32 { -+ const char *str; -+ unsigned int base; -+ s32 expected_res; -+}; -+ -+struct test_u32 { -+ const char *str; -+ unsigned int base; -+ u32 expected_res; -+}; -+ -+struct test_s64 { -+ const char *str; -+ unsigned int base; -+ s64 expected_res; -+}; -+ -+struct test_u64 { -+ const char *str; -+ unsigned int base; -+ u64 expected_res; -+}; -+ -+struct test_ll { -+ const char *str; -+ unsigned int base; -+ long long int expected_res; -+}; -+ -+struct test_ull { -+ const char *str; -+ unsigned int base; -+ long long unsigned int expected_res; -+}; -+ +enum devm_ioremap_type { + DEVM_IOREMAP = 0, -+ DEVM_IOREMAP_NC = 1, ++ DEVM_IOREMAP_UC = 1, + DEVM_IOREMAP_WC = 2, +}; + @@ -62079,31 +64578,6 @@ index 0000000..bcb9d76 + void *table[6]; +}; + -+enum { -+ LOGIC_PIO_INDIRECT = 0, -+ LOGIC_PIO_CPU_MMIO = 1, -+}; -+ -+struct logic_pio_host_ops; -+ -+struct logic_pio_hwaddr { -+ struct list_head list; -+ struct fwnode_handle *fwnode; -+ resource_size_t hw_start; -+ resource_size_t io_start; -+ resource_size_t size; -+ long unsigned int flags; -+ void *hostdata; -+ const struct logic_pio_host_ops *ops; -+}; -+ -+struct logic_pio_host_ops { -+ u32 (*in)(void *, long unsigned int, size_t); -+ void (*out)(void *, long unsigned int, u32, size_t); -+ u32 (*ins)(void *, long unsigned int, void *, size_t, unsigned int); -+ void (*outs)(void *, long unsigned int, const void *, size_t, unsigned int); -+}; -+ +struct btree_head { + long unsigned int *node; + mempool_t *mempool; @@ -62124,13 +64598,6 @@ index 0000000..bcb9d76 + +typedef void (*visitor64_t)(void *, long unsigned int, u64, size_t); + -+struct interval_tree_node { -+ struct rb_node rb; -+ long unsigned int start; -+ long unsigned int last; -+ long unsigned int __subtree_last; -+}; -+ +enum assoc_array_walk_status { + assoc_array_walk_tree_empty = 0, + assoc_array_walk_found_terminal_node = 1, @@ -62169,20 +64636,11 @@ index 0000000..bcb9d76 + uint32_t memsize; +}; + -+struct xxh64_state { -+ uint64_t total_len; -+ uint64_t v1; -+ uint64_t v2; -+ uint64_t v3; -+ uint64_t v4; -+ uint64_t mem64[4]; -+ uint32_t memsize; -+}; -+ +struct gen_pool_chunk { + struct list_head next_chunk; + atomic_long_t avail; + phys_addr_t phys_addr; ++ void *owner; + long unsigned int start_addr; + long unsigned int end_addr; + long unsigned int bits[0]; @@ -62234,7 +64692,7 @@ index 0000000..bcb9d76 + CHECK = 24, + LENGTH = 25, + DONE = 26, -+ BAD___2 = 27, ++ BAD = 27, + MEM = 28, + SYNC = 29, +} inflate_mode; @@ -62392,6 +64850,15 @@ index 0000000..bcb9d76 + +typedef struct deflate_state deflate_state; + ++typedef enum { ++ need_more = 0, ++ block_done = 1, ++ finish_started = 2, ++ finish_done = 3, ++} block_state; ++ ++typedef block_state (*compress_func)(deflate_state *, int); ++ +struct deflate_workspace { + deflate_state deflate_memory; + Byte *window_memory; @@ -62402,15 +64869,6 @@ index 0000000..bcb9d76 + +typedef struct deflate_workspace deflate_workspace; + -+typedef enum { -+ need_more = 0, -+ block_done = 1, -+ finish_started = 2, -+ finish_done = 3, -+} block_state; -+ -+typedef block_state (*compress_func)(deflate_state *, int); -+ +struct config_s { + ush good_length; + ush max_lazy; @@ -62443,21 +64901,23 @@ index 0000000..bcb9d76 + +typedef uint64_t U64; + -+enum { ++typedef uintptr_t uptrval; ++ ++typedef enum { + noDict = 0, + withPrefix64k = 1, + usingExtDict = 2, -+}; ++} dict_directive; + -+enum { ++typedef enum { + endOnOutputSize = 0, + endOnInputSize = 1, -+}; ++} endCondition_directive; + -+enum { -+ full = 0, -+ partial = 1, -+}; ++typedef enum { ++ decode_full_block = 0, ++ partial_decode = 1, ++} earlyEnd_directive; + +typedef struct { + size_t bitContainer; @@ -62577,11 +65037,11 @@ index 0000000..bcb9d76 + const BYTE *cachedLiterals; +} seqStore_t; + -+struct HUF_CElt_s___2; ++struct HUF_CElt_s; + -+typedef struct HUF_CElt_s___2 HUF_CElt___2; ++typedef struct HUF_CElt_s HUF_CElt___2; + -+struct ZSTD_CCtx_s___2 { ++struct ZSTD_CCtx_s { + const BYTE *nextSrc; + const BYTE *base; + const BYTE *dictBase; @@ -62617,7 +65077,7 @@ index 0000000..bcb9d76 + unsigned int tmpCounters[1536]; +}; + -+typedef struct ZSTD_CCtx_s___2 ZSTD_CCtx___2; ++typedef struct ZSTD_CCtx_s ZSTD_CCtx___2; + +struct ZSTD_CDict_s { + void *dictBuffer; @@ -62810,7 +65270,7 @@ index 0000000..bcb9d76 + ZSTDds_skipFrame = 7, +} ZSTD_dStage; + -+struct ZSTD_DCtx_s___2 { ++struct ZSTD_DCtx_s { + const FSE_DTable *LLTptr; + const FSE_DTable *MLTptr; + const FSE_DTable *OFTptr; @@ -62837,7 +65297,7 @@ index 0000000..bcb9d76 + BYTE headerBuffer[18]; +}; + -+typedef struct ZSTD_DCtx_s___2 ZSTD_DCtx___2; ++typedef struct ZSTD_DCtx_s ZSTD_DCtx___2; + +struct ZSTD_DDict_s { + void *dictBuffer; @@ -63113,7 +65573,7 @@ index 0000000..bcb9d76 + bool need_props; +}; + -+struct xz_dec_lzma2___2 { ++struct xz_dec_lzma2 { + struct rc_dec rc; + struct dictionary dict; + struct lzma2_dec lzma2; @@ -63124,7 +65584,7 @@ index 0000000..bcb9d76 + } temp; +}; + -+struct xz_dec_bcj___2 { ++struct xz_dec_bcj { + enum { + BCJ_X86 = 4, + BCJ_POWERPC = 5, @@ -63177,8 +65637,6 @@ index 0000000..bcb9d76 + const void *data; +}; + -+typedef s32 pao_T_____7; -+ +struct ei_entry { + struct list_head list; + long unsigned int start_addr; @@ -63208,11 +65666,40 @@ index 0000000..bcb9d76 + unsigned int idx; +}; + ++struct flag_settings { ++ unsigned int flags; ++ unsigned int mask; ++}; ++ ++struct flagsbuf { ++ char buf[7]; ++}; ++ +struct nla_bitfield32 { + __u32 value; + __u32 selector; +}; + ++enum nla_policy_validation { ++ NLA_VALIDATE_NONE = 0, ++ NLA_VALIDATE_RANGE = 1, ++ NLA_VALIDATE_RANGE_WARN_TOO_LONG = 2, ++ NLA_VALIDATE_MIN = 3, ++ NLA_VALIDATE_MAX = 4, ++ NLA_VALIDATE_MASK = 5, ++ NLA_VALIDATE_RANGE_PTR = 6, ++ NLA_VALIDATE_FUNCTION = 7, ++}; ++ ++enum netlink_validation { ++ NL_VALIDATE_LIBERAL = 0, ++ NL_VALIDATE_TRAILING = 1, ++ NL_VALIDATE_MAXTYPE = 2, ++ NL_VALIDATE_UNSPEC = 4, ++ NL_VALIDATE_STRICT_ATTRS = 8, ++ NL_VALIDATE_NESTED = 16, ++}; ++ +struct cpu_rmap { + struct kref refcount; + u16 size; @@ -63238,6 +65725,103 @@ index 0000000..bcb9d76 + +typedef unsigned int UHWtype; + ++enum gcry_mpi_constants { ++ MPI_C_ZERO = 0, ++ MPI_C_ONE = 1, ++ MPI_C_TWO = 2, ++ MPI_C_THREE = 3, ++ MPI_C_FOUR = 4, ++ MPI_C_EIGHT = 5, ++}; ++ ++struct barrett_ctx_s; ++ ++typedef struct barrett_ctx_s *mpi_barrett_t; ++ ++struct gcry_mpi_point { ++ MPI x; ++ MPI y; ++ MPI z; ++}; ++ ++typedef struct gcry_mpi_point *MPI_POINT; ++ ++enum gcry_mpi_ec_models { ++ MPI_EC_WEIERSTRASS = 0, ++ MPI_EC_MONTGOMERY = 1, ++ MPI_EC_EDWARDS = 2, ++}; ++ ++enum ecc_dialects { ++ ECC_DIALECT_STANDARD = 0, ++ ECC_DIALECT_ED25519 = 1, ++ ECC_DIALECT_SAFECURVE = 2, ++}; ++ ++struct mpi_ec_ctx { ++ enum gcry_mpi_ec_models model; ++ enum ecc_dialects dialect; ++ int flags; ++ unsigned int nbits; ++ MPI p; ++ MPI a; ++ MPI b; ++ MPI_POINT G; ++ MPI n; ++ unsigned int h; ++ MPI_POINT Q; ++ MPI d; ++ const char *name; ++ struct { ++ struct { ++ unsigned int a_is_pminus3: 1; ++ unsigned int two_inv_p: 1; ++ } valid; ++ int a_is_pminus3; ++ MPI two_inv_p; ++ mpi_barrett_t p_barrett; ++ MPI scratch[11]; ++ } t; ++ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); ++ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); ++ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); ++ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); ++ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); ++}; ++ ++struct field_table { ++ const char *p; ++ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); ++ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); ++ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); ++ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); ++ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); ++}; ++ ++enum gcry_mpi_format { ++ GCRYMPI_FMT_NONE = 0, ++ GCRYMPI_FMT_STD = 1, ++ GCRYMPI_FMT_PGP = 2, ++ GCRYMPI_FMT_SSH = 3, ++ GCRYMPI_FMT_HEX = 4, ++ GCRYMPI_FMT_USG = 5, ++ GCRYMPI_FMT_OPAQUE = 8, ++}; ++ ++struct barrett_ctx_s; ++ ++typedef struct barrett_ctx_s *mpi_barrett_t___2; ++ ++struct barrett_ctx_s { ++ MPI m; ++ int m_copied; ++ int k; ++ MPI y; ++ MPI r1; ++ MPI r2; ++ MPI r3; ++}; ++ +struct karatsuba_ctx { + struct karatsuba_ctx *next; + mpi_ptr_t tspace; @@ -63248,6 +65832,44 @@ index 0000000..bcb9d76 + +typedef long int mpi_limb_signed_t; + ++enum dim_tune_state { ++ DIM_PARKING_ON_TOP = 0, ++ DIM_PARKING_TIRED = 1, ++ DIM_GOING_RIGHT = 2, ++ DIM_GOING_LEFT = 3, ++}; ++ ++struct dim_cq_moder { ++ u16 usec; ++ u16 pkts; ++ u16 comps; ++ u8 cq_period_mode; ++}; ++ ++enum dim_cq_period_mode { ++ DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0, ++ DIM_CQ_PERIOD_MODE_START_FROM_CQE = 1, ++ DIM_CQ_PERIOD_NUM_MODES = 2, ++}; ++ ++enum dim_state { ++ DIM_START_MEASURE = 0, ++ DIM_MEASURE_IN_PROGRESS = 1, ++ DIM_APPLY_NEW_PROFILE = 2, ++}; ++ ++enum dim_stats_state { ++ DIM_STATS_WORSE = 0, ++ DIM_STATS_SAME = 1, ++ DIM_STATS_BETTER = 2, ++}; ++ ++enum dim_step_result { ++ DIM_STEPPED = 0, ++ DIM_TOO_TIRED = 1, ++ DIM_ON_EDGE = 2, ++}; ++ +enum pubkey_algo { + PUBKEY_ALGO_RSA = 0, + PUBKEY_ALGO_MAX = 1, @@ -63283,6 +65905,15 @@ index 0000000..bcb9d76 + IRQ_POLL_F_DISABLE = 1, +}; + ++struct font_desc { ++ int idx; ++ const char *name; ++ int width; ++ int height; ++ const void *data; ++ int pref; ++}; ++ +struct font_data { + unsigned int extra[4]; + const unsigned char data[0]; @@ -63290,6 +65921,135 @@ index 0000000..bcb9d76 + +typedef u16 ucs2_char_t; + ++struct pldmfw_record { ++ struct list_head entry; ++ struct list_head descs; ++ const u8 *version_string; ++ u8 version_type; ++ u8 version_len; ++ u16 package_data_len; ++ u32 device_update_flags; ++ const u8 *package_data; ++ long unsigned int *component_bitmap; ++ u16 component_bitmap_len; ++}; ++ ++struct pldmfw_desc_tlv { ++ struct list_head entry; ++ const u8 *data; ++ u16 type; ++ u16 size; ++}; ++ ++struct pldmfw_component { ++ struct list_head entry; ++ u16 classification; ++ u16 identifier; ++ u16 options; ++ u16 activation_method; ++ u32 comparison_stamp; ++ u32 component_size; ++ const u8 *component_data; ++ const u8 *version_string; ++ u8 version_type; ++ u8 version_len; ++ u8 index; ++}; ++ ++struct pldmfw_ops; ++ ++struct pldmfw { ++ const struct pldmfw_ops *ops; ++ struct device *dev; ++}; ++ ++struct pldmfw_ops { ++ bool (*match_record)(struct pldmfw *, struct pldmfw_record *); ++ int (*send_package_data)(struct pldmfw *, const u8 *, u16); ++ int (*send_component_table)(struct pldmfw *, struct pldmfw_component *, u8); ++ int (*flash_component)(struct pldmfw *, struct pldmfw_component *); ++ int (*finalize_update)(struct pldmfw *); ++}; ++ ++struct __pldm_timestamp { ++ u8 b[13]; ++}; ++ ++struct __pldm_header { ++ uuid_t id; ++ u8 revision; ++ __le16 size; ++ struct __pldm_timestamp release_date; ++ __le16 component_bitmap_len; ++ u8 version_type; ++ u8 version_len; ++ u8 version_string[0]; ++} __attribute__((packed)); ++ ++struct __pldmfw_record_info { ++ __le16 record_len; ++ u8 descriptor_count; ++ __le32 device_update_flags; ++ u8 version_type; ++ u8 version_len; ++ __le16 package_data_len; ++ u8 variable_record_data[0]; ++} __attribute__((packed)); ++ ++struct __pldmfw_desc_tlv { ++ __le16 type; ++ __le16 size; ++ u8 data[0]; ++}; ++ ++struct __pldmfw_record_area { ++ u8 record_count; ++ u8 records[0]; ++}; ++ ++struct __pldmfw_component_info { ++ __le16 classification; ++ __le16 identifier; ++ __le32 comparison_stamp; ++ __le16 options; ++ __le16 activation_method; ++ __le32 location_offset; ++ __le32 size; ++ u8 version_type; ++ u8 version_len; ++ u8 version_string[0]; ++} __attribute__((packed)); ++ ++struct __pldmfw_component_area { ++ __le16 component_image_count; ++ u8 components[0]; ++}; ++ ++struct pldmfw_priv { ++ struct pldmfw *context; ++ const struct firmware *fw; ++ size_t offset; ++ struct list_head records; ++ struct list_head components; ++ const struct __pldm_header *header; ++ u16 total_header_size; ++ u16 component_bitmap_len; ++ u16 bitmap_size; ++ u16 component_count; ++ const u8 *component_start; ++ const u8 *record_start; ++ u8 record_count; ++ u32 header_crc; ++ struct pldmfw_record *matching_record; ++}; ++ ++struct pldm_pci_record_id { ++ int vendor; ++ int device; ++ int subsystem_vendor; ++ int subsystem_device; ++}; ++ +struct msr { + union { + struct { @@ -63327,6 +66087,270 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_msr_trace_class {}; + ++typedef void (*btf_trace_read_msr)(void *, unsigned int, u64, int); ++ ++typedef void (*btf_trace_write_msr)(void *, unsigned int, u64, int); ++ ++typedef void (*btf_trace_rdpmc)(void *, unsigned int, u64, int); ++ ++struct compress_format { ++ unsigned char magic[2]; ++ const char *name; ++ decompress_fn decompressor; ++}; ++ ++struct group_data { ++ int limit[21]; ++ int base[20]; ++ int permute[258]; ++ int minLen; ++ int maxLen; ++}; ++ ++struct bunzip_data { ++ int writeCopies; ++ int writePos; ++ int writeRunCountdown; ++ int writeCount; ++ int writeCurrent; ++ long int (*fill)(void *, long unsigned int); ++ long int inbufCount; ++ long int inbufPos; ++ unsigned char *inbuf; ++ unsigned int inbufBitCount; ++ unsigned int inbufBits; ++ unsigned int crc32Table[256]; ++ unsigned int headerCRC; ++ unsigned int totalCRC; ++ unsigned int writeCRC; ++ unsigned int *dbuf; ++ unsigned int dbufSize; ++ unsigned char selectors[32768]; ++ struct group_data groups[6]; ++ int io_error; ++ int byteCount[256]; ++ unsigned char symToByte[256]; ++ unsigned char mtfSymbol[256]; ++}; ++ ++struct rc { ++ long int (*fill)(void *, long unsigned int); ++ uint8_t *ptr; ++ uint8_t *buffer; ++ uint8_t *buffer_end; ++ long int buffer_size; ++ uint32_t code; ++ uint32_t range; ++ uint32_t bound; ++ void (*error)(char *); ++}; ++ ++struct lzma_header { ++ uint8_t pos; ++ uint32_t dict_size; ++ uint64_t dst_size; ++} __attribute__((packed)); ++ ++struct writer { ++ uint8_t *buffer; ++ uint8_t previous_byte; ++ size_t buffer_pos; ++ int bufsize; ++ size_t global_pos; ++ long int (*flush)(void *, long unsigned int); ++ struct lzma_header *header; ++}; ++ ++struct cstate { ++ int state; ++ uint32_t rep0; ++ uint32_t rep1; ++ uint32_t rep2; ++ uint32_t rep3; ++}; ++ ++struct xz_dec; ++ ++typedef enum { ++ ZSTD_error_no_error = 0, ++ ZSTD_error_GENERIC = 1, ++ ZSTD_error_prefix_unknown = 2, ++ ZSTD_error_version_unsupported = 3, ++ ZSTD_error_parameter_unknown = 4, ++ ZSTD_error_frameParameter_unsupported = 5, ++ ZSTD_error_frameParameter_unsupportedBy32bits = 6, ++ ZSTD_error_frameParameter_windowTooLarge = 7, ++ ZSTD_error_compressionParameter_unsupported = 8, ++ ZSTD_error_init_missing = 9, ++ ZSTD_error_memory_allocation = 10, ++ ZSTD_error_stage_wrong = 11, ++ ZSTD_error_dstSize_tooSmall = 12, ++ ZSTD_error_srcSize_wrong = 13, ++ ZSTD_error_corruption_detected = 14, ++ ZSTD_error_checksum_wrong = 15, ++ ZSTD_error_tableLog_tooLarge = 16, ++ ZSTD_error_maxSymbolValue_tooLarge = 17, ++ ZSTD_error_maxSymbolValue_tooSmall = 18, ++ ZSTD_error_dictionary_corrupted = 19, ++ ZSTD_error_dictionary_wrong = 20, ++ ZSTD_error_dictionaryCreation_failed = 21, ++ ZSTD_error_maxCode = 22, ++} ZSTD_ErrorCode; ++ ++struct ZSTD_DStream_s; ++ ++typedef struct ZSTD_DStream_s ZSTD_DStream___2; ++ ++enum cpio_fields { ++ C_MAGIC = 0, ++ C_INO = 1, ++ C_MODE = 2, ++ C_UID = 3, ++ C_GID = 4, ++ C_NLINK = 5, ++ C_MTIME = 6, ++ C_FILESIZE = 7, ++ C_MAJ = 8, ++ C_MIN = 9, ++ C_RMAJ = 10, ++ C_RMIN = 11, ++ C_NAMESIZE = 12, ++ C_CHKSUM = 13, ++ C_NFIELDS = 14, ++}; ++ ++struct fprop_local_single { ++ long unsigned int events; ++ unsigned int period; ++ raw_spinlock_t lock; ++}; ++ ++struct ida_bitmap { ++ long unsigned int bitmap[16]; ++}; ++ ++struct klist_waiter { ++ struct list_head list; ++ struct klist_node *node; ++ struct task_struct *process; ++ int woken; ++}; ++ ++struct uevent_sock { ++ struct list_head list; ++ struct sock *sk; ++}; ++ ++enum { ++ LOGIC_PIO_INDIRECT = 0, ++ LOGIC_PIO_CPU_MMIO = 1, ++}; ++ ++struct logic_pio_host_ops; ++ ++struct logic_pio_hwaddr { ++ struct list_head list; ++ struct fwnode_handle *fwnode; ++ resource_size_t hw_start; ++ resource_size_t io_start; ++ resource_size_t size; ++ long unsigned int flags; ++ void *hostdata; ++ const struct logic_pio_host_ops *ops; ++}; ++ ++struct logic_pio_host_ops { ++ u32 (*in)(void *, long unsigned int, size_t); ++ void (*out)(void *, long unsigned int, u32, size_t); ++ u32 (*ins)(void *, long unsigned int, void *, size_t, unsigned int); ++ void (*outs)(void *, long unsigned int, const void *, size_t, unsigned int); ++}; ++ ++typedef struct { ++ long unsigned int key[2]; ++} hsiphash_key_t; ++ ++enum format_type { ++ FORMAT_TYPE_NONE = 0, ++ FORMAT_TYPE_WIDTH = 1, ++ FORMAT_TYPE_PRECISION = 2, ++ FORMAT_TYPE_CHAR = 3, ++ FORMAT_TYPE_STR = 4, ++ FORMAT_TYPE_PTR = 5, ++ FORMAT_TYPE_PERCENT_CHAR = 6, ++ FORMAT_TYPE_INVALID = 7, ++ FORMAT_TYPE_LONG_LONG = 8, ++ FORMAT_TYPE_ULONG = 9, ++ FORMAT_TYPE_LONG = 10, ++ FORMAT_TYPE_UBYTE = 11, ++ FORMAT_TYPE_BYTE = 12, ++ FORMAT_TYPE_USHORT = 13, ++ FORMAT_TYPE_SHORT = 14, ++ FORMAT_TYPE_UINT = 15, ++ FORMAT_TYPE_INT = 16, ++ FORMAT_TYPE_SIZE_T = 17, ++ FORMAT_TYPE_PTRDIFF = 18, ++}; ++ ++struct printf_spec { ++ unsigned int type: 8; ++ int field_width: 24; ++ unsigned int flags: 8; ++ unsigned int base: 8; ++ int precision: 16; ++}; ++ ++struct page_flags_fields { ++ int width; ++ int shift; ++ int mask; ++ const struct printf_spec *spec; ++ const char *name; ++}; ++ ++struct minmax_sample { ++ u32 t; ++ u32 v; ++}; ++ ++struct minmax { ++ struct minmax_sample s[3]; ++}; ++ ++enum { ++ st_wordstart = 0, ++ st_wordcmp = 1, ++ st_wordskip = 2, ++ st_bufcpy = 3, ++}; ++ ++enum { ++ st_wordstart___2 = 0, ++ st_wordcmp___2 = 1, ++ st_wordskip___2 = 2, ++}; ++ ++struct in6_addr; ++ ++enum reg_type { ++ REG_TYPE_RM = 0, ++ REG_TYPE_REG = 1, ++ REG_TYPE_INDEX = 2, ++ REG_TYPE_BASE = 3, ++}; ++ ++struct pinctrl; ++ ++struct pinctrl_state; ++ ++struct dev_pin_info { ++ struct pinctrl *p; ++ struct pinctrl_state *default_state; ++ struct pinctrl_state *init_state; ++ struct pinctrl_state *sleep_state; ++ struct pinctrl_state *idle_state; ++}; ++ +struct pinctrl { + struct list_head node; + struct device *dev; @@ -63365,6 +66389,12 @@ index 0000000..bcb9d76 + struct irq_chip *chip; + struct irq_domain *domain; + const struct irq_domain_ops *domain_ops; ++ struct fwnode_handle *fwnode; ++ struct irq_domain *parent_domain; ++ int (*child_to_parent_hwirq)(struct gpio_chip *, unsigned int, unsigned int, unsigned int *, unsigned int *); ++ void * (*populate_parent_alloc_arg)(struct gpio_chip *, unsigned int, unsigned int); ++ unsigned int (*child_offset_to_irq)(struct gpio_chip *, unsigned int); ++ struct irq_domain_ops child_irq_domain_ops; + irq_flow_handler_t handler; + unsigned int default_type; + struct lock_class_key *lock_key; @@ -63372,13 +66402,18 @@ index 0000000..bcb9d76 + irq_flow_handler_t parent_handler; + void *parent_handler_data; + unsigned int num_parents; -+ unsigned int parent_irq; + unsigned int *parents; + unsigned int *map; + bool threaded; -+ bool need_valid_mask; ++ int (*init_hw)(struct gpio_chip *); ++ void (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); ++ bool initialized; + long unsigned int *valid_mask; + unsigned int first; ++ void (*irq_enable)(struct irq_data *); ++ void (*irq_disable)(struct irq_data *); ++ void (*irq_unmask)(struct irq_data *); ++ void (*irq_mask)(struct irq_data *); +}; + +struct gpio_device; @@ -63400,7 +66435,8 @@ index 0000000..bcb9d76 + int (*set_config)(struct gpio_chip *, unsigned int, long unsigned int); + int (*to_irq)(struct gpio_chip *, unsigned int); + void (*dbg_show)(struct seq_file *, struct gpio_chip *); -+ int (*init_valid_mask)(struct gpio_chip *); ++ int (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); ++ int (*add_pin_ranges)(struct gpio_chip *); + int base; + u16 ngpio; + const char * const *names; @@ -63411,14 +66447,14 @@ index 0000000..bcb9d76 + void *reg_dat; + void *reg_set; + void *reg_clr; -+ void *reg_dir; -+ bool bgpio_dir_inverted; ++ void *reg_dir_out; ++ void *reg_dir_in; ++ bool bgpio_dir_unreadable; + int bgpio_bits; + spinlock_t bgpio_lock; + long unsigned int bgpio_data; + long unsigned int bgpio_dir; + struct gpio_irq_chip irq; -+ bool need_valid_mask; + long unsigned int *valid_mask; +}; + @@ -63440,7 +66476,7 @@ index 0000000..bcb9d76 +struct pinctrl_dev { + struct list_head node; + struct pinctrl_desc *desc; -+ struct radix_tree_root pin_desc_tree; ++ struct xarray pin_desc_tree; + struct list_head gpio_ranges; + struct device *dev; + struct module *owner; @@ -63482,12 +66518,12 @@ index 0000000..bcb9d76 + } data; +}; + -+struct pinconf_generic_params; -+ +struct pinmux_ops; + +struct pinconf_ops; + ++struct pinconf_generic_params; ++ +struct pin_config_item; + +struct pinctrl_desc { @@ -63501,6 +66537,7 @@ index 0000000..bcb9d76 + unsigned int num_custom_params; + const struct pinconf_generic_params *custom_params; + const struct pin_config_item *custom_conf_items; ++ bool link_consumers; +}; + +struct pinmux_ops { @@ -63522,7 +66559,6 @@ index 0000000..bcb9d76 + int (*pin_config_set)(struct pinctrl_dev *, unsigned int, long unsigned int *, unsigned int); + int (*pin_config_group_get)(struct pinctrl_dev *, unsigned int, long unsigned int *); + int (*pin_config_group_set)(struct pinctrl_dev *, unsigned int, long unsigned int *, unsigned int); -+ int (*pin_config_dbg_parse_modify)(struct pinctrl_dev *, const char *, long unsigned int *); + void (*pin_config_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); + void (*pin_config_group_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); + void (*pin_config_config_dbg_show)(struct pinctrl_dev *, struct seq_file *, long unsigned int); @@ -63539,22 +66575,29 @@ index 0000000..bcb9d76 + PIN_CONFIG_DRIVE_OPEN_SOURCE = 7, + PIN_CONFIG_DRIVE_PUSH_PULL = 8, + PIN_CONFIG_DRIVE_STRENGTH = 9, -+ PIN_CONFIG_INPUT_DEBOUNCE = 10, -+ PIN_CONFIG_INPUT_ENABLE = 11, -+ PIN_CONFIG_INPUT_SCHMITT = 12, -+ PIN_CONFIG_INPUT_SCHMITT_ENABLE = 13, -+ PIN_CONFIG_LOW_POWER_MODE = 14, -+ PIN_CONFIG_OUTPUT_ENABLE = 15, -+ PIN_CONFIG_OUTPUT = 16, -+ PIN_CONFIG_POWER_SOURCE = 17, -+ PIN_CONFIG_SLEEP_HARDWARE_STATE = 18, -+ PIN_CONFIG_SLEW_RATE = 19, -+ PIN_CONFIG_SKEW_DELAY = 20, -+ PIN_CONFIG_PERSIST_STATE = 21, ++ PIN_CONFIG_DRIVE_STRENGTH_UA = 10, ++ PIN_CONFIG_INPUT_DEBOUNCE = 11, ++ PIN_CONFIG_INPUT_ENABLE = 12, ++ PIN_CONFIG_INPUT_SCHMITT = 13, ++ PIN_CONFIG_INPUT_SCHMITT_ENABLE = 14, ++ PIN_CONFIG_LOW_POWER_MODE = 15, ++ PIN_CONFIG_OUTPUT_ENABLE = 16, ++ PIN_CONFIG_OUTPUT = 17, ++ PIN_CONFIG_POWER_SOURCE = 18, ++ PIN_CONFIG_SLEEP_HARDWARE_STATE = 19, ++ PIN_CONFIG_SLEW_RATE = 20, ++ PIN_CONFIG_SKEW_DELAY = 21, ++ PIN_CONFIG_PERSIST_STATE = 22, + PIN_CONFIG_END = 127, + PIN_CONFIG_MAX = 255, +}; + ++struct pinconf_generic_params { ++ const char * const property; ++ enum pin_config_param param; ++ u32 default_value; ++}; ++ +struct pin_config_item { + const enum pin_config_param param; + const char * const display; @@ -63562,6 +66605,33 @@ index 0000000..bcb9d76 + bool has_arg; +}; + ++struct gpio_desc; ++ ++struct gpio_device { ++ int id; ++ struct device dev; ++ struct cdev chrdev; ++ struct device *mockdev; ++ struct module *owner; ++ struct gpio_chip *chip; ++ struct gpio_desc *descs; ++ int base; ++ u16 ngpio; ++ const char *label; ++ void *data; ++ struct list_head list; ++ struct blocking_notifier_head notifier; ++ struct list_head pin_ranges; ++}; ++ ++struct gpio_desc { ++ struct gpio_device *gdev; ++ long unsigned int flags; ++ const char *label; ++ const char *name; ++ unsigned int debounce_period_us; ++}; ++ +struct pinctrl_setting_mux { + unsigned int group; + unsigned int func; @@ -63603,103 +66673,157 @@ index 0000000..bcb9d76 + +struct pctldev; + -+struct dbg_cfg { -+ enum pinctrl_map_type map_type; -+ char dev_name[16]; -+ char state_name[16]; -+ char pin_name[16]; -+}; -+ -+struct byt_gpio_pin_context { -+ u32 conf0; -+ u32 val; -+}; -+ -+struct byt_simple_func_mux { -+ const char *name; -+ short unsigned int func; -+}; -+ -+struct byt_mixed_func_mux { -+ const char *name; -+ const short unsigned int *func_values; -+}; -+ -+struct byt_pingroup { ++struct intel_pingroup { + const char *name; + const unsigned int *pins; + size_t npins; -+ short unsigned int has_simple_funcs; -+ union { -+ const struct byt_simple_func_mux *simple_funcs; -+ const struct byt_mixed_func_mux *mixed_funcs; -+ }; -+ size_t nfuncs; ++ short unsigned int mode; ++ const unsigned int *modes; +}; + -+struct byt_function { ++struct intel_function { + const char *name; + const char * const *groups; + size_t ngroups; +}; + -+struct byt_community { -+ unsigned int pin_base; -+ size_t npins; -+ const unsigned int *pad_map; -+ void *reg_base; ++struct intel_padgroup { ++ unsigned int reg_num; ++ unsigned int base; ++ unsigned int size; ++ int gpio_base; ++ unsigned int padown_num; +}; + -+struct byt_pinctrl_soc_data { ++struct intel_community { ++ unsigned int barno; ++ unsigned int padown_offset; ++ unsigned int padcfglock_offset; ++ unsigned int hostown_offset; ++ unsigned int is_offset; ++ unsigned int ie_offset; ++ unsigned int features; ++ unsigned int pin_base; ++ size_t npins; ++ unsigned int gpp_size; ++ unsigned int gpp_num_padown_regs; ++ const struct intel_padgroup *gpps; ++ size_t ngpps; ++ const unsigned int *pad_map; ++ short unsigned int nirqs; ++ short unsigned int acpi_space_id; ++ void *regs; ++ void *pad_regs; ++}; ++ ++struct intel_pinctrl_soc_data { + const char *uid; + const struct pinctrl_pin_desc *pins; + size_t npins; -+ const struct byt_pingroup *groups; ++ const struct intel_pingroup *groups; + size_t ngroups; -+ const struct byt_function *functions; ++ const struct intel_function *functions; + size_t nfunctions; -+ const struct byt_community *communities; ++ const struct intel_community *communities; + size_t ncommunities; +}; + -+struct byt_gpio { ++struct intel_community_context; ++ ++struct intel_pad_context; ++ ++struct intel_pinctrl_context { ++ struct intel_pad_context *pads; ++ struct intel_community_context *communities; ++}; ++ ++struct intel_pad_context { ++ u32 conf0; ++ u32 val; ++}; ++ ++struct intel_pinctrl { ++ struct device *dev; ++ raw_spinlock_t lock; ++ struct pinctrl_desc pctldesc; ++ struct pinctrl_dev *pctldev; + struct gpio_chip chip; -+ struct platform_device *pdev; -+ struct pinctrl_dev *pctl_dev; -+ struct pinctrl_desc pctl_desc; -+ const struct byt_pinctrl_soc_data *soc_data; -+ struct byt_community *communities_copy; -+ struct byt_gpio_pin_context *saved_context; ++ struct irq_chip irqchip; ++ const struct intel_pinctrl_soc_data *soc; ++ struct intel_community *communities; ++ size_t ncommunities; ++ struct intel_pinctrl_context context; ++ int irq; +}; + -+struct gpio_desc; -+ -+struct gpio_device { -+ int id; -+ struct device dev; -+ struct cdev chrdev; -+ struct device *mockdev; -+ struct module *owner; -+ struct gpio_chip *chip; -+ struct gpio_desc *descs; -+ int base; -+ u16 ngpio; -+ const char *label; -+ void *data; -+ struct list_head list; -+ struct list_head pin_ranges; ++enum { ++ INTEL_GPIO_BASE_ZERO = 4294967294, ++ INTEL_GPIO_BASE_NOMAP = 4294967295, ++ INTEL_GPIO_BASE_MATCH = 0, +}; + ++struct intel_pad_context___2; ++ ++struct intel_community_context; ++ ++struct intel_pinctrl_context___2 { ++ struct intel_pad_context___2 *pads; ++ struct intel_community_context *communities; ++}; ++ ++struct intel_pad_context___2 { ++ u32 padcfg0; ++ u32 padcfg1; ++ u32 padcfg2; ++}; ++ ++struct intel_community_context { ++ u32 *intmask; ++ u32 *hostown; ++}; ++ ++struct intel_pinctrl___2 { ++ struct device *dev; ++ raw_spinlock_t lock; ++ struct pinctrl_desc pctldesc; ++ struct pinctrl_dev *pctldev; ++ struct gpio_chip chip; ++ struct irq_chip irqchip; ++ const struct intel_pinctrl_soc_data *soc; ++ struct intel_community *communities; ++ size_t ncommunities; ++ struct intel_pinctrl_context___2 context; ++ int irq; ++}; ++ ++enum { ++ PAD_UNLOCKED = 0, ++ PAD_LOCKED = 1, ++ PAD_LOCKED_TX = 2, ++ PAD_LOCKED_FULL = 3, ++}; ++ ++struct gpio_pin_range { ++ struct list_head node; ++ struct pinctrl_dev *pctldev; ++ struct pinctrl_gpio_range range; ++}; ++ ++struct gpio_array; ++ +struct gpio_descs { ++ struct gpio_array *info; + unsigned int ndescs; + struct gpio_desc *desc[0]; +}; + -+struct gpio_desc { -+ struct gpio_device *gdev; -+ long unsigned int flags; -+ const char *label; -+ const char *name; ++struct gpio_array { ++ struct gpio_desc **desc; ++ unsigned int size; ++ struct gpio_chip *chip; ++ long unsigned int *get_mask; ++ long unsigned int *set_mask; ++ long unsigned int invert_mask[0]; +}; + +enum gpiod_flags { @@ -63711,19 +66835,6 @@ index 0000000..bcb9d76 + GPIOD_OUT_HIGH_OPEN_DRAIN = 15, +}; + -+struct gpio_pin_range { -+ struct list_head node; -+ struct pinctrl_dev *pctldev; -+ struct pinctrl_gpio_range range; -+}; -+ -+enum of_gpio_flags { -+ OF_GPIO_ACTIVE_LOW = 1, -+ OF_GPIO_SINGLE_ENDED = 2, -+ OF_GPIO_OPEN_DRAIN = 4, -+ OF_GPIO_TRANSITORY = 8, -+}; -+ +enum gpio_lookup_flags { + GPIO_ACTIVE_HIGH = 0, + GPIO_ACTIVE_LOW = 1, @@ -63731,14 +66842,17 @@ index 0000000..bcb9d76 + GPIO_OPEN_SOURCE = 4, + GPIO_PERSISTENT = 0, + GPIO_TRANSITORY = 8, ++ GPIO_PULL_UP = 16, ++ GPIO_PULL_DOWN = 32, ++ GPIO_LOOKUP_FLAGS_DEFAULT = 0, +}; + +struct gpiod_lookup { -+ const char *chip_label; ++ const char *key; + u16 chip_hwnum; + const char *con_id; + unsigned int idx; -+ enum gpio_lookup_flags flags; ++ long unsigned int flags; +}; + +struct gpiod_lookup_table { @@ -63752,16 +66866,158 @@ index 0000000..bcb9d76 + const char *chip_label; + u16 chip_hwnum; + const char *line_name; -+ enum gpio_lookup_flags lflags; ++ long unsigned int lflags; + int dflags; +}; + ++enum { ++ GPIOLINE_CHANGED_REQUESTED = 1, ++ GPIOLINE_CHANGED_RELEASED = 2, ++ GPIOLINE_CHANGED_CONFIG = 3, ++}; ++ ++struct acpi_gpio_info { ++ struct acpi_device *adev; ++ enum gpiod_flags flags; ++ bool gpioint; ++ int pin_config; ++ int polarity; ++ int triggering; ++ unsigned int quirks; ++}; ++ ++struct trace_event_raw_gpio_direction { ++ struct trace_entry ent; ++ unsigned int gpio; ++ int in; ++ int err; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_gpio_value { ++ struct trace_entry ent; ++ unsigned int gpio; ++ int get; ++ int value; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_gpio_direction {}; ++ ++struct trace_event_data_offsets_gpio_value {}; ++ ++typedef void (*btf_trace_gpio_direction)(void *, unsigned int, int, int); ++ ++typedef void (*btf_trace_gpio_value)(void *, unsigned int, int, int); ++ ++struct devres; ++ ++struct gpio { ++ unsigned int gpio; ++ long unsigned int flags; ++ const char *label; ++}; ++ +struct gpiochip_info { + char name[32]; + char label[32]; + __u32 lines; +}; + ++enum gpio_v2_line_flag { ++ GPIO_V2_LINE_FLAG_USED = 1, ++ GPIO_V2_LINE_FLAG_ACTIVE_LOW = 2, ++ GPIO_V2_LINE_FLAG_INPUT = 4, ++ GPIO_V2_LINE_FLAG_OUTPUT = 8, ++ GPIO_V2_LINE_FLAG_EDGE_RISING = 16, ++ GPIO_V2_LINE_FLAG_EDGE_FALLING = 32, ++ GPIO_V2_LINE_FLAG_OPEN_DRAIN = 64, ++ GPIO_V2_LINE_FLAG_OPEN_SOURCE = 128, ++ GPIO_V2_LINE_FLAG_BIAS_PULL_UP = 256, ++ GPIO_V2_LINE_FLAG_BIAS_PULL_DOWN = 512, ++ GPIO_V2_LINE_FLAG_BIAS_DISABLED = 1024, ++}; ++ ++struct gpio_v2_line_values { ++ __u64 bits; ++ __u64 mask; ++}; ++ ++enum gpio_v2_line_attr_id { ++ GPIO_V2_LINE_ATTR_ID_FLAGS = 1, ++ GPIO_V2_LINE_ATTR_ID_OUTPUT_VALUES = 2, ++ GPIO_V2_LINE_ATTR_ID_DEBOUNCE = 3, ++}; ++ ++struct gpio_v2_line_attribute { ++ __u32 id; ++ __u32 padding; ++ union { ++ __u64 flags; ++ __u64 values; ++ __u32 debounce_period_us; ++ }; ++}; ++ ++struct gpio_v2_line_config_attribute { ++ struct gpio_v2_line_attribute attr; ++ __u64 mask; ++}; ++ ++struct gpio_v2_line_config { ++ __u64 flags; ++ __u32 num_attrs; ++ __u32 padding[5]; ++ struct gpio_v2_line_config_attribute attrs[10]; ++}; ++ ++struct gpio_v2_line_request { ++ __u32 offsets[64]; ++ char consumer[32]; ++ struct gpio_v2_line_config config; ++ __u32 num_lines; ++ __u32 event_buffer_size; ++ __u32 padding[5]; ++ __s32 fd; ++}; ++ ++struct gpio_v2_line_info { ++ char name[32]; ++ char consumer[32]; ++ __u32 offset; ++ __u32 num_attrs; ++ __u64 flags; ++ struct gpio_v2_line_attribute attrs[10]; ++ __u32 padding[4]; ++}; ++ ++enum gpio_v2_line_changed_type { ++ GPIO_V2_LINE_CHANGED_REQUESTED = 1, ++ GPIO_V2_LINE_CHANGED_RELEASED = 2, ++ GPIO_V2_LINE_CHANGED_CONFIG = 3, ++}; ++ ++struct gpio_v2_line_info_changed { ++ struct gpio_v2_line_info info; ++ __u64 timestamp_ns; ++ __u32 event_type; ++ __u32 padding[5]; ++}; ++ ++enum gpio_v2_line_event_id { ++ GPIO_V2_LINE_EVENT_RISING_EDGE = 1, ++ GPIO_V2_LINE_EVENT_FALLING_EDGE = 2, ++}; ++ ++struct gpio_v2_line_event { ++ __u64 timestamp_ns; ++ __u32 id; ++ __u32 offset; ++ __u32 seqno; ++ __u32 line_seqno; ++ __u32 padding[6]; ++}; ++ +struct gpioline_info { + __u32 line_offset; + __u32 flags; @@ -63769,6 +67025,13 @@ index 0000000..bcb9d76 + char consumer[32]; +}; + ++struct gpioline_info_changed { ++ struct gpioline_info info; ++ __u64 timestamp; ++ __u32 event_type; ++ __u32 padding[5]; ++}; ++ +struct gpiohandle_request { + __u32 lineoffsets[64]; + __u32 flags; @@ -63778,6 +67041,12 @@ index 0000000..bcb9d76 + int fd; +}; + ++struct gpiohandle_config { ++ __u32 flags; ++ __u8 default_values[64]; ++ __u32 padding[4]; ++}; ++ +struct gpiohandle_data { + __u8 values[64]; +}; @@ -63795,20 +67064,48 @@ index 0000000..bcb9d76 + __u32 id; +}; + -+struct acpi_gpio_info { -+ struct acpi_device *adev; -+ enum gpiod_flags flags; -+ bool gpioint; -+ int polarity; -+ int triggering; -+ unsigned int quirks; -+}; -+ +struct linehandle_state { + struct gpio_device *gdev; + const char *label; + struct gpio_desc *descs[64]; -+ u32 numdescs; ++ u32 num_descs; ++}; ++ ++struct linereq; ++ ++struct line { ++ struct gpio_desc *desc; ++ struct linereq *req; ++ unsigned int irq; ++ u64 eflags; ++ u64 timestamp_ns; ++ u32 req_seqno; ++ u32 line_seqno; ++ struct delayed_work work; ++ unsigned int sw_debounced; ++ unsigned int level; ++}; ++ ++struct linereq { ++ struct gpio_device *gdev; ++ const char *label; ++ u32 num_lines; ++ wait_queue_head_t wait; ++ u32 event_buffer_size; ++ struct { ++ union { ++ struct __kfifo kfifo; ++ struct gpio_v2_line_event *type; ++ const struct gpio_v2_line_event *const_type; ++ char (*rectype)[0]; ++ struct gpio_v2_line_event *ptr; ++ const struct gpio_v2_line_event *ptr_const; ++ }; ++ struct gpio_v2_line_event buf[0]; ++ } events; ++ atomic_t seqno; ++ struct mutex config_mutex; ++ struct line lines[0]; +}; + +struct lineevent_state { @@ -63829,14 +67126,26 @@ index 0000000..bcb9d76 + }; + struct gpioevent_data buf[16]; + } events; -+ struct mutex read_lock; + u64 timestamp; +}; + -+struct gpio { -+ unsigned int gpio; -+ long unsigned int flags; -+ const char *label; ++struct gpio_chardev_data { ++ struct gpio_device *gdev; ++ wait_queue_head_t wait; ++ struct { ++ union { ++ struct __kfifo kfifo; ++ struct gpio_v2_line_info_changed *type; ++ const struct gpio_v2_line_info_changed *const_type; ++ char (*rectype)[0]; ++ struct gpio_v2_line_info_changed *ptr; ++ const struct gpio_v2_line_info_changed *ptr_const; ++ }; ++ struct gpio_v2_line_info_changed buf[32]; ++ } events; ++ struct notifier_block lineinfo_changed_nb; ++ long unsigned int *watched_lines; ++ atomic_t watch_abi_version; +}; + +struct class_attribute { @@ -63864,7 +67173,7 @@ index 0000000..bcb9d76 + u8 descriptor_length; + u8 triggering; + u8 polarity; -+ u8 sharable; ++ u8 shareable; + u8 wake_capable; + u8 interrupt_count; + u8 interrupts[1]; @@ -64054,7 +67363,7 @@ index 0000000..bcb9d76 + u8 producer_consumer; + u8 triggering; + u8 polarity; -+ u8 sharable; ++ u8 shareable; + u8 wake_capable; + u8 interrupt_count; + struct acpi_resource_source resource_source; @@ -64074,7 +67383,7 @@ index 0000000..bcb9d76 + u8 connection_type; + u8 producer_consumer; + u8 pin_config; -+ u8 sharable; ++ u8 shareable; + u8 wake_capable; + u8 io_restriction; + u8 triggering; @@ -64162,7 +67471,7 @@ index 0000000..bcb9d76 +struct acpi_resource_pin_function { + u8 revision_id; + u8 pin_config; -+ u8 sharable; ++ u8 shareable; + u16 function_number; + u16 pin_table_length; + u16 vendor_length; @@ -64174,7 +67483,7 @@ index 0000000..bcb9d76 +struct acpi_resource_pin_config { + u8 revision_id; + u8 producer_consumer; -+ u8 sharable; ++ u8 shareable; + u8 pin_config_type; + u32 pin_config_value; + u16 pin_table_length; @@ -64197,7 +67506,7 @@ index 0000000..bcb9d76 +struct acpi_resource_pin_group_function { + u8 revision_id; + u8 producer_consumer; -+ u8 sharable; ++ u8 shareable; + u16 function_number; + u16 vendor_length; + struct acpi_resource_source resource_source; @@ -64208,7 +67517,7 @@ index 0000000..bcb9d76 +struct acpi_resource_pin_group_config { + u8 revision_id; + u8 producer_consumer; -+ u8 sharable; ++ u8 shareable; + u8 pin_config_type; + u32 pin_config_value; + u16 vendor_length; @@ -64255,6 +67564,11 @@ index 0000000..bcb9d76 + union acpi_resource_data data; +} __attribute__((packed)); + ++struct acpi_gpiolib_dmi_quirk { ++ bool no_edge_events_on_boot; ++ char *ignore_wake; ++}; ++ +struct acpi_gpio_event { + struct list_head node; + acpi_handle handle; @@ -64291,13 +67605,36 @@ index 0000000..bcb9d76 + int n; +}; + ++enum device_link_state { ++ DL_STATE_NONE = 4294967295, ++ DL_STATE_DORMANT = 0, ++ DL_STATE_AVAILABLE = 1, ++ DL_STATE_CONSUMER_PROBE = 2, ++ DL_STATE_ACTIVE = 3, ++ DL_STATE_SUPPLIER_UNBIND = 4, ++}; ++ ++struct device_link { ++ struct device *supplier; ++ struct list_head s_node; ++ struct device *consumer; ++ struct list_head c_node; ++ struct device link_dev; ++ enum device_link_state status; ++ u32 flags; ++ refcount_t rpm_active; ++ struct kref kref; ++ struct work_struct rm_work; ++ bool supplier_preactivated; ++}; ++ +enum pwm_polarity { + PWM_POLARITY_NORMAL = 0, + PWM_POLARITY_INVERSED = 1, +}; + +struct pwm_args { -+ unsigned int period; ++ u64 period; + enum pwm_polarity polarity; +}; + @@ -64307,8 +67644,8 @@ index 0000000..bcb9d76 +}; + +struct pwm_state { -+ unsigned int period; -+ unsigned int duty_cycle; ++ u64 period; ++ u64 duty_cycle; + enum pwm_polarity polarity; + bool enabled; +}; @@ -64324,19 +67661,20 @@ index 0000000..bcb9d76 + void *chip_data; + struct pwm_args args; + struct pwm_state state; ++ struct pwm_state last; +}; + +struct pwm_ops; + +struct pwm_chip { + struct device *dev; -+ struct list_head list; + const struct pwm_ops *ops; + int base; + unsigned int npwm; -+ struct pwm_device *pwms; + struct pwm_device * (*of_xlate)(struct pwm_chip *, const struct of_phandle_args *); + unsigned int of_pwm_n_cells; ++ struct list_head list; ++ struct pwm_device *pwms; +}; + +struct pwm_capture; @@ -64344,15 +67682,14 @@ index 0000000..bcb9d76 +struct pwm_ops { + int (*request)(struct pwm_chip *, struct pwm_device *); + void (*free)(struct pwm_chip *, struct pwm_device *); ++ int (*capture)(struct pwm_chip *, struct pwm_device *, struct pwm_capture *, long unsigned int); ++ int (*apply)(struct pwm_chip *, struct pwm_device *, const struct pwm_state *); ++ void (*get_state)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); ++ struct module *owner; + int (*config)(struct pwm_chip *, struct pwm_device *, int, int); + int (*set_polarity)(struct pwm_chip *, struct pwm_device *, enum pwm_polarity); -+ int (*capture)(struct pwm_chip *, struct pwm_device *, struct pwm_capture *, long unsigned int); + int (*enable)(struct pwm_chip *, struct pwm_device *); + void (*disable)(struct pwm_chip *, struct pwm_device *); -+ int (*apply)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); -+ void (*get_state)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); -+ void (*dbg_show)(struct pwm_chip *, struct seq_file *); -+ struct module *owner; +}; + +struct pwm_capture { @@ -64371,10 +67708,33 @@ index 0000000..bcb9d76 + const char *module; +}; + ++struct trace_event_raw_pwm { ++ struct trace_entry ent; ++ struct pwm_device *pwm; ++ u64 period; ++ u64 duty_cycle; ++ enum pwm_polarity polarity; ++ bool enabled; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_pwm {}; ++ ++typedef void (*btf_trace_pwm_apply)(void *, struct pwm_device *, const struct pwm_state *); ++ ++typedef void (*btf_trace_pwm_get)(void *, struct pwm_device *, const struct pwm_state *); ++ +struct pwm_export { + struct device child; + struct pwm_device *pwm; + struct mutex lock; ++ struct pwm_state suspend; ++}; ++ ++enum { ++ pci_channel_io_normal = 1, ++ pci_channel_io_frozen = 2, ++ pci_channel_io_perm_failure = 3, +}; + +struct pci_sriov { @@ -64400,14 +67760,20 @@ index 0000000..bcb9d76 + u16 subsystem_device; + resource_size_t barsz[6]; + bool drivers_autoprobe; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; ++}; ++ ++struct rcec_ea { ++ u8 nextbusn; ++ u8 lastbusn; ++ u32 bitmap; +}; + +struct pci_bus_resource { @@ -64436,22 +67802,20 @@ index 0000000..bcb9d76 + +struct hotplug_slot_ops; + -+struct hotplug_slot_info; -+ +struct hotplug_slot { -+ struct hotplug_slot_ops *ops; -+ struct hotplug_slot_info *info; -+ void *private; ++ const struct hotplug_slot_ops *ops; + struct list_head slot_list; + struct pci_slot *pci_slot; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; ++ struct module *owner; ++ const char *mod_name; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; +}; + +enum pci_dev_flags { @@ -64466,6 +67830,7 @@ index 0000000..bcb9d76 + PCI_DEV_FLAGS_BRIDGE_XLATE_ROOT = 512, + PCI_DEV_FLAGS_NO_FLR_RESET = 1024, + PCI_DEV_FLAGS_NO_RELAXED_ORDERING = 2048, ++ PCI_DEV_FLAGS_HAS_MSI_MASKING = 4096, +}; + +enum pci_bus_flags { @@ -64507,9 +67872,11 @@ index 0000000..bcb9d76 + struct device dev; + struct pci_bus *bus; + struct pci_ops *ops; ++ struct pci_ops *child_ops; + void *sysdata; + int busnr; + struct list_head windows; ++ struct list_head dma_ranges; + u8 (*swizzle_irq)(struct pci_dev *, u8 *); + int (*map_irq)(const struct pci_dev *, u8, u8); + void (*release_fn)(struct pci_host_bridge *); @@ -64522,10 +67889,13 @@ index 0000000..bcb9d76 + unsigned int native_shpc_hotplug: 1; + unsigned int native_pme: 1; + unsigned int native_ltr: 1; ++ unsigned int native_dpc: 1; + unsigned int preserve_config: 1; ++ unsigned int size_windows: 1; + resource_size_t (*align_resource)(struct pci_dev *, const struct resource *, resource_size_t, resource_size_t, resource_size_t); + long: 64; + long: 64; ++ long: 64; + long unsigned int private[0]; +}; + @@ -64539,9 +67909,15 @@ index 0000000..bcb9d76 + PCI_SCAN_ALL_PCIE_DEVS = 64, +}; + ++enum pcie_bus_config_types { ++ PCIE_BUS_TUNE_OFF = 0, ++ PCIE_BUS_DEFAULT = 1, ++ PCIE_BUS_SAFE = 2, ++ PCIE_BUS_PERFORMANCE = 3, ++ PCIE_BUS_PEER2PEER = 4, ++}; ++ +struct hotplug_slot_ops { -+ struct module *owner; -+ const char *mod_name; + int (*enable_slot)(struct hotplug_slot *); + int (*disable_slot)(struct hotplug_slot *); + int (*set_attention_status)(struct hotplug_slot *, u8); @@ -64551,65 +67927,14 @@ index 0000000..bcb9d76 + int (*get_latch_status)(struct hotplug_slot *, u8 *); + int (*get_adapter_status)(struct hotplug_slot *, u8 *); + int (*reset_slot)(struct hotplug_slot *, int); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; -+ long unsigned int kabi_reserved7; -+ long unsigned int kabi_reserved8; -+}; -+ -+struct hotplug_slot_info { -+ u8 power_status; -+ u8 attention_status; -+ u8 latch_status; -+ u8 adapter_status; -+}; -+ -+struct hpp_type0 { -+ u32 revision; -+ u8 cache_line_size; -+ u8 latency_timer; -+ u8 enable_serr; -+ u8 enable_perr; -+}; -+ -+struct hpp_type1 { -+ u32 revision; -+ u8 max_mem_read; -+ u8 avg_max_split; -+ u16 tot_max_split; -+}; -+ -+struct hpp_type2 { -+ u32 revision; -+ u32 unc_err_mask_and; -+ u32 unc_err_mask_or; -+ u32 unc_err_sever_and; -+ u32 unc_err_sever_or; -+ u32 cor_err_mask_and; -+ u32 cor_err_mask_or; -+ u32 adv_err_cap_and; -+ u32 adv_err_cap_or; -+ u16 pci_exp_devctl_and; -+ u16 pci_exp_devctl_or; -+ u16 pci_exp_lnkctl_and; -+ u16 pci_exp_lnkctl_or; -+ u32 sec_unc_err_sever_and; -+ u32 sec_unc_err_sever_or; -+ u32 sec_unc_err_mask_and; -+ u32 sec_unc_err_mask_or; -+}; -+ -+struct hotplug_params { -+ struct hpp_type0 *t0; -+ struct hpp_type1 *t1; -+ struct hpp_type2 *t2; -+ struct hpp_type0 type0_data; -+ struct hpp_type1 type1_data; -+ struct hpp_type2 type2_data; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; ++ u64 kabi_reserved7; ++ u64 kabi_reserved8; +}; + +enum pci_bar_type { @@ -64625,14 +67950,6 @@ index 0000000..bcb9d76 + int domain_nr; +}; + -+struct skip_bus_num { -+ char module_name[32]; -+ char label[4]; -+ int bus_num; -+ int dev_num; -+ int skip; -+}; -+ +struct bus_attribute { + struct attribute attr; + ssize_t (*show)(struct bus_type *, char *); @@ -64672,6 +67989,7 @@ index 0000000..bcb9d76 +typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); + +struct pci_platform_pm_ops { ++ bool (*bridge_d3)(struct pci_dev *); + bool (*is_manageable)(struct pci_dev *); + int (*set_state)(struct pci_dev *, pci_power_t); + pci_power_t (*get_state)(struct pci_dev *); @@ -64736,8 +68054,9 @@ index 0000000..bcb9d76 + int (*suspend)(struct pcie_device *); + int (*resume_noirq)(struct pcie_device *); + int (*resume)(struct pcie_device *); ++ int (*runtime_suspend)(struct pcie_device *); ++ int (*runtime_resume)(struct pcie_device *); + void (*error_resume)(struct pci_dev *); -+ pci_ers_result_t (*reset_link)(struct pci_dev *); + int port_type; + u32 service; + struct device_driver driver; @@ -64764,13 +68083,6 @@ index 0000000..bcb9d76 + PCI_MMAP_PROCFS = 1, +}; + -+enum pci_lost_interrupt_reason { -+ PCI_LOST_IRQ_NO_INFORMATION = 0, -+ PCI_LOST_IRQ_DISABLE_MSI = 1, -+ PCI_LOST_IRQ_DISABLE_MSIX = 2, -+ PCI_LOST_IRQ_DISABLE_ACPI = 3, -+}; -+ +struct pci_vpd_ops; + +struct pci_vpd { @@ -64807,180 +68119,13 @@ index 0000000..bcb9d76 +}; + +enum enable_type { -+ undefined = -1, ++ undefined = 4294967295, + user_disabled = 0, + auto_disabled = 1, + user_enabled = 2, + auto_enabled = 3, +}; + -+struct pci_filp_private { -+ enum pci_mmap_state mmap_state; -+ int write_combine; -+}; -+ -+struct pci_slot_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct pci_slot *, char *); -+ ssize_t (*store)(struct pci_slot *, const char *, size_t); -+}; -+ -+enum pci_irq_reroute_variant { -+ INTEL_IRQ_REROUTE_VARIANT = 1, -+ MAX_IRQ_REROUTE_VARIANTS = 3, -+}; -+ -+struct pci_fixup { -+ u16 vendor; -+ u16 device; -+ u32 class; -+ unsigned int class_shift; -+ int hook_offset; -+}; -+ -+enum { -+ NVME_REG_CAP = 0, -+ NVME_REG_VS = 8, -+ NVME_REG_INTMS = 12, -+ NVME_REG_INTMC = 16, -+ NVME_REG_CC = 20, -+ NVME_REG_CSTS = 28, -+ NVME_REG_NSSR = 32, -+ NVME_REG_AQA = 36, -+ NVME_REG_ASQ = 40, -+ NVME_REG_ACQ = 48, -+ NVME_REG_CMBLOC = 56, -+ NVME_REG_CMBSZ = 60, -+ NVME_REG_DBS = 4096, -+}; -+ -+enum { -+ NVME_CC_ENABLE = 1, -+ NVME_CC_CSS_NVM = 0, -+ NVME_CC_EN_SHIFT = 0, -+ NVME_CC_CSS_SHIFT = 4, -+ NVME_CC_MPS_SHIFT = 7, -+ NVME_CC_AMS_SHIFT = 11, -+ NVME_CC_SHN_SHIFT = 14, -+ NVME_CC_IOSQES_SHIFT = 16, -+ NVME_CC_IOCQES_SHIFT = 20, -+ NVME_CC_AMS_RR = 0, -+ NVME_CC_AMS_WRRU = 2048, -+ NVME_CC_AMS_VS = 14336, -+ NVME_CC_SHN_NONE = 0, -+ NVME_CC_SHN_NORMAL = 16384, -+ NVME_CC_SHN_ABRUPT = 32768, -+ NVME_CC_SHN_MASK = 49152, -+ NVME_CC_IOSQES = 393216, -+ NVME_CC_IOCQES = 4194304, -+ NVME_CSTS_RDY = 1, -+ NVME_CSTS_CFS = 2, -+ NVME_CSTS_NSSRO = 16, -+ NVME_CSTS_PP = 32, -+ NVME_CSTS_SHST_NORMAL = 0, -+ NVME_CSTS_SHST_OCCUR = 4, -+ NVME_CSTS_SHST_CMPLT = 8, -+ NVME_CSTS_SHST_MASK = 12, -+}; -+ -+enum { -+ SWITCHTEC_GAS_MRPC_OFFSET = 0, -+ SWITCHTEC_GAS_TOP_CFG_OFFSET = 4096, -+ SWITCHTEC_GAS_SW_EVENT_OFFSET = 6144, -+ SWITCHTEC_GAS_SYS_INFO_OFFSET = 8192, -+ SWITCHTEC_GAS_FLASH_INFO_OFFSET = 8704, -+ SWITCHTEC_GAS_PART_CFG_OFFSET = 16384, -+ SWITCHTEC_GAS_NTB_OFFSET = 65536, -+ SWITCHTEC_GAS_PFF_CSR_OFFSET = 1261568, -+}; -+ -+struct sys_info_regs { -+ u32 device_id; -+ u32 device_version; -+ u32 firmware_version; -+ u32 reserved1; -+ u32 vendor_table_revision; -+ u32 table_format_version; -+ u32 partition_id; -+ u32 cfg_file_fmt_version; -+ u16 cfg_running; -+ u16 img_running; -+ u32 reserved2[57]; -+ char vendor_id[8]; -+ char product_id[16]; -+ char product_revision[4]; -+ char component_vendor[8]; -+ u16 component_id; -+ u8 component_revision; -+} __attribute__((packed)); -+ -+enum { -+ SWITCHTEC_NTB_REG_INFO_OFFSET = 0, -+ SWITCHTEC_NTB_REG_CTRL_OFFSET = 16384, -+ SWITCHTEC_NTB_REG_DBMSG_OFFSET = 409600, -+}; -+ -+struct nt_partition_info { -+ u32 xlink_enabled; -+ u32 target_part_low; -+ u32 target_part_high; -+ u32 reserved; -+}; -+ -+struct ntb_info_regs { -+ u8 partition_count; -+ u8 partition_id; -+ u16 reserved1; -+ u64 ep_map; -+ u16 requester_id; -+ u16 reserved2; -+ u32 reserved3[4]; -+ struct nt_partition_info ntp_info[48]; -+} __attribute__((packed)); -+ -+struct ntb_ctrl_regs { -+ u32 partition_status; -+ u32 partition_op; -+ u32 partition_ctrl; -+ u32 bar_setup; -+ u32 bar_error; -+ u16 lut_table_entries; -+ u16 lut_table_offset; -+ u32 lut_error; -+ u16 req_id_table_size; -+ u16 req_id_table_offset; -+ u32 req_id_error; -+ u32 reserved1[7]; -+ struct { -+ u32 ctl; -+ u32 win_size; -+ u64 xlate_addr; -+ } bar_entry[6]; -+ u32 reserved2[216]; -+ u32 req_id_table[256]; -+ u32 reserved3[512]; -+ u64 lut_entry[512]; -+}; -+ -+struct pci_dev_reset_methods { -+ u16 vendor; -+ u16 device; -+ int (*reset)(struct pci_dev *, int); -+}; -+ -+struct pci_dev_acs_enabled { -+ u16 vendor; -+ u16 device; -+ int (*acs_enabled)(struct pci_dev *, u16); -+}; -+ -+struct pci_dev_acs_ops { -+ u16 vendor; -+ u16 device; -+ int (*enable_acs)(struct pci_dev *); -+ int (*disable_acs_redir)(struct pci_dev *); -+}; -+ +struct portdrv_service_data { + struct pcie_port_service_driver *drv; + struct device *dev; @@ -64989,6 +68134,12 @@ index 0000000..bcb9d76 + +typedef int (*pcie_pm_callback_t)(struct pcie_device *); + ++struct walk_rcec_data { ++ struct pci_dev *rcec; ++ int (*user_callback)(struct pci_dev *, void *); ++ void *user_data; ++}; ++ +struct aspm_latency { + u32 l0s; + u32 l1; @@ -65000,8 +68151,6 @@ index 0000000..bcb9d76 + struct pcie_link_state *root; + struct pcie_link_state *parent; + struct list_head sibling; -+ struct list_head children; -+ struct list_head link; + u32 aspm_support: 7; + u32 aspm_enabled: 7; + u32 aspm_capable: 7; @@ -65011,32 +68160,16 @@ index 0000000..bcb9d76 + u32 clkpm_capable: 1; + u32 clkpm_enabled: 1; + u32 clkpm_default: 1; ++ u32 clkpm_disable: 1; + struct aspm_latency latency_up; + struct aspm_latency latency_dw; + struct aspm_latency acceptable[8]; -+ struct { -+ u32 up_cap_ptr; -+ u32 dw_cap_ptr; -+ u32 ctl1; -+ u32 ctl2; -+ } l1ss; -+}; -+ -+struct aspm_register_info { -+ u32 support: 2; -+ u32 enabled: 2; -+ u32 latency_encoding_l0s; -+ u32 latency_encoding_l1; -+ u32 l1ss_cap_ptr; -+ u32 l1ss_cap; -+ u32 l1ss_ctl1; -+ u32 l1ss_ctl2; +}; + +struct aer_stats { + u64 dev_cor_errs[16]; -+ u64 dev_fatal_errs[26]; -+ u64 dev_nonfatal_errs[26]; ++ u64 dev_fatal_errs[27]; ++ u64 dev_nonfatal_errs[27]; + u64 dev_total_cor_errs; + u64 dev_total_fatal_errs; + u64 dev_total_nonfatal_errs; @@ -65045,39 +68178,6 @@ index 0000000..bcb9d76 + u64 rootport_total_nonfatal_errs; +}; + -+enum acpi_hest_types { -+ ACPI_HEST_TYPE_IA32_CHECK = 0, -+ ACPI_HEST_TYPE_IA32_CORRECTED_CHECK = 1, -+ ACPI_HEST_TYPE_IA32_NMI = 2, -+ ACPI_HEST_TYPE_NOT_USED3 = 3, -+ ACPI_HEST_TYPE_NOT_USED4 = 4, -+ ACPI_HEST_TYPE_NOT_USED5 = 5, -+ ACPI_HEST_TYPE_AER_ROOT_PORT = 6, -+ ACPI_HEST_TYPE_AER_ENDPOINT = 7, -+ ACPI_HEST_TYPE_AER_BRIDGE = 8, -+ ACPI_HEST_TYPE_GENERIC_ERROR = 9, -+ ACPI_HEST_TYPE_GENERIC_ERROR_V2 = 10, -+ ACPI_HEST_TYPE_IA32_DEFERRED_CHECK = 11, -+ ACPI_HEST_TYPE_RESERVED = 12, -+}; -+ -+struct acpi_hest_aer_common { -+ u16 reserved1; -+ u8 flags; -+ u8 enabled; -+ u32 records_to_preallocate; -+ u32 max_sections_per_record; -+ u32 bus; -+ u16 device; -+ u16 function; -+ u16 device_control; -+ u16 reserved2; -+ u32 uncorrectable_mask; -+ u32 uncorrectable_severity; -+ u32 correctable_mask; -+ u32 advanced_capabilities; -+}; -+ +struct aer_header_log_regs { + unsigned int dw0; + unsigned int dw1; @@ -65135,11 +68235,6 @@ index 0000000..bcb9d76 + } aer_fifo; +}; + -+struct aer_hest_parse_info { -+ struct pci_dev *pci_dev; -+ int firmware_first; -+}; -+ +struct aer_recover_entry { + u8 bus; + u8 devfn; @@ -65155,11 +68250,31 @@ index 0000000..bcb9d76 + bool noirq; +}; + -+struct dpc_dev { -+ struct pcie_device *dev; -+ u16 cap_pos; -+ bool rp_extensions; -+ u8 rp_log_size; ++struct pci_filp_private { ++ enum pci_mmap_state mmap_state; ++ int write_combine; ++}; ++ ++struct pci_slot_attribute { ++ struct attribute attr; ++ ssize_t (*show)(struct pci_slot *, char *); ++ ssize_t (*store)(struct pci_slot *, const char *, size_t); ++}; ++ ++typedef u64 acpi_size; ++ ++struct acpi_buffer { ++ acpi_size length; ++ void *pointer; ++}; ++ ++struct acpi_bus_type { ++ struct list_head list; ++ const char *name; ++ bool (*match)(struct device *); ++ struct acpi_device * (*find_companion)(struct device *); ++ void (*setup)(struct device *); ++ void (*cleanup)(struct device *); +}; + +struct acpi_pci_root { @@ -65172,32 +68287,274 @@ index 0000000..bcb9d76 + phys_addr_t mcfg_addr; +}; + -+struct controller; ++enum pm_qos_flags_status { ++ PM_QOS_FLAGS_UNDEFINED = 4294967295, ++ PM_QOS_FLAGS_NONE = 0, ++ PM_QOS_FLAGS_SOME = 1, ++ PM_QOS_FLAGS_ALL = 2, ++}; + -+struct slot { -+ u8 state; -+ struct controller *ctrl; -+ struct hotplug_slot *hotplug_slot; -+ struct delayed_work work; -+ struct mutex lock; ++struct hpx_type0 { ++ u32 revision; ++ u8 cache_line_size; ++ u8 latency_timer; ++ u8 enable_serr; ++ u8 enable_perr; ++}; ++ ++struct hpx_type1 { ++ u32 revision; ++ u8 max_mem_read; ++ u8 avg_max_split; ++ u16 tot_max_split; ++}; ++ ++struct hpx_type2 { ++ u32 revision; ++ u32 unc_err_mask_and; ++ u32 unc_err_mask_or; ++ u32 unc_err_sever_and; ++ u32 unc_err_sever_or; ++ u32 cor_err_mask_and; ++ u32 cor_err_mask_or; ++ u32 adv_err_cap_and; ++ u32 adv_err_cap_or; ++ u16 pci_exp_devctl_and; ++ u16 pci_exp_devctl_or; ++ u16 pci_exp_lnkctl_and; ++ u16 pci_exp_lnkctl_or; ++ u32 sec_unc_err_sever_and; ++ u32 sec_unc_err_sever_or; ++ u32 sec_unc_err_mask_and; ++ u32 sec_unc_err_mask_or; ++}; ++ ++struct hpx_type3 { ++ u16 device_type; ++ u16 function_type; ++ u16 config_space_location; ++ u16 pci_exp_cap_id; ++ u16 pci_exp_cap_ver; ++ u16 pci_exp_vendor_id; ++ u16 dvsec_id; ++ u16 dvsec_rev; ++ u16 match_offset; ++ u32 match_mask_and; ++ u32 match_value; ++ u16 reg_offset; ++ u32 reg_mask_and; ++ u32 reg_mask_or; ++}; ++ ++enum hpx_type3_dev_type { ++ HPX_TYPE_ENDPOINT = 1, ++ HPX_TYPE_LEG_END = 2, ++ HPX_TYPE_RC_END = 4, ++ HPX_TYPE_RC_EC = 8, ++ HPX_TYPE_ROOT_PORT = 16, ++ HPX_TYPE_UPSTREAM = 32, ++ HPX_TYPE_DOWNSTREAM = 64, ++ HPX_TYPE_PCI_BRIDGE = 128, ++ HPX_TYPE_PCIE_BRIDGE = 256, ++}; ++ ++enum hpx_type3_fn_type { ++ HPX_FN_NORMAL = 1, ++ HPX_FN_SRIOV_PHYS = 2, ++ HPX_FN_SRIOV_VIRT = 4, ++}; ++ ++enum hpx_type3_cfg_loc { ++ HPX_CFG_PCICFG = 0, ++ HPX_CFG_PCIE_CAP = 1, ++ HPX_CFG_PCIE_CAP_EXT = 2, ++ HPX_CFG_VEND_CAP = 3, ++ HPX_CFG_DVSEC = 4, ++ HPX_CFG_MAX = 5, ++}; ++ ++enum pci_irq_reroute_variant { ++ INTEL_IRQ_REROUTE_VARIANT = 1, ++ MAX_IRQ_REROUTE_VARIANTS = 3, ++}; ++ ++struct pci_fixup { ++ u16 vendor; ++ u16 device; ++ u32 class; ++ unsigned int class_shift; ++ int hook_offset; ++}; ++ ++enum { ++ NVME_REG_CAP = 0, ++ NVME_REG_VS = 8, ++ NVME_REG_INTMS = 12, ++ NVME_REG_INTMC = 16, ++ NVME_REG_CC = 20, ++ NVME_REG_CSTS = 28, ++ NVME_REG_NSSR = 32, ++ NVME_REG_AQA = 36, ++ NVME_REG_ASQ = 40, ++ NVME_REG_ACQ = 48, ++ NVME_REG_CMBLOC = 56, ++ NVME_REG_CMBSZ = 60, ++ NVME_REG_BPINFO = 64, ++ NVME_REG_BPRSEL = 68, ++ NVME_REG_BPMBL = 72, ++ NVME_REG_CMBMSC = 80, ++ NVME_REG_PMRCAP = 3584, ++ NVME_REG_PMRCTL = 3588, ++ NVME_REG_PMRSTS = 3592, ++ NVME_REG_PMREBS = 3596, ++ NVME_REG_PMRSWTP = 3600, ++ NVME_REG_DBS = 4096, ++}; ++ ++enum { ++ NVME_CC_ENABLE = 1, ++ NVME_CC_EN_SHIFT = 0, ++ NVME_CC_CSS_SHIFT = 4, ++ NVME_CC_MPS_SHIFT = 7, ++ NVME_CC_AMS_SHIFT = 11, ++ NVME_CC_SHN_SHIFT = 14, ++ NVME_CC_IOSQES_SHIFT = 16, ++ NVME_CC_IOCQES_SHIFT = 20, ++ NVME_CC_CSS_NVM = 0, ++ NVME_CC_CSS_CSI = 96, ++ NVME_CC_CSS_MASK = 112, ++ NVME_CC_AMS_RR = 0, ++ NVME_CC_AMS_WRRU = 2048, ++ NVME_CC_AMS_VS = 14336, ++ NVME_CC_SHN_NONE = 0, ++ NVME_CC_SHN_NORMAL = 16384, ++ NVME_CC_SHN_ABRUPT = 32768, ++ NVME_CC_SHN_MASK = 49152, ++ NVME_CC_IOSQES = 393216, ++ NVME_CC_IOCQES = 4194304, ++ NVME_CAP_CSS_NVM = 1, ++ NVME_CAP_CSS_CSI = 64, ++ NVME_CSTS_RDY = 1, ++ NVME_CSTS_CFS = 2, ++ NVME_CSTS_NSSRO = 16, ++ NVME_CSTS_PP = 32, ++ NVME_CSTS_SHST_NORMAL = 0, ++ NVME_CSTS_SHST_OCCUR = 4, ++ NVME_CSTS_SHST_CMPLT = 8, ++ NVME_CSTS_SHST_MASK = 12, ++ NVME_CMBMSC_CRE = 1, ++ NVME_CMBMSC_CMSE = 2, ++}; ++ ++enum { ++ NVME_AEN_BIT_NS_ATTR = 8, ++ NVME_AEN_BIT_FW_ACT = 9, ++ NVME_AEN_BIT_ANA_CHANGE = 11, ++ NVME_AEN_BIT_DISC_CHANGE = 31, ++}; ++ ++enum { ++ SWITCHTEC_GAS_MRPC_OFFSET = 0, ++ SWITCHTEC_GAS_TOP_CFG_OFFSET = 4096, ++ SWITCHTEC_GAS_SW_EVENT_OFFSET = 6144, ++ SWITCHTEC_GAS_SYS_INFO_OFFSET = 8192, ++ SWITCHTEC_GAS_FLASH_INFO_OFFSET = 8704, ++ SWITCHTEC_GAS_PART_CFG_OFFSET = 16384, ++ SWITCHTEC_GAS_NTB_OFFSET = 65536, ++ SWITCHTEC_GAS_PFF_CSR_OFFSET = 1261568, ++}; ++ ++enum { ++ SWITCHTEC_NTB_REG_INFO_OFFSET = 0, ++ SWITCHTEC_NTB_REG_CTRL_OFFSET = 16384, ++ SWITCHTEC_NTB_REG_DBMSG_OFFSET = 409600, ++}; ++ ++struct nt_partition_info { ++ u32 xlink_enabled; ++ u32 target_part_low; ++ u32 target_part_high; ++ u32 reserved; ++}; ++ ++struct ntb_info_regs { ++ u8 partition_count; ++ u8 partition_id; ++ u16 reserved1; ++ u64 ep_map; ++ u16 requester_id; ++ u16 reserved2; ++ u32 reserved3[4]; ++ struct nt_partition_info ntp_info[48]; ++} __attribute__((packed)); ++ ++struct ntb_ctrl_regs { ++ u32 partition_status; ++ u32 partition_op; ++ u32 partition_ctrl; ++ u32 bar_setup; ++ u32 bar_error; ++ u16 lut_table_entries; ++ u16 lut_table_offset; ++ u32 lut_error; ++ u16 req_id_table_size; ++ u16 req_id_table_offset; ++ u32 req_id_error; ++ u32 reserved1[7]; ++ struct { ++ u32 ctl; ++ u32 win_size; ++ u64 xlate_addr; ++ } bar_entry[6]; ++ struct { ++ u32 win_size; ++ u32 reserved[3]; ++ } bar_ext_entry[6]; ++ u32 reserved2[192]; ++ u32 req_id_table[512]; ++ u32 reserved3[256]; ++ u64 lut_entry[512]; ++}; ++ ++struct pci_dev_reset_methods { ++ u16 vendor; ++ u16 device; ++ int (*reset)(struct pci_dev *, int); ++}; ++ ++struct pci_dev_acs_enabled { ++ u16 vendor; ++ u16 device; ++ int (*acs_enabled)(struct pci_dev *, u16); ++}; ++ ++struct pci_dev_acs_ops { ++ u16 vendor; ++ u16 device; ++ int (*enable_acs)(struct pci_dev *); ++ int (*disable_acs_redir)(struct pci_dev *); +}; + +struct controller { -+ struct mutex ctrl_lock; + struct pcie_device *pcie; -+ unsigned int inband_presence_disabled: 1; -+ struct rw_semaphore reset_lock; -+ struct slot *slot; -+ wait_queue_head_t queue; + u32 slot_cap; ++ unsigned int inband_presence_disabled: 1; + u16 slot_ctrl; -+ struct task_struct *poll_thread; ++ struct mutex ctrl_lock; + long unsigned int cmd_started; + unsigned int cmd_busy: 1; -+ unsigned int link_active_reporting: 1; ++ wait_queue_head_t queue; ++ atomic_t pending_events; + unsigned int notification_enabled: 1; + unsigned int power_fault_detected; -+ atomic_t pending_events; ++ struct task_struct *poll_thread; ++ u8 state; ++ struct mutex state_lock; ++ struct delayed_work button_work; ++ struct hotplug_slot hotplug_slot; ++ struct rw_semaphore reset_lock; ++ unsigned int depth; ++ unsigned int ist_running; + int request_result; + wait_queue_head_t requester; +}; @@ -65206,18 +68563,20 @@ index 0000000..bcb9d76 + +struct hpc_ops; + -+struct slot___2 { ++struct slot { + u8 bus; + u8 device; + u16 status; + u32 number; + u8 is_a_board; + u8 state; ++ u8 attention_save; + u8 presence_save; ++ u8 latch_save; + u8 pwr_save; + struct controller___2 *ctrl; + const struct hpc_ops *hpc_ops; -+ struct hotplug_slot *hotplug_slot; ++ struct hotplug_slot hotplug_slot; + struct list_head slot_list; + struct delayed_work work; + struct mutex lock; @@ -65245,34 +68604,34 @@ index 0000000..bcb9d76 +}; + +struct hpc_ops { -+ int (*power_on_slot)(struct slot___2 *); -+ int (*slot_enable)(struct slot___2 *); -+ int (*slot_disable)(struct slot___2 *); -+ int (*set_bus_speed_mode)(struct slot___2 *, enum pci_bus_speed); -+ int (*get_power_status)(struct slot___2 *, u8 *); -+ int (*get_attention_status)(struct slot___2 *, u8 *); -+ int (*set_attention_status)(struct slot___2 *, u8); -+ int (*get_latch_status)(struct slot___2 *, u8 *); -+ int (*get_adapter_status)(struct slot___2 *, u8 *); -+ int (*get_adapter_speed)(struct slot___2 *, enum pci_bus_speed *); -+ int (*get_mode1_ECC_cap)(struct slot___2 *, u8 *); -+ int (*get_prog_int)(struct slot___2 *, u8 *); -+ int (*query_power_fault)(struct slot___2 *); -+ void (*green_led_on)(struct slot___2 *); -+ void (*green_led_off)(struct slot___2 *); -+ void (*green_led_blink)(struct slot___2 *); ++ int (*power_on_slot)(struct slot *); ++ int (*slot_enable)(struct slot *); ++ int (*slot_disable)(struct slot *); ++ int (*set_bus_speed_mode)(struct slot *, enum pci_bus_speed); ++ int (*get_power_status)(struct slot *, u8 *); ++ int (*get_attention_status)(struct slot *, u8 *); ++ int (*set_attention_status)(struct slot *, u8); ++ int (*get_latch_status)(struct slot *, u8 *); ++ int (*get_adapter_status)(struct slot *, u8 *); ++ int (*get_adapter_speed)(struct slot *, enum pci_bus_speed *); ++ int (*get_mode1_ECC_cap)(struct slot *, u8 *); ++ int (*get_prog_int)(struct slot *, u8 *); ++ int (*query_power_fault)(struct slot *); ++ void (*green_led_on)(struct slot *); ++ void (*green_led_off)(struct slot *); ++ void (*green_led_blink)(struct slot *); + void (*release_ctlr)(struct controller___2 *); + int (*check_cmd_status)(struct controller___2 *); +}; + +struct event_info { + u32 event_type; -+ struct slot___2 *p_slot; ++ struct slot *p_slot; + struct work_struct work; +}; + +struct pushbutton_work_info { -+ struct slot___2 *p_slot; ++ struct slot *p_slot; + struct work_struct work; +}; + @@ -65294,10 +68653,9 @@ index 0000000..bcb9d76 + +struct acpiphp_slot; + -+struct slot___3 { -+ struct hotplug_slot *hotplug_slot; ++struct slot___2 { ++ struct hotplug_slot hotplug_slot; + struct acpiphp_slot *acpi_slot; -+ struct hotplug_slot_info info; + unsigned int sun; +}; + @@ -65305,7 +68663,7 @@ index 0000000..bcb9d76 + struct list_head node; + struct pci_bus *bus; + struct list_head funcs; -+ struct slot___3 *slot; ++ struct slot___2 *slot; + u8 device; + u32 flags; +}; @@ -65316,11 +68674,6 @@ index 0000000..bcb9d76 + struct module *owner; +}; + -+struct acpi_object_list { -+ u32 count; -+ union acpi_object *pointer; -+}; -+ +struct acpiphp_context; + +struct acpiphp_bridge { @@ -65359,22 +68712,6 @@ index 0000000..bcb9d76 + u16 entry; +}; + -+struct acpi_bus_type { -+ struct list_head list; -+ const char *name; -+ bool (*match)(struct device *); -+ struct acpi_device * (*find_companion)(struct device *); -+ void (*setup)(struct device *); -+ void (*cleanup)(struct device *); -+}; -+ -+enum pm_qos_flags_status { -+ PM_QOS_FLAGS_UNDEFINED = -1, -+ PM_QOS_FLAGS_NONE = 0, -+ PM_QOS_FLAGS_SOME = 1, -+ PM_QOS_FLAGS_ALL = 2, -+}; -+ +enum dmi_device_type { + DMI_DEV_TYPE_ANY = 0, + DMI_DEV_TYPE_OTHER = 1, @@ -65387,10 +68724,10 @@ index 0000000..bcb9d76 + DMI_DEV_TYPE_PATA = 8, + DMI_DEV_TYPE_SATA = 9, + DMI_DEV_TYPE_SAS = 10, -+ DMI_DEV_TYPE_IPMI = -1, -+ DMI_DEV_TYPE_OEM_STRING = -2, -+ DMI_DEV_TYPE_DEV_ONBOARD = -3, -+ DMI_DEV_TYPE_DEV_SLOT = -4, ++ DMI_DEV_TYPE_IPMI = 4294967295, ++ DMI_DEV_TYPE_OEM_STRING = 4294967294, ++ DMI_DEV_TYPE_DEV_ONBOARD = 4294967293, ++ DMI_DEV_TYPE_DEV_SLOT = 4294967292, +}; + +struct dmi_device { @@ -65419,15 +68756,10 @@ index 0000000..bcb9d76 + ACPI_ATTR_INDEX_SHOW = 1, +}; + -+struct dma_domain { -+ struct list_head node; -+ const struct dma_map_ops *dma_ops; -+ int domain_nr; -+}; -+ +enum vmd_features { + VMD_FEAT_HAS_MEMBAR_SHADOW = 1, + VMD_FEAT_HAS_BUS_RESTRICTIONS = 2, ++ VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP = 4, +}; + +struct vmd_irq_list; @@ -65456,8 +68788,6 @@ index 0000000..bcb9d76 + struct irq_domain *irq_domain; + struct pci_bus *bus; + u8 busn_start; -+ struct dma_map_ops dma_ops; -+ struct dma_domain dma_domain; +}; + +enum hdmi_infoframe_type { @@ -65465,6 +68795,7 @@ index 0000000..bcb9d76 + HDMI_INFOFRAME_TYPE_AVI = 130, + HDMI_INFOFRAME_TYPE_SPD = 131, + HDMI_INFOFRAME_TYPE_AUDIO = 132, ++ HDMI_INFOFRAME_TYPE_DRM = 135, +}; + +struct hdmi_any_infoframe { @@ -65557,6 +68888,17 @@ index 0000000..bcb9d76 + HDMI_CONTENT_TYPE_GAME = 3, +}; + ++enum hdmi_metadata_type { ++ HDMI_STATIC_METADATA_TYPE1 = 1, ++}; ++ ++enum hdmi_eotf { ++ HDMI_EOTF_TRADITIONAL_GAMMA_SDR = 0, ++ HDMI_EOTF_TRADITIONAL_GAMMA_HDR = 1, ++ HDMI_EOTF_SMPTE_ST2084 = 2, ++ HDMI_EOTF_BT_2100_HLG = 3, ++}; ++ +struct hdmi_avi_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; @@ -65580,6 +68922,26 @@ index 0000000..bcb9d76 + short unsigned int right_bar; +}; + ++struct hdmi_drm_infoframe { ++ enum hdmi_infoframe_type type; ++ unsigned char version; ++ unsigned char length; ++ enum hdmi_eotf eotf; ++ enum hdmi_metadata_type metadata_type; ++ struct { ++ u16 x; ++ u16 y; ++ } display_primaries[3]; ++ struct { ++ u16 x; ++ u16 y; ++ } white_point; ++ u16 max_display_mastering_luminance; ++ u16 min_display_mastering_luminance; ++ u16 max_cll; ++ u16 max_fall; ++}; ++ +enum hdmi_spd_sdi { + HDMI_SPD_SDI_UNKNOWN = 0, + HDMI_SPD_SDI_DSTB = 1, @@ -65671,7 +69033,7 @@ index 0000000..bcb9d76 +}; + +enum hdmi_3d_structure { -+ HDMI_3D_STRUCTURE_INVALID = -1, ++ HDMI_3D_STRUCTURE_INVALID = 4294967295, + HDMI_3D_STRUCTURE_FRAME_PACKING = 0, + HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE = 1, + HDMI_3D_STRUCTURE_LINE_ALTERNATIVE = 2, @@ -65708,6 +69070,12 @@ index 0000000..bcb9d76 + struct hdmi_spd_infoframe spd; + union hdmi_vendor_any_infoframe vendor; + struct hdmi_audio_infoframe audio; ++ struct hdmi_drm_infoframe drm; ++}; ++ ++struct vc { ++ struct vc_data *d; ++ struct work_struct SAK_work; +}; + +struct vgastate { @@ -65732,6 +69100,71 @@ index 0000000..bcb9d76 + const unsigned char *data; +}; + ++struct fb_fix_screeninfo { ++ char id[16]; ++ long unsigned int smem_start; ++ __u32 smem_len; ++ __u32 type; ++ __u32 type_aux; ++ __u32 visual; ++ __u16 xpanstep; ++ __u16 ypanstep; ++ __u16 ywrapstep; ++ __u32 line_length; ++ long unsigned int mmio_start; ++ __u32 mmio_len; ++ __u32 accel; ++ __u16 capabilities; ++ __u16 reserved[2]; ++}; ++ ++struct fb_bitfield { ++ __u32 offset; ++ __u32 length; ++ __u32 msb_right; ++}; ++ ++struct fb_var_screeninfo { ++ __u32 xres; ++ __u32 yres; ++ __u32 xres_virtual; ++ __u32 yres_virtual; ++ __u32 xoffset; ++ __u32 yoffset; ++ __u32 bits_per_pixel; ++ __u32 grayscale; ++ struct fb_bitfield red; ++ struct fb_bitfield green; ++ struct fb_bitfield blue; ++ struct fb_bitfield transp; ++ __u32 nonstd; ++ __u32 activate; ++ __u32 height; ++ __u32 width; ++ __u32 accel_flags; ++ __u32 pixclock; ++ __u32 left_margin; ++ __u32 right_margin; ++ __u32 upper_margin; ++ __u32 lower_margin; ++ __u32 hsync_len; ++ __u32 vsync_len; ++ __u32 sync; ++ __u32 vmode; ++ __u32 rotate; ++ __u32 colorspace; ++ __u32 reserved[4]; ++}; ++ ++struct fb_cmap { ++ __u32 start; ++ __u32 len; ++ __u16 *red; ++ __u16 *green; ++ __u16 *blue; ++ __u16 *transp; ++}; ++ +enum { + FB_BLANK_UNBLANK = 0, + FB_BLANK_NORMAL = 1, @@ -65740,24 +69173,335 @@ index 0000000..bcb9d76 + FB_BLANK_POWERDOWN = 4, +}; + ++struct fb_copyarea { ++ __u32 dx; ++ __u32 dy; ++ __u32 width; ++ __u32 height; ++ __u32 sx; ++ __u32 sy; ++}; ++ ++struct fb_fillrect { ++ __u32 dx; ++ __u32 dy; ++ __u32 width; ++ __u32 height; ++ __u32 color; ++ __u32 rop; ++}; ++ ++struct fb_image { ++ __u32 dx; ++ __u32 dy; ++ __u32 width; ++ __u32 height; ++ __u32 fg_color; ++ __u32 bg_color; ++ __u8 depth; ++ const char *data; ++ struct fb_cmap cmap; ++}; ++ ++struct fbcurpos { ++ __u16 x; ++ __u16 y; ++}; ++ ++struct fb_cursor { ++ __u16 set; ++ __u16 enable; ++ __u16 rop; ++ const char *mask; ++ struct fbcurpos hot; ++ struct fb_image image; ++}; ++ ++struct fb_chroma { ++ __u32 redx; ++ __u32 greenx; ++ __u32 bluex; ++ __u32 whitex; ++ __u32 redy; ++ __u32 greeny; ++ __u32 bluey; ++ __u32 whitey; ++}; ++ ++struct fb_videomode; ++ ++struct fb_monspecs { ++ struct fb_chroma chroma; ++ struct fb_videomode *modedb; ++ __u8 manufacturer[4]; ++ __u8 monitor[14]; ++ __u8 serial_no[14]; ++ __u8 ascii[14]; ++ __u32 modedb_len; ++ __u32 model; ++ __u32 serial; ++ __u32 year; ++ __u32 week; ++ __u32 hfmin; ++ __u32 hfmax; ++ __u32 dclkmin; ++ __u32 dclkmax; ++ __u16 input; ++ __u16 dpms; ++ __u16 signal; ++ __u16 vfmin; ++ __u16 vfmax; ++ __u16 gamma; ++ __u16 gtf: 1; ++ __u16 misc; ++ __u8 version; ++ __u8 revision; ++ __u8 max_x; ++ __u8 max_y; ++}; ++ ++struct fb_videomode { ++ const char *name; ++ u32 refresh; ++ u32 xres; ++ u32 yres; ++ u32 pixclock; ++ u32 left_margin; ++ u32 right_margin; ++ u32 upper_margin; ++ u32 lower_margin; ++ u32 hsync_len; ++ u32 vsync_len; ++ u32 sync; ++ u32 vmode; ++ u32 flag; ++}; ++ ++struct fb_info; ++ +struct fb_event { + struct fb_info *info; + void *data; +}; + ++struct fb_pixmap { ++ u8 *addr; ++ u32 size; ++ u32 offset; ++ u32 buf_align; ++ u32 scan_align; ++ u32 access_align; ++ u32 flags; ++ u32 blit_x; ++ u32 blit_y; ++ void (*writeio)(struct fb_info *, void *, void *, unsigned int); ++ void (*readio)(struct fb_info *, void *, void *, unsigned int); ++}; ++ ++struct fb_deferred_io; ++ ++struct fb_ops; ++ ++struct fb_tile_ops; ++ ++struct apertures_struct; ++ ++struct fb_info { ++ atomic_t count; ++ int node; ++ int flags; ++ int fbcon_rotate_hint; ++ struct mutex lock; ++ struct mutex mm_lock; ++ struct fb_var_screeninfo var; ++ struct fb_fix_screeninfo fix; ++ struct fb_monspecs monspecs; ++ struct work_struct queue; ++ struct fb_pixmap pixmap; ++ struct fb_pixmap sprite; ++ struct fb_cmap cmap; ++ struct list_head modelist; ++ struct fb_videomode *mode; ++ struct delayed_work deferred_work; ++ struct fb_deferred_io *fbdefio; ++ const struct fb_ops *fbops; ++ struct device *device; ++ struct device *dev; ++ int class_flag; ++ struct fb_tile_ops *tileops; ++ union { ++ char *screen_base; ++ char *screen_buffer; ++ }; ++ long unsigned int screen_size; ++ void *pseudo_palette; ++ u32 state; ++ void *fbcon_par; ++ void *par; ++ struct apertures_struct *apertures; ++ bool skip_vt_switch; ++}; ++ ++struct fb_blit_caps { ++ u32 x; ++ u32 y; ++ u32 len; ++ u32 flags; ++}; ++ ++struct fb_deferred_io { ++ long unsigned int delay; ++ struct mutex lock; ++ struct list_head pagelist; ++ void (*first_io)(struct fb_info *); ++ void (*deferred_io)(struct fb_info *, struct list_head *); ++}; ++ ++struct fb_ops { ++ struct module *owner; ++ int (*fb_open)(struct fb_info *, int); ++ int (*fb_release)(struct fb_info *, int); ++ ssize_t (*fb_read)(struct fb_info *, char *, size_t, loff_t *); ++ ssize_t (*fb_write)(struct fb_info *, const char *, size_t, loff_t *); ++ int (*fb_check_var)(struct fb_var_screeninfo *, struct fb_info *); ++ int (*fb_set_par)(struct fb_info *); ++ int (*fb_setcolreg)(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, struct fb_info *); ++ int (*fb_setcmap)(struct fb_cmap *, struct fb_info *); ++ int (*fb_blank)(int, struct fb_info *); ++ int (*fb_pan_display)(struct fb_var_screeninfo *, struct fb_info *); ++ void (*fb_fillrect)(struct fb_info *, const struct fb_fillrect *); ++ void (*fb_copyarea)(struct fb_info *, const struct fb_copyarea *); ++ void (*fb_imageblit)(struct fb_info *, const struct fb_image *); ++ int (*fb_cursor)(struct fb_info *, struct fb_cursor *); ++ int (*fb_sync)(struct fb_info *); ++ int (*fb_ioctl)(struct fb_info *, unsigned int, long unsigned int); ++ int (*fb_compat_ioctl)(struct fb_info *, unsigned int, long unsigned int); ++ int (*fb_mmap)(struct fb_info *, struct vm_area_struct *); ++ void (*fb_get_caps)(struct fb_info *, struct fb_blit_caps *, struct fb_var_screeninfo *); ++ void (*fb_destroy)(struct fb_info *); ++ int (*fb_debug_enter)(struct fb_info *); ++ int (*fb_debug_leave)(struct fb_info *); ++}; ++ ++struct fb_tilemap { ++ __u32 width; ++ __u32 height; ++ __u32 depth; ++ __u32 length; ++ const __u8 *data; ++}; ++ ++struct fb_tilerect { ++ __u32 sx; ++ __u32 sy; ++ __u32 width; ++ __u32 height; ++ __u32 index; ++ __u32 fg; ++ __u32 bg; ++ __u32 rop; ++}; ++ ++struct fb_tilearea { ++ __u32 sx; ++ __u32 sy; ++ __u32 dx; ++ __u32 dy; ++ __u32 width; ++ __u32 height; ++}; ++ ++struct fb_tileblit { ++ __u32 sx; ++ __u32 sy; ++ __u32 width; ++ __u32 height; ++ __u32 fg; ++ __u32 bg; ++ __u32 length; ++ __u32 *indices; ++}; ++ ++struct fb_tilecursor { ++ __u32 sx; ++ __u32 sy; ++ __u32 mode; ++ __u32 shape; ++ __u32 fg; ++ __u32 bg; ++}; ++ ++struct fb_tile_ops { ++ void (*fb_settile)(struct fb_info *, struct fb_tilemap *); ++ void (*fb_tilecopy)(struct fb_info *, struct fb_tilearea *); ++ void (*fb_tilefill)(struct fb_info *, struct fb_tilerect *); ++ void (*fb_tileblit)(struct fb_info *, struct fb_tileblit *); ++ void (*fb_tilecursor)(struct fb_info *, struct fb_tilecursor *); ++ int (*fb_get_tilemax)(struct fb_info *); ++}; ++ ++struct aperture { ++ resource_size_t base; ++ resource_size_t size; ++}; ++ ++struct apertures_struct { ++ unsigned int count; ++ struct aperture ranges[0]; ++}; ++ +enum backlight_update_reason { + BACKLIGHT_UPDATE_HOTKEY = 0, + BACKLIGHT_UPDATE_SYSFS = 1, +}; + ++enum backlight_type { ++ BACKLIGHT_RAW = 1, ++ BACKLIGHT_PLATFORM = 2, ++ BACKLIGHT_FIRMWARE = 3, ++ BACKLIGHT_TYPE_MAX = 4, ++}; ++ +enum backlight_notification { + BACKLIGHT_REGISTERED = 0, + BACKLIGHT_UNREGISTERED = 1, +}; + -+struct fb_con2fbmap { -+ __u32 console; -+ __u32 framebuffer; ++enum backlight_scale { ++ BACKLIGHT_SCALE_UNKNOWN = 0, ++ BACKLIGHT_SCALE_LINEAR = 1, ++ BACKLIGHT_SCALE_NON_LINEAR = 2, ++}; ++ ++struct backlight_device; ++ ++struct backlight_ops { ++ unsigned int options; ++ int (*update_status)(struct backlight_device *); ++ int (*get_brightness)(struct backlight_device *); ++ int (*check_fb)(struct backlight_device *, struct fb_info *); ++}; ++ ++struct backlight_properties { ++ int brightness; ++ int max_brightness; ++ int power; ++ int fb_blank; ++ enum backlight_type type; ++ unsigned int state; ++ enum backlight_scale scale; ++}; ++ ++struct backlight_device { ++ struct backlight_properties props; ++ struct mutex update_lock; ++ struct mutex ops_lock; ++ const struct backlight_ops *ops; ++ struct notifier_block fb_notif; ++ struct list_head entry; ++ struct device dev; ++ bool fb_bl_on[32]; ++ int use_count; +}; + +struct fb_cmap_user { @@ -65836,10 +69580,14 @@ index 0000000..bcb9d76 + +typedef unsigned char u_char; + -+struct display { ++struct fb_con2fbmap { ++ __u32 console; ++ __u32 framebuffer; ++}; ++ ++struct fbcon_display { + const u_char *fontdata; + int userfont; -+ u_short scrollmode; + u_short inverse; + short int yscroll; + int vrows; @@ -65872,7 +69620,7 @@ index 0000000..bcb9d76 + struct fb_var_screeninfo var; + struct timer_list cursor_timer; + struct fb_cursor cursor_state; -+ struct display *p; ++ struct fbcon_display *p; + struct fb_info *info; + int currcon; + int cur_blink_jiffies; @@ -65893,24 +69641,47 @@ index 0000000..bcb9d76 +}; + +enum { -+ FBCON_LOGO_CANSHOW = -1, -+ FBCON_LOGO_DRAW = -2, -+ FBCON_LOGO_DONTSHOW = -3, ++ FBCON_LOGO_CANSHOW = 4294967295, ++ FBCON_LOGO_DRAW = 4294967294, ++ FBCON_LOGO_DONTSHOW = 4294967293, +}; + +struct vesafb_par { + u32 pseudo_palette[256]; + int wc_cookie; ++ struct resource *region; +}; + +enum drm_panel_orientation { -+ DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1, ++ DRM_MODE_PANEL_ORIENTATION_UNKNOWN = 4294967295, + DRM_MODE_PANEL_ORIENTATION_NORMAL = 0, + DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP = 1, + DRM_MODE_PANEL_ORIENTATION_LEFT_UP = 2, + DRM_MODE_PANEL_ORIENTATION_RIGHT_UP = 3, +}; + ++struct thermal_cooling_device_ops; ++ ++struct thermal_cooling_device { ++ int id; ++ char type[20]; ++ struct device device; ++ struct device_node *np; ++ void *devdata; ++ void *stats; ++ const struct thermal_cooling_device_ops *ops; ++ bool updated; ++ struct mutex lock; ++ struct list_head thermal_instances; ++ struct list_head node; ++}; ++ ++enum { ++ C1E_PROMOTION_PRESERVE = 0, ++ C1E_PROMOTION_ENABLE = 1, ++ C1E_PROMOTION_DISABLE = 2, ++}; ++ +struct idle_cpu { + struct cpuidle_state *state_table; + long unsigned int auto_demotion_disable_flags; @@ -65919,6 +69690,155 @@ index 0000000..bcb9d76 + bool use_acpi; +}; + ++struct thermal_cooling_device_ops { ++ int (*get_max_state)(struct thermal_cooling_device *, long unsigned int *); ++ int (*get_cur_state)(struct thermal_cooling_device *, long unsigned int *); ++ int (*set_cur_state)(struct thermal_cooling_device *, long unsigned int); ++ int (*get_requested_power)(struct thermal_cooling_device *, u32 *); ++ int (*state2power)(struct thermal_cooling_device *, long unsigned int, u32 *); ++ int (*power2state)(struct thermal_cooling_device *, u32, long unsigned int *); ++}; ++ ++struct acpi_lpi_state { ++ u32 min_residency; ++ u32 wake_latency; ++ u32 flags; ++ u32 arch_flags; ++ u32 res_cnt_freq; ++ u32 enable_parent_state; ++ u64 address; ++ u8 index; ++ u8 entry_method; ++ char desc[32]; ++}; ++ ++struct acpi_processor_power { ++ int count; ++ union { ++ struct acpi_processor_cx states[8]; ++ struct acpi_lpi_state lpi_states[8]; ++ }; ++ int timer_broadcast_on_state; ++}; ++ ++struct acpi_psd_package { ++ u64 num_entries; ++ u64 revision; ++ u64 domain; ++ u64 coord_type; ++ u64 num_processors; ++}; ++ ++struct acpi_pct_register { ++ u8 descriptor; ++ u16 length; ++ u8 space_id; ++ u8 bit_width; ++ u8 bit_offset; ++ u8 reserved; ++ u64 address; ++} __attribute__((packed)); ++ ++struct acpi_processor_px { ++ u64 core_frequency; ++ u64 power; ++ u64 transition_latency; ++ u64 bus_master_latency; ++ u64 control; ++ u64 status; ++}; ++ ++struct acpi_processor_performance { ++ unsigned int state; ++ unsigned int platform_limit; ++ struct acpi_pct_register control_register; ++ struct acpi_pct_register status_register; ++ short: 16; ++ unsigned int state_count; ++ int: 32; ++ struct acpi_processor_px *states; ++ struct acpi_psd_package domain_info; ++ cpumask_var_t shared_cpu_map; ++ unsigned int shared_type; ++ int: 32; ++} __attribute__((packed)); ++ ++struct acpi_tsd_package { ++ u64 num_entries; ++ u64 revision; ++ u64 domain; ++ u64 coord_type; ++ u64 num_processors; ++}; ++ ++struct acpi_processor_tx_tss { ++ u64 freqpercentage; ++ u64 power; ++ u64 transition_latency; ++ u64 control; ++ u64 status; ++}; ++ ++struct acpi_processor_tx { ++ u16 power; ++ u16 performance; ++}; ++ ++struct acpi_processor; ++ ++struct acpi_processor_throttling { ++ unsigned int state; ++ unsigned int platform_limit; ++ struct acpi_pct_register control_register; ++ struct acpi_pct_register status_register; ++ short: 16; ++ unsigned int state_count; ++ int: 32; ++ struct acpi_processor_tx_tss *states_tss; ++ struct acpi_tsd_package domain_info; ++ cpumask_var_t shared_cpu_map; ++ int (*acpi_processor_get_throttling)(struct acpi_processor *); ++ int (*acpi_processor_set_throttling)(struct acpi_processor *, int, bool); ++ u32 address; ++ u8 duty_offset; ++ u8 duty_width; ++ u8 tsd_valid_flag; ++ char: 8; ++ unsigned int shared_type; ++ struct acpi_processor_tx states[16]; ++ int: 32; ++} __attribute__((packed)); ++ ++struct acpi_processor_lx { ++ int px; ++ int tx; ++}; ++ ++struct acpi_processor_limit { ++ struct acpi_processor_lx state; ++ struct acpi_processor_lx thermal; ++ struct acpi_processor_lx user; ++}; ++ ++struct acpi_processor { ++ acpi_handle handle; ++ u32 acpi_id; ++ phys_cpuid_t phys_id; ++ u32 id; ++ u32 pblk; ++ int performance_platform_limit; ++ int throttling_platform_limit; ++ struct acpi_processor_flags flags; ++ struct acpi_processor_power power; ++ struct acpi_processor_performance *performance; ++ struct acpi_processor_throttling throttling; ++ struct acpi_processor_limit limit; ++ struct thermal_cooling_device *cdev; ++ struct device *dev; ++ struct freq_qos_request perflib_req; ++ struct freq_qos_request thermal_req; ++}; ++ +enum ipmi_addr_src { + SI_INVALID = 0, + SI_HOTMOD = 1, @@ -65932,12 +69852,6 @@ index 0000000..bcb9d76 + SI_LAST = 9, +}; + -+union ipmi_smi_info_union { -+ struct { -+ acpi_handle acpi_handle; -+ } acpi_info; -+}; -+ +struct dmi_header { + u8 type; + u8 length; @@ -65951,63 +69865,38 @@ index 0000000..bcb9d76 + SI_BT = 3, +}; + -+struct si_sm_io { -+ unsigned char (*inputb)(const struct si_sm_io *, unsigned int); -+ void (*outputb)(const struct si_sm_io *, unsigned int, unsigned char); -+ void *addr; -+ int regspacing; -+ int regsize; -+ int regshift; -+ int addr_type; -+ long int addr_data; ++enum ipmi_addr_space { ++ IPMI_IO_ADDR_SPACE = 0, ++ IPMI_MEM_ADDR_SPACE = 1, ++}; ++ ++enum ipmi_plat_interface_type { ++ IPMI_PLAT_IF_SI = 0, ++ IPMI_PLAT_IF_SSIF = 1, ++}; ++ ++struct ipmi_plat_data { ++ enum ipmi_plat_interface_type iftype; ++ unsigned int type; ++ unsigned int space; ++ long unsigned int addr; ++ unsigned int regspacing; ++ unsigned int regsize; ++ unsigned int regshift; ++ unsigned int irq; ++ unsigned int slave_addr; + enum ipmi_addr_src addr_source; -+ void (*addr_source_cleanup)(struct si_sm_io *); -+ void *addr_source_data; -+ union ipmi_smi_info_union addr_info; -+ int (*io_setup)(struct si_sm_io *); -+ void (*io_cleanup)(struct si_sm_io *); -+ unsigned int io_size; -+ int irq; -+ int (*irq_setup)(struct si_sm_io *); -+ void *irq_handler_data; -+ void (*irq_cleanup)(struct si_sm_io *); -+ u8 slave_addr; -+ enum si_type si_type; -+ struct device *dev; -+}; -+ -+enum si_sm_result { -+ SI_SM_CALL_WITHOUT_DELAY = 0, -+ SI_SM_CALL_WITH_DELAY = 1, -+ SI_SM_CALL_WITH_TICK_DELAY = 2, -+ SI_SM_TRANSACTION_COMPLETE = 3, -+ SI_SM_IDLE = 4, -+ SI_SM_HOSED = 5, -+ SI_SM_ATTN = 6, -+}; -+ -+struct si_sm_data; -+ -+struct si_sm_handlers { -+ char *version; -+ unsigned int (*init_data)(struct si_sm_data *, struct si_sm_io *); -+ int (*start_transaction)(struct si_sm_data *, unsigned char *, unsigned int); -+ int (*get_result)(struct si_sm_data *, unsigned char *, unsigned int); -+ enum si_sm_result (*event)(struct si_sm_data *, long int); -+ int (*detect)(struct si_sm_data *); -+ void (*cleanup)(struct si_sm_data *); -+ int (*size)(); +}; + +struct ipmi_dmi_info { + enum si_type si_type; -+ u32 flags; ++ unsigned int space; + long unsigned int addr; + u8 slave_addr; + struct ipmi_dmi_info *next; +}; + -+typedef u8 acpi_owner_id; ++typedef u16 acpi_owner_id; + +union acpi_name_union { + u32 integer; @@ -66075,28 +69964,6 @@ index 0000000..bcb9d76 + +typedef int (*acpi_tbl_table_handler)(struct acpi_table_header *); + -+struct transaction; -+ -+struct acpi_ec { -+ acpi_handle handle; -+ u32 gpe; -+ long unsigned int command_addr; -+ long unsigned int data_addr; -+ bool global_lock; -+ long unsigned int flags; -+ long unsigned int reference_count; -+ struct mutex mutex; -+ wait_queue_head_t wait; -+ struct list_head list; -+ struct transaction *curr; -+ spinlock_t lock; -+ struct work_struct work; -+ long unsigned int timestamp; -+ long unsigned int nr_pending_queries; -+ bool busy_polling; -+ unsigned int polling_guard; -+}; -+ +enum acpi_subtable_type { + ACPI_SUBTABLE_COMMON = 0, + ACPI_SUBTABLE_HMAT = 1, @@ -66141,8 +70008,6 @@ index 0000000..bcb9d76 + unsigned int darwin_cmdline: 1; +}; + -+typedef u32 acpi_name; -+ +struct acpi_predefined_names { + const char *name; + u8 type; @@ -66153,30 +70018,16 @@ index 0000000..bcb9d76 + +typedef void (*acpi_osd_exec_callback)(void *); + -+typedef u32 (*acpi_sci_handler)(void *); -+ -+typedef void (*acpi_gbl_event_handler)(u32, acpi_handle, u32, void *); -+ -+typedef u32 (*acpi_event_handler)(void *); -+ +typedef u32 (*acpi_gpe_handler)(acpi_handle, u32, void *); + +typedef void (*acpi_notify_handler)(acpi_handle, u32, void *); + +typedef void (*acpi_object_handler)(acpi_handle, void *); + -+typedef acpi_status (*acpi_init_handler)(acpi_handle, u32); -+ -+typedef acpi_status (*acpi_exception_handler)(acpi_status, acpi_name, u16, u32, void *); -+ -+typedef acpi_status (*acpi_table_handler)(u32, void *, void *); -+ +typedef acpi_status (*acpi_adr_space_handler)(u32, acpi_physical_address, u32, u64 *, void *, void *); + +typedef acpi_status (*acpi_adr_space_setup)(acpi_handle, u32, void *, void **); + -+typedef u32 (*acpi_interface_handler)(acpi_string, u32); -+ +struct acpi_pci_id { + u16 segment; + u16 bus; @@ -66184,26 +70035,18 @@ index 0000000..bcb9d76 + u16 function; +}; + ++struct acpi_mem_mapping { ++ acpi_physical_address physical_address; ++ u8 *logical_address; ++ acpi_size length; ++ struct acpi_mem_mapping *next_mm; ++}; ++ +struct acpi_mem_space_context { + u32 length; + acpi_physical_address address; -+ acpi_physical_address mapped_physical_address; -+ u8 *mapped_logical_address; -+ acpi_size mapped_length; -+}; -+ -+struct acpi_table_facs { -+ char signature[4]; -+ u32 length; -+ u32 hardware_signature; -+ u32 firmware_waking_vector; -+ u32 global_lock; -+ u32 flags; -+ u64 xfirmware_waking_vector; -+ u8 version; -+ u8 reserved[3]; -+ u32 ospm_flags; -+ u8 reserved1[24]; ++ struct acpi_mem_mapping *cur_mm; ++ struct acpi_mem_mapping *first_mm; +}; + +typedef enum { @@ -66216,30 +70059,18 @@ index 0000000..bcb9d76 + OSL_EC_BURST_HANDLER = 6, +} acpi_execute_type; + -+struct acpi_rw_lock { -+ void *writer_mutex; -+ void *reader_mutex; -+ u32 num_readers; -+}; -+ -+struct acpi_mutex_info { -+ void *mutex; -+ u32 use_count; -+ u64 thread_id; -+}; -+ +union acpi_operand_object; + +struct acpi_namespace_node { + union acpi_operand_object *object; + u8 descriptor_type; + u8 type; -+ u8 flags; -+ acpi_owner_id owner_id; ++ u16 flags; + union acpi_name_union name; + struct acpi_namespace_node *parent; + struct acpi_namespace_node *child; + struct acpi_namespace_node *peer; ++ acpi_owner_id owner_id; +}; + +struct acpi_object_common { @@ -66326,8 +70157,8 @@ index 0000000..bcb9d76 + union acpi_operand_object *handler; + } dispatch; + u32 aml_length; -+ u8 thread_count; + acpi_owner_id owner_id; ++ u8 thread_count; +}; + +struct acpi_thread_state; @@ -66458,6 +70289,7 @@ index 0000000..bcb9d76 + union acpi_operand_object *region_obj; + u8 *resource_buffer; + u16 pin_number_index; ++ u8 *internal_pcc_buffer; +}; + +struct acpi_object_buffer_field { @@ -66475,6 +70307,7 @@ index 0000000..bcb9d76 + u32 value; + u8 start_field_bit_offset; + u8 access_length; ++ u8 is_create_field; + union acpi_operand_object *buffer_obj; +}; + @@ -66540,6 +70373,7 @@ index 0000000..bcb9d76 + acpi_adr_space_handler handler; + struct acpi_namespace_node *node; + void *context; ++ void *context_mutex; + acpi_adr_space_setup setup; + union acpi_operand_object *region_list; + union acpi_operand_object *next; @@ -66623,13 +70457,6 @@ index 0000000..bcb9d76 + struct acpi_namespace_node node; +}; + -+struct acpi_table_list { -+ struct acpi_table_desc *tables; -+ u32 current_table_count; -+ u32 max_table_count; -+ u8 flags; -+}; -+ +union acpi_parse_object; + +union acpi_generic_state; @@ -66678,6 +70505,8 @@ index 0000000..bcb9d76 + struct acpi_parse_state parser_state; + u32 prev_arg_types; + u32 arg_count; ++ u16 method_nesting_depth; ++ u8 method_is_nested; + struct acpi_namespace_node arguments[7]; + struct acpi_namespace_node local_variables[8]; + union acpi_operand_object *operands[9]; @@ -66691,6 +70520,7 @@ index 0000000..bcb9d76 + union acpi_parse_object *method_call_op; + union acpi_operand_object *method_desc; + struct acpi_namespace_node *method_node; ++ char *method_pathname; + union acpi_parse_object *op; + const struct acpi_opcode_info *op_info; + union acpi_parse_object *origin; @@ -66705,12 +70535,6 @@ index 0000000..bcb9d76 + acpi_parse_upwards ascending_callback; +}; + -+struct acpi_sci_handler_info { -+ struct acpi_sci_handler_info *next; -+ acpi_sci_handler address; -+ void *context; -+}; -+ +struct acpi_gpe_handler_info { + acpi_gpe_handler address; + void *context; @@ -66741,15 +70565,20 @@ index 0000000..bcb9d76 + u8 disable_for_dispatch; +}; + ++struct acpi_gpe_address { ++ u8 space_id; ++ u64 address; ++}; ++ +struct acpi_gpe_register_info { -+ struct acpi_generic_address status_address; -+ struct acpi_generic_address enable_address; ++ struct acpi_gpe_address status_address; ++ struct acpi_gpe_address enable_address; + u16 base_gpe_number; + u8 enable_for_wake; + u8 enable_for_run; + u8 mask_for_run; + u8 enable_mask; -+} __attribute__((packed)); ++}; + +struct acpi_gpe_xrupt_info; + @@ -66775,18 +70604,6 @@ index 0000000..bcb9d76 + u32 interrupt_number; +}; + -+struct acpi_fixed_event_handler { -+ acpi_event_handler handler; -+ void *context; -+}; -+ -+struct acpi_fixed_event_info { -+ u8 status_register_id; -+ u8 enable_register_id; -+ u16 status_bit_mask; -+ u16 enable_bit_mask; -+}; -+ +struct acpi_common_state { + void *next; + u8 descriptor_type; @@ -66984,13 +70801,6 @@ index 0000000..bcb9d76 + struct acpi_notify_info notify; +}; + -+struct acpi_address_range { -+ struct acpi_address_range *next; -+ struct acpi_namespace_node *region_node; -+ acpi_physical_address start_address; -+ acpi_physical_address end_address; -+}; -+ +struct acpi_opcode_info { + u32 parse_args; + u32 runtime_args; @@ -67000,24 +70810,6 @@ index 0000000..bcb9d76 + u8 type; +}; + -+struct acpi_comment_node { -+ char *comment; -+ struct acpi_comment_node *next; -+}; -+ -+struct acpi_bit_register_info { -+ u8 parent_register; -+ u8 bit_position; -+ u16 access_bit_mask; -+}; -+ -+struct acpi_interface_info { -+ char *name; -+ struct acpi_interface_info *next; -+ u8 flags; -+ u8 value; -+}; -+ +struct acpi_os_dpc { + acpi_osd_exec_callback function; + void *context; @@ -67029,7 +70821,10 @@ index 0000000..bcb9d76 + void *virt; + acpi_physical_address phys; + acpi_size size; -+ long unsigned int refcount; ++ union { ++ long unsigned int refcount; ++ struct rcu_work rwork; ++ } track; +}; + +struct acpi_hp_work { @@ -67038,6 +70833,11 @@ index 0000000..bcb9d76 + u32 src; +}; + ++struct acpi_object_list { ++ u32 count; ++ union acpi_object *pointer; ++}; ++ +struct acpi_pld_info { + u8 revision; + u8 ignore_color; @@ -67076,12 +70876,11 @@ index 0000000..bcb9d76 + +struct acpi_device_bus_id { + const char *bus_id; -+ unsigned int instance_no; ++ struct ida instance_ida; + struct list_head node; +}; + +struct acpi_dev_match_info { -+ const char *dev_name; + struct acpi_device_id hid[2]; + const char *uid; + s64 hrv; @@ -67102,8 +70901,28 @@ index 0000000..bcb9d76 + struct list_head node; +}; + ++struct acpi_wakeup_handler { ++ struct list_head list_node; ++ bool (*wakeup)(void *); ++ void *context; ++}; ++ +typedef u32 acpi_event_status; + ++struct acpi_table_facs { ++ char signature[4]; ++ u32 length; ++ u32 hardware_signature; ++ u32 firmware_waking_vector; ++ u32 global_lock; ++ u32 flags; ++ u64 xfirmware_waking_vector; ++ u8 version; ++ u8 reserved[3]; ++ u32 ospm_flags; ++ u8 reserved1[24]; ++}; ++ +struct lpi_device_info { + char *name; + int enabled; @@ -67148,11 +70967,6 @@ index 0000000..bcb9d76 + struct device *dev; +}; + -+struct dev_power_governor { -+ bool (*power_down_ok)(struct dev_pm_domain *); -+ bool (*suspend_ok)(struct device *); -+}; -+ +struct acpi_device_physical_node { + unsigned int node_id; + struct list_head node; @@ -67186,7 +71000,7 @@ index 0000000..bcb9d76 +struct acpi_pnp_device_id_list { + u32 count; + u32 list_size; -+ struct acpi_pnp_device_id ids[1]; ++ struct acpi_pnp_device_id ids[0]; +}; + +struct acpi_device_info { @@ -67279,6 +71093,16 @@ index 0000000..bcb9d76 + int error; +}; + ++struct acpi_processor_errata { ++ u8 smp; ++ struct { ++ u8 throttle: 1; ++ u8 fdma: 1; ++ u8 reserved: 6; ++ u32 bmisx; ++ } piix4; ++}; ++ +struct acpi_table_ecdt { + struct acpi_table_header header; + struct acpi_generic_address control; @@ -67288,6 +71112,31 @@ index 0000000..bcb9d76 + u8 id[1]; +} __attribute__((packed)); + ++struct transaction; ++ ++struct acpi_ec { ++ acpi_handle handle; ++ int gpe; ++ int irq; ++ long unsigned int command_addr; ++ long unsigned int data_addr; ++ bool global_lock; ++ long unsigned int flags; ++ long unsigned int reference_count; ++ struct mutex mutex; ++ wait_queue_head_t wait; ++ struct list_head list; ++ struct transaction *curr; ++ spinlock_t lock; ++ struct work_struct work; ++ long unsigned int timestamp; ++ long unsigned int nr_pending_queries; ++ unsigned int events_in_progress; ++ unsigned int queries_in_progress; ++ bool busy_polling; ++ unsigned int polling_guard; ++}; ++ +struct transaction { + const u8 *wdata; + u8 *rdata; @@ -67314,12 +71163,12 @@ index 0000000..bcb9d76 + EC_FLAGS_QUERY_ENABLED = 0, + EC_FLAGS_QUERY_PENDING = 1, + EC_FLAGS_QUERY_GUARDING = 2, -+ EC_FLAGS_GPE_HANDLER_INSTALLED = 3, ++ EC_FLAGS_EVENT_HANDLER_INSTALLED = 3, + EC_FLAGS_EC_HANDLER_INSTALLED = 4, -+ EC_FLAGS_EVT_HANDLER_INSTALLED = 5, ++ EC_FLAGS_QUERY_METHODS_INSTALLED = 5, + EC_FLAGS_STARTED = 6, + EC_FLAGS_STOPPED = 7, -+ EC_FLAGS_GPE_MASKED = 8, ++ EC_FLAGS_EVENTS_MASKED = 8, +}; + +struct acpi_ec_query_handler { @@ -67335,6 +71184,7 @@ index 0000000..bcb9d76 + struct transaction transaction; + struct work_struct work; + struct acpi_ec_query_handler *handler; ++ struct acpi_ec *ec; +}; + +struct dock_station { @@ -67427,62 +71277,6 @@ index 0000000..bcb9d76 + const char *actual_source; +}; + -+struct clk_core; -+ -+struct clk_init_data; -+ -+struct clk_hw { -+ struct clk_core *core; -+ struct clk *clk; -+ const struct clk_init_data *init; -+}; -+ -+struct clk_rate_request { -+ long unsigned int rate; -+ long unsigned int min_rate; -+ long unsigned int max_rate; -+ long unsigned int best_parent_rate; -+ struct clk_hw *best_parent_hw; -+}; -+ -+struct clk_duty { -+ unsigned int num; -+ unsigned int den; -+}; -+ -+struct clk_ops { -+ int (*prepare)(struct clk_hw *); -+ void (*unprepare)(struct clk_hw *); -+ int (*is_prepared)(struct clk_hw *); -+ void (*unprepare_unused)(struct clk_hw *); -+ int (*enable)(struct clk_hw *); -+ void (*disable)(struct clk_hw *); -+ int (*is_enabled)(struct clk_hw *); -+ void (*disable_unused)(struct clk_hw *); -+ long unsigned int (*recalc_rate)(struct clk_hw *, long unsigned int); -+ long int (*round_rate)(struct clk_hw *, long unsigned int, long unsigned int *); -+ int (*determine_rate)(struct clk_hw *, struct clk_rate_request *); -+ int (*set_parent)(struct clk_hw *, u8); -+ u8 (*get_parent)(struct clk_hw *); -+ int (*set_rate)(struct clk_hw *, long unsigned int, long unsigned int); -+ int (*set_rate_and_parent)(struct clk_hw *, long unsigned int, long unsigned int, u8); -+ long unsigned int (*recalc_accuracy)(struct clk_hw *, long unsigned int); -+ int (*get_phase)(struct clk_hw *); -+ int (*set_phase)(struct clk_hw *, int); -+ int (*get_duty_cycle)(struct clk_hw *, struct clk_duty *); -+ int (*set_duty_cycle)(struct clk_hw *, struct clk_duty *); -+ void (*init)(struct clk_hw *); -+ void (*debug_init)(struct clk_hw *, struct dentry *); -+}; -+ -+struct clk_init_data { -+ const char *name; -+ const struct clk_ops *ops; -+ const char * const *parent_names; -+ u8 num_parents; -+ long unsigned int flags; -+}; -+ +struct lpss_clk_data { + const char *name; + struct clk *clk; @@ -67516,6 +71310,7 @@ index 0000000..bcb9d76 + const char *consumer_hid; + const char *consumer_uid; + u32 flags; ++ const struct dmi_system_id *dep_missing_ids; +}; + +struct hid_uid { @@ -67523,14 +71318,14 @@ index 0000000..bcb9d76 + const char *uid; +}; + -+struct st_clk_data { ++struct fch_clk_data { + void *base; ++ u32 is_rv; +}; + +struct apd_private_data; + +struct apd_device_desc { -+ unsigned int flags; + unsigned int fixed_clk_rate; + struct property_entry *properties; + int (*setup)(struct apd_private_data *); @@ -67542,6 +71337,11 @@ index 0000000..bcb9d76 + const struct apd_device_desc *dev_desc; +}; + ++struct acpi_power_dependent_device { ++ struct device *dev; ++ struct list_head node; ++}; ++ +struct acpi_power_resource { + struct acpi_device device; + struct list_head list_node; @@ -67551,6 +71351,7 @@ index 0000000..bcb9d76 + unsigned int ref_count; + bool wakeup_enabled; + struct mutex resource_lock; ++ struct list_head dependents; +}; + +struct acpi_power_resource_entry { @@ -67585,6 +71386,19 @@ index 0000000..bcb9d76 + __ACPI_GENL_CMD_MAX = 2, +}; + ++struct acpi_ged_device { ++ struct device *dev; ++ struct list_head event_list; ++}; ++ ++struct acpi_ged_event { ++ struct list_head node; ++ struct device *dev; ++ unsigned int gsi; ++ unsigned int irq; ++ acpi_handle handle; ++}; ++ +struct acpi_table_bert { + struct acpi_table_header header; + u32 region_length; @@ -67614,53 +71428,21 @@ index 0000000..bcb9d76 + u32 flags; +}; + -+struct always_present_id { ++struct acpi_device_properties { ++ const guid_t *guid; ++ const union acpi_object *properties; ++ struct list_head list; ++}; ++ ++struct override_status_id { + struct acpi_device_id hid[2]; + struct x86_cpu_id cpu_ids[2]; + struct dmi_system_id dmi_ids[2]; + const char *uid; ++ const char *path; ++ long long unsigned int status; +}; + -+struct acpi_table_slit { -+ struct acpi_table_header header; -+ u64 locality_count; -+ u8 entry[1]; -+} __attribute__((packed)); -+ -+struct acpi_table_srat { -+ struct acpi_table_header header; -+ u32 table_revision; -+ u64 reserved; -+}; -+ -+enum acpi_srat_type { -+ ACPI_SRAT_TYPE_CPU_AFFINITY = 0, -+ ACPI_SRAT_TYPE_MEMORY_AFFINITY = 1, -+ ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY = 2, -+ ACPI_SRAT_TYPE_GICC_AFFINITY = 3, -+ ACPI_SRAT_TYPE_GIC_ITS_AFFINITY = 4, -+ ACPI_SRAT_TYPE_RESERVED = 5, -+}; -+ -+struct acpi_srat_mem_affinity { -+ struct acpi_subtable_header header; -+ u32 proximity_domain; -+ u16 reserved; -+ u64 base_address; -+ u64 length; -+ u32 reserved1; -+ u32 flags; -+ u64 reserved2; -+} __attribute__((packed)); -+ -+struct acpi_srat_gicc_affinity { -+ struct acpi_subtable_header header; -+ u32 proximity_domain; -+ u32 acpi_processor_uid; -+ u32 flags; -+ u32 clock_domain; -+} __attribute__((packed)); -+ +struct acpi_lpat { + int temp; + int raw; @@ -67783,6 +71565,10 @@ index 0000000..bcb9d76 + acpi_owner_id owner_id; +}; + ++typedef u32 acpi_name; ++ ++typedef acpi_status (*acpi_exception_handler)(acpi_status, acpi_name, u16, u32, void *); ++ +struct acpi_name_info { + char name[4]; + u16 argument_list; @@ -67843,9 +71629,9 @@ index 0000000..bcb9d76 + u32 return_flags; + u32 return_btype; + u16 param_count; ++ u16 node_flags; + u8 pass_number; + u8 return_object_type; -+ u8 node_flags; + u8 flags; +}; + @@ -67866,6 +71652,22 @@ index 0000000..bcb9d76 + +typedef acpi_status (*acpi_execute_op)(struct acpi_walk_state *); + ++typedef void (*acpi_gbl_event_handler)(u32, acpi_handle, u32, void *); ++ ++typedef u32 (*acpi_event_handler)(void *); ++ ++struct acpi_fixed_event_handler { ++ acpi_event_handler handler; ++ void *context; ++}; ++ ++struct acpi_fixed_event_info { ++ u8 status_register_id; ++ u8 enable_register_id; ++ u16 status_bit_mask; ++ u16 enable_bit_mask; ++}; ++ +struct acpi_gpe_walk_info { + struct acpi_namespace_node *gpe_device; + struct acpi_gpe_block_info *gpe_block; @@ -67889,17 +71691,12 @@ index 0000000..bcb9d76 + acpi_adr_space_type space_id; +}; + -+enum { -+ AML_FIELD_ATTRIB_QUICK = 2, -+ AML_FIELD_ATTRIB_SEND_RCV = 4, -+ AML_FIELD_ATTRIB_BYTE = 6, -+ AML_FIELD_ATTRIB_WORD = 8, -+ AML_FIELD_ATTRIB_BLOCK = 10, -+ AML_FIELD_ATTRIB_MULTIBYTE = 11, -+ AML_FIELD_ATTRIB_WORD_CALL = 12, -+ AML_FIELD_ATTRIB_BLOCK_CALL = 13, -+ AML_FIELD_ATTRIB_RAW_BYTES = 14, -+ AML_FIELD_ATTRIB_RAW_PROCESS = 15, ++typedef u32 (*acpi_sci_handler)(void *); ++ ++struct acpi_sci_handler_info { ++ struct acpi_sci_handler_info *next; ++ acpi_sci_handler address; ++ void *context; +}; + +enum { @@ -67923,15 +71720,35 @@ index 0000000..bcb9d76 + MATCH_MGT = 5, +}; + ++enum { ++ AML_FIELD_ATTRIB_QUICK = 2, ++ AML_FIELD_ATTRIB_SEND_RECEIVE = 4, ++ AML_FIELD_ATTRIB_BYTE = 6, ++ AML_FIELD_ATTRIB_WORD = 8, ++ AML_FIELD_ATTRIB_BLOCK = 10, ++ AML_FIELD_ATTRIB_BYTES = 11, ++ AML_FIELD_ATTRIB_PROCESS_CALL = 12, ++ AML_FIELD_ATTRIB_BLOCK_PROCESS_CALL = 13, ++ AML_FIELD_ATTRIB_RAW_BYTES = 14, ++ AML_FIELD_ATTRIB_RAW_PROCESS_BYTES = 15, ++}; ++ +typedef enum { + ACPI_TRACE_AML_METHOD = 0, + ACPI_TRACE_AML_OPCODE = 1, + ACPI_TRACE_AML_REGION = 2, +} acpi_trace_event_type; + -+struct acpi_pci_device { -+ acpi_handle device; -+ struct acpi_pci_device *next; ++struct acpi_gpe_block_status_context { ++ struct acpi_gpe_register_info *gpe_skip_register_info; ++ u8 gpe_skip_mask; ++ u8 retval; ++}; ++ ++struct acpi_bit_register_info { ++ u8 parent_register; ++ u8 bit_position; ++ u16 access_bit_mask; +}; + +struct acpi_port_info { @@ -67941,13 +71758,13 @@ index 0000000..bcb9d76 + u8 osi_dependency; +}; + -+typedef acpi_status (*acpi_sleep_function)(u8); -+ -+struct acpi_sleep_functions { -+ acpi_sleep_function legacy_function; -+ acpi_sleep_function extended_function; ++struct acpi_pci_device { ++ acpi_handle device; ++ struct acpi_pci_device *next; +}; + ++typedef acpi_status (*acpi_init_handler)(acpi_handle, u32); ++ +struct acpi_device_walk_info { + struct acpi_table_desc *table_desc; + struct acpi_evaluate_info *evaluate_info; @@ -67956,6 +71773,13 @@ index 0000000..bcb9d76 + u32 num_INI; +}; + ++struct acpi_table_list { ++ struct acpi_table_desc *tables; ++ u32 current_table_count; ++ u32 max_table_count; ++ u8 flags; ++}; ++ +enum acpi_return_package_types { + ACPI_PTYPE1_FIXED = 1, + ACPI_PTYPE1_VAR = 2, @@ -68000,6 +71824,12 @@ index 0000000..bcb9d76 + +typedef acpi_status (*acpi_walk_callback)(acpi_handle, u32, void *, void **); + ++struct acpi_rw_lock { ++ void *writer_mutex; ++ void *reader_mutex; ++ u32 num_readers; ++}; ++ +struct acpi_get_devices_info { + acpi_walk_callback user_function; + void *context; @@ -68422,6 +72252,8 @@ index 0000000..bcb9d76 + acpi_status status; +}; + ++typedef acpi_status (*acpi_table_handler)(u32, void *, void *); ++ +struct acpi_fadt_info { + const char *name; + u16 address64; @@ -68449,6 +72281,13 @@ index 0000000..bcb9d76 + u8 reserved[3]; +} __attribute__((packed)); + ++struct acpi_address_range { ++ struct acpi_address_range *next; ++ struct acpi_namespace_node *region_node; ++ acpi_physical_address start_address; ++ acpi_physical_address end_address; ++}; ++ +struct acpi_pkg_info { + u8 *free_space; + acpi_size length; @@ -68460,6 +72299,26 @@ index 0000000..bcb9d76 + char *name; +}; + ++typedef u32 (*acpi_interface_handler)(acpi_string, u32); ++ ++struct acpi_mutex_info { ++ void *mutex; ++ u32 use_count; ++ u64 thread_id; ++}; ++ ++struct acpi_comment_node { ++ char *comment; ++ struct acpi_comment_node *next; ++}; ++ ++struct acpi_interface_info { ++ char *name; ++ struct acpi_interface_info *next; ++ u8 flags; ++ u8 value; ++}; ++ +typedef acpi_status (*acpi_pkg_callback)(u8, union acpi_operand_object *, union acpi_generic_state *, void *); + +typedef u32 acpi_mutex_handle; @@ -68473,6 +72332,12 @@ index 0000000..bcb9d76 + LED_FULL = 255, +}; + ++struct led_hw_trigger_type { ++ int dummy; ++}; ++ ++struct led_pattern; ++ +struct led_trigger; + +struct led_classdev { @@ -68485,6 +72350,8 @@ index 0000000..bcb9d76 + int (*brightness_set_blocking)(struct led_classdev *, enum led_brightness); + enum led_brightness (*brightness_get)(struct led_classdev *); + int (*blink_set)(struct led_classdev *, long unsigned int *, long unsigned int *); ++ int (*pattern_set)(struct led_classdev *, struct led_pattern *, u32, int); ++ int (*pattern_clear)(struct led_classdev *); + struct device *dev; + const struct attribute_group **groups; + struct list_head node; @@ -68502,13 +72369,20 @@ index 0000000..bcb9d76 + struct list_head trig_list; + void *trigger_data; + bool activated; ++ struct led_hw_trigger_type *trigger_type; + struct mutex led_access; +}; + ++struct led_pattern { ++ u32 delta_t; ++ int brightness; ++}; ++ +struct led_trigger { + const char *name; + int (*activate)(struct led_classdev *); + void (*deactivate)(struct led_classdev *); ++ struct led_hw_trigger_type *trigger_type; + rwlock_t leddev_list_lock; + struct list_head led_cdevs; + struct list_head next_trig; @@ -68551,38 +72425,46 @@ index 0000000..bcb9d76 + POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX = 32, + POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT = 33, + POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX = 34, -+ POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT = 35, -+ POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 36, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 37, -+ POWER_SUPPLY_PROP_ENERGY_FULL = 38, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY = 39, -+ POWER_SUPPLY_PROP_ENERGY_NOW = 40, -+ POWER_SUPPLY_PROP_ENERGY_AVG = 41, -+ POWER_SUPPLY_PROP_CAPACITY = 42, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 43, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 44, -+ POWER_SUPPLY_PROP_CAPACITY_LEVEL = 45, -+ POWER_SUPPLY_PROP_TEMP = 46, -+ POWER_SUPPLY_PROP_TEMP_MAX = 47, -+ POWER_SUPPLY_PROP_TEMP_MIN = 48, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 49, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 50, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT = 51, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 52, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 53, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 54, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 55, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 56, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 57, -+ POWER_SUPPLY_PROP_TYPE = 58, -+ POWER_SUPPLY_PROP_USB_TYPE = 59, -+ POWER_SUPPLY_PROP_SCOPE = 60, -+ POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 61, -+ POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 62, -+ POWER_SUPPLY_PROP_CALIBRATE = 63, -+ POWER_SUPPLY_PROP_MODEL_NAME = 64, -+ POWER_SUPPLY_PROP_MANUFACTURER = 65, -+ POWER_SUPPLY_PROP_SERIAL_NUMBER = 66, ++ POWER_SUPPLY_PROP_CHARGE_CONTROL_START_THRESHOLD = 35, ++ POWER_SUPPLY_PROP_CHARGE_CONTROL_END_THRESHOLD = 36, ++ POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT = 37, ++ POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 38, ++ POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 39, ++ POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 40, ++ POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 41, ++ POWER_SUPPLY_PROP_ENERGY_FULL = 42, ++ POWER_SUPPLY_PROP_ENERGY_EMPTY = 43, ++ POWER_SUPPLY_PROP_ENERGY_NOW = 44, ++ POWER_SUPPLY_PROP_ENERGY_AVG = 45, ++ POWER_SUPPLY_PROP_CAPACITY = 46, ++ POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 47, ++ POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 48, ++ POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 49, ++ POWER_SUPPLY_PROP_CAPACITY_LEVEL = 50, ++ POWER_SUPPLY_PROP_TEMP = 51, ++ POWER_SUPPLY_PROP_TEMP_MAX = 52, ++ POWER_SUPPLY_PROP_TEMP_MIN = 53, ++ POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 54, ++ POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 55, ++ POWER_SUPPLY_PROP_TEMP_AMBIENT = 56, ++ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 57, ++ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 58, ++ POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 59, ++ POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 60, ++ POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 61, ++ POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 62, ++ POWER_SUPPLY_PROP_TYPE = 63, ++ POWER_SUPPLY_PROP_USB_TYPE = 64, ++ POWER_SUPPLY_PROP_SCOPE = 65, ++ POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 66, ++ POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 67, ++ POWER_SUPPLY_PROP_CALIBRATE = 68, ++ POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 69, ++ POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 70, ++ POWER_SUPPLY_PROP_MANUFACTURE_DAY = 71, ++ POWER_SUPPLY_PROP_MODEL_NAME = 72, ++ POWER_SUPPLY_PROP_MANUFACTURER = 73, ++ POWER_SUPPLY_PROP_SERIAL_NUMBER = 74, +}; + +enum power_supply_type { @@ -68598,6 +72480,7 @@ index 0000000..bcb9d76 + POWER_SUPPLY_TYPE_USB_PD = 9, + POWER_SUPPLY_TYPE_USB_PD_DRP = 10, + POWER_SUPPLY_TYPE_APPLE_BRICK_ID = 11, ++ POWER_SUPPLY_TYPE_WIRELESS = 12, +}; + +enum power_supply_usb_type { @@ -68622,6 +72505,7 @@ index 0000000..bcb9d76 + struct device_node *of_node; + struct fwnode_handle *fwnode; + void *drv_data; ++ const struct attribute_group **attr_grp; + char **supplied_to; + size_t num_supplicants; +}; @@ -68631,9 +72515,9 @@ index 0000000..bcb9d76 +struct power_supply_desc { + const char *name; + enum power_supply_type type; -+ enum power_supply_usb_type *usb_types; ++ const enum power_supply_usb_type *usb_types; + size_t num_usb_types; -+ enum power_supply_property *properties; ++ const enum power_supply_property *properties; + size_t num_properties; + int (*get_property)(struct power_supply *, enum power_supply_property, union power_supply_propval *); + int (*set_property)(struct power_supply *, enum power_supply_property, const union power_supply_propval *); @@ -68644,6 +72528,8 @@ index 0000000..bcb9d76 + int use_for_apm; +}; + ++struct thermal_zone_device; ++ +struct power_supply { + const struct power_supply_desc *desc; + char **supplied_to; @@ -68804,8 +72690,17 @@ index 0000000..bcb9d76 + __s32 value; +}; + ++enum input_clock_type { ++ INPUT_CLK_REAL = 0, ++ INPUT_CLK_MONO = 1, ++ INPUT_CLK_BOOT = 2, ++ INPUT_CLK_MAX = 3, ++}; ++ +struct ff_device; + ++struct input_dev_poller; ++ +struct input_mt; + +struct input_handle; @@ -68832,6 +72727,7 @@ index 0000000..bcb9d76 + int (*setkeycode)(struct input_dev *, const struct input_keymap_entry *, unsigned int *); + int (*getkeycode)(struct input_dev *, struct input_keymap_entry *); + struct ff_device *ff; ++ struct input_dev_poller *poller; + unsigned int repeat_key; + struct timer_list timer; + int rep[2]; @@ -68857,6 +72753,9 @@ index 0000000..bcb9d76 + unsigned int max_vals; + struct input_value *vals; + bool devres_managed; ++ ktime_t timestamp[3]; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct ff_device { @@ -68903,6 +72802,13 @@ index 0000000..bcb9d76 + struct list_head node; +}; + ++enum { ++ ACPI_BUTTON_LID_INIT_IGNORE = 0, ++ ACPI_BUTTON_LID_INIT_OPEN = 1, ++ ACPI_BUTTON_LID_INIT_METHOD = 2, ++ ACPI_BUTTON_LID_INIT_DISABLED = 3, ++}; ++ +struct acpi_button { + unsigned int type; + struct input_dev *input; @@ -68911,6 +72817,7 @@ index 0000000..bcb9d76 + int last_state; + ktime_t last_time; + bool suspended; ++ bool lid_state_initialized; +}; + +struct acpi_fan_fps { @@ -68919,6 +72826,8 @@ index 0000000..bcb9d76 + u64 speed; + u64 noise_level; + u64 power; ++ char name[20]; ++ struct device_attribute dev_attr; +}; + +struct acpi_fan_fif { @@ -68964,6 +72873,128 @@ index 0000000..bcb9d76 + int (*offline)(struct container_dev *); +}; + ++enum thermal_device_mode { ++ THERMAL_DEVICE_DISABLED = 0, ++ THERMAL_DEVICE_ENABLED = 1, ++}; ++ ++enum thermal_trip_type { ++ THERMAL_TRIP_ACTIVE = 0, ++ THERMAL_TRIP_PASSIVE = 1, ++ THERMAL_TRIP_HOT = 2, ++ THERMAL_TRIP_CRITICAL = 3, ++}; ++ ++enum thermal_trend { ++ THERMAL_TREND_STABLE = 0, ++ THERMAL_TREND_RAISING = 1, ++ THERMAL_TREND_DROPPING = 2, ++ THERMAL_TREND_RAISE_FULL = 3, ++ THERMAL_TREND_DROP_FULL = 4, ++}; ++ ++enum thermal_notify_event { ++ THERMAL_EVENT_UNSPECIFIED = 0, ++ THERMAL_EVENT_TEMP_SAMPLE = 1, ++ THERMAL_TRIP_VIOLATED = 2, ++ THERMAL_TRIP_CHANGED = 3, ++ THERMAL_DEVICE_DOWN = 4, ++ THERMAL_DEVICE_UP = 5, ++ THERMAL_DEVICE_POWER_CAPABILITY_CHANGED = 6, ++ THERMAL_TABLE_CHANGED = 7, ++ THERMAL_EVENT_KEEP_ALIVE = 8, ++}; ++ ++struct thermal_zone_device_ops { ++ int (*bind)(struct thermal_zone_device *, struct thermal_cooling_device *); ++ int (*unbind)(struct thermal_zone_device *, struct thermal_cooling_device *); ++ int (*get_temp)(struct thermal_zone_device *, int *); ++ int (*set_trips)(struct thermal_zone_device *, int, int); ++ int (*change_mode)(struct thermal_zone_device *, enum thermal_device_mode); ++ int (*get_trip_type)(struct thermal_zone_device *, int, enum thermal_trip_type *); ++ int (*get_trip_temp)(struct thermal_zone_device *, int, int *); ++ int (*set_trip_temp)(struct thermal_zone_device *, int, int); ++ int (*get_trip_hyst)(struct thermal_zone_device *, int, int *); ++ int (*set_trip_hyst)(struct thermal_zone_device *, int, int); ++ int (*get_crit_temp)(struct thermal_zone_device *, int *); ++ int (*set_emul_temp)(struct thermal_zone_device *, int); ++ int (*get_trend)(struct thermal_zone_device *, int, enum thermal_trend *); ++ int (*notify)(struct thermal_zone_device *, int, enum thermal_trip_type); ++}; ++ ++struct thermal_attr; ++ ++struct thermal_zone_params; ++ ++struct thermal_governor; ++ ++struct thermal_zone_device { ++ int id; ++ char type[20]; ++ struct device device; ++ struct attribute_group trips_attribute_group; ++ struct thermal_attr *trip_temp_attrs; ++ struct thermal_attr *trip_type_attrs; ++ struct thermal_attr *trip_hyst_attrs; ++ enum thermal_device_mode mode; ++ void *devdata; ++ int trips; ++ long unsigned int trips_disabled; ++ int passive_delay; ++ int polling_delay; ++ int temperature; ++ int last_temperature; ++ int emul_temperature; ++ int passive; ++ int prev_low_trip; ++ int prev_high_trip; ++ unsigned int forced_passive; ++ atomic_t need_update; ++ struct thermal_zone_device_ops *ops; ++ struct thermal_zone_params *tzp; ++ struct thermal_governor *governor; ++ void *governor_data; ++ struct list_head thermal_instances; ++ struct ida ida; ++ struct mutex lock; ++ struct list_head node; ++ struct delayed_work poll_queue; ++ enum thermal_notify_event notify_event; ++}; ++ ++struct thermal_bind_params; ++ ++struct thermal_zone_params { ++ char governor_name[20]; ++ bool no_hwmon; ++ int num_tbps; ++ struct thermal_bind_params *tbp; ++ u32 sustainable_power; ++ s32 k_po; ++ s32 k_pu; ++ s32 k_i; ++ s32 k_d; ++ s32 integral_cutoff; ++ int slope; ++ int offset; ++}; ++ ++struct thermal_governor { ++ char name[20]; ++ int (*bind_to_tz)(struct thermal_zone_device *); ++ void (*unbind_from_tz)(struct thermal_zone_device *); ++ int (*throttle)(struct thermal_zone_device *, int); ++ struct list_head governor_list; ++}; ++ ++struct thermal_bind_params { ++ struct thermal_cooling_device *cdev; ++ int weight; ++ int trip_mask; ++ long unsigned int *binding_limits; ++ int (*match)(struct thermal_zone_device *, struct thermal_cooling_device *); ++}; ++ +struct acpi_thermal_state { + u8 critical: 1; + u8 hot: 1; @@ -69029,9 +73060,61 @@ index 0000000..bcb9d76 + struct acpi_thermal_trips trips; + struct acpi_handle_list devices; + struct thermal_zone_device *thermal_zone; -+ int tz_enabled; + int kelvin_offset; + struct work_struct thermal_check_work; ++ struct mutex thermal_check_lock; ++ refcount_t thermal_check_count; ++}; ++ ++struct acpi_table_slit { ++ struct acpi_table_header header; ++ u64 locality_count; ++ u8 entry[1]; ++} __attribute__((packed)); ++ ++struct acpi_table_srat { ++ struct acpi_table_header header; ++ u32 table_revision; ++ u64 reserved; ++}; ++ ++enum acpi_srat_type { ++ ACPI_SRAT_TYPE_CPU_AFFINITY = 0, ++ ACPI_SRAT_TYPE_MEMORY_AFFINITY = 1, ++ ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY = 2, ++ ACPI_SRAT_TYPE_GICC_AFFINITY = 3, ++ ACPI_SRAT_TYPE_GIC_ITS_AFFINITY = 4, ++ ACPI_SRAT_TYPE_GENERIC_AFFINITY = 5, ++ ACPI_SRAT_TYPE_RESERVED = 6, ++}; ++ ++struct acpi_srat_mem_affinity { ++ struct acpi_subtable_header header; ++ u32 proximity_domain; ++ u16 reserved; ++ u64 base_address; ++ u64 length; ++ u32 reserved1; ++ u32 flags; ++ u64 reserved2; ++} __attribute__((packed)); ++ ++struct acpi_srat_gicc_affinity { ++ struct acpi_subtable_header header; ++ u32 proximity_domain; ++ u32 acpi_processor_uid; ++ u32 flags; ++ u32 clock_domain; ++} __attribute__((packed)); ++ ++struct acpi_srat_generic_affinity { ++ struct acpi_subtable_header header; ++ u8 reserved; ++ u8 device_handle_type; ++ u32 proximity_domain; ++ u8 device_handle[16]; ++ u32 flags; ++ u32 reserved1; +}; + +enum acpi_hmat_type { @@ -69112,16 +73195,26 @@ index 0000000..bcb9d76 + struct acpi_hmat_locality *hmat_loc; +}; + ++struct target_cache { ++ struct list_head node; ++ struct node_cache_attrs cache_attrs; ++}; ++ +struct memory_target { + struct list_head node; + unsigned int memory_pxm; + unsigned int processor_pxm; -+ struct node_hmem_attrs hmem_attrs; ++ struct resource memregions; ++ struct node_hmem_attrs hmem_attrs[2]; ++ struct list_head caches; ++ struct node_cache_attrs cache_attrs; ++ bool registered; +}; + +struct memory_initiator { + struct list_head node; + unsigned int processor_pxm; ++ bool has_cpu; +}; + +struct acpi_memory_info { @@ -69135,7 +73228,6 @@ index 0000000..bcb9d76 + +struct acpi_memory_device { + struct acpi_device *device; -+ unsigned int state; + struct list_head res_list; +}; + @@ -69279,6 +73371,16 @@ index 0000000..bcb9d76 + u8 mode; +}; + ++struct acpi_table_bgrt { ++ struct acpi_table_header header; ++ u16 version; ++ u8 status; ++ u8 image_type; ++ u64 image_address; ++ u32 image_offset_x; ++ u32 image_offset_y; ++}; ++ +struct acpi_pcct_hw_reduced { + struct acpi_subtable_header header; + u32 platform_interrupt; @@ -69304,6 +73406,7 @@ index 0000000..bcb9d76 + +struct mbox_chan_ops { + int (*send_data)(struct mbox_chan *, void *); ++ int (*flush)(struct mbox_chan *, long unsigned int); + int (*startup)(struct mbox_chan *); + void (*shutdown)(struct mbox_chan *); + bool (*last_tx_done)(struct mbox_chan *); @@ -69498,6 +73601,22 @@ index 0000000..bcb9d76 + u32 error_source_count; +}; + ++enum acpi_hest_types { ++ ACPI_HEST_TYPE_IA32_CHECK = 0, ++ ACPI_HEST_TYPE_IA32_CORRECTED_CHECK = 1, ++ ACPI_HEST_TYPE_IA32_NMI = 2, ++ ACPI_HEST_TYPE_NOT_USED3 = 3, ++ ACPI_HEST_TYPE_NOT_USED4 = 4, ++ ACPI_HEST_TYPE_NOT_USED5 = 5, ++ ACPI_HEST_TYPE_AER_ROOT_PORT = 6, ++ ACPI_HEST_TYPE_AER_ENDPOINT = 7, ++ ACPI_HEST_TYPE_AER_BRIDGE = 8, ++ ACPI_HEST_TYPE_GENERIC_ERROR = 9, ++ ACPI_HEST_TYPE_GENERIC_ERROR_V2 = 10, ++ ACPI_HEST_TYPE_IA32_DEFERRED_CHECK = 11, ++ ACPI_HEST_TYPE_RESERVED = 12, ++}; ++ +struct acpi_hest_ia_machine_check { + struct acpi_hest_header header; + u16 reserved1; @@ -69524,6 +73643,18 @@ index 0000000..bcb9d76 + u32 error_block_length; +} __attribute__((packed)); + ++struct acpi_hest_ia_deferred_check { ++ struct acpi_hest_header header; ++ u16 reserved1; ++ u8 flags; ++ u8 enabled; ++ u32 records_to_preallocate; ++ u32 max_sections_per_record; ++ struct acpi_hest_notify notify; ++ u8 num_hardware_banks; ++ u8 reserved2[3]; ++}; ++ +enum hest_status { + HEST_ENABLED = 0, + HEST_DISABLED = 1, @@ -69681,51 +73812,63 @@ index 0000000..bcb9d76 +}; + +struct cper_sec_proc_arm { -+ __u32 validation_bits; -+ __u16 err_info_num; -+ __u16 context_info_num; -+ __u32 section_length; -+ __u8 affinity_level; -+ __u8 reserved[3]; -+ __u64 mpidr; -+ __u64 midr; -+ __u32 running_state; -+ __u32 psci_state; ++ u32 validation_bits; ++ u16 err_info_num; ++ u16 context_info_num; ++ u32 section_length; ++ u8 affinity_level; ++ u8 reserved[3]; ++ u64 mpidr; ++ u64 midr; ++ u32 running_state; ++ u32 psci_state; +}; + ++struct cper_arm_err_info { ++ u8 version; ++ u8 length; ++ u16 validation_bits; ++ u8 type; ++ u16 multiple_error; ++ u8 flags; ++ u64 error_info; ++ u64 virt_fault_addr; ++ u64 physical_fault_addr; ++} __attribute__((packed)); ++ +struct cper_sec_pcie { -+ __u64 validation_bits; -+ __u32 port_type; ++ u64 validation_bits; ++ u32 port_type; + struct { -+ __u8 minor; -+ __u8 major; -+ __u8 reserved[2]; ++ u8 minor; ++ u8 major; ++ u8 reserved[2]; + } version; -+ __u16 command; -+ __u16 status; -+ __u32 reserved; ++ u16 command; ++ u16 status; ++ u32 reserved; + struct { -+ __u16 vendor_id; -+ __u16 device_id; -+ __u8 class_code[3]; -+ __u8 function; -+ __u8 device; -+ __u16 segment; -+ __u8 bus; -+ __u8 secondary_bus; -+ __u16 slot; -+ __u8 reserved; ++ u16 vendor_id; ++ u16 device_id; ++ u8 class_code[3]; ++ u8 function; ++ u8 device; ++ u16 segment; ++ u8 bus; ++ u8 secondary_bus; ++ u16 slot; ++ u8 reserved; + } __attribute__((packed)) device_id; + struct { -+ __u32 lower; -+ __u32 upper; ++ u32 lower; ++ u32 upper; + } serial_number; + struct { -+ __u16 secondary_status; -+ __u16 control; ++ u16 secondary_status; ++ u16 control; + } bridge; -+ __u8 capability[60]; -+ __u8 aer_info[96]; ++ u8 capability[60]; ++ u8 aer_info[96]; +}; + +struct ghes { @@ -69734,7 +73877,6 @@ index 0000000..bcb9d76 + struct acpi_hest_generic_v2 *generic_v2; + }; + struct acpi_hest_generic_status *estatus; -+ u64 buffer_paddr; + long unsigned int flags; + union { + struct list_head list; @@ -69747,6 +73889,8 @@ index 0000000..bcb9d76 + struct llist_node llnode; + struct acpi_hest_generic *generic; + struct ghes *ghes; ++ int task_work_cpu; ++ struct callback_head task_work; +}; + +struct ghes_estatus_cache { @@ -69757,26 +73901,20 @@ index 0000000..bcb9d76 + struct callback_head rcu; +}; + -+struct ghes_mem_err { -+ int notify_type; -+ int severity; -+ struct cper_sec_mem_err *mem_err; -+}; -+ +struct ghes_vendor_record_entry { + struct work_struct work; + int error_severity; + char vendor_record[0]; +}; + ++struct regmap; ++ +struct pmic_table { + int address; + int reg; + int bit; +}; + -+struct regmap; -+ +struct intel_pmic_opregion_data { + int (*get_power)(struct regmap *, int, int, u64 *); + int (*update_power)(struct regmap *, int, int, bool); @@ -69784,10 +73922,12 @@ index 0000000..bcb9d76 + int (*update_aux)(struct regmap *, int, int); + int (*get_policy)(struct regmap *, int, int, u64 *); + int (*update_policy)(struct regmap *, int, int, int); ++ int (*exec_mipi_pmic_seq_element)(struct regmap *, u16, u32, u32, u32); + struct pmic_table *power_table; + int power_table_count; + struct pmic_table *thermal_table; + int thermal_table_count; ++ int pmic_i2c_address; +}; + +struct intel_pmic_regs_handler_ctx { @@ -69899,6 +74039,8 @@ index 0000000..bcb9d76 + int num_clks; +}; + ++struct clk_hw; ++ +struct clk_lookup { + struct list_head node; + const char *dev_id; @@ -69907,6 +74049,74 @@ index 0000000..bcb9d76 + struct clk_hw *clk_hw; +}; + ++struct clk_core; ++ ++struct clk_init_data; ++ ++struct clk_hw { ++ struct clk_core *core; ++ struct clk *clk; ++ const struct clk_init_data *init; ++}; ++ ++struct clk_rate_request { ++ long unsigned int rate; ++ long unsigned int min_rate; ++ long unsigned int max_rate; ++ long unsigned int best_parent_rate; ++ struct clk_hw *best_parent_hw; ++}; ++ ++struct clk_duty { ++ unsigned int num; ++ unsigned int den; ++}; ++ ++struct clk_ops { ++ int (*prepare)(struct clk_hw *); ++ void (*unprepare)(struct clk_hw *); ++ int (*is_prepared)(struct clk_hw *); ++ void (*unprepare_unused)(struct clk_hw *); ++ int (*enable)(struct clk_hw *); ++ void (*disable)(struct clk_hw *); ++ int (*is_enabled)(struct clk_hw *); ++ void (*disable_unused)(struct clk_hw *); ++ int (*save_context)(struct clk_hw *); ++ void (*restore_context)(struct clk_hw *); ++ long unsigned int (*recalc_rate)(struct clk_hw *, long unsigned int); ++ long int (*round_rate)(struct clk_hw *, long unsigned int, long unsigned int *); ++ int (*determine_rate)(struct clk_hw *, struct clk_rate_request *); ++ int (*set_parent)(struct clk_hw *, u8); ++ u8 (*get_parent)(struct clk_hw *); ++ int (*set_rate)(struct clk_hw *, long unsigned int, long unsigned int); ++ int (*set_rate_and_parent)(struct clk_hw *, long unsigned int, long unsigned int, u8); ++ long unsigned int (*recalc_accuracy)(struct clk_hw *, long unsigned int); ++ int (*get_phase)(struct clk_hw *); ++ int (*set_phase)(struct clk_hw *, int); ++ int (*get_duty_cycle)(struct clk_hw *, struct clk_duty *); ++ int (*set_duty_cycle)(struct clk_hw *, struct clk_duty *); ++ int (*init)(struct clk_hw *); ++ void (*terminate)(struct clk_hw *); ++ void (*debug_init)(struct clk_hw *, struct dentry *); ++}; ++ ++struct clk_parent_data { ++ const struct clk_hw *hw; ++ const char *fw_name; ++ const char *name; ++ int index; ++}; ++ ++struct clk_init_data { ++ const char *name; ++ const struct clk_ops *ops; ++ const char * const *parent_names; ++ const struct clk_parent_data *parent_data; ++ const struct clk_hw **parent_hws; ++ u8 num_parents; ++ long unsigned int flags; ++}; ++ +struct clk_lookup_alloc { + struct clk_lookup cl; + char dev_id[20]; @@ -69921,6 +74131,7 @@ index 0000000..bcb9d76 + +struct clk { + struct clk_core *core; ++ struct device *dev; + const char *dev_id; + const char *con_id; + long unsigned int min_rate; @@ -69935,15 +74146,17 @@ index 0000000..bcb9d76 + long unsigned int new_rate; +}; + ++struct clk_parent_map; ++ +struct clk_core { + const char *name; + const struct clk_ops *ops; + struct clk_hw *hw; + struct module *owner; + struct device *dev; ++ struct device_node *of_node; + struct clk_core *parent; -+ const char **parent_names; -+ struct clk_core **parents; ++ struct clk_parent_map *parents; + u8 num_parents; + u8 new_parent_index; + long unsigned int rate; @@ -69953,6 +74166,7 @@ index 0000000..bcb9d76 + struct clk_core *new_child; + long unsigned int flags; + bool orphan; ++ bool rpm_enabled; + unsigned int enable_count; + unsigned int prepare_count; + unsigned int protect_count; @@ -69970,6 +74184,14 @@ index 0000000..bcb9d76 + struct kref ref; +}; + ++struct clk_parent_map { ++ const struct clk_hw *hw; ++ struct clk_core *core; ++ const char *fw_name; ++ const char *name; ++ int index; ++}; ++ +struct trace_event_raw_clk { + struct trace_entry ent; + u32 __data_loc_name; @@ -70026,6 +74248,38 @@ index 0000000..bcb9d76 + u32 name; +}; + ++typedef void (*btf_trace_clk_enable)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_enable_complete)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_disable)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_disable_complete)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_prepare)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_prepare_complete)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_unprepare)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_unprepare_complete)(void *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_set_rate)(void *, struct clk_core *, long unsigned int); ++ ++typedef void (*btf_trace_clk_set_rate_complete)(void *, struct clk_core *, long unsigned int); ++ ++typedef void (*btf_trace_clk_set_parent)(void *, struct clk_core *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_set_parent_complete)(void *, struct clk_core *, struct clk_core *); ++ ++typedef void (*btf_trace_clk_set_phase)(void *, struct clk_core *, int); ++ ++typedef void (*btf_trace_clk_set_phase_complete)(void *, struct clk_core *, int); ++ ++typedef void (*btf_trace_clk_set_duty_cycle)(void *, struct clk_core *, struct clk_duty *); ++ ++typedef void (*btf_trace_clk_set_duty_cycle_complete)(void *, struct clk_core *, struct clk_duty *); ++ +struct clk_div_table { + unsigned int val; + unsigned int div; @@ -70051,7 +74305,7 @@ index 0000000..bcb9d76 + struct clk_hw hw; + long unsigned int fixed_rate; + long unsigned int fixed_accuracy; -+ u8 flags; ++ long unsigned int flags; +}; + +struct clk_gate { @@ -70106,11 +74360,11 @@ index 0000000..bcb9d76 + spinlock_t *lock; +}; + -+struct gpio_desc___2; ++struct gpio_desc; + +struct clk_gpio { + struct clk_hw hw; -+ struct gpio_desc___2 *gpiod; ++ struct gpio_desc *gpiod; +}; + +struct pmc_clk { @@ -70152,6 +74406,7 @@ index 0000000..bcb9d76 + DMA_IN_PROGRESS = 1, + DMA_PAUSED = 2, + DMA_ERROR = 3, ++ DMA_OUT_OF_ORDER = 4, +}; + +enum dma_transaction_type { @@ -70168,7 +74423,10 @@ index 0000000..bcb9d76 + DMA_SLAVE = 10, + DMA_CYCLIC = 11, + DMA_INTERLEAVE = 12, -+ DMA_TX_TYPE_END = 13, ++ DMA_COMPLETION_NO_ORDER = 13, ++ DMA_REPEAT = 14, ++ DMA_LOAD_EOT = 15, ++ DMA_TX_TYPE_END = 16, +}; + +enum dma_transfer_direction { @@ -70208,6 +74466,8 @@ index 0000000..bcb9d76 + DMA_PREP_FENCE = 32, + DMA_CTRL_REUSE = 64, + DMA_PREP_CMD = 128, ++ DMA_PREP_REPEAT = 256, ++ DMA_PREP_LOAD_EOT = 512, +}; + +enum sum_check_bits { @@ -70224,6 +74484,12 @@ index 0000000..bcb9d76 + long unsigned int bits[1]; +} dma_cap_mask_t; + ++enum dma_desc_metadata_mode { ++ DESC_METADATA_NONE = 0, ++ DESC_METADATA_CLIENT = 1, ++ DESC_METADATA_ENGINE = 2, ++}; ++ +struct dma_chan_percpu { + long unsigned int memcpy_count; + long unsigned int bytes_transferred; @@ -70240,10 +74506,13 @@ index 0000000..bcb9d76 + +struct dma_chan___2 { + struct dma_device *device; ++ struct device *slave; + dma_cookie_t cookie; + dma_cookie_t completed_cookie; + int chan_id; + struct dma_chan_dev *dev; ++ const char *name; ++ char *dbg_client_name; + struct list_head device_node; + struct dma_chan_percpu *local; + int client_count; @@ -70281,17 +74550,21 @@ index 0000000..bcb9d76 + +struct dma_async_tx_descriptor; + ++struct dma_slave_caps; ++ +struct dma_slave_config; + +struct dma_tx_state; + +struct dma_device { ++ struct kref ref; + unsigned int chancnt; + unsigned int privatecnt; + struct list_head channels; + struct list_head global_node; + struct dma_filter filter; + dma_cap_mask_t cap_mask; ++ enum dma_desc_metadata_mode desc_metadata_modes; + short unsigned int max_xor; + short unsigned int max_pq; + enum dmaengine_alignment copy_align; @@ -70300,10 +74573,15 @@ index 0000000..bcb9d76 + enum dmaengine_alignment fill_align; + int dev_id; + struct device *dev; ++ struct module *owner; ++ struct ida chan_ida; ++ struct mutex chan_mutex; + u32 src_addr_widths; + u32 dst_addr_widths; + u32 directions; ++ u32 min_burst; + u32 max_burst; ++ u32 max_sg_burst; + bool descriptor_reuse; + enum dma_residue_granularity residue_granularity; + int (*device_alloc_chan_resources)(struct dma_chan___2 *); @@ -70320,6 +74598,7 @@ index 0000000..bcb9d76 + struct dma_async_tx_descriptor * (*device_prep_dma_cyclic)(struct dma_chan___2 *, dma_addr_t, size_t, size_t, enum dma_transfer_direction, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_interleaved_dma)(struct dma_chan___2 *, struct dma_interleaved_template *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_imm_data)(struct dma_chan___2 *, dma_addr_t, u64, long unsigned int); ++ void (*device_caps)(struct dma_chan___2 *, struct dma_slave_caps *); + int (*device_config)(struct dma_chan___2 *, struct dma_slave_config *); + int (*device_pause)(struct dma_chan___2 *); + int (*device_resume)(struct dma_chan___2 *); @@ -70327,13 +74606,15 @@ index 0000000..bcb9d76 + void (*device_synchronize)(struct dma_chan___2 *); + enum dma_status (*device_tx_status)(struct dma_chan___2 *, dma_cookie_t, struct dma_tx_state *); + void (*device_issue_pending)(struct dma_chan___2 *); ++ void (*device_release)(struct dma_device *); ++ void (*dbg_summary_show)(struct seq_file *, struct dma_device *); ++ struct dentry *dbg_dev_root; +}; + +struct dma_chan_dev { + struct dma_chan___2 *chan; + struct device device; + int dev_id; -+ atomic_t *idr_ref; +}; + +enum dma_slave_buswidth { @@ -70366,7 +74647,9 @@ index 0000000..bcb9d76 + u32 src_addr_widths; + u32 dst_addr_widths; + u32 directions; ++ u32 min_burst; + u32 max_burst; ++ u32 max_sg_burst; + bool cmd_pause; + bool cmd_resume; + bool cmd_terminate; @@ -70401,6 +74684,12 @@ index 0000000..bcb9d76 + dma_addr_t addr[0]; +}; + ++struct dma_descriptor_metadata_ops { ++ int (*attach)(struct dma_async_tx_descriptor *, void *, size_t); ++ void * (*get_ptr)(struct dma_async_tx_descriptor *, size_t *, size_t *); ++ int (*set_len)(struct dma_async_tx_descriptor *, size_t); ++}; ++ +struct dma_async_tx_descriptor { + dma_cookie_t cookie; + enum dma_ctrl_flags flags; @@ -70412,12 +74701,15 @@ index 0000000..bcb9d76 + dma_async_tx_callback_result callback_result; + void *callback_param; + struct dmaengine_unmap_data *unmap; ++ enum dma_desc_metadata_mode desc_metadata_mode; ++ struct dma_descriptor_metadata_ops *metadata_ops; +}; + +struct dma_tx_state { + dma_cookie_t last; + dma_cookie_t used; + u32 residue; ++ u32 in_flight_bytes; +}; + +struct dma_slave_map { @@ -70445,6 +74737,7 @@ index 0000000..bcb9d76 + +struct virt_dma_desc { + struct dma_async_tx_descriptor tx; ++ struct dmaengine_result tx_result; + struct list_head node; +}; + @@ -70457,8 +74750,8 @@ index 0000000..bcb9d76 + struct list_head desc_submitted; + struct list_head desc_issued; + struct list_head desc_completed; ++ struct list_head desc_terminated; + struct virt_dma_desc *cyclic; -+ struct virt_dma_desc *vd_terminated; +}; + +struct acpi_table_csrt { @@ -70523,20 +74816,19 @@ index 0000000..bcb9d76 + u8 dst_id; + u8 m_master; + u8 p_master; ++ u8 channels; + bool hs_polarity; +}; + +struct dw_dma_platform_data { + unsigned int nr_channels; -+ bool is_private; -+ bool is_memcpy; -+ bool is_idma32; + unsigned char chan_allocation_order; + unsigned char chan_priority; + unsigned int block_size; + unsigned char nr_masters; + unsigned char data_width[4]; + unsigned char multi_block[8]; ++ u32 max_burst[8]; + unsigned char protctl; +}; + @@ -70552,7 +74844,7 @@ index 0000000..bcb9d76 + const struct dw_dma_platform_data *pdata; +}; + -+struct dma_pool___2; ++struct dma_pool; + +struct dw_dma_chan; + @@ -70560,11 +74852,21 @@ index 0000000..bcb9d76 + struct dma_device dma; + char name[20]; + void *regs; -+ struct dma_pool___2 *desc_pool; ++ struct dma_pool *desc_pool; + struct tasklet_struct tasklet; + struct dw_dma_chan *chan; + u8 all_chan_mask; + u8 in_use; ++ void (*initialize_chan)(struct dw_dma_chan *); ++ void (*suspend_chan)(struct dw_dma_chan *, bool); ++ void (*resume_chan)(struct dw_dma_chan *, bool); ++ u32 (*prepare_ctllo)(struct dw_dma_chan *); ++ void (*encode_maxburst)(struct dw_dma_chan *, u32 *); ++ u32 (*bytes2block)(struct dw_dma_chan *, size_t, unsigned int, size_t *); ++ size_t (*block2bytes)(struct dw_dma_chan *, u32, u32); ++ void (*set_device_name)(struct dw_dma *, int); ++ void (*disable)(struct dw_dma *); ++ void (*enable)(struct dw_dma *); + struct dw_dma_platform_data *pdata; +}; + @@ -70666,17 +74968,6 @@ index 0000000..bcb9d76 + u32 __pad_GLOBAL_CFG; +}; + -+enum dw_dma_msize { -+ DW_DMA_MSIZE_1 = 0, -+ DW_DMA_MSIZE_4 = 1, -+ DW_DMA_MSIZE_8 = 2, -+ DW_DMA_MSIZE_16 = 3, -+ DW_DMA_MSIZE_32 = 4, -+ DW_DMA_MSIZE_64 = 5, -+ DW_DMA_MSIZE_128 = 6, -+ DW_DMA_MSIZE_256 = 7, -+}; -+ +enum dw_dmac_flags { + DW_DMA_IS_CYCLIC = 0, + DW_DMA_IS_SOFT_LLP = 1, @@ -70698,6 +74989,7 @@ index 0000000..bcb9d76 + unsigned int descs_allocated; + unsigned int block_size; + bool nollp; ++ u32 max_burst; + struct dw_dma_slave dws; + struct dma_slave_config dma_sconfig; +}; @@ -70722,6 +75014,13 @@ index 0000000..bcb9d76 + u32 residue; +}; + ++struct dw_dma_chip_pdata { ++ const struct dw_dma_platform_data *pdata; ++ int (*probe)(struct dw_dma_chip *); ++ int (*remove)(struct dw_dma_chip *); ++ struct dw_dma_chip *chip; ++}; ++ +struct hsu_dma; + +struct hsu_dma_chip { @@ -70780,14 +75079,86 @@ index 0000000..bcb9d76 + int (*restore)(struct virtio_device *); +}; + -+struct vring_desc_state { ++typedef __u16 __virtio16; ++ ++typedef __u32 __virtio32; ++ ++typedef __u64 __virtio64; ++ ++struct vring_desc { ++ __virtio64 addr; ++ __virtio32 len; ++ __virtio16 flags; ++ __virtio16 next; ++}; ++ ++struct vring_avail { ++ __virtio16 flags; ++ __virtio16 idx; ++ __virtio16 ring[0]; ++}; ++ ++struct vring_used_elem { ++ __virtio32 id; ++ __virtio32 len; ++}; ++ ++typedef struct vring_used_elem vring_used_elem_t; ++ ++struct vring_used { ++ __virtio16 flags; ++ __virtio16 idx; ++ vring_used_elem_t ring[0]; ++}; ++ ++typedef struct vring_desc vring_desc_t; ++ ++typedef struct vring_avail vring_avail_t; ++ ++typedef struct vring_used vring_used_t; ++ ++struct vring { ++ unsigned int num; ++ vring_desc_t *desc; ++ vring_avail_t *avail; ++ vring_used_t *used; ++}; ++ ++struct vring_packed_desc_event { ++ __le16 off_wrap; ++ __le16 flags; ++}; ++ ++struct vring_packed_desc { ++ __le64 addr; ++ __le32 len; ++ __le16 id; ++ __le16 flags; ++}; ++ ++struct vring_desc_state_split { + void *data; + struct vring_desc *indir_desc; +}; + ++struct vring_desc_state_packed { ++ void *data; ++ struct vring_packed_desc *indir_desc; ++ u16 num; ++ u16 next; ++ u16 last; ++}; ++ ++struct vring_desc_extra_packed { ++ dma_addr_t addr; ++ u32 len; ++ u16 flags; ++}; ++ +struct vring_virtqueue { + struct virtqueue vq; -+ struct vring vring; ++ bool packed_ring; ++ bool use_dma_api; + bool weak_barriers; + bool broken; + bool indirect; @@ -70795,13 +75166,38 @@ index 0000000..bcb9d76 + unsigned int free_head; + unsigned int num_added; + u16 last_used_idx; -+ u16 avail_flags_shadow; -+ u16 avail_idx_shadow; ++ union { ++ struct { ++ struct vring vring; ++ u16 avail_flags_shadow; ++ u16 avail_idx_shadow; ++ struct vring_desc_state_split *desc_state; ++ dma_addr_t queue_dma_addr; ++ size_t queue_size_in_bytes; ++ } split; ++ struct { ++ struct { ++ unsigned int num; ++ struct vring_packed_desc *desc; ++ struct vring_packed_desc_event *driver; ++ struct vring_packed_desc_event *device; ++ } vring; ++ bool avail_wrap_counter; ++ bool used_wrap_counter; ++ u16 avail_used_flags; ++ u16 next_avail_idx; ++ u16 event_flags_shadow; ++ struct vring_desc_state_packed *desc_state; ++ struct vring_desc_extra_packed *desc_extra; ++ dma_addr_t ring_dma_addr; ++ dma_addr_t driver_event_dma_addr; ++ dma_addr_t device_event_dma_addr; ++ size_t ring_size_in_bytes; ++ size_t event_size_in_bytes; ++ } packed; ++ }; + bool (*notify)(struct virtqueue *); + bool we_own_ring; -+ size_t queue_size_in_bytes; -+ dma_addr_t queue_dma_addr; -+ struct vring_desc_state desc_state[0]; +}; + +struct virtio_pci_common_cfg { @@ -70870,17 +75266,6 @@ index 0000000..bcb9d76 + const char *errstring; +}; + -+typedef uint32_t XENSTORE_RING_IDX; -+ -+struct xenstore_domain_interface { -+ char req[1024]; -+ char rsp[1024]; -+ XENSTORE_RING_IDX req_cons; -+ XENSTORE_RING_IDX req_prod; -+ XENSTORE_RING_IDX rsp_cons; -+ XENSTORE_RING_IDX rsp_prod; -+}; -+ +struct xenbus_watch { + struct list_head list; + const char *node; @@ -70893,124 +75278,6 @@ index 0000000..bcb9d76 + u32 id; +}; + -+typedef uint32_t evtchn_port_t; -+ -+struct evtchn_alloc_unbound { -+ domid_t dom; -+ domid_t remote_dom; -+ evtchn_port_t port; -+}; -+ -+struct evtchn_bind_interdomain { -+ domid_t remote_dom; -+ evtchn_port_t remote_port; -+ evtchn_port_t local_port; -+}; -+ -+struct evtchn_bind_virq { -+ uint32_t virq; -+ uint32_t vcpu; -+ evtchn_port_t port; -+}; -+ -+struct evtchn_bind_pirq { -+ uint32_t pirq; -+ uint32_t flags; -+ evtchn_port_t port; -+}; -+ -+struct evtchn_bind_ipi { -+ uint32_t vcpu; -+ evtchn_port_t port; -+}; -+ -+struct evtchn_close { -+ evtchn_port_t port; -+}; -+ -+struct evtchn_send { -+ evtchn_port_t port; -+}; -+ -+struct evtchn_status { -+ domid_t dom; -+ evtchn_port_t port; -+ uint32_t status; -+ uint32_t vcpu; -+ union { -+ struct { -+ domid_t dom; -+ } unbound; -+ struct { -+ domid_t dom; -+ evtchn_port_t port; -+ } interdomain; -+ uint32_t pirq; -+ uint32_t virq; -+ } u; -+}; -+ -+struct evtchn_bind_vcpu { -+ evtchn_port_t port; -+ uint32_t vcpu; -+}; -+ -+struct evtchn_unmask { -+ evtchn_port_t port; -+}; -+ -+struct evtchn_op { -+ uint32_t cmd; -+ union { -+ struct evtchn_alloc_unbound alloc_unbound; -+ struct evtchn_bind_interdomain bind_interdomain; -+ struct evtchn_bind_virq bind_virq; -+ struct evtchn_bind_pirq bind_pirq; -+ struct evtchn_bind_ipi bind_ipi; -+ struct evtchn_close close; -+ struct evtchn_send send; -+ struct evtchn_status status; -+ struct evtchn_bind_vcpu bind_vcpu; -+ struct evtchn_unmask unmask; -+ } u; -+}; -+ -+struct physdev_irq_status_query { -+ uint32_t irq; -+ uint32_t flags; -+}; -+ -+struct physdev_set_iopl { -+ uint32_t iopl; -+}; -+ -+struct physdev_set_iobitmap { -+ uint8_t *bitmap; -+ uint32_t nr_ports; -+}; -+ -+struct physdev_apic { -+ long unsigned int apic_physbase; -+ uint32_t reg; -+ uint32_t value; -+}; -+ -+struct physdev_irq { -+ uint32_t irq; -+ uint32_t vector; -+}; -+ -+struct physdev_op { -+ uint32_t cmd; -+ union { -+ struct physdev_irq_status_query irq_status_query; -+ struct physdev_set_iopl set_iopl; -+ struct physdev_set_iobitmap set_iobitmap; -+ struct physdev_apic apic_op; -+ struct physdev_irq irq_op; -+ } u; -+}; -+ +typedef xen_pfn_t *__guest_handle_xen_pfn_t; + +typedef uint32_t grant_ref_t; @@ -71136,6 +75403,18 @@ index 0000000..bcb9d76 + unsigned int age; +}; + ++struct grant_frames { ++ xen_pfn_t *pfn; ++ unsigned int count; ++ void *vaddr; ++}; ++ ++struct gnttab_page_cache { ++ spinlock_t lock; ++ struct list_head pages; ++ unsigned int num_pages; ++}; ++ +struct xen_page_foreign { + domid_t domid; + grant_ref_t gref; @@ -71143,19 +75422,6 @@ index 0000000..bcb9d76 + +typedef void (*xen_grant_fn_t)(long unsigned int, unsigned int, unsigned int, void *); + -+struct balloon_stats { -+ long unsigned int current_pages; -+ long unsigned int target_pages; -+ long unsigned int target_unpopulated; -+ long unsigned int balloon_low; -+ long unsigned int balloon_high; -+ long unsigned int total_pages; -+ long unsigned int schedule_delay; -+ long unsigned int max_schedule_delay; -+ long unsigned int retry_count; -+ long unsigned int max_retry_count; -+}; -+ +struct gnttab_ops { + unsigned int version; + unsigned int grefs_per_grant_frame; @@ -71164,7 +75430,7 @@ index 0000000..bcb9d76 + void (*update_entry)(grant_ref_t, domid_t, long unsigned int, unsigned int); + int (*end_foreign_access_ref)(grant_ref_t, int); + long unsigned int (*end_foreign_transfer_ref)(grant_ref_t); -+ int (*query_foreign_access)(grant_ref_t); ++ long unsigned int (*read_frame)(grant_ref_t); +}; + +struct unmap_refs_callback_data { @@ -71185,6 +75451,19 @@ index 0000000..bcb9d76 + uint32_t submap; +}; + ++struct balloon_stats { ++ long unsigned int current_pages; ++ long unsigned int target_pages; ++ long unsigned int target_unpopulated; ++ long unsigned int balloon_low; ++ long unsigned int balloon_high; ++ long unsigned int total_pages; ++ long unsigned int schedule_delay; ++ long unsigned int max_schedule_delay; ++ long unsigned int retry_count; ++ long unsigned int max_retry_count; ++}; ++ +enum bp_state { + BP_DONE = 0, + BP_WAIT = 1, @@ -71193,7 +75472,7 @@ index 0000000..bcb9d76 +}; + +enum shutdown_state { -+ SHUTDOWN_INVALID = -1, ++ SHUTDOWN_INVALID = 4294967295, + SHUTDOWN_POWEROFF = 0, + SHUTDOWN_SUSPEND = 2, + SHUTDOWN_HALT = 4, @@ -71233,17 +75512,66 @@ index 0000000..bcb9d76 + domid_t domid; +}; + -+struct xen_pci_frontend_ops { -+ int (*enable_msi)(struct pci_dev *, int *); -+ void (*disable_msi)(struct pci_dev *); -+ int (*enable_msix)(struct pci_dev *, int *, int); -+ void (*disable_msix)(struct pci_dev *); -+}; ++typedef uint32_t evtchn_port_t; + +typedef evtchn_port_t *__guest_handle_evtchn_port_t; + ++struct evtchn_bind_interdomain { ++ domid_t remote_dom; ++ evtchn_port_t remote_port; ++ evtchn_port_t local_port; ++}; ++ ++struct evtchn_bind_virq { ++ uint32_t virq; ++ uint32_t vcpu; ++ evtchn_port_t port; ++}; ++ ++struct evtchn_bind_pirq { ++ uint32_t pirq; ++ uint32_t flags; ++ evtchn_port_t port; ++}; ++ ++struct evtchn_bind_ipi { ++ uint32_t vcpu; ++ evtchn_port_t port; ++}; ++ ++struct evtchn_close { ++ evtchn_port_t port; ++}; ++ ++struct evtchn_send { ++ evtchn_port_t port; ++}; ++ ++struct evtchn_status { ++ domid_t dom; ++ evtchn_port_t port; ++ uint32_t status; ++ uint32_t vcpu; ++ union { ++ struct { ++ domid_t dom; ++ } unbound; ++ struct { ++ domid_t dom; ++ evtchn_port_t port; ++ } interdomain; ++ uint32_t pirq; ++ uint32_t virq; ++ } u; ++}; ++ ++struct evtchn_bind_vcpu { ++ evtchn_port_t port; ++ uint32_t vcpu; ++}; ++ +struct evtchn_set_priority { -+ uint32_t port; ++ evtchn_port_t port; + uint32_t priority; +}; + @@ -71261,6 +75589,16 @@ index 0000000..bcb9d76 + xen_ulong_t gmfn; +}; + ++struct physdev_irq_status_query { ++ uint32_t irq; ++ uint32_t flags; ++}; ++ ++struct physdev_irq { ++ uint32_t irq; ++ uint32_t vector; ++}; ++ +struct physdev_map_pirq { + domid_t domid; + int type; @@ -71282,10 +75620,29 @@ index 0000000..bcb9d76 + uint32_t pirq; +}; + -+struct xen_hvm_param { -+ domid_t domid; -+ uint32_t index; -+ uint64_t value; ++struct evtchn_loop_ctrl; ++ ++struct evtchn_ops { ++ unsigned int (*max_channels)(); ++ unsigned int (*nr_channels)(); ++ int (*setup)(evtchn_port_t); ++ void (*remove)(evtchn_port_t, unsigned int); ++ void (*bind_to_cpu)(evtchn_port_t, unsigned int, unsigned int); ++ void (*clear_pending)(evtchn_port_t); ++ void (*set_pending)(evtchn_port_t); ++ bool (*is_pending)(evtchn_port_t); ++ void (*mask)(evtchn_port_t); ++ void (*unmask)(evtchn_port_t); ++ void (*handle_events)(unsigned int, struct evtchn_loop_ctrl *); ++ void (*resume)(); ++ int (*percpu_init)(unsigned int); ++ int (*percpu_deinit)(unsigned int); ++}; ++ ++struct evtchn_loop_ctrl { ++ ktime_t timeout; ++ unsigned int count; ++ bool defer_eoi; +}; + +enum xen_irq_type { @@ -71299,14 +75656,18 @@ index 0000000..bcb9d76 +struct irq_info { + struct list_head list; + struct list_head eoi_list; -+ int refcnt; -+ enum xen_irq_type type; ++ short int refcnt; ++ short int spurious_cnt; ++ short int type; ++ u8 mask_reason; ++ u8 is_active; + unsigned int irq; -+ unsigned int evtchn; ++ evtchn_port_t evtchn; + short unsigned int cpu; + short unsigned int eoi_cpu; + unsigned int irq_epoch; + u64 eoi_time; ++ raw_spinlock_t lock; + union { + short unsigned int virq; + enum ipi_vector ipi; @@ -71320,37 +75681,16 @@ index 0000000..bcb9d76 + } u; +}; + -+struct evtchn_loop_ctrl; -+ -+struct evtchn_ops { -+ unsigned int (*max_channels)(); -+ unsigned int (*nr_channels)(); -+ int (*setup)(struct irq_info *); -+ void (*bind_to_cpu)(struct irq_info *, unsigned int); -+ void (*clear_pending)(unsigned int); -+ void (*set_pending)(unsigned int); -+ bool (*is_pending)(unsigned int); -+ bool (*test_and_set_mask)(unsigned int); -+ void (*mask)(unsigned int); -+ void (*unmask)(unsigned int); -+ void (*handle_events)(unsigned int, struct evtchn_loop_ctrl *); -+ void (*resume)(); -+ int (*percpu_init)(unsigned int); -+ int (*percpu_deinit)(unsigned int); -+}; -+ -+struct evtchn_loop_ctrl { -+ ktime_t timeout; -+ unsigned int count; -+ bool defer_eoi; -+}; -+ +struct lateeoi_work { + struct delayed_work delayed; + spinlock_t eoi_list_lock; + struct list_head eoi_list; +}; + ++struct evtchn_unmask { ++ evtchn_port_t port; ++}; ++ +struct evtchn_init_control { + uint64_t control_gfn; + uint32_t offset; @@ -71375,6 +75715,12 @@ index 0000000..bcb9d76 + uint32_t head[16]; +}; + ++struct evtchn_alloc_unbound { ++ domid_t dom; ++ domid_t remote_dom; ++ evtchn_port_t port; ++}; ++ +enum xenbus_state { + XenbusStateUnknown = 0, + XenbusStateInitialising = 1, @@ -71397,13 +75743,7 @@ index 0000000..bcb9d76 + enum xenbus_state state; + struct completion down; + struct work_struct work; -+}; -+ -+enum xenstore_init { -+ XS_UNKNOWN = 0, -+ XS_PV = 1, -+ XS_HVM = 2, -+ XS_LOCAL = 3, ++ struct semaphore reclaim_sem; +}; + +struct xenbus_map_node { @@ -71422,18 +75762,21 @@ index 0000000..bcb9d76 + unsigned int nr_handles; +}; + ++struct map_ring_valloc { ++ struct xenbus_map_node *node; ++ long unsigned int addrs[16]; ++ phys_addr_t phys_addrs[16]; ++ struct gnttab_map_grant_ref map[16]; ++ struct gnttab_unmap_grant_ref unmap[16]; ++ unsigned int idx; ++}; ++ +struct xenbus_ring_ops { -+ int (*map)(struct xenbus_device *, grant_ref_t *, unsigned int, void **); ++ int (*map)(struct xenbus_device *, struct map_ring_valloc *, grant_ref_t *, unsigned int, void **); + int (*unmap)(struct xenbus_device *, void *); +}; + -+struct map_ring_valloc_hvm { -+ unsigned int idx; -+ phys_addr_t phys_addrs[16]; -+ long unsigned int addrs[16]; -+}; -+ -+struct unmap_ring_vfree_hvm { ++struct unmap_ring_hvm { + unsigned int idx; + long unsigned int addrs[16]; +}; @@ -71470,6 +75813,17 @@ index 0000000..bcb9d76 + uint32_t len; +}; + ++typedef uint32_t XENSTORE_RING_IDX; ++ ++struct xenstore_domain_interface { ++ char req[1024]; ++ char rsp[1024]; ++ XENSTORE_RING_IDX req_cons; ++ XENSTORE_RING_IDX req_prod; ++ XENSTORE_RING_IDX rsp_cons; ++ XENSTORE_RING_IDX rsp_prod; ++}; ++ +struct xs_watch_event { + struct list_head list; + unsigned int len; @@ -71502,6 +75856,13 @@ index 0000000..bcb9d76 + void *par; +}; + ++enum xenstore_init { ++ XS_UNKNOWN = 0, ++ XS_PV = 1, ++ XS_HVM = 2, ++ XS_LOCAL = 3, ++}; ++ +struct xenbus_device_id { + char devicetype[32]; +}; @@ -71509,6 +75870,7 @@ index 0000000..bcb9d76 +struct xenbus_driver { + const char *name; + const struct xenbus_device_id *ids; ++ bool allow_rebind; + int (*probe)(struct xenbus_device *, const struct xenbus_device_id *); + void (*otherend_changed)(struct xenbus_device *, enum xenbus_state); + int (*remove)(struct xenbus_device *); @@ -71518,6 +75880,13 @@ index 0000000..bcb9d76 + struct device_driver driver; + int (*read_otherend_details)(struct xenbus_device *); + int (*is_ready)(struct xenbus_device *); ++ void (*reclaim_memory)(struct xenbus_device *); ++}; ++ ++struct xen_hvm_param { ++ domid_t domid; ++ uint32_t index; ++ uint64_t value; +}; + +struct xen_bus_type { @@ -71625,7 +75994,7 @@ index 0000000..bcb9d76 + +struct xen_remap_gfn_info; + -+struct remap_data___2 { ++struct remap_data { + xen_pfn_t *fgfn; + int nr_fgfn; + pgprot_t prot; @@ -71647,6 +76016,34 @@ index 0000000..bcb9d76 + unsigned int idx; +}; + ++struct remap_pfn { ++ struct mm_struct *mm; ++ struct page **pages; ++ pgprot_t prot; ++ long unsigned int i; ++}; ++ ++struct serial_struct32 { ++ compat_int_t type; ++ compat_int_t line; ++ compat_uint_t port; ++ compat_int_t irq; ++ compat_int_t flags; ++ compat_int_t xmit_fifo_size; ++ compat_int_t custom_divisor; ++ compat_int_t baud_base; ++ short unsigned int close_delay; ++ char io_type; ++ char reserved_char; ++ compat_int_t hub6; ++ short unsigned int closing_wait; ++ short unsigned int closing_wait2; ++ compat_uint_t iomem_base; ++ short unsigned int iomem_reg_shift; ++ unsigned int port_high; ++ compat_int_t reserved; ++}; ++ +struct n_tty_data { + size_t read_head; + size_t commit_head; @@ -71716,7 +76113,7 @@ index 0000000..bcb9d76 + struct task_struct *task; +}; + -+struct pts_fs_info___2; ++struct pts_fs_info; + +struct tty_audit_buf { + struct mutex mutex; @@ -71732,6 +76129,8 @@ index 0000000..bcb9d76 + long unsigned int key_down[12]; + unsigned int alt; + unsigned int alt_use; ++ unsigned int shift; ++ unsigned int shift_use; + bool active; + bool need_reinject; + bool reinjecting; @@ -71744,12 +76143,6 @@ index 0000000..bcb9d76 + struct timer_list keyreset_timer; +}; + -+struct consolefontdesc { -+ short unsigned int charcount; -+ short unsigned int charheight; -+ char *chardata; -+}; -+ +struct unipair { + short unsigned int unicode; + short unsigned int fontpos; @@ -71760,12 +76153,6 @@ index 0000000..bcb9d76 + struct unipair *entries; +}; + -+struct kbdiacruc { -+ unsigned int diacr; -+ unsigned int base; -+ unsigned int result; -+}; -+ +struct kbd_repeat { + int delay; + int period; @@ -71813,18 +76200,18 @@ index 0000000..bcb9d76 + struct vt_mode mode; +}; + ++struct vt_spawn_console { ++ spinlock_t lock; ++ struct pid *pid; ++ int sig; ++}; ++ +struct vt_event_wait { + struct list_head list; + struct vt_event event; + int done; +}; + -+struct compat_consolefontdesc { -+ short unsigned int charcount; -+ short unsigned int charheight; -+ compat_caddr_t chardata; -+}; -+ +struct compat_console_font_op { + compat_uint_t op; + compat_uint_t flags; @@ -71847,7 +76234,7 @@ index 0000000..bcb9d76 +struct vcs_poll_data { + struct notifier_block notifier; + unsigned int cons_num; -+ bool seen_last_update; ++ int event; + wait_queue_head_t waitq; + struct fasync_struct *fasync; +}; @@ -71860,6 +76247,15 @@ index 0000000..bcb9d76 + short unsigned int sel_mode; +}; + ++struct vc_selection { ++ struct mutex lock; ++ struct vc_data *cons; ++ char *buffer; ++ unsigned int buf_len; ++ volatile int start; ++ int end; ++}; ++ +struct keyboard_notifier_param { + struct vc_data *vc; + int down; @@ -71902,6 +76298,12 @@ index 0000000..bcb9d76 + struct kbdiacr kbdiacr[256]; +}; + ++struct kbdiacruc { ++ unsigned int diacr; ++ unsigned int base; ++ unsigned int result; ++}; ++ +struct kbdiacrsuc { + unsigned int kb_cnt; + struct kbdiacruc kbdiacruc[256]; @@ -71956,6 +76358,14 @@ index 0000000..bcb9d76 + blank_vesa_wait = 2, +}; + ++enum { ++ EPecma = 0, ++ EPdec = 1, ++ EPeq = 2, ++ EPgt = 3, ++ EPlt = 4, ++}; ++ +struct rgb { + u8 r; + u8 g; @@ -71972,10 +76382,13 @@ index 0000000..bcb9d76 + ESsetG0 = 6, + ESsetG1 = 7, + ESpercent = 8, -+ ESignore = 9, ++ EScsiignore = 9, + ESnonstd = 10, + ESpalette = 11, + ESosc = 12, ++ ESapc = 13, ++ ESpm = 14, ++ ESdcs = 15, +}; + +struct interval { @@ -71983,6 +76396,12 @@ index 0000000..bcb9d76 + uint32_t last; +}; + ++struct vc_draw_region { ++ long unsigned int from; ++ long unsigned int to; ++ int x; ++}; ++ +struct hv_ops; + +struct hvc_struct { @@ -72015,6 +76434,171 @@ index 0000000..bcb9d76 + void (*dtr_rts)(struct hvc_struct *, int); +}; + ++struct circ_buf { ++ char *buf; ++ int head; ++ int tail; ++}; ++ ++struct serial_rs485 { ++ __u32 flags; ++ __u32 delay_rts_before_send; ++ __u32 delay_rts_after_send; ++ __u32 padding[5]; ++}; ++ ++struct serial_iso7816 { ++ __u32 flags; ++ __u32 tg; ++ __u32 sc_fi; ++ __u32 sc_di; ++ __u32 clk; ++ __u32 reserved[5]; ++}; ++ ++struct uart_port; ++ ++struct uart_ops { ++ unsigned int (*tx_empty)(struct uart_port *); ++ void (*set_mctrl)(struct uart_port *, unsigned int); ++ unsigned int (*get_mctrl)(struct uart_port *); ++ void (*stop_tx)(struct uart_port *); ++ void (*start_tx)(struct uart_port *); ++ void (*throttle)(struct uart_port *); ++ void (*unthrottle)(struct uart_port *); ++ void (*send_xchar)(struct uart_port *, char); ++ void (*stop_rx)(struct uart_port *); ++ void (*enable_ms)(struct uart_port *); ++ void (*break_ctl)(struct uart_port *, int); ++ int (*startup)(struct uart_port *); ++ void (*shutdown)(struct uart_port *); ++ void (*flush_buffer)(struct uart_port *); ++ void (*set_termios)(struct uart_port *, struct ktermios *, struct ktermios *); ++ void (*set_ldisc)(struct uart_port *, struct ktermios *); ++ void (*pm)(struct uart_port *, unsigned int, unsigned int); ++ const char * (*type)(struct uart_port *); ++ void (*release_port)(struct uart_port *); ++ int (*request_port)(struct uart_port *); ++ void (*config_port)(struct uart_port *, int); ++ int (*verify_port)(struct uart_port *, struct serial_struct *); ++ int (*ioctl)(struct uart_port *, unsigned int, long unsigned int); ++ int (*poll_init)(struct uart_port *); ++ void (*poll_put_char)(struct uart_port *, unsigned char); ++ int (*poll_get_char)(struct uart_port *); ++}; ++ ++struct uart_icount { ++ __u32 cts; ++ __u32 dsr; ++ __u32 rng; ++ __u32 dcd; ++ __u32 rx; ++ __u32 tx; ++ __u32 frame; ++ __u32 overrun; ++ __u32 parity; ++ __u32 brk; ++ __u32 buf_overrun; ++}; ++ ++typedef unsigned int upf_t; ++ ++typedef unsigned int upstat_t; ++ ++struct uart_state; ++ ++struct uart_port { ++ spinlock_t lock; ++ long unsigned int iobase; ++ unsigned char *membase; ++ unsigned int (*serial_in)(struct uart_port *, int); ++ void (*serial_out)(struct uart_port *, int, int); ++ void (*set_termios)(struct uart_port *, struct ktermios *, struct ktermios *); ++ void (*set_ldisc)(struct uart_port *, struct ktermios *); ++ unsigned int (*get_mctrl)(struct uart_port *); ++ void (*set_mctrl)(struct uart_port *, unsigned int); ++ unsigned int (*get_divisor)(struct uart_port *, unsigned int, unsigned int *); ++ void (*set_divisor)(struct uart_port *, unsigned int, unsigned int, unsigned int); ++ int (*startup)(struct uart_port *); ++ void (*shutdown)(struct uart_port *); ++ void (*throttle)(struct uart_port *); ++ void (*unthrottle)(struct uart_port *); ++ int (*handle_irq)(struct uart_port *); ++ void (*pm)(struct uart_port *, unsigned int, unsigned int); ++ void (*handle_break)(struct uart_port *); ++ int (*rs485_config)(struct uart_port *, struct serial_rs485 *); ++ int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); ++ unsigned int irq; ++ long unsigned int irqflags; ++ unsigned int uartclk; ++ unsigned int fifosize; ++ unsigned char x_char; ++ unsigned char regshift; ++ unsigned char iotype; ++ unsigned char quirks; ++ unsigned int read_status_mask; ++ unsigned int ignore_status_mask; ++ struct uart_state *state; ++ struct uart_icount icount; ++ struct console *cons; ++ upf_t flags; ++ upstat_t status; ++ int hw_stopped; ++ unsigned int mctrl; ++ unsigned int timeout; ++ unsigned int type; ++ const struct uart_ops *ops; ++ unsigned int custom_divisor; ++ unsigned int line; ++ unsigned int minor; ++ resource_size_t mapbase; ++ resource_size_t mapsize; ++ struct device *dev; ++ long unsigned int sysrq; ++ unsigned int sysrq_ch; ++ unsigned char has_sysrq; ++ unsigned char sysrq_seq; ++ unsigned char hub6; ++ unsigned char suspended; ++ unsigned char console_reinit; ++ const char *name; ++ struct attribute_group *attr_group; ++ const struct attribute_group **tty_groups; ++ struct serial_rs485 rs485; ++ struct gpio_desc *rs485_term_gpio; ++ struct serial_iso7816 iso7816; ++ void *private_data; ++}; ++ ++enum uart_pm_state { ++ UART_PM_STATE_ON = 0, ++ UART_PM_STATE_OFF = 3, ++ UART_PM_STATE_UNDEFINED = 4, ++}; ++ ++struct uart_state { ++ struct tty_port port; ++ enum uart_pm_state pm_state; ++ struct circ_buf xmit; ++ atomic_t refcount; ++ wait_queue_head_t remove_wait; ++ struct uart_port *uart_port; ++}; ++ ++struct earlycon_device { ++ struct console *con; ++ struct uart_port port; ++ char options[16]; ++ unsigned int baud; ++}; ++ ++struct earlycon_id { ++ char name[15]; ++ char name_term; ++ char compatible[128]; ++ int (*setup)(struct earlycon_device *, const char *); ++}; ++ +typedef uint32_t XENCONS_RING_IDX; + +struct xencons_interface { @@ -72031,6 +76615,8 @@ index 0000000..bcb9d76 + struct xenbus_device *xbdev; + struct xencons_interface *intf; + unsigned int evtchn; ++ XENCONS_RING_IDX out_cons; ++ unsigned int out_cons_same; + struct hvc_struct *hvc; + int irq; + int vtermno; @@ -72075,6 +76661,7 @@ index 0000000..bcb9d76 + unsigned char regshift; + unsigned char iotype; + unsigned char hub6; ++ unsigned char has_sysrq; + upf_t flags; + unsigned int type; + unsigned int (*serial_in)(struct uart_port *, int); @@ -72088,7 +76675,7 @@ index 0000000..bcb9d76 +}; + +enum { -+ PLAT8250_DEV_LEGACY = -1, ++ PLAT8250_DEV_LEGACY = 4294967295, + PLAT8250_DEV_PLATFORM = 0, + PLAT8250_DEV_PLATFORM1 = 1, + PLAT8250_DEV_PLATFORM2 = 2, @@ -72108,6 +76695,8 @@ index 0000000..bcb9d76 + void (*release_irq)(struct uart_8250_port *); +}; + ++struct mctrl_gpios; ++ +struct uart_8250_dma; + +struct uart_8250_em485; @@ -72131,6 +76720,7 @@ index 0000000..bcb9d76 + unsigned int rpm_tx_active; + unsigned char canary; + unsigned char probe; ++ struct mctrl_gpios *gpios; + unsigned char lsr_saved_flags; + unsigned char msr_saved_flags; + struct uart_8250_dma *dma; @@ -72138,6 +76728,8 @@ index 0000000..bcb9d76 + int (*dl_read)(struct uart_8250_port *); + void (*dl_write)(struct uart_8250_port *, int); + struct uart_8250_em485 *em485; ++ void (*rs485_start_tx)(struct uart_8250_port *); ++ void (*rs485_stop_tx)(struct uart_8250_port *); + struct delayed_work overrun_backoff; + u32 overrun_backoff_time_ms; +}; @@ -72147,6 +76739,7 @@ index 0000000..bcb9d76 + struct hrtimer stop_tx_timer; + struct hrtimer *active_timer; + struct uart_8250_port *port; ++ unsigned int tx_stopped: 1; +}; + +struct uart_8250_dma { @@ -72200,6 +76793,12 @@ index 0000000..bcb9d76 + unsigned int flags; +}; + ++struct dw8250_port_data { ++ int line; ++ struct uart_8250_dma dma; ++ u8 dlf_size; ++}; ++ +struct pciserial_board { + unsigned int flags; + unsigned int num_ports; @@ -72230,6 +76829,11 @@ index 0000000..bcb9d76 + int line[0]; +}; + ++struct f815xxa_data { ++ spinlock_t lock; ++ int idx; ++}; ++ +struct timedia_struct { + int num; + const short unsigned int *ids; @@ -72340,12 +76944,24 @@ index 0000000..bcb9d76 + pbn_fintek_4 = 96, + pbn_fintek_8 = 97, + pbn_fintek_12 = 98, -+ pbn_wch382_2 = 99, -+ pbn_wch384_4 = 100, -+ pbn_pericom_PI7C9X7951 = 101, -+ pbn_pericom_PI7C9X7952 = 102, -+ pbn_pericom_PI7C9X7954 = 103, -+ pbn_pericom_PI7C9X7958 = 104, ++ pbn_fintek_F81504A = 99, ++ pbn_fintek_F81508A = 100, ++ pbn_fintek_F81512A = 101, ++ pbn_wch382_2 = 102, ++ pbn_wch384_4 = 103, ++ pbn_wch384_8 = 104, ++ pbn_pericom_PI7C9X7951 = 105, ++ pbn_pericom_PI7C9X7952 = 106, ++ pbn_pericom_PI7C9X7954 = 107, ++ pbn_pericom_PI7C9X7958 = 108, ++ pbn_sunix_pci_1s = 109, ++ pbn_sunix_pci_2s = 110, ++ pbn_sunix_pci_4s = 111, ++ pbn_sunix_pci_8s = 112, ++ pbn_sunix_pci_16s = 113, ++ pbn_moxa8250_2p = 114, ++ pbn_moxa8250_4p = 115, ++ pbn_moxa8250_8p = 116, +}; + +struct exar8250_platform { @@ -72372,15 +76988,15 @@ index 0000000..bcb9d76 +struct reset_control; + +struct dw8250_data { ++ struct dw8250_port_data data; + u8 usr_reg; -+ u8 dlf_size; -+ int line; + int msr_mask_on; + int msr_mask_off; + struct clk *clk; + struct clk *pclk; ++ struct notifier_block clk_notifier; ++ struct work_struct clk_work; + struct reset_control *rst; -+ struct uart_8250_dma dma; + unsigned int skip_autocfg: 1; + unsigned int uart_16550_compatible: 1; +}; @@ -72395,9 +77011,8 @@ index 0000000..bcb9d76 +}; + +struct lpss8250 { -+ int line; ++ struct dw8250_port_data data; + struct lpss8250_board *board; -+ struct uart_8250_dma dma; + struct dw_dma_chip dma_chip; + struct dw_dma_slave dma_param; + u8 dma_maxburst; @@ -72427,6 +77042,25 @@ index 0000000..bcb9d76 + struct hsu_dma_chip dma_chip; +}; + ++enum mctrl_gpio_idx { ++ UART_GPIO_CTS = 0, ++ UART_GPIO_DSR = 1, ++ UART_GPIO_DCD = 2, ++ UART_GPIO_RNG = 3, ++ UART_GPIO_RI = 3, ++ UART_GPIO_RTS = 4, ++ UART_GPIO_DTR = 5, ++ UART_GPIO_MAX = 6, ++}; ++ ++struct mctrl_gpios { ++ struct uart_port *port; ++ struct gpio_desc *gpio[6]; ++ int irq[6]; ++ unsigned int mctrl_prev; ++ bool mctrl_on; ++}; ++ +struct memdev { + const char *name; + umode_t mode; @@ -72535,6 +77169,12 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_prandom_u32 { ++ struct trace_entry ent; ++ unsigned int ret; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_add_device_randomness {}; + +struct trace_event_data_offsets_random__mix_pool_bytes {}; @@ -72559,11 +77199,44 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_urandom_read {}; + ++struct trace_event_data_offsets_prandom_u32 {}; ++ ++typedef void (*btf_trace_add_device_randomness)(void *, int, long unsigned int); ++ ++typedef void (*btf_trace_mix_pool_bytes)(void *, const char *, int, long unsigned int); ++ ++typedef void (*btf_trace_mix_pool_bytes_nolock)(void *, const char *, int, long unsigned int); ++ ++typedef void (*btf_trace_credit_entropy_bits)(void *, const char *, int, int, long unsigned int); ++ ++typedef void (*btf_trace_push_to_pool)(void *, const char *, int, int); ++ ++typedef void (*btf_trace_debit_entropy)(void *, const char *, int); ++ ++typedef void (*btf_trace_add_input_randomness)(void *, int); ++ ++typedef void (*btf_trace_add_disk_randomness)(void *, dev_t, int); ++ ++typedef void (*btf_trace_xfer_secondary_pool)(void *, const char *, int, int, int, int); ++ ++typedef void (*btf_trace_get_random_bytes)(void *, int, long unsigned int); ++ ++typedef void (*btf_trace_get_random_bytes_arch)(void *, int, long unsigned int); ++ ++typedef void (*btf_trace_extract_entropy)(void *, const char *, int, int, long unsigned int); ++ ++typedef void (*btf_trace_extract_entropy_user)(void *, const char *, int, int, long unsigned int); ++ ++typedef void (*btf_trace_random_read)(void *, int, int, int, int); ++ ++typedef void (*btf_trace_urandom_read)(void *, int, int, int); ++ ++typedef void (*btf_trace_prandom_u32)(void *, unsigned int); ++ +struct poolinfo { + int poolbitshift; + int poolwords; + int poolbytes; -+ int poolbits; + int poolfracbits; + int tap1; + int tap2; @@ -72582,9 +77255,6 @@ index 0000000..bcb9d76 + const struct poolinfo *poolinfo; + __u32 *pool; + const char *name; -+ struct entropy_store *pull; -+ struct work_struct push_work; -+ long unsigned int last_pulled; + spinlock_t lock; + short unsigned int add_ptr; + short unsigned int input_rotate; @@ -72617,7 +77287,8 @@ index 0000000..bcb9d76 +}; + +struct raw_device_data { -+ struct block_device *binding; ++ dev_t binding; ++ struct block_device *bdev; + int inuse; +}; + @@ -72634,9 +77305,35 @@ index 0000000..bcb9d76 + short unsigned int hi_timer; +}; + ++struct hpet_timer { ++ u64 hpet_config; ++ union { ++ u64 _hpet_hc64; ++ u32 _hpet_hc32; ++ long unsigned int _hpet_compare; ++ } _u1; ++ u64 hpet_fsb[2]; ++}; ++ ++struct hpet { ++ u64 hpet_cap; ++ u64 res0; ++ u64 hpet_config; ++ u64 res1; ++ u64 hpet_isr; ++ u64 res2[25]; ++ union { ++ u64 _hpet_mc64; ++ u32 _hpet_mc32; ++ long unsigned int _hpet_mc; ++ } _u0; ++ u64 res3; ++ struct hpet_timer hpet_timers[1]; ++}; ++ +struct hpets; + -+struct hpet_dev___3 { ++struct hpet_dev { + struct hpets *hd_hpets; + struct hpet *hd_hpet; + struct hpet_timer *hd_timer; @@ -72659,7 +77356,7 @@ index 0000000..bcb9d76 + long unsigned int hp_delta; + unsigned int hp_ntimer; + unsigned int hp_which; -+ struct hpet_dev___3 hp_dev[1]; ++ struct hpet_dev hp_dev[0]; +}; + +struct compat_hpet_info { @@ -72669,18 +77366,14 @@ index 0000000..bcb9d76 + short unsigned int hi_timer; +}; + -+struct hwrng { -+ const char *name; -+ int (*init)(struct hwrng *); -+ void (*cleanup)(struct hwrng *); -+ int (*data_present)(struct hwrng *, int); -+ int (*data_read)(struct hwrng *, u32 *); -+ int (*read)(struct hwrng *, void *, size_t, bool); -+ long unsigned int priv; -+ short unsigned int quality; -+ struct list_head list; -+ struct kref ref; -+ struct completion cleanup_done; ++struct nvram_ops { ++ ssize_t (*get_size)(); ++ unsigned char (*read_byte)(int); ++ void (*write_byte)(unsigned char, int); ++ ssize_t (*read)(char *, size_t, loff_t *); ++ ssize_t (*write)(char *, size_t, loff_t *); ++ long int (*initialize)(); ++ long int (*set_checksum)(); +}; + +struct virtrng_info { @@ -72695,107 +77388,36 @@ index 0000000..bcb9d76 + bool hwrng_removed; +}; + -+struct tpm2_digest { -+ u16 alg_id; -+ u8 digest[64]; ++enum tpm2_startup_types { ++ TPM2_SU_CLEAR = 0, ++ TPM2_SU_STATE = 1, +}; + -+struct tpm_chip___2; -+ -+struct tpm_class_ops { -+ unsigned int flags; -+ const u8 req_complete_mask; -+ const u8 req_complete_val; -+ bool (*req_canceled)(struct tpm_chip___2 *, u8); -+ int (*recv)(struct tpm_chip___2 *, u8 *, size_t); -+ int (*send)(struct tpm_chip___2 *, u8 *, size_t); -+ void (*cancel)(struct tpm_chip___2 *); -+ u8 (*status)(struct tpm_chip___2 *); -+ bool (*update_timeouts)(struct tpm_chip___2 *, long unsigned int *); -+ int (*go_idle)(struct tpm_chip___2 *); -+ int (*cmd_ready)(struct tpm_chip___2 *); -+ int (*request_locality)(struct tpm_chip___2 *, int); -+ int (*relinquish_locality)(struct tpm_chip___2 *, int); -+ void (*clk_enable)(struct tpm_chip___2 *, bool); ++enum tpm_chip_flags { ++ TPM_CHIP_FLAG_TPM2 = 2, ++ TPM_CHIP_FLAG_IRQ = 4, ++ TPM_CHIP_FLAG_VIRTUAL = 8, ++ TPM_CHIP_FLAG_HAVE_TIMEOUTS = 16, ++ TPM_CHIP_FLAG_ALWAYS_POWERED = 32, ++ TPM_CHIP_FLAG_FIRMWARE_POWER_MANAGED = 64, +}; + -+struct tpm_bios_log { -+ void *bios_event_log; -+ void *bios_event_log_end; ++struct file_priv { ++ struct tpm_chip *chip; ++ struct tpm_space *space; ++ struct mutex buffer_mutex; ++ struct timer_list user_read_timer; ++ struct work_struct timeout_work; ++ struct work_struct async_work; ++ wait_queue_head_t async_wait; ++ ssize_t response_length; ++ bool response_read; ++ bool command_enqueued; ++ u8 data_buffer[4096]; +}; + -+struct tpm_chip_seqops { -+ struct tpm_chip___2 *chip; -+ const struct seq_operations *seqops; -+}; -+ -+struct tpm_space { -+ u32 context_tbl[3]; -+ u8 *context_buf; -+ u32 session_tbl[3]; -+ u8 *session_buf; -+ u32 buf_size; -+}; -+ -+struct tpm_chip___2 { -+ struct device dev; -+ struct device devs; -+ struct cdev cdev; -+ struct cdev cdevs; -+ struct rw_semaphore ops_sem; -+ const struct tpm_class_ops *ops; -+ struct tpm_bios_log log; -+ struct tpm_chip_seqops bin_log_seqops; -+ struct tpm_chip_seqops ascii_log_seqops; -+ unsigned int flags; -+ int dev_num; -+ long unsigned int is_open; -+ char hwrng_name[64]; -+ struct hwrng hwrng; -+ struct mutex tpm_mutex; -+ long unsigned int timeout_a; -+ long unsigned int timeout_b; -+ long unsigned int timeout_c; -+ long unsigned int timeout_d; -+ bool timeout_adjusted; -+ long unsigned int duration[4]; -+ bool duration_adjusted; -+ struct dentry *bios_dir[3]; -+ const struct attribute_group *groups[3]; -+ unsigned int groups_cnt; -+ u16 active_banks[7]; -+ acpi_handle acpi_dev_handle; -+ char ppi_version[4]; -+ struct tpm_space work_space; -+ u32 nr_commands; -+ u32 *cc_attrs_tbl; -+ int locality; -+}; -+ -+enum tpm_const { -+ TPM_MINOR = 224, -+ TPM_BUFSIZE = 4096, -+ TPM_NUM_DEVICES = 65536, -+ TPM_RETRY = 50, -+ TPM_NUM_EVENT_LOG_FILES = 3, -+}; -+ -+enum tpm_timeout { -+ TPM_TIMEOUT = 5, -+ TPM_TIMEOUT_RETRY = 100, -+ TPM_TIMEOUT_RANGE_US = 300, -+ TPM_TIMEOUT_POLL = 1, -+ TPM_TIMEOUT_USECS_MIN = 100, -+ TPM_TIMEOUT_USECS_MAX = 500, -+}; -+ -+enum tpm_duration { -+ TPM_SHORT = 0, -+ TPM_MEDIUM = 1, -+ TPM_LONG = 2, -+ TPM_LONG_LONG = 3, -+ TPM_UNDEFINED = 4, -+ TPM_NUM_DURATIONS = 4, ++enum TPM_OPS_FLAGS { ++ TPM_OPS_AUTO_STARTUP = 1, +}; + +enum tpm2_timeouts { @@ -72810,84 +77432,15 @@ index 0000000..bcb9d76 + TPM2_DURATION_DEFAULT = 120000, +}; + -+enum tpm2_structures { -+ TPM2_ST_NO_SESSIONS = 32769, -+ TPM2_ST_SESSIONS = 32770, ++enum tpm_timeout { ++ TPM_TIMEOUT = 5, ++ TPM_TIMEOUT_RETRY = 100, ++ TPM_TIMEOUT_RANGE_US = 300, ++ TPM_TIMEOUT_POLL = 1, ++ TPM_TIMEOUT_USECS_MIN = 100, ++ TPM_TIMEOUT_USECS_MAX = 500, +}; + -+enum tpm2_return_codes { -+ TPM2_RC_SUCCESS = 0, -+ TPM2_RC_HASH = 131, -+ TPM2_RC_HANDLE = 139, -+ TPM2_RC_INITIALIZE = 256, -+ TPM2_RC_FAILURE = 257, -+ TPM2_RC_DISABLED = 288, -+ TPM2_RC_COMMAND_CODE = 323, -+ TPM2_RC_TESTING = 2314, -+ TPM2_RC_REFERENCE_H0 = 2320, -+ TPM2_RC_RETRY = 2338, -+}; -+ -+enum tpm2_algorithms { -+ TPM2_ALG_ERROR = 0, -+ TPM2_ALG_SHA1 = 4, -+ TPM2_ALG_KEYEDHASH = 8, -+ TPM2_ALG_SHA256 = 11, -+ TPM2_ALG_SHA384 = 12, -+ TPM2_ALG_SHA512 = 13, -+ TPM2_ALG_NULL = 16, -+ TPM2_ALG_SM3_256 = 18, -+}; -+ -+enum tpm2_command_codes { -+ TPM2_CC_FIRST = 287, -+ TPM2_CC_CREATE_PRIMARY = 305, -+ TPM2_CC_SELF_TEST = 323, -+ TPM2_CC_STARTUP = 324, -+ TPM2_CC_SHUTDOWN = 325, -+ TPM2_CC_CREATE = 339, -+ TPM2_CC_LOAD = 343, -+ TPM2_CC_UNSEAL = 350, -+ TPM2_CC_CONTEXT_LOAD = 353, -+ TPM2_CC_CONTEXT_SAVE = 354, -+ TPM2_CC_FLUSH_CONTEXT = 357, -+ TPM2_CC_GET_CAPABILITY = 378, -+ TPM2_CC_GET_RANDOM = 379, -+ TPM2_CC_PCR_READ = 382, -+ TPM2_CC_PCR_EXTEND = 386, -+ TPM2_CC_LAST = 399, -+}; -+ -+enum tpm2_startup_types { -+ TPM2_SU_CLEAR = 0, -+ TPM2_SU_STATE = 1, -+}; -+ -+enum tpm2_cc_attrs { -+ TPM2_CC_ATTR_CHANDLES = 25, -+ TPM2_CC_ATTR_RHANDLE = 28, -+}; -+ -+enum tpm_chip_flags { -+ TPM_CHIP_FLAG_TPM2 = 2, -+ TPM_CHIP_FLAG_IRQ = 4, -+ TPM_CHIP_FLAG_VIRTUAL = 8, -+ TPM_CHIP_FLAG_HAVE_TIMEOUTS = 16, -+ TPM_CHIP_FLAG_ALWAYS_POWERED = 32, -+}; -+ -+struct tpm_input_header { -+ __be16 tag; -+ __be32 length; -+ __be32 ordinal; -+} __attribute__((packed)); -+ -+struct tpm_output_header { -+ __be16 tag; -+ __be32 length; -+ __be32 return_code; -+} __attribute__((packed)); -+ +struct stclear_flags_t { + __be16 tag; + u8 deactivated; @@ -72897,19 +77450,16 @@ index 0000000..bcb9d76 + u8 bGlobalLock; +} __attribute__((packed)); + -+struct tpm_version_t { -+ u8 Major; -+ u8 Minor; -+ u8 revMajor; -+ u8 revMinor; ++struct tpm1_version { ++ u8 major; ++ u8 minor; ++ u8 rev_major; ++ u8 rev_minor; +}; + -+struct tpm_version_1_2_t { ++struct tpm1_version2 { + __be16 tag; -+ u8 Major; -+ u8 Minor; -+ u8 revMajor; -+ u8 revMinor; ++ struct tpm1_version version; +}; + +struct timeout_t { @@ -72954,8 +77504,8 @@ index 0000000..bcb9d76 + struct stclear_flags_t stclear_flags; + __u8 owned; + __be32 num_pcrs; -+ struct tpm_version_t tpm_version; -+ struct tpm_version_1_2_t tpm_version_1_2; ++ struct tpm1_version version1; ++ struct tpm1_version2 version2; + __be32 manufacturer_id; + struct timeout_t timeout; + struct duration_t duration; @@ -72978,92 +77528,16 @@ index 0000000..bcb9d76 + TPM_CAP_PROP_TIS_DURATION = 288, +}; + -+typedef union { -+ struct tpm_input_header in; -+ struct tpm_output_header out; -+} tpm_cmd_header; -+ -+struct tpm_pcrread_out { -+ u8 pcr_result[20]; -+}; -+ -+struct tpm_pcrread_in { -+ __be32 pcr_idx; -+}; -+ -+struct tpm_getrandom_out { ++struct tpm1_get_random_out { + __be32 rng_data_len; + u8 rng_data[128]; +}; + -+struct tpm_getrandom_in { -+ __be32 num_bytes; -+}; -+ -+typedef union { -+ struct tpm_pcrread_in pcrread_in; -+ struct tpm_pcrread_out pcrread_out; -+ struct tpm_getrandom_in getrandom_in; -+ struct tpm_getrandom_out getrandom_out; -+} tpm_cmd_params; -+ -+struct tpm_cmd_t { -+ tpm_cmd_header header; -+ tpm_cmd_params params; -+} __attribute__((packed)); -+ -+enum tpm_buf_flags { -+ TPM_BUF_OVERFLOW = 1, -+}; -+ -+struct tpm_buf___2 { -+ struct page *data_page; -+ unsigned int flags; -+ u8 *data; -+}; -+ -+enum tpm_transmit_flags { -+ TPM_TRANSMIT_UNLOCKED = 1, -+ TPM_TRANSMIT_NESTED = 2, -+}; -+ -+struct trusted_key_payload___2; -+ -+struct trusted_key_options___2; -+ -+struct file_priv { -+ struct tpm_chip___2 *chip; -+ size_t data_pending; -+ struct mutex buffer_mutex; -+ struct timer_list user_read_timer; -+ struct work_struct work; -+ u8 data_buffer[4096]; -+}; -+ -+struct tpm_readpubek_out { -+ u8 algorithm[4]; -+ u8 encscheme[2]; -+ u8 sigscheme[2]; -+ __be32 paramsize; -+ u8 parameters[12]; -+ __be32 keysize; -+ u8 modulus[256]; -+ u8 checksum[20]; -+}; -+ -+enum TPM_OPS_FLAGS { -+ TPM_OPS_AUTO_STARTUP = 1, -+}; -+ +enum tpm2_const { + TPM2_PLATFORM_PCR = 24, + TPM2_PCR_SELECT_MIN = 3, +}; + -+enum tpm2_permanent_handles { -+ TPM2_RS_PW = 1073741833, -+}; -+ +enum tpm2_capabilities { + TPM2_CAP_HANDLES = 1, + TPM2_CAP_COMMANDS = 2, @@ -73075,17 +77549,9 @@ index 0000000..bcb9d76 + TPM_PT_TOTAL_COMMANDS = 297, +}; + -+enum tpm2_object_attributes { -+ TPM2_OA_USER_WITH_AUTH = 64, -+}; -+ -+enum tpm2_session_attributes { -+ TPM2_SA_CONTINUE_SESSION = 1, -+}; -+ -+struct tpm2_hash { -+ unsigned int crypto_id; -+ unsigned int tpm_id; ++enum tpm2_cc_attrs { ++ TPM2_CC_ATTR_CHANDLES = 25, ++ TPM2_CC_ATTR_RHANDLE = 28, +}; + +struct tpm2_pcr_read_out { @@ -73130,6 +77596,37 @@ index 0000000..bcb9d76 + struct tpm_space space; +}; + ++enum tpm2_handle_types { ++ TPM2_HT_HMAC_SESSION = 33554432, ++ TPM2_HT_POLICY_SESSION = 50331648, ++ TPM2_HT_TRANSIENT = 2147483648, ++}; ++ ++struct tpm2_context { ++ __be64 sequence; ++ __be32 saved_handle; ++ __be32 hierarchy; ++ __be16 blob_size; ++} __attribute__((packed)); ++ ++struct tpm2_cap_handles { ++ u8 more_data; ++ __be32 capability; ++ __be32 count; ++ __be32 handles[0]; ++} __attribute__((packed)); ++ ++struct tpm_readpubek_out { ++ u8 algorithm[4]; ++ u8 encscheme[2]; ++ u8 sigscheme[2]; ++ __be32 paramsize; ++ u8 parameters[12]; ++ __be32 keysize; ++ u8 modulus[256]; ++ u8 checksum[20]; ++}; ++ +struct tcpa_event { + u32 pcr_index; + u32 event_type; @@ -73186,7 +77683,7 @@ index 0000000..bcb9d76 + u16 digest_size; +}; + -+struct tcg_efi_specid_event { ++struct tcg_efi_specid_event_head { + u8 signature[16]; + u32 platform_class; + u8 spec_version_minor; @@ -73194,10 +77691,8 @@ index 0000000..bcb9d76 + u8 spec_errata; + u8 uintnsize; + u32 num_algs; -+ struct tcg_efi_specid_event_algs digest_sizes[3]; -+ u8 vendor_info_size; -+ u8 vendor_info[0]; -+} __attribute__((packed)); ++ struct tcg_efi_specid_event_algs digest_sizes[0]; ++}; + +struct tcg_pcr_event { + u32 pcr_idx; @@ -73212,33 +77707,26 @@ index 0000000..bcb9d76 + u8 event[0]; +}; + -+struct tcg_pcr_event2 { ++struct tcg_pcr_event2_head { + u32 pcr_idx; + u32 event_type; + u32 count; -+ struct tpm2_digest digests[3]; -+ struct tcg_event_field event; -+} __attribute__((packed)); -+ -+enum tpm2_handle_types { -+ TPM2_HT_HMAC_SESSION = 33554432, -+ TPM2_HT_POLICY_SESSION = 50331648, -+ TPM2_HT_TRANSIENT = -2147483648, ++ struct tpm_digest digests[0]; +}; + -+struct tpm2_context { -+ __be64 sequence; -+ __be32 saved_handle; -+ __be32 hierarchy; -+ __be16 blob_size; ++struct acpi_table_tpm2 { ++ struct acpi_table_header header; ++ u16 platform_class; ++ u16 reserved; ++ u64 control_address; ++ u32 start_method; +} __attribute__((packed)); + -+struct tpm2_cap_handles { -+ u8 more_data; -+ __be32 capability; -+ __be32 count; -+ __be32 handles[0]; -+} __attribute__((packed)); ++struct acpi_tpm2_phy { ++ u8 start_method_specific[12]; ++ u32 log_area_minimum_length; ++ u64 log_area_start_address; ++}; + +enum bios_platform_class { + BIOS_CLIENT = 0, @@ -73267,10 +77755,17 @@ index 0000000..bcb9d76 + +struct linux_efi_tpm_eventlog { + u32 size; ++ u32 final_events_preboot_size; + u8 version; + u8 log[0]; +}; + ++struct efi_tcg2_final_events_table { ++ u64 version; ++ u64 nr_events; ++ u8 events[0]; ++}; ++ +enum tis_access { + TPM_ACCESS_VALID = 128, + TPM_ACCESS_ACTIVE_LOCALITY = 32, @@ -73284,10 +77779,11 @@ index 0000000..bcb9d76 + TPM_STS_GO = 32, + TPM_STS_DATA_AVAIL = 16, + TPM_STS_DATA_EXPECT = 8, ++ TPM_STS_READ_ZERO = 35, +}; + +enum tis_int_flags { -+ TPM_GLOBAL_INT_ENABLE = -2147483648, ++ TPM_GLOBAL_INT_ENABLE = 2147483648, + TPM_INTF_BURST_COUNT_STATIC = 256, + TPM_INTF_CMD_READY_INT = 128, + TPM_INTF_INT_EDGE_FALLING = 64, @@ -73303,10 +77799,13 @@ index 0000000..bcb9d76 + TIS_MEM_LEN = 20480, + TIS_SHORT_TIMEOUT = 750, + TIS_LONG_TIMEOUT = 2000, ++ TIS_TIMEOUT_MIN_ATML = 14700, ++ TIS_TIMEOUT_MAX_ATML = 15000, +}; + +enum tpm_tis_flags { + TPM_TIS_ITPM_WORKAROUND = 1, ++ TPM_TIS_INVALID_STATUS = 2, +}; + +struct tpm_tis_phy_ops; @@ -73316,13 +77815,15 @@ index 0000000..bcb9d76 + int locality; + int irq; + bool irq_tested; -+ unsigned int flags; ++ long unsigned int flags; + void *ilb_base_addr; + u16 clkrun_enabled; + wait_queue_head_t int_queue; + wait_queue_head_t read_queue; + const struct tpm_tis_phy_ops *phy_ops; + short unsigned int rng_quality; ++ unsigned int timeout_min; ++ unsigned int timeout_max; +}; + +struct tpm_tis_phy_ops { @@ -73333,19 +77834,17 @@ index 0000000..bcb9d76 + int (*write32)(struct tpm_tis_data *, u32, u32); +}; + ++struct tis_vendor_durations_override { ++ u32 did_vid; ++ struct tpm1_version version; ++ long unsigned int durations[3]; ++}; ++ +struct tis_vendor_timeout_override { + u32 did_vid; + long unsigned int timeout_us[4]; +}; + -+struct acpi_table_tpm2 { -+ struct acpi_table_header header; -+ u16 platform_class; -+ u16 reserved; -+ u64 control_address; -+ u32 start_method; -+} __attribute__((packed)); -+ +struct tpm_info { + struct resource res; + int irq; @@ -73420,7 +77919,6 @@ index 0000000..bcb9d76 +struct crb_priv { + u32 sm; + const char *hid; -+ void *iobase; + struct crb_regs_head *regs_h; + struct crb_regs_tail *regs_t; + u8 *cmd; @@ -73437,397 +77935,6 @@ index 0000000..bcb9d76 + u32 smc_func_id; +}; + -+struct iommu_group { -+ struct kobject kobj; -+ struct kobject *devices_kobj; -+ struct list_head devices; -+ struct mutex mutex; -+ struct blocking_notifier_head notifier; -+ void *iommu_data; -+ void (*iommu_data_release)(void *); -+ char *name; -+ int id; -+ struct iommu_domain *default_domain; -+ struct iommu_domain *domain; -+ atomic_t domain_shared_ref; -+}; -+ -+struct iommu_fwspec { -+ const struct iommu_ops *ops; -+ struct fwnode_handle *iommu_fwnode; -+ void *iommu_priv; -+ u32 flags; -+ unsigned int num_ids; -+ unsigned int num_pasid_bits; -+ bool can_stall; -+ u32 ids[1]; -+}; -+ -+struct iopf_device_param; -+ -+struct iommu_fault_param; -+ -+struct iommu_param { -+ struct mutex lock; -+ struct iommu_fault_param *fault_param; -+ struct iommu_sva_param *sva_param; -+ struct iopf_device_param *iopf_param; -+}; -+ -+struct pasid_table_config { -+ __u32 version; -+ __u32 bytes; -+ __u64 base_ptr; -+ __u8 pasid_bits; -+}; -+ -+enum iommu_inv_granularity { -+ IOMMU_INV_GRANU_DOMAIN = 1, -+ IOMMU_INV_GRANU_DEVICE = 2, -+ IOMMU_INV_GRANU_DOMAIN_PAGE = 3, -+ IOMMU_INV_GRANU_ALL_PASID = 4, -+ IOMMU_INV_GRANU_PASID_SEL = 5, -+ IOMMU_INV_GRANU_NG_ALL_PASID = 6, -+ IOMMU_INV_GRANU_NG_PASID = 7, -+ IOMMU_INV_GRANU_PAGE_PASID = 8, -+ IOMMU_INV_NR_GRANU = 9, -+}; -+ -+enum iommu_inv_type { -+ IOMMU_INV_TYPE_DTLB = 0, -+ IOMMU_INV_TYPE_TLB = 1, -+ IOMMU_INV_TYPE_PASID = 2, -+ IOMMU_INV_TYPE_CONTEXT = 3, -+ IOMMU_INV_NR_TYPE = 4, -+}; -+ -+struct tlb_invalidate_hdr { -+ __u32 version; -+ enum iommu_inv_type type; -+}; -+ -+struct tlb_invalidate_info { -+ struct tlb_invalidate_hdr hdr; -+ enum iommu_inv_granularity granularity; -+ __u32 flags; -+ __u8 size; -+ __u32 pasid; -+ __u64 addr; -+}; -+ -+typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); -+ -+struct iommu_domain_geometry { -+ dma_addr_t aperture_start; -+ dma_addr_t aperture_end; -+ bool force_aperture; -+}; -+ -+struct iommu_domain { -+ unsigned int type; -+ const struct iommu_ops *ops; -+ long unsigned int pgsize_bitmap; -+ iommu_fault_handler_t handler; -+ void *handler_token; -+ struct iommu_domain_geometry geometry; -+ void *iova_cookie; -+ struct list_head mm_list; -+}; -+ -+struct iommu_fault_event; -+ -+typedef int (*iommu_dev_fault_handler_t)(struct iommu_fault_event *, void *); -+ -+enum iommu_fault_type { -+ IOMMU_FAULT_DMA_UNRECOV = 1, -+ IOMMU_FAULT_PAGE_REQ = 2, -+}; -+ -+enum iommu_fault_reason { -+ IOMMU_FAULT_REASON_UNKNOWN = 0, -+ IOMMU_FAULT_REASON_INTERNAL = 1, -+ IOMMU_FAULT_REASON_PASID_FETCH = 2, -+ IOMMU_FAULT_REASON_PASID_INVALID = 3, -+ IOMMU_FAULT_REASON_PGD_FETCH = 4, -+ IOMMU_FAULT_REASON_PTE_FETCH = 5, -+ IOMMU_FAULT_REASON_PERMISSION = 6, -+}; -+ -+struct iommu_fault_event { -+ struct list_head list; -+ enum iommu_fault_type type; -+ enum iommu_fault_reason reason; -+ u64 addr; -+ u32 pasid; -+ u32 page_req_group_id; -+ u32 last_req: 1; -+ u32 pasid_valid: 1; -+ u32 prot; -+ u64 device_private; -+ u64 iommu_private; -+ u64 expire; -+}; -+ -+typedef int (*iommu_mm_exit_handler_t)(struct device *, int, void *); -+ -+struct io_mm { -+ int pasid; -+ long unsigned int flags; -+ struct list_head devices; -+ struct kref kref; -+ struct mmu_notifier notifier; -+ struct mm_struct *mm; -+ void (*release)(struct io_mm *); -+ struct callback_head rcu; -+}; -+ -+enum iommu_resv_type { -+ IOMMU_RESV_DIRECT = 0, -+ IOMMU_RESV_RESERVED = 1, -+ IOMMU_RESV_MSI = 2, -+ IOMMU_RESV_SW_MSI = 3, -+}; -+ -+struct iommu_resv_region { -+ struct list_head list; -+ phys_addr_t start; -+ size_t length; -+ int prot; -+ enum iommu_resv_type type; -+}; -+ -+enum page_response_code { -+ IOMMU_PAGE_RESP_SUCCESS = 0, -+ IOMMU_PAGE_RESP_INVALID = 1, -+ IOMMU_PAGE_RESP_FAILURE = 2, -+}; -+ -+struct page_response_msg { -+ u64 addr; -+ u32 pasid; -+ enum page_response_code resp_code; -+ u32 pasid_present: 1; -+ u32 page_req_group_id; -+ u64 private_data; -+}; -+ -+struct iommu_sva_param { -+ long unsigned int features; -+ unsigned int min_pasid; -+ unsigned int max_pasid; -+ struct list_head mm_list; -+ iommu_mm_exit_handler_t mm_exit; -+}; -+ -+struct iommu_device { -+ struct list_head list; -+ const struct iommu_ops *ops; -+ struct fwnode_handle *fwnode; -+ struct device *dev; -+}; -+ -+struct iommu_fault_param { -+ iommu_dev_fault_handler_t handler; -+ struct list_head faults; -+ struct timer_list timer; -+ struct mutex lock; -+ void *data; -+}; -+ -+struct iommu_callback_data { -+ const struct iommu_ops *ops; -+}; -+ -+struct group_device { -+ struct list_head list; -+ struct device *dev; -+ char *name; -+}; -+ -+struct iommu_group_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct iommu_group *, char *); -+ ssize_t (*store)(struct iommu_group *, const char *, size_t); -+}; -+ -+struct group_for_pci_data { -+ struct pci_dev *pdev; -+ struct iommu_group *group; -+}; -+ -+struct trace_event_raw_iommu_group_event { -+ struct trace_entry ent; -+ int gid; -+ u32 __data_loc_device; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_iommu_device_event { -+ struct trace_entry ent; -+ u32 __data_loc_device; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_map { -+ struct trace_entry ent; -+ u64 iova; -+ u64 paddr; -+ size_t size; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_unmap { -+ struct trace_entry ent; -+ u64 iova; -+ size_t size; -+ size_t unmapped_size; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_iommu_error { -+ struct trace_entry ent; -+ u32 __data_loc_device; -+ u32 __data_loc_driver; -+ u64 iova; -+ int flags; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dev_fault { -+ struct trace_entry ent; -+ u32 __data_loc_device; -+ int type; -+ int reason; -+ u64 addr; -+ u32 pasid; -+ u32 pgid; -+ u32 last_req; -+ u32 prot; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dev_page_response { -+ struct trace_entry ent; -+ u32 __data_loc_device; -+ int code; -+ u64 addr; -+ u32 pasid; -+ u32 pgid; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_sva_invalidate { -+ struct trace_entry ent; -+ u32 __data_loc_device; -+ int type; -+ u32 granu; -+ u32 flags; -+ u8 size; -+ u32 pasid; -+ u64 addr; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_iommu_group_event { -+ u32 device; -+}; -+ -+struct trace_event_data_offsets_iommu_device_event { -+ u32 device; -+}; -+ -+struct trace_event_data_offsets_map {}; -+ -+struct trace_event_data_offsets_unmap {}; -+ -+struct trace_event_data_offsets_iommu_error { -+ u32 device; -+ u32 driver; -+}; -+ -+struct trace_event_data_offsets_dev_fault { -+ u32 device; -+}; -+ -+struct trace_event_data_offsets_dev_page_response { -+ u32 device; -+}; -+ -+struct trace_event_data_offsets_sva_invalidate { -+ u32 device; -+}; -+ -+struct iova { -+ struct rb_node node; -+ long unsigned int pfn_hi; -+ long unsigned int pfn_lo; -+}; -+ -+struct iova_magazine; -+ -+struct iova_cpu_rcache; -+ -+struct iova_rcache { -+ spinlock_t lock; -+ long unsigned int depot_size; -+ struct iova_magazine *depot[32]; -+ struct iova_cpu_rcache *cpu_rcaches; -+}; -+ -+struct iova_magazine { -+ long unsigned int size; -+ long unsigned int pfns[128]; -+}; -+ -+struct iova_cpu_rcache { -+ spinlock_t lock; -+ struct iova_magazine *loaded; -+ struct iova_magazine *prev; -+}; -+ -+struct iova_domain; -+ -+typedef void (*iova_flush_cb)(struct iova_domain *); -+ -+typedef void (*iova_entry_dtor)(long unsigned int); -+ -+struct iova_fq; -+ -+struct iova_domain { -+ spinlock_t iova_rbtree_lock; -+ struct rb_root rbroot; -+ struct rb_node *cached_node; -+ struct rb_node *cached32_node; -+ long unsigned int granule; -+ long unsigned int start_pfn; -+ long unsigned int dma_32bit_pfn; -+ long unsigned int max32_alloc_size; -+ struct iova_fq *fq; -+ atomic64_t fq_flush_start_cnt; -+ atomic64_t fq_flush_finish_cnt; -+ struct iova anchor; -+ struct iova_rcache rcaches[6]; -+ iova_flush_cb flush_cb; -+ iova_entry_dtor entry_dtor; -+ struct timer_list fq_timer; -+ atomic_t fq_timer_on; -+ struct work_struct free_iova_work; -+}; -+ -+struct iova_fq_entry { -+ long unsigned int iova_pfn; -+ long unsigned int pages; -+ long unsigned int data; -+ u64 counter; -+}; -+ -+struct iova_fq { -+ struct iova_fq_entry entries[256]; -+ unsigned int head; -+ unsigned int tail; -+ spinlock_t lock; -+}; -+ +struct vcpu_data; + +struct amd_iommu_pi_data { @@ -73864,25 +77971,26 @@ index 0000000..bcb9d76 +}; + +struct protection_domain { -+ struct list_head list; + struct list_head dev_list; + struct iommu_domain domain; + spinlock_t lock; -+ struct mutex api_lock; + u16 id; -+ int mode; -+ u64 *pt_root; ++ atomic64_t pt_root; + int glx; + u64 *gcr3_tbl; + long unsigned int flags; -+ bool updated; + unsigned int dev_cnt; + unsigned int dev_iommu[32]; +}; + ++struct domain_pgtable { ++ int mode; ++ u64 *root; ++}; ++ +struct amd_irte_ops; + -+struct amd_iommu___2 { ++struct amd_iommu { + struct list_head list; + int index; + raw_spinlock_t lock; @@ -73920,7 +78028,9 @@ index 0000000..bcb9d76 + struct irq_domain *msi_domain; + struct amd_irte_ops *irte_ops; + u32 flags; -+ volatile u64 cmd_sem; ++ volatile u64 *cmd_sem; ++ u64 cmd_sem_val; ++ struct irq_affinity_notify intcapxt_notify; +}; + +struct amd_irte_ops { @@ -73952,13 +78062,13 @@ index 0000000..bcb9d76 +}; + +struct iommu_dev_data { ++ spinlock_t lock; + struct list_head list; + struct llist_node dev_data_list; + struct protection_domain *domain; ++ struct pci_dev *pdev; + u16 devid; -+ u16 alias; + bool iommu_v2; -+ bool passthrough; + struct { + bool enabled; + int qdep; @@ -74055,6 +78165,10 @@ index 0000000..bcb9d76 + struct msi_msg msi_entry; + void *entry; + void *ref; ++ struct irq_cfg *cfg; ++ int ga_vector; ++ int ga_root_ptr; ++ int ga_tag; +}; + +struct irq_remap_ops { @@ -74064,7 +78178,6 @@ index 0000000..bcb9d76 + void (*disable)(); + int (*reenable)(int); + int (*enable_faulting)(); -+ struct irq_domain * (*get_ir_irq_domain)(struct irq_alloc_info *); + struct irq_domain * (*get_irq_domain)(struct irq_alloc_info *); +}; + @@ -74072,11 +78185,6 @@ index 0000000..bcb9d76 + u32 data[4]; +}; + -+struct dma_ops_domain { -+ struct protection_domain domain; -+ struct iova_domain iovad; -+}; -+ +enum irq_remap_cap { + IRQ_POSTING_CAP = 0, +}; @@ -74241,6 +78349,7 @@ index 0000000..bcb9d76 + u16 segment; + u8 ignored: 1; + u8 include_all: 1; ++ u8 gfx_dedicated: 1; + struct intel_iommu *iommu; +}; + @@ -74263,6 +78372,7 @@ index 0000000..bcb9d76 + u64 reg_size; + u64 cap; + u64 ecap; ++ u64 vccap; + u32 gcmd; + raw_spinlock_t register_lock; + int seq_id; @@ -74285,6 +78395,7 @@ index 0000000..bcb9d76 + struct iommu_device iommu; + int node; + u32 flags; ++ struct dmar_drhd_unit *drhd; +}; + +struct dmar_pci_path { @@ -74359,6 +78470,66 @@ index 0000000..bcb9d76 + }; +}; + ++struct iova { ++ struct rb_node node; ++ long unsigned int pfn_hi; ++ long unsigned int pfn_lo; ++}; ++ ++struct iova_magazine; ++ ++struct iova_cpu_rcache; ++ ++struct iova_rcache { ++ spinlock_t lock; ++ long unsigned int depot_size; ++ struct iova_magazine *depot[32]; ++ struct iova_cpu_rcache *cpu_rcaches; ++}; ++ ++struct iova_domain; ++ ++typedef void (*iova_flush_cb)(struct iova_domain *); ++ ++typedef void (*iova_entry_dtor)(long unsigned int); ++ ++struct iova_fq; ++ ++struct iova_domain { ++ spinlock_t iova_rbtree_lock; ++ struct rb_root rbroot; ++ struct rb_node *cached_node; ++ struct rb_node *cached32_node; ++ long unsigned int granule; ++ long unsigned int start_pfn; ++ long unsigned int dma_32bit_pfn; ++ long unsigned int max32_alloc_size; ++ struct iova_fq *fq; ++ atomic64_t fq_flush_start_cnt; ++ atomic64_t fq_flush_finish_cnt; ++ struct iova anchor; ++ struct iova_rcache rcaches[6]; ++ iova_flush_cb flush_cb; ++ iova_entry_dtor entry_dtor; ++ struct timer_list fq_timer; ++ atomic_t fq_timer_on; ++ struct work_struct free_iova_work; ++}; ++ ++struct iova_fq_entry { ++ long unsigned int iova_pfn; ++ long unsigned int pages; ++ long unsigned int data; ++ u64 counter; ++}; ++ ++struct iova_fq { ++ struct iova_fq_entry entries[256]; ++ unsigned int head; ++ unsigned int tail; ++ spinlock_t lock; ++}; ++ +enum { + QI_FREE = 0, + QI_IN_USE = 1, @@ -74367,13 +78538,15 @@ index 0000000..bcb9d76 +}; + +struct qi_desc { -+ u64 low; -+ u64 high; ++ u64 qw0; ++ u64 qw1; ++ u64 qw2; ++ u64 qw3; +}; + +struct q_inval { + raw_spinlock_t q_lock; -+ struct qi_desc *desc; ++ void *desc; + int *desc_status; + int free_head; + int free_tail; @@ -74385,6 +78558,11 @@ index 0000000..bcb9d76 + long unsigned int *bitmap; +}; + ++struct root_entry { ++ u64 lo; ++ u64 hi; ++}; ++ +struct dma_pte; + +struct dmar_domain { @@ -74393,6 +78571,7 @@ index 0000000..bcb9d76 + u16 iommu_did[128]; + bool has_iotlb_device; + struct list_head devices; ++ struct list_head subdevices; + struct iova_domain iovad; + struct dma_pte *pgd; + int gaw; @@ -74403,9 +78582,14 @@ index 0000000..bcb9d76 + int iommu_count; + int iommu_superpage; + u64 max_addr; ++ u32 default_pasid; + struct iommu_domain domain; +}; + ++struct dma_pte { ++ u64 val; ++}; ++ +typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *); + +struct dmar_res_callback { @@ -74421,6 +78605,8 @@ index 0000000..bcb9d76 + UNKNOWN = 2, +}; + ++typedef unsigned int ioasid_t; ++ +enum { + SR_DMAR_FECTL_REG = 0, + SR_DMAR_FEDATA_REG = 1, @@ -74429,21 +78615,27 @@ index 0000000..bcb9d76 + MAX_SR_DMAR_REGS = 4, +}; + -+struct dma_pte { -+ u64 val; -+}; -+ -+struct root_entry { ++struct context_entry { + u64 lo; + u64 hi; +}; + ++struct subdev_domain_info { ++ struct list_head link_phys; ++ struct list_head link_domain; ++ struct device *pdev; ++ struct dmar_domain *domain; ++ int users; ++}; ++ +struct pasid_table; + +struct device_domain_info { + struct list_head link; + struct list_head global; + struct list_head table; ++ struct list_head subdevices; ++ u32 segment; + u8 bus; + u8 devfn; + u16 pfsid; @@ -74453,6 +78645,7 @@ index 0000000..bcb9d76 + u8 pri_enabled: 1; + u8 ats_supported: 1; + u8 ats_enabled: 1; ++ u8 auxd_enabled: 1; + u8 ats_qdep; + struct device *dev; + struct intel_iommu *iommu; @@ -74463,15 +78656,10 @@ index 0000000..bcb9d76 +struct pasid_table { + void *table; + int order; -+ int max_pasid; ++ u32 max_pasid; + struct list_head dev; +}; + -+struct context_entry { -+ u64 lo; -+ u64 hi; -+}; -+ +struct dmar_rmrr_unit { + struct list_head list; + struct acpi_dmar_header *hdr; @@ -74492,10 +78680,15 @@ index 0000000..bcb9d76 +struct domain_context_mapping_data { + struct dmar_domain *domain; + struct intel_iommu *iommu; ++ struct pasid_table *table; ++}; ++ ++struct pasid_dir_entry { ++ u64 val; +}; + +struct pasid_entry { -+ u64 val; ++ u64 val[8]; +}; + +struct pasid_table_opaque { @@ -74505,6 +78698,60 @@ index 0000000..bcb9d76 + int devfn; +}; + ++struct trace_event_raw_dma_map { ++ struct trace_entry ent; ++ u32 __data_loc_dev_name; ++ dma_addr_t dev_addr; ++ phys_addr_t phys_addr; ++ size_t size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_dma_unmap { ++ struct trace_entry ent; ++ u32 __data_loc_dev_name; ++ dma_addr_t dev_addr; ++ size_t size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_dma_map_sg { ++ struct trace_entry ent; ++ u32 __data_loc_dev_name; ++ dma_addr_t dev_addr; ++ phys_addr_t phys_addr; ++ size_t size; ++ int index; ++ int total; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_dma_map { ++ u32 dev_name; ++}; ++ ++struct trace_event_data_offsets_dma_unmap { ++ u32 dev_name; ++}; ++ ++struct trace_event_data_offsets_dma_map_sg { ++ u32 dev_name; ++}; ++ ++typedef void (*btf_trace_map_single)(void *, struct device *, dma_addr_t, phys_addr_t, size_t); ++ ++typedef void (*btf_trace_bounce_map_single)(void *, struct device *, dma_addr_t, phys_addr_t, size_t); ++ ++typedef void (*btf_trace_unmap_single)(void *, struct device *, dma_addr_t, size_t); ++ ++typedef void (*btf_trace_unmap_sg)(void *, struct device *, dma_addr_t, size_t); ++ ++typedef void (*btf_trace_bounce_unmap_single)(void *, struct device *, dma_addr_t, size_t); ++ ++typedef void (*btf_trace_map_sg)(void *, struct device *, int, int, struct scatterlist *); ++ ++typedef void (*btf_trace_bounce_map_sg)(void *, struct device *, int, int, struct scatterlist *); ++ +enum irq_mode { + IRQ_REMAPPING = 0, + IRQ_POSTING = 1, @@ -74543,6 +78790,410 @@ index 0000000..bcb9d76 +struct set_msi_sid_data { + struct pci_dev *pdev; + u16 alias; ++ int count; ++ int busmatch_count; ++}; ++ ++struct iommu_group { ++ struct kobject kobj; ++ struct kobject *devices_kobj; ++ struct list_head devices; ++ struct mutex mutex; ++ struct blocking_notifier_head notifier; ++ void *iommu_data; ++ void (*iommu_data_release)(void *); ++ char *name; ++ int id; ++ struct iommu_domain *default_domain; ++ struct iommu_domain *domain; ++ struct list_head entry; ++}; ++ ++enum iommu_fault_type { ++ IOMMU_FAULT_DMA_UNRECOV = 1, ++ IOMMU_FAULT_PAGE_REQ = 2, ++}; ++ ++enum iommu_fault_reason { ++ IOMMU_FAULT_REASON_UNKNOWN = 0, ++ IOMMU_FAULT_REASON_PASID_FETCH = 1, ++ IOMMU_FAULT_REASON_BAD_PASID_ENTRY = 2, ++ IOMMU_FAULT_REASON_PASID_INVALID = 3, ++ IOMMU_FAULT_REASON_WALK_EABT = 4, ++ IOMMU_FAULT_REASON_PTE_FETCH = 5, ++ IOMMU_FAULT_REASON_PERMISSION = 6, ++ IOMMU_FAULT_REASON_ACCESS = 7, ++ IOMMU_FAULT_REASON_OOR_ADDRESS = 8, ++}; ++ ++enum iommu_inv_granularity { ++ IOMMU_INV_GRANU_DOMAIN = 0, ++ IOMMU_INV_GRANU_PASID = 1, ++ IOMMU_INV_GRANU_ADDR = 2, ++ IOMMU_INV_GRANU_NR = 3, ++}; ++ ++struct fsl_mc_obj_desc { ++ char type[16]; ++ int id; ++ u16 vendor; ++ u16 ver_major; ++ u16 ver_minor; ++ u8 irq_count; ++ u8 region_count; ++ u32 state; ++ char label[16]; ++ u16 flags; ++}; ++ ++struct fsl_mc_io; ++ ++struct fsl_mc_device_irq; ++ ++struct fsl_mc_resource; ++ ++struct fsl_mc_device { ++ struct device dev; ++ u64 dma_mask; ++ u16 flags; ++ u32 icid; ++ u16 mc_handle; ++ struct fsl_mc_io *mc_io; ++ struct fsl_mc_obj_desc obj_desc; ++ struct resource *regions; ++ struct fsl_mc_device_irq **irqs; ++ struct fsl_mc_resource *resource; ++ struct device_link *consumer_link; ++ char *driver_override; ++}; ++ ++enum fsl_mc_pool_type { ++ FSL_MC_POOL_DPMCP = 0, ++ FSL_MC_POOL_DPBP = 1, ++ FSL_MC_POOL_DPCON = 2, ++ FSL_MC_POOL_IRQ = 3, ++ FSL_MC_NUM_POOL_TYPES = 4, ++}; ++ ++struct fsl_mc_resource_pool; ++ ++struct fsl_mc_resource { ++ enum fsl_mc_pool_type type; ++ s32 id; ++ void *data; ++ struct fsl_mc_resource_pool *parent_pool; ++ struct list_head node; ++}; ++ ++struct fsl_mc_device_irq { ++ struct msi_desc *msi_desc; ++ struct fsl_mc_device *mc_dev; ++ u8 dev_irq_index; ++ struct fsl_mc_resource resource; ++}; ++ ++struct fsl_mc_io { ++ struct device *dev; ++ u16 flags; ++ u32 portal_size; ++ phys_addr_t portal_phys_addr; ++ void *portal_virt_addr; ++ struct fsl_mc_device *dpmcp_dev; ++ union { ++ struct mutex mutex; ++ raw_spinlock_t spinlock; ++ }; ++}; ++ ++struct group_device { ++ struct list_head list; ++ struct device *dev; ++ char *name; ++}; ++ ++struct iommu_group_attribute { ++ struct attribute attr; ++ ssize_t (*show)(struct iommu_group *, char *); ++ ssize_t (*store)(struct iommu_group *, const char *, size_t); ++}; ++ ++struct group_for_pci_data { ++ struct pci_dev *pdev; ++ struct iommu_group *group; ++}; ++ ++struct __group_domain_type { ++ struct device *dev; ++ unsigned int type; ++}; ++ ++struct iommu_sva_bind_group_data { ++ struct mm_struct *mm; ++ struct iommu_sva *handle; ++ void *drvdata; ++}; ++ ++struct trace_event_raw_iommu_group_event { ++ struct trace_entry ent; ++ int gid; ++ u32 __data_loc_device; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_iommu_device_event { ++ struct trace_entry ent; ++ u32 __data_loc_device; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_map { ++ struct trace_entry ent; ++ u64 iova; ++ u64 paddr; ++ size_t size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_unmap { ++ struct trace_entry ent; ++ u64 iova; ++ size_t size; ++ size_t unmapped_size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_switch_dirty_log { ++ struct trace_entry ent; ++ u64 iova; ++ size_t size; ++ bool enable; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_sync_dirty_log { ++ struct trace_entry ent; ++ u64 iova; ++ size_t size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_clear_dirty_log { ++ struct trace_entry ent; ++ u64 iova; ++ size_t size; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_iommu_error { ++ struct trace_entry ent; ++ u32 __data_loc_device; ++ u32 __data_loc_driver; ++ u64 iova; ++ int flags; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_dev_fault { ++ struct trace_entry ent; ++ u32 __data_loc_device; ++ int type; ++ int reason; ++ u64 addr; ++ u64 fetch_addr; ++ u32 pasid; ++ u32 grpid; ++ u32 flags; ++ u32 prot; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_dev_page_response { ++ struct trace_entry ent; ++ u32 __data_loc_device; ++ int code; ++ u32 pasid; ++ u32 grpid; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_iommu_group_event { ++ u32 device; ++}; ++ ++struct trace_event_data_offsets_iommu_device_event { ++ u32 device; ++}; ++ ++struct trace_event_data_offsets_map {}; ++ ++struct trace_event_data_offsets_unmap {}; ++ ++struct trace_event_data_offsets_switch_dirty_log {}; ++ ++struct trace_event_data_offsets_sync_dirty_log {}; ++ ++struct trace_event_data_offsets_clear_dirty_log {}; ++ ++struct trace_event_data_offsets_iommu_error { ++ u32 device; ++ u32 driver; ++}; ++ ++struct trace_event_data_offsets_dev_fault { ++ u32 device; ++}; ++ ++struct trace_event_data_offsets_dev_page_response { ++ u32 device; ++}; ++ ++typedef void (*btf_trace_add_device_to_group)(void *, int, struct device *); ++ ++typedef void (*btf_trace_remove_device_from_group)(void *, int, struct device *); ++ ++typedef void (*btf_trace_attach_device_to_domain)(void *, struct device *); ++ ++typedef void (*btf_trace_detach_device_from_domain)(void *, struct device *); ++ ++typedef void (*btf_trace_map)(void *, long unsigned int, phys_addr_t, size_t); ++ ++typedef void (*btf_trace_unmap)(void *, long unsigned int, size_t, size_t); ++ ++typedef void (*btf_trace_switch_dirty_log)(void *, long unsigned int, size_t, bool); ++ ++typedef void (*btf_trace_sync_dirty_log)(void *, long unsigned int, size_t); ++ ++typedef void (*btf_trace_clear_dirty_log)(void *, long unsigned int, size_t); ++ ++typedef void (*btf_trace_io_page_fault)(void *, struct device *, long unsigned int, int); ++ ++typedef void (*btf_trace_dev_fault)(void *, struct device *, struct iommu_fault *); ++ ++typedef void (*btf_trace_dev_page_response)(void *, struct device *, struct iommu_page_response *); ++ ++struct trace_event_raw_smmu_bond { ++ struct trace_entry ent; ++ u32 __data_loc_dev; ++ int pasid; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_smmu_mm_release { ++ struct trace_entry ent; ++ int pasid; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_smmu_mm_invalidate { ++ struct trace_entry ent; ++ int pasid; ++ long unsigned int start; ++ long unsigned int end; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_smmu_mn { ++ struct trace_entry ent; ++ int pasid; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_smmu_bond { ++ u32 dev; ++}; ++ ++struct trace_event_data_offsets_smmu_mm_release {}; ++ ++struct trace_event_data_offsets_smmu_mm_invalidate {}; ++ ++struct trace_event_data_offsets_smmu_mn {}; ++ ++typedef void (*btf_trace_smmu_bind_alloc)(void *, struct device *, unsigned int); ++ ++typedef void (*btf_trace_smmu_bind_get)(void *, struct device *, unsigned int); ++ ++typedef void (*btf_trace_smmu_unbind_put)(void *, struct device *, unsigned int); ++ ++typedef void (*btf_trace_smmu_unbind_free)(void *, struct device *, unsigned int); ++ ++typedef void (*btf_trace_smmu_mm_release)(void *, unsigned int); ++ ++typedef void (*btf_trace_smmu_mm_invalidate)(void *, unsigned int, long unsigned int, long unsigned int); ++ ++typedef void (*btf_trace_smmu_mn_alloc)(void *, unsigned int); ++ ++typedef void (*btf_trace_smmu_mn_free)(void *, unsigned int); ++ ++typedef void (*btf_trace_smmu_mn_get)(void *, unsigned int); ++ ++typedef void (*btf_trace_smmu_mn_put)(void *, unsigned int); ++ ++struct iommu_dma_msi_page { ++ struct list_head list; ++ dma_addr_t iova; ++ dma_addr_t gpa; ++ phys_addr_t phys; ++ size_t s1_granule; ++}; ++ ++enum iommu_dma_cookie_type { ++ IOMMU_DMA_IOVA_COOKIE = 0, ++ IOMMU_DMA_MSI_COOKIE = 1, ++ IOMMU_DMA_NESTED_MSI_COOKIE = 2, ++}; ++ ++struct iommu_dma_cookie { ++ enum iommu_dma_cookie_type type; ++ union { ++ struct iova_domain iovad; ++ dma_addr_t msi_iova; ++ }; ++ struct list_head msi_page_list; ++ spinlock_t msi_lock; ++ struct iommu_domain *fq_domain; ++}; ++ ++typedef ioasid_t (*ioasid_alloc_fn_t)(ioasid_t, ioasid_t, void *); ++ ++typedef void (*ioasid_free_fn_t)(ioasid_t, void *); ++ ++struct ioasid_set { ++ int dummy; ++}; ++ ++struct ioasid_allocator_ops { ++ ioasid_alloc_fn_t alloc; ++ ioasid_free_fn_t free; ++ struct list_head list; ++ void *pdata; ++}; ++ ++struct ioasid_data { ++ ioasid_t id; ++ struct ioasid_set *set; ++ void *private; ++ struct callback_head rcu; ++ refcount_t refs; ++}; ++ ++struct ioasid_allocator_data { ++ struct ioasid_allocator_ops *ops; ++ struct list_head list; ++ struct list_head slist; ++ long unsigned int flags; ++ struct xarray xa; ++ struct callback_head rcu; ++}; ++ ++struct iova_magazine { ++ long unsigned int size; ++ long unsigned int pfns[128]; ++}; ++ ++struct iova_cpu_rcache { ++ spinlock_t lock; ++ struct iova_magazine *loaded; ++ struct iova_magazine *prev; +}; + +struct mipi_dsi_msg { @@ -74593,6 +79244,8 @@ index 0000000..bcb9d76 + unsigned int lanes; + enum mipi_dsi_pixel_format format; + long unsigned int mode_flags; ++ long unsigned int hs_rate; ++ long unsigned int lp_rate; +}; + +struct mipi_dsi_device_info { @@ -74613,11 +79266,63 @@ index 0000000..bcb9d76 + void (*shutdown)(struct mipi_dsi_device *); +}; + ++struct drm_dsc_picture_parameter_set { ++ u8 dsc_version; ++ u8 pps_identifier; ++ u8 pps_reserved; ++ u8 pps_3; ++ u8 pps_4; ++ u8 bits_per_pixel_low; ++ __be16 pic_height; ++ __be16 pic_width; ++ __be16 slice_height; ++ __be16 slice_width; ++ __be16 chunk_size; ++ u8 initial_xmit_delay_high; ++ u8 initial_xmit_delay_low; ++ __be16 initial_dec_delay; ++ u8 pps20_reserved; ++ u8 initial_scale_value; ++ __be16 scale_increment_interval; ++ u8 scale_decrement_interval_high; ++ u8 scale_decrement_interval_low; ++ u8 pps26_reserved; ++ u8 first_line_bpg_offset; ++ __be16 nfl_bpg_offset; ++ __be16 slice_bpg_offset; ++ __be16 initial_offset; ++ __be16 final_offset; ++ u8 flatness_min_qp; ++ u8 flatness_max_qp; ++ __be16 rc_model_size; ++ u8 rc_edge_factor; ++ u8 rc_quant_incr_limit0; ++ u8 rc_quant_incr_limit1; ++ u8 rc_tgt_offset; ++ u8 rc_buf_thresh[14]; ++ __be16 rc_range_parameters[15]; ++ u8 native_422_420; ++ u8 second_line_bpg_offset; ++ __be16 nsl_bpg_offset; ++ __be16 second_line_offset_adj; ++ u32 pps_long_94_reserved; ++ u32 pps_long_98_reserved; ++ u32 pps_long_102_reserved; ++ u32 pps_long_106_reserved; ++ u32 pps_long_110_reserved; ++ u32 pps_long_114_reserved; ++ u32 pps_long_118_reserved; ++ u32 pps_long_122_reserved; ++ __be16 pps_short_126_reserved; ++} __attribute__((packed)); ++ +enum { + MIPI_DSI_V_SYNC_START = 1, + MIPI_DSI_V_SYNC_END = 17, + MIPI_DSI_H_SYNC_START = 33, + MIPI_DSI_H_SYNC_END = 49, ++ MIPI_DSI_COMPRESSION_MODE = 7, ++ MIPI_DSI_END_OF_TRANSMISSION = 8, + MIPI_DSI_COLOR_MODE_OFF = 2, + MIPI_DSI_COLOR_MODE_ON = 18, + MIPI_DSI_SHUTDOWN_PERIPHERAL = 34, @@ -74631,14 +79336,14 @@ index 0000000..bcb9d76 + MIPI_DSI_DCS_SHORT_WRITE = 5, + MIPI_DSI_DCS_SHORT_WRITE_PARAM = 21, + MIPI_DSI_DCS_READ = 6, -+ MIPI_DSI_DCS_COMPRESSION_MODE = 7, -+ MIPI_DSI_PPS_LONG_WRITE = 10, ++ MIPI_DSI_EXECUTE_QUEUE = 22, + MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE = 55, -+ MIPI_DSI_END_OF_TRANSMISSION = 8, + MIPI_DSI_NULL_PACKET = 9, + MIPI_DSI_BLANKING_PACKET = 25, + MIPI_DSI_GENERIC_LONG_WRITE = 41, + MIPI_DSI_DCS_LONG_WRITE = 57, ++ MIPI_DSI_PICTURE_PARAMETER_SET = 10, ++ MIPI_DSI_COMPRESSED_PIXEL_STREAM = 11, + MIPI_DSI_LOOSELY_PACKED_PIXEL_STREAM_YCBCR20 = 12, + MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR24 = 28, + MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR16 = 44, @@ -74654,7 +79359,9 @@ index 0000000..bcb9d76 +enum { + MIPI_DCS_NOP = 0, + MIPI_DCS_SOFT_RESET = 1, ++ MIPI_DCS_GET_COMPRESSION_MODE = 3, + MIPI_DCS_GET_DISPLAY_ID = 4, ++ MIPI_DCS_GET_ERROR_COUNT_ON_DSI = 5, + MIPI_DCS_GET_RED_CHANNEL = 6, + MIPI_DCS_GET_GREEN_CHANNEL = 7, + MIPI_DCS_GET_BLUE_CHANNEL = 8, @@ -74669,6 +79376,8 @@ index 0000000..bcb9d76 + MIPI_DCS_EXIT_SLEEP_MODE = 17, + MIPI_DCS_ENTER_PARTIAL_MODE = 18, + MIPI_DCS_ENTER_NORMAL_MODE = 19, ++ MIPI_DCS_GET_IMAGE_CHECKSUM_RGB = 20, ++ MIPI_DCS_GET_IMAGE_CHECKSUM_CT = 21, + MIPI_DCS_EXIT_INVERT_MODE = 32, + MIPI_DCS_ENTER_INVERT_MODE = 33, + MIPI_DCS_SET_GAMMA_CURVE = 38, @@ -74679,7 +79388,8 @@ index 0000000..bcb9d76 + MIPI_DCS_WRITE_MEMORY_START = 44, + MIPI_DCS_WRITE_LUT = 45, + MIPI_DCS_READ_MEMORY_START = 46, -+ MIPI_DCS_SET_PARTIAL_AREA = 48, ++ MIPI_DCS_SET_PARTIAL_ROWS = 48, ++ MIPI_DCS_SET_PARTIAL_COLUMNS = 49, + MIPI_DCS_SET_SCROLL_AREA = 51, + MIPI_DCS_SET_TEAR_OFF = 52, + MIPI_DCS_SET_TEAR_ON = 53, @@ -74689,7 +79399,10 @@ index 0000000..bcb9d76 + MIPI_DCS_ENTER_IDLE_MODE = 57, + MIPI_DCS_SET_PIXEL_FORMAT = 58, + MIPI_DCS_WRITE_MEMORY_CONTINUE = 60, ++ MIPI_DCS_SET_3D_CONTROL = 61, + MIPI_DCS_READ_MEMORY_CONTINUE = 62, ++ MIPI_DCS_GET_3D_CONTROL = 63, ++ MIPI_DCS_SET_VSYNC_TIMING = 64, + MIPI_DCS_SET_TEAR_SCANLINE = 68, + MIPI_DCS_GET_SCANLINE = 69, + MIPI_DCS_SET_DISPLAY_BRIGHTNESS = 81, @@ -74701,7 +79414,9 @@ index 0000000..bcb9d76 + MIPI_DCS_SET_CABC_MIN_BRIGHTNESS = 94, + MIPI_DCS_GET_CABC_MIN_BRIGHTNESS = 95, + MIPI_DCS_READ_DDB_START = 161, ++ MIPI_DCS_READ_PPS_START = 162, + MIPI_DCS_READ_DDB_CONTINUE = 168, ++ MIPI_DCS_READ_PPS_CONTINUE = 169, +}; + +struct drm_dmi_panel_orientation_data { @@ -74790,7 +79505,6 @@ index 0000000..bcb9d76 + bool delayed_switch_active; + enum vga_switcheroo_client_id delayed_client_id; + struct dentry *debugfs_root; -+ struct dentry *switch_file; + int registered_clients; + struct list_head clients; + const struct vga_switcheroo_handler *handler; @@ -74841,7 +79555,6 @@ index 0000000..bcb9d76 + u32 seq; + u32 groups; + struct sock *nls; -+ void (*input)(struct sk_buff *); + struct cn_queue_dev *cbdev; +}; + @@ -74928,6 +79641,11 @@ index 0000000..bcb9d76 + } event_data; +}; + ++struct local_event { ++ local_lock_t lock; ++ __u32 count; ++}; ++ +struct component_ops { + int (*bind)(struct device *, struct device *, void *); + void (*unbind)(struct device *, struct device *, void *); @@ -74943,6 +79661,7 @@ index 0000000..bcb9d76 +struct component_match_array { + void *data; + int (*compare)(struct device *, void *); ++ int (*compare_typed)(struct device *, int, void *); + void (*release)(struct device *, void *); + struct component *component; + bool duplicate; @@ -74955,6 +79674,7 @@ index 0000000..bcb9d76 + struct master *master; + bool bound; + const struct component_ops *ops; ++ int subcomponent; + struct device *dev; +}; + @@ -75010,34 +79730,15 @@ index 0000000..bcb9d76 + struct device_driver *driver; +}; + -+enum device_link_state { -+ DL_STATE_NONE = -1, -+ DL_STATE_DORMANT = 0, -+ DL_STATE_AVAILABLE = 1, -+ DL_STATE_CONSUMER_PROBE = 2, -+ DL_STATE_ACTIVE = 3, -+ DL_STATE_SUPPLIER_UNBIND = 4, -+}; -+ -+struct device_link { -+ struct device *supplier; -+ struct list_head s_node; -+ struct device *consumer; -+ struct list_head c_node; -+ enum device_link_state status; -+ u32 flags; -+ refcount_t rpm_active; -+ struct kref kref; -+ struct callback_head callback_head; -+ bool supplier_preactivated; -+}; -+ +struct device_private { + struct klist klist_children; + struct klist_node knode_parent; + struct klist_node knode_driver; + struct klist_node knode_bus; ++ struct klist_node knode_class; + struct list_head deferred_probe; ++ struct device_driver *async_driver; ++ char *deferred_probe_reason; + struct device *device; + u8 dead: 1; +}; @@ -75078,13 +79779,9 @@ index 0000000..bcb9d76 + struct kobject *kobj; +}; + -+struct early_platform_driver { -+ const char *class_str; -+ struct platform_driver *pdrv; -+ struct list_head list; -+ int requested_id; -+ char *buffer; -+ int bufsize; ++struct irq_affinity_devres { ++ unsigned int count; ++ unsigned int irq[0]; +}; + +struct platform_object { @@ -75109,7 +79806,7 @@ index 0000000..bcb9d76 + void *data; +}; + -+struct kobj_map___2 { ++struct kobj_map { + struct probe *probes[255]; + struct mutex *lock; +}; @@ -75177,6 +79874,8 @@ index 0000000..bcb9d76 + struct attribute_container container; +}; + ++typedef void * (*devcon_match_fn_t)(struct fwnode_handle *, const char *, void *); ++ +struct mii_bus; + +struct mdio_device { @@ -75188,29 +79887,26 @@ index 0000000..bcb9d76 + void (*device_remove)(struct mdio_device *); + int addr; + int flags; -+ struct gpio_desc___2 *reset; ++ struct gpio_desc *reset_gpio; ++ struct reset_control *reset_ctrl; + unsigned int reset_assert_delay; + unsigned int reset_deassert_delay; +}; + +struct phy_c45_device_ids { + u32 devices_in_package; -+ u32 device_ids[8]; ++ u32 mmds_present; ++ u32 device_ids[32]; +}; + +enum phy_state { + PHY_DOWN = 0, -+ PHY_STARTING = 1, -+ PHY_READY = 2, -+ PHY_PENDING = 3, -+ PHY_UP = 4, -+ PHY_AN = 5, -+ PHY_RUNNING = 6, -+ PHY_NOLINK = 7, -+ PHY_FORCING = 8, -+ PHY_CHANGELINK = 9, -+ PHY_HALTED = 10, -+ PHY_RESUMING = 11, ++ PHY_READY = 1, ++ PHY_HALTED = 2, ++ PHY_UP = 3, ++ PHY_RUNNING = 4, ++ PHY_NOLINK = 5, ++ PHY_CABLETEST = 6, +}; + +typedef enum { @@ -75229,15 +79925,18 @@ index 0000000..bcb9d76 + PHY_INTERFACE_MODE_RTBI = 12, + PHY_INTERFACE_MODE_SMII = 13, + PHY_INTERFACE_MODE_XGMII = 14, -+ PHY_INTERFACE_MODE_MOCA = 15, -+ PHY_INTERFACE_MODE_QSGMII = 16, -+ PHY_INTERFACE_MODE_TRGMII = 17, -+ PHY_INTERFACE_MODE_1000BASEX = 18, -+ PHY_INTERFACE_MODE_2500BASEX = 19, -+ PHY_INTERFACE_MODE_RXAUI = 20, -+ PHY_INTERFACE_MODE_XAUI = 21, -+ PHY_INTERFACE_MODE_10GKR = 22, -+ PHY_INTERFACE_MODE_MAX = 23, ++ PHY_INTERFACE_MODE_XLGMII = 15, ++ PHY_INTERFACE_MODE_MOCA = 16, ++ PHY_INTERFACE_MODE_QSGMII = 17, ++ PHY_INTERFACE_MODE_TRGMII = 18, ++ PHY_INTERFACE_MODE_1000BASEX = 19, ++ PHY_INTERFACE_MODE_2500BASEX = 20, ++ PHY_INTERFACE_MODE_RXAUI = 21, ++ PHY_INTERFACE_MODE_XAUI = 22, ++ PHY_INTERFACE_MODE_10GBASER = 23, ++ PHY_INTERFACE_MODE_USXGMII = 24, ++ PHY_INTERFACE_MODE_10GKR = 25, ++ PHY_INTERFACE_MODE_MAX = 26, +} phy_interface_t; + +struct phylink; @@ -75246,6 +79945,10 @@ index 0000000..bcb9d76 + +struct phy_led_trigger; + ++struct phy_package_shared; ++ ++struct mii_timestamper; ++ +struct phy_device { + struct mdio_device mdio; + struct phy_driver *drv; @@ -75254,40 +79957,70 @@ index 0000000..bcb9d76 + unsigned int is_c45: 1; + unsigned int is_internal: 1; + unsigned int is_pseudo_fixed_link: 1; ++ unsigned int is_gigabit_capable: 1; + unsigned int has_fixups: 1; + unsigned int suspended: 1; ++ unsigned int suspended_by_mdio_bus: 1; + unsigned int sysfs_links: 1; + unsigned int loopback_enabled: 1; ++ unsigned int downshifted_rate: 1; + unsigned int autoneg: 1; + unsigned int link: 1; ++ unsigned int autoneg_complete: 1; ++ unsigned int interrupts: 1; + enum phy_state state; + u32 dev_flags; + phy_interface_t interface; + int speed; + int duplex; ++ int port; + int pause; + int asym_pause; -+ u32 interrupts; -+ u32 supported; -+ u32 advertising; -+ u32 lp_advertising; ++ u8 master_slave_get; ++ u8 master_slave_set; ++ u8 master_slave_state; ++ long unsigned int supported[2]; ++ long unsigned int advertising[2]; ++ long unsigned int lp_advertising[2]; ++ long unsigned int adv_old[2]; + u32 eee_broken_modes; -+ int link_timeout; + struct phy_led_trigger *phy_led_triggers; + unsigned int phy_num_led_triggers; + struct phy_led_trigger *last_triggered; + struct phy_led_trigger *led_link_trigger; + int irq; + void *priv; -+ struct work_struct phy_queue; ++ struct phy_package_shared *shared; ++ struct sk_buff *skb; ++ void *ehdr; ++ struct nlattr *nest; + struct delayed_work state_queue; + struct mutex lock; ++ bool sfp_bus_attached; ++ struct sfp_bus *sfp_bus; + struct phylink *phylink; + struct net_device *attached_dev; ++ struct mii_timestamper *mii_ts; + u8 mdix; + u8 mdix_ctrl; -+ void (*phy_link_change)(struct phy_device *, bool, bool); ++ void (*phy_link_change)(struct phy_device *, bool); + void (*adjust_link)(struct net_device *); ++ const struct macsec_ops *macsec_ops; ++}; ++ ++struct phy_tdr_config { ++ u32 first; ++ u32 last; ++ u32 step; ++ s8 pair; ++}; ++ ++struct mdio_bus_stats { ++ u64_stats_t transfers; ++ u64_stats_t errors; ++ u64_stats_t writes; ++ u64_stats_t reads; ++ struct u64_stats_sync syncp; +}; + +struct mii_bus { @@ -75298,6 +80031,7 @@ index 0000000..bcb9d76 + int (*read)(struct mii_bus *, int, int); + int (*write)(struct mii_bus *, int, int, u16); + int (*reset)(struct mii_bus *); ++ struct mdio_bus_stats stats[32]; + struct mutex mdio_lock; + struct device *parent; + enum { @@ -75312,7 +80046,16 @@ index 0000000..bcb9d76 + u32 phy_ignore_ta_mask; + int irq[32]; + int reset_delay_us; -+ struct gpio_desc___2 *reset_gpiod; ++ int reset_post_delay_us; ++ struct gpio_desc *reset_gpiod; ++ enum { ++ MDIOBUS_NO_CAP = 0, ++ MDIOBUS_C22 = 1, ++ MDIOBUS_C45 = 2, ++ MDIOBUS_C22_C45 = 3, ++ } probe_capabilities; ++ struct mutex shared_lock; ++ struct phy_package_shared *shared[32]; +}; + +struct mdio_driver_common { @@ -75320,17 +80063,35 @@ index 0000000..bcb9d76 + int flags; +}; + ++struct mii_timestamper { ++ bool (*rxtstamp)(struct mii_timestamper *, struct sk_buff *, int); ++ void (*txtstamp)(struct mii_timestamper *, struct sk_buff *, int); ++ int (*hwtstamp)(struct mii_timestamper *, struct ifreq *); ++ void (*link_state)(struct mii_timestamper *, struct phy_device *); ++ int (*ts_info)(struct mii_timestamper *, struct ethtool_ts_info *); ++ struct device *device; ++}; ++ ++struct phy_package_shared { ++ int addr; ++ refcount_t refcnt; ++ long unsigned int flags; ++ size_t priv_size; ++ void *priv; ++}; ++ +struct phy_driver { + struct mdio_driver_common mdiodrv; + u32 phy_id; + char *name; + u32 phy_id_mask; -+ u32 features; ++ const long unsigned int * const features; + u32 flags; + const void *driver_data; + int (*soft_reset)(struct phy_device *); + int (*config_init)(struct phy_device *); + int (*probe)(struct phy_device *); ++ int (*get_features)(struct phy_device *); + int (*suspend)(struct phy_device *); + int (*resume)(struct phy_device *); + int (*config_aneg)(struct phy_device *); @@ -75339,12 +80100,9 @@ index 0000000..bcb9d76 + int (*ack_interrupt)(struct phy_device *); + int (*config_intr)(struct phy_device *); + int (*did_interrupt)(struct phy_device *); ++ irqreturn_t (*handle_interrupt)(struct phy_device *); + void (*remove)(struct phy_device *); + int (*match_phy_device)(struct phy_device *); -+ int (*ts_info)(struct phy_device *, struct ethtool_ts_info *); -+ int (*hwtstamp)(struct phy_device *, struct ifreq *); -+ bool (*rxtstamp)(struct phy_device *, struct sk_buff *, int); -+ void (*txtstamp)(struct phy_device *, struct sk_buff *, int); + int (*set_wol)(struct phy_device *, struct ethtool_wolinfo *); + void (*get_wol)(struct phy_device *, struct ethtool_wolinfo *); + void (*link_change_notify)(struct phy_device *); @@ -75354,24 +80112,43 @@ index 0000000..bcb9d76 + int (*write_page)(struct phy_device *, int); + int (*module_info)(struct phy_device *, struct ethtool_modinfo *); + int (*module_eeprom)(struct phy_device *, struct ethtool_eeprom *, u8 *); ++ int (*cable_test_start)(struct phy_device *); ++ int (*cable_test_tdr_start)(struct phy_device *, const struct phy_tdr_config *); ++ int (*cable_test_get_status)(struct phy_device *, bool *); + int (*get_sset_count)(struct phy_device *); + void (*get_strings)(struct phy_device *, u8 *); + void (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); + int (*get_tunable)(struct phy_device *, struct ethtool_tunable *, void *); + int (*set_tunable)(struct phy_device *, struct ethtool_tunable *, const void *); + int (*set_loopback)(struct phy_device *, bool); ++ int (*get_sqi)(struct phy_device *); ++ int (*get_sqi_max)(struct phy_device *); +}; + -+struct property_set { -+ struct device *dev; -+ struct fwnode_handle fwnode; ++struct software_node; ++ ++struct software_node_ref_args { ++ const struct software_node *node; ++ unsigned int nargs; ++ u64 args[8]; ++}; ++ ++struct software_node { ++ const char *name; ++ const struct software_node *parent; + const struct property_entry *properties; +}; + -+struct device_connection { -+ const char *endpoint[2]; -+ const char *id; -+ struct list_head list; ++struct swnode { ++ int id; ++ struct kobject kobj; ++ struct fwnode_handle fwnode; ++ const struct software_node *node; ++ struct ida child_ids; ++ struct list_head entry; ++ struct list_head children; ++ struct swnode *parent; ++ unsigned int allocated: 1; +}; + +struct req { @@ -75388,8 +80165,20 @@ index 0000000..bcb9d76 +typedef int (*pm_callback_t)(struct device *); + +enum gpd_status { -+ GPD_STATE_ACTIVE = 0, -+ GPD_STATE_POWER_OFF = 1, ++ GENPD_STATE_ON = 0, ++ GENPD_STATE_OFF = 1, ++}; ++ ++enum genpd_notication { ++ GENPD_NOTIFY_PRE_OFF = 0, ++ GENPD_NOTIFY_OFF = 1, ++ GENPD_NOTIFY_PRE_ON = 2, ++ GENPD_NOTIFY_ON = 3, ++}; ++ ++struct dev_power_governor { ++ bool (*power_down_ok)(struct dev_pm_domain *); ++ bool (*suspend_ok)(struct device *); +}; + +struct gpd_dev_ops { @@ -75401,10 +80190,17 @@ index 0000000..bcb9d76 + s64 power_off_latency_ns; + s64 power_on_latency_ns; + s64 residency_ns; ++ u64 usage; ++ u64 rejected; + struct fwnode_handle *fwnode; + ktime_t idle_time; ++ void *data; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + ++struct opp_table; ++ +struct dev_pm_opp; + +struct genpd_lock_ops; @@ -75413,8 +80209,8 @@ index 0000000..bcb9d76 + struct device dev; + struct dev_pm_domain domain; + struct list_head gpd_list_node; -+ struct list_head master_links; -+ struct list_head slave_links; ++ struct list_head parent_links; ++ struct list_head child_links; + struct list_head dev_list; + struct dev_power_governor *gov; + struct work_struct power_off_work; @@ -75427,21 +80223,25 @@ index 0000000..bcb9d76 + unsigned int suspended_count; + unsigned int prepared_count; + unsigned int performance_state; ++ cpumask_var_t cpus; + int (*power_off)(struct generic_pm_domain *); + int (*power_on)(struct generic_pm_domain *); ++ struct raw_notifier_head power_notifiers; ++ struct opp_table *opp_table; + unsigned int (*opp_to_performance_state)(struct generic_pm_domain *, struct dev_pm_opp *); + int (*set_performance_state)(struct generic_pm_domain *, unsigned int); + struct gpd_dev_ops dev_ops; + s64 max_off_time_ns; + bool max_off_time_changed; + bool cached_power_down_ok; ++ bool cached_power_down_state_idx; + int (*attach_dev)(struct generic_pm_domain *, struct device *); + void (*detach_dev)(struct generic_pm_domain *, struct device *); + unsigned int flags; + struct genpd_power_state *states; ++ void (*free_states)(struct genpd_power_state *, unsigned int); + unsigned int state_count; + unsigned int state_idx; -+ void *free; + ktime_t on_time; + ktime_t accounting_time; + const struct genpd_lock_ops *lock_ops; @@ -75452,6 +80252,10 @@ index 0000000..bcb9d76 + long unsigned int lock_flags; + }; + }; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct genpd_lock_ops { @@ -75462,10 +80266,12 @@ index 0000000..bcb9d76 +}; + +struct gpd_link { -+ struct generic_pm_domain *master; -+ struct list_head master_node; -+ struct generic_pm_domain *slave; -+ struct list_head slave_node; ++ struct generic_pm_domain *parent; ++ struct list_head parent_node; ++ struct generic_pm_domain *child; ++ struct list_head child_node; ++ unsigned int performance_state; ++ unsigned int prev_performance_state; +}; + +struct gpd_timing_data { @@ -75480,6 +80286,8 @@ index 0000000..bcb9d76 + struct pm_domain_data base; + struct gpd_timing_data td; + struct notifier_block nb; ++ struct notifier_block *power_nb; ++ int cpu; + unsigned int performance_state; + void *data; +}; @@ -75504,20 +80312,15 @@ index 0000000..bcb9d76 + enum pce_status status; +}; + -+struct firmware_fallback_config { -+ unsigned int force_sysfs_fallback; -+ unsigned int ignore_sysfs_fallback; -+ int old_timeout; -+ int loading_timeout; -+}; -+ +enum fw_opt { + FW_OPT_UEVENT = 1, + FW_OPT_NOWAIT = 2, + FW_OPT_USERHELPER = 4, + FW_OPT_NO_WARN = 8, + FW_OPT_NOCACHE = 16, -+ FW_OPT_NOFALLBACK = 32, ++ FW_OPT_NOFALLBACK_SYSFS = 32, ++ FW_OPT_FALLBACK_PLATFORM = 64, ++ FW_OPT_PARTIAL = 128, +}; + +enum fw_status { @@ -75542,12 +80345,8 @@ index 0000000..bcb9d76 + void *data; + size_t size; + size_t allocated_size; -+ bool is_paged_buf; -+ bool need_uevent; -+ struct page **pages; -+ int nr_pages; -+ int page_array_size; -+ struct list_head pending_list; ++ size_t offset; ++ u32 opt_flags; + const char *fw_name; +}; + @@ -75578,17 +80377,10 @@ index 0000000..bcb9d76 + struct device *device; + void *context; + void (*cont)(const struct firmware *, void *); -+ enum fw_opt opt_flags; ++ u32 opt_flags; +}; + -+struct fw_sysfs { -+ bool nowait; -+ struct device dev; -+ struct fw_priv *fw_priv; -+ struct firmware *fw; -+}; -+ -+typedef void (*node_registration_func_t)(struct node *); ++typedef void (*node_registration_func_t)(struct node___2 *); + +typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *); + @@ -75668,6 +80460,7 @@ index 0000000..bcb9d76 + bool (*readable_reg)(struct device *, unsigned int); + bool (*volatile_reg)(struct device *, unsigned int); + bool (*precious_reg)(struct device *, unsigned int); ++ bool (*writeable_noinc_reg)(struct device *, unsigned int); + bool (*readable_noinc_reg)(struct device *, unsigned int); + bool disable_locking; + regmap_lock lock; @@ -75681,6 +80474,7 @@ index 0000000..bcb9d76 + const struct regmap_access_table *rd_table; + const struct regmap_access_table *volatile_table; + const struct regmap_access_table *precious_table; ++ const struct regmap_access_table *wr_noinc_table; + const struct regmap_access_table *rd_noinc_table; + const struct reg_default *reg_defaults; + unsigned int num_reg_defaults; @@ -75690,7 +80484,8 @@ index 0000000..bcb9d76 + long unsigned int read_flag_mask; + long unsigned int write_flag_mask; + bool zero_flag_mask; -+ bool use_single_rw; ++ bool use_single_read; ++ bool use_single_write; + bool can_multi_write; + enum regmap_endian reg_format_endian; + enum regmap_endian val_format_endian; @@ -75699,6 +80494,7 @@ index 0000000..bcb9d76 + bool use_hwlock; + unsigned int hwlock_id; + unsigned int hwlock_mode; ++ bool can_sleep; +}; + +struct regmap_range_cfg { @@ -75720,11 +80516,11 @@ index 0000000..bcb9d76 + +typedef int (*regmap_hw_async_write)(void *, const void *, size_t, const void *, size_t, struct regmap_async *); + -+struct regmap___2; ++struct regmap; + +struct regmap_async { + struct list_head list; -+ struct regmap___2 *map; ++ struct regmap *map; + void *work_buf; +}; + @@ -75771,7 +80567,7 @@ index 0000000..bcb9d76 + size_t reg_bytes; + size_t pad_bytes; + size_t val_bytes; -+ void (*format_write)(struct regmap___2 *, unsigned int, unsigned int); ++ void (*format_write)(struct regmap *, unsigned int, unsigned int); + void (*format_reg)(void *, unsigned int, unsigned int); + void (*format_val)(void *, unsigned int, unsigned int); + unsigned int (*parse_val)(const void *); @@ -75782,7 +80578,7 @@ index 0000000..bcb9d76 + +struct regcache_ops; + -+struct regmap___2 { ++struct regmap { + union { + struct mutex mutex; + struct { @@ -75819,11 +80615,13 @@ index 0000000..bcb9d76 + bool (*readable_reg)(struct device *, unsigned int); + bool (*volatile_reg)(struct device *, unsigned int); + bool (*precious_reg)(struct device *, unsigned int); ++ bool (*writeable_noinc_reg)(struct device *, unsigned int); + bool (*readable_noinc_reg)(struct device *, unsigned int); + const struct regmap_access_table *wr_table; + const struct regmap_access_table *rd_table; + const struct regmap_access_table *volatile_table; + const struct regmap_access_table *precious_table; ++ const struct regmap_access_table *wr_noinc_table; + const struct regmap_access_table *rd_noinc_table; + int (*reg_read)(void *, unsigned int, unsigned int *); + int (*reg_write)(void *, unsigned int, unsigned int); @@ -75858,24 +80656,25 @@ index 0000000..bcb9d76 + struct rb_root range_tree; + void *selector_work_buf; + struct hwspinlock *hwlock; ++ bool can_sleep; +}; + +struct regcache_ops { + const char *name; + enum regcache_type type; -+ int (*init)(struct regmap___2 *); -+ int (*exit)(struct regmap___2 *); -+ void (*debugfs_init)(struct regmap___2 *); -+ int (*read)(struct regmap___2 *, unsigned int, unsigned int *); -+ int (*write)(struct regmap___2 *, unsigned int, unsigned int); -+ int (*sync)(struct regmap___2 *, unsigned int, unsigned int); -+ int (*drop)(struct regmap___2 *, unsigned int, unsigned int); ++ int (*init)(struct regmap *); ++ int (*exit)(struct regmap *); ++ void (*debugfs_init)(struct regmap *); ++ int (*read)(struct regmap *, unsigned int, unsigned int *); ++ int (*write)(struct regmap *, unsigned int, unsigned int); ++ int (*sync)(struct regmap *, unsigned int, unsigned int); ++ int (*drop)(struct regmap *, unsigned int, unsigned int); +}; + +struct regmap_range_node { + struct rb_node node; + const char *name; -+ struct regmap___2 *map; ++ struct regmap *map; + unsigned int range_min; + unsigned int range_max; + unsigned int selector_reg; @@ -75886,7 +80685,7 @@ index 0000000..bcb9d76 +}; + +struct regmap_field { -+ struct regmap___2 *regmap; ++ struct regmap *regmap; + unsigned int mask; + unsigned int shift; + unsigned int reg; @@ -75966,6 +80765,36 @@ index 0000000..bcb9d76 + u32 name; +}; + ++typedef void (*btf_trace_regmap_reg_write)(void *, struct regmap *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_regmap_reg_read)(void *, struct regmap *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_regmap_reg_read_cache)(void *, struct regmap *, unsigned int, unsigned int); ++ ++typedef void (*btf_trace_regmap_hw_read_start)(void *, struct regmap *, unsigned int, int); ++ ++typedef void (*btf_trace_regmap_hw_read_done)(void *, struct regmap *, unsigned int, int); ++ ++typedef void (*btf_trace_regmap_hw_write_start)(void *, struct regmap *, unsigned int, int); ++ ++typedef void (*btf_trace_regmap_hw_write_done)(void *, struct regmap *, unsigned int, int); ++ ++typedef void (*btf_trace_regcache_sync)(void *, struct regmap *, const char *, const char *); ++ ++typedef void (*btf_trace_regmap_cache_only)(void *, struct regmap *, bool); ++ ++typedef void (*btf_trace_regmap_cache_bypass)(void *, struct regmap *, bool); ++ ++typedef void (*btf_trace_regmap_async_write_start)(void *, struct regmap *, unsigned int, int); ++ ++typedef void (*btf_trace_regmap_async_io_complete)(void *, struct regmap *); ++ ++typedef void (*btf_trace_regmap_async_complete_start)(void *, struct regmap *); ++ ++typedef void (*btf_trace_regmap_async_complete_done)(void *, struct regmap *); ++ ++typedef void (*btf_trace_regcache_drop_region)(void *, struct regmap *, unsigned int, unsigned int); ++ +struct regcache_rbtree_node { + void *block; + long int *cache_present; @@ -75988,245 +80817,10 @@ index 0000000..bcb9d76 +}; + +struct regmap_debugfs_node { -+ struct regmap___2 *map; -+ const char *name; ++ struct regmap *map; + struct list_head link; +}; + -+struct i2c_msg { -+ __u16 addr; -+ __u16 flags; -+ __u16 len; -+ __u8 *buf; -+}; -+ -+union i2c_smbus_data { -+ __u8 byte; -+ __u16 word; -+ __u8 block[34]; -+}; -+ -+struct i2c_adapter; -+ -+struct i2c_client { -+ short unsigned int flags; -+ short unsigned int addr; -+ char name[20]; -+ struct i2c_adapter *adapter; -+ struct device dev; -+ int init_irq; -+ int irq; -+ struct list_head detected; -+}; -+ -+struct i2c_algorithm; -+ -+struct i2c_lock_operations; -+ -+struct i2c_bus_recovery_info; -+ -+struct i2c_adapter_quirks; -+ -+struct i2c_adapter { -+ struct module *owner; -+ unsigned int class; -+ const struct i2c_algorithm *algo; -+ void *algo_data; -+ const struct i2c_lock_operations *lock_ops; -+ struct rt_mutex bus_lock; -+ struct rt_mutex mux_lock; -+ int timeout; -+ int retries; -+ struct device dev; -+ int nr; -+ char name[48]; -+ struct completion dev_released; -+ struct mutex userspace_clients_lock; -+ struct list_head userspace_clients; -+ struct i2c_bus_recovery_info *bus_recovery_info; -+ const struct i2c_adapter_quirks *quirks; -+ struct irq_domain *host_notify_domain; -+}; -+ -+struct i2c_algorithm { -+ int (*master_xfer)(struct i2c_adapter *, struct i2c_msg *, int); -+ int (*smbus_xfer)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); -+ u32 (*functionality)(struct i2c_adapter *); -+}; -+ -+struct i2c_lock_operations { -+ void (*lock_bus)(struct i2c_adapter *, unsigned int); -+ int (*trylock_bus)(struct i2c_adapter *, unsigned int); -+ void (*unlock_bus)(struct i2c_adapter *, unsigned int); -+}; -+ -+struct i2c_bus_recovery_info { -+ int (*recover_bus)(struct i2c_adapter *); -+ int (*get_scl)(struct i2c_adapter *); -+ void (*set_scl)(struct i2c_adapter *, int); -+ int (*get_sda)(struct i2c_adapter *); -+ void (*set_sda)(struct i2c_adapter *, int); -+ int (*get_bus_free)(struct i2c_adapter *); -+ void (*prepare_recovery)(struct i2c_adapter *); -+ void (*unprepare_recovery)(struct i2c_adapter *); -+ struct gpio_desc___2 *scl_gpiod; -+ struct gpio_desc___2 *sda_gpiod; -+}; -+ -+struct i2c_adapter_quirks { -+ u64 flags; -+ int max_num_msgs; -+ u16 max_write_len; -+ u16 max_read_len; -+ u16 max_comb_1st_msg_len; -+ u16 max_comb_2nd_msg_len; -+}; -+ -+struct spi_statistics { -+ spinlock_t lock; -+ long unsigned int messages; -+ long unsigned int transfers; -+ long unsigned int errors; -+ long unsigned int timedout; -+ long unsigned int spi_sync; -+ long unsigned int spi_sync_immediate; -+ long unsigned int spi_async; -+ long long unsigned int bytes; -+ long long unsigned int bytes_rx; -+ long long unsigned int bytes_tx; -+ long unsigned int transfer_bytes_histo[17]; -+ long unsigned int transfers_split_maxsize; -+}; -+ -+struct spi_controller; -+ -+struct spi_device { -+ struct device dev; -+ struct spi_controller *controller; -+ struct spi_controller *master; -+ u32 max_speed_hz; -+ u8 chip_select; -+ u8 bits_per_word; -+ u16 mode; -+ int irq; -+ void *controller_state; -+ void *controller_data; -+ char modalias[32]; -+ int cs_gpio; -+ struct spi_statistics statistics; -+}; -+ -+struct spi_message; -+ -+struct spi_transfer; -+ -+struct spi_controller_mem_ops; -+ -+struct spi_controller { -+ struct device dev; -+ struct list_head list; -+ s16 bus_num; -+ u16 num_chipselect; -+ u16 dma_alignment; -+ u16 mode_bits; -+ u32 bits_per_word_mask; -+ u32 min_speed_hz; -+ u32 max_speed_hz; -+ u16 flags; -+ bool slave; -+ size_t (*max_transfer_size)(struct spi_device *); -+ size_t (*max_message_size)(struct spi_device *); -+ struct mutex io_mutex; -+ spinlock_t bus_lock_spinlock; -+ struct mutex bus_lock_mutex; -+ bool bus_lock_flag; -+ int (*setup)(struct spi_device *); -+ int (*transfer)(struct spi_device *, struct spi_message *); -+ void (*cleanup)(struct spi_device *); -+ bool (*can_dma)(struct spi_controller *, struct spi_device *, struct spi_transfer *); -+ bool queued; -+ struct kthread_worker kworker; -+ struct task_struct *kworker_task; -+ struct kthread_work pump_messages; -+ spinlock_t queue_lock; -+ struct list_head queue; -+ struct spi_message *cur_msg; -+ bool idling; -+ bool busy; -+ bool running; -+ bool rt; -+ bool auto_runtime_pm; -+ bool cur_msg_prepared; -+ bool cur_msg_mapped; -+ struct completion xfer_completion; -+ size_t max_dma_len; -+ int (*prepare_transfer_hardware)(struct spi_controller *); -+ int (*transfer_one_message)(struct spi_controller *, struct spi_message *); -+ int (*unprepare_transfer_hardware)(struct spi_controller *); -+ int (*prepare_message)(struct spi_controller *, struct spi_message *); -+ int (*unprepare_message)(struct spi_controller *, struct spi_message *); -+ int (*slave_abort)(struct spi_controller *); -+ void (*set_cs)(struct spi_device *, bool); -+ int (*transfer_one)(struct spi_controller *, struct spi_device *, struct spi_transfer *); -+ void (*handle_err)(struct spi_controller *, struct spi_message *); -+ const struct spi_controller_mem_ops *mem_ops; -+ int *cs_gpios; -+ struct spi_statistics statistics; -+ struct dma_chan___2 *dma_tx; -+ struct dma_chan___2 *dma_rx; -+ void *dummy_rx; -+ void *dummy_tx; -+ int (*fw_translate_cs)(struct spi_controller *, unsigned int); -+}; -+ -+struct spi_message { -+ struct list_head transfers; -+ struct spi_device *spi; -+ unsigned int is_dma_mapped: 1; -+ void (*complete)(void *); -+ void *context; -+ unsigned int frame_length; -+ unsigned int actual_length; -+ int status; -+ struct list_head queue; -+ void *state; -+ struct list_head resources; -+}; -+ -+struct spi_transfer { -+ const void *tx_buf; -+ void *rx_buf; -+ unsigned int len; -+ dma_addr_t tx_dma; -+ dma_addr_t rx_dma; -+ struct sg_table tx_sg; -+ struct sg_table rx_sg; -+ unsigned int cs_change: 1; -+ unsigned int tx_nbits: 3; -+ unsigned int rx_nbits: 3; -+ u8 bits_per_word; -+ u16 delay_usecs; -+ u32 speed_hz; -+ struct list_head transfer_list; -+}; -+ -+struct spi_mem; -+ -+struct spi_mem_op; -+ -+struct spi_controller_mem_ops { -+ int (*adjust_op_size)(struct spi_mem *, struct spi_mem_op *); -+ bool (*supports_op)(struct spi_mem *, const struct spi_mem_op *); -+ int (*exec_op)(struct spi_mem *, const struct spi_mem_op *); -+ const char * (*get_name)(struct spi_mem *); -+}; -+ -+struct regmap_async_spi { -+ struct regmap_async core; -+ struct spi_message m; -+ struct spi_transfer t[2]; -+}; -+ +struct devcd_entry { + struct device devcd_dev; + void *data; @@ -76268,15 +80862,17 @@ index 0000000..bcb9d76 +struct mfd_cell { + const char *name; + int id; -+ atomic_t *usage_count; ++ int level; + int (*enable)(struct platform_device *); + int (*disable)(struct platform_device *); + int (*suspend)(struct platform_device *); + int (*resume)(struct platform_device *); + void *platform_data; + size_t pdata_size; -+ struct property_entry *properties; ++ const struct property_entry *properties; + const char *of_compatible; ++ const u64 of_reg; ++ bool use_of_reg; + const struct mfd_cell_acpi_match *acpi_match; + int num_resources; + const struct resource *resources; @@ -76291,6 +80887,12 @@ index 0000000..bcb9d76 + const long long unsigned int adr; +}; + ++struct mfd_of_node_entry { ++ struct list_head list; ++ struct device *dev; ++ struct device_node *np; ++}; ++ +struct intel_lpss_platform_info { + struct resource *mem; + int irq; @@ -76321,15 +80923,17 @@ index 0000000..bcb9d76 + struct dentry *debugfs; +}; + -+struct dax_device___2; ++struct dax_device; + +struct dax_operations { -+ long int (*direct_access)(struct dax_device___2 *, long unsigned int, long int, void **, pfn_t *); -+ size_t (*copy_from_iter)(struct dax_device___2 *, long unsigned int, void *, size_t, struct iov_iter *); -+ size_t (*copy_to_iter)(struct dax_device___2 *, long unsigned int, void *, size_t, struct iov_iter *); ++ long int (*direct_access)(struct dax_device *, long unsigned int, long int, void **, pfn_t *); ++ bool (*dax_supported)(struct dax_device *, struct block_device *, int, sector_t, sector_t); ++ size_t (*copy_from_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); ++ size_t (*copy_to_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); ++ int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); +}; + -+struct dax_device___2 { ++struct dax_device { + struct hlist_node list; + struct inode inode; + struct cdev cdev; @@ -76342,6 +80946,7 @@ index 0000000..bcb9d76 +enum dax_device_flags { + DAXDEV_ALIVE = 0, + DAXDEV_WRITE_CACHE = 1, ++ DAXDEV_SYNC = 2, +}; + +struct dax_region { @@ -76350,18 +80955,35 @@ index 0000000..bcb9d76 + struct kref kref; + struct device *dev; + unsigned int align; ++ struct ida ida; + struct resource res; -+ long unsigned int pfn_flags; ++ struct device *seed; ++ struct device *youngest; ++}; ++ ++struct dax_mapping { ++ struct device dev; ++ int range_id; ++ int id; ++}; ++ ++struct dev_dax_range { ++ long unsigned int pgoff; ++ struct range range; ++ struct dax_mapping *mapping; +}; + +struct dev_dax { + struct dax_region *region; + struct dax_device *dax_dev; ++ unsigned int align; + int target_node; ++ int id; ++ struct ida ida; + struct device dev; -+ struct dev_pagemap pgmap; -+ struct percpu_ref ref; -+ struct completion cmp; ++ struct dev_pagemap *pgmap; ++ int nr_range; ++ struct dev_dax_range *ranges; +}; + +enum dev_dax_subsys { @@ -76369,10 +80991,20 @@ index 0000000..bcb9d76 + DEV_DAX_CLASS = 1, +}; + ++struct dev_dax_data { ++ struct dax_region *dax_region; ++ struct dev_pagemap *pgmap; ++ enum dev_dax_subsys subsys; ++ resource_size_t size; ++ int id; ++}; ++ +struct dax_device_driver { + struct device_driver drv; + struct list_head ids; + int match_always; ++ int (*probe)(struct dev_dax *); ++ int (*remove)(struct dev_dax *); +}; + +struct dax_id { @@ -76385,22 +81017,35 @@ index 0000000..bcb9d76 + ID_ADD = 1, +}; + ++struct memregion_info { ++ int target_node; ++}; ++ ++struct seqcount_ww_mutex { ++ seqcount_t seqcount; ++}; ++ ++typedef struct seqcount_ww_mutex seqcount_ww_mutex_t; ++ +struct dma_fence_ops; + +struct dma_fence { -+ struct kref refcount; -+ const struct dma_fence_ops *ops; -+ struct callback_head rcu; -+ struct list_head cb_list; + spinlock_t *lock; ++ const struct dma_fence_ops *ops; ++ union { ++ struct list_head cb_list; ++ ktime_t timestamp; ++ struct callback_head rcu; ++ }; + u64 context; -+ unsigned int seqno; ++ u64 seqno; + long unsigned int flags; -+ ktime_t timestamp; ++ struct kref refcount; + int error; +}; + +struct dma_fence_ops { ++ bool use_64bit_seqno; + const char * (*get_driver_name)(struct dma_fence *); + const char * (*get_timeline_name)(struct dma_fence *); + bool (*enable_signaling)(struct dma_fence *); @@ -76432,15 +81077,16 @@ index 0000000..bcb9d76 +struct dma_buf_attachment; + +struct dma_buf_ops { ++ bool cache_sgt_mapping; + int (*attach)(struct dma_buf *, struct dma_buf_attachment *); + void (*detach)(struct dma_buf *, struct dma_buf_attachment *); ++ int (*pin)(struct dma_buf_attachment *); ++ void (*unpin)(struct dma_buf_attachment *); + struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *, enum dma_data_direction); + void (*unmap_dma_buf)(struct dma_buf_attachment *, struct sg_table *, enum dma_data_direction); + void (*release)(struct dma_buf *); + int (*begin_cpu_access)(struct dma_buf *, enum dma_data_direction); + int (*end_cpu_access)(struct dma_buf *, enum dma_data_direction); -+ void * (*map)(struct dma_buf *, long unsigned int); -+ void (*unmap)(struct dma_buf *, long unsigned int, void *); + int (*mmap)(struct dma_buf *, struct vm_area_struct *); + void * (*vmap)(struct dma_buf *); + void (*vunmap)(struct dma_buf *, void *); @@ -76452,7 +81098,7 @@ index 0000000..bcb9d76 + __poll_t active; +}; + -+struct reservation_object; ++struct dma_resv; + +struct dma_buf { + size_t size; @@ -76463,30 +81109,43 @@ index 0000000..bcb9d76 + unsigned int vmapping_counter; + void *vmap_ptr; + const char *exp_name; ++ const char *name; ++ spinlock_t name_lock; + struct module *owner; + struct list_head list_node; + void *priv; -+ struct reservation_object *resv; ++ struct dma_resv *resv; + wait_queue_head_t poll; + struct dma_buf_poll_cb_t cb_excl; + struct dma_buf_poll_cb_t cb_shared; +}; + ++struct dma_buf_attach_ops; ++ +struct dma_buf_attachment { + struct dma_buf *dmabuf; + struct device *dev; + struct list_head node; ++ struct sg_table *sgt; ++ enum dma_data_direction dir; ++ bool peer2peer; ++ const struct dma_buf_attach_ops *importer_ops; ++ void *importer_priv; + void *priv; +}; + -+struct reservation_object_list; ++struct dma_resv_list; + -+struct reservation_object { ++struct dma_resv { + struct ww_mutex lock; -+ seqcount_t seq; ++ seqcount_ww_mutex_t seq; + struct dma_fence *fence_excl; -+ struct reservation_object_list *fence; -+ struct reservation_object_list *staged; ++ struct dma_resv_list *fence; ++}; ++ ++struct dma_buf_attach_ops { ++ bool allow_peer2peer; ++ void (*move_notify)(struct dma_buf_attachment *); +}; + +struct dma_buf_export_info { @@ -76495,20 +81154,11 @@ index 0000000..bcb9d76 + const struct dma_buf_ops *ops; + size_t size; + int flags; -+ struct reservation_object *resv; ++ struct dma_resv *resv; + void *priv; +}; + -+struct ww_class { -+ atomic_long_t stamp; -+ struct lock_class_key acquire_key; -+ struct lock_class_key mutex_key; -+ const char *acquire_name; -+ const char *mutex_name; -+ unsigned int is_wait_die; -+}; -+ -+struct reservation_object_list { ++struct dma_resv_list { + struct callback_head rcu; + u32 shared_count; + u32 shared_max; @@ -76538,6 +81188,20 @@ index 0000000..bcb9d76 + u32 timeline; +}; + ++typedef void (*btf_trace_dma_fence_emit)(void *, struct dma_fence *); ++ ++typedef void (*btf_trace_dma_fence_init)(void *, struct dma_fence *); ++ ++typedef void (*btf_trace_dma_fence_destroy)(void *, struct dma_fence *); ++ ++typedef void (*btf_trace_dma_fence_enable_signal)(void *, struct dma_fence *); ++ ++typedef void (*btf_trace_dma_fence_signaled)(void *, struct dma_fence *); ++ ++typedef void (*btf_trace_dma_fence_wait_start)(void *, struct dma_fence *); ++ ++typedef void (*btf_trace_dma_fence_wait_end)(void *, struct dma_fence *); ++ +struct default_wait_cb { + struct dma_fence_cb base; + struct task_struct *task; @@ -76559,6 +81223,25 @@ index 0000000..bcb9d76 + struct irq_work work; +}; + ++struct dma_fence_chain { ++ struct dma_fence base; ++ spinlock_t lock; ++ struct dma_fence *prev; ++ u64 prev_seqno; ++ struct dma_fence *fence; ++ struct dma_fence_cb cb; ++ struct irq_work work; ++}; ++ ++struct ww_class { ++ atomic_long_t stamp; ++ struct lock_class_key acquire_key; ++ struct lock_class_key mutex_key; ++ const char *acquire_name; ++ const char *mutex_name; ++ unsigned int is_wait_die; ++}; ++ +enum seqno_fence_condition { + SEQNO_FENCE_WAIT_GEQUAL = 0, + SEQNO_FENCE_WAIT_NONZERO = 1, @@ -76607,17 +81290,6 @@ index 0000000..bcb9d76 + __u64 sync_fence_info; +}; + -+struct scsi_sense_hdr { -+ u8 response_code; -+ u8 sense_key; -+ u8 asc; -+ u8 ascq; -+ u8 byte4; -+ u8 byte5; -+ u8 byte6; -+ u8 additional_length; -+}; -+ +typedef __u64 blist_flags_t; + +enum scsi_device_state { @@ -76651,8 +81323,8 @@ index 0000000..bcb9d76 + struct list_head same_target_siblings; + atomic_t device_busy; + atomic_t device_blocked; ++ atomic_t restarts; + spinlock_t list_lock; -+ struct list_head cmd_list; + struct list_head starved_entry; + short unsigned int queue_depth; + short unsigned int max_queue_depth; @@ -76676,8 +81348,10 @@ index 0000000..bcb9d76 + const char *vendor; + const char *model; + const char *rev; ++ struct scsi_vpd *vpd_pg0; + struct scsi_vpd *vpd_pg83; + struct scsi_vpd *vpd_pg80; ++ struct scsi_vpd *vpd_pg89; + unsigned char current_tag; + struct scsi_target *sdev_target; + blist_flags_t sdev_bflags; @@ -76699,6 +81373,7 @@ index 0000000..bcb9d76 + unsigned int expecting_cc_ua: 1; + unsigned int use_10_for_rw: 1; + unsigned int use_10_for_ms: 1; ++ unsigned int set_dbd_for_ms: 1; + unsigned int no_report_opcodes: 1; + unsigned int no_write_same: 1; + unsigned int use_16_for_rw: 1; @@ -76727,6 +81402,9 @@ index 0000000..bcb9d76 + unsigned int broken_fua: 1; + unsigned int lun_in_cdb: 1; + unsigned int unmap_limit_for_ws: 1; ++ unsigned int rpm_autosuspend: 1; ++ unsigned int queue_stopped: 1; ++ bool offline_already; + atomic_t disk_events_disable_depth; + long unsigned int supported_events[1]; + long unsigned int pending_events[1]; @@ -76742,16 +81420,18 @@ index 0000000..bcb9d76 + struct work_struct requeue_work; + struct scsi_device_handler *handler; + void *handler_data; ++ size_t dma_drain_len; ++ void *dma_drain_buf; + unsigned char access_state; + struct mutex state_mutex; + enum scsi_device_state sdev_state; + struct task_struct *quiesced_by; -+ long unsigned int offline_already; -+ atomic_t restarts; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; + long unsigned int sdev_data[0]; +}; + @@ -76782,11 +81462,7 @@ index 0000000..bcb9d76 + wait_queue_head_t host_wait; + struct scsi_host_template *hostt; + struct scsi_transport_template *transportt; -+ union { -+ struct blk_queue_tag *bqt; -+ struct blk_mq_tag_set tag_set; -+ }; -+ atomic_t host_busy; ++ struct blk_mq_tag_set tag_set; + atomic_t host_blocked; + unsigned int host_failed; + unsigned int host_eh_scheduled; @@ -76804,25 +81480,24 @@ index 0000000..bcb9d76 + short unsigned int sg_tablesize; + short unsigned int sg_prot_tablesize; + unsigned int max_sectors; ++ unsigned int max_segment_size; + long unsigned int dma_boundary; ++ long unsigned int virt_boundary_mask; + unsigned int nr_hw_queues; -+ long unsigned int cmd_serial_number; + unsigned int active_mode: 2; + unsigned int unchecked_isa_dma: 1; -+ unsigned int use_clustering: 1; + unsigned int host_self_blocked: 1; + unsigned int reverse_ordering: 1; + unsigned int tmf_in_progress: 1; + unsigned int async_scan: 1; + unsigned int eh_noresume: 1; + unsigned int no_write_same: 1; -+ unsigned int use_blk_mq: 1; -+ unsigned int use_cmd_list: 1; ++ unsigned int host_tagset: 1; + unsigned int short_inquiry: 1; ++ unsigned int no_scsi2_lun_in_cdb: 1; + char work_q_name[20]; + struct workqueue_struct *work_q; + struct workqueue_struct *tmf_work_q; -+ unsigned int no_scsi2_lun_in_cdb: 1; + unsigned int max_host_blocked; + unsigned int prot_capabilities; + unsigned char prot_guard_type; @@ -76836,12 +81511,12 @@ index 0000000..bcb9d76 + struct device shost_dev; + void *shost_data; + struct device *dma_dev; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ long unsigned int kabi_reserved5; -+ long unsigned int kabi_reserved6; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++ u64 kabi_reserved5; ++ u64 kabi_reserved6; + long unsigned int hostdata[0]; +}; + @@ -76873,17 +81548,16 @@ index 0000000..bcb9d76 + char scsi_level; + enum scsi_target_state state; + void *hostdata; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; + long unsigned int starget_data[0]; +}; + +struct scsi_data_buffer { + struct sg_table table; + unsigned int length; -+ int resid; +}; + +struct scsi_pointer { @@ -76902,12 +81576,10 @@ index 0000000..bcb9d76 +struct scsi_cmnd { + struct scsi_request req; + struct scsi_device *device; -+ struct list_head list; + struct list_head eh_entry; + struct delayed_work abort_work; + struct callback_head rcu; + int eh_eflags; -+ long unsigned int serial_number; + long unsigned int jiffies_at_alloc; + int retries; + int allowed; @@ -76928,11 +81600,13 @@ index 0000000..bcb9d76 + unsigned char *host_scribble; + int result; + int flags; ++ long unsigned int state; + unsigned char tag; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ unsigned int extra_len; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +enum scsi_prot_operations { @@ -76948,7 +81622,7 @@ index 0000000..bcb9d76 +struct scsi_driver { + struct device_driver gendrv; + void (*rescan)(struct device *); -+ int (*init_command)(struct scsi_cmnd *); ++ blk_status_t (*init_command)(struct scsi_cmnd *); + void (*uninit_command)(struct scsi_cmnd *); + int (*done)(struct scsi_cmnd *); + int (*eh_action)(struct scsi_cmnd *, int); @@ -76963,7 +81637,10 @@ index 0000000..bcb9d76 + const char * (*info)(struct Scsi_Host *); + int (*ioctl)(struct scsi_device *, unsigned int, void *); + int (*compat_ioctl)(struct scsi_device *, unsigned int, void *); ++ int (*init_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); ++ int (*exit_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); + int (*queuecommand)(struct Scsi_Host *, struct scsi_cmnd *); ++ void (*commit_rqs)(struct Scsi_Host *, u16); + int (*eh_abort_handler)(struct scsi_cmnd *); + int (*eh_device_reset_handler)(struct scsi_cmnd *); + int (*eh_target_reset_handler)(struct scsi_cmnd *); @@ -76978,6 +81655,7 @@ index 0000000..bcb9d76 + void (*scan_start)(struct Scsi_Host *); + int (*change_queue_depth)(struct scsi_device *, int); + int (*map_queues)(struct Scsi_Host *); ++ bool (*dma_need_drain)(struct request *); + int (*bios_param)(struct scsi_device *, struct block_device *, sector_t, int *); + void (*unlock_native_capacity)(struct scsi_device *); + int (*show_info)(struct seq_file *, struct Scsi_Host *); @@ -76991,18 +81669,19 @@ index 0000000..bcb9d76 + short unsigned int sg_tablesize; + short unsigned int sg_prot_tablesize; + unsigned int max_sectors; ++ unsigned int max_segment_size; + long unsigned int dma_boundary; ++ long unsigned int virt_boundary_mask; + short int cmd_per_lun; + unsigned char present; + int tag_alloc_policy; + unsigned int track_queue_depth: 1; + unsigned int supported_mode: 2; + unsigned int unchecked_isa_dma: 1; -+ unsigned int use_clustering: 1; + unsigned int emulated: 1; + unsigned int skip_settle_delay: 1; + unsigned int no_write_same: 1; -+ unsigned int force_blk_mq: 1; ++ unsigned int host_tagset: 1; + unsigned int max_host_blocked; + struct device_attribute **shost_attrs; + struct device_attribute **sdev_attrs; @@ -77010,10 +81689,11 @@ index 0000000..bcb9d76 + u64 vendor_id; + unsigned int cmd_size; + struct scsi_host_cmd_pool *cmd_pool; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ int rpm_autosuspend_delay; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct trace_event_raw_scsi_dispatch_cmd_start { @@ -77083,6 +81763,16 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_scsi_eh_wakeup {}; + ++typedef void (*btf_trace_scsi_dispatch_cmd_start)(void *, struct scsi_cmnd *); ++ ++typedef void (*btf_trace_scsi_dispatch_cmd_error)(void *, struct scsi_cmnd *, int); ++ ++typedef void (*btf_trace_scsi_dispatch_cmd_done)(void *, struct scsi_cmnd *); ++ ++typedef void (*btf_trace_scsi_dispatch_cmd_timeout)(void *, struct scsi_cmnd *); ++ ++typedef void (*btf_trace_scsi_eh_wakeup)(void *, struct Scsi_Host *); ++ +struct scsi_transport_template { + struct transport_container host_attrs; + struct transport_container target_attrs; @@ -77097,6 +81787,11 @@ index 0000000..bcb9d76 + void (*eh_strategy_handler)(struct Scsi_Host *); +}; + ++struct scsi_host_busy_iter_data { ++ bool (*fn)(struct scsi_cmnd *, void *, bool); ++ void *priv; ++}; ++ +struct scsi_idlun { + __u32 dev_id; + __u32 host_unique_id; @@ -77112,7 +81807,7 @@ index 0000000..bcb9d76 + int (*attach)(struct scsi_device *); + void (*detach)(struct scsi_device *); + int (*activate)(struct scsi_device *, activate_complete, void *); -+ int (*prep_fn)(struct scsi_device *, struct request *); ++ blk_status_t (*prep_fn)(struct scsi_device *, struct request *); + int (*set_params)(struct scsi_device *, const char *); + void (*rescan)(struct scsi_device *); +}; @@ -77127,19 +81822,10 @@ index 0000000..bcb9d76 + unsigned char prot_op; + unsigned char *cmnd; + struct scsi_data_buffer sdb; -+ struct request *next_rq; + unsigned char eh_cmnd[16]; + struct scatterlist sense_sgl; +}; + -+struct scsi_varlen_cdb_hdr { -+ __u8 opcode; -+ __u8 control; -+ __u8 misc[5]; -+ __u8 additional_cdb_length; -+ __be16 service_action; -+}; -+ +struct scsi_mode_data { + __u32 length; + __u16 block_descriptor_length; @@ -77243,11 +81929,19 @@ index 0000000..bcb9d76 +}; + +struct scsi_nl_hdr { -+ uint8_t version; -+ uint8_t transport; -+ uint16_t magic; -+ uint16_t msgtype; -+ uint16_t msglen; ++ __u8 version; ++ __u8 transport; ++ __u16 magic; ++ __u16 msgtype; ++ __u16 msglen; ++}; ++ ++struct scsi_varlen_cdb_hdr { ++ __u8 opcode; ++ __u8 control; ++ __u8 misc[5]; ++ __u8 additional_cdb_length; ++ __be16 service_action; +}; + +enum { @@ -77480,6 +82174,131 @@ index 0000000..bcb9d76 + kernel_ulong_t driver_data; +}; + ++struct ptp_system_timestamp { ++ struct timespec64 pre_ts; ++ struct timespec64 post_ts; ++}; ++ ++struct spi_statistics { ++ spinlock_t lock; ++ long unsigned int messages; ++ long unsigned int transfers; ++ long unsigned int errors; ++ long unsigned int timedout; ++ long unsigned int spi_sync; ++ long unsigned int spi_sync_immediate; ++ long unsigned int spi_async; ++ long long unsigned int bytes; ++ long long unsigned int bytes_rx; ++ long long unsigned int bytes_tx; ++ long unsigned int transfer_bytes_histo[17]; ++ long unsigned int transfers_split_maxsize; ++}; ++ ++struct spi_delay { ++ u16 value; ++ u8 unit; ++}; ++ ++struct spi_controller; ++ ++struct spi_device { ++ struct device dev; ++ struct spi_controller *controller; ++ struct spi_controller *master; ++ u32 max_speed_hz; ++ u8 chip_select; ++ u8 bits_per_word; ++ bool rt; ++ u32 mode; ++ int irq; ++ void *controller_state; ++ void *controller_data; ++ char modalias[32]; ++ const char *driver_override; ++ int cs_gpio; ++ struct gpio_desc *cs_gpiod; ++ struct spi_delay word_delay; ++ struct spi_statistics statistics; ++}; ++ ++struct spi_message; ++ ++struct spi_transfer; ++ ++struct spi_controller_mem_ops; ++ ++struct spi_controller { ++ struct device dev; ++ struct list_head list; ++ s16 bus_num; ++ u16 num_chipselect; ++ u16 dma_alignment; ++ u32 mode_bits; ++ u32 buswidth_override_bits; ++ u32 bits_per_word_mask; ++ u32 min_speed_hz; ++ u32 max_speed_hz; ++ u16 flags; ++ bool devm_allocated; ++ bool slave; ++ size_t (*max_transfer_size)(struct spi_device *); ++ size_t (*max_message_size)(struct spi_device *); ++ struct mutex io_mutex; ++ spinlock_t bus_lock_spinlock; ++ struct mutex bus_lock_mutex; ++ bool bus_lock_flag; ++ int (*setup)(struct spi_device *); ++ int (*set_cs_timing)(struct spi_device *, struct spi_delay *, struct spi_delay *, struct spi_delay *); ++ int (*transfer)(struct spi_device *, struct spi_message *); ++ void (*cleanup)(struct spi_device *); ++ bool (*can_dma)(struct spi_controller *, struct spi_device *, struct spi_transfer *); ++ bool queued; ++ struct kthread_worker *kworker; ++ struct kthread_work pump_messages; ++ spinlock_t queue_lock; ++ struct list_head queue; ++ struct spi_message *cur_msg; ++ bool idling; ++ bool busy; ++ bool running; ++ bool rt; ++ bool auto_runtime_pm; ++ bool cur_msg_prepared; ++ bool cur_msg_mapped; ++ bool last_cs_enable; ++ bool last_cs_mode_high; ++ bool fallback; ++ struct completion xfer_completion; ++ size_t max_dma_len; ++ int (*prepare_transfer_hardware)(struct spi_controller *); ++ int (*transfer_one_message)(struct spi_controller *, struct spi_message *); ++ int (*unprepare_transfer_hardware)(struct spi_controller *); ++ int (*prepare_message)(struct spi_controller *, struct spi_message *); ++ int (*unprepare_message)(struct spi_controller *, struct spi_message *); ++ int (*slave_abort)(struct spi_controller *); ++ void (*set_cs)(struct spi_device *, bool); ++ int (*transfer_one)(struct spi_controller *, struct spi_device *, struct spi_transfer *); ++ void (*handle_err)(struct spi_controller *, struct spi_message *); ++ const struct spi_controller_mem_ops *mem_ops; ++ struct spi_delay cs_setup; ++ struct spi_delay cs_hold; ++ struct spi_delay cs_inactive; ++ int *cs_gpios; ++ struct gpio_desc **cs_gpiods; ++ bool use_gpio_descriptors; ++ s8 unused_native_cs; ++ s8 max_native_cs; ++ struct spi_statistics statistics; ++ struct dma_chan___2 *dma_tx; ++ struct dma_chan___2 *dma_rx; ++ void *dummy_rx; ++ void *dummy_tx; ++ int (*fw_translate_cs)(struct spi_controller *, unsigned int); ++ bool ptp_sts_supported; ++ long unsigned int irq_flags; ++}; ++ +struct spi_driver { + const struct spi_device_id *id_table; + int (*probe)(struct spi_device *); @@ -77488,6 +82307,63 @@ index 0000000..bcb9d76 + struct device_driver driver; +}; + ++struct spi_message { ++ struct list_head transfers; ++ struct spi_device *spi; ++ unsigned int is_dma_mapped: 1; ++ void (*complete)(void *); ++ void *context; ++ unsigned int frame_length; ++ unsigned int actual_length; ++ int status; ++ struct list_head queue; ++ void *state; ++ struct list_head resources; ++}; ++ ++struct spi_transfer { ++ const void *tx_buf; ++ void *rx_buf; ++ unsigned int len; ++ dma_addr_t tx_dma; ++ dma_addr_t rx_dma; ++ struct sg_table tx_sg; ++ struct sg_table rx_sg; ++ unsigned int cs_change: 1; ++ unsigned int tx_nbits: 3; ++ unsigned int rx_nbits: 3; ++ u8 bits_per_word; ++ u16 delay_usecs; ++ struct spi_delay delay; ++ struct spi_delay cs_change_delay; ++ struct spi_delay word_delay; ++ u32 speed_hz; ++ u32 effective_speed_hz; ++ unsigned int ptp_sts_word_pre; ++ unsigned int ptp_sts_word_post; ++ struct ptp_system_timestamp *ptp_sts; ++ bool timestamped; ++ struct list_head transfer_list; ++ u16 error; ++}; ++ ++struct spi_mem; ++ ++struct spi_mem_op; ++ ++struct spi_mem_dirmap_desc; ++ ++struct spi_controller_mem_ops { ++ int (*adjust_op_size)(struct spi_mem *, struct spi_mem_op *); ++ bool (*supports_op)(struct spi_mem *, const struct spi_mem_op *); ++ int (*exec_op)(struct spi_mem *, const struct spi_mem_op *); ++ const char * (*get_name)(struct spi_mem *); ++ int (*dirmap_create)(struct spi_mem_dirmap_desc *); ++ void (*dirmap_destroy)(struct spi_mem_dirmap_desc *); ++ ssize_t (*dirmap_read)(struct spi_mem_dirmap_desc *, u64, size_t, void *); ++ ssize_t (*dirmap_write)(struct spi_mem_dirmap_desc *, u64, size_t, const void *); ++}; ++ +typedef void (*spi_res_release_t)(struct spi_controller *, struct spi_message *, void *); + +struct spi_res { @@ -77518,30 +82394,36 @@ index 0000000..bcb9d76 + u32 max_speed_hz; + u16 bus_num; + u16 chip_select; -+ u16 mode; ++ u32 mode; +}; + +enum spi_mem_data_dir { -+ SPI_MEM_DATA_IN = 0, -+ SPI_MEM_DATA_OUT = 1, ++ SPI_MEM_NO_DATA = 0, ++ SPI_MEM_DATA_IN = 1, ++ SPI_MEM_DATA_OUT = 2, +}; + +struct spi_mem_op { + struct { ++ u8 nbytes; + u8 buswidth; -+ u8 opcode; ++ u8 dtr: 1; ++ u16 opcode; + } cmd; + struct { + u8 nbytes; + u8 buswidth; ++ u8 dtr: 1; + u64 val; + } addr; + struct { + u8 nbytes; + u8 buswidth; ++ u8 dtr: 1; + } dummy; + struct { + u8 buswidth; ++ u8 dtr: 1; + enum spi_mem_data_dir dir; + unsigned int nbytes; + union { @@ -77551,6 +82433,19 @@ index 0000000..bcb9d76 + } data; +}; + ++struct spi_mem_dirmap_info { ++ struct spi_mem_op op_tmpl; ++ u64 offset; ++ u64 length; ++}; ++ ++struct spi_mem_dirmap_desc { ++ struct spi_mem *mem; ++ struct spi_mem_dirmap_info info; ++ unsigned int nodirmap; ++ void *priv; ++}; ++ +struct spi_mem { + struct spi_device *spi; + void *drvpriv; @@ -77587,6 +82482,8 @@ index 0000000..bcb9d76 + int chip_select; + struct spi_transfer *xfer; + int len; ++ u32 __data_loc_rx_buf; ++ u32 __data_loc_tx_buf; + char __data[0]; +}; + @@ -77596,19 +82493,117 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_spi_message_done {}; + -+struct trace_event_data_offsets_spi_transfer {}; ++struct trace_event_data_offsets_spi_transfer { ++ u32 rx_buf; ++ u32 tx_buf; ++}; ++ ++typedef void (*btf_trace_spi_controller_idle)(void *, struct spi_controller *); ++ ++typedef void (*btf_trace_spi_controller_busy)(void *, struct spi_controller *); ++ ++typedef void (*btf_trace_spi_message_submit)(void *, struct spi_message *); ++ ++typedef void (*btf_trace_spi_message_start)(void *, struct spi_message *); ++ ++typedef void (*btf_trace_spi_message_done)(void *, struct spi_message *); ++ ++typedef void (*btf_trace_spi_transfer_start)(void *, struct spi_message *, struct spi_transfer *); ++ ++typedef void (*btf_trace_spi_transfer_stop)(void *, struct spi_message *, struct spi_transfer *); + +struct boardinfo { + struct list_head list; + struct spi_board_info board_info; +}; + ++struct acpi_spi_lookup { ++ struct spi_controller *ctlr; ++ u32 max_speed_hz; ++ u32 mode; ++ int irq; ++ u8 bits_per_word; ++ u8 chip_select; ++}; ++ ++struct spi_mem_driver { ++ struct spi_driver spidrv; ++ int (*probe)(struct spi_mem *); ++ int (*remove)(struct spi_mem *); ++ void (*shutdown)(struct spi_mem *); ++}; ++ +struct devprobe2 { + struct net_device * (*probe)(int); + int status; +}; + +enum { ++ NETIF_F_SG_BIT = 0, ++ NETIF_F_IP_CSUM_BIT = 1, ++ __UNUSED_NETIF_F_1 = 2, ++ NETIF_F_HW_CSUM_BIT = 3, ++ NETIF_F_IPV6_CSUM_BIT = 4, ++ NETIF_F_HIGHDMA_BIT = 5, ++ NETIF_F_FRAGLIST_BIT = 6, ++ NETIF_F_HW_VLAN_CTAG_TX_BIT = 7, ++ NETIF_F_HW_VLAN_CTAG_RX_BIT = 8, ++ NETIF_F_HW_VLAN_CTAG_FILTER_BIT = 9, ++ NETIF_F_VLAN_CHALLENGED_BIT = 10, ++ NETIF_F_GSO_BIT = 11, ++ NETIF_F_LLTX_BIT = 12, ++ NETIF_F_NETNS_LOCAL_BIT = 13, ++ NETIF_F_GRO_BIT = 14, ++ NETIF_F_LRO_BIT = 15, ++ NETIF_F_GSO_SHIFT = 16, ++ NETIF_F_TSO_BIT = 16, ++ NETIF_F_GSO_ROBUST_BIT = 17, ++ NETIF_F_TSO_ECN_BIT = 18, ++ NETIF_F_TSO_MANGLEID_BIT = 19, ++ NETIF_F_TSO6_BIT = 20, ++ NETIF_F_FSO_BIT = 21, ++ NETIF_F_GSO_GRE_BIT = 22, ++ NETIF_F_GSO_GRE_CSUM_BIT = 23, ++ NETIF_F_GSO_IPXIP4_BIT = 24, ++ NETIF_F_GSO_IPXIP6_BIT = 25, ++ NETIF_F_GSO_UDP_TUNNEL_BIT = 26, ++ NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT = 27, ++ NETIF_F_GSO_PARTIAL_BIT = 28, ++ NETIF_F_GSO_TUNNEL_REMCSUM_BIT = 29, ++ NETIF_F_GSO_SCTP_BIT = 30, ++ NETIF_F_GSO_ESP_BIT = 31, ++ NETIF_F_GSO_UDP_BIT = 32, ++ NETIF_F_GSO_UDP_L4_BIT = 33, ++ NETIF_F_GSO_FRAGLIST_BIT = 34, ++ NETIF_F_GSO_LAST = 34, ++ NETIF_F_FCOE_CRC_BIT = 35, ++ NETIF_F_SCTP_CRC_BIT = 36, ++ NETIF_F_FCOE_MTU_BIT = 37, ++ NETIF_F_NTUPLE_BIT = 38, ++ NETIF_F_RXHASH_BIT = 39, ++ NETIF_F_RXCSUM_BIT = 40, ++ NETIF_F_NOCACHE_COPY_BIT = 41, ++ NETIF_F_LOOPBACK_BIT = 42, ++ NETIF_F_RXFCS_BIT = 43, ++ NETIF_F_RXALL_BIT = 44, ++ NETIF_F_HW_VLAN_STAG_TX_BIT = 45, ++ NETIF_F_HW_VLAN_STAG_RX_BIT = 46, ++ NETIF_F_HW_VLAN_STAG_FILTER_BIT = 47, ++ NETIF_F_HW_L2FW_DOFFLOAD_BIT = 48, ++ NETIF_F_HW_TC_BIT = 49, ++ NETIF_F_HW_ESP_BIT = 50, ++ NETIF_F_HW_ESP_TX_CSUM_BIT = 51, ++ NETIF_F_RX_UDP_TUNNEL_PORT_BIT = 52, ++ NETIF_F_HW_TLS_TX_BIT = 53, ++ NETIF_F_HW_TLS_RX_BIT = 54, ++ NETIF_F_GRO_HW_BIT = 55, ++ NETIF_F_HW_TLS_RECORD_BIT = 56, ++ NETIF_F_GRO_FRAGLIST_BIT = 57, ++ NETIF_F_HW_MACSEC_BIT = 58, ++ NETDEV_FEATURE_COUNT = 59, ++}; ++ ++enum { + SKBTX_HW_TSTAMP = 1, + SKBTX_SW_TSTAMP = 2, + SKBTX_IN_PROGRESS = 4, @@ -77652,88 +82647,6 @@ index 0000000..bcb9d76 + IFF_LIVE_RENAME_OK = 1073741824, +}; + -+struct pcpu_lstats { -+ u64 packets; -+ u64 bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+enum { -+ SOF_TIMESTAMPING_TX_HARDWARE = 1, -+ SOF_TIMESTAMPING_TX_SOFTWARE = 2, -+ SOF_TIMESTAMPING_RX_HARDWARE = 4, -+ SOF_TIMESTAMPING_RX_SOFTWARE = 8, -+ SOF_TIMESTAMPING_SOFTWARE = 16, -+ SOF_TIMESTAMPING_SYS_HARDWARE = 32, -+ SOF_TIMESTAMPING_RAW_HARDWARE = 64, -+ SOF_TIMESTAMPING_OPT_ID = 128, -+ SOF_TIMESTAMPING_TX_SCHED = 256, -+ SOF_TIMESTAMPING_TX_ACK = 512, -+ SOF_TIMESTAMPING_OPT_CMSG = 1024, -+ SOF_TIMESTAMPING_OPT_TSONLY = 2048, -+ SOF_TIMESTAMPING_OPT_STATS = 4096, -+ SOF_TIMESTAMPING_OPT_PKTINFO = 8192, -+ SOF_TIMESTAMPING_OPT_TX_SWHW = 16384, -+ SOF_TIMESTAMPING_LAST = 16384, -+ SOF_TIMESTAMPING_MASK = 32767, -+}; -+ -+enum ethtool_link_mode_bit_indices { -+ ETHTOOL_LINK_MODE_10baseT_Half_BIT = 0, -+ ETHTOOL_LINK_MODE_10baseT_Full_BIT = 1, -+ ETHTOOL_LINK_MODE_100baseT_Half_BIT = 2, -+ ETHTOOL_LINK_MODE_100baseT_Full_BIT = 3, -+ ETHTOOL_LINK_MODE_1000baseT_Half_BIT = 4, -+ ETHTOOL_LINK_MODE_1000baseT_Full_BIT = 5, -+ ETHTOOL_LINK_MODE_Autoneg_BIT = 6, -+ ETHTOOL_LINK_MODE_TP_BIT = 7, -+ ETHTOOL_LINK_MODE_AUI_BIT = 8, -+ ETHTOOL_LINK_MODE_MII_BIT = 9, -+ ETHTOOL_LINK_MODE_FIBRE_BIT = 10, -+ ETHTOOL_LINK_MODE_BNC_BIT = 11, -+ ETHTOOL_LINK_MODE_10000baseT_Full_BIT = 12, -+ ETHTOOL_LINK_MODE_Pause_BIT = 13, -+ ETHTOOL_LINK_MODE_Asym_Pause_BIT = 14, -+ ETHTOOL_LINK_MODE_2500baseX_Full_BIT = 15, -+ ETHTOOL_LINK_MODE_Backplane_BIT = 16, -+ ETHTOOL_LINK_MODE_1000baseKX_Full_BIT = 17, -+ ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT = 18, -+ ETHTOOL_LINK_MODE_10000baseKR_Full_BIT = 19, -+ ETHTOOL_LINK_MODE_10000baseR_FEC_BIT = 20, -+ ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT = 21, -+ ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT = 22, -+ ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT = 23, -+ ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT = 24, -+ ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT = 25, -+ ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT = 26, -+ ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT = 27, -+ ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT = 28, -+ ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT = 29, -+ ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT = 30, -+ ETHTOOL_LINK_MODE_25000baseCR_Full_BIT = 31, -+ ETHTOOL_LINK_MODE_25000baseKR_Full_BIT = 32, -+ ETHTOOL_LINK_MODE_25000baseSR_Full_BIT = 33, -+ ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT = 34, -+ ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT = 35, -+ ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT = 36, -+ ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT = 37, -+ ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT = 38, -+ ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT = 39, -+ ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT = 40, -+ ETHTOOL_LINK_MODE_1000baseX_Full_BIT = 41, -+ ETHTOOL_LINK_MODE_10000baseCR_Full_BIT = 42, -+ ETHTOOL_LINK_MODE_10000baseSR_Full_BIT = 43, -+ ETHTOOL_LINK_MODE_10000baseLR_Full_BIT = 44, -+ ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT = 45, -+ ETHTOOL_LINK_MODE_10000baseER_Full_BIT = 46, -+ ETHTOOL_LINK_MODE_2500baseT_Full_BIT = 47, -+ ETHTOOL_LINK_MODE_5000baseT_Full_BIT = 48, -+ ETHTOOL_LINK_MODE_FEC_NONE_BIT = 49, -+ ETHTOOL_LINK_MODE_FEC_RS_BIT = 50, -+ ETHTOOL_LINK_MODE_FEC_BASER_BIT = 51, -+ __ETHTOOL_LINK_MODE_LAST = 51, -+}; -+ +struct mdio_board_info { + const char *bus_id; + char modalias[32]; @@ -77746,6 +82659,19 @@ index 0000000..bcb9d76 + struct mdio_board_info board_info; +}; + ++struct mdiobus_devres { ++ struct mii_bus *mii; ++}; ++ ++enum netdev_state_t { ++ __LINK_STATE_START = 0, ++ __LINK_STATE_PRESENT = 1, ++ __LINK_STATE_NOCARRIER = 2, ++ __LINK_STATE_LINKWATCH_PENDING = 3, ++ __LINK_STATE_DORMANT = 4, ++ __LINK_STATE_TESTING = 5, ++}; ++ +struct mii_ioctl_data { + __u16 phy_id; + __u16 reg_num; @@ -77753,9 +82679,44 @@ index 0000000..bcb9d76 + __u16 val_out; +}; + ++enum { ++ ETHTOOL_MSG_KERNEL_NONE = 0, ++ ETHTOOL_MSG_STRSET_GET_REPLY = 1, ++ ETHTOOL_MSG_LINKINFO_GET_REPLY = 2, ++ ETHTOOL_MSG_LINKINFO_NTF = 3, ++ ETHTOOL_MSG_LINKMODES_GET_REPLY = 4, ++ ETHTOOL_MSG_LINKMODES_NTF = 5, ++ ETHTOOL_MSG_LINKSTATE_GET_REPLY = 6, ++ ETHTOOL_MSG_DEBUG_GET_REPLY = 7, ++ ETHTOOL_MSG_DEBUG_NTF = 8, ++ ETHTOOL_MSG_WOL_GET_REPLY = 9, ++ ETHTOOL_MSG_WOL_NTF = 10, ++ ETHTOOL_MSG_FEATURES_GET_REPLY = 11, ++ ETHTOOL_MSG_FEATURES_SET_REPLY = 12, ++ ETHTOOL_MSG_FEATURES_NTF = 13, ++ ETHTOOL_MSG_PRIVFLAGS_GET_REPLY = 14, ++ ETHTOOL_MSG_PRIVFLAGS_NTF = 15, ++ ETHTOOL_MSG_RINGS_GET_REPLY = 16, ++ ETHTOOL_MSG_RINGS_NTF = 17, ++ ETHTOOL_MSG_CHANNELS_GET_REPLY = 18, ++ ETHTOOL_MSG_CHANNELS_NTF = 19, ++ ETHTOOL_MSG_COALESCE_GET_REPLY = 20, ++ ETHTOOL_MSG_COALESCE_NTF = 21, ++ ETHTOOL_MSG_PAUSE_GET_REPLY = 22, ++ ETHTOOL_MSG_PAUSE_NTF = 23, ++ ETHTOOL_MSG_EEE_GET_REPLY = 24, ++ ETHTOOL_MSG_EEE_NTF = 25, ++ ETHTOOL_MSG_TSINFO_GET_REPLY = 26, ++ ETHTOOL_MSG_CABLE_TEST_NTF = 27, ++ ETHTOOL_MSG_CABLE_TEST_TDR_NTF = 28, ++ ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY = 29, ++ __ETHTOOL_MSG_KERNEL_CNT = 30, ++ ETHTOOL_MSG_KERNEL_MAX = 29, ++}; ++ +struct phy_led_trigger { + struct led_trigger trigger; -+ char name[75]; ++ char name[76]; + unsigned int speed; +}; + @@ -77765,6 +82726,14 @@ index 0000000..bcb9d76 + u8 bit; +}; + ++struct ethtool_phy_ops { ++ int (*get_sset_count)(struct phy_device *); ++ int (*get_strings)(struct phy_device *, u8 *); ++ int (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); ++ int (*start_cable_test)(struct phy_device *, struct netlink_ext_ack *); ++ int (*start_cable_test_tdr)(struct phy_device *, struct netlink_ext_ack *, const struct phy_tdr_config *); ++}; ++ +struct phy_fixup { + struct list_head list; + char bus_id[64]; @@ -77773,6 +82742,135 @@ index 0000000..bcb9d76 + int (*run)(struct phy_device *); +}; + ++struct sfp_eeprom_base { ++ u8 phys_id; ++ u8 phys_ext_id; ++ u8 connector; ++ u8 if_1x_copper_passive: 1; ++ u8 if_1x_copper_active: 1; ++ u8 if_1x_lx: 1; ++ u8 if_1x_sx: 1; ++ u8 e10g_base_sr: 1; ++ u8 e10g_base_lr: 1; ++ u8 e10g_base_lrm: 1; ++ u8 e10g_base_er: 1; ++ u8 sonet_oc3_short_reach: 1; ++ u8 sonet_oc3_smf_intermediate_reach: 1; ++ u8 sonet_oc3_smf_long_reach: 1; ++ u8 unallocated_5_3: 1; ++ u8 sonet_oc12_short_reach: 1; ++ u8 sonet_oc12_smf_intermediate_reach: 1; ++ u8 sonet_oc12_smf_long_reach: 1; ++ u8 unallocated_5_7: 1; ++ u8 sonet_oc48_short_reach: 1; ++ u8 sonet_oc48_intermediate_reach: 1; ++ u8 sonet_oc48_long_reach: 1; ++ u8 sonet_reach_bit2: 1; ++ u8 sonet_reach_bit1: 1; ++ u8 sonet_oc192_short_reach: 1; ++ u8 escon_smf_1310_laser: 1; ++ u8 escon_mmf_1310_led: 1; ++ u8 e1000_base_sx: 1; ++ u8 e1000_base_lx: 1; ++ u8 e1000_base_cx: 1; ++ u8 e1000_base_t: 1; ++ u8 e100_base_lx: 1; ++ u8 e100_base_fx: 1; ++ u8 e_base_bx10: 1; ++ u8 e_base_px: 1; ++ u8 fc_tech_electrical_inter_enclosure: 1; ++ u8 fc_tech_lc: 1; ++ u8 fc_tech_sa: 1; ++ u8 fc_ll_m: 1; ++ u8 fc_ll_l: 1; ++ u8 fc_ll_i: 1; ++ u8 fc_ll_s: 1; ++ u8 fc_ll_v: 1; ++ u8 unallocated_8_0: 1; ++ u8 unallocated_8_1: 1; ++ u8 sfp_ct_passive: 1; ++ u8 sfp_ct_active: 1; ++ u8 fc_tech_ll: 1; ++ u8 fc_tech_sl: 1; ++ u8 fc_tech_sn: 1; ++ u8 fc_tech_electrical_intra_enclosure: 1; ++ u8 fc_media_sm: 1; ++ u8 unallocated_9_1: 1; ++ u8 fc_media_m5: 1; ++ u8 fc_media_m6: 1; ++ u8 fc_media_tv: 1; ++ u8 fc_media_mi: 1; ++ u8 fc_media_tp: 1; ++ u8 fc_media_tw: 1; ++ u8 fc_speed_100: 1; ++ u8 unallocated_10_1: 1; ++ u8 fc_speed_200: 1; ++ u8 fc_speed_3200: 1; ++ u8 fc_speed_400: 1; ++ u8 fc_speed_1600: 1; ++ u8 fc_speed_800: 1; ++ u8 fc_speed_1200: 1; ++ u8 encoding; ++ u8 br_nominal; ++ u8 rate_id; ++ u8 link_len[6]; ++ char vendor_name[16]; ++ u8 extended_cc; ++ char vendor_oui[3]; ++ char vendor_pn[16]; ++ char vendor_rev[4]; ++ union { ++ __be16 optical_wavelength; ++ __be16 cable_compliance; ++ struct { ++ u8 sff8431_app_e: 1; ++ u8 fc_pi_4_app_h: 1; ++ u8 reserved60_2: 6; ++ u8 reserved61: 8; ++ } passive; ++ struct { ++ u8 sff8431_app_e: 1; ++ u8 fc_pi_4_app_h: 1; ++ u8 sff8431_lim: 1; ++ u8 fc_pi_4_lim: 1; ++ u8 reserved60_4: 4; ++ u8 reserved61: 8; ++ } active; ++ }; ++ u8 reserved62; ++ u8 cc_base; ++}; ++ ++struct sfp_eeprom_ext { ++ __be16 options; ++ u8 br_max; ++ u8 br_min; ++ char vendor_sn[16]; ++ char datecode[8]; ++ u8 diagmon; ++ u8 enhopts; ++ u8 sff8472_compliance; ++ u8 cc_ext; ++}; ++ ++struct sfp_eeprom_id { ++ struct sfp_eeprom_base base; ++ struct sfp_eeprom_ext ext; ++}; ++ ++struct sfp_upstream_ops { ++ void (*attach)(void *, struct sfp_bus *); ++ void (*detach)(void *, struct sfp_bus *); ++ int (*module_insert)(void *, const struct sfp_eeprom_id *); ++ void (*module_remove)(void *); ++ int (*module_start)(void *); ++ void (*module_stop)(void *); ++ void (*link_down)(void *); ++ void (*link_up)(void *); ++ int (*connect_phy)(void *, struct phy_device *); ++ void (*disconnect_phy)(void *); ++}; ++ +struct trace_event_raw_mdio_access { + struct trace_entry ent; + char busid[61]; @@ -77785,10 +82883,18 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_mdio_access {}; + ++typedef void (*btf_trace_mdio_access)(void *, struct mii_bus *, char, u8, unsigned int, u16, int); ++ ++struct mdio_bus_stat_attr { ++ int addr; ++ unsigned int field_offset; ++}; ++ +struct mdio_driver { + struct mdio_driver_common mdiodrv; + int (*probe)(struct mdio_device *); + void (*remove)(struct mdio_device *); ++ void (*shutdown)(struct mdio_device *); +}; + +struct fixed_phy_status { @@ -77800,10 +82906,10 @@ index 0000000..bcb9d76 +}; + +struct swmii_regs { -+ u16 bmcr; + u16 bmsr; + u16 lpa; + u16 lpagb; ++ u16 estat; +}; + +enum { @@ -77814,6 +82920,17 @@ index 0000000..bcb9d76 + SWMII_DUPLEX_FULL = 1, +}; + ++struct mii_timestamping_ctrl { ++ struct mii_timestamper * (*probe_channel)(struct device *, unsigned int); ++ void (*release_channel)(struct device *, struct mii_timestamper *); ++}; ++ ++struct mii_timestamping_desc { ++ struct list_head list; ++ struct mii_timestamping_ctrl *ctrl; ++ struct device *device; ++}; ++ +struct fixed_mdio_bus { + struct mii_bus *mii_bus; + struct list_head phys; @@ -77822,11 +82939,11 @@ index 0000000..bcb9d76 +struct fixed_phy { + int addr; + struct phy_device *phydev; -+ seqcount_t seqcount; + struct fixed_phy_status status; ++ bool no_carrier; + int (*link_update)(struct net_device *, struct fixed_phy_status *); + struct list_head node; -+ int link_gpio; ++ struct gpio_desc *link_gpiod; +}; + +struct ptp_clock_time { @@ -77842,11 +82959,17 @@ index 0000000..bcb9d76 +}; + +struct ptp_perout_request { -+ struct ptp_clock_time start; ++ union { ++ struct ptp_clock_time start; ++ struct ptp_clock_time phase; ++ }; + struct ptp_clock_time period; + unsigned int index; + unsigned int flags; -+ unsigned int rsv[4]; ++ union { ++ struct ptp_clock_time on; ++ unsigned int rsv[4]; ++ }; +}; + +enum ptp_pin_function { @@ -77888,13 +83011,19 @@ index 0000000..bcb9d76 + struct ptp_pin_desc *pin_config; + int (*adjfine)(struct ptp_clock_info *, long int); + int (*adjfreq)(struct ptp_clock_info *, s32); ++ int (*adjphase)(struct ptp_clock_info *, s32); + int (*adjtime)(struct ptp_clock_info *, s64); + int (*gettime64)(struct ptp_clock_info *, struct timespec64 *); ++ int (*gettimex64)(struct ptp_clock_info *, struct timespec64 *, struct ptp_system_timestamp *); + int (*getcrosststamp)(struct ptp_clock_info *, struct system_device_crosststamp *); + int (*settime64)(struct ptp_clock_info *, const struct timespec64 *); + int (*enable)(struct ptp_clock_info *, struct ptp_clock_request *, int); + int (*verify)(struct ptp_clock_info *, unsigned int, enum ptp_pin_function, unsigned int); + long int (*do_aux_work)(struct ptp_clock_info *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct ptp_clock; @@ -78038,6 +83167,57 @@ index 0000000..bcb9d76 + PCMCIA_NUM_RESOURCES = 6, +}; + ++enum usb_device_speed { ++ USB_SPEED_UNKNOWN = 0, ++ USB_SPEED_LOW = 1, ++ USB_SPEED_FULL = 2, ++ USB_SPEED_HIGH = 3, ++ USB_SPEED_WIRELESS = 4, ++ USB_SPEED_SUPER = 5, ++ USB_SPEED_SUPER_PLUS = 6, ++}; ++ ++enum usb_device_state { ++ USB_STATE_NOTATTACHED = 0, ++ USB_STATE_ATTACHED = 1, ++ USB_STATE_POWERED = 2, ++ USB_STATE_RECONNECTING = 3, ++ USB_STATE_UNAUTHENTICATED = 4, ++ USB_STATE_DEFAULT = 5, ++ USB_STATE_ADDRESS = 6, ++ USB_STATE_CONFIGURED = 7, ++ USB_STATE_SUSPENDED = 8, ++}; ++ ++enum usb_otg_state { ++ OTG_STATE_UNDEFINED = 0, ++ OTG_STATE_B_IDLE = 1, ++ OTG_STATE_B_SRP_INIT = 2, ++ OTG_STATE_B_PERIPHERAL = 3, ++ OTG_STATE_B_WAIT_ACON = 4, ++ OTG_STATE_B_HOST = 5, ++ OTG_STATE_A_IDLE = 6, ++ OTG_STATE_A_WAIT_VRISE = 7, ++ OTG_STATE_A_WAIT_BCON = 8, ++ OTG_STATE_A_HOST = 9, ++ OTG_STATE_A_SUSPEND = 10, ++ OTG_STATE_A_PERIPHERAL = 11, ++ OTG_STATE_A_WAIT_VFALL = 12, ++ OTG_STATE_A_VBUS_ERR = 13, ++}; ++ ++enum usb_dr_mode { ++ USB_DR_MODE_UNKNOWN = 0, ++ USB_DR_MODE_HOST = 1, ++ USB_DR_MODE_PERIPHERAL = 2, ++ USB_DR_MODE_OTG = 3, ++}; ++ ++enum usb_led_event { ++ USB_LED_EVENT_HOST = 0, ++ USB_LED_EVENT_GADGET = 1, ++}; ++ +struct usb_device_id { + __u16 match_flags; + __u16 idVendor; @@ -78186,28 +83366,6 @@ index 0000000..bcb9d76 + __u8 bDevCapabilityType; +}; + -+enum usb_device_speed { -+ USB_SPEED_UNKNOWN = 0, -+ USB_SPEED_LOW = 1, -+ USB_SPEED_FULL = 2, -+ USB_SPEED_HIGH = 3, -+ USB_SPEED_WIRELESS = 4, -+ USB_SPEED_SUPER = 5, -+ USB_SPEED_SUPER_PLUS = 6, -+}; -+ -+enum usb_device_state { -+ USB_STATE_NOTATTACHED = 0, -+ USB_STATE_ATTACHED = 1, -+ USB_STATE_POWERED = 2, -+ USB_STATE_RECONNECTING = 3, -+ USB_STATE_UNAUTHENTICATED = 4, -+ USB_STATE_DEFAULT = 5, -+ USB_STATE_ADDRESS = 6, -+ USB_STATE_CONFIGURED = 7, -+ USB_STATE_SUSPENDED = 8, -+}; -+ +enum usb3_link_state { + USB3_LPM_U0 = 0, + USB3_LPM_U1 = 1, @@ -78305,7 +83463,6 @@ index 0000000..bcb9d76 + struct device *sysdev; + int busnum; + const char *bus_name; -+ u8 uses_dma; + u8 uses_pio_for_control; + u8 otg_port; + unsigned int is_b_host: 1; @@ -78373,6 +83530,7 @@ index 0000000..bcb9d76 + short unsigned int bus_mA; + u8 portnum; + u8 level; ++ u8 devaddr; + unsigned int can_submit: 1; + unsigned int persist_enabled: 1; + unsigned int have_langid: 1; @@ -78407,6 +83565,14 @@ index 0000000..bcb9d76 + struct usb3_lpm_parameters u2_params; + unsigned int lpm_disable_count; + u16 hub_delay; ++ unsigned int use_generic_driver: 1; ++}; ++ ++enum usb_port_connect_type { ++ USB_PORT_CONNECT_TYPE_UNKNOWN = 0, ++ USB_PORT_CONNECT_TYPE_HOT_PLUG = 1, ++ USB_PORT_CONNECT_TYPE_HARD_WIRED = 2, ++ USB_PORT_NOT_USED = 3, +}; + +struct usb_tt { @@ -78440,6 +83606,7 @@ index 0000000..bcb9d76 + int (*pre_reset)(struct usb_interface *); + int (*post_reset)(struct usb_interface *); + const struct usb_device_id *id_table; ++ const struct attribute_group **dev_groups; + struct usb_dynids dynids; + struct usbdrv_wrap drvwrap; + unsigned int no_dynamic_id: 1; @@ -78450,12 +83617,16 @@ index 0000000..bcb9d76 + +struct usb_device_driver { + const char *name; ++ bool (*match)(struct usb_device *); + int (*probe)(struct usb_device *); + void (*disconnect)(struct usb_device *); + int (*suspend)(struct usb_device *, pm_message_t); + int (*resume)(struct usb_device *, pm_message_t); ++ const struct attribute_group **dev_groups; + struct usbdrv_wrap drvwrap; ++ const struct usb_device_id *id_table; + unsigned int supports_autosuspend: 1; ++ unsigned int generic_subclass: 1; +}; + +struct usb_iso_packet_descriptor { @@ -78479,10 +83650,10 @@ index 0000000..bcb9d76 + +struct urb { + struct kref kref; ++ int unlinked; + void *hcpriv; + atomic_t use_count; + atomic_t reject; -+ int unlinked; + struct list_head urb_list; + struct list_head anchor_list; + struct usb_anchor *anchor; @@ -78518,6 +83689,12 @@ index 0000000..bcb9d76 + struct usb_host_endpoint *completing_ep; +}; + ++enum usb_dev_authorize_policy { ++ USB_DEVICE_AUTHORIZE_NONE = 0, ++ USB_DEVICE_AUTHORIZE_ALL = 1, ++ USB_DEVICE_AUTHORIZE_INTERNAL = 2, ++}; ++ +struct usb_phy_roothub; + +struct hc_driver; @@ -78533,10 +83710,12 @@ index 0000000..bcb9d76 + struct timer_list rh_timer; + struct urb *status_urb; + struct work_struct wakeup_work; ++ struct work_struct died_work; + const struct hc_driver *driver; + struct usb_phy *usb_phy; + struct usb_phy_roothub *phy_roothub; + long unsigned int flags; ++ enum usb_dev_authorize_policy dev_policy; + unsigned int rh_registered: 1; + unsigned int rh_pollable: 1; + unsigned int msix_enabled: 1; @@ -78560,8 +83739,9 @@ index 0000000..bcb9d76 + struct mutex *bandwidth_mutex; + struct usb_hcd *shared_hcd; + struct usb_hcd *primary_hcd; -+ struct dma_pool___2 *pool[4]; ++ struct dma_pool *pool[4]; + int state; ++ struct gen_pool *localmem_pool; + long unsigned int hcd_priv[0]; +}; + @@ -78692,142 +83872,6 @@ index 0000000..bcb9d76 + enum usb_charger_type (*charger_detect)(struct usb_phy *); +}; + -+struct usb_mon_operations { -+ void (*urb_submit)(struct usb_bus *, struct urb *); -+ void (*urb_submit_error)(struct usb_bus *, struct urb *, int); -+ void (*urb_complete)(struct usb_bus *, struct urb *, int); -+}; -+ -+struct regulator; -+ -+enum phy_mode { -+ PHY_MODE_INVALID = 0, -+ PHY_MODE_USB_HOST = 1, -+ PHY_MODE_USB_HOST_LS = 2, -+ PHY_MODE_USB_HOST_FS = 3, -+ PHY_MODE_USB_HOST_HS = 4, -+ PHY_MODE_USB_HOST_SS = 5, -+ PHY_MODE_USB_DEVICE = 6, -+ PHY_MODE_USB_DEVICE_LS = 7, -+ PHY_MODE_USB_DEVICE_FS = 8, -+ PHY_MODE_USB_DEVICE_HS = 9, -+ PHY_MODE_USB_DEVICE_SS = 10, -+ PHY_MODE_USB_OTG = 11, -+ PHY_MODE_SGMII = 12, -+ PHY_MODE_2500SGMII = 13, -+ PHY_MODE_10GKR = 14, -+ PHY_MODE_UFS_HS_A = 15, -+ PHY_MODE_UFS_HS_B = 16, -+}; -+ -+struct phy; -+ -+struct phy_ops { -+ int (*init)(struct phy *); -+ int (*exit)(struct phy *); -+ int (*power_on)(struct phy *); -+ int (*power_off)(struct phy *); -+ int (*set_mode)(struct phy *, enum phy_mode); -+ int (*reset)(struct phy *); -+ int (*calibrate)(struct phy *); -+ struct module *owner; -+}; -+ -+struct phy_attrs { -+ u32 bus_width; -+ enum phy_mode mode; -+}; -+ -+struct phy { -+ struct device dev; -+ int id; -+ const struct phy_ops *ops; -+ struct mutex mutex; -+ int init_count; -+ int power_count; -+ struct phy_attrs attrs; -+ struct regulator *pwr; -+}; -+ -+enum usb_otg_state { -+ OTG_STATE_UNDEFINED = 0, -+ OTG_STATE_B_IDLE = 1, -+ OTG_STATE_B_SRP_INIT = 2, -+ OTG_STATE_B_PERIPHERAL = 3, -+ OTG_STATE_B_WAIT_ACON = 4, -+ OTG_STATE_B_HOST = 5, -+ OTG_STATE_A_IDLE = 6, -+ OTG_STATE_A_WAIT_VRISE = 7, -+ OTG_STATE_A_WAIT_BCON = 8, -+ OTG_STATE_A_HOST = 9, -+ OTG_STATE_A_SUSPEND = 10, -+ OTG_STATE_A_PERIPHERAL = 11, -+ OTG_STATE_A_WAIT_VFALL = 12, -+ OTG_STATE_A_VBUS_ERR = 13, -+}; -+ -+struct usb_phy_io_ops { -+ int (*read)(struct usb_phy *, u32); -+ int (*write)(struct usb_phy *, u32, u32); -+}; -+ -+struct usb_gadget; -+ -+struct usb_otg { -+ u8 default_a; -+ struct phy *phy; -+ struct usb_phy *usb_phy; -+ struct usb_bus *host; -+ struct usb_gadget *gadget; -+ enum usb_otg_state state; -+ int (*set_host)(struct usb_otg *, struct usb_bus *); -+ int (*set_peripheral)(struct usb_otg *, struct usb_gadget *); -+ int (*set_vbus)(struct usb_otg *, bool); -+ int (*start_srp)(struct usb_otg *); -+ int (*start_hnp)(struct usb_otg *); -+}; -+ -+struct find_interface_arg { -+ int minor; -+ struct device_driver *drv; -+}; -+ -+struct each_dev_arg { -+ void *data; -+ int (*fn)(struct usb_device *, void *); -+}; -+ -+struct usb_qualifier_descriptor { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __le16 bcdUSB; -+ __u8 bDeviceClass; -+ __u8 bDeviceSubClass; -+ __u8 bDeviceProtocol; -+ __u8 bMaxPacketSize0; -+ __u8 bNumConfigurations; -+ __u8 bRESERVED; -+}; -+ -+struct usb_set_sel_req { -+ __u8 u1_sel; -+ __u8 u1_pel; -+ __le16 u2_sel; -+ __le16 u2_pel; -+}; -+ -+enum usb_port_connect_type { -+ USB_PORT_CONNECT_TYPE_UNKNOWN = 0, -+ USB_PORT_CONNECT_TYPE_HOT_PLUG = 1, -+ USB_PORT_CONNECT_TYPE_HARD_WIRED = 2, -+ USB_PORT_NOT_USED = 3, -+}; -+ -+struct usbdevfs_hub_portinfo { -+ char nports; -+ char port[127]; -+}; -+ +struct usb_port_status { + __le16 wPortStatus; + __le16 wPortChange; @@ -78859,23 +83903,127 @@ index 0000000..bcb9d76 + } u; +} __attribute__((packed)); + -+enum hub_led_mode { -+ INDICATOR_AUTO = 0, -+ INDICATOR_CYCLE = 1, -+ INDICATOR_GREEN_BLINK = 2, -+ INDICATOR_GREEN_BLINK_OFF = 3, -+ INDICATOR_AMBER_BLINK = 4, -+ INDICATOR_AMBER_BLINK_OFF = 5, -+ INDICATOR_ALT_BLINK = 6, -+ INDICATOR_ALT_BLINK_OFF = 7, ++struct regulator; ++ ++struct phy_configure_opts_dp { ++ unsigned int link_rate; ++ unsigned int lanes; ++ unsigned int voltage[4]; ++ unsigned int pre[4]; ++ u8 ssc: 1; ++ u8 set_rate: 1; ++ u8 set_lanes: 1; ++ u8 set_voltages: 1; +}; + -+struct usb_tt_clear { -+ struct list_head clear_list; -+ unsigned int tt; -+ u16 devinfo; -+ struct usb_hcd *hcd; -+ struct usb_host_endpoint *ep; ++struct phy_configure_opts_mipi_dphy { ++ unsigned int clk_miss; ++ unsigned int clk_post; ++ unsigned int clk_pre; ++ unsigned int clk_prepare; ++ unsigned int clk_settle; ++ unsigned int clk_term_en; ++ unsigned int clk_trail; ++ unsigned int clk_zero; ++ unsigned int d_term_en; ++ unsigned int eot; ++ unsigned int hs_exit; ++ unsigned int hs_prepare; ++ unsigned int hs_settle; ++ unsigned int hs_skip; ++ unsigned int hs_trail; ++ unsigned int hs_zero; ++ unsigned int init; ++ unsigned int lpx; ++ unsigned int ta_get; ++ unsigned int ta_go; ++ unsigned int ta_sure; ++ unsigned int wakeup; ++ long unsigned int hs_clk_rate; ++ long unsigned int lp_clk_rate; ++ unsigned char lanes; ++}; ++ ++enum phy_mode { ++ PHY_MODE_INVALID = 0, ++ PHY_MODE_USB_HOST = 1, ++ PHY_MODE_USB_HOST_LS = 2, ++ PHY_MODE_USB_HOST_FS = 3, ++ PHY_MODE_USB_HOST_HS = 4, ++ PHY_MODE_USB_HOST_SS = 5, ++ PHY_MODE_USB_DEVICE = 6, ++ PHY_MODE_USB_DEVICE_LS = 7, ++ PHY_MODE_USB_DEVICE_FS = 8, ++ PHY_MODE_USB_DEVICE_HS = 9, ++ PHY_MODE_USB_DEVICE_SS = 10, ++ PHY_MODE_USB_OTG = 11, ++ PHY_MODE_UFS_HS_A = 12, ++ PHY_MODE_UFS_HS_B = 13, ++ PHY_MODE_PCIE = 14, ++ PHY_MODE_ETHERNET = 15, ++ PHY_MODE_MIPI_DPHY = 16, ++ PHY_MODE_SATA = 17, ++ PHY_MODE_LVDS = 18, ++ PHY_MODE_DP = 19, ++}; ++ ++union phy_configure_opts { ++ struct phy_configure_opts_mipi_dphy mipi_dphy; ++ struct phy_configure_opts_dp dp; ++}; ++ ++struct phy; ++ ++struct phy_ops { ++ int (*init)(struct phy *); ++ int (*exit)(struct phy *); ++ int (*power_on)(struct phy *); ++ int (*power_off)(struct phy *); ++ int (*set_mode)(struct phy *, enum phy_mode, int); ++ int (*configure)(struct phy *, union phy_configure_opts *); ++ int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *); ++ int (*reset)(struct phy *); ++ int (*calibrate)(struct phy *); ++ void (*release)(struct phy *); ++ struct module *owner; ++}; ++ ++struct phy_attrs { ++ u32 bus_width; ++ u32 max_link_rate; ++ enum phy_mode mode; ++}; ++ ++struct phy { ++ struct device dev; ++ int id; ++ const struct phy_ops *ops; ++ struct mutex mutex; ++ int init_count; ++ int power_count; ++ struct phy_attrs attrs; ++ struct regulator *pwr; ++}; ++ ++struct usb_phy_io_ops { ++ int (*read)(struct usb_phy *, u32); ++ int (*write)(struct usb_phy *, u32, u32); ++}; ++ ++struct usb_gadget; ++ ++struct usb_otg { ++ u8 default_a; ++ struct phy *phy; ++ struct usb_phy *usb_phy; ++ struct usb_bus *host; ++ struct usb_gadget *gadget; ++ enum usb_otg_state state; ++ int (*set_host)(struct usb_otg *, struct usb_bus *); ++ int (*set_peripheral)(struct usb_otg *, struct usb_gadget *); ++ int (*set_vbus)(struct usb_otg *, bool); ++ int (*start_srp)(struct usb_otg *); ++ int (*start_hnp)(struct usb_otg *); +}; + +typedef u32 usb_port_location_t; @@ -78910,12 +84058,15 @@ index 0000000..bcb9d76 + unsigned int quiescing: 1; + unsigned int disconnected: 1; + unsigned int in_reset: 1; ++ unsigned int quirk_disable_autosuspend: 1; + unsigned int quirk_check_port_auto_suspend: 1; + unsigned int has_indicators: 1; + u8 indicator[31]; + struct delayed_work leds; + struct delayed_work init_work; + struct work_struct events; ++ spinlock_t irq_urb_lock; ++ struct timer_list irq_urb_retry; + struct usb_port **ports; +}; + @@ -78938,6 +84089,59 @@ index 0000000..bcb9d76 + unsigned int usb3_lpm_u2_permit: 1; +}; + ++struct find_interface_arg { ++ int minor; ++ struct device_driver *drv; ++}; ++ ++struct each_dev_arg { ++ void *data; ++ int (*fn)(struct usb_device *, void *); ++}; ++ ++struct usb_qualifier_descriptor { ++ __u8 bLength; ++ __u8 bDescriptorType; ++ __le16 bcdUSB; ++ __u8 bDeviceClass; ++ __u8 bDeviceSubClass; ++ __u8 bDeviceProtocol; ++ __u8 bMaxPacketSize0; ++ __u8 bNumConfigurations; ++ __u8 bRESERVED; ++}; ++ ++struct usb_set_sel_req { ++ __u8 u1_sel; ++ __u8 u1_pel; ++ __le16 u2_sel; ++ __le16 u2_pel; ++}; ++ ++struct usbdevfs_hub_portinfo { ++ char nports; ++ char port[127]; ++}; ++ ++enum hub_led_mode { ++ INDICATOR_AUTO = 0, ++ INDICATOR_CYCLE = 1, ++ INDICATOR_GREEN_BLINK = 2, ++ INDICATOR_GREEN_BLINK_OFF = 3, ++ INDICATOR_AMBER_BLINK = 4, ++ INDICATOR_AMBER_BLINK_OFF = 5, ++ INDICATOR_ALT_BLINK = 6, ++ INDICATOR_ALT_BLINK_OFF = 7, ++}; ++ ++struct usb_tt_clear { ++ struct list_head clear_list; ++ unsigned int tt; ++ u16 devinfo; ++ struct usb_hcd *hcd; ++ struct usb_host_endpoint *ep; ++}; ++ +enum hub_activation_type { + HUB_INIT = 0, + HUB_INIT2 = 1, @@ -78961,9 +84165,10 @@ index 0000000..bcb9d76 + __le16 wLength; +}; + -+enum usb_led_event { -+ USB_LED_EVENT_HOST = 0, -+ USB_LED_EVENT_GADGET = 1, ++struct usb_mon_operations { ++ void (*urb_submit)(struct usb_bus *, struct urb *); ++ void (*urb_submit_error)(struct usb_bus *, struct urb *, int); ++ void (*urb_complete)(struct usb_bus *, struct urb *, int); +}; + +struct usb_sg_request { @@ -79193,6 +84398,15 @@ index 0000000..bcb9d76 + unsigned char slow; +}; + ++struct usbdevfs_conninfo_ex { ++ __u32 size; ++ __u32 busnum; ++ __u32 devnum; ++ __u32 speed; ++ __u8 num_ports; ++ __u8 ports[7]; ++}; ++ +struct usbdevfs_iso_packet_desc { + unsigned int length; + unsigned int actual_length; @@ -79280,7 +84494,7 @@ index 0000000..bcb9d76 + compat_caddr_t data; +}; + -+struct usb_dev_state___2 { ++struct usb_dev_state { + struct list_head list; + struct usb_device *dev; + struct file *file; @@ -79289,14 +84503,17 @@ index 0000000..bcb9d76 + struct list_head async_completed; + struct list_head memory_list; + wait_queue_head_t wait; ++ wait_queue_head_t wait_for_resume; + unsigned int discsignr; + struct pid *disc_pid; + const struct cred *cred; -+ void *disccontext; ++ sigval_t disccontext; + long unsigned int ifclaimed; + u32 disabled_bulk_eps; -+ bool privileges_dropped; + long unsigned int interface_allowed_mask; ++ int not_yet_resumed; ++ bool suspend_allowed; ++ bool privileges_dropped; +}; + +struct usb_memory { @@ -79307,18 +84524,19 @@ index 0000000..bcb9d76 + void *mem; + dma_addr_t dma_handle; + long unsigned int vm_start; -+ struct usb_dev_state___2 *ps; ++ struct usb_dev_state *ps; +}; + +struct async { + struct list_head asynclist; -+ struct usb_dev_state___2 *ps; ++ struct usb_dev_state *ps; + struct pid *pid; + const struct cred *cred; + unsigned int signr; + unsigned int ifnum; + void *userbuffer; + void *userurb; ++ sigval_t userurb_sigval; + struct urb *urb; + struct usb_memory *usbm; + unsigned int mem_usage; @@ -79338,17 +84556,12 @@ index 0000000..bcb9d76 + u32 flags; +}; + -+struct device_connect_event { -+ atomic_t count; -+ wait_queue_head_t wait; -+}; -+ +struct class_info { + int class; + char *class_name; +}; + -+struct usb_phy_roothub___2 { ++struct usb_phy_roothub { + struct phy *phy; + struct list_head list; +}; @@ -79548,7 +84761,7 @@ index 0000000..bcb9d76 + struct amd_chipset_type sb_type; + int isoc_reqs; + int probe_count; -+ int probe_result; ++ bool need_pll_quirk; +}; + +struct ehci_stats { @@ -79669,10 +84882,10 @@ index 0000000..bcb9d76 + long unsigned int port_c_suspend; + long unsigned int suspended_ports; + long unsigned int resuming_ports; -+ struct dma_pool___2 *qh_pool; -+ struct dma_pool___2 *qtd_pool; -+ struct dma_pool___2 *itd_pool; -+ struct dma_pool___2 *sitd_pool; ++ struct dma_pool *qh_pool; ++ struct dma_pool *qtd_pool; ++ struct dma_pool *itd_pool; ++ struct dma_pool *sitd_pool; + unsigned int random_frame; + long unsigned int next_statechange; + ktime_t last_periodic_enable; @@ -79692,6 +84905,8 @@ index 0000000..bcb9d76 + unsigned int frame_index_bug: 1; + unsigned int need_oc_pp_cycle: 1; + unsigned int imx28_write_fix: 1; ++ unsigned int is_aspeed: 1; ++ unsigned int zx_wakeup_clear: 1; + __le32 *ohci_hcctrl_reg; + unsigned int has_hostpc: 1; + unsigned int has_tdi_phy_lpm: 1; @@ -80013,8 +85228,8 @@ index 0000000..bcb9d76 + struct ed *ed_controltail; + struct ed *periodic[32]; + void (*start_hnp)(struct ohci_hcd *); -+ struct dma_pool___2 *td_cache; -+ struct dma_pool___2 *ed_cache; ++ struct dma_pool *td_cache; ++ struct dma_pool *ed_cache; + struct td *td_hash[64]; + struct td *dl_start; + struct td *dl_end; @@ -80108,8 +85323,8 @@ index 0000000..bcb9d76 + struct dentry *dentry; + long unsigned int io_addr; + void *regs; -+ struct dma_pool___2 *qh_pool; -+ struct dma_pool___2 *td_pool; ++ struct dma_pool *qh_pool; ++ struct dma_pool *td_pool; + struct uhci_td *term_td; + struct uhci_qh *skelqh[11]; + struct uhci_qh *next_qh; @@ -80298,7 +85513,7 @@ index 0000000..bcb9d76 + struct xhci_stream_ctx *stream_ctx_array; + unsigned int num_stream_ctxs; + dma_addr_t ctx_array_dma; -+ struct radix_tree_root trb_address_map; ++ struct xarray trb_address_map; + struct xhci_command *free_streams_command; +}; + @@ -80323,6 +85538,7 @@ index 0000000..bcb9d76 + struct xhci_segment *deq_seg; + struct list_head td_list; + u32 cycle_state; ++ unsigned int err_count; + unsigned int stream_id; + unsigned int num_segs; + unsigned int num_trbs_free; @@ -80330,7 +85546,7 @@ index 0000000..bcb9d76 + unsigned int bounce_buf_len; + enum xhci_ring_type type; + bool last_td_was_short; -+ struct radix_tree_root *trb_address_map; ++ struct xarray *trb_address_map; +}; + +struct xhci_bw_info { @@ -80392,6 +85608,7 @@ index 0000000..bcb9d76 + long unsigned int resuming_ports; + long unsigned int rexit_ports; + struct completion rexit_done[31]; ++ struct completion u3exit_done[31]; +}; + +struct xhci_port; @@ -80400,6 +85617,7 @@ index 0000000..bcb9d76 + struct xhci_port **ports; + unsigned int num_ports; + struct usb_hcd *hcd; ++ struct xhci_bus_state bus_state; + u8 maj_rev; + u8 min_rev; +}; @@ -80441,6 +85659,7 @@ index 0000000..bcb9d76 + int msix_count; + struct clk *clk; + struct clk *reg_clk; ++ struct reset_control *reset; + struct xhci_device_context_array *dcbaa; + struct xhci_ring *cmd_ring; + unsigned int cmd_ring_state; @@ -80457,21 +85676,19 @@ index 0000000..bcb9d76 + struct xhci_command *lpm_command; + struct xhci_virt_device *devs[256]; + struct xhci_root_port_bw_info *rh_bw; -+ struct dma_pool___2 *device_pool; -+ struct dma_pool___2 *segment_pool; -+ struct dma_pool___2 *small_streams_pool; -+ struct dma_pool___2 *medium_streams_pool; ++ struct dma_pool *device_pool; ++ struct dma_pool *segment_pool; ++ struct dma_pool *small_streams_pool; ++ struct dma_pool *medium_streams_pool; + unsigned int xhc_state; + u32 command; + struct s3_save s3; + long long unsigned int quirks; + unsigned int num_active_eps; + unsigned int limit_active_eps; -+ struct xhci_bus_state bus_state[2]; + struct xhci_port *hw_ports; + struct xhci_hub usb2_rhub; + struct xhci_hub usb3_rhub; -+ unsigned int sw_lpm_support: 1; + unsigned int hw_lpm_support: 1; + unsigned int broken_suspend: 1; + u32 *ext_caps; @@ -80614,6 +85831,8 @@ index 0000000..bcb9d76 + size_t extra_priv_size; + int (*reset)(struct usb_hcd *); + int (*start)(struct usb_hcd *); ++ int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); ++ void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); +}; + +typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); @@ -80623,18 +85842,6 @@ index 0000000..bcb9d76 + EP_SOFT_RESET = 1, +}; + -+struct kfifo { -+ union { -+ struct __kfifo kfifo; -+ unsigned char *type; -+ const unsigned char *const_type; -+ char (*rectype)[0]; -+ void *ptr; -+ const void *ptr_const; -+ }; -+ unsigned char buf[0]; -+}; -+ +struct dbc_regs { + __le32 capability; + __le32 doorbell; @@ -80667,23 +85874,6 @@ index 0000000..bcb9d76 + DS_STALLED = 5, +}; + -+struct dbc_ep; -+ -+struct dbc_request { -+ void *buf; -+ unsigned int length; -+ dma_addr_t dma; -+ void (*complete)(struct xhci_hcd *, struct dbc_request *); -+ struct list_head list_pool; -+ int status; -+ unsigned int actual; -+ struct dbc_ep *dep; -+ struct list_head list_pending; -+ dma_addr_t trb_dma; -+ union xhci_trb *trb; -+ unsigned int direction: 1; -+}; -+ +struct xhci_dbc; + +struct dbc_ep { @@ -80693,22 +85883,11 @@ index 0000000..bcb9d76 + unsigned int direction: 1; +}; + -+struct dbc_port { -+ struct tty_port port; -+ spinlock_t port_lock; -+ struct list_head read_pool; -+ struct list_head read_queue; -+ unsigned int n_read; -+ struct tasklet_struct push; -+ struct list_head write_pool; -+ struct kfifo write_fifo; -+ bool registered; -+ struct dbc_ep *in; -+ struct dbc_ep *out; -+}; ++struct dbc_driver; + +struct xhci_dbc { + spinlock_t lock; ++ struct device *dev; + struct xhci_hcd *xhci; + struct dbc_regs *regs; + struct xhci_ring *ring_evt; @@ -80723,7 +85902,28 @@ index 0000000..bcb9d76 + struct delayed_work event_work; + unsigned int resume_required: 1; + struct dbc_ep eps[2]; -+ struct dbc_port port; ++ const struct dbc_driver *driver; ++ void *priv; ++}; ++ ++struct dbc_driver { ++ int (*configure)(struct xhci_dbc *); ++ void (*disconnect)(struct xhci_dbc *); ++}; ++ ++struct dbc_request { ++ void *buf; ++ unsigned int length; ++ dma_addr_t dma; ++ void (*complete)(struct xhci_dbc *, struct dbc_request *); ++ struct list_head list_pool; ++ int status; ++ unsigned int actual; ++ struct xhci_dbc *dbc; ++ struct list_head list_pending; ++ dma_addr_t trb_dma; ++ union xhci_trb *trb; ++ unsigned int direction: 1; +}; + +struct trace_event_raw_xhci_log_msg { @@ -80751,6 +85951,7 @@ index 0000000..bcb9d76 + u32 field1; + u32 field2; + u32 field3; ++ u32 __data_loc_str; + char __data[0]; +}; + @@ -80803,6 +86004,7 @@ index 0000000..bcb9d76 + u32 info2; + u64 deq; + u32 tx_info; ++ u32 __data_loc_str; + char __data[0]; +}; + @@ -80812,6 +86014,15 @@ index 0000000..bcb9d76 + u32 info2; + u32 tt_info; + u32 state; ++ u32 __data_loc_str; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_xhci_log_ctrl_ctx { ++ struct trace_entry ent; ++ u32 drop; ++ u32 add; ++ u32 __data_loc_str; + char __data[0]; +}; + @@ -80835,6 +86046,15 @@ index 0000000..bcb9d76 + struct trace_entry ent; + u32 portnum; + u32 portsc; ++ u32 __data_loc_str; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_xhci_log_doorbell { ++ struct trace_entry ent; ++ u32 slot; ++ u32 doorbell; ++ u32 __data_loc_str; + char __data[0]; +}; + @@ -80856,7 +86076,9 @@ index 0000000..bcb9d76 + u32 ctx_data; +}; + -+struct trace_event_data_offsets_xhci_log_trb {}; ++struct trace_event_data_offsets_xhci_log_trb { ++ u32 str; ++}; + +struct trace_event_data_offsets_xhci_log_free_virt_dev {}; + @@ -80864,16 +86086,136 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_xhci_log_urb {}; + -+struct trace_event_data_offsets_xhci_log_ep_ctx {}; ++struct trace_event_data_offsets_xhci_log_ep_ctx { ++ u32 str; ++}; + -+struct trace_event_data_offsets_xhci_log_slot_ctx {}; ++struct trace_event_data_offsets_xhci_log_slot_ctx { ++ u32 str; ++}; ++ ++struct trace_event_data_offsets_xhci_log_ctrl_ctx { ++ u32 str; ++}; + +struct trace_event_data_offsets_xhci_log_ring {}; + -+struct trace_event_data_offsets_xhci_log_portsc {}; ++struct trace_event_data_offsets_xhci_log_portsc { ++ u32 str; ++}; ++ ++struct trace_event_data_offsets_xhci_log_doorbell { ++ u32 str; ++}; + +struct trace_event_data_offsets_xhci_dbc_log_request {}; + ++typedef void (*btf_trace_xhci_dbg_address)(void *, struct va_format *); ++ ++typedef void (*btf_trace_xhci_dbg_context_change)(void *, struct va_format *); ++ ++typedef void (*btf_trace_xhci_dbg_quirks)(void *, struct va_format *); ++ ++typedef void (*btf_trace_xhci_dbg_reset_ep)(void *, struct va_format *); ++ ++typedef void (*btf_trace_xhci_dbg_cancel_urb)(void *, struct va_format *); ++ ++typedef void (*btf_trace_xhci_dbg_init)(void *, struct va_format *); ++ ++typedef void (*btf_trace_xhci_dbg_ring_expansion)(void *, struct va_format *); ++ ++typedef void (*btf_trace_xhci_address_ctx)(void *, struct xhci_hcd *, struct xhci_container_ctx *, unsigned int); ++ ++typedef void (*btf_trace_xhci_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *); ++ ++typedef void (*btf_trace_xhci_handle_command)(void *, struct xhci_ring *, struct xhci_generic_trb *); ++ ++typedef void (*btf_trace_xhci_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *); ++ ++typedef void (*btf_trace_xhci_queue_trb)(void *, struct xhci_ring *, struct xhci_generic_trb *); ++ ++typedef void (*btf_trace_xhci_dbc_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *); ++ ++typedef void (*btf_trace_xhci_dbc_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *); ++ ++typedef void (*btf_trace_xhci_dbc_gadget_ep_queue)(void *, struct xhci_ring *, struct xhci_generic_trb *); ++ ++typedef void (*btf_trace_xhci_free_virt_device)(void *, struct xhci_virt_device *); ++ ++typedef void (*btf_trace_xhci_alloc_virt_device)(void *, struct xhci_virt_device *); ++ ++typedef void (*btf_trace_xhci_setup_device)(void *, struct xhci_virt_device *); ++ ++typedef void (*btf_trace_xhci_setup_addressable_virt_device)(void *, struct xhci_virt_device *); ++ ++typedef void (*btf_trace_xhci_stop_device)(void *, struct xhci_virt_device *); ++ ++typedef void (*btf_trace_xhci_urb_enqueue)(void *, struct urb *); ++ ++typedef void (*btf_trace_xhci_urb_giveback)(void *, struct urb *); ++ ++typedef void (*btf_trace_xhci_urb_dequeue)(void *, struct urb *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_stop_ep)(void *, struct xhci_ep_ctx *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_set_deq_ep)(void *, struct xhci_ep_ctx *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_reset_ep)(void *, struct xhci_ep_ctx *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_config_ep)(void *, struct xhci_ep_ctx *); ++ ++typedef void (*btf_trace_xhci_add_endpoint)(void *, struct xhci_ep_ctx *); ++ ++typedef void (*btf_trace_xhci_alloc_dev)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_free_dev)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_disable_slot)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_discover_or_reset_device)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_setup_device_slot)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_addr_dev)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_reset_dev)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_handle_cmd_set_deq)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_configure_endpoint)(void *, struct xhci_slot_ctx *); ++ ++typedef void (*btf_trace_xhci_address_ctrl_ctx)(void *, struct xhci_input_control_ctx *); ++ ++typedef void (*btf_trace_xhci_configure_endpoint_ctrl_ctx)(void *, struct xhci_input_control_ctx *); ++ ++typedef void (*btf_trace_xhci_ring_alloc)(void *, struct xhci_ring *); ++ ++typedef void (*btf_trace_xhci_ring_free)(void *, struct xhci_ring *); ++ ++typedef void (*btf_trace_xhci_ring_expansion)(void *, struct xhci_ring *); ++ ++typedef void (*btf_trace_xhci_inc_enq)(void *, struct xhci_ring *); ++ ++typedef void (*btf_trace_xhci_inc_deq)(void *, struct xhci_ring *); ++ ++typedef void (*btf_trace_xhci_handle_port_status)(void *, u32, u32); ++ ++typedef void (*btf_trace_xhci_get_port_status)(void *, u32, u32); ++ ++typedef void (*btf_trace_xhci_hub_status_data)(void *, u32, u32); ++ ++typedef void (*btf_trace_xhci_ring_ep_doorbell)(void *, u32, u32); ++ ++typedef void (*btf_trace_xhci_ring_host_doorbell)(void *, u32, u32); ++ ++typedef void (*btf_trace_xhci_dbc_alloc_request)(void *, struct dbc_request *); ++ ++typedef void (*btf_trace_xhci_dbc_free_request)(void *, struct dbc_request *); ++ ++typedef void (*btf_trace_xhci_dbc_queue_request)(void *, struct dbc_request *); ++ ++typedef void (*btf_trace_xhci_dbc_giveback_request)(void *, struct dbc_request *); ++ +struct usb_string_descriptor { + __u8 bLength; + __u8 bDescriptorType; @@ -80890,17 +86232,40 @@ index 0000000..bcb9d76 +}; + +enum evtreturn { -+ EVT_ERR = -1, ++ EVT_ERR = 4294967295, + EVT_DONE = 0, + EVT_GSER = 1, + EVT_DISC = 2, +}; + ++struct kfifo { ++ union { ++ struct __kfifo kfifo; ++ unsigned char *type; ++ const unsigned char *const_type; ++ char (*rectype)[0]; ++ void *ptr; ++ const void *ptr_const; ++ }; ++ unsigned char buf[0]; ++}; ++ ++struct dbc_port { ++ struct tty_port port; ++ spinlock_t port_lock; ++ struct list_head read_pool; ++ struct list_head read_queue; ++ unsigned int n_read; ++ struct tasklet_struct push; ++ struct list_head write_pool; ++ struct kfifo write_fifo; ++ bool registered; ++}; ++ +struct xhci_regset { + char name[32]; + struct debugfs_regset32 regset; + size_t nregs; -+ struct dentry *parent; + struct list_head list; +}; + @@ -80912,6 +86277,9 @@ index 0000000..bcb9d76 +struct xhci_ep_priv { + char name[32]; + struct dentry *root; ++ struct xhci_stream_info *stream_info; ++ struct xhci_ring *show_ring; ++ unsigned int stream_id; +}; + +struct xhci_slot_priv { @@ -80921,151 +86289,9 @@ index 0000000..bcb9d76 + struct xhci_virt_device *dev; +}; + -+struct async_icount { -+ __u32 cts; -+ __u32 dsr; -+ __u32 rng; -+ __u32 dcd; -+ __u32 tx; -+ __u32 rx; -+ __u32 frame; -+ __u32 parity; -+ __u32 overrun; -+ __u32 brk; -+ __u32 buf_overrun; -+}; -+ -+struct usb_serial; -+ -+struct usb_serial_port { -+ struct usb_serial *serial; -+ struct tty_port port; -+ spinlock_t lock; -+ u32 minor; -+ u8 port_number; -+ unsigned char *interrupt_in_buffer; -+ struct urb *interrupt_in_urb; -+ __u8 interrupt_in_endpointAddress; -+ unsigned char *interrupt_out_buffer; -+ int interrupt_out_size; -+ struct urb *interrupt_out_urb; -+ __u8 interrupt_out_endpointAddress; -+ unsigned char *bulk_in_buffer; -+ int bulk_in_size; -+ struct urb *read_urb; -+ __u8 bulk_in_endpointAddress; -+ unsigned char *bulk_in_buffers[2]; -+ struct urb *read_urbs[2]; -+ long unsigned int read_urbs_free; -+ unsigned char *bulk_out_buffer; -+ int bulk_out_size; -+ struct urb *write_urb; -+ struct kfifo write_fifo; -+ unsigned char *bulk_out_buffers[2]; -+ struct urb *write_urbs[2]; -+ long unsigned int write_urbs_free; -+ __u8 bulk_out_endpointAddress; -+ struct async_icount icount; -+ int tx_bytes; -+ long unsigned int flags; -+ wait_queue_head_t write_wait; -+ struct work_struct work; -+ char throttled; -+ char throttle_req; -+ long unsigned int sysrq; -+ struct device dev; -+}; -+ -+struct usb_serial_driver; -+ -+struct usb_serial { -+ struct usb_device *dev; -+ struct usb_serial_driver *type; -+ struct usb_interface *interface; -+ unsigned char disconnected: 1; -+ unsigned char suspending: 1; -+ unsigned char attached: 1; -+ unsigned char minors_reserved: 1; -+ unsigned char num_ports; -+ unsigned char num_port_pointers; -+ unsigned char num_interrupt_in; -+ unsigned char num_interrupt_out; -+ unsigned char num_bulk_in; -+ unsigned char num_bulk_out; -+ struct usb_serial_port *port[16]; -+ struct kref kref; -+ struct mutex disc_mutex; -+ void *private; -+}; -+ -+struct usb_serial_endpoints; -+ -+struct usb_serial_driver { -+ const char *description; -+ const struct usb_device_id *id_table; -+ struct list_head driver_list; -+ struct device_driver driver; -+ struct usb_driver *usb_driver; -+ struct usb_dynids dynids; -+ unsigned char num_ports; -+ unsigned char num_bulk_in; -+ unsigned char num_bulk_out; -+ unsigned char num_interrupt_in; -+ unsigned char num_interrupt_out; -+ size_t bulk_in_size; -+ size_t bulk_out_size; -+ int (*probe)(struct usb_serial *, const struct usb_device_id *); -+ int (*attach)(struct usb_serial *); -+ int (*calc_num_ports)(struct usb_serial *, struct usb_serial_endpoints *); -+ void (*disconnect)(struct usb_serial *); -+ void (*release)(struct usb_serial *); -+ int (*port_probe)(struct usb_serial_port *); -+ int (*port_remove)(struct usb_serial_port *); -+ int (*suspend)(struct usb_serial *, pm_message_t); -+ int (*resume)(struct usb_serial *); -+ int (*reset_resume)(struct usb_serial *); -+ int (*open)(struct tty_struct *, struct usb_serial_port *); -+ void (*close)(struct usb_serial_port *); -+ int (*write)(struct tty_struct *, struct usb_serial_port *, const unsigned char *, int); -+ int (*write_room)(struct tty_struct *); -+ int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); -+ void (*set_termios)(struct tty_struct *, struct usb_serial_port *, struct ktermios *); -+ void (*break_ctl)(struct tty_struct *, int); -+ int (*chars_in_buffer)(struct tty_struct *); -+ void (*wait_until_sent)(struct tty_struct *, long int); -+ bool (*tx_empty)(struct usb_serial_port *); -+ void (*throttle)(struct tty_struct *); -+ void (*unthrottle)(struct tty_struct *); -+ int (*tiocmget)(struct tty_struct *); -+ int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); -+ int (*tiocmiwait)(struct tty_struct *, long unsigned int); -+ int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); -+ void (*dtr_rts)(struct usb_serial_port *, int); -+ int (*carrier_raised)(struct usb_serial_port *); -+ void (*init_termios)(struct tty_struct *); -+ void (*read_int_callback)(struct urb *); -+ void (*write_int_callback)(struct urb *); -+ void (*read_bulk_callback)(struct urb *); -+ void (*write_bulk_callback)(struct urb *); -+ void (*process_read_urb)(struct urb *); -+ int (*prepare_write_buffer)(struct usb_serial_port *, void *, size_t); -+}; -+ -+struct usb_serial_endpoints { -+ unsigned char num_bulk_in; -+ unsigned char num_bulk_out; -+ unsigned char num_interrupt_in; -+ unsigned char num_interrupt_out; -+ struct usb_endpoint_descriptor *bulk_in[16]; -+ struct usb_endpoint_descriptor *bulk_out[16]; -+ struct usb_endpoint_descriptor *interrupt_in[16]; -+ struct usb_endpoint_descriptor *interrupt_out[16]; -+}; -+ -+struct usbcons_info { -+ int magic; -+ int break_flag; -+ struct usb_serial_port *port; ++struct xhci_driver_data { ++ u64 quirks; ++ const char *firmware; +}; + +struct usb_debug_descriptor { @@ -81083,7 +86309,7 @@ index 0000000..bcb9d76 + +typedef void (*set_debug_port_t)(int); + -+struct usb_hcd___2; ++struct usb_hcd; + +struct xdbc_regs { + __le32 capability; @@ -81189,942 +86415,19 @@ index 0000000..bcb9d76 + raw_spinlock_t lock; +}; + -+enum usb_dr_mode { -+ USB_DR_MODE_UNKNOWN = 0, -+ USB_DR_MODE_HOST = 1, -+ USB_DR_MODE_PERIPHERAL = 2, -+ USB_DR_MODE_OTG = 3, -+}; -+ -+struct typec_device_id { -+ __u16 svid; -+ __u8 mode; -+ kernel_ulong_t driver_data; -+}; -+ -+enum typec_port_type { -+ TYPEC_PORT_SRC = 0, -+ TYPEC_PORT_SNK = 1, -+ TYPEC_PORT_DRP = 2, -+}; -+ -+enum typec_port_data { -+ TYPEC_PORT_DFP = 0, -+ TYPEC_PORT_UFP = 1, -+ TYPEC_PORT_DRD = 2, -+}; -+ -+enum typec_plug_type { -+ USB_PLUG_NONE = 0, -+ USB_PLUG_TYPE_A = 1, -+ USB_PLUG_TYPE_B = 2, -+ USB_PLUG_TYPE_C = 3, -+ USB_PLUG_CAPTIVE = 4, -+}; -+ -+enum typec_data_role { -+ TYPEC_DEVICE = 0, -+ TYPEC_HOST = 1, -+}; -+ -+enum typec_role { -+ TYPEC_SINK = 0, -+ TYPEC_SOURCE = 1, -+}; -+ -+enum typec_pwr_opmode { -+ TYPEC_PWR_MODE_USB = 0, -+ TYPEC_PWR_MODE_1_5A = 1, -+ TYPEC_PWR_MODE_3_0A = 2, -+ TYPEC_PWR_MODE_PD = 3, -+}; -+ -+enum typec_accessory { -+ TYPEC_ACCESSORY_NONE = 0, -+ TYPEC_ACCESSORY_AUDIO = 1, -+ TYPEC_ACCESSORY_DEBUG = 2, -+}; -+ -+enum typec_orientation { -+ TYPEC_ORIENTATION_NONE = 0, -+ TYPEC_ORIENTATION_NORMAL = 1, -+ TYPEC_ORIENTATION_REVERSE = 2, -+}; -+ -+struct usb_pd_identity { -+ u32 id_header; -+ u32 cert_stat; -+ u32 product; -+}; -+ -+struct typec_altmode_desc { -+ u16 svid; -+ u8 mode; -+ u32 vdo; -+ enum typec_port_data roles; -+}; -+ -+enum typec_plug_index { -+ TYPEC_PLUG_SOP_P = 0, -+ TYPEC_PLUG_SOP_PP = 1, -+}; -+ -+struct typec_plug_desc { -+ enum typec_plug_index index; -+}; -+ -+struct typec_cable_desc { -+ enum typec_plug_type type; -+ unsigned int active: 1; -+ struct usb_pd_identity *identity; -+}; -+ -+struct typec_partner_desc { -+ unsigned int usb_pd: 1; -+ enum typec_accessory accessory; -+ struct usb_pd_identity *identity; -+}; -+ -+struct typec_switch; -+ -+struct typec_mux; -+ -+struct typec_capability { -+ enum typec_port_type type; -+ enum typec_port_data data; -+ u16 revision; -+ u16 pd_revision; -+ int prefer_role; -+ enum typec_accessory accessory[3]; -+ struct typec_switch *sw; -+ struct typec_mux *mux; -+ struct fwnode_handle *fwnode; -+ int (*try_role)(const struct typec_capability *, int); -+ int (*dr_set)(const struct typec_capability *, enum typec_data_role); -+ int (*pr_set)(const struct typec_capability *, enum typec_role); -+ int (*vconn_set)(const struct typec_capability *, enum typec_role); -+ int (*port_type_set)(const struct typec_capability *, enum typec_port_type); -+}; -+ -+struct typec_switch { -+ struct device *dev; -+ struct list_head entry; -+ int (*set)(struct typec_switch *, enum typec_orientation); -+}; -+ -+struct typec_mux { -+ struct device *dev; -+ struct list_head entry; -+ int (*set)(struct typec_mux *, int); -+}; -+ -+struct typec_altmode_ops; -+ -+struct typec_altmode { -+ struct device dev; -+ u16 svid; -+ int mode; -+ u32 vdo; -+ unsigned int active: 1; -+ char *desc; -+ const struct typec_altmode_ops *ops; -+}; -+ -+struct typec_altmode_ops { -+ int (*enter)(struct typec_altmode *); -+ int (*exit)(struct typec_altmode *); -+ void (*attention)(struct typec_altmode *, u32); -+ int (*vdm)(struct typec_altmode *, const u32, const u32 *, int); -+ int (*notify)(struct typec_altmode *, long unsigned int, void *); -+ int (*activate)(struct typec_altmode *, int); -+}; -+ -+enum { -+ TYPEC_STATE_SAFE = 0, -+ TYPEC_STATE_USB = 1, -+ TYPEC_STATE_MODAL = 2, -+}; -+ -+struct altmode { -+ unsigned int id; -+ struct typec_altmode adev; -+ struct typec_mux *mux; -+ enum typec_port_data roles; -+ struct attribute *attrs[5]; -+ char group_name[8]; -+ struct attribute_group group; -+ const struct attribute_group *groups[2]; -+ struct altmode *partner; -+ struct altmode *plug[2]; -+ struct blocking_notifier_head nh; -+}; -+ -+struct typec_plug { -+ struct device dev; -+ enum typec_plug_index index; -+ struct ida mode_ids; -+}; -+ -+struct typec_cable { -+ struct device dev; -+ enum typec_plug_type type; -+ struct usb_pd_identity *identity; -+ unsigned int active: 1; -+}; -+ -+struct typec_partner { -+ struct device dev; -+ unsigned int usb_pd: 1; -+ struct usb_pd_identity *identity; -+ enum typec_accessory accessory; -+ struct ida mode_ids; -+}; -+ -+struct typec_port { -+ unsigned int id; -+ struct device dev; -+ struct ida mode_ids; -+ int prefer_role; -+ enum typec_data_role data_role; -+ enum typec_role pwr_role; -+ enum typec_role vconn_role; -+ enum typec_pwr_opmode pwr_opmode; -+ enum typec_port_type port_type; -+ struct mutex port_type_lock; -+ enum typec_orientation orientation; -+ struct typec_switch *sw; -+ struct typec_mux *mux; -+ const struct typec_capability *cap; -+}; -+ -+struct typec_altmode_driver { -+ const struct typec_device_id *id_table; -+ int (*probe)(struct typec_altmode *); -+ void (*remove)(struct typec_altmode *); -+ struct device_driver driver; -+}; -+ -+struct typec_displayport_data { -+ u32 status; -+ u32 conf; -+}; -+ -+enum { -+ DP_PIN_ASSIGN_A = 0, -+ DP_PIN_ASSIGN_B = 1, -+ DP_PIN_ASSIGN_C = 2, -+ DP_PIN_ASSIGN_D = 3, -+ DP_PIN_ASSIGN_E = 4, -+ DP_PIN_ASSIGN_F = 5, -+}; -+ -+enum { -+ DP_CONF_USB = 0, -+ DP_CONF_DFP_D = 1, -+ DP_CONF_UFP_D = 2, -+ DP_CONF_DUAL_D = 3, -+}; -+ -+enum dp_state { -+ DP_STATE_IDLE = 0, -+ DP_STATE_ENTER = 1, -+ DP_STATE_UPDATE = 2, -+ DP_STATE_CONFIGURE = 3, -+ DP_STATE_EXIT = 4, -+}; -+ -+struct dp_altmode { -+ struct typec_displayport_data data; -+ enum dp_state state; -+ struct mutex lock; -+ struct work_struct work; -+ struct typec_altmode *alt; -+ const struct typec_altmode *port; -+}; -+ -+enum pd_ctrl_msg_type { -+ PD_CTRL_GOOD_CRC = 1, -+ PD_CTRL_GOTO_MIN = 2, -+ PD_CTRL_ACCEPT = 3, -+ PD_CTRL_REJECT = 4, -+ PD_CTRL_PING = 5, -+ PD_CTRL_PS_RDY = 6, -+ PD_CTRL_GET_SOURCE_CAP = 7, -+ PD_CTRL_GET_SINK_CAP = 8, -+ PD_CTRL_DR_SWAP = 9, -+ PD_CTRL_PR_SWAP = 10, -+ PD_CTRL_VCONN_SWAP = 11, -+ PD_CTRL_WAIT = 12, -+ PD_CTRL_SOFT_RESET = 13, -+ PD_CTRL_NOT_SUPP = 16, -+ PD_CTRL_GET_SOURCE_CAP_EXT = 17, -+ PD_CTRL_GET_STATUS = 18, -+ PD_CTRL_FR_SWAP = 19, -+ PD_CTRL_GET_PPS_STATUS = 20, -+ PD_CTRL_GET_COUNTRY_CODES = 21, -+}; -+ -+enum pd_data_msg_type { -+ PD_DATA_SOURCE_CAP = 1, -+ PD_DATA_REQUEST = 2, -+ PD_DATA_BIST = 3, -+ PD_DATA_SINK_CAP = 4, -+ PD_DATA_BATT_STATUS = 5, -+ PD_DATA_ALERT = 6, -+ PD_DATA_GET_COUNTRY_INFO = 7, -+ PD_DATA_VENDOR_DEF = 15, -+}; -+ -+enum pd_ext_msg_type { -+ PD_EXT_SOURCE_CAP_EXT = 1, -+ PD_EXT_STATUS = 2, -+ PD_EXT_GET_BATT_CAP = 3, -+ PD_EXT_GET_BATT_STATUS = 4, -+ PD_EXT_BATT_CAP = 5, -+ PD_EXT_GET_MANUFACTURER_INFO = 6, -+ PD_EXT_MANUFACTURER_INFO = 7, -+ PD_EXT_SECURITY_REQUEST = 8, -+ PD_EXT_SECURITY_RESPONSE = 9, -+ PD_EXT_FW_UPDATE_REQUEST = 10, -+ PD_EXT_FW_UPDATE_RESPONSE = 11, -+ PD_EXT_PPS_STATUS = 12, -+ PD_EXT_COUNTRY_INFO = 13, -+ PD_EXT_COUNTRY_CODES = 14, -+}; -+ -+struct pd_chunked_ext_message_data { -+ __le16 header; -+ u8 data[26]; -+}; -+ -+struct pd_message { -+ __le16 header; -+ union { -+ __le32 payload[7]; -+ struct pd_chunked_ext_message_data ext_msg; -+ }; -+} __attribute__((packed)); -+ -+enum pd_pdo_type { -+ PDO_TYPE_FIXED = 0, -+ PDO_TYPE_BATT = 1, -+ PDO_TYPE_VAR = 2, -+ PDO_TYPE_APDO = 3, -+}; -+ -+enum pd_apdo_type { -+ APDO_TYPE_PPS = 0, -+}; -+ -+enum usb_pd_ext_sdb_fields { -+ USB_PD_EXT_SDB_INTERNAL_TEMP = 0, -+ USB_PD_EXT_SDB_PRESENT_INPUT = 1, -+ USB_PD_EXT_SDB_PRESENT_BATT_INPUT = 2, -+ USB_PD_EXT_SDB_EVENT_FLAGS = 3, -+ USB_PD_EXT_SDB_TEMP_STATUS = 4, -+ USB_PD_EXT_SDB_DATA_SIZE = 5, -+}; -+ +enum usb_role { + USB_ROLE_NONE = 0, + USB_ROLE_HOST = 1, + USB_ROLE_DEVICE = 2, +}; + -+enum typec_cc_status { -+ TYPEC_CC_OPEN = 0, -+ TYPEC_CC_RA = 1, -+ TYPEC_CC_RD = 2, -+ TYPEC_CC_RP_DEF = 3, -+ TYPEC_CC_RP_1_5 = 4, -+ TYPEC_CC_RP_3_0 = 5, -+}; -+ -+enum typec_cc_polarity { -+ TYPEC_POLARITY_CC1 = 0, -+ TYPEC_POLARITY_CC2 = 1, -+}; -+ -+enum tcpm_transmit_status { -+ TCPC_TX_SUCCESS = 0, -+ TCPC_TX_DISCARDED = 1, -+ TCPC_TX_FAILED = 2, -+}; -+ -+enum tcpm_transmit_type { -+ TCPC_TX_SOP = 0, -+ TCPC_TX_SOP_PRIME = 1, -+ TCPC_TX_SOP_PRIME_PRIME = 2, -+ TCPC_TX_SOP_DEBUG_PRIME = 3, -+ TCPC_TX_SOP_DEBUG_PRIME_PRIME = 4, -+ TCPC_TX_HARD_RESET = 5, -+ TCPC_TX_CABLE_RESET = 6, -+ TCPC_TX_BIST_MODE_2 = 7, -+}; -+ -+struct tcpc_config { -+ const u32 *src_pdo; -+ unsigned int nr_src_pdo; -+ const u32 *snk_pdo; -+ unsigned int nr_snk_pdo; -+ const u32 *snk_vdo; -+ unsigned int nr_snk_vdo; -+ unsigned int operating_snk_mw; -+ enum typec_port_type type; -+ enum typec_port_data data; -+ enum typec_role default_role; -+ bool try_role_hw; -+ bool self_powered; -+ const struct typec_altmode_desc *alt_modes; -+}; -+ -+struct tcpc_dev { -+ const struct tcpc_config *config; -+ struct fwnode_handle *fwnode; -+ int (*init)(struct tcpc_dev *); -+ int (*get_vbus)(struct tcpc_dev *); -+ int (*get_current_limit)(struct tcpc_dev *); -+ int (*set_cc)(struct tcpc_dev *, enum typec_cc_status); -+ int (*get_cc)(struct tcpc_dev *, enum typec_cc_status *, enum typec_cc_status *); -+ int (*set_polarity)(struct tcpc_dev *, enum typec_cc_polarity); -+ int (*set_vconn)(struct tcpc_dev *, bool); -+ int (*set_vbus)(struct tcpc_dev *, bool, bool); -+ int (*set_current_limit)(struct tcpc_dev *, u32, u32); -+ int (*set_pd_rx)(struct tcpc_dev *, bool); -+ int (*set_roles)(struct tcpc_dev *, bool, enum typec_role, enum typec_data_role); -+ int (*start_drp_toggling)(struct tcpc_dev *, enum typec_cc_status); -+ int (*try_role)(struct tcpc_dev *, int); -+ int (*pd_transmit)(struct tcpc_dev *, enum tcpm_transmit_type, const struct pd_message *); -+}; -+ -+enum tcpm_state { -+ INVALID_STATE = 0, -+ DRP_TOGGLING = 1, -+ SRC_UNATTACHED = 2, -+ SRC_ATTACH_WAIT = 3, -+ SRC_ATTACHED = 4, -+ SRC_STARTUP = 5, -+ SRC_SEND_CAPABILITIES = 6, -+ SRC_SEND_CAPABILITIES_TIMEOUT = 7, -+ SRC_NEGOTIATE_CAPABILITIES = 8, -+ SRC_TRANSITION_SUPPLY = 9, -+ SRC_READY = 10, -+ SRC_WAIT_NEW_CAPABILITIES = 11, -+ SNK_UNATTACHED = 12, -+ SNK_ATTACH_WAIT = 13, -+ SNK_DEBOUNCED = 14, -+ SNK_ATTACHED = 15, -+ SNK_STARTUP = 16, -+ SNK_DISCOVERY = 17, -+ SNK_DISCOVERY_DEBOUNCE = 18, -+ SNK_DISCOVERY_DEBOUNCE_DONE = 19, -+ SNK_WAIT_CAPABILITIES = 20, -+ SNK_NEGOTIATE_CAPABILITIES = 21, -+ SNK_NEGOTIATE_PPS_CAPABILITIES = 22, -+ SNK_TRANSITION_SINK = 23, -+ SNK_TRANSITION_SINK_VBUS = 24, -+ SNK_READY = 25, -+ ACC_UNATTACHED = 26, -+ DEBUG_ACC_ATTACHED = 27, -+ AUDIO_ACC_ATTACHED = 28, -+ AUDIO_ACC_DEBOUNCE = 29, -+ HARD_RESET_SEND = 30, -+ HARD_RESET_START = 31, -+ SRC_HARD_RESET_VBUS_OFF = 32, -+ SRC_HARD_RESET_VBUS_ON = 33, -+ SNK_HARD_RESET_SINK_OFF = 34, -+ SNK_HARD_RESET_WAIT_VBUS = 35, -+ SNK_HARD_RESET_SINK_ON = 36, -+ SOFT_RESET = 37, -+ SOFT_RESET_SEND = 38, -+ DR_SWAP_ACCEPT = 39, -+ DR_SWAP_SEND = 40, -+ DR_SWAP_SEND_TIMEOUT = 41, -+ DR_SWAP_CANCEL = 42, -+ DR_SWAP_CHANGE_DR = 43, -+ PR_SWAP_ACCEPT = 44, -+ PR_SWAP_SEND = 45, -+ PR_SWAP_SEND_TIMEOUT = 46, -+ PR_SWAP_CANCEL = 47, -+ PR_SWAP_START = 48, -+ PR_SWAP_SRC_SNK_TRANSITION_OFF = 49, -+ PR_SWAP_SRC_SNK_SOURCE_OFF = 50, -+ PR_SWAP_SRC_SNK_SOURCE_OFF_CC_DEBOUNCED = 51, -+ PR_SWAP_SRC_SNK_SINK_ON = 52, -+ PR_SWAP_SNK_SRC_SINK_OFF = 53, -+ PR_SWAP_SNK_SRC_SOURCE_ON = 54, -+ PR_SWAP_SNK_SRC_SOURCE_ON_VBUS_RAMPED_UP = 55, -+ VCONN_SWAP_ACCEPT = 56, -+ VCONN_SWAP_SEND = 57, -+ VCONN_SWAP_SEND_TIMEOUT = 58, -+ VCONN_SWAP_CANCEL = 59, -+ VCONN_SWAP_START = 60, -+ VCONN_SWAP_WAIT_FOR_VCONN = 61, -+ VCONN_SWAP_TURN_ON_VCONN = 62, -+ VCONN_SWAP_TURN_OFF_VCONN = 63, -+ SNK_TRY = 64, -+ SNK_TRY_WAIT = 65, -+ SNK_TRY_WAIT_DEBOUNCE = 66, -+ SNK_TRY_WAIT_DEBOUNCE_CHECK_VBUS = 67, -+ SRC_TRYWAIT = 68, -+ SRC_TRYWAIT_DEBOUNCE = 69, -+ SRC_TRYWAIT_UNATTACHED = 70, -+ SRC_TRY = 71, -+ SRC_TRY_WAIT = 72, -+ SRC_TRY_DEBOUNCE = 73, -+ SNK_TRYWAIT = 74, -+ SNK_TRYWAIT_DEBOUNCE = 75, -+ SNK_TRYWAIT_VBUS = 76, -+ BIST_RX = 77, -+ GET_STATUS_SEND = 78, -+ GET_STATUS_SEND_TIMEOUT = 79, -+ GET_PPS_STATUS_SEND = 80, -+ GET_PPS_STATUS_SEND_TIMEOUT = 81, -+ ERROR_RECOVERY = 82, -+ PORT_RESET = 83, -+ PORT_RESET_WAIT_OFF = 84, -+}; -+ -+enum vdm_states { -+ VDM_STATE_ERR_BUSY = -3, -+ VDM_STATE_ERR_SEND = -2, -+ VDM_STATE_ERR_TMOUT = -1, -+ VDM_STATE_DONE = 0, -+ VDM_STATE_READY = 1, -+ VDM_STATE_BUSY = 2, -+ VDM_STATE_WAIT_RSP_BUSY = 3, -+}; -+ -+enum pd_msg_request { -+ PD_MSG_NONE = 0, -+ PD_MSG_CTRL_REJECT = 1, -+ PD_MSG_CTRL_WAIT = 2, -+ PD_MSG_CTRL_NOT_SUPP = 3, -+ PD_MSG_DATA_SINK_CAP = 4, -+ PD_MSG_DATA_SOURCE_CAP = 5, -+}; -+ -+struct pd_mode_data { -+ int svid_index; -+ int nsvids; -+ u16 svids[16]; -+ int altmodes; -+ struct typec_altmode_desc altmode_desc[96]; -+}; -+ -+struct pd_pps_data { -+ u32 min_volt; -+ u32 max_volt; -+ u32 max_curr; -+ u32 out_volt; -+ u32 op_curr; -+ bool supported; -+ bool active; -+}; -+ -+struct typec_port___2; -+ +struct usb_role_switch; + -+struct typec_partner___2; ++typedef int (*usb_role_switch_set_t)(struct usb_role_switch *, enum usb_role); + -+struct tcpm_port { -+ struct device *dev; -+ struct mutex lock; -+ struct workqueue_struct *wq; -+ struct typec_capability typec_caps; -+ struct typec_port___2 *typec_port; -+ struct tcpc_dev *tcpc; -+ struct usb_role_switch *role_sw; -+ enum typec_role vconn_role; -+ enum typec_role pwr_role; -+ enum typec_data_role data_role; -+ enum typec_pwr_opmode pwr_opmode; -+ struct usb_pd_identity partner_ident; -+ struct typec_partner_desc partner_desc; -+ struct typec_partner___2 *partner; -+ enum typec_cc_status cc_req; -+ enum typec_cc_status cc1; -+ enum typec_cc_status cc2; -+ enum typec_cc_polarity polarity; -+ bool attached; -+ bool connected; -+ enum typec_port_type port_type; -+ bool vbus_present; -+ bool vbus_never_low; -+ bool vbus_source; -+ bool vbus_charge; -+ bool send_discover; -+ bool op_vsafe5v; -+ int try_role; -+ int try_snk_count; -+ int try_src_count; -+ enum pd_msg_request queued_message; -+ enum tcpm_state enter_state; -+ enum tcpm_state prev_state; -+ enum tcpm_state state; -+ enum tcpm_state delayed_state; -+ long unsigned int delayed_runtime; -+ long unsigned int delay_ms; -+ spinlock_t pd_event_lock; -+ u32 pd_events; -+ struct work_struct event_work; -+ struct delayed_work state_machine; -+ struct delayed_work vdm_state_machine; -+ bool state_machine_running; -+ struct completion tx_complete; -+ enum tcpm_transmit_status tx_status; -+ struct mutex swap_lock; -+ bool swap_pending; -+ bool non_pd_role_swap; -+ struct completion swap_complete; -+ int swap_status; -+ unsigned int negotiated_rev; -+ unsigned int message_id; -+ unsigned int caps_count; -+ unsigned int hard_reset_count; -+ bool pd_capable; -+ bool explicit_contract; -+ unsigned int rx_msgid; -+ u32 sink_request; -+ u32 source_caps[7]; -+ unsigned int nr_source_caps; -+ u32 sink_caps[7]; -+ unsigned int nr_sink_caps; -+ u32 src_pdo[7]; -+ unsigned int nr_src_pdo; -+ u32 snk_pdo[7]; -+ unsigned int nr_snk_pdo; -+ u32 snk_vdo[6]; -+ unsigned int nr_snk_vdo; -+ unsigned int operating_snk_mw; -+ bool update_sink_caps; -+ u32 current_limit; -+ u32 supply_voltage; -+ struct power_supply *psy; -+ struct power_supply_desc psy_desc; -+ enum power_supply_usb_type usb_type; -+ u32 bist_request; -+ enum vdm_states vdm_state; -+ u32 vdm_retries; -+ u32 vdo_data[7]; -+ u8 vdo_count; -+ u32 vdo_retry; -+ struct pd_pps_data pps_data; -+ struct completion pps_complete; -+ bool pps_pending; -+ int pps_status; -+ struct pd_mode_data mode_data; -+ struct typec_altmode *partner_altmode[96]; -+ struct typec_altmode *port_altmode[96]; -+ long unsigned int max_wait; -+ bool self_powered; -+ struct dentry *dentry; -+ struct mutex logbuffer_lock; -+ int logbuffer_head; -+ int logbuffer_tail; -+ u8 *logbuffer[1024]; -+}; ++typedef enum usb_role (*usb_role_switch_get_t)(struct usb_role_switch *); + -+struct pd_rx_event { -+ struct work_struct work; -+ struct tcpm_port *port; -+ struct pd_message msg; -+}; -+ -+enum pdo_err { -+ PDO_NO_ERR = 0, -+ PDO_ERR_NO_VSAFE5V = 1, -+ PDO_ERR_VSAFE5V_NOT_FIRST = 2, -+ PDO_ERR_PDO_TYPE_NOT_IN_ORDER = 3, -+ PDO_ERR_FIXED_NOT_SORTED = 4, -+ PDO_ERR_VARIABLE_BATT_NOT_SORTED = 5, -+ PDO_ERR_DUPE_PDO = 6, -+ PDO_ERR_PPS_APDO_NOT_SORTED = 7, -+ PDO_ERR_DUPE_PPS_APDO = 8, -+}; -+ -+enum tcpm_psy_online_states { -+ TCPM_PSY_OFFLINE = 0, -+ TCPM_PSY_FIXED_ONLINE = 1, -+ TCPM_PSY_PROG_ONLINE = 2, -+}; -+ -+struct ucsi_cci { -+ char: 1; -+ u8 connector_change: 7; -+ u8 data_length; -+ short: 9; -+ u16 not_supported: 1; -+ u16 cancel_complete: 1; -+ u16 reset_complete: 1; -+ u16 busy: 1; -+ u16 ack_complete: 1; -+ u16 error: 1; -+ u16 cmd_complete: 1; -+}; -+ -+struct ucsi_command { -+ u8 cmd; -+ u8 length; -+ u64 data: 48; -+}; -+ -+struct ucsi_ack_cmd { -+ u8 cmd; -+ u8 length; -+ u8 cci_ack: 1; -+ u8 cmd_ack: 1; -+}; -+ -+struct ucsi_con_rst { -+ u8 cmd; -+ u8 length; -+ u8 con_num: 7; -+ u8 hard_reset: 1; -+}; -+ -+struct ucsi_uor_cmd { -+ u8 cmd; -+ u8 length; -+ u16 con_num: 7; -+ u16 role: 3; -+}; -+ -+struct ucsi_control { -+ union { -+ u64 raw_cmd; -+ struct ucsi_command cmd; -+ struct ucsi_uor_cmd uor; -+ struct ucsi_ack_cmd ack; -+ struct ucsi_con_rst con_rst; -+ }; -+}; -+ -+struct ucsi_capability { -+ u32 attributes; -+ u32 num_connectors: 8; -+ u32 features: 24; -+ u8 num_alt_modes; -+ u8 reserved; -+ u16 bc_version; -+ u16 pd_version; -+ u16 typec_version; -+}; -+ -+struct ucsi_connector_capability { -+ u8 op_mode; -+ u8 provider: 1; -+ u8 consumer: 1; -+}; -+ -+struct ucsi_connector_status { -+ u16 change; -+ u16 pwr_op_mode: 3; -+ u16 connected: 1; -+ u16 pwr_dir: 1; -+ u16 partner_flags: 8; -+ u16 partner_type: 3; -+ u32 request_data_obj; -+ u8 bc_status: 2; -+ u8 provider_cap_limit_reason: 4; -+} __attribute__((packed)); -+ -+struct ucsi_data { -+ u16 version; -+ u16 reserved; -+ union { -+ u32 raw_cci; -+ struct ucsi_cci cci; -+ }; -+ struct ucsi_control ctrl; -+ u32 message_in[4]; -+ u32 message_out[4]; -+}; -+ -+struct ucsi_ppm { -+ struct ucsi_data *data; -+ int (*cmd)(struct ucsi_ppm *, struct ucsi_control *); -+ int (*sync)(struct ucsi_ppm *); -+}; -+ -+enum ucsi_status { -+ UCSI_IDLE = 0, -+ UCSI_BUSY = 1, -+ UCSI_ERROR = 2, -+}; -+ -+struct ucsi; -+ -+struct ucsi_connector { -+ int num; -+ struct ucsi *ucsi; -+ struct work_struct work; -+ struct completion complete; -+ struct typec_port___2 *port; -+ struct typec_partner___2 *partner; -+ struct typec_capability typec_cap; -+ struct ucsi_connector_status status; -+ struct ucsi_connector_capability cap; -+}; -+ -+struct ucsi { -+ struct device *dev; -+ struct ucsi_ppm *ppm; -+ enum ucsi_status status; -+ struct completion complete; -+ struct ucsi_capability cap; -+ struct ucsi_connector *connector; -+ struct work_struct work; -+ struct mutex ppm_lock; -+ long unsigned int flags; -+}; -+ -+struct trace_event_raw_ucsi_log_ack { -+ struct trace_entry ent; -+ u8 ack; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_control { -+ struct trace_entry ent; -+ u64 ctrl; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_command { -+ struct trace_entry ent; -+ u64 ctrl; -+ int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_cci { -+ struct trace_entry ent; -+ u32 cci; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_connector_status { -+ struct trace_entry ent; -+ int port; -+ u16 change; -+ u8 opmode; -+ u8 connected; -+ u8 pwr_dir; -+ u8 partner_flags; -+ u8 partner_type; -+ u32 request_data_obj; -+ u8 bc_status; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_ucsi_log_ack {}; -+ -+struct trace_event_data_offsets_ucsi_log_control {}; -+ -+struct trace_event_data_offsets_ucsi_log_command {}; -+ -+struct trace_event_data_offsets_ucsi_log_cci {}; -+ -+struct trace_event_data_offsets_ucsi_log_connector_status {}; -+ -+struct ucsi___2; -+ -+struct ucsi_acpi { -+ struct device *dev; -+ struct ucsi___2 *ucsi; -+ struct ucsi_ppm ppm; -+ guid_t guid; -+}; -+ -+struct i2c_device_id { -+ char name[20]; -+ kernel_ulong_t driver_data; -+}; -+ -+enum i2c_alert_protocol { -+ I2C_PROTOCOL_SMBUS_ALERT = 0, -+ I2C_PROTOCOL_SMBUS_HOST_NOTIFY = 1, -+}; -+ -+struct i2c_board_info; -+ -+struct i2c_driver { -+ unsigned int class; -+ int (*probe)(struct i2c_client *, const struct i2c_device_id *); -+ int (*remove)(struct i2c_client *); -+ int (*probe_new)(struct i2c_client *); -+ void (*shutdown)(struct i2c_client *); -+ void (*alert)(struct i2c_client *, enum i2c_alert_protocol, unsigned int); -+ int (*command)(struct i2c_client *, unsigned int, void *); -+ struct device_driver driver; -+ const struct i2c_device_id *id_table; -+ int (*detect)(struct i2c_client *, struct i2c_board_info *); -+ const short unsigned int *address_list; -+ struct list_head clients; -+ bool disable_i2c_core_irq_mapping; -+}; -+ -+struct i2c_board_info { -+ char type[20]; -+ short unsigned int flags; -+ short unsigned int addr; -+ const char *dev_name; -+ void *platform_data; -+ struct device_node *of_node; -+ struct fwnode_handle *fwnode; -+ const struct property_entry *properties; -+ const struct resource *resources; -+ unsigned int num_resources; -+ int irq; -+}; -+ -+struct tcpci; -+ -+struct tcpci_data { -+ struct regmap *regmap; -+ int (*init)(struct tcpci *, struct tcpci_data *); -+ int (*set_vconn)(struct tcpci *, struct tcpci_data *, bool); -+ int (*start_drp_toggling)(struct tcpci *, struct tcpci_data *, enum typec_cc_status); -+}; -+ -+struct tcpm_port___2; -+ -+struct tcpci { -+ struct device *dev; -+ struct tcpm_port___2 *port; -+ struct regmap *regmap; -+ bool controls_vbus; -+ struct tcpc_dev tcpc; -+ struct tcpci_data *data; -+}; -+ -+struct tcpci_chip { -+ struct tcpci *tcpci; -+ struct tcpci_data data; -+}; -+ -+struct rt1711h_chip { -+ struct tcpci_data data; -+ struct tcpci *tcpci; -+ struct device *dev; -+}; -+ -+typedef int (*usb_role_switch_set_t)(struct device *, enum usb_role); -+ -+typedef enum usb_role (*usb_role_switch_get_t)(struct device *); -+ -+struct usb_role_switch_desc { -+ struct device *usb2_port; -+ struct device *usb3_port; -+ struct device *udc; -+ usb_role_switch_set_t set; -+ usb_role_switch_get_t get; -+ bool allow_userspace_control; -+}; -+ -+struct usb_role_switch___2 { ++struct usb_role_switch { + struct device dev; + struct mutex lock; + enum usb_role role; @@ -82136,9 +86439,23 @@ index 0000000..bcb9d76 + bool allow_userspace_control; +}; + ++struct usb_role_switch_desc { ++ struct fwnode_handle *fwnode; ++ struct device *usb2_port; ++ struct device *usb3_port; ++ struct device *udc; ++ usb_role_switch_set_t set; ++ usb_role_switch_get_t get; ++ bool allow_userspace_control; ++ void *driver_data; ++ const char *name; ++}; ++ +struct intel_xhci_usb_data { ++ struct device *dev; + struct usb_role_switch *role_sw; + void *base; ++ bool enable_sw_switch; +}; + +struct serio_device_id { @@ -82311,6 +86628,15 @@ index 0000000..bcb9d76 + s16 y; +}; + ++struct input_dev_poller { ++ void (*poll)(struct input_dev *); ++ unsigned int poll_interval; ++ unsigned int poll_interval_max; ++ unsigned int poll_interval_min; ++ struct input_dev *input; ++ struct delayed_work work; ++}; ++ +struct input_led { + struct led_classdev cdev; + struct input_handle *handle; @@ -82399,19 +86725,11 @@ index 0000000..bcb9d76 + __u64 codes_ptr; +}; + -+enum evdev_clock_type { -+ EV_CLK_REAL = 0, -+ EV_CLK_MONO = 1, -+ EV_CLK_BOOT = 2, -+ EV_CLK_MAX = 3, -+}; -+ +struct evdev_client; + +struct evdev { + int open; + struct input_handle handle; -+ wait_queue_head_t wait; + struct evdev_client *grab; + struct list_head client_list; + spinlock_t client_lock; @@ -82426,10 +86744,11 @@ index 0000000..bcb9d76 + unsigned int tail; + unsigned int packet_head; + spinlock_t buffer_lock; ++ wait_queue_head_t wait; + struct fasync_struct *fasync; + struct evdev *evdev; + struct list_head node; -+ unsigned int clk_type; ++ enum input_clock_type clk_type; + bool revoked; + long unsigned int *evmasks[32]; + unsigned int bufsize; @@ -82463,6 +86782,8 @@ index 0000000..bcb9d76 + long unsigned int event_jiffies; + long unsigned int event_mask; + struct mutex mutex; ++ u32 function_row_physmap[24]; ++ int num_function_row_keys; +}; + +enum psmouse_state { @@ -82607,7 +86928,7 @@ index 0000000..bcb9d76 + int palm_detect; +}; + -+struct rmi_f30_data { ++struct rmi_gpio_data { + bool buttonpad; + bool trackstick_buttons; + bool disable; @@ -82646,7 +86967,22 @@ index 0000000..bcb9d76 + struct rmi_device_platform_data_spi spi_data; + struct rmi_2d_sensor_platform_data sensor_pdata; + struct rmi_f01_power_management power_management; -+ struct rmi_f30_data f30_data; ++ struct rmi_gpio_data gpio_data; ++}; ++ ++struct i2c_board_info { ++ char type[20]; ++ short unsigned int flags; ++ short unsigned int addr; ++ const char *dev_name; ++ void *platform_data; ++ struct device_node *of_node; ++ struct fwnode_handle *fwnode; ++ const struct property_entry *properties; ++ const struct resource *resources; ++ unsigned int num_resources; ++ int irq; ++ u64 kabi_reserved1; +}; + +enum synaptics_pkt_type { @@ -82716,7 +87052,7 @@ index 0000000..bcb9d76 +}; + +enum { -+ SYNAPTICS_INTERTOUCH_NOT_SET = -1, ++ SYNAPTICS_INTERTOUCH_NOT_SET = 4294967295, + SYNAPTICS_INTERTOUCH_OFF = 0, + SYNAPTICS_INTERTOUCH_ON = 1, +}; @@ -82850,9 +87186,19 @@ index 0000000..bcb9d76 + unsigned char samples[3]; + unsigned char debug; + unsigned char hw_version; ++ unsigned char pattern; + unsigned int fw_version; ++ unsigned int ic_version; ++ unsigned int product_id; ++ unsigned int x_min; ++ unsigned int y_min; ++ unsigned int x_max; ++ unsigned int y_max; + unsigned int x_res; + unsigned int y_res; ++ unsigned int x_traces; ++ unsigned int y_traces; ++ unsigned int width; + unsigned int bus; + bool paritycheck; + bool jumpy_cursor; @@ -82860,6 +87206,7 @@ index 0000000..bcb9d76 + bool crc_enabled; + bool set_hw_resolution; + bool has_trackpoint; ++ bool has_middle_button; + int (*send_cmd)(struct psmouse *, unsigned char, unsigned char *); +}; + @@ -82885,43 +87232,13 @@ index 0000000..bcb9d76 + void (*original_set_rate)(struct psmouse *, unsigned int); +}; + -+enum tp_mode { -+ IAP_MODE = 1, -+ MAIN_MODE = 2, -+}; -+ -+struct elan_transport_ops { -+ int (*initialize)(struct i2c_client *); -+ int (*sleep_control)(struct i2c_client *, bool); -+ int (*power_control)(struct i2c_client *, bool); -+ int (*set_mode)(struct i2c_client *, u8); -+ int (*calibrate)(struct i2c_client *); -+ int (*calibrate_result)(struct i2c_client *, u8 *); -+ int (*get_baseline_data)(struct i2c_client *, bool, u8 *); -+ int (*get_version)(struct i2c_client *, bool, u8 *); -+ int (*get_sm_version)(struct i2c_client *, u16 *, u8 *, u8 *); -+ int (*get_checksum)(struct i2c_client *, bool, u16 *); -+ int (*get_product_id)(struct i2c_client *, u16 *); -+ int (*get_max)(struct i2c_client *, unsigned int *, unsigned int *); -+ int (*get_resolution)(struct i2c_client *, u8 *, u8 *); -+ int (*get_num_traces)(struct i2c_client *, unsigned int *, unsigned int *); -+ int (*iap_get_mode)(struct i2c_client *, enum tp_mode *); -+ int (*iap_reset)(struct i2c_client *); -+ int (*prepare_fw_update)(struct i2c_client *); -+ int (*write_fw_block)(struct i2c_client *, const u8 *, u16, int); -+ int (*finish_fw_update)(struct i2c_client *, struct completion *); -+ int (*get_report)(struct i2c_client *, u8 *); -+ int (*get_pressure_adjustment)(struct i2c_client *, int *); -+ int (*get_pattern)(struct i2c_client *, u8 *); -+}; -+ +struct elantech_attr_data { + size_t field_offset; + unsigned char reg; +}; + +enum { -+ ELANTECH_SMBUS_NOT_SET = -1, ++ ELANTECH_SMBUS_NOT_SET = 4294967295, + ELANTECH_SMBUS_OFF = 0, + ELANTECH_SMBUS_ON = 1, +}; @@ -83012,6 +87329,107 @@ index 0000000..bcb9d76 + char dev_name[128]; +}; + ++struct i2c_msg { ++ __u16 addr; ++ __u16 flags; ++ __u16 len; ++ __u8 *buf; ++}; ++ ++union i2c_smbus_data { ++ __u8 byte; ++ __u16 word; ++ __u8 block[34]; ++}; ++ ++struct i2c_adapter; ++ ++struct i2c_client { ++ short unsigned int flags; ++ short unsigned int addr; ++ char name[20]; ++ struct i2c_adapter *adapter; ++ struct device dev; ++ int init_irq; ++ int irq; ++ struct list_head detected; ++}; ++ ++struct i2c_algorithm; ++ ++struct i2c_lock_operations; ++ ++struct i2c_bus_recovery_info; ++ ++struct i2c_adapter_quirks; ++ ++struct i2c_adapter { ++ struct module *owner; ++ unsigned int class; ++ const struct i2c_algorithm *algo; ++ void *algo_data; ++ const struct i2c_lock_operations *lock_ops; ++ struct rt_mutex bus_lock; ++ struct rt_mutex mux_lock; ++ int timeout; ++ int retries; ++ struct device dev; ++ long unsigned int locked_flags; ++ int nr; ++ char name[48]; ++ struct completion dev_released; ++ struct mutex userspace_clients_lock; ++ struct list_head userspace_clients; ++ struct i2c_bus_recovery_info *bus_recovery_info; ++ const struct i2c_adapter_quirks *quirks; ++ struct irq_domain *host_notify_domain; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct i2c_algorithm { ++ int (*master_xfer)(struct i2c_adapter *, struct i2c_msg *, int); ++ int (*master_xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); ++ int (*smbus_xfer)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); ++ int (*smbus_xfer_atomic)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); ++ u32 (*functionality)(struct i2c_adapter *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct i2c_lock_operations { ++ void (*lock_bus)(struct i2c_adapter *, unsigned int); ++ int (*trylock_bus)(struct i2c_adapter *, unsigned int); ++ void (*unlock_bus)(struct i2c_adapter *, unsigned int); ++}; ++ ++struct i2c_bus_recovery_info { ++ int (*recover_bus)(struct i2c_adapter *); ++ int (*get_scl)(struct i2c_adapter *); ++ void (*set_scl)(struct i2c_adapter *, int); ++ int (*get_sda)(struct i2c_adapter *); ++ void (*set_sda)(struct i2c_adapter *, int); ++ int (*get_bus_free)(struct i2c_adapter *); ++ void (*prepare_recovery)(struct i2c_adapter *); ++ void (*unprepare_recovery)(struct i2c_adapter *); ++ struct gpio_desc *scl_gpiod; ++ struct gpio_desc *sda_gpiod; ++ struct pinctrl *pinctrl; ++ struct pinctrl_state *pins_default; ++ struct pinctrl_state *pins_gpio; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct i2c_adapter_quirks { ++ u64 flags; ++ int max_num_msgs; ++ u16 max_write_len; ++ u16 max_read_len; ++ u16 max_comb_1st_msg_len; ++ u16 max_comb_2nd_msg_len; ++}; ++ +struct psmouse_smbus_dev { + struct i2c_board_info board; + struct psmouse *psmouse; @@ -83034,8 +87452,6 @@ index 0000000..bcb9d76 + bool swap_x_y; +}; + -+struct rtc; -+ +struct trace_event_raw_rtc_time_alarm_class { + struct trace_entry ent; + time64_t secs; @@ -83091,6 +87507,30 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_rtc_timer_class {}; + ++typedef void (*btf_trace_rtc_set_time)(void *, time64_t, int); ++ ++typedef void (*btf_trace_rtc_read_time)(void *, time64_t, int); ++ ++typedef void (*btf_trace_rtc_set_alarm)(void *, time64_t, int); ++ ++typedef void (*btf_trace_rtc_read_alarm)(void *, time64_t, int); ++ ++typedef void (*btf_trace_rtc_irq_set_freq)(void *, int, int); ++ ++typedef void (*btf_trace_rtc_irq_set_state)(void *, int, int); ++ ++typedef void (*btf_trace_rtc_alarm_irq_enable)(void *, unsigned int, int); ++ ++typedef void (*btf_trace_rtc_set_offset)(void *, long int, int); ++ ++typedef void (*btf_trace_rtc_read_offset)(void *, long int, int); ++ ++typedef void (*btf_trace_rtc_timer_enqueue)(void *, struct rtc_timer *); ++ ++typedef void (*btf_trace_rtc_timer_dequeue)(void *, struct rtc_timer *); ++ ++typedef void (*btf_trace_rtc_timer_fired)(void *, struct rtc_timer *); ++ +enum { + none = 0, + day = 1, @@ -83110,15 +87550,25 @@ index 0000000..bcb9d76 + +typedef int (*nvmem_reg_write_t)(void *, unsigned int, void *, size_t); + ++enum nvmem_type { ++ NVMEM_TYPE_UNKNOWN = 0, ++ NVMEM_TYPE_EEPROM = 1, ++ NVMEM_TYPE_OTP = 2, ++ NVMEM_TYPE_BATTERY_BACKED = 3, ++}; ++ +struct nvmem_config { + struct device *dev; + const char *name; + int id; + struct module *owner; ++ struct gpio_desc *wp_gpio; + const struct nvmem_cell_info *cells; + int ncells; ++ enum nvmem_type type; + bool read_only; + bool root_only; ++ bool no_of_node; + nvmem_reg_read_t reg_read; + nvmem_reg_write_t reg_write; + int size; @@ -83129,6 +87579,8 @@ index 0000000..bcb9d76 + struct device *base_dev; +}; + ++struct nvmem_device; ++ +struct cmos_rtc_board_info { + void (*wake_on)(struct device *); + void (*wake_off)(struct device *); @@ -83161,12 +87613,37 @@ index 0000000..bcb9d76 + struct i2c_board_info board_info; +}; + ++struct i2c_device_id { ++ char name[20]; ++ kernel_ulong_t driver_data; ++}; ++ +struct i2c_device_identity { + u16 manufacturer_id; + u16 part_id; + u8 die_revision; +}; + ++enum i2c_alert_protocol { ++ I2C_PROTOCOL_SMBUS_ALERT = 0, ++ I2C_PROTOCOL_SMBUS_HOST_NOTIFY = 1, ++}; ++ ++struct i2c_driver { ++ unsigned int class; ++ int (*probe)(struct i2c_client *, const struct i2c_device_id *); ++ int (*remove)(struct i2c_client *); ++ int (*probe_new)(struct i2c_client *); ++ void (*shutdown)(struct i2c_client *); ++ void (*alert)(struct i2c_client *, enum i2c_alert_protocol, unsigned int); ++ int (*command)(struct i2c_client *, unsigned int, void *); ++ struct device_driver driver; ++ const struct i2c_device_id *id_table; ++ int (*detect)(struct i2c_client *, struct i2c_board_info *); ++ const short unsigned int *address_list; ++ struct list_head clients; ++}; ++ +struct i2c_timings { + u32 bus_freq_hz; + u32 scl_rise_ns; @@ -83174,6 +87651,8 @@ index 0000000..bcb9d76 + u32 scl_int_delay_ns; + u32 sda_fall_ns; + u32 sda_hold_ns; ++ u32 digital_filter_width_ns; ++ u32 analog_filter_cutoff_freq_hz; +}; + +struct trace_event_raw_i2c_write { @@ -83228,7 +87707,19 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_i2c_result {}; + -+struct class_compat___2; ++typedef void (*btf_trace_i2c_write)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); ++ ++typedef void (*btf_trace_i2c_read)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); ++ ++typedef void (*btf_trace_i2c_reply)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); ++ ++typedef void (*btf_trace_i2c_result)(void *, const struct i2c_adapter *, int, int); ++ ++struct i2c_dummy_devres { ++ struct i2c_client *client; ++}; ++ ++struct class_compat; + +struct i2c_cmd_arg { + unsigned int cmd; @@ -83294,6 +87785,14 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_smbus_result {}; + ++typedef void (*btf_trace_smbus_write)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *); ++ ++typedef void (*btf_trace_smbus_read)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int); ++ ++typedef void (*btf_trace_smbus_reply)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *, int); ++ ++typedef void (*btf_trace_smbus_result)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, int); ++ +struct i2c_acpi_handler_data { + struct acpi_connection_info info; + struct i2c_adapter *adapter; @@ -83321,421 +87820,6 @@ index 0000000..bcb9d76 + u32 force_speed; +}; + -+struct cec_msg { -+ __u64 tx_ts; -+ __u64 rx_ts; -+ __u32 len; -+ __u32 timeout; -+ __u32 sequence; -+ __u32 flags; -+ __u8 msg[16]; -+ __u8 reply; -+ __u8 rx_status; -+ __u8 tx_status; -+ __u8 tx_arb_lost_cnt; -+ __u8 tx_nack_cnt; -+ __u8 tx_low_drive_cnt; -+ __u8 tx_error_cnt; -+}; -+ -+struct cec_log_addrs { -+ __u8 log_addr[4]; -+ __u16 log_addr_mask; -+ __u8 cec_version; -+ __u8 num_log_addrs; -+ __u32 vendor_id; -+ __u32 flags; -+ char osd_name[15]; -+ __u8 primary_device_type[4]; -+ __u8 log_addr_type[4]; -+ __u8 all_device_types[4]; -+ __u8 features[48]; -+}; -+ -+struct cec_event_state_change { -+ __u16 phys_addr; -+ __u16 log_addr_mask; -+}; -+ -+struct cec_event_lost_msgs { -+ __u32 lost_msgs; -+}; -+ -+struct cec_event { -+ __u64 ts; -+ __u32 event; -+ __u32 flags; -+ union { -+ struct cec_event_state_change state_change; -+ struct cec_event_lost_msgs lost_msgs; -+ __u32 raw[16]; -+ }; -+}; -+ -+enum rc_proto { -+ RC_PROTO_UNKNOWN = 0, -+ RC_PROTO_OTHER = 1, -+ RC_PROTO_RC5 = 2, -+ RC_PROTO_RC5X_20 = 3, -+ RC_PROTO_RC5_SZ = 4, -+ RC_PROTO_JVC = 5, -+ RC_PROTO_SONY12 = 6, -+ RC_PROTO_SONY15 = 7, -+ RC_PROTO_SONY20 = 8, -+ RC_PROTO_NEC = 9, -+ RC_PROTO_NECX = 10, -+ RC_PROTO_NEC32 = 11, -+ RC_PROTO_SANYO = 12, -+ RC_PROTO_MCIR2_KBD = 13, -+ RC_PROTO_MCIR2_MSE = 14, -+ RC_PROTO_RC6_0 = 15, -+ RC_PROTO_RC6_6A_20 = 16, -+ RC_PROTO_RC6_6A_24 = 17, -+ RC_PROTO_RC6_6A_32 = 18, -+ RC_PROTO_RC6_MCE = 19, -+ RC_PROTO_SHARP = 20, -+ RC_PROTO_XMP = 21, -+ RC_PROTO_CEC = 22, -+ RC_PROTO_IMON = 23, -+}; -+ -+struct rc_map_table { -+ u32 scancode; -+ u32 keycode; -+}; -+ -+struct rc_map { -+ struct rc_map_table *scan; -+ unsigned int size; -+ unsigned int len; -+ unsigned int alloc; -+ enum rc_proto rc_proto; -+ const char *name; -+ spinlock_t lock; -+}; -+ -+enum rc_driver_type { -+ RC_DRIVER_SCANCODE = 0, -+ RC_DRIVER_IR_RAW = 1, -+ RC_DRIVER_IR_RAW_TX = 2, -+}; -+ -+struct rc_scancode_filter { -+ u32 data; -+ u32 mask; -+}; -+ -+struct ir_raw_event_ctrl; -+ -+struct rc_dev { -+ struct device dev; -+ bool managed_alloc; -+ const struct attribute_group *sysfs_groups[5]; -+ const char *device_name; -+ const char *input_phys; -+ struct input_id input_id; -+ const char *driver_name; -+ const char *map_name; -+ struct rc_map rc_map; -+ struct mutex lock; -+ unsigned int minor; -+ struct ir_raw_event_ctrl *raw; -+ struct input_dev *input_dev; -+ enum rc_driver_type driver_type; -+ bool idle; -+ bool encode_wakeup; -+ u64 allowed_protocols; -+ u64 enabled_protocols; -+ u64 allowed_wakeup_protocols; -+ enum rc_proto wakeup_protocol; -+ struct rc_scancode_filter scancode_filter; -+ struct rc_scancode_filter scancode_wakeup_filter; -+ u32 scancode_mask; -+ u32 users; -+ void *priv; -+ spinlock_t keylock; -+ bool keypressed; -+ long unsigned int keyup_jiffies; -+ struct timer_list timer_keyup; -+ struct timer_list timer_repeat; -+ u32 last_keycode; -+ enum rc_proto last_protocol; -+ u32 last_scancode; -+ u8 last_toggle; -+ u32 timeout; -+ u32 min_timeout; -+ u32 max_timeout; -+ u32 rx_resolution; -+ u32 tx_resolution; -+ struct device lirc_dev; -+ struct cdev lirc_cdev; -+ ktime_t gap_start; -+ u64 gap_duration; -+ bool gap; -+ spinlock_t lirc_fh_lock; -+ struct list_head lirc_fh; -+ bool registered; -+ int (*change_protocol)(struct rc_dev *, u64 *); -+ int (*open)(struct rc_dev *); -+ void (*close)(struct rc_dev *); -+ int (*s_tx_mask)(struct rc_dev *, u32); -+ int (*s_tx_carrier)(struct rc_dev *, u32); -+ int (*s_tx_duty_cycle)(struct rc_dev *, u32); -+ int (*s_rx_carrier_range)(struct rc_dev *, u32, u32); -+ int (*tx_ir)(struct rc_dev *, unsigned int *, unsigned int); -+ void (*s_idle)(struct rc_dev *, bool); -+ int (*s_learning_mode)(struct rc_dev *, int); -+ int (*s_carrier_report)(struct rc_dev *, int); -+ int (*s_filter)(struct rc_dev *, struct rc_scancode_filter *); -+ int (*s_wakeup_filter)(struct rc_dev *, struct rc_scancode_filter *); -+ int (*s_timeout)(struct rc_dev *, unsigned int); -+}; -+ -+struct cec_devnode { -+ struct device dev; -+ struct cdev cdev; -+ int minor; -+ bool registered; -+ bool unregistered; -+ struct list_head fhs; -+ struct mutex lock; -+}; -+ -+struct cec_adapter; -+ -+struct cec_fh; -+ -+struct cec_data { -+ struct list_head list; -+ struct list_head xfer_list; -+ struct cec_adapter *adap; -+ struct cec_msg msg; -+ struct cec_fh *fh; -+ struct delayed_work work; -+ struct completion c; -+ u8 attempts; -+ bool blocking; -+ bool completed; -+}; -+ -+struct cec_adap_ops; -+ -+struct cec_adapter { -+ struct module *owner; -+ char name[32]; -+ struct cec_devnode devnode; -+ struct mutex lock; -+ struct rc_dev *rc; -+ struct list_head transmit_queue; -+ unsigned int transmit_queue_sz; -+ struct list_head wait_queue; -+ struct cec_data *transmitting; -+ bool transmit_in_progress; -+ struct task_struct *kthread_config; -+ struct completion config_completion; -+ struct task_struct *kthread; -+ wait_queue_head_t kthread_waitq; -+ wait_queue_head_t waitq; -+ const struct cec_adap_ops *ops; -+ void *priv; -+ u32 capabilities; -+ u8 available_log_addrs; -+ u16 phys_addr; -+ bool needs_hpd; -+ bool is_configuring; -+ bool is_configured; -+ bool cec_pin_is_high; -+ u8 last_initiator; -+ u32 monitor_all_cnt; -+ u32 monitor_pin_cnt; -+ u32 follower_cnt; -+ struct cec_fh *cec_follower; -+ struct cec_fh *cec_initiator; -+ bool passthrough; -+ struct cec_log_addrs log_addrs; -+ u32 tx_timeouts; -+ struct dentry *cec_dir; -+ struct dentry *status_file; -+ struct dentry *error_inj_file; -+ u16 phys_addrs[15]; -+ u32 sequence; -+ char device_name[32]; -+ char input_phys[32]; -+ char input_drv[32]; -+}; -+ -+struct cec_event_entry { -+ struct list_head list; -+ struct cec_event ev; -+}; -+ -+struct cec_fh { -+ struct list_head list; -+ struct list_head xfer_list; -+ struct cec_adapter *adap; -+ u8 mode_initiator; -+ u8 mode_follower; -+ wait_queue_head_t wait; -+ struct mutex lock; -+ struct list_head events[8]; -+ u16 queued_events[8]; -+ unsigned int total_queued_events; -+ struct cec_event_entry core_events[2]; -+ struct list_head msgs; -+ unsigned int queued_msgs; -+}; -+ -+struct cec_adap_ops { -+ int (*adap_enable)(struct cec_adapter *, bool); -+ int (*adap_monitor_all_enable)(struct cec_adapter *, bool); -+ int (*adap_monitor_pin_enable)(struct cec_adapter *, bool); -+ int (*adap_log_addr)(struct cec_adapter *, u8); -+ int (*adap_transmit)(struct cec_adapter *, u8, u32, struct cec_msg *); -+ void (*adap_status)(struct cec_adapter *, struct seq_file *); -+ void (*adap_free)(struct cec_adapter *); -+ int (*error_inj_show)(struct cec_adapter *, struct seq_file *); -+ bool (*error_inj_parse_line)(struct cec_adapter *, char *); -+ int (*received)(struct cec_adapter *, struct cec_msg *); -+}; -+ -+struct est_timings { -+ u8 t1; -+ u8 t2; -+ u8 mfg_rsvd; -+}; -+ -+struct std_timing { -+ u8 hsize; -+ u8 vfreq_aspect; -+}; -+ -+struct detailed_pixel_timing { -+ u8 hactive_lo; -+ u8 hblank_lo; -+ u8 hactive_hblank_hi; -+ u8 vactive_lo; -+ u8 vblank_lo; -+ u8 vactive_vblank_hi; -+ u8 hsync_offset_lo; -+ u8 hsync_pulse_width_lo; -+ u8 vsync_offset_pulse_width_lo; -+ u8 hsync_vsync_offset_pulse_width_hi; -+ u8 width_mm_lo; -+ u8 height_mm_lo; -+ u8 width_height_mm_hi; -+ u8 hborder; -+ u8 vborder; -+ u8 misc; -+}; -+ -+struct detailed_data_string { -+ u8 str[13]; -+}; -+ -+struct detailed_data_monitor_range { -+ u8 min_vfreq; -+ u8 max_vfreq; -+ u8 min_hfreq_khz; -+ u8 max_hfreq_khz; -+ u8 pixel_clock_mhz; -+ u8 flags; -+ union { -+ struct { -+ u8 reserved; -+ u8 hfreq_start_khz; -+ u8 c; -+ __le16 m; -+ u8 k; -+ u8 j; -+ } __attribute__((packed)) gtf2; -+ struct { -+ u8 version; -+ u8 data1; -+ u8 data2; -+ u8 supported_aspects; -+ u8 flags; -+ u8 supported_scalings; -+ u8 preferred_refresh; -+ } cvt; -+ } formula; -+} __attribute__((packed)); -+ -+struct detailed_data_wpindex { -+ u8 white_yx_lo; -+ u8 white_x_hi; -+ u8 white_y_hi; -+ u8 gamma; -+}; -+ -+struct cvt_timing { -+ u8 code[3]; -+}; -+ -+struct detailed_non_pixel { -+ u8 pad1; -+ u8 type; -+ u8 pad2; -+ union { -+ struct detailed_data_string str; -+ struct detailed_data_monitor_range range; -+ struct detailed_data_wpindex color; -+ struct std_timing timings[6]; -+ struct cvt_timing cvt[4]; -+ } data; -+} __attribute__((packed)); -+ -+struct detailed_timing { -+ __le16 pixel_clock; -+ union { -+ struct detailed_pixel_timing pixel_data; -+ struct detailed_non_pixel other_data; -+ } data; -+}; -+ -+struct edid { -+ u8 header[8]; -+ u8 mfg_id[2]; -+ u8 prod_code[2]; -+ u32 serial; -+ u8 mfg_week; -+ u8 mfg_year; -+ u8 version; -+ u8 revision; -+ u8 input; -+ u8 width_cm; -+ u8 height_cm; -+ u8 gamma; -+ u8 features; -+ u8 red_green_lo; -+ u8 black_white_lo; -+ u8 red_x; -+ u8 red_y; -+ u8 green_x; -+ u8 green_y; -+ u8 blue_x; -+ u8 blue_y; -+ u8 white_x; -+ u8 white_y; -+ struct est_timings established_timings; -+ struct std_timing standard_timings[8]; -+ struct detailed_timing detailed_timings[4]; -+ u8 extensions; -+ u8 checksum; -+}; -+ -+struct cec_msg_entry { -+ struct list_head list; -+ struct cec_msg msg; -+}; -+ -+struct cec_caps { -+ char driver[32]; -+ char name[32]; -+ __u32 available_log_addrs; -+ __u32 capabilities; -+ __u32 version; -+}; -+ +struct pps_ktime { + __s64 sec; + __s32 nsec; @@ -83850,7 +87934,7 @@ index 0000000..bcb9d76 + spinlock_t lock; +}; + -+struct ptp_clock___2 { ++struct ptp_clock { + struct posix_clock clock; + struct device dev; + struct ptp_clock_info *info; @@ -83869,6 +87953,10 @@ index 0000000..bcb9d76 + const struct attribute_group *pin_attr_groups[2]; + struct kthread_worker *kworker; + struct kthread_delayed_work aux_work; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct ptp_clock_caps { @@ -83879,7 +87967,8 @@ index 0000000..bcb9d76 + int pps; + int n_pins; + int cross_timestamping; -+ int rsv[13]; ++ int adjust_phase; ++ int rsv[12]; +}; + +struct ptp_sys_offset { @@ -83888,6 +87977,12 @@ index 0000000..bcb9d76 + struct ptp_clock_time ts[51]; +}; + ++struct ptp_sys_offset_extended { ++ unsigned int n_samples; ++ unsigned int rsv[3]; ++ struct ptp_clock_time ts[75]; ++}; ++ +struct ptp_sys_offset_precise { + struct ptp_clock_time device; + struct ptp_clock_time sys_realtime; @@ -83899,14 +87994,41 @@ index 0000000..bcb9d76 + PSY_EVENT_PROP_CHANGED = 0, +}; + ++struct power_supply_battery_ocv_table { ++ int ocv; ++ int capacity; ++}; ++ ++struct power_supply_resistance_temp_table { ++ int temp; ++ int resistance; ++}; ++ +struct power_supply_battery_info { + int energy_full_design_uwh; + int charge_full_design_uah; + int voltage_min_design_uv; ++ int voltage_max_design_uv; ++ int tricklecharge_current_ua; + int precharge_current_ua; ++ int precharge_voltage_max_uv; + int charge_term_current_ua; ++ int charge_restart_voltage_uv; ++ int overvoltage_limit_uv; + int constant_charge_current_max_ua; + int constant_charge_voltage_max_uv; ++ int factory_internal_resistance_uohm; ++ int ocv_temp[20]; ++ int temp_ambient_alert_min; ++ int temp_ambient_alert_max; ++ int temp_alert_min; ++ int temp_alert_max; ++ int temp_min; ++ int temp_max; ++ struct power_supply_battery_ocv_table *ocv_table[20]; ++ int ocv_table_size[20]; ++ struct power_supply_resistance_temp_table *resist_table; ++ int resist_table_size; +}; + +struct psy_am_i_supplied_data { @@ -83914,6 +88036,48 @@ index 0000000..bcb9d76 + unsigned int count; +}; + ++enum { ++ POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0, ++ POWER_SUPPLY_CHARGE_TYPE_NONE = 1, ++ POWER_SUPPLY_CHARGE_TYPE_TRICKLE = 2, ++ POWER_SUPPLY_CHARGE_TYPE_FAST = 3, ++ POWER_SUPPLY_CHARGE_TYPE_STANDARD = 4, ++ POWER_SUPPLY_CHARGE_TYPE_ADAPTIVE = 5, ++ POWER_SUPPLY_CHARGE_TYPE_CUSTOM = 6, ++ POWER_SUPPLY_CHARGE_TYPE_LONGLIFE = 7, ++}; ++ ++enum { ++ POWER_SUPPLY_HEALTH_UNKNOWN = 0, ++ POWER_SUPPLY_HEALTH_GOOD = 1, ++ POWER_SUPPLY_HEALTH_OVERHEAT = 2, ++ POWER_SUPPLY_HEALTH_DEAD = 3, ++ POWER_SUPPLY_HEALTH_OVERVOLTAGE = 4, ++ POWER_SUPPLY_HEALTH_UNSPEC_FAILURE = 5, ++ POWER_SUPPLY_HEALTH_COLD = 6, ++ POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE = 7, ++ POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE = 8, ++ POWER_SUPPLY_HEALTH_OVERCURRENT = 9, ++ POWER_SUPPLY_HEALTH_CALIBRATION_REQUIRED = 10, ++ POWER_SUPPLY_HEALTH_WARM = 11, ++ POWER_SUPPLY_HEALTH_COOL = 12, ++ POWER_SUPPLY_HEALTH_HOT = 13, ++}; ++ ++enum { ++ POWER_SUPPLY_SCOPE_UNKNOWN = 0, ++ POWER_SUPPLY_SCOPE_SYSTEM = 1, ++ POWER_SUPPLY_SCOPE_DEVICE = 2, ++}; ++ ++struct power_supply_attr { ++ const char *prop_name; ++ char attr_name[31]; ++ struct device_attribute dev_attr; ++ const char * const *text_values; ++ int text_values_len; ++}; ++ +enum hwmon_sensor_types { + hwmon_chip = 0, + hwmon_temp = 1, @@ -83924,148 +88088,80 @@ index 0000000..bcb9d76 + hwmon_humidity = 6, + hwmon_fan = 7, + hwmon_pwm = 8, -+ hwmon_max = 9, -+}; -+ -+enum hwmon_chip_attributes { -+ hwmon_chip_temp_reset_history = 0, -+ hwmon_chip_in_reset_history = 1, -+ hwmon_chip_curr_reset_history = 2, -+ hwmon_chip_power_reset_history = 3, -+ hwmon_chip_register_tz = 4, -+ hwmon_chip_update_interval = 5, -+ hwmon_chip_alarms = 6, ++ hwmon_intrusion = 9, ++ hwmon_max = 10, +}; + +enum hwmon_temp_attributes { -+ hwmon_temp_input = 0, -+ hwmon_temp_type = 1, -+ hwmon_temp_lcrit = 2, -+ hwmon_temp_lcrit_hyst = 3, -+ hwmon_temp_min = 4, -+ hwmon_temp_min_hyst = 5, -+ hwmon_temp_max = 6, -+ hwmon_temp_max_hyst = 7, -+ hwmon_temp_crit = 8, -+ hwmon_temp_crit_hyst = 9, -+ hwmon_temp_emergency = 10, -+ hwmon_temp_emergency_hyst = 11, -+ hwmon_temp_alarm = 12, -+ hwmon_temp_lcrit_alarm = 13, -+ hwmon_temp_min_alarm = 14, -+ hwmon_temp_max_alarm = 15, -+ hwmon_temp_crit_alarm = 16, -+ hwmon_temp_emergency_alarm = 17, -+ hwmon_temp_fault = 18, -+ hwmon_temp_offset = 19, -+ hwmon_temp_label = 20, -+ hwmon_temp_lowest = 21, -+ hwmon_temp_highest = 22, -+ hwmon_temp_reset_history = 23, ++ hwmon_temp_enable = 0, ++ hwmon_temp_input = 1, ++ hwmon_temp_type = 2, ++ hwmon_temp_lcrit = 3, ++ hwmon_temp_lcrit_hyst = 4, ++ hwmon_temp_min = 5, ++ hwmon_temp_min_hyst = 6, ++ hwmon_temp_max = 7, ++ hwmon_temp_max_hyst = 8, ++ hwmon_temp_crit = 9, ++ hwmon_temp_crit_hyst = 10, ++ hwmon_temp_emergency = 11, ++ hwmon_temp_emergency_hyst = 12, ++ hwmon_temp_alarm = 13, ++ hwmon_temp_lcrit_alarm = 14, ++ hwmon_temp_min_alarm = 15, ++ hwmon_temp_max_alarm = 16, ++ hwmon_temp_crit_alarm = 17, ++ hwmon_temp_emergency_alarm = 18, ++ hwmon_temp_fault = 19, ++ hwmon_temp_offset = 20, ++ hwmon_temp_label = 21, ++ hwmon_temp_lowest = 22, ++ hwmon_temp_highest = 23, ++ hwmon_temp_reset_history = 24, ++ hwmon_temp_rated_min = 25, ++ hwmon_temp_rated_max = 26, +}; + +enum hwmon_in_attributes { -+ hwmon_in_input = 0, -+ hwmon_in_min = 1, -+ hwmon_in_max = 2, -+ hwmon_in_lcrit = 3, -+ hwmon_in_crit = 4, -+ hwmon_in_average = 5, -+ hwmon_in_lowest = 6, -+ hwmon_in_highest = 7, -+ hwmon_in_reset_history = 8, -+ hwmon_in_label = 9, -+ hwmon_in_alarm = 10, -+ hwmon_in_min_alarm = 11, -+ hwmon_in_max_alarm = 12, -+ hwmon_in_lcrit_alarm = 13, -+ hwmon_in_crit_alarm = 14, ++ hwmon_in_enable = 0, ++ hwmon_in_input = 1, ++ hwmon_in_min = 2, ++ hwmon_in_max = 3, ++ hwmon_in_lcrit = 4, ++ hwmon_in_crit = 5, ++ hwmon_in_average = 6, ++ hwmon_in_lowest = 7, ++ hwmon_in_highest = 8, ++ hwmon_in_reset_history = 9, ++ hwmon_in_label = 10, ++ hwmon_in_alarm = 11, ++ hwmon_in_min_alarm = 12, ++ hwmon_in_max_alarm = 13, ++ hwmon_in_lcrit_alarm = 14, ++ hwmon_in_crit_alarm = 15, ++ hwmon_in_rated_min = 16, ++ hwmon_in_rated_max = 17, +}; + +enum hwmon_curr_attributes { -+ hwmon_curr_input = 0, -+ hwmon_curr_min = 1, -+ hwmon_curr_max = 2, -+ hwmon_curr_lcrit = 3, -+ hwmon_curr_crit = 4, -+ hwmon_curr_average = 5, -+ hwmon_curr_lowest = 6, -+ hwmon_curr_highest = 7, -+ hwmon_curr_reset_history = 8, -+ hwmon_curr_label = 9, -+ hwmon_curr_alarm = 10, -+ hwmon_curr_min_alarm = 11, -+ hwmon_curr_max_alarm = 12, -+ hwmon_curr_lcrit_alarm = 13, -+ hwmon_curr_crit_alarm = 14, -+}; -+ -+enum hwmon_power_attributes { -+ hwmon_power_average = 0, -+ hwmon_power_average_interval = 1, -+ hwmon_power_average_interval_max = 2, -+ hwmon_power_average_interval_min = 3, -+ hwmon_power_average_highest = 4, -+ hwmon_power_average_lowest = 5, -+ hwmon_power_average_max = 6, -+ hwmon_power_average_min = 7, -+ hwmon_power_input = 8, -+ hwmon_power_input_highest = 9, -+ hwmon_power_input_lowest = 10, -+ hwmon_power_reset_history = 11, -+ hwmon_power_accuracy = 12, -+ hwmon_power_cap = 13, -+ hwmon_power_cap_hyst = 14, -+ hwmon_power_cap_max = 15, -+ hwmon_power_cap_min = 16, -+ hwmon_power_min = 17, -+ hwmon_power_max = 18, -+ hwmon_power_crit = 19, -+ hwmon_power_lcrit = 20, -+ hwmon_power_label = 21, -+ hwmon_power_alarm = 22, -+ hwmon_power_cap_alarm = 23, -+ hwmon_power_min_alarm = 24, -+ hwmon_power_max_alarm = 25, -+ hwmon_power_lcrit_alarm = 26, -+ hwmon_power_crit_alarm = 27, -+}; -+ -+enum hwmon_energy_attributes { -+ hwmon_energy_input = 0, -+ hwmon_energy_label = 1, -+}; -+ -+enum hwmon_humidity_attributes { -+ hwmon_humidity_input = 0, -+ hwmon_humidity_label = 1, -+ hwmon_humidity_min = 2, -+ hwmon_humidity_min_hyst = 3, -+ hwmon_humidity_max = 4, -+ hwmon_humidity_max_hyst = 5, -+ hwmon_humidity_alarm = 6, -+ hwmon_humidity_fault = 7, -+}; -+ -+enum hwmon_fan_attributes { -+ hwmon_fan_input = 0, -+ hwmon_fan_label = 1, -+ hwmon_fan_min = 2, -+ hwmon_fan_max = 3, -+ hwmon_fan_div = 4, -+ hwmon_fan_pulses = 5, -+ hwmon_fan_target = 6, -+ hwmon_fan_alarm = 7, -+ hwmon_fan_min_alarm = 8, -+ hwmon_fan_max_alarm = 9, -+ hwmon_fan_fault = 10, -+}; -+ -+enum hwmon_pwm_attributes { -+ hwmon_pwm_input = 0, -+ hwmon_pwm_enable = 1, -+ hwmon_pwm_mode = 2, -+ hwmon_pwm_freq = 3, ++ hwmon_curr_enable = 0, ++ hwmon_curr_input = 1, ++ hwmon_curr_min = 2, ++ hwmon_curr_max = 3, ++ hwmon_curr_lcrit = 4, ++ hwmon_curr_crit = 5, ++ hwmon_curr_average = 6, ++ hwmon_curr_lowest = 7, ++ hwmon_curr_highest = 8, ++ hwmon_curr_reset_history = 9, ++ hwmon_curr_label = 10, ++ hwmon_curr_alarm = 11, ++ hwmon_curr_min_alarm = 12, ++ hwmon_curr_max_alarm = 13, ++ hwmon_curr_lcrit_alarm = 14, ++ hwmon_curr_crit_alarm = 15, ++ hwmon_curr_rated_min = 16, ++ hwmon_curr_rated_max = 17, +}; + +struct hwmon_ops { @@ -84085,10 +88181,148 @@ index 0000000..bcb9d76 + const struct hwmon_channel_info **info; +}; + ++struct power_supply_hwmon { ++ struct power_supply *psy; ++ long unsigned int *props; ++}; ++ ++struct hwmon_type_attr_list { ++ const u32 *attrs; ++ size_t n_attrs; ++}; ++ ++enum hwmon_chip_attributes { ++ hwmon_chip_temp_reset_history = 0, ++ hwmon_chip_in_reset_history = 1, ++ hwmon_chip_curr_reset_history = 2, ++ hwmon_chip_power_reset_history = 3, ++ hwmon_chip_register_tz = 4, ++ hwmon_chip_update_interval = 5, ++ hwmon_chip_alarms = 6, ++ hwmon_chip_samples = 7, ++ hwmon_chip_curr_samples = 8, ++ hwmon_chip_in_samples = 9, ++ hwmon_chip_power_samples = 10, ++ hwmon_chip_temp_samples = 11, ++}; ++ ++enum hwmon_power_attributes { ++ hwmon_power_enable = 0, ++ hwmon_power_average = 1, ++ hwmon_power_average_interval = 2, ++ hwmon_power_average_interval_max = 3, ++ hwmon_power_average_interval_min = 4, ++ hwmon_power_average_highest = 5, ++ hwmon_power_average_lowest = 6, ++ hwmon_power_average_max = 7, ++ hwmon_power_average_min = 8, ++ hwmon_power_input = 9, ++ hwmon_power_input_highest = 10, ++ hwmon_power_input_lowest = 11, ++ hwmon_power_reset_history = 12, ++ hwmon_power_accuracy = 13, ++ hwmon_power_cap = 14, ++ hwmon_power_cap_hyst = 15, ++ hwmon_power_cap_max = 16, ++ hwmon_power_cap_min = 17, ++ hwmon_power_min = 18, ++ hwmon_power_max = 19, ++ hwmon_power_crit = 20, ++ hwmon_power_lcrit = 21, ++ hwmon_power_label = 22, ++ hwmon_power_alarm = 23, ++ hwmon_power_cap_alarm = 24, ++ hwmon_power_min_alarm = 25, ++ hwmon_power_max_alarm = 26, ++ hwmon_power_lcrit_alarm = 27, ++ hwmon_power_crit_alarm = 28, ++ hwmon_power_rated_min = 29, ++ hwmon_power_rated_max = 30, ++}; ++ ++enum hwmon_energy_attributes { ++ hwmon_energy_enable = 0, ++ hwmon_energy_input = 1, ++ hwmon_energy_label = 2, ++}; ++ ++enum hwmon_humidity_attributes { ++ hwmon_humidity_enable = 0, ++ hwmon_humidity_input = 1, ++ hwmon_humidity_label = 2, ++ hwmon_humidity_min = 3, ++ hwmon_humidity_min_hyst = 4, ++ hwmon_humidity_max = 5, ++ hwmon_humidity_max_hyst = 6, ++ hwmon_humidity_alarm = 7, ++ hwmon_humidity_fault = 8, ++ hwmon_humidity_rated_min = 9, ++ hwmon_humidity_rated_max = 10, ++}; ++ ++enum hwmon_fan_attributes { ++ hwmon_fan_enable = 0, ++ hwmon_fan_input = 1, ++ hwmon_fan_label = 2, ++ hwmon_fan_min = 3, ++ hwmon_fan_max = 4, ++ hwmon_fan_div = 5, ++ hwmon_fan_pulses = 6, ++ hwmon_fan_target = 7, ++ hwmon_fan_alarm = 8, ++ hwmon_fan_min_alarm = 9, ++ hwmon_fan_max_alarm = 10, ++ hwmon_fan_fault = 11, ++}; ++ ++enum hwmon_pwm_attributes { ++ hwmon_pwm_input = 0, ++ hwmon_pwm_enable = 1, ++ hwmon_pwm_mode = 2, ++ hwmon_pwm_freq = 3, ++}; ++ ++enum hwmon_intrusion_attributes { ++ hwmon_intrusion_alarm = 0, ++ hwmon_intrusion_beep = 1, ++}; ++ ++struct trace_event_raw_hwmon_attr_class { ++ struct trace_entry ent; ++ int index; ++ u32 __data_loc_attr_name; ++ long int val; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_hwmon_attr_show_string { ++ struct trace_entry ent; ++ int index; ++ u32 __data_loc_attr_name; ++ u32 __data_loc_label; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_hwmon_attr_class { ++ u32 attr_name; ++}; ++ ++struct trace_event_data_offsets_hwmon_attr_show_string { ++ u32 attr_name; ++ u32 label; ++}; ++ ++typedef void (*btf_trace_hwmon_attr_show)(void *, int, const char *, long int); ++ ++typedef void (*btf_trace_hwmon_attr_store)(void *, int, const char *, long int); ++ ++typedef void (*btf_trace_hwmon_attr_show_string)(void *, int, const char *, const char *); ++ +struct hwmon_device { + const char *name; + struct device dev; + const struct hwmon_chip_info *chip; ++ struct list_head tzdata; + struct attribute_group group; + const struct attribute_group **groups; +}; @@ -84102,28 +88336,9 @@ index 0000000..bcb9d76 + char name[32]; +}; + -+enum events { -+ THERMAL_AUX0 = 0, -+ THERMAL_AUX1 = 1, -+ THERMAL_CRITICAL = 2, -+ THERMAL_DEV_FAULT = 3, -+}; -+ -+enum { -+ THERMAL_GENL_ATTR_UNSPEC = 0, -+ THERMAL_GENL_ATTR_EVENT = 1, -+ __THERMAL_GENL_ATTR_MAX = 2, -+}; -+ -+enum { -+ THERMAL_GENL_CMD_UNSPEC = 0, -+ THERMAL_GENL_CMD_EVENT = 1, -+ __THERMAL_GENL_CMD_MAX = 2, -+}; -+ -+struct thermal_genl_event { -+ u32 orig; -+ enum events event; ++struct thermal_attr { ++ struct device_attribute attr; ++ char name[20]; +}; + +struct trace_event_raw_thermal_temperature { @@ -84163,6 +88378,12 @@ index 0000000..bcb9d76 + u32 thermal_zone; +}; + ++typedef void (*btf_trace_thermal_temperature)(void *, struct thermal_zone_device *); ++ ++typedef void (*btf_trace_cdev_update)(void *, struct thermal_cooling_device *, long unsigned int); ++ ++typedef void (*btf_trace_thermal_zone_trip)(void *, struct thermal_zone_device *, int, enum thermal_trip_type); ++ +struct thermal_instance { + int id; + char name[20]; @@ -84202,6 +88423,35 @@ index 0000000..bcb9d76 + struct thermal_hwmon_attr temp_crit; +}; + ++struct _thermal_state { ++ u64 next_check; ++ u64 last_interrupt_time; ++ struct delayed_work therm_work; ++ long unsigned int count; ++ long unsigned int last_count; ++ long unsigned int max_time_ms; ++ long unsigned int total_time_ms; ++ bool rate_control_active; ++ bool new_event; ++ u8 level; ++ u8 sample_index; ++ u8 sample_count; ++ u8 average; ++ u8 baseline_temp; ++ u8 temp_samples[3]; ++}; ++ ++struct thermal_state { ++ struct _thermal_state core_throttle; ++ struct _thermal_state core_power_limit; ++ struct _thermal_state package_throttle; ++ struct _thermal_state package_power_limit; ++ struct _thermal_state core_thresh0; ++ struct _thermal_state core_thresh1; ++ struct _thermal_state pkg_thresh0; ++ struct _thermal_state pkg_thresh1; ++}; ++ +struct watchdog_info { + __u32 options; + __u32 firmware_version; @@ -84261,6 +88511,7 @@ index 0000000..bcb9d76 + struct mutex lock; + ktime_t last_keepalive; + ktime_t last_hw_keepalive; ++ ktime_t open_deadline; + struct hrtimer timer; + struct kthread_work work; + long unsigned int status; @@ -84382,6 +88633,39 @@ index 0000000..bcb9d76 + +typedef struct mdu_version_s mdu_version_t; + ++struct mdu_array_info_s { ++ int major_version; ++ int minor_version; ++ int patch_version; ++ unsigned int ctime; ++ int level; ++ int size; ++ int nr_disks; ++ int raid_disks; ++ int md_minor; ++ int not_persistent; ++ unsigned int utime; ++ int state; ++ int active_disks; ++ int working_disks; ++ int failed_disks; ++ int spare_disks; ++ int layout; ++ int chunk_size; ++}; ++ ++typedef struct mdu_array_info_s mdu_array_info_t; ++ ++struct mdu_disk_info_s { ++ int number; ++ int major; ++ int minor; ++ int raid_disk; ++ int state; ++}; ++ ++typedef struct mdu_disk_info_s mdu_disk_info_t; ++ +struct mdu_bitmap_file_s { + char pathname[4096]; +}; @@ -84397,6 +88681,7 @@ index 0000000..bcb9d76 + int (*leave)(struct mddev *); + int (*slot_number)(struct mddev *); + int (*resync_info_update)(struct mddev *, sector_t, sector_t); ++ void (*resync_info_get)(struct mddev *, sector_t *, sector_t *); + int (*metadata_update_start)(struct mddev *); + int (*metadata_update_finish)(struct mddev *); + void (*metadata_update_cancel)(struct mddev *); @@ -84409,6 +88694,7 @@ index 0000000..bcb9d76 + int (*remove_disk)(struct mddev *, struct md_rdev *); + void (*load_bitmaps)(struct mddev *, int); + int (*gather_bitmaps)(struct md_rdev *); ++ int (*resize_bitmaps)(struct mddev *, sector_t, sector_t); + int (*lock_all_bitmaps)(struct mddev *); + void (*unlock_all_bitmaps)(struct mddev *); + void (*update_size)(struct mddev *, sector_t); @@ -84534,17 +88820,23 @@ index 0000000..bcb9d76 + ktime_t last_flush; + struct work_struct flush_work; + struct work_struct event_work; ++ mempool_t *serial_info_pool; + void (*sync_super)(struct mddev *, struct md_rdev *); + struct md_cluster_info *cluster_info; + unsigned int good_device_nr; ++ unsigned int noio_flag; + bool has_superblocks: 1; ++ bool fail_last_dev: 1; ++ bool serialize_policy: 1; +}; + ++struct serial_in_rdev; ++ +struct md_rdev { + struct list_head same_set; + sector_t sectors; + struct mddev *mddev; -+ int last_events; ++ long long int last_events; + struct block_device *meta_bdev; + struct block_device *bdev; + struct page *sb_page; @@ -84571,6 +88863,7 @@ index 0000000..bcb9d76 + atomic_t read_errors; + time64_t last_read_error; + atomic_t corrected_errors; ++ struct serial_in_rdev *serial; + struct work_struct del_work; + struct kernfs_node *sysfs_state; + struct kernfs_node *sysfs_unack_badblocks; @@ -84583,6 +88876,12 @@ index 0000000..bcb9d76 + } ppl; +}; + ++struct serial_in_rdev { ++ struct rb_root_cached serial_rb; ++ spinlock_t serial_lock; ++ wait_queue_head_t serial_io_wait; ++}; ++ +enum flag_bits { + Faulty = 0, + In_sync = 1, @@ -84602,7 +88901,8 @@ index 0000000..bcb9d76 + ExternalBbl = 15, + FailFast = 16, + LastDev = 17, -+ WantRemove = 18, ++ CollisionCheck = 18, ++ WantRemove = 19, +}; + +enum mddev_flags { @@ -84617,6 +88917,7 @@ index 0000000..bcb9d76 + MD_ALLOW_SB_UPDATE = 8, + MD_UPDATING_SB = 9, + MD_NOT_READY = 10, ++ MD_BROKEN = 11, +}; + +enum mddev_sb_flags { @@ -84646,9 +88947,9 @@ index 0000000..bcb9d76 + int (*check_reshape)(struct mddev *); + int (*start_reshape)(struct mddev *); + void (*finish_reshape)(struct mddev *); ++ void (*update_reshape_pos)(struct mddev *); + void (*quiesce)(struct mddev *, int); + void * (*takeover)(struct mddev *); -+ int (*congested)(struct mddev *, int); + int (*change_consistency_policy)(struct mddev *, const char *); +}; + @@ -84757,7 +89058,8 @@ index 0000000..bcb9d76 + active = 6, + write_pending = 7, + active_idle = 8, -+ bad_word = 9, ++ broken = 9, ++ bad_word = 10, +}; + +struct detected_devices_node { @@ -84798,17 +89100,19 @@ index 0000000..bcb9d76 + BITMAP_PAGE_NEEDWRITE = 2, +}; + ++struct md_setup_args { ++ int minor; ++ int partitioned; ++ int level; ++ int chunk; ++ char *device_names; ++}; ++ +struct dm_kobject_holder { + struct kobject kobj; + struct completion completion; +}; + -+enum { -+ EDAC_REPORTING_ENABLED = 0, -+ EDAC_REPORTING_DISABLED = 1, -+ EDAC_REPORTING_FORCE = 2, -+}; -+ +enum dev_type { + DEV_UNKNOWN = 0, + DEV_X1 = 1, @@ -84900,6 +89204,7 @@ index 0000000..bcb9d76 + char label[32]; + unsigned int location[3]; + struct mem_ctl_info *mci; ++ unsigned int idx; + u32 grain; + enum dev_type dtype; + enum mem_type mtype; @@ -84907,6 +89212,9 @@ index 0000000..bcb9d76 + u32 nr_pages; + unsigned int csrow; + unsigned int cschannel; ++ u16 smbios_handle; ++ u32 ce_count; ++ u32 ue_count; +}; + +struct mcidev_sysfs_attribute; @@ -84916,6 +89224,7 @@ index 0000000..bcb9d76 + char label[296]; + long int grain; + u16 error_count; ++ enum hw_event_mc_err_type type; + int top_layer; + int mid_layer; + int low_layer; @@ -84924,7 +89233,6 @@ index 0000000..bcb9d76 + long unsigned int syndrome; + const char *msg; + const char *other_detail; -+ bool enable_per_layer_report; +}; + +struct csrow_info; @@ -84962,8 +89270,6 @@ index 0000000..bcb9d76 + u32 ue_noinfo_count; + u32 ue_mc; + u32 ce_mc; -+ u32 *ce_per_layer[3]; -+ u32 *ue_per_layer[3]; + struct completion complete; + const struct mcidev_sysfs_attribute *mc_driver_sysfs_attributes; + struct delayed_work work; @@ -85068,7 +89374,7 @@ index 0000000..bcb9d76 + +struct dev_ch_attribute { + struct device_attribute attr; -+ int channel; ++ unsigned int channel; +}; + +struct ctl_info_attribute { @@ -85126,14 +89432,17 @@ index 0000000..bcb9d76 + +typedef void (*pci_parity_check_fn_t)(struct pci_dev *); + -+struct ghes_edac_pvt { -+ struct list_head list; -+ struct ghes *ghes; ++struct ghes_pvt { + struct mem_ctl_info *mci; + char other_detail[400]; + char msg[80]; +}; + ++struct ghes_hw_desc { ++ int num_dimms; ++ struct dimm_info *dimms; ++}; ++ +struct memdev_dmi_entry { + u8 type; + u8 length; @@ -85159,17 +89468,26 @@ index 0000000..bcb9d76 + u16 conf_mem_clk_speed; +} __attribute__((packed)); + -+struct ghes_edac_dimm_fill { -+ struct mem_ctl_info *mci; -+ unsigned int count; ++struct cpufreq_policy_data { ++ struct cpufreq_cpuinfo cpuinfo; ++ struct cpufreq_frequency_table *freq_table; ++ unsigned int cpu; ++ unsigned int min; ++ unsigned int max; ++}; ++ ++struct freq_attr { ++ struct attribute attr; ++ ssize_t (*show)(struct cpufreq_policy *, char *); ++ ssize_t (*store)(struct cpufreq_policy *, const char *, size_t); +}; + +struct cpufreq_driver { + char name[16]; -+ u8 flags; ++ u16 flags; + void *driver_data; + int (*init)(struct cpufreq_policy *); -+ int (*verify)(struct cpufreq_policy *); ++ int (*verify)(struct cpufreq_policy_data *); + int (*setpolicy)(struct cpufreq_policy *); + int (*target)(struct cpufreq_policy *, unsigned int, unsigned int); + int (*target_index)(struct cpufreq_policy *, unsigned int); @@ -85178,7 +89496,10 @@ index 0000000..bcb9d76 + unsigned int (*get_intermediate)(struct cpufreq_policy *, unsigned int); + int (*target_intermediate)(struct cpufreq_policy *, unsigned int); + unsigned int (*get)(unsigned int); ++ void (*update_limits)(unsigned int); + int (*bios_limit)(int, unsigned int *); ++ int (*online)(struct cpufreq_policy *); ++ int (*offline)(struct cpufreq_policy *); + int (*exit)(struct cpufreq_policy *); + void (*stop_cpu)(struct cpufreq_policy *); + int (*suspend)(struct cpufreq_policy *); @@ -85186,7 +89507,7 @@ index 0000000..bcb9d76 + void (*ready)(struct cpufreq_policy *); + struct freq_attr **attr; + bool boost_enabled; -+ int (*set_boost)(int); ++ int (*set_boost)(struct cpufreq_policy *, int); +}; + +struct cpufreq_stats { @@ -85198,19 +89519,8 @@ index 0000000..bcb9d76 + u64 *time_in_state; + unsigned int *freq_table; + unsigned int *trans_table; -+}; -+ -+struct gov_attr_set { -+ struct kobject kobj; -+ struct list_head policy_list; -+ struct mutex update_lock; -+ int usage_count; -+}; -+ -+struct governor_attr { -+ struct attribute attr; -+ ssize_t (*show)(struct gov_attr_set *, char *); -+ ssize_t (*store)(struct gov_attr_set *, const char *, size_t); ++ unsigned int reset_pending; ++ long long unsigned int reset_time; +}; + +enum { @@ -85334,6 +89644,7 @@ index 0000000..bcb9d76 +struct global_params { + bool no_turbo; + bool turbo_disabled; ++ bool turbo_disabled_mf; + int max_perf_pct; + int min_perf_pct; +}; @@ -85361,12 +89672,13 @@ index 0000000..bcb9d76 + s16 epp_powersave; + s16 epp_policy; + s16 epp_default; -+ s16 epp_saved; ++ s16 epp_cached; + u64 hwp_req_cached; + u64 hwp_cap_cached; + u64 last_io_update; + unsigned int sched_flags; + u32 hwp_boost_min; ++ bool suspended; +}; + +struct pstate_funcs { @@ -85385,27 +89697,16 @@ index 0000000..bcb9d76 + PPC = 1, +}; + -+struct cpuidle_device_wrapper { -+ struct cpuidle_device dev; -+ int last_state_idx; -+ u64 poll_limit_ns; -+}; -+ +struct cpuidle_governor { + char name[16]; + struct list_head governor_list; + unsigned int rating; -+ int (*enable)(struct cpuidle_driver___2 *, struct cpuidle_device *); -+ void (*disable)(struct cpuidle_driver___2 *, struct cpuidle_device *); -+ int (*select)(struct cpuidle_driver___2 *, struct cpuidle_device *, bool *); ++ int (*enable)(struct cpuidle_driver *, struct cpuidle_device *); ++ void (*disable)(struct cpuidle_driver *, struct cpuidle_device *); ++ int (*select)(struct cpuidle_driver *, struct cpuidle_device *, bool *); + void (*reflect)(struct cpuidle_device *, int); +}; + -+struct cpuidle_driver_wrapper { -+ struct cpuidle_driver___2 drv; -+ const char *governor; -+}; -+ +struct cpuidle_state_kobj { + struct cpuidle_state *state; + struct cpuidle_state_usage *state_usage; @@ -85433,17 +89734,31 @@ index 0000000..bcb9d76 +}; + +struct menu_device { -+ int last_state_idx; + int needs_update; + int tick_wakeup; -+ unsigned int next_timer_us; -+ unsigned int predicted_us; ++ u64 next_timer_ns; + unsigned int bucket; + unsigned int correction_factor[12]; + unsigned int intervals[8]; + int interval_ptr; +}; + ++struct teo_idle_state { ++ unsigned int early_hits; ++ unsigned int hits; ++ unsigned int misses; ++}; ++ ++struct teo_cpu { ++ u64 time_span_ns; ++ u64 sleep_length_ns; ++ struct teo_idle_state states[10]; ++ int interval_idx; ++ u64 intervals[8]; ++}; ++ ++struct pci_dev; ++ +struct sdhci_pci_data { + struct pci_dev *pdev; + int slotno; @@ -85453,13 +89768,28 @@ index 0000000..bcb9d76 + void (*cleanup)(struct sdhci_pci_data *); +}; + -+struct led_cdev; ++struct led_init_data { ++ struct fwnode_handle *fwnode; ++ const char *default_label; ++ const char *devicename; ++ bool devname_mandatory; ++}; ++ ++struct led_properties { ++ u32 color; ++ bool color_present; ++ const char *function; ++ u32 func_enum; ++ bool func_enum_present; ++ const char *label; ++}; + +struct dmi_memdev_info { + const char *device; + const char *bank; + u64 size; + u16 handle; ++ u8 type; +}; + +struct dmi_sysfs_entry { @@ -85537,6 +89867,11 @@ index 0000000..bcb9d76 + int field; +}; + ++struct acpi_table_ibft { ++ struct acpi_table_header header; ++ u8 reserved[12]; ++}; ++ +struct firmware_map_entry { + u64 start; + u64 end; @@ -85595,11 +89930,19 @@ index 0000000..bcb9d76 + u32 table; +} efi_config_table_32_t; + ++typedef union { ++ struct { ++ efi_guid_t guid; ++ void *table; ++ }; ++ efi_config_table_32_t mixed_mode; ++} efi_config_table_t; ++ +typedef struct { -+ u32 version; -+ u32 length; -+ u64 memory_protection_attribute; -+} efi_properties_table_t; ++ u16 version; ++ u16 length; ++ u32 runtime_services_supported; ++} efi_rt_properties_table_t; + +struct efivar_operations { + efi_get_variable_t *get_variable; @@ -85652,6 +89995,8 @@ index 0000000..bcb9d76 + +typedef int (*efi_memattr_perm_setter)(struct mm_struct *, efi_memory_desc_t *); + ++typedef u64 efi_physical_addr_t; ++ +typedef struct { + u64 length; + u64 data; @@ -85689,47 +90034,56 @@ index 0000000..bcb9d76 +}; + +struct cper_sec_proc_generic { -+ __u64 validation_bits; -+ __u8 proc_type; -+ __u8 proc_isa; -+ __u8 proc_error_type; -+ __u8 operation; -+ __u8 flags; -+ __u8 level; -+ __u16 reserved; -+ __u64 cpu_version; ++ u64 validation_bits; ++ u8 proc_type; ++ u8 proc_isa; ++ u8 proc_error_type; ++ u8 operation; ++ u8 flags; ++ u8 level; ++ u16 reserved; ++ u64 cpu_version; + char cpu_brand[128]; -+ __u64 proc_id; -+ __u64 target_addr; -+ __u64 requestor_id; -+ __u64 responder_id; -+ __u64 ip; ++ u64 proc_id; ++ u64 target_addr; ++ u64 requestor_id; ++ u64 responder_id; ++ u64 ip; +}; + +struct cper_sec_proc_ia { -+ __u64 validation_bits; -+ __u64 lapic_id; -+ __u8 cpuid[48]; ++ u64 validation_bits; ++ u64 lapic_id; ++ u8 cpuid[48]; +}; + +struct cper_mem_err_compact { -+ __u64 validation_bits; -+ __u16 node; -+ __u16 card; -+ __u16 module; -+ __u16 bank; -+ __u16 device; -+ __u16 row; -+ __u16 column; -+ __u16 bit_pos; -+ __u64 requestor_id; -+ __u64 responder_id; -+ __u64 target_id; -+ __u16 rank; -+ __u16 mem_array_handle; -+ __u16 mem_dev_handle; ++ u64 validation_bits; ++ u16 node; ++ u16 card; ++ u16 module; ++ u16 bank; ++ u16 device; ++ u16 row; ++ u16 column; ++ u16 bit_pos; ++ u64 requestor_id; ++ u64 responder_id; ++ u64 target_id; ++ u16 rank; ++ u16 mem_array_handle; ++ u16 mem_dev_handle; ++ u8 extended; +} __attribute__((packed)); + ++struct cper_sec_fw_err_rec_ref { ++ u8 record_type; ++ u8 revision; ++ u8 reserved[6]; ++ u64 record_identifier; ++ guid_t record_identifier_guid; ++}; ++ +struct efi_runtime_map_entry { + efi_memory_desc_t md; + struct kobject kobj; @@ -85740,45 +90094,30 @@ index 0000000..bcb9d76 + ssize_t (*show)(struct efi_runtime_map_entry *, char *); +}; + -+enum efi_rts_ids { -+ GET_TIME = 0, -+ SET_TIME = 1, -+ GET_WAKEUP_TIME = 2, -+ SET_WAKEUP_TIME = 3, -+ GET_VARIABLE = 4, -+ GET_NEXT_VARIABLE = 5, -+ SET_VARIABLE = 6, -+ QUERY_VARIABLE_INFO = 7, -+ GET_NEXT_HIGH_MONO_COUNT = 8, -+ UPDATE_CAPSULE = 9, -+ QUERY_CAPSULE_CAPS = 10, ++struct efi_acpi_dev_path { ++ struct efi_generic_dev_path header; ++ u32 hid; ++ u32 uid; +}; + -+struct efi_runtime_work { -+ void *arg1; -+ void *arg2; -+ void *arg3; -+ void *arg4; -+ void *arg5; -+ efi_status_t status; -+ struct work_struct work; -+ enum efi_rts_ids efi_rts_id; -+ struct completion efi_rts_comp; ++struct efi_pci_dev_path { ++ struct efi_generic_dev_path header; ++ u8 fn; ++ u8 dev; ++}; ++ ++struct efi_vendor_dev_path { ++ struct efi_generic_dev_path header; ++ efi_guid_t vendorguid; ++ u8 vendordata[0]; +}; + +struct efi_dev_path { -+ u8 type; -+ u8 sub_type; -+ u16 length; + union { -+ struct { -+ u32 hid; -+ u32 uid; -+ } acpi; -+ struct { -+ u8 fn; -+ u8 dev; -+ } pci; ++ struct efi_generic_dev_path header; ++ struct efi_acpi_dev_path acpi; ++ struct efi_pci_dev_path pci; ++ struct efi_vendor_dev_path vendor; + }; +}; + @@ -85800,21 +90139,26 @@ index 0000000..bcb9d76 + struct dev_header dev_header[0]; +}; + ++struct efi_mokvar_sysfs_attr { ++ struct bin_attribute bin_attr; ++ struct list_head node; ++}; ++ +struct cper_ia_err_info { + guid_t err_type; -+ __u64 validation_bits; -+ __u64 check_info; -+ __u64 target_id; -+ __u64 requestor_id; -+ __u64 responder_id; -+ __u64 ip; ++ u64 validation_bits; ++ u64 check_info; ++ u64 target_id; ++ u64 requestor_id; ++ u64 responder_id; ++ u64 ip; +}; + +struct cper_ia_proc_ctx { -+ __u16 reg_ctx_type; -+ __u16 reg_arr_size; -+ __u32 msr_addr; -+ __u64 mm_reg_addr; ++ u16 reg_ctx_type; ++ u16 reg_arr_size; ++ u32 msr_addr; ++ u64 mm_reg_addr; +}; + +enum err_types { @@ -85873,6 +90217,7 @@ index 0000000..bcb9d76 +}; + +struct hid_collection { ++ int parent_idx; + unsigned int type; + unsigned int usage; + unsigned int level; @@ -85882,11 +90227,14 @@ index 0000000..bcb9d76 + unsigned int hid; + unsigned int collection_index; + unsigned int usage_index; ++ __s8 resolution_multiplier; ++ __s8 wheel_factor; + __u16 code; + __u8 type; + __s8 hat_min; + __s8 hat_max; + __s8 hat_dir; ++ __s16 wheel_accumulated; +}; + +struct hid_report; @@ -86112,12 +90460,6 @@ index 0000000..bcb9d76 + struct hid_device_id id; +}; + -+enum { -+ POWER_SUPPLY_SCOPE_UNKNOWN = 0, -+ POWER_SUPPLY_SCOPE_SYSTEM = 1, -+ POWER_SUPPLY_SCOPE_DEVICE = 2, -+}; -+ +typedef bool (*hid_usage_cmp_t)(struct hid_usage *, unsigned int, unsigned int); + +struct quirks_list_struct { @@ -86323,6 +90665,7 @@ index 0000000..bcb9d76 + char *outbuf; + dma_addr_t outbuf_dma; + long unsigned int last_out; ++ struct mutex mutex; + spinlock_t lock; + long unsigned int iofl; + struct timer_list io_retry; @@ -86508,17 +90851,17 @@ index 0000000..bcb9d76 + u64 ack_write_mask; +} __attribute__((packed)); + -+struct hwspinlock___2; ++struct hwspinlock; + +struct hwspinlock_ops { -+ int (*trylock)(struct hwspinlock___2 *); -+ void (*unlock)(struct hwspinlock___2 *); -+ void (*relax)(struct hwspinlock___2 *); ++ int (*trylock)(struct hwspinlock *); ++ void (*unlock)(struct hwspinlock *); ++ void (*relax)(struct hwspinlock *); +}; + +struct hwspinlock_device; + -+struct hwspinlock___2 { ++struct hwspinlock { + struct hwspinlock_device *bank; + spinlock_t lock; + void *priv; @@ -86529,7 +90872,7 @@ index 0000000..bcb9d76 + const struct hwspinlock_ops *ops; + int base_id; + int num_locks; -+ struct hwspinlock___2 lock[0]; ++ struct hwspinlock lock[0]; +}; + +struct powercap_control_type; @@ -86613,24 +90956,10 @@ index 0000000..bcb9d76 + struct device_attribute name_attr; +}; + -+typedef guid_t uuid_le; -+ -+struct cper_arm_err_info { -+ __u8 version; -+ __u8 length; -+ __u16 validation_bits; -+ __u8 type; -+ __u16 multiple_error; -+ __u8 flags; -+ __u64 error_info; -+ __u64 virt_fault_addr; -+ __u64 physical_fault_addr; -+} __attribute__((packed)); -+ +struct cper_arm_ctx_info { -+ __u16 version; -+ __u16 type; -+ __u32 size; ++ u16 version; ++ u16 type; ++ u32 size; +}; + +struct trace_event_raw_extlog_mem_event { @@ -86640,7 +90969,7 @@ index 0000000..bcb9d76 + u8 sev; + u64 pa; + u8 pa_mask_lsb; -+ uuid_le fru_id; ++ guid_t fru_id; + u32 __data_loc_fru_text; + struct cper_mem_err_compact data; + char __data[0]; @@ -86677,6 +91006,7 @@ index 0000000..bcb9d76 + u32 oem_len; + u32 __data_loc_buf2; + u8 sev; ++ int cpu; + char __data[0]; +}; + @@ -86736,1188 +91066,62 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_memory_failure_event {}; + -+enum tb_cfg_pkg_type { -+ TB_CFG_PKG_READ = 1, -+ TB_CFG_PKG_WRITE = 2, -+ TB_CFG_PKG_ERROR = 3, -+ TB_CFG_PKG_NOTIFY_ACK = 4, -+ TB_CFG_PKG_EVENT = 5, -+ TB_CFG_PKG_XDOMAIN_REQ = 6, -+ TB_CFG_PKG_XDOMAIN_RESP = 7, -+ TB_CFG_PKG_OVERRIDE = 8, -+ TB_CFG_PKG_RESET = 9, -+ TB_CFG_PKG_ICM_EVENT = 10, -+ TB_CFG_PKG_ICM_CMD = 11, -+ TB_CFG_PKG_ICM_RESP = 12, -+ TB_CFG_PKG_PREPARE_TO_SLEEP = 13, -+}; -+ -+enum tb_security_level { -+ TB_SECURITY_NONE = 0, -+ TB_SECURITY_USER = 1, -+ TB_SECURITY_SECURE = 2, -+ TB_SECURITY_DPONLY = 3, -+ TB_SECURITY_USBONLY = 4, -+}; -+ -+struct tb_nhi; -+ -+struct tb_ctl; -+ -+struct tb_switch; -+ -+struct tb_cm_ops; -+ -+struct tb { -+ struct device dev; -+ struct mutex lock; -+ struct tb_nhi *nhi; -+ struct tb_ctl *ctl; -+ struct workqueue_struct *wq; -+ struct tb_switch *root_switch; -+ const struct tb_cm_ops *cm_ops; -+ int index; -+ enum tb_security_level security_level; -+ size_t nboot_acl; -+ long unsigned int privdata[0]; -+}; -+ -+struct tb_ring; -+ -+struct tb_nhi { -+ spinlock_t lock; -+ struct pci_dev *pdev; -+ void *iobase; -+ struct tb_ring **tx_rings; -+ struct tb_ring **rx_rings; -+ struct ida msix_ida; -+ bool going_away; -+ struct work_struct interrupt_work; -+ u32 hop_count; -+}; ++typedef void (*btf_trace_extlog_mem_event)(void *, struct cper_sec_mem_err *, u32, const guid_t *, const char *, u8); + -+struct tb_regs_switch_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 upstream_port_number: 6; -+ u32 max_port_number: 6; -+ u32 depth: 3; -+ u32 __unknown1: 1; -+ u32 revision: 8; -+ u32 route_lo; -+ u32 route_hi: 31; -+ bool enabled: 1; -+ u32 plug_events_delay: 8; -+ u32 __unknown4: 16; -+ u32 thunderbolt_version: 8; -+}; -+ -+struct tb_port; ++typedef void (*btf_trace_mc_event)(void *, const unsigned int, const char *, const char *, const int, const u8, const s8, const s8, const s8, long unsigned int, const u8, long unsigned int, const char *); + -+struct tb_dma_port; ++typedef void (*btf_trace_arm_event)(void *, const struct cper_sec_proc_arm *, const u8 *, const u32, const u8 *, const u32, const u8 *, const u32, u8, int); + -+struct tb_switch_nvm; ++typedef void (*btf_trace_non_standard_event)(void *, const guid_t *, const guid_t *, const char *, const u8, const u8 *, const u32); + -+struct tb_switch { -+ struct device dev; -+ struct tb_regs_switch_header config; -+ struct tb_port *ports; -+ struct tb_dma_port *dma_port; -+ struct tb *tb; -+ u64 uid; -+ uuid_t *uuid; -+ u16 vendor; -+ u16 device; -+ const char *vendor_name; -+ const char *device_name; -+ unsigned int generation; -+ int cap_plug_events; -+ bool is_unplugged; -+ u8 *drom; -+ struct tb_switch_nvm *nvm; -+ bool no_nvm_upgrade; -+ bool safe_mode; -+ bool boot; -+ bool rpm; -+ unsigned int authorized; -+ struct work_struct work; -+ enum tb_security_level security_level; -+ u8 *key; -+ u8 connection_id; -+ u8 connection_key; -+ u8 link; -+ u8 depth; -+}; ++typedef void (*btf_trace_aer_event)(void *, const char *, const u32, const u8, const u8, struct aer_header_log_regs *); + -+struct tb_xdomain; ++typedef void (*btf_trace_memory_failure_event)(void *, long unsigned int, int, int); + -+struct tb_cm_ops { -+ int (*driver_ready)(struct tb *); -+ int (*start)(struct tb *); -+ void (*stop)(struct tb *); -+ int (*suspend_noirq)(struct tb *); -+ int (*resume_noirq)(struct tb *); -+ int (*suspend)(struct tb *); -+ void (*complete)(struct tb *); -+ int (*runtime_suspend)(struct tb *); -+ int (*runtime_resume)(struct tb *); -+ void (*handle_event)(struct tb *, enum tb_cfg_pkg_type, const void *, size_t); -+ int (*get_boot_acl)(struct tb *, uuid_t *, size_t); -+ int (*set_boot_acl)(struct tb *, const uuid_t *, size_t); -+ int (*approve_switch)(struct tb *, struct tb_switch *); -+ int (*add_switch_key)(struct tb *, struct tb_switch *); -+ int (*challenge_switch_key)(struct tb *, struct tb_switch *, const u8 *, u8 *); -+ int (*disconnect_pcie_paths)(struct tb *); -+ int (*approve_xdomain_paths)(struct tb *, struct tb_xdomain *); -+ int (*disconnect_xdomain_paths)(struct tb *, struct tb_xdomain *); -+}; -+ -+struct tb_property_dir { -+ const uuid_t *uuid; -+ struct list_head properties; -+}; -+ -+struct tb_xdomain { -+ struct device dev; -+ struct tb *tb; -+ uuid_t *remote_uuid; -+ const uuid_t *local_uuid; -+ u64 route; -+ u16 vendor; -+ u16 device; -+ struct mutex lock; -+ const char *vendor_name; -+ const char *device_name; -+ bool is_unplugged; -+ bool resume; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+ struct ida service_ids; -+ struct tb_property_dir *properties; -+ u32 property_block_gen; -+ struct delayed_work get_properties_work; -+ int properties_retries; -+ struct delayed_work properties_changed_work; -+ int properties_changed_retries; -+ u8 link; -+ u8 depth; -+}; -+ -+struct ring_desc; -+ -+struct tb_ring { -+ spinlock_t lock; -+ struct tb_nhi *nhi; -+ int size; -+ int hop; -+ int head; -+ int tail; -+ struct ring_desc *descriptors; -+ dma_addr_t descriptors_dma; -+ struct list_head queue; -+ struct list_head in_flight; -+ struct work_struct work; -+ bool is_tx: 1; -+ bool running: 1; -+ int irq; -+ u8 vector; -+ unsigned int flags; -+ u16 sof_mask; -+ u16 eof_mask; -+ void (*start_poll)(void *); -+ void *poll_data; -+}; -+ -+enum ring_desc_flags { -+ RING_DESC_ISOCH = 1, -+ RING_DESC_CRC_ERROR = 1, -+ RING_DESC_COMPLETED = 2, -+ RING_DESC_POSTED = 4, -+ RING_DESC_BUFFER_OVERRUN = 4, -+ RING_DESC_INTERRUPT = 8, -+}; -+ -+struct ring_desc { -+ u64 phys; -+ u32 length: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+ enum ring_desc_flags flags: 12; -+ u32 time; -+}; -+ -+struct ring_frame; -+ -+typedef void (*ring_cb)(struct tb_ring *, struct ring_frame *, bool); -+ -+struct ring_frame { -+ dma_addr_t buffer_phy; -+ ring_cb callback; -+ struct list_head list; -+ u32 size: 12; -+ u32 flags: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+}; -+ -+enum nhi_fw_mode { -+ NHI_FW_SAFE_MODE = 0, -+ NHI_FW_AUTH_MODE = 1, -+ NHI_FW_EP_MODE = 2, -+ NHI_FW_CM_MODE = 3, -+}; -+ -+enum nhi_mailbox_cmd { -+ NHI_MAILBOX_SAVE_DEVS = 5, -+ NHI_MAILBOX_DISCONNECT_PCIE_PATHS = 6, -+ NHI_MAILBOX_DRV_UNLOADS = 7, -+ NHI_MAILBOX_DISCONNECT_PA = 16, -+ NHI_MAILBOX_DISCONNECT_PB = 17, -+ NHI_MAILBOX_ALLOW_ALL_DEVS = 35, -+}; -+ -+enum ring_flags { -+ RING_FLAG_ISOCH_ENABLE = 134217728, -+ RING_FLAG_E2E_FLOW_CONTROL = 268435456, -+ RING_FLAG_PCI_NO_SNOOP = 536870912, -+ RING_FLAG_RAW = 1073741824, -+ RING_FLAG_ENABLE = -2147483648, -+}; -+ -+enum tb_port_type { -+ TB_TYPE_INACTIVE = 0, -+ TB_TYPE_PORT = 1, -+ TB_TYPE_NHI = 2, -+ TB_TYPE_DP_HDMI_IN = 917761, -+ TB_TYPE_DP_HDMI_OUT = 917762, -+ TB_TYPE_PCIE_DOWN = 1048833, -+ TB_TYPE_PCIE_UP = 1048834, -+}; -+ -+struct tb_regs_port_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 max_counters: 11; -+ u32 __unknown1: 5; -+ u32 revision: 8; -+ enum tb_port_type type: 24; -+ u32 thunderbolt_version: 8; -+ u32 __unknown2: 20; -+ u32 port_number: 6; -+ u32 __unknown3: 6; -+ u32 nfc_credits; -+ u32 max_in_hop_id: 11; -+ u32 max_out_hop_id: 11; -+ u32 __unknown4: 10; -+ u32 __unknown5; -+ u32 __unknown6; -+}; -+ -+struct tb_switch_nvm { -+ u8 major; -+ u8 minor; -+ int id; -+ struct nvmem_device *active; -+ struct nvmem_device *non_active; -+ void *buf; -+ size_t buf_data_size; -+ bool authenticating; -+}; -+ -+struct tb_port { -+ struct tb_regs_port_header config; -+ struct tb_switch *sw; -+ struct tb_port *remote; -+ struct tb_xdomain *xdomain; -+ int cap_phy; -+ u8 port; -+ bool disabled; -+ struct tb_port *dual_link_port; -+ u8 link_nr: 1; -+}; -+ -+typedef bool (*event_cb)(void *, enum tb_cfg_pkg_type, const void *, size_t); -+ -+struct ctl_pkg; -+ -+struct tb_ctl { -+ struct tb_nhi *nhi; -+ struct tb_ring *tx; -+ struct tb_ring *rx; -+ struct dma_pool___2 *frame_pool; -+ struct ctl_pkg *rx_packets[10]; -+ struct mutex request_queue_lock; -+ struct list_head request_queue; -+ bool running; -+ event_cb callback; -+ void *callback_data; -+}; -+ -+enum tb_cfg_space { -+ TB_CFG_HOPS = 0, -+ TB_CFG_PORT = 1, -+ TB_CFG_SWITCH = 2, -+ TB_CFG_COUNTERS = 3, -+}; -+ -+enum tb_cfg_error { -+ TB_CFG_ERROR_PORT_NOT_CONNECTED = 0, -+ TB_CFG_ERROR_LINK_ERROR = 1, -+ TB_CFG_ERROR_INVALID_CONFIG_SPACE = 2, -+ TB_CFG_ERROR_NO_SUCH_PORT = 4, -+ TB_CFG_ERROR_ACK_PLUG_EVENT = 7, -+ TB_CFG_ERROR_LOOP = 8, -+ TB_CFG_ERROR_HEC_ERROR_DETECTED = 12, -+ TB_CFG_ERROR_FLOW_CONTROL_ERROR = 13, -+}; -+ -+struct tb_cfg_header { -+ u32 route_hi: 22; -+ u32 unknown: 10; -+ u32 route_lo; -+}; -+ -+struct tb_cfg_address { -+ u32 offset: 13; -+ u32 length: 6; -+ u32 port: 6; -+ enum tb_cfg_space space: 2; -+ u32 seq: 2; -+ u32 zero: 3; -+}; -+ -+struct cfg_read_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+}; -+ -+struct cfg_write_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+ u32 data[64]; -+}; ++struct bonding; + -+struct cfg_error_pkg { -+ struct tb_cfg_header header; -+ enum tb_cfg_error error: 4; -+ u32 zero1: 4; -+ u32 port: 6; -+ u32 zero2: 2; -+ u32 zero3: 16; -+}; -+ -+struct cfg_reset_pkg { -+ struct tb_cfg_header header; -+}; -+ -+struct tb_cfg_result { -+ u64 response_route; -+ u32 response_port; -+ int err; -+ enum tb_cfg_error tb_error; -+}; -+ -+struct ctl_pkg { -+ struct tb_ctl *ctl; -+ void *buffer; -+ struct ring_frame frame; -+}; -+ -+struct tb_cfg_request { -+ struct kref kref; -+ struct tb_ctl *ctl; -+ const void *request; -+ size_t request_size; -+ enum tb_cfg_pkg_type request_type; -+ void *response; -+ size_t response_size; -+ enum tb_cfg_pkg_type response_type; -+ size_t npackets; -+ bool (*match)(const struct tb_cfg_request *, const struct ctl_pkg *); -+ bool (*copy)(struct tb_cfg_request *, const struct ctl_pkg *); -+ void (*callback)(void *); -+ void *callback_data; -+ long unsigned int flags; -+ struct work_struct work; -+ struct tb_cfg_result result; -+ struct list_head list; -+}; -+ -+enum tb_port_cap { -+ TB_PORT_CAP_PHY = 1, -+ TB_PORT_CAP_TIME1 = 3, -+ TB_PORT_CAP_ADAP = 4, -+ TB_PORT_CAP_VSE = 5, -+}; -+ -+struct cfg_event_pkg { -+ struct tb_cfg_header header; -+ u32 port: 6; -+ u32 zero: 25; -+ bool unplug: 1; -+}; -+ -+struct tb_path_hop { -+ struct tb_port *in_port; -+ struct tb_port *out_port; -+ int in_hop_index; -+ int in_counter_index; -+ int next_hop_index; -+}; -+ -+enum tb_path_port { -+ TB_PATH_NONE = 0, -+ TB_PATH_SOURCE = 1, -+ TB_PATH_INTERNAL = 2, -+ TB_PATH_DESTINATION = 4, -+ TB_PATH_ALL = 7, -+}; -+ -+struct tb_path { -+ struct tb *tb; -+ int nfc_credits; -+ enum tb_path_port ingress_shared_buffer; -+ enum tb_path_port egress_shared_buffer; -+ enum tb_path_port ingress_fc_enable; -+ enum tb_path_port egress_fc_enable; -+ int priority: 3; -+ int weight: 4; -+ bool drop_packages; -+ bool activated; -+ struct tb_path_hop *hops; -+ int path_length; -+}; -+ -+struct tb_pci_tunnel { -+ struct tb *tb; -+ struct tb_port *up_port; -+ struct tb_port *down_port; -+ struct tb_path *path_to_up; -+ struct tb_path *path_to_down; -+ struct list_head list; -+}; -+ -+struct tb_cm { -+ struct list_head tunnel_list; -+ bool hotplug_active; -+}; -+ -+struct tb_hotplug_event { -+ struct work_struct work; -+ struct tb *tb; -+ u64 route; -+ u8 port; -+ bool unplug; -+}; -+ -+enum tb_switch_vse_cap { -+ TB_VSE_CAP_PLUG_EVENTS = 1, -+ TB_VSE_CAP_TIME2 = 3, -+ TB_VSE_CAP_IECS = 4, -+ TB_VSE_CAP_LINK_CONTROLLER = 6, -+}; -+ -+enum tb_port_state { -+ TB_PORT_DISABLED = 0, -+ TB_PORT_CONNECTING = 1, -+ TB_PORT_UP = 2, -+ TB_PORT_UNPLUGGED = 7, -+}; -+ -+struct tb_cap_basic { -+ u8 next; -+ u8 cap; -+}; -+ -+struct tb_cap_phy { -+ struct tb_cap_basic cap_header; -+ u32 unknown1: 16; -+ u32 unknown2: 14; -+ bool disable: 1; -+ u32 unknown3: 11; -+ enum tb_port_state state: 4; -+ u32 unknown4: 2; -+}; -+ -+struct nvm_auth_status { -+ struct list_head list; -+ uuid_t uuid; -+ u32 status; -+}; -+ -+struct tb_sw_lookup { -+ struct tb *tb; -+ u8 link; -+ u8 depth; -+ const uuid_t *uuid; -+ u64 route; -+}; -+ -+enum tb_switch_cap { -+ TB_SWITCH_CAP_VSE = 5, -+}; -+ -+struct tb_cap_extended_short { -+ u8 next; -+ u8 cap; -+ u8 vsec_id; -+ u8 length; -+}; -+ -+struct tb_cap_extended_long { -+ u8 zero1; -+ u8 cap; -+ u8 vsec_id; -+ u8 zero2; -+ u16 next; -+ u16 length; -+}; -+ -+struct tb_cap_any { -+ union { -+ struct tb_cap_basic basic; -+ struct tb_cap_extended_short extended_short; -+ struct tb_cap_extended_long extended_long; -+ }; -+}; -+ -+struct tb_regs_hop { -+ u32 next_hop: 11; -+ u32 out_port: 6; -+ u32 initial_credits: 8; -+ u32 unknown1: 6; -+ bool enable: 1; -+ u32 weight: 4; -+ u32 unknown2: 4; -+ u32 priority: 3; -+ bool drop_packages: 1; -+ u32 counter: 11; -+ bool counter_enable: 1; -+ bool ingress_fc: 1; -+ bool egress_fc: 1; -+ bool ingress_shared_buffer: 1; -+ bool egress_shared_buffer: 1; -+ u32 unknown3: 4; -+}; -+ -+struct tb_eeprom_ctl { -+ bool clock: 1; -+ bool access_low: 1; -+ bool data_out: 1; -+ bool data_in: 1; -+ bool access_high: 1; -+ bool not_present: 1; -+ bool unknown1: 1; -+ bool present: 1; -+ u32 unknown2: 24; -+}; -+ -+struct tb_cap_plug_events { -+ struct tb_cap_extended_short cap_header; -+ u32 __unknown1: 2; -+ u32 plug_events: 5; -+ u32 __unknown2: 25; -+ u32 __unknown3; -+ u32 __unknown4; -+ struct tb_eeprom_ctl eeprom_ctl; -+ u32 __unknown5[7]; -+ u32 drom_offset; -+}; -+ -+enum tb_eeprom_transfer { -+ TB_EEPROM_IN = 0, -+ TB_EEPROM_OUT = 1, -+}; -+ -+struct tb_drom_header { -+ u8 uid_crc8; -+ u64 uid; -+ u32 data_crc32; -+ u8 device_rom_revision; -+ u16 data_len: 10; -+ u8 __unknown1: 6; -+ u16 vendor_id; -+ u16 model_id; -+ u8 model_rev; -+ u8 eeprom_rev; -+} __attribute__((packed)); -+ -+enum tb_drom_entry_type { -+ TB_DROM_ENTRY_GENERIC = 0, -+ TB_DROM_ENTRY_PORT = 1, -+}; -+ -+struct tb_drom_entry_header { -+ u8 len; -+ u8 index: 6; -+ bool port_disabled: 1; -+ enum tb_drom_entry_type type: 1; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_generic { -+ struct tb_drom_entry_header header; -+ u8 data[0]; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_port { -+ struct tb_drom_entry_header header; -+ u8 dual_link_port_rid: 4; -+ u8 link_nr: 1; -+ u8 unknown1: 2; -+ bool has_dual_link_port: 1; -+ u8 dual_link_port_nr: 6; -+ u8 unknown2: 2; -+ u8 micro2: 4; -+ u8 micro1: 4; -+ u8 micro3; -+ u8 peer_port_rid: 4; -+ u8 unknown3: 3; -+ bool has_peer_port: 1; -+ u8 peer_port_nr: 6; -+ u8 unknown4: 2; -+}; -+ -+struct tb_service_id { -+ __u32 match_flags; -+ char protocol_key[9]; -+ __u32 protocol_id; -+ __u32 protocol_version; -+ __u32 protocol_revision; -+ kernel_ulong_t driver_data; -+}; -+ -+struct tb_service { -+ struct device dev; -+ int id; -+ const char *key; -+ u32 prtcid; -+ u32 prtcvers; -+ u32 prtcrevs; -+ u32 prtcstns; -+}; -+ -+struct tb_service_driver { -+ struct device_driver driver; -+ int (*probe)(struct tb_service *, const struct tb_service_id *); -+ void (*remove)(struct tb_service *); -+ void (*shutdown)(struct tb_service *); -+ const struct tb_service_id *id_table; -+}; -+ -+struct tb_dma_port { -+ struct tb_switch *sw; -+ u8 port; -+ u32 base; -+ u8 *buf; -+}; -+ -+enum icm_pkg_code { -+ ICM_GET_TOPOLOGY = 1, -+ ICM_DRIVER_READY = 3, -+ ICM_APPROVE_DEVICE = 4, -+ ICM_CHALLENGE_DEVICE = 5, -+ ICM_ADD_DEVICE_KEY = 6, -+ ICM_GET_ROUTE = 10, -+ ICM_APPROVE_XDOMAIN = 16, -+ ICM_DISCONNECT_XDOMAIN = 17, -+ ICM_PREBOOT_ACL = 24, -+}; -+ -+enum icm_event_code { -+ ICM_EVENT_DEVICE_CONNECTED = 3, -+ ICM_EVENT_DEVICE_DISCONNECTED = 4, -+ ICM_EVENT_XDOMAIN_CONNECTED = 6, -+ ICM_EVENT_XDOMAIN_DISCONNECTED = 7, -+}; -+ -+struct icm_pkg_header { -+ u8 code; -+ u8 flags; -+ u8 packet_id; -+ u8 total_packets; -+}; -+ -+struct icm_pkg_driver_ready { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 security_level; -+}; -+ -+struct icm_fr_pkg_get_topology { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_get_topology_response { -+ struct icm_pkg_header hdr; -+ u32 route_lo; -+ u32 route_hi; -+ u8 first_data; -+ u8 second_data; -+ u8 drom_i2c_address_index; -+ u8 switch_index; -+ u32 reserved[2]; -+ u32 ports[16]; -+ u32 port_hop_info[16]; -+}; -+ -+struct icm_fr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_fr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_fr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_fr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_fr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 key[8]; -+}; -+ -+struct icm_fr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+}; -+ -+struct icm_fr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_fr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_fr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_ar_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 info; -+}; -+ -+struct icm_ar_pkg_get_route { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_ar_pkg_get_route_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_ar_boot_acl_entry { -+ u32 uuid_lo; -+ u32 uuid_hi; -+}; -+ -+struct icm_ar_pkg_preboot_acl { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_ar_pkg_preboot_acl_response { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_tr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u16 reserved1; -+ u16 info; -+ u32 nvm_version; -+ u16 device_id; -+ u16 reserved2; -+}; -+ -+struct icm_tr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_tr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_tr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_tr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved1[3]; -+}; -+ -+struct icm_tr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 key[8]; -+}; -+ -+struct icm_tr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_tr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain_response { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm { -+ struct mutex request_lock; -+ struct delayed_work rescan_work; -+ struct pci_dev *upstream_port; -+ size_t max_boot_acl; -+ int vnd_cap; -+ bool safe_mode; -+ bool rpm; -+ bool (*is_supported)(struct tb *); -+ int (*get_mode)(struct tb *); -+ int (*get_route)(struct tb *, u8, u8, u64 *); -+ void (*save_devices)(struct tb *); -+ int (*driver_ready)(struct tb *, enum tb_security_level *, size_t *, bool *); -+ void (*device_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*device_disconnected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_disconnected)(struct tb *, const struct icm_pkg_header *); -+}; -+ -+struct icm_notification { -+ struct work_struct work; -+ struct icm_pkg_header *pkg; -+ struct tb *tb; -+}; -+ -+struct ep_name_entry { -+ u8 len; -+ u8 type; -+ u8 data[0]; -+}; -+ -+struct intel_vss { -+ u16 vendor; -+ u16 model; -+ u8 mc; -+ u8 flags; -+ u16 pci_devid; -+ u32 nvm_version; -+}; -+ -+enum tb_property_type { -+ TB_PROPERTY_TYPE_UNKNOWN = 0, -+ TB_PROPERTY_TYPE_DIRECTORY = 68, -+ TB_PROPERTY_TYPE_DATA = 100, -+ TB_PROPERTY_TYPE_TEXT = 116, -+ TB_PROPERTY_TYPE_VALUE = 118, -+}; -+ -+struct tb_property { -+ struct list_head list; -+ char key[9]; -+ enum tb_property_type type; -+ size_t length; -+ union { -+ struct tb_property_dir *dir; -+ u8 *data; -+ char *text; -+ u32 immediate; -+ } value; -+}; -+ -+struct tb_property_entry { -+ u32 key_hi; -+ u32 key_lo; -+ u16 length; -+ u8 reserved; -+ u8 type; -+ u32 value; -+}; -+ -+struct tb_property_rootdir_entry { -+ u32 magic; -+ u32 length; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_property_dir_entry { -+ u32 uuid[4]; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_protocol_handler { -+ const uuid_t *uuid; -+ int (*callback)(const void *, size_t, void *); -+ void *data; -+ struct list_head list; -+}; -+ -+struct tb_xdomain_header { -+ u32 route_hi; -+ u32 route_lo; -+ u32 length_sn; -+}; -+ -+enum tb_xdp_type { -+ UUID_REQUEST_OLD = 1, -+ UUID_RESPONSE = 2, -+ PROPERTIES_REQUEST = 3, -+ PROPERTIES_RESPONSE = 4, -+ PROPERTIES_CHANGED_REQUEST = 5, -+ PROPERTIES_CHANGED_RESPONSE = 6, -+ ERROR_RESPONSE = 7, -+ UUID_REQUEST = 12, -+}; -+ -+struct tb_xdp_header { -+ struct tb_xdomain_header xd_hdr; -+ uuid_t uuid; -+ u32 type; -+}; -+ -+struct tb_xdp_properties { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 reserved; -+}; -+ -+struct tb_xdp_properties_response { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 data_length; -+ u32 generation; -+ u32 data[0]; -+}; -+ -+struct tb_xdp_properties_changed { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+}; -+ -+struct tb_xdp_properties_changed_response { -+ struct tb_xdp_header hdr; -+}; -+ -+enum tb_xdp_error { -+ ERROR_SUCCESS = 0, -+ ERROR_UNKNOWN_PACKET = 1, -+ ERROR_UNKNOWN_DOMAIN = 2, -+ ERROR_NOT_SUPPORTED = 3, -+ ERROR_NOT_READY = 4, -+}; ++struct slave; + -+struct tb_xdp_error_response { -+ struct tb_xdp_header hdr; -+ u32 error; ++struct nvmem_cell_lookup { ++ const char *nvmem_name; ++ const char *cell_name; ++ const char *dev_id; ++ const char *con_id; ++ struct list_head node; +}; + -+struct xdomain_request_work { -+ struct work_struct work; -+ struct tb_xdp_header *pkg; -+ struct tb *tb; ++enum { ++ NVMEM_ADD = 1, ++ NVMEM_REMOVE = 2, ++ NVMEM_CELL_ADD = 3, ++ NVMEM_CELL_REMOVE = 4, +}; + -+struct tb_xdomain_lookup { -+ const uuid_t *uuid; -+ u8 link; -+ u8 depth; -+ u64 route; ++struct nvmem_cell_table { ++ const char *nvmem_name; ++ const struct nvmem_cell_info *cells; ++ size_t ncells; ++ struct list_head node; +}; + -+struct nvmem_device___2 { -+ const char *name; ++struct nvmem_device { + struct module *owner; + struct device dev; + int stride; + int word_size; + int id; -+ int users; ++ struct kref refcnt; + size_t size; + bool read_only; ++ bool root_only; + int flags; ++ enum nvmem_type type; + struct bin_attribute eeprom; + struct device *base_dev; ++ struct list_head cells; + nvmem_reg_read_t reg_read; + nvmem_reg_write_t reg_write; ++ struct gpio_desc *wp_gpio; + void *priv; +}; + @@ -87927,188 +91131,23 @@ index 0000000..bcb9d76 + int bytes; + int bit_offset; + int nbits; -+ struct nvmem_device___2 *nvmem; ++ struct device_node *np; ++ struct nvmem_device *nvmem; + struct list_head node; +}; + -+struct pcibios_fwaddrmap { -+ struct list_head list; -+ struct pci_dev *dev; -+ resource_size_t fw_addr[17]; ++struct net_device_devres { ++ struct net_device *ndev; +}; + -+struct pci_check_idx_range { -+ int start; -+ int end; ++struct __kernel_old_timespec { ++ __kernel_old_time_t tv_sec; ++ long int tv_nsec; +}; + -+struct pci_mmcfg_region { -+ struct list_head list; -+ struct resource res; -+ u64 address; -+ char *virt; -+ u16 segment; -+ u8 start_bus; -+ u8 end_bus; -+ char name[30]; -+}; -+ -+struct acpi_table_mcfg { -+ struct acpi_table_header header; -+ u8 reserved[8]; -+}; -+ -+struct acpi_mcfg_allocation { -+ u64 address; -+ u16 pci_segment; -+ u8 start_bus_number; -+ u8 end_bus_number; -+ u32 reserved; -+}; -+ -+struct pci_mmcfg_hostbridge_probe { -+ u32 bus; -+ u32 devfn; -+ u32 vendor; -+ u32 device; -+ const char * (*probe)(); -+}; -+ -+typedef bool (*check_reserved_t)(u64, u64, unsigned int); -+ -+struct pci_root_info { -+ struct acpi_pci_root_info common; -+ struct pci_sysdata sd; -+ bool mcfg_added; -+ u8 start_bus; -+ u8 end_bus; -+}; -+ -+struct irq_info___3 { -+ u8 bus; -+ u8 devfn; -+ struct { -+ u8 link; -+ u16 bitmap; -+ } __attribute__((packed)) irq[4]; -+ u8 slot; -+ u8 rfu; -+}; -+ -+struct irq_routing_table { -+ u32 signature; -+ u16 version; -+ u16 size; -+ u8 rtr_bus; -+ u8 rtr_devfn; -+ u16 exclusive_irqs; -+ u16 rtr_vendor; -+ u16 rtr_device; -+ u32 miniport_data; -+ u8 rfu[11]; -+ u8 checksum; -+ struct irq_info___3 slots[0]; -+}; -+ -+struct irq_router { -+ char *name; -+ u16 vendor; -+ u16 device; -+ int (*get)(struct pci_dev *, struct pci_dev *, int); -+ int (*set)(struct pci_dev *, struct pci_dev *, int, int); -+}; -+ -+struct irq_router_handler { -+ u16 vendor; -+ int (*probe)(struct irq_router *, struct pci_dev *, u16); -+}; -+ -+struct pci_setup_rom { -+ struct setup_data data; -+ uint16_t vendor; -+ uint16_t devid; -+ uint64_t pcilen; -+ long unsigned int segment; -+ long unsigned int bus; -+ long unsigned int device; -+ long unsigned int function; -+ uint8_t romdata[0]; -+}; -+ -+enum pci_bf_sort_state { -+ pci_bf_sort_default = 0, -+ pci_force_nobf = 1, -+ pci_force_bf = 2, -+ pci_dmi_bf = 3, -+}; -+ -+struct pci_root_res { -+ struct list_head list; -+ struct resource res; -+}; -+ -+struct pci_root_info___2 { -+ struct list_head list; -+ char name[12]; -+ struct list_head resources; -+ struct resource busn; -+ int node; -+ int link; -+}; -+ -+struct amd_hostbridge { -+ u32 bus; -+ u32 slot; -+ u32 device; -+}; -+ -+struct saved_msr { -+ bool valid; -+ struct msr_info info; -+}; -+ -+struct saved_msrs { -+ unsigned int num; -+ struct saved_msr *array; -+}; -+ -+struct saved_context { -+ struct pt_regs regs; -+ u16 ds; -+ u16 es; -+ u16 fs; -+ u16 gs; -+ long unsigned int kernelmode_gs_base; -+ long unsigned int usermode_gs_base; -+ long unsigned int fs_base; -+ long unsigned int cr0; -+ long unsigned int cr2; -+ long unsigned int cr3; -+ long unsigned int cr4; -+ long unsigned int cr8; -+ u64 misc_enable; -+ bool misc_enable_saved; -+ struct saved_msrs saved_msrs; -+ long unsigned int efer; -+ u16 gdt_pad; -+ struct desc_ptr gdt_desc; -+ u16 idt_pad; -+ struct desc_ptr idt; -+ u16 ldt; -+ u16 tss; -+ long unsigned int tr; -+ long unsigned int safety; -+ long unsigned int return_address; -+} __attribute__((packed)); -+ -+typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *); -+ -+struct restore_data_record { -+ long unsigned int jump_address; -+ long unsigned int jump_address_phys; -+ long unsigned int cr3; -+ long unsigned int magic; -+ u8 e820_digest[16]; ++struct __kernel_sock_timeval { ++ __s64 tv_sec; ++ __s64 tv_usec; +}; + +struct mmsghdr { @@ -88116,6 +91155,10 @@ index 0000000..bcb9d76 + unsigned int msg_len; +}; + ++struct scm_timestamping_internal { ++ struct timespec64 ts[3]; ++}; ++ +enum sock_shutdown_cmd { + SHUT_RD = 0, + SHUT_WR = 1, @@ -88171,30 +91214,31 @@ index 0000000..bcb9d76 + compat_caddr_t ifcbuf; +}; + -+struct compat_ethtool_rx_flow_spec { -+ u32 flow_type; -+ union ethtool_flow_union h_u; -+ struct ethtool_flow_ext h_ext; -+ union ethtool_flow_union m_u; -+ struct ethtool_flow_ext m_ext; -+ compat_u64 ring_cookie; -+ u32 location; -+} __attribute__((packed)); -+ -+struct compat_ethtool_rxnfc { -+ u32 cmd; -+ u32 flow_type; -+ compat_u64 data; -+ struct compat_ethtool_rx_flow_spec fs; -+ u32 rule_cnt; -+ u32 rule_locs[0]; -+} __attribute__((packed)); -+ +struct compat_mmsghdr { + struct compat_msghdr msg_hdr; + compat_uint_t msg_len; +}; + ++enum { ++ SOF_TIMESTAMPING_TX_HARDWARE = 1, ++ SOF_TIMESTAMPING_TX_SOFTWARE = 2, ++ SOF_TIMESTAMPING_RX_HARDWARE = 4, ++ SOF_TIMESTAMPING_RX_SOFTWARE = 8, ++ SOF_TIMESTAMPING_SOFTWARE = 16, ++ SOF_TIMESTAMPING_SYS_HARDWARE = 32, ++ SOF_TIMESTAMPING_RAW_HARDWARE = 64, ++ SOF_TIMESTAMPING_OPT_ID = 128, ++ SOF_TIMESTAMPING_TX_SCHED = 256, ++ SOF_TIMESTAMPING_TX_ACK = 512, ++ SOF_TIMESTAMPING_OPT_CMSG = 1024, ++ SOF_TIMESTAMPING_OPT_TSONLY = 2048, ++ SOF_TIMESTAMPING_OPT_STATS = 4096, ++ SOF_TIMESTAMPING_OPT_PKTINFO = 8192, ++ SOF_TIMESTAMPING_OPT_TX_SWHW = 16384, ++ SOF_TIMESTAMPING_LAST = 16384, ++ SOF_TIMESTAMPING_MASK = 32767, ++}; ++ +struct scm_ts_pktinfo { + __u32 if_index; + __u32 pkt_length; @@ -88205,33 +91249,10 @@ index 0000000..bcb9d76 + u32 dropcount; +}; + -+struct in6_rtmsg { -+ struct in6_addr rtmsg_dst; -+ struct in6_addr rtmsg_src; -+ struct in6_addr rtmsg_gateway; -+ __u32 rtmsg_type; -+ __u16 rtmsg_dst_len; -+ __u16 rtmsg_src_len; -+ __u32 rtmsg_metric; -+ long unsigned int rtmsg_info; -+ __u32 rtmsg_flags; -+ int rtmsg_ifindex; -+}; -+ -+struct rtentry { -+ long unsigned int rt_pad1; -+ struct sockaddr rt_dst; -+ struct sockaddr rt_gateway; -+ struct sockaddr rt_genmask; -+ short unsigned int rt_flags; -+ short int rt_pad2; -+ long unsigned int rt_pad3; -+ void *rt_pad4; -+ short int rt_metric; -+ char *rt_dev; -+ long unsigned int rt_mtu; -+ long unsigned int rt_window; -+ short unsigned int rt_irtt; ++struct sock_ee_data_rfc4884 { ++ __u16 len; ++ __u8 flags; ++ __u8 reserved; +}; + +struct sock_extended_err { @@ -88241,11 +91262,10 @@ index 0000000..bcb9d76 + __u8 ee_code; + __u8 ee_pad; + __u32 ee_info; -+ __u32 ee_data; -+}; -+ -+struct scm_timestamping { -+ struct timespec ts[3]; ++ union { ++ __u32 ee_data; ++ struct sock_ee_data_rfc4884 ee_rfc4884; ++ }; +}; + +struct sock_exterr_skb { @@ -88263,38 +91283,6 @@ index 0000000..bcb9d76 +struct used_address { + struct __kernel_sockaddr_storage name; + unsigned int name_len; -+ int: 32; -+}; -+ -+struct rtentry32 { -+ u32 rt_pad1; -+ struct sockaddr rt_dst; -+ struct sockaddr rt_gateway; -+ struct sockaddr rt_genmask; -+ short unsigned int rt_flags; -+ short int rt_pad2; -+ u32 rt_pad3; -+ unsigned char rt_tos; -+ unsigned char rt_class; -+ short int rt_pad4; -+ short int rt_metric; -+ u32 rt_dev; -+ u32 rt_mtu; -+ u32 rt_window; -+ short unsigned int rt_irtt; -+}; -+ -+struct in6_rtmsg32 { -+ struct in6_addr rtmsg_dst; -+ struct in6_addr rtmsg_src; -+ struct in6_addr rtmsg_gateway; -+ u32 rtmsg_type; -+ u16 rtmsg_dst_len; -+ u16 rtmsg_src_len; -+ u32 rtmsg_metric; -+ u32 rtmsg_info; -+ u32 rtmsg_flags; -+ s32 rtmsg_ifindex; +}; + +struct linger { @@ -88308,6 +91296,29 @@ index 0000000..bcb9d76 + __u32 gid; +}; + ++struct mmpin { ++ struct user_struct *user; ++ unsigned int num_pg; ++}; ++ ++struct ubuf_info { ++ void (*callback)(struct ubuf_info *, bool); ++ union { ++ struct { ++ long unsigned int desc; ++ void *ctx; ++ }; ++ struct { ++ u32 id; ++ u16 len; ++ u16 zerocopy: 1; ++ u32 bytelen; ++ }; ++ }; ++ refcount_t refcnt; ++ struct mmpin mmp; ++}; ++ +enum { + SKB_GSO_TCPV4 = 1, + SKB_GSO_DODGY = 2, @@ -88327,16 +91338,87 @@ index 0000000..bcb9d76 + SKB_GSO_ESP = 32768, + SKB_GSO_UDP = 65536, + SKB_GSO_UDP_L4 = 131072, ++ SKB_GSO_FRAGLIST = 262144, +}; + +struct prot_inuse { + int val[64]; +}; + -+struct offload_callbacks { -+ struct sk_buff * (*gso_segment)(struct sk_buff *, netdev_features_t); -+ struct sk_buff * (*gro_receive)(struct list_head *, struct sk_buff *); -+ int (*gro_complete)(struct sk_buff *, int); ++struct gro_list { ++ struct list_head list; ++ int count; ++}; ++ ++struct napi_struct { ++ struct list_head poll_list; ++ long unsigned int state; ++ int weight; ++ int defer_hard_irqs_count; ++ long unsigned int gro_bitmask; ++ int (*poll)(struct napi_struct *, int); ++ int poll_owner; ++ struct net_device *dev; ++ struct gro_list gro_hash[8]; ++ struct sk_buff *skb; ++ struct list_head rx_list; ++ int rx_count; ++ struct hrtimer timer; ++ struct list_head dev_list; ++ struct hlist_node napi_hash_node; ++ unsigned int napi_id; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct sd_flow_limit { ++ u64 count; ++ unsigned int num_buckets; ++ unsigned int history_head; ++ u16 history[128]; ++ u8 buckets[0]; ++}; ++ ++struct softnet_data { ++ struct list_head poll_list; ++ struct sk_buff_head process_queue; ++ unsigned int processed; ++ unsigned int time_squeeze; ++ unsigned int received_rps; ++ struct softnet_data *rps_ipi_list; ++ struct sd_flow_limit *flow_limit; ++ struct Qdisc *output_queue; ++ struct Qdisc **output_queue_tailp; ++ struct sk_buff *completion_queue; ++ struct sk_buff_head xfrm_backlog; ++ struct { ++ u16 recursion; ++ u8 more; ++ } xmit; ++ int: 32; ++ unsigned int input_queue_head; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ call_single_data_t csd; ++ struct softnet_data *rps_ipi_next; ++ unsigned int cpu; ++ unsigned int input_queue_tail; ++ unsigned int dropped; ++ struct sk_buff_head input_pkt_queue; ++ struct napi_struct backlog; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; +}; + +enum txtime_flags { @@ -88363,20 +91445,128 @@ index 0000000..bcb9d76 + u16 tsflags; +}; + -+struct minmax_sample { -+ u32 t; -+ u32 v; ++struct fastopen_queue { ++ struct request_sock *rskq_rst_head; ++ struct request_sock *rskq_rst_tail; ++ spinlock_t lock; ++ int qlen; ++ int max_qlen; ++ struct tcp_fastopen_context *ctx; +}; + -+struct minmax { -+ struct minmax_sample s[3]; ++struct request_sock_queue { ++ spinlock_t rskq_lock; ++ u8 rskq_defer_accept; ++ u32 synflood_warned; ++ atomic_t qlen; ++ atomic_t young; ++ struct request_sock *rskq_accept_head; ++ struct request_sock *rskq_accept_tail; ++ struct fastopen_queue fastopenq; ++}; ++ ++struct inet_connection_sock_af_ops { ++ int (*queue_xmit)(struct sock *, struct sk_buff *, struct flowi *); ++ void (*send_check)(struct sock *, struct sk_buff *); ++ int (*rebuild_header)(struct sock *); ++ void (*sk_rx_dst_set)(struct sock *, const struct sk_buff *); ++ int (*conn_request)(struct sock *, struct sk_buff *); ++ struct sock * (*syn_recv_sock)(const struct sock *, struct sk_buff *, struct request_sock *, struct dst_entry *, struct request_sock *, bool *); ++ u16 net_header_len; ++ u16 net_frag_header_len; ++ u16 sockaddr_len; ++ int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); ++ int (*getsockopt)(struct sock *, int, int, char *, int *); ++ void (*addr2sockaddr)(struct sock *, struct sockaddr *); ++ void (*mtu_reduced)(struct sock *); ++ u64 kabi_reserved1; ++}; ++ ++struct inet_bind_bucket; ++ ++struct tcp_ulp_ops; ++ ++struct inet_connection_sock { ++ struct inet_sock icsk_inet; ++ struct request_sock_queue icsk_accept_queue; ++ struct inet_bind_bucket *icsk_bind_hash; ++ long unsigned int icsk_timeout; ++ struct timer_list icsk_retransmit_timer; ++ struct timer_list icsk_delack_timer; ++ __u32 icsk_rto; ++ __u32 icsk_rto_min; ++ __u32 icsk_delack_max; ++ __u32 icsk_pmtu_cookie; ++ const struct tcp_congestion_ops *icsk_ca_ops; ++ const struct inet_connection_sock_af_ops *icsk_af_ops; ++ const struct tcp_ulp_ops *icsk_ulp_ops; ++ void *icsk_ulp_data; ++ void (*icsk_clean_acked)(struct sock *, u32); ++ struct hlist_node icsk_listen_portaddr_node; ++ unsigned int (*icsk_sync_mss)(struct sock *, u32); ++ __u8 icsk_ca_state: 5; ++ __u8 icsk_ca_initialized: 1; ++ __u8 icsk_ca_setsockopt: 1; ++ __u8 icsk_ca_dst_locked: 1; ++ __u8 icsk_retransmits; ++ __u8 icsk_pending; ++ __u8 icsk_backoff; ++ __u8 icsk_syn_retries; ++ __u8 icsk_probes_out; ++ __u16 icsk_ext_hdr_len; ++ struct { ++ __u8 pending; ++ __u8 quick; ++ __u8 pingpong; ++ __u8 retry; ++ __u32 ato; ++ long unsigned int timeout; ++ __u32 lrcvtime; ++ __u16 last_seg_size; ++ __u16 rcv_mss; ++ } icsk_ack; ++ struct { ++ int enabled; ++ int search_high; ++ int search_low; ++ int probe_size; ++ u32 probe_timestamp; ++ } icsk_mtup; ++ u32 icsk_probes_tstamp; ++ u32 icsk_user_timeout; ++ u64 kabi_reserved1; ++ u64 icsk_ca_priv[13]; ++}; ++ ++struct inet_bind_bucket { ++ possible_net_t ib_net; ++ int l3mdev; ++ short unsigned int port; ++ signed char fastreuse; ++ signed char fastreuseport; ++ kuid_t fastuid; ++ struct in6_addr fast_v6_rcv_saddr; ++ __be32 fast_rcv_saddr; ++ short unsigned int fast_sk_family; ++ bool fast_ipv6_only; ++ struct hlist_node node; ++ struct hlist_head owners; ++}; ++ ++struct tcp_ulp_ops { ++ struct list_head list; ++ int (*init)(struct sock *); ++ void (*update)(struct sock *, struct proto *, void (*)(struct sock *)); ++ void (*release)(struct sock *); ++ int (*get_info)(const struct sock *, struct sk_buff *); ++ size_t (*get_info_size)(const struct sock *); ++ void (*clone)(const struct request_sock *, struct sock *, const gfp_t); ++ char name[16]; ++ struct module *owner; +}; + +struct tcp_fastopen_cookie { -+ union { -+ u8 val[16]; -+ struct in6_addr addr; -+ }; ++ __le64 val[2]; + s8 len; + bool exp; +}; @@ -88399,6 +91589,9 @@ index 0000000..bcb9d76 + u16 smc_ok: 1; + u16 snd_wscale: 4; + u16 rcv_wscale: 4; ++ u8 saw_unknown: 1; ++ u8 comp_ok: 1; ++ u8 unused: 6; + u8 num_sacks; + u16 user_mss; + u16 mss_clamp; @@ -88456,8 +91649,9 @@ index 0000000..bcb9d76 + struct tcp_rack rack; + u16 advmss; + u8 compressed_ack; ++ u8 dup_ack_counter: 2; + u8 tlp_retrans: 1; -+ u8 unused_1: 7; ++ u8 unused: 5; + u32 chrono_start; + u32 chrono_stat[3]; + u8 chrono_type: 2; @@ -88465,22 +91659,24 @@ index 0000000..bcb9d76 + u8 fastopen_connect: 1; + u8 fastopen_no_cookie: 1; + u8 is_sack_reneg: 1; -+ u8 unused: 2; ++ u8 fastopen_client_fail: 2; + u8 nonagle: 4; + u8 thin_lto: 1; + u8 recvmsg_inq: 1; + u8 repair: 1; + u8 frto: 1; + u8 repair_queue; ++ u8 save_syn: 2; + u8 syn_data: 1; + u8 syn_fastopen: 1; + u8 syn_fastopen_exp: 1; + u8 syn_fastopen_ch: 1; + u8 syn_data_acked: 1; -+ u8 save_syn: 1; + u8 is_cwnd_limited: 1; -+ u8 syn_smc: 1; + u32 tlp_high_seq; ++ u32 tcp_tx_delay; ++ u64 tcp_wstamp_ns; ++ u64 tcp_clock_cache; + u64 tcp_mstamp; + u32 srtt_us; + u32 mdev_us; @@ -88545,6 +91741,8 @@ index 0000000..bcb9d76 + unsigned int keepalive_intvl; + int linger2; + u8 bpf_sock_ops_cb_flags; ++ u16 timeout_rehash; ++ u32 rcv_ooopack; + u32 rcv_rtt_last_tsecr; + struct { + u32 rtt_us; @@ -88565,7 +91763,7 @@ index 0000000..bcb9d76 + struct tcp_md5sig_info *md5sig_info; + struct tcp_fastopen_request *fastopen_req; + struct request_sock *fastopen_rsk; -+ u32 *saved_syn; ++ struct saved_syn *saved_syn; +}; + +struct tcp_md5sig_key; @@ -88573,7 +91771,7 @@ index 0000000..bcb9d76 +struct tcp_sock_af_ops { + struct tcp_md5sig_key * (*md5_lookup)(const struct sock *, const struct sock *); + int (*calc_md5_hash)(char *, const struct tcp_md5sig_key *, const struct sock *, const struct sk_buff *); -+ int (*md5_parse)(struct sock *, int, char *, int); ++ int (*md5_parse)(struct sock *, int, sockptr_t, int); +}; + +struct tcp_md5sig_info { @@ -88586,6 +91784,7 @@ index 0000000..bcb9d76 + struct msghdr *data; + size_t size; + int copied; ++ struct ubuf_info *uarg; +}; + +union tcp_md5_addr { @@ -88597,8 +91796,9 @@ index 0000000..bcb9d76 + struct hlist_node node; + u8 keylen; + u8 family; -+ union tcp_md5_addr addr; + u8 prefixlen; ++ union tcp_md5_addr addr; ++ int l3index; + u8 key[80]; + struct callback_head rcu; +}; @@ -88607,25 +91807,12 @@ index 0000000..bcb9d76 + int (*early_demux)(struct sk_buff *); + int (*early_demux_handler)(struct sk_buff *); + int (*handler)(struct sk_buff *); -+ void (*err_handler)(struct sk_buff *, u32); ++ int (*err_handler)(struct sk_buff *, u32); + unsigned int no_policy: 1; + unsigned int netns_ok: 1; + unsigned int icmp_strict_tag_validation: 1; +}; + -+struct inet6_protocol { -+ void (*early_demux)(struct sk_buff *); -+ void (*early_demux_handler)(struct sk_buff *); -+ int (*handler)(struct sk_buff *); -+ void (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); -+ unsigned int flags; -+}; -+ -+struct net_offload { -+ struct offload_callbacks callbacks; -+ unsigned int flags; -+}; -+ +struct cgroup_cls_state { + struct cgroup_subsys_state css; + u32 classid; @@ -88682,12 +91869,14 @@ index 0000000..bcb9d76 + const struct tcp_request_sock_ops *af_specific; + u64 snt_synack; + bool tfo_listener; ++ bool is_mptcp; + u32 txhash; + u32 rcv_isn; + u32 snt_isn; + u32 ts_off; + u32 last_oow_ack_time; + u32 rcv_nxt; ++ u8 syn_tos; +}; + +enum tcp_synack_type { @@ -88705,30 +91894,11 @@ index 0000000..bcb9d76 + struct dst_entry * (*route_req)(const struct sock *, struct flowi *, const struct request_sock *); + u32 (*init_seq)(const struct sk_buff *); + u32 (*init_ts_off)(const struct net *, const struct sk_buff *); -+ int (*send_synack)(const struct sock *, struct dst_entry *, struct flowi *, struct request_sock *, struct tcp_fastopen_cookie *, enum tcp_synack_type); ++ int (*send_synack)(const struct sock *, struct dst_entry *, struct flowi *, struct request_sock *, struct tcp_fastopen_cookie *, enum tcp_synack_type, struct sk_buff *); +}; + -+struct mmpin { -+ struct user_struct *user; -+ unsigned int num_pg; -+}; -+ -+struct ubuf_info { -+ void (*callback)(struct ubuf_info *, bool); -+ union { -+ struct { -+ long unsigned int desc; -+ void *ctx; -+ }; -+ struct { -+ u32 id; -+ u16 len; -+ u16 zerocopy: 1; -+ u32 bytelen; -+ }; -+ }; -+ refcount_t refcnt; -+ struct mmpin mmp; ++struct nf_conntrack { ++ atomic_t use; +}; + +enum { @@ -88753,6 +91923,11 @@ index 0000000..bcb9d76 + __u8 *frag_data; +}; + ++struct skb_checksum_ops { ++ __wsum (*update)(const void *, int, __wsum); ++ __wsum (*combine)(__wsum, __wsum, int, int); ++}; ++ +struct skb_gso_cb { + union { + int mac_offset; @@ -88782,6 +91957,7 @@ index 0000000..bcb9d76 + u8 is_fou: 1; + u8 is_atomic: 1; + u8 recursion_counter: 4; ++ u8 is_flist: 1; + __wsum csum; + struct sk_buff *last; +}; @@ -88833,12 +92009,22 @@ index 0000000..bcb9d76 + SCM_TSTAMP_ACK = 2, +}; + ++struct mpls_shim_hdr { ++ __be32 label_stack_entry; ++}; ++ +struct napi_alloc_cache { + struct page_frag_cache page; + unsigned int skb_count; + void *skb_cache[64]; +}; + ++typedef int (*sendmsg_func)(struct sock *, struct msghdr *, struct kvec *, size_t, size_t); ++ ++typedef int (*sendpage_func)(struct sock *, struct page *, int, size_t, int); ++ ++struct ahash_request; ++ +struct scm_cookie { + struct pid *pid; + struct scm_fp_list *fp; @@ -88846,6 +92032,14 @@ index 0000000..bcb9d76 + u32 secid; +}; + ++struct scm_timestamping { ++ struct __kernel_old_timespec ts[3]; ++}; ++ ++struct scm_timestamping64 { ++ struct __kernel_timespec ts[3]; ++}; ++ +enum { + TCA_STATS_UNSPEC = 0, + TCA_STATS_BASIC = 1, @@ -88854,7 +92048,9 @@ index 0000000..bcb9d76 + TCA_STATS_APP = 4, + TCA_STATS_RATE_EST64 = 5, + TCA_STATS_PAD = 6, -+ __TCA_STATS_MAX = 7, ++ TCA_STATS_BASIC_HW = 7, ++ TCA_STATS_PKT64 = 8, ++ __TCA_STATS_MAX = 9, +}; + +struct gnet_stats_basic { @@ -88885,7 +92081,7 @@ index 0000000..bcb9d76 + u8 ewma_log; + u8 intvl_log; + seqcount_t seq; -+ u32 last_packets; ++ u64 last_packets; + u64 last_bytes; + u64 avpps; + u64 avbps; @@ -88931,7 +92127,9 @@ index 0000000..bcb9d76 + RTNLGRP_MPLS_NETCONF = 29, + RTNLGRP_IPV4_MROUTE_R = 30, + RTNLGRP_IPV6_MROUTE_R = 31, -+ __RTNLGRP_MAX = 32, ++ RTNLGRP_NEXTHOP = 32, ++ RTNLGRP_BRVLAN = 33, ++ __RTNLGRP_MAX = 34, +}; + +enum { @@ -88939,21 +92137,64 @@ index 0000000..bcb9d76 + NETNSA_NSID = 1, + NETNSA_PID = 2, + NETNSA_FD = 3, -+ __NETNSA_MAX = 4, ++ NETNSA_TARGET_NSID = 4, ++ NETNSA_CURRENT_NSID = 5, ++ __NETNSA_MAX = 6, ++}; ++ ++struct pcpu_gen_cookie { ++ local_t nesting; ++ u64 last; ++}; ++ ++struct gen_cookie { ++ struct pcpu_gen_cookie *local; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ atomic64_t forward_last; ++ atomic64_t reverse_last; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; +}; + +enum rtnl_link_flags { + RTNL_FLAG_DOIT_UNLOCKED = 1, +}; + ++struct net_fill_args { ++ u32 portid; ++ u32 seq; ++ int flags; ++ int cmd; ++ int nsid; ++ bool add_ref; ++ int ref_nsid; ++}; ++ +struct rtnl_net_dump_cb { -+ struct net *net; ++ struct net *tgt_net; ++ struct net *ref_net; + struct sk_buff *skb; -+ struct netlink_callback *cb; ++ struct net_fill_args fillargs; + int idx; + int s_idx; +}; + ++typedef u16 u_int16_t; ++ ++typedef u32 u_int32_t; ++ ++typedef u64 u_int64_t; ++ +struct flow_dissector_key_control { + u16 thoff; + u16 addr_type; @@ -88979,18 +92220,29 @@ index 0000000..bcb9d76 +}; + +struct flow_dissector_key_vlan { -+ u16 vlan_id: 12; -+ u16 vlan_priority: 3; ++ union { ++ struct { ++ u16 vlan_id: 12; ++ u16 vlan_dei: 1; ++ u16 vlan_priority: 3; ++ }; ++ __be16 vlan_tci; ++ }; + __be16 vlan_tpid; +}; + -+struct flow_dissector_key_mpls { ++struct flow_dissector_mpls_lse { + u32 mpls_ttl: 8; + u32 mpls_bos: 1; + u32 mpls_tc: 3; + u32 mpls_label: 20; +}; + ++struct flow_dissector_key_mpls { ++ struct flow_dissector_mpls_lse ls[7]; ++ u8 used_lses; ++}; ++ +struct flow_dissector_key_enc_opts { + u8 data[255]; + u8 len; @@ -89042,13 +92294,11 @@ index 0000000..bcb9d76 +}; + +struct flow_dissector_key_icmp { -+ union { -+ __be16 icmp; -+ struct { -+ u8 type; -+ u8 code; -+ }; ++ struct { ++ u8 type; ++ u8 code; + }; ++ u16 id; +}; + +struct flow_dissector_key_eth_addrs { @@ -89065,11 +92315,32 @@ index 0000000..bcb9d76 + __u8 ttl; +}; + ++struct flow_dissector_key_meta { ++ int ingress_ifindex; ++ u16 ingress_iftype; ++}; ++ ++struct flow_dissector_key_ct { ++ u16 ct_state; ++ u16 ct_zone; ++ u32 ct_mark; ++ u32 ct_labels[4]; ++}; ++ ++struct flow_dissector_key_hash { ++ u32 hash; ++}; ++ +struct flow_dissector_key { + enum flow_dissector_key_id key_id; + size_t offset; +}; + ++struct flow_dissector { ++ unsigned int used_keys; ++ short unsigned int offset[28]; ++}; ++ +struct flow_keys_basic { + struct flow_dissector_key_control control; + struct flow_dissector_key_basic basic; @@ -89083,151 +92354,212 @@ index 0000000..bcb9d76 + struct flow_dissector_key_vlan cvlan; + struct flow_dissector_key_keyid keyid; + struct flow_dissector_key_ports ports; ++ struct flow_dissector_key_icmp icmp; + struct flow_dissector_key_addrs addrs; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; +}; + +struct flow_keys_digest { + u8 data[16]; +}; + -+struct lwtunnel_state { -+ __u16 type; -+ __u16 flags; -+ __u16 headroom; -+ atomic_t refcnt; -+ int (*orig_output)(struct net *, struct sock *, struct sk_buff *); -+ int (*orig_input)(struct sk_buff *); -+ struct callback_head rcu; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+ __u8 data[0]; ++enum ip_conntrack_info { ++ IP_CT_ESTABLISHED = 0, ++ IP_CT_RELATED = 1, ++ IP_CT_NEW = 2, ++ IP_CT_IS_REPLY = 3, ++ IP_CT_ESTABLISHED_REPLY = 3, ++ IP_CT_RELATED_REPLY = 4, ++ IP_CT_NUMBER = 5, ++ IP_CT_UNTRACKED = 7, +}; + -+union tcp_word_hdr { -+ struct tcphdr hdr; -+ __be32 words[5]; ++struct xt_table_info; ++ ++struct xt_table { ++ struct list_head list; ++ unsigned int valid_hooks; ++ struct xt_table_info *private; ++ struct module *me; ++ u_int8_t af; ++ int priority; ++ int (*table_init)(struct net *); ++ const char name[32]; +}; + -+enum devlink_dpipe_field_mapping_type { -+ DEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE = 0, -+ DEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX = 1, ++union nf_inet_addr { ++ __u32 all[4]; ++ __be32 ip; ++ __be32 ip6[4]; ++ struct in_addr in; ++ struct in6_addr in6; +}; + -+struct devlink_dpipe_field { -+ const char *name; -+ unsigned int id; -+ unsigned int bitwidth; -+ enum devlink_dpipe_field_mapping_type mapping_type; ++struct ip_ct_tcp_state { ++ u_int32_t td_end; ++ u_int32_t td_maxend; ++ u_int32_t td_maxwin; ++ u_int32_t td_maxack; ++ u_int8_t td_scale; ++ u_int8_t flags; +}; + -+struct devlink_dpipe_header { -+ const char *name; -+ unsigned int id; -+ struct devlink_dpipe_field *fields; -+ unsigned int fields_count; -+ bool global; ++struct ip_ct_tcp { ++ struct ip_ct_tcp_state seen[2]; ++ u_int8_t state; ++ u_int8_t last_dir; ++ u_int8_t retrans; ++ u_int8_t last_index; ++ u_int32_t last_seq; ++ u_int32_t last_ack; ++ u_int32_t last_end; ++ u_int16_t last_win; ++ u_int8_t last_wscale; ++ u_int8_t last_flags; +}; + -+struct arphdr { -+ __be16 ar_hrd; -+ __be16 ar_pro; -+ unsigned char ar_hln; -+ unsigned char ar_pln; -+ __be16 ar_op; ++union nf_conntrack_man_proto { ++ __be16 all; ++ struct { ++ __be16 port; ++ } tcp; ++ struct { ++ __be16 port; ++ } udp; ++ struct { ++ __be16 id; ++ } icmp; ++ struct { ++ __be16 port; ++ } dccp; ++ struct { ++ __be16 port; ++ } sctp; ++ struct { ++ __be16 key; ++ } gre; +}; + -+struct switchdev_trans { -+ struct list_head item_list; -+ bool ph_prepare; ++struct nf_ct_dccp { ++ u_int8_t role[2]; ++ u_int8_t state; ++ u_int8_t last_pkt; ++ u_int8_t last_dir; ++ u_int64_t handshake_seq; +}; + -+enum switchdev_attr_id { -+ SWITCHDEV_ATTR_ID_UNDEFINED = 0, -+ SWITCHDEV_ATTR_ID_PORT_PARENT_ID = 1, -+ SWITCHDEV_ATTR_ID_PORT_STP_STATE = 2, -+ SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 3, -+ SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS_SUPPORT = 4, -+ SWITCHDEV_ATTR_ID_PORT_MROUTER = 5, -+ SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 6, -+ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 7, -+ SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 8, -+ SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 9, ++struct ip_ct_sctp { ++ enum sctp_conntrack state; ++ __be32 vtag[2]; ++ u8 last_dir; ++ u8 flags; +}; + -+struct switchdev_attr { -+ struct net_device *orig_dev; -+ enum switchdev_attr_id id; -+ u32 flags; -+ void *complete_priv; -+ void (*complete)(struct net_device *, int, void *); ++struct nf_ct_event; ++ ++struct nf_ct_event_notifier { ++ int (*fcn)(unsigned int, struct nf_ct_event *); ++}; ++ ++struct nf_exp_event; ++ ++struct nf_exp_event_notifier { ++ int (*fcn)(unsigned int, struct nf_exp_event *); ++}; ++ ++enum bpf_ret_code { ++ BPF_OK = 0, ++ BPF_DROP = 2, ++ BPF_REDIRECT = 7, ++ BPF_LWT_REROUTE = 128, ++}; ++ ++enum { ++ BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG = 1, ++ BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 2, ++ BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP = 4, ++}; ++ ++enum devlink_port_type { ++ DEVLINK_PORT_TYPE_NOTSET = 0, ++ DEVLINK_PORT_TYPE_AUTO = 1, ++ DEVLINK_PORT_TYPE_ETH = 2, ++ DEVLINK_PORT_TYPE_IB = 3, ++}; ++ ++enum devlink_port_flavour { ++ DEVLINK_PORT_FLAVOUR_PHYSICAL = 0, ++ DEVLINK_PORT_FLAVOUR_CPU = 1, ++ DEVLINK_PORT_FLAVOUR_DSA = 2, ++ DEVLINK_PORT_FLAVOUR_PCI_PF = 3, ++ DEVLINK_PORT_FLAVOUR_PCI_VF = 4, ++ DEVLINK_PORT_FLAVOUR_VIRTUAL = 5, ++ DEVLINK_PORT_FLAVOUR_UNUSED = 6, ++}; ++ ++struct devlink_port_phys_attrs { ++ u32 port_number; ++ u32 split_subport_number; ++}; ++ ++struct devlink_port_pci_pf_attrs { ++ u32 controller; ++ u16 pf; ++ u8 external: 1; ++}; ++ ++struct devlink_port_pci_vf_attrs { ++ u32 controller; ++ u16 pf; ++ u16 vf; ++ u8 external: 1; ++}; ++ ++struct devlink_port_attrs { ++ u8 split: 1; ++ u8 splittable: 1; ++ u32 lanes; ++ enum devlink_port_flavour flavour; ++ struct netdev_phys_item_id switch_id; + union { -+ struct netdev_phys_item_id ppid; -+ u8 stp_state; -+ long unsigned int brport_flags; -+ long unsigned int brport_flags_support; -+ bool mrouter; -+ clock_t ageing_time; -+ bool vlan_filtering; -+ bool mc_disabled; -+ } u; ++ struct devlink_port_phys_attrs phys; ++ struct devlink_port_pci_pf_attrs pci_pf; ++ struct devlink_port_pci_vf_attrs pci_vf; ++ }; +}; + -+enum switchdev_obj_id { -+ SWITCHDEV_OBJ_ID_UNDEFINED = 0, -+ SWITCHDEV_OBJ_ID_PORT_VLAN = 1, -+ SWITCHDEV_OBJ_ID_PORT_MDB = 2, -+ SWITCHDEV_OBJ_ID_HOST_MDB = 3, ++struct devlink; ++ ++struct devlink_port { ++ struct list_head list; ++ struct list_head param_list; ++ struct list_head region_list; ++ struct devlink *devlink; ++ unsigned int index; ++ bool registered; ++ spinlock_t type_lock; ++ enum devlink_port_type type; ++ enum devlink_port_type desired_type; ++ void *type_dev; ++ struct devlink_port_attrs attrs; ++ u8 attrs_set: 1; ++ u8 switch_port: 1; ++ struct delayed_work type_warn_dw; ++ struct list_head reporter_list; ++ struct mutex reporters_lock; +}; + -+struct switchdev_obj { -+ struct net_device *orig_dev; -+ enum switchdev_obj_id id; -+ u32 flags; -+ void *complete_priv; -+ void (*complete)(struct net_device *, int, void *); -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; -+}; -+ -+enum lwtunnel_encap_types { -+ LWTUNNEL_ENCAP_NONE = 0, -+ LWTUNNEL_ENCAP_MPLS = 1, -+ LWTUNNEL_ENCAP_IP = 2, -+ LWTUNNEL_ENCAP_ILA = 3, -+ LWTUNNEL_ENCAP_IP6 = 4, -+ LWTUNNEL_ENCAP_SEG6 = 5, -+ LWTUNNEL_ENCAP_BPF = 6, -+ LWTUNNEL_ENCAP_SEG6_LOCAL = 7, -+ __LWTUNNEL_ENCAP_MAX = 8, -+}; -+ -+struct dst_cache_pcpu; -+ -+struct dst_cache { -+ struct dst_cache_pcpu *cache; -+ long unsigned int reset_ts; -+}; -+ -+struct ipv6_stub { -+ int (*ipv6_sock_mc_join)(struct sock *, int, const struct in6_addr *); -+ int (*ipv6_sock_mc_drop)(struct sock *, int, const struct in6_addr *); -+ struct dst_entry * (*ipv6_dst_lookup_flow)(struct net *, const struct sock *, struct flowi6 *, const struct in6_addr *); -+ struct fib6_table * (*fib6_get_table)(struct net *, u32); -+ struct fib6_info * (*fib6_lookup)(struct net *, int, struct flowi6 *, int); -+ struct fib6_info * (*fib6_table_lookup)(struct net *, struct fib6_table *, int, struct flowi6 *, int); -+ struct fib6_info * (*fib6_multipath_select)(const struct net *, struct fib6_info *, struct flowi6 *, int, const struct sk_buff *, int); -+ u32 (*ip6_mtu_from_fib6)(struct fib6_info *, struct in6_addr *, struct in6_addr *); -+ void (*udpv6_encap_enable)(); -+ void (*ndisc_send_na)(struct net_device *, const struct in6_addr *, const struct in6_addr *, bool, bool, bool, bool); -+ struct neigh_table *nd_tbl; -+}; -+ -+struct ipv6_bpf_stub { -+ int (*inet6_bind)(struct sock *, struct sockaddr *, int, bool, bool); ++struct ip_tunnel_parm { ++ char name[16]; ++ int link; ++ __be16 i_flags; ++ __be16 o_flags; ++ __be32 i_key; ++ __be32 o_key; ++ struct iphdr iph; +}; + +struct ip_tunnel_key { @@ -89250,6 +92582,13 @@ index 0000000..bcb9d76 + __be16 tp_dst; +}; + ++struct dst_cache_pcpu; ++ ++struct dst_cache { ++ struct dst_cache_pcpu *cache; ++ long unsigned int reset_ts; ++}; ++ +struct ip_tunnel_info { + struct ip_tunnel_key key; + struct dst_cache dst_cache; @@ -89257,16 +92596,321 @@ index 0000000..bcb9d76 + u8 mode; +}; + -+struct ip_tunnel_encap { -+ u16 type; -+ u16 flags; -+ __be16 sport; -+ __be16 dport; ++union tcp_word_hdr { ++ struct tcphdr hdr; ++ __be32 words[5]; +}; + -+struct ip_tunnel_encap_ops { -+ size_t (*encap_hlen)(struct ip_tunnel_encap *); -+ int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi4 *); ++enum devlink_sb_pool_type { ++ DEVLINK_SB_POOL_TYPE_INGRESS = 0, ++ DEVLINK_SB_POOL_TYPE_EGRESS = 1, ++}; ++ ++enum devlink_sb_threshold_type { ++ DEVLINK_SB_THRESHOLD_TYPE_STATIC = 0, ++ DEVLINK_SB_THRESHOLD_TYPE_DYNAMIC = 1, ++}; ++ ++enum devlink_eswitch_encap_mode { ++ DEVLINK_ESWITCH_ENCAP_MODE_NONE = 0, ++ DEVLINK_ESWITCH_ENCAP_MODE_BASIC = 1, ++}; ++ ++enum devlink_trap_action { ++ DEVLINK_TRAP_ACTION_DROP = 0, ++ DEVLINK_TRAP_ACTION_TRAP = 1, ++ DEVLINK_TRAP_ACTION_MIRROR = 2, ++}; ++ ++enum devlink_trap_type { ++ DEVLINK_TRAP_TYPE_DROP = 0, ++ DEVLINK_TRAP_TYPE_EXCEPTION = 1, ++ DEVLINK_TRAP_TYPE_CONTROL = 2, ++}; ++ ++enum devlink_reload_action { ++ DEVLINK_RELOAD_ACTION_UNSPEC = 0, ++ DEVLINK_RELOAD_ACTION_DRIVER_REINIT = 1, ++ DEVLINK_RELOAD_ACTION_FW_ACTIVATE = 2, ++ __DEVLINK_RELOAD_ACTION_MAX = 3, ++ DEVLINK_RELOAD_ACTION_MAX = 2, ++}; ++ ++enum devlink_reload_limit { ++ DEVLINK_RELOAD_LIMIT_UNSPEC = 0, ++ DEVLINK_RELOAD_LIMIT_NO_RESET = 1, ++ __DEVLINK_RELOAD_LIMIT_MAX = 2, ++ DEVLINK_RELOAD_LIMIT_MAX = 1, ++}; ++ ++enum devlink_dpipe_field_mapping_type { ++ DEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE = 0, ++ DEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX = 1, ++}; ++ ++struct devlink_dev_stats { ++ u32 reload_stats[6]; ++ u32 remote_reload_stats[6]; ++}; ++ ++struct devlink_dpipe_headers; ++ ++struct devlink_ops; ++ ++struct devlink { ++ struct list_head list; ++ struct list_head port_list; ++ struct list_head sb_list; ++ struct list_head dpipe_table_list; ++ struct list_head resource_list; ++ struct list_head param_list; ++ struct list_head region_list; ++ struct list_head reporter_list; ++ struct mutex reporters_lock; ++ struct devlink_dpipe_headers *dpipe_headers; ++ struct list_head trap_list; ++ struct list_head trap_group_list; ++ struct list_head trap_policer_list; ++ const struct devlink_ops *ops; ++ struct xarray snapshot_ids; ++ struct devlink_dev_stats stats; ++ struct device *dev; ++ possible_net_t _net; ++ struct mutex lock; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u8 reload_failed: 1; ++ u8 reload_enabled: 1; ++ u8 registered: 1; ++ long: 61; ++ long: 64; ++ long: 64; ++ long: 64; ++ char priv[0]; ++}; ++ ++struct devlink_dpipe_header; ++ ++struct devlink_dpipe_headers { ++ struct devlink_dpipe_header **headers; ++ unsigned int headers_count; ++}; ++ ++struct devlink_sb_pool_info; ++ ++struct devlink_info_req; ++ ++struct devlink_flash_update_params; ++ ++struct devlink_trap; ++ ++struct devlink_trap_group; ++ ++struct devlink_trap_policer; ++ ++struct devlink_ops { ++ u32 supported_flash_update_params; ++ long unsigned int reload_actions; ++ long unsigned int reload_limits; ++ int (*reload_down)(struct devlink *, bool, enum devlink_reload_action, enum devlink_reload_limit, struct netlink_ext_ack *); ++ int (*reload_up)(struct devlink *, enum devlink_reload_action, enum devlink_reload_limit, u32 *, struct netlink_ext_ack *); ++ int (*port_type_set)(struct devlink_port *, enum devlink_port_type); ++ int (*port_split)(struct devlink *, unsigned int, unsigned int, struct netlink_ext_ack *); ++ int (*port_unsplit)(struct devlink *, unsigned int, struct netlink_ext_ack *); ++ int (*sb_pool_get)(struct devlink *, unsigned int, u16, struct devlink_sb_pool_info *); ++ int (*sb_pool_set)(struct devlink *, unsigned int, u16, u32, enum devlink_sb_threshold_type, struct netlink_ext_ack *); ++ int (*sb_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *); ++ int (*sb_port_pool_set)(struct devlink_port *, unsigned int, u16, u32, struct netlink_ext_ack *); ++ int (*sb_tc_pool_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16 *, u32 *); ++ int (*sb_tc_pool_bind_set)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16, u32, struct netlink_ext_ack *); ++ int (*sb_occ_snapshot)(struct devlink *, unsigned int); ++ int (*sb_occ_max_clear)(struct devlink *, unsigned int); ++ int (*sb_occ_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *, u32 *); ++ int (*sb_occ_tc_port_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u32 *, u32 *); ++ int (*eswitch_mode_get)(struct devlink *, u16 *); ++ int (*eswitch_mode_set)(struct devlink *, u16, struct netlink_ext_ack *); ++ int (*eswitch_inline_mode_get)(struct devlink *, u8 *); ++ int (*eswitch_inline_mode_set)(struct devlink *, u8, struct netlink_ext_ack *); ++ int (*eswitch_encap_mode_get)(struct devlink *, enum devlink_eswitch_encap_mode *); ++ int (*eswitch_encap_mode_set)(struct devlink *, enum devlink_eswitch_encap_mode, struct netlink_ext_ack *); ++ int (*info_get)(struct devlink *, struct devlink_info_req *, struct netlink_ext_ack *); ++ int (*flash_update)(struct devlink *, struct devlink_flash_update_params *, struct netlink_ext_ack *); ++ int (*trap_init)(struct devlink *, const struct devlink_trap *, void *); ++ void (*trap_fini)(struct devlink *, const struct devlink_trap *, void *); ++ int (*trap_action_set)(struct devlink *, const struct devlink_trap *, enum devlink_trap_action, struct netlink_ext_ack *); ++ int (*trap_group_init)(struct devlink *, const struct devlink_trap_group *); ++ int (*trap_group_set)(struct devlink *, const struct devlink_trap_group *, const struct devlink_trap_policer *, struct netlink_ext_ack *); ++ int (*trap_group_action_set)(struct devlink *, const struct devlink_trap_group *, enum devlink_trap_action, struct netlink_ext_ack *); ++ int (*trap_policer_init)(struct devlink *, const struct devlink_trap_policer *); ++ void (*trap_policer_fini)(struct devlink *, const struct devlink_trap_policer *); ++ int (*trap_policer_set)(struct devlink *, const struct devlink_trap_policer *, u64, u64, struct netlink_ext_ack *); ++ int (*trap_policer_counter_get)(struct devlink *, const struct devlink_trap_policer *, u64 *); ++ int (*port_function_hw_addr_get)(struct devlink *, struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); ++ int (*port_function_hw_addr_set)(struct devlink *, struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); ++}; ++ ++struct devlink_sb_pool_info { ++ enum devlink_sb_pool_type pool_type; ++ u32 size; ++ enum devlink_sb_threshold_type threshold_type; ++ u32 cell_size; ++}; ++ ++struct devlink_dpipe_field { ++ const char *name; ++ unsigned int id; ++ unsigned int bitwidth; ++ enum devlink_dpipe_field_mapping_type mapping_type; ++}; ++ ++struct devlink_dpipe_header { ++ const char *name; ++ unsigned int id; ++ struct devlink_dpipe_field *fields; ++ unsigned int fields_count; ++ bool global; ++}; ++ ++struct devlink_flash_update_params { ++ const char *file_name; ++ const char *component; ++ u32 overwrite_mask; ++}; ++ ++struct devlink_trap_policer { ++ u32 id; ++ u64 init_rate; ++ u64 init_burst; ++ u64 max_rate; ++ u64 min_rate; ++ u64 max_burst; ++ u64 min_burst; ++}; ++ ++struct devlink_trap_group { ++ const char *name; ++ u16 id; ++ bool generic; ++ u32 init_policer_id; ++}; ++ ++struct devlink_trap { ++ enum devlink_trap_type type; ++ enum devlink_trap_action init_action; ++ bool generic; ++ u16 id; ++ const char *name; ++ u16 init_group_id; ++ u32 metadata_cap; ++}; ++ ++struct arphdr { ++ __be16 ar_hrd; ++ __be16 ar_pro; ++ unsigned char ar_hln; ++ unsigned char ar_pln; ++ __be16 ar_op; ++}; ++ ++struct fib_info; ++ ++struct fib_nh { ++ struct fib_nh_common nh_common; ++ struct hlist_node nh_hash; ++ struct fib_info *nh_parent; ++ __u32 nh_tclassid; ++ __be32 nh_saddr; ++ int nh_saddr_genid; ++}; ++ ++struct fib_info { ++ struct hlist_node fib_hash; ++ struct hlist_node fib_lhash; ++ struct list_head nh_list; ++ struct net *fib_net; ++ int fib_treeref; ++ refcount_t fib_clntref; ++ unsigned int fib_flags; ++ unsigned char fib_dead; ++ unsigned char fib_protocol; ++ unsigned char fib_scope; ++ unsigned char fib_type; ++ __be32 fib_prefsrc; ++ u32 fib_tb_id; ++ u32 fib_priority; ++ struct dst_metrics *fib_metrics; ++ int fib_nhs; ++ bool fib_nh_is_v6; ++ bool nh_updated; ++ struct nexthop *nh; ++ struct callback_head rcu; ++ struct fib_nh fib_nh[0]; ++}; ++ ++struct nh_info; ++ ++struct nh_group; ++ ++struct nexthop { ++ struct rb_node rb_node; ++ struct list_head fi_list; ++ struct list_head f6i_list; ++ struct list_head fdb_list; ++ struct list_head grp_list; ++ struct net *net; ++ u32 id; ++ u8 protocol; ++ u8 nh_flags; ++ bool is_group; ++ refcount_t refcnt; ++ struct callback_head rcu; ++ union { ++ struct nh_info *nh_info; ++ struct nh_group *nh_grp; ++ }; ++}; ++ ++enum lwtunnel_encap_types { ++ LWTUNNEL_ENCAP_NONE = 0, ++ LWTUNNEL_ENCAP_MPLS = 1, ++ LWTUNNEL_ENCAP_IP = 2, ++ LWTUNNEL_ENCAP_ILA = 3, ++ LWTUNNEL_ENCAP_IP6 = 4, ++ LWTUNNEL_ENCAP_SEG6 = 5, ++ LWTUNNEL_ENCAP_BPF = 6, ++ LWTUNNEL_ENCAP_SEG6_LOCAL = 7, ++ LWTUNNEL_ENCAP_RPL = 8, ++ __LWTUNNEL_ENCAP_MAX = 9, ++}; ++ ++struct nh_info { ++ struct hlist_node dev_hash; ++ struct nexthop *nh_parent; ++ u8 family; ++ bool reject_nh; ++ bool fdb_nh; ++ union { ++ struct fib_nh_common fib_nhc; ++ struct fib_nh fib_nh; ++ struct fib6_nh fib6_nh; ++ }; ++}; ++ ++struct nh_grp_entry { ++ struct nexthop *nh; ++ u8 weight; ++ atomic_t upper_bound; ++ struct list_head nh_list; ++ struct nexthop *nh_parent; ++}; ++ ++struct nh_group { ++ struct nh_group *spare; ++ u16 num_nh; ++ bool mpath; ++ bool fdb_nh; ++ bool has_v4; ++ struct nh_grp_entry nh_entries[0]; +}; + +enum metadata_type { @@ -89313,6 +92957,24 @@ index 0000000..bcb9d76 + __be32 w[4]; +}; + ++struct icmphdr { ++ __u8 type; ++ __u8 code; ++ __sum16 checksum; ++ union { ++ struct { ++ __be16 id; ++ __be16 sequence; ++ } echo; ++ __be32 gateway; ++ struct { ++ __be16 __unused; ++ __be16 mtu; ++ } frag; ++ __u8 reserved[4]; ++ } un; ++}; ++ +enum l2tp_debug_flags { + L2TP_MSG_DEBUG = 1, + L2TP_MSG_CONTROL = 2, @@ -89360,6 +93022,167 @@ index 0000000..bcb9d76 + __u8 dest[6]; +}; + ++struct nf_conntrack_zone { ++ u16 id; ++ u8 flags; ++ u8 dir; ++}; ++ ++struct nf_conntrack_man { ++ union nf_inet_addr u3; ++ union nf_conntrack_man_proto u; ++ u_int16_t l3num; ++}; ++ ++struct nf_conntrack_tuple { ++ struct nf_conntrack_man src; ++ struct { ++ union nf_inet_addr u3; ++ union { ++ __be16 all; ++ struct { ++ __be16 port; ++ } tcp; ++ struct { ++ __be16 port; ++ } udp; ++ struct { ++ u_int8_t type; ++ u_int8_t code; ++ } icmp; ++ struct { ++ __be16 port; ++ } dccp; ++ struct { ++ __be16 port; ++ } sctp; ++ struct { ++ __be16 key; ++ } gre; ++ } u; ++ u_int8_t protonum; ++ u_int8_t dir; ++ } dst; ++}; ++ ++struct nf_conntrack_tuple_hash { ++ struct hlist_nulls_node hnnode; ++ struct nf_conntrack_tuple tuple; ++}; ++ ++struct nf_ct_udp { ++ long unsigned int stream_ts; ++}; ++ ++struct nf_ct_gre { ++ unsigned int stream_timeout; ++ unsigned int timeout; ++}; ++ ++union nf_conntrack_proto { ++ struct nf_ct_dccp dccp; ++ struct ip_ct_sctp sctp; ++ struct ip_ct_tcp tcp; ++ struct nf_ct_udp udp; ++ struct nf_ct_gre gre; ++ unsigned int tmpl_padto; ++}; ++ ++struct nf_ct_ext; ++ ++struct nf_conn { ++ struct nf_conntrack ct_general; ++ spinlock_t lock; ++ u32 timeout; ++ struct nf_conntrack_zone zone; ++ struct nf_conntrack_tuple_hash tuplehash[2]; ++ long unsigned int status; ++ u16 cpu; ++ possible_net_t ct_net; ++ struct hlist_node nat_bysource; ++ struct { } __nfct_init_offset; ++ struct nf_conn *master; ++ u_int32_t mark; ++ u_int32_t secmark; ++ struct nf_ct_ext *ext; ++ union nf_conntrack_proto proto; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++}; ++ ++struct xt_table_info { ++ unsigned int size; ++ unsigned int number; ++ unsigned int initial_entries; ++ unsigned int hook_entry[5]; ++ unsigned int underflow[5]; ++ unsigned int stacksize; ++ void ***jumpstack; ++ unsigned char entries[0]; ++}; ++ ++struct nf_conntrack_tuple_mask { ++ struct { ++ union nf_inet_addr u3; ++ union nf_conntrack_man_proto u; ++ } src; ++}; ++ ++struct nf_ct_ext { ++ u8 offset[9]; ++ u8 len; ++ char data[0]; ++}; ++ ++struct nf_conntrack_helper; ++ ++struct nf_conntrack_expect { ++ struct hlist_node lnode; ++ struct hlist_node hnode; ++ struct nf_conntrack_tuple tuple; ++ struct nf_conntrack_tuple_mask mask; ++ void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); ++ struct nf_conntrack_helper *helper; ++ struct nf_conn *master; ++ struct timer_list timeout; ++ refcount_t use; ++ unsigned int flags; ++ unsigned int class; ++ union nf_inet_addr saved_addr; ++ union nf_conntrack_man_proto saved_proto; ++ enum ip_conntrack_dir dir; ++ struct callback_head rcu; ++}; ++ ++enum nf_ct_ext_id { ++ NF_CT_EXT_HELPER = 0, ++ NF_CT_EXT_NAT = 1, ++ NF_CT_EXT_SEQADJ = 2, ++ NF_CT_EXT_ACCT = 3, ++ NF_CT_EXT_ECACHE = 4, ++ NF_CT_EXT_TSTAMP = 5, ++ NF_CT_EXT_TIMEOUT = 6, ++ NF_CT_EXT_LABELS = 7, ++ NF_CT_EXT_SYNPROXY = 8, ++ NF_CT_EXT_NUM = 9, ++}; ++ ++struct nf_ct_event { ++ struct nf_conn *ct; ++ u32 portid; ++ int report; ++}; ++ ++struct nf_exp_event { ++ struct nf_conntrack_expect *exp; ++ u32 portid; ++ int report; ++}; ++ ++struct nf_conn_labels { ++ long unsigned int bits[2]; ++}; ++ +struct _flow_keys_digest_data { + __be16 n_proto; + u8 ip_proto; @@ -89369,6 +93192,19 @@ index 0000000..bcb9d76 + __be32 dst; +}; + ++struct rps_sock_flow_table { ++ u32 mask; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ u32 ents[0]; ++}; ++ +enum { + IF_OPER_UNKNOWN = 0, + IF_OPER_NOTPRESENT = 1, @@ -89408,14 +93244,6 @@ index 0000000..bcb9d76 + +typedef struct ifslave ifslave; + -+enum netdev_state_t { -+ __LINK_STATE_START = 0, -+ __LINK_STATE_PRESENT = 1, -+ __LINK_STATE_NOCARRIER = 2, -+ __LINK_STATE_LINKWATCH_PENDING = 3, -+ __LINK_STATE_DORMANT = 4, -+}; -+ +struct netdev_boot_setup { + char name[16]; + struct ifmap map; @@ -89426,7 +93254,7 @@ index 0000000..bcb9d76 + NAPIF_STATE_MISSED = 2, + NAPIF_STATE_DISABLE = 4, + NAPIF_STATE_NPSVC = 8, -+ NAPIF_STATE_HASHED = 16, ++ NAPIF_STATE_LISTED = 16, + NAPIF_STATE_NO_BUSY_POLL = 32, + NAPIF_STATE_IN_BUSY_POLL = 64, +}; @@ -89448,6 +93276,17 @@ index 0000000..bcb9d76 + __QUEUE_STATE_FROZEN = 2, +}; + ++struct bpf_xdp_link { ++ struct bpf_link link; ++ struct net_device *dev; ++ int flags; ++}; ++ ++struct netdev_net_notifier { ++ struct list_head list; ++ struct notifier_block *nb; ++}; ++ +struct netpoll; + +struct netpoll_info { @@ -89463,6 +93302,7 @@ index 0000000..bcb9d76 + short unsigned int type; + sa_family_t sa_family; + __be16 port; ++ u8 hw_priv; +}; + +struct in_ifaddr; @@ -89486,26 +93326,41 @@ index 0000000..bcb9d76 + long unsigned int mr_qri; + unsigned char mr_qrv; + unsigned char mr_gq_running; -+ unsigned char mr_ifc_count; ++ u32 mr_ifc_count; + struct timer_list mr_gq_timer; + struct timer_list mr_ifc_timer; + struct neigh_parms *arp_parms; + struct ipv4_devconf cnf; + struct callback_head callback_head; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; +}; + +struct packet_type { + __be16 type; ++ bool ignore_outgoing; + struct net_device *dev; + int (*func)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); + void (*list_func)(struct list_head *, struct packet_type *, struct net_device *); + bool (*id_match)(struct packet_type *, struct sock *); + void *af_packet_priv; + struct list_head list; -+ long unsigned int kabi_reserved1; -+ long unsigned int kabi_reserved2; -+ long unsigned int kabi_reserved3; -+ long unsigned int kabi_reserved4; ++ union { ++ struct net *af_packet_net; ++ struct { ++ u64 kabi_reserved1; ++ } kabi_hidden_2598; ++ union { }; ++ }; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++struct offload_callbacks { ++ struct sk_buff * (*gso_segment)(struct sk_buff *, netdev_features_t); ++ struct sk_buff * (*gro_receive)(struct list_head *, struct sk_buff *); ++ int (*gro_complete)(struct sk_buff *, int); +}; + +struct packet_offload { @@ -89540,8 +93395,23 @@ index 0000000..bcb9d76 + void *lower_state_info; +}; + ++struct netdev_notifier_pre_changeaddr_info { ++ struct netdev_notifier_info info; ++ const unsigned char *dev_addr; ++}; ++ +typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); + ++enum { ++ NESTED_SYNC_IMM_BIT = 0, ++ NESTED_SYNC_TODO_BIT = 1, ++}; ++ ++struct netdev_nested_priv { ++ unsigned char flags; ++ void *data; ++}; ++ +struct netdev_bonding_info { + ifslave slave; + ifbond master; @@ -89570,18 +93440,19 @@ index 0000000..bcb9d76 + u16 local_port; + u16 remote_port; + u8 remote_mac[6]; -+ struct work_struct cleanup_work; +}; + +enum qdisc_state_t { + __QDISC_STATE_SCHED = 0, + __QDISC_STATE_DEACTIVATED = 1, ++ __QDISC_STATE_MISSED = 2, +}; + +struct tcf_walker { + int stop; + int skip; + int count; ++ bool nonempty; + long unsigned int cookie; + int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); +}; @@ -89642,6 +93513,11 @@ index 0000000..bcb9d76 + long unsigned int ifa_tstamp; +}; + ++struct udp_tunnel_nic_shared { ++ struct udp_tunnel_nic *udp_tunnel_nic_info; ++ struct list_head devices; ++}; ++ +struct dev_kfree_skb_cb { + enum skb_free_reason reason; +}; @@ -89649,154 +93525,13 @@ index 0000000..bcb9d76 +struct netdev_adjacent { + struct net_device *dev; + bool master; ++ bool ignore; + u16 ref_nr; + void *private; + struct list_head list; + struct callback_head rcu; +}; + -+typedef struct sk_buff *pto_T_____30; -+ -+typedef __u32 pao_T_____8; -+ -+typedef u16 pao_T_____9; -+ -+struct ethtool_value { -+ __u32 cmd; -+ __u32 data; -+}; -+ -+enum tunable_id { -+ ETHTOOL_ID_UNSPEC = 0, -+ ETHTOOL_RX_COPYBREAK = 1, -+ ETHTOOL_TX_COPYBREAK = 2, -+ ETHTOOL_PFC_PREVENTION_TOUT = 3, -+ __ETHTOOL_TUNABLE_COUNT = 4, -+}; -+ -+enum tunable_type_id { -+ ETHTOOL_TUNABLE_UNSPEC = 0, -+ ETHTOOL_TUNABLE_U8 = 1, -+ ETHTOOL_TUNABLE_U16 = 2, -+ ETHTOOL_TUNABLE_U32 = 3, -+ ETHTOOL_TUNABLE_U64 = 4, -+ ETHTOOL_TUNABLE_STRING = 5, -+ ETHTOOL_TUNABLE_S8 = 6, -+ ETHTOOL_TUNABLE_S16 = 7, -+ ETHTOOL_TUNABLE_S32 = 8, -+ ETHTOOL_TUNABLE_S64 = 9, -+}; -+ -+enum phy_tunable_id { -+ ETHTOOL_PHY_ID_UNSPEC = 0, -+ ETHTOOL_PHY_DOWNSHIFT = 1, -+ __ETHTOOL_PHY_TUNABLE_COUNT = 2, -+}; -+ -+enum ethtool_stringset { -+ ETH_SS_TEST = 0, -+ ETH_SS_STATS = 1, -+ ETH_SS_PRIV_FLAGS = 2, -+ ETH_SS_NTUPLE_FILTERS = 3, -+ ETH_SS_FEATURES = 4, -+ ETH_SS_RSS_HASH_FUNCS = 5, -+ ETH_SS_TUNABLES = 6, -+ ETH_SS_PHY_STATS = 7, -+ ETH_SS_PHY_TUNABLES = 8, -+}; -+ -+struct ethtool_gstrings { -+ __u32 cmd; -+ __u32 string_set; -+ __u32 len; -+ __u8 data[0]; -+}; -+ -+struct ethtool_sset_info { -+ __u32 cmd; -+ __u32 reserved; -+ __u64 sset_mask; -+ __u32 data[0]; -+}; -+ -+struct ethtool_perm_addr { -+ __u32 cmd; -+ __u32 size; -+ __u8 data[0]; -+}; -+ -+enum ethtool_flags { -+ ETH_FLAG_TXVLAN = 128, -+ ETH_FLAG_RXVLAN = 256, -+ ETH_FLAG_LRO = 32768, -+ ETH_FLAG_NTUPLE = 134217728, -+ ETH_FLAG_RXHASH = 268435456, -+}; -+ -+struct ethtool_rxfh { -+ __u32 cmd; -+ __u32 rss_context; -+ __u32 indir_size; -+ __u32 key_size; -+ __u8 hfunc; -+ __u8 rsvd8[3]; -+ __u32 rsvd32; -+ __u32 rss_config[0]; -+}; -+ -+struct ethtool_get_features_block { -+ __u32 available; -+ __u32 requested; -+ __u32 active; -+ __u32 never_changed; -+}; -+ -+struct ethtool_gfeatures { -+ __u32 cmd; -+ __u32 size; -+ struct ethtool_get_features_block features[0]; -+}; -+ -+struct ethtool_set_features_block { -+ __u32 valid; -+ __u32 requested; -+}; -+ -+struct ethtool_sfeatures { -+ __u32 cmd; -+ __u32 size; -+ struct ethtool_set_features_block features[0]; -+}; -+ -+enum ethtool_sfeatures_retval_bits { -+ ETHTOOL_F_UNSUPPORTED__BIT = 0, -+ ETHTOOL_F_WISH__BIT = 1, -+ ETHTOOL_F_COMPAT__BIT = 2, -+}; -+ -+struct ethtool_per_queue_op { -+ __u32 cmd; -+ __u32 sub_command; -+ __u32 queue_mask[128]; -+ char data[0]; -+}; -+ -+enum { -+ ETH_RSS_HASH_TOP_BIT = 0, -+ ETH_RSS_HASH_XOR_BIT = 1, -+ ETH_RSS_HASH_CRC32_BIT = 2, -+ ETH_RSS_HASH_FUNCS_COUNT = 3, -+}; -+ -+struct ethtool_link_usettings { -+ struct ethtool_link_settings base; -+ struct { -+ __u32 supported[2]; -+ __u32 advertising[2]; -+ __u32 lp_advertising[2]; -+ } link_modes; -+}; -+ +struct netdev_hw_addr { + struct list_head list; + unsigned char addr[32]; @@ -89821,7 +93556,10 @@ index 0000000..bcb9d76 + NDA_MASTER = 9, + NDA_LINK_NETNSID = 10, + NDA_SRC_VNI = 11, -+ __NDA_MAX = 12, ++ NDA_PROTOCOL = 12, ++ NDA_NH_ID = 13, ++ NDA_FDB_EXT_ATTRS = 14, ++ __NDA_MAX = 15, +}; + +struct nda_cacheinfo { @@ -89947,6 +93685,11 @@ index 0000000..bcb9d76 + NETEVENT_IPV4_FWD_UPDATE_PRIORITY_UPDATE = 6, +}; + ++struct neigh_dump_filter { ++ int master_idx; ++ int dev_idx; ++}; ++ +struct neigh_sysctl_table { + struct ctl_table_header *sysctl_header; + struct ctl_table neigh_vars[21]; @@ -89958,7 +93701,7 @@ index 0000000..bcb9d76 + int (*done)(struct netlink_callback *); + void *data; + struct module *module; -+ u16 min_dump_alloc; ++ u32 min_dump_alloc; +}; + +struct rtnl_link_stats { @@ -90045,12 +93788,25 @@ index 0000000..bcb9d76 + IFLA_EVENT = 44, + IFLA_NEW_NETNSID = 45, + IFLA_IF_NETNSID = 46, ++ IFLA_TARGET_NETNSID = 46, + IFLA_CARRIER_UP_COUNT = 47, + IFLA_CARRIER_DOWN_COUNT = 48, + IFLA_NEW_IFINDEX = 49, + IFLA_MIN_MTU = 50, + IFLA_MAX_MTU = 51, -+ __IFLA_MAX = 52, ++ IFLA_PROP_LIST = 52, ++ IFLA_ALT_IFNAME = 53, ++ IFLA_PERM_ADDRESS = 54, ++ IFLA_PROTO_DOWN_REASON = 55, ++ __IFLA_MAX = 56, ++}; ++ ++enum { ++ IFLA_PROTO_DOWN_REASON_UNSPEC = 0, ++ IFLA_PROTO_DOWN_REASON_MASK = 1, ++ IFLA_PROTO_DOWN_REASON_VALUE = 2, ++ __IFLA_PROTO_DOWN_REASON_CNT = 3, ++ IFLA_PROTO_DOWN_REASON_MAX = 2, +}; + +enum { @@ -90089,7 +93845,9 @@ index 0000000..bcb9d76 + IFLA_BRPORT_NEIGH_SUPPRESS = 32, + IFLA_BRPORT_ISOLATED = 33, + IFLA_BRPORT_BACKUP_PORT = 34, -+ __IFLA_BRPORT_MAX = 35, ++ IFLA_BRPORT_MRP_RING_OPEN = 35, ++ IFLA_BRPORT_MRP_IN_OPEN = 36, ++ __IFLA_BRPORT_MAX = 37, +}; + +enum { @@ -90122,7 +93880,8 @@ index 0000000..bcb9d76 + IFLA_VF_IB_NODE_GUID = 10, + IFLA_VF_IB_PORT_GUID = 11, + IFLA_VF_VLAN_LIST = 12, -+ __IFLA_VF_MAX = 13, ++ IFLA_VF_BROADCAST = 13, ++ __IFLA_VF_MAX = 14, +}; + +struct ifla_vf_mac { @@ -90130,6 +93889,10 @@ index 0000000..bcb9d76 + __u8 mac[32]; +}; + ++struct ifla_vf_broadcast { ++ __u8 broadcast[32]; ++}; ++ +struct ifla_vf_vlan { + __u32 vf; + __u32 vlan; @@ -90165,11 +93928,6 @@ index 0000000..bcb9d76 + __u32 setting; +}; + -+struct ifla_vf_guid { -+ __u32 vf; -+ __u64 guid; -+}; -+ +struct ifla_vf_link_state { + __u32 vf; + __u32 link_state; @@ -90257,7 +94015,8 @@ index 0000000..bcb9d76 + IFLA_XDP_DRV_PROG_ID = 5, + IFLA_XDP_SKB_PROG_ID = 6, + IFLA_XDP_HW_PROG_ID = 7, -+ __IFLA_XDP_MAX = 8, ++ IFLA_XDP_EXPECTED_FD = 8, ++ __IFLA_XDP_MAX = 9, +}; + +enum { @@ -90275,7 +94034,8 @@ index 0000000..bcb9d76 + IFLA_BRIDGE_MODE = 1, + IFLA_BRIDGE_VLAN_INFO = 2, + IFLA_BRIDGE_VLAN_TUNNEL_INFO = 3, -+ __IFLA_BRIDGE_MAX = 4, ++ IFLA_BRIDGE_MRP = 4, ++ __IFLA_BRIDGE_MAX = 5, +}; + +enum { @@ -90315,7 +94075,8 @@ index 0000000..bcb9d76 + RTA_IP_PROTO = 27, + RTA_SPORT = 28, + RTA_DPORT = 29, -+ __RTA_MAX = 30, ++ RTA_NH_ID = 30, ++ __RTA_MAX = 31, +}; + +struct rta_cacheinfo { @@ -90364,6 +94125,7 @@ index 0000000..bcb9d76 +enum { + IF_LINK_MODE_DEFAULT = 0, + IF_LINK_MODE_DORMANT = 1, ++ IF_LINK_MODE_TESTING = 2, +}; + +enum lw_bits { @@ -90375,8 +94137,64 @@ index 0000000..bcb9d76 + struct in6_addr *tun_src; +}; + ++enum { ++ BPF_F_RECOMPUTE_CSUM = 1, ++ BPF_F_INVALIDATE_HASH = 2, ++}; ++ ++enum { ++ BPF_F_HDR_FIELD_MASK = 15, ++}; ++ ++enum { ++ BPF_F_PSEUDO_HDR = 16, ++ BPF_F_MARK_MANGLED_0 = 32, ++ BPF_F_MARK_ENFORCE = 64, ++}; ++ ++enum { ++ BPF_F_INGRESS = 1, ++}; ++ ++enum { ++ BPF_F_TUNINFO_IPV6 = 1, ++}; ++ ++enum { ++ BPF_F_ZERO_CSUM_TX = 2, ++ BPF_F_DONT_FRAGMENT = 4, ++ BPF_F_SEQ_NUMBER = 8, ++}; ++ ++enum { ++ BPF_CSUM_LEVEL_QUERY = 0, ++ BPF_CSUM_LEVEL_INC = 1, ++ BPF_CSUM_LEVEL_DEC = 2, ++ BPF_CSUM_LEVEL_RESET = 3, ++}; ++ ++enum { ++ BPF_F_ADJ_ROOM_FIXED_GSO = 1, ++ BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 2, ++ BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 4, ++ BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 8, ++ BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 16, ++ BPF_F_ADJ_ROOM_NO_CSUM_RESET = 32, ++}; ++ ++enum { ++ BPF_ADJ_ROOM_ENCAP_L2_MASK = 255, ++ BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 56, ++}; ++ ++enum { ++ BPF_SK_LOOKUP_F_REPLACE = 1, ++ BPF_SK_LOOKUP_F_NO_REUSEPORT = 2, ++}; ++ +enum bpf_adj_room_mode { + BPF_ADJ_ROOM_NET = 0, ++ BPF_ADJ_ROOM_MAC = 1, +}; + +enum bpf_hdr_start_off { @@ -90384,6 +94202,12 @@ index 0000000..bcb9d76 + BPF_HDR_START_NET = 1, +}; + ++enum bpf_lwt_encap_mode { ++ BPF_LWT_ENCAP_SEG6 = 0, ++ BPF_LWT_ENCAP_SEG6_INLINE = 1, ++ BPF_LWT_ENCAP_IP = 2, ++}; ++ +struct bpf_tunnel_key { + __u32 tunnel_id; + union { @@ -90407,59 +94231,9 @@ index 0000000..bcb9d76 + }; +}; + -+struct bpf_sock { -+ __u32 bound_dev_if; -+ __u32 family; -+ __u32 type; -+ __u32 protocol; -+ __u32 mark; -+ __u32 priority; -+ __u32 src_ip4; -+ __u32 src_ip6[4]; -+ __u32 src_port; -+}; -+ -+struct sk_reuseport_md { -+ void *data; -+ void *data_end; -+ __u32 len; -+ __u32 eth_protocol; -+ __u32 ip_protocol; -+ __u32 bind_inany; -+ __u32 hash; -+}; -+ -+struct bpf_sock_addr { -+ __u32 user_family; -+ __u32 user_ip4; -+ __u32 user_ip6[4]; -+ __u32 user_port; -+ __u32 family; -+ __u32 type; -+ __u32 protocol; -+ __u32 msg_src_ip4; -+ __u32 msg_src_ip6[4]; -+}; -+ -+struct bpf_sock_ops { -+ __u32 op; -+ union { -+ __u32 args[4]; -+ __u32 reply; -+ __u32 replylong[4]; -+ }; -+ __u32 family; -+ __u32 remote_ip4; -+ __u32 local_ip4; -+ __u32 remote_ip6[4]; -+ __u32 local_ip6[4]; -+ __u32 remote_port; -+ __u32 local_port; -+ __u32 is_fullsock; ++struct bpf_tcp_sock { + __u32 snd_cwnd; + __u32 srtt_us; -+ __u32 bpf_sock_ops_cb_flags; -+ __u32 state; + __u32 rtt_min; + __u32 snd_ssthresh; + __u32 rcv_nxt; @@ -90478,9 +94252,82 @@ index 0000000..bcb9d76 + __u32 data_segs_out; + __u32 lost_out; + __u32 sacked_out; -+ __u32 sk_txhash; + __u64 bytes_received; + __u64 bytes_acked; ++ __u32 dsack_dups; ++ __u32 delivered; ++ __u32 delivered_ce; ++ __u32 icsk_retransmits; ++}; ++ ++struct bpf_sock_tuple { ++ union { ++ struct { ++ __be32 saddr; ++ __be32 daddr; ++ __be16 sport; ++ __be16 dport; ++ } ipv4; ++ struct { ++ __be32 saddr[4]; ++ __be32 daddr[4]; ++ __be16 sport; ++ __be16 dport; ++ } ipv6; ++ }; ++}; ++ ++struct bpf_xdp_sock { ++ __u32 queue_id; ++}; ++ ++enum { ++ BPF_SOCK_OPS_RTO_CB_FLAG = 1, ++ BPF_SOCK_OPS_RETRANS_CB_FLAG = 2, ++ BPF_SOCK_OPS_STATE_CB_FLAG = 4, ++ BPF_SOCK_OPS_RTT_CB_FLAG = 8, ++ BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG = 16, ++ BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG = 32, ++ BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG = 64, ++ BPF_SOCK_OPS_ALL_CB_FLAGS = 127, ++}; ++ ++enum { ++ BPF_SOCK_OPS_VOID = 0, ++ BPF_SOCK_OPS_TIMEOUT_INIT = 1, ++ BPF_SOCK_OPS_RWND_INIT = 2, ++ BPF_SOCK_OPS_TCP_CONNECT_CB = 3, ++ BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 4, ++ BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 5, ++ BPF_SOCK_OPS_NEEDS_ECN = 6, ++ BPF_SOCK_OPS_BASE_RTT = 7, ++ BPF_SOCK_OPS_RTO_CB = 8, ++ BPF_SOCK_OPS_RETRANS_CB = 9, ++ BPF_SOCK_OPS_STATE_CB = 10, ++ BPF_SOCK_OPS_TCP_LISTEN_CB = 11, ++ BPF_SOCK_OPS_RTT_CB = 12, ++ BPF_SOCK_OPS_PARSE_HDR_OPT_CB = 13, ++ BPF_SOCK_OPS_HDR_OPT_LEN_CB = 14, ++ BPF_SOCK_OPS_WRITE_HDR_OPT_CB = 15, ++}; ++ ++enum { ++ TCP_BPF_IW = 1001, ++ TCP_BPF_SNDCWND_CLAMP = 1002, ++ TCP_BPF_DELACK_MAX = 1003, ++ TCP_BPF_RTO_MIN = 1004, ++ TCP_BPF_SYN = 1005, ++ TCP_BPF_SYN_IP = 1006, ++ TCP_BPF_SYN_MAC = 1007, ++}; ++ ++enum { ++ BPF_LOAD_HDR_OPT_TCP_SYN = 1, ++}; ++ ++enum { ++ BPF_FIB_LOOKUP_DIRECT = 1, ++ BPF_FIB_LOOKUP_OUTPUT = 2, +}; + +enum { @@ -90521,6 +94368,14 @@ index 0000000..bcb9d76 + __u8 dmac[6]; +}; + ++struct bpf_redir_neigh { ++ __u32 nh_family; ++ union { ++ __be32 ipv4_nh; ++ __u32 ipv6_nh[4]; ++ }; ++}; ++ +enum rt_scope_t { + RT_SCOPE_UNIVERSE = 0, + RT_SCOPE_SITE = 200, @@ -90535,74 +94390,169 @@ index 0000000..bcb9d76 + RT_TABLE_DEFAULT = 253, + RT_TABLE_MAIN = 254, + RT_TABLE_LOCAL = 255, -+ RT_TABLE_MAX = -1, ++ RT_TABLE_MAX = 4294967295, +}; + -+struct bpf_skb_data_end { -+ struct qdisc_skb_cb qdisc_cb; -+ void *data_meta; -+ void *data_end; ++struct nl_info { ++ struct nlmsghdr *nlh; ++ struct net *nl_net; ++ u32 portid; ++ u8 skip_notify: 1; ++ u8 skip_notify_kernel: 1; +}; + +typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); + -+struct fib_nh_exception { -+ struct fib_nh_exception *fnhe_next; -+ int fnhe_genid; -+ __be32 fnhe_daddr; -+ u32 fnhe_pmtu; -+ bool fnhe_mtu_locked; -+ __be32 fnhe_gw; -+ long unsigned int fnhe_expires; -+ struct rtable *fnhe_rth_input; -+ struct rtable *fnhe_rth_output; -+ long unsigned int fnhe_stamp; -+ struct callback_head rcu; ++struct inet_timewait_sock { ++ struct sock_common __tw_common; ++ __u32 tw_mark; ++ volatile unsigned char tw_substate; ++ unsigned char tw_rcv_wscale; ++ __be16 tw_sport; ++ unsigned int tw_kill: 1; ++ unsigned int tw_transparent: 1; ++ unsigned int tw_flowlabel: 20; ++ unsigned int tw_pad: 2; ++ unsigned int tw_tos: 8; ++ u32 tw_txhash; ++ u32 tw_priority; ++ struct timer_list tw_timer; ++ struct inet_bind_bucket *tw_tb; +}; + -+struct fnhe_hash_bucket { -+ struct fib_nh_exception *chain; ++struct tcp_timewait_sock { ++ struct inet_timewait_sock tw_sk; ++ u32 tw_rcv_wnd; ++ u32 tw_ts_offset; ++ u32 tw_ts_recent; ++ u32 tw_last_oow_ack_time; ++ int tw_ts_recent_stamp; ++ u32 tw_tx_delay; ++ struct tcp_md5sig_key *tw_md5_key; +}; + -+struct fib_info; -+ -+struct fib_nh { -+ struct net_device *nh_dev; -+ struct hlist_node nh_hash; -+ struct fib_info *nh_parent; -+ unsigned int nh_flags; -+ unsigned char nh_scope; -+ int nh_weight; -+ atomic_t nh_upper_bound; -+ __u32 nh_tclassid; -+ int nh_oif; -+ __be32 nh_gw; -+ __be32 nh_saddr; -+ int nh_saddr_genid; -+ struct rtable **nh_pcpu_rth_output; -+ struct rtable *nh_rth_input; -+ struct fnhe_hash_bucket *nh_exceptions; -+ struct lwtunnel_state *nh_lwtstate; ++struct udp_sock { ++ struct inet_sock inet; ++ int pending; ++ unsigned int corkflag; ++ __u8 encap_type; ++ unsigned char no_check6_tx: 1; ++ unsigned char no_check6_rx: 1; ++ unsigned char encap_enabled: 1; ++ unsigned char gro_enabled: 1; ++ unsigned char accept_udp_l4: 1; ++ unsigned char accept_udp_fraglist: 1; ++ __u16 len; ++ __u16 gso_size; ++ __u16 pcslen; ++ __u16 pcrlen; ++ __u8 pcflag; ++ __u8 unused[3]; ++ int (*encap_rcv)(struct sock *, struct sk_buff *); ++ int (*encap_err_lookup)(struct sock *, struct sk_buff *); ++ void (*encap_destroy)(struct sock *); ++ struct sk_buff * (*gro_receive)(struct sock *, struct list_head *, struct sk_buff *); ++ int (*gro_complete)(struct sock *, struct sk_buff *, int); ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct sk_buff_head reader_queue; ++ int forward_deficit; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; +}; + -+struct fib_info { -+ struct hlist_node fib_hash; -+ struct hlist_node fib_lhash; -+ struct net *fib_net; -+ int fib_treeref; -+ refcount_t fib_clntref; -+ unsigned int fib_flags; -+ unsigned char fib_dead; -+ unsigned char fib_protocol; -+ unsigned char fib_scope; -+ unsigned char fib_type; -+ __be32 fib_prefsrc; -+ u32 fib_tb_id; -+ u32 fib_priority; -+ struct dst_metrics *fib_metrics; -+ int fib_nhs; -+ struct callback_head rcu; -+ struct fib_nh fib_nh[0]; ++struct udp6_sock { ++ struct udp_sock udp; ++ struct ipv6_pinfo inet6; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct tcp6_sock { ++ struct tcp_sock tcp; ++ struct ipv6_pinfo inet6; ++}; ++ ++struct fib6_result; ++ ++struct fib6_config; ++ ++struct ipv6_stub { ++ int (*ipv6_sock_mc_join)(struct sock *, int, const struct in6_addr *); ++ int (*ipv6_sock_mc_drop)(struct sock *, int, const struct in6_addr *); ++ struct dst_entry * (*ipv6_dst_lookup_flow)(struct net *, const struct sock *, struct flowi6 *, const struct in6_addr *); ++ int (*ipv6_route_input)(struct sk_buff *); ++ struct fib6_table * (*fib6_get_table)(struct net *, u32); ++ int (*fib6_lookup)(struct net *, int, struct flowi6 *, struct fib6_result *, int); ++ int (*fib6_table_lookup)(struct net *, struct fib6_table *, int, struct flowi6 *, struct fib6_result *, int); ++ void (*fib6_select_path)(const struct net *, struct fib6_result *, struct flowi6 *, int, bool, const struct sk_buff *, int); ++ u32 (*ip6_mtu_from_fib6)(const struct fib6_result *, const struct in6_addr *, const struct in6_addr *); ++ int (*fib6_nh_init)(struct net *, struct fib6_nh *, struct fib6_config *, gfp_t, struct netlink_ext_ack *); ++ void (*fib6_nh_release)(struct fib6_nh *); ++ void (*fib6_nh_release_dsts)(struct fib6_nh *); ++ void (*fib6_update_sernum)(struct net *, struct fib6_info *); ++ int (*ip6_del_rt)(struct net *, struct fib6_info *, bool); ++ void (*fib6_rt_update)(struct net *, struct fib6_info *, struct nl_info *); ++ void (*udpv6_encap_enable)(); ++ void (*ndisc_send_na)(struct net_device *, const struct in6_addr *, const struct in6_addr *, bool, bool, bool, bool); ++ void (*xfrm6_local_rxpmtu)(struct sk_buff *, u32); ++ int (*xfrm6_udp_encap_rcv)(struct sock *, struct sk_buff *); ++ int (*xfrm6_rcv_encap)(struct sk_buff *, int, __be32, int); ++ struct neigh_table *nd_tbl; ++ int (*ipv6_fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); ++}; ++ ++struct fib6_result { ++ struct fib6_nh *nh; ++ struct fib6_info *f6i; ++ u32 fib6_flags; ++ u8 fib6_type; ++ struct rt6_info *rt6; ++}; ++ ++struct fib6_config { ++ u32 fc_table; ++ u32 fc_metric; ++ int fc_dst_len; ++ int fc_src_len; ++ int fc_ifindex; ++ u32 fc_flags; ++ u32 fc_protocol; ++ u16 fc_type; ++ u16 fc_delete_all_nh: 1; ++ u16 fc_ignore_dev_down: 1; ++ u16 __unused: 14; ++ u32 fc_nh_id; ++ struct in6_addr fc_dst; ++ struct in6_addr fc_src; ++ struct in6_addr fc_prefsrc; ++ struct in6_addr fc_gateway; ++ long unsigned int fc_expires; ++ struct nlattr *fc_mx; ++ int fc_mx_len; ++ int fc_mp_len; ++ struct nlattr *fc_mp; ++ struct nl_info fc_nlinfo; ++ struct nlattr *fc_encap; ++ u16 fc_encap_type; ++ bool fc_is_fdb; ++ u64 kabi_reserved1; ++}; ++ ++struct ipv6_bpf_stub { ++ int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); ++ struct sock * (*udp6_lib_lookup)(struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); +}; + +struct fib_result { @@ -90612,32 +94562,291 @@ index 0000000..bcb9d76 + unsigned char type; + unsigned char scope; + u32 tclassid; ++ struct fib_nh_common *nhc; + struct fib_info *fi; + struct fib_table *table; + struct hlist_head *fa_head; +}; + -+struct _bpf_dtab_netdev { ++enum { ++ INET_ECN_NOT_ECT = 0, ++ INET_ECN_ECT_1 = 1, ++ INET_ECN_ECT_0 = 2, ++ INET_ECN_CE = 3, ++ INET_ECN_MASK = 3, ++}; ++ ++struct tcp_skb_cb { ++ __u32 seq; ++ __u32 end_seq; ++ union { ++ __u32 tcp_tw_isn; ++ struct { ++ u16 tcp_gso_segs; ++ u16 tcp_gso_size; ++ }; ++ }; ++ __u8 tcp_flags; ++ __u8 sacked; ++ __u8 ip_dsfield; ++ __u8 txstamp_ack: 1; ++ __u8 eor: 1; ++ __u8 has_rxtstamp: 1; ++ __u8 unused: 5; ++ __u32 ack_seq; ++ union { ++ struct { ++ __u32 in_flight: 30; ++ __u32 is_app_limited: 1; ++ __u32 unused: 1; ++ __u32 delivered; ++ u64 first_tx_mstamp; ++ u64 delivered_mstamp; ++ } tx; ++ union { ++ struct inet_skb_parm h4; ++ struct inet6_skb_parm h6; ++ } header; ++ struct { ++ __u32 flags; ++ struct sock *sk_redir; ++ void *data_end; ++ } bpf; ++ }; ++}; ++ ++struct strp_stats { ++ long long unsigned int msgs; ++ long long unsigned int bytes; ++ unsigned int mem_fail; ++ unsigned int need_more_hdr; ++ unsigned int msg_too_big; ++ unsigned int msg_timeouts; ++ unsigned int bad_hdr_len; ++}; ++ ++struct strparser; ++ ++struct strp_callbacks { ++ int (*parse_msg)(struct strparser *, struct sk_buff *); ++ void (*rcv_msg)(struct strparser *, struct sk_buff *); ++ int (*read_sock_done)(struct strparser *, int); ++ void (*abort_parser)(struct strparser *, int); ++ void (*lock)(struct strparser *); ++ void (*unlock)(struct strparser *); ++}; ++ ++struct strparser { ++ struct sock *sk; ++ u32 stopped: 1; ++ u32 paused: 1; ++ u32 aborted: 1; ++ u32 interrupted: 1; ++ u32 unrecov_intr: 1; ++ struct sk_buff **skb_nextp; ++ struct sk_buff *skb_head; ++ unsigned int need_bytes; ++ struct delayed_work msg_timer_work; ++ struct work_struct work; ++ struct strp_stats stats; ++ struct strp_callbacks cb; ++}; ++ ++struct strp_msg { ++ int full_len; ++ int offset; ++}; ++ ++struct _strp_msg { ++ struct strp_msg strp; ++ int accum_len; ++}; ++ ++struct sk_skb_cb { ++ unsigned char data[20]; ++ struct _strp_msg strp; ++}; ++ ++struct xdp_umem { ++ void *addrs; ++ u64 size; ++ u32 headroom; ++ u32 chunk_size; ++ u32 chunks; ++ u32 npgs; ++ struct user_struct *user; ++ refcount_t users; ++ u8 flags; ++ bool zc; ++ struct page **pgs; ++ int id; ++ struct list_head xsk_dma_list; ++ struct work_struct work; ++}; ++ ++struct xdp_sock; ++ ++struct xsk_map { ++ struct bpf_map map; ++ spinlock_t lock; ++ struct xdp_sock *xsk_map[0]; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct xsk_queue; ++ ++struct xdp_sock { ++ struct sock sk; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct xsk_queue *rx; + struct net_device *dev; ++ struct xdp_umem *umem; ++ struct list_head flush_node; ++ struct xsk_buff_pool *pool; ++ u16 queue_id; ++ bool zc; ++ enum { ++ XSK_READY = 0, ++ XSK_BOUND = 1, ++ XSK_UNBOUND = 2, ++ } state; ++ long: 64; ++ struct xsk_queue *tx; ++ struct list_head tx_list; ++ spinlock_t rx_lock; ++ u64 rx_dropped; ++ u64 rx_queue_full; ++ struct list_head map_list; ++ spinlock_t map_list_lock; ++ struct mutex mutex; ++ struct xsk_queue *fq_tmp; ++ struct xsk_queue *cq_tmp; ++ long: 64; +}; + -+struct ipv6_sr_hdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __u8 type; -+ __u8 segments_left; -+ __u8 first_segment; -+ __u8 flags; -+ __u16 tag; -+ struct in6_addr segments[0]; ++struct tls_crypto_info { ++ __u16 version; ++ __u16 cipher_type; +}; + -+struct seg6_bpf_srh_state { -+ struct ipv6_sr_hdr *srh; -+ u16 hdrlen; -+ bool valid; ++struct tls12_crypto_info_aes_gcm_128 { ++ struct tls_crypto_info info; ++ unsigned char iv[8]; ++ unsigned char key[16]; ++ unsigned char salt[4]; ++ unsigned char rec_seq[8]; +}; + ++struct tls12_crypto_info_aes_gcm_256 { ++ struct tls_crypto_info info; ++ unsigned char iv[8]; ++ unsigned char key[32]; ++ unsigned char salt[4]; ++ unsigned char rec_seq[8]; ++}; ++ ++struct tls_sw_context_rx { ++ struct crypto_aead *aead_recv; ++ struct crypto_wait async_wait; ++ struct strparser strp; ++ struct sk_buff_head rx_list; ++ void (*saved_data_ready)(struct sock *); ++ struct sk_buff *recv_pkt; ++ u8 control; ++ u8 async_capable: 1; ++ u8 decrypted: 1; ++ atomic_t decrypt_pending; ++ spinlock_t decrypt_compl_lock; ++ bool async_notify; ++}; ++ ++struct cipher_context { ++ char *iv; ++ char *rec_seq; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++union tls_crypto_context { ++ struct tls_crypto_info info; ++ union { ++ struct tls12_crypto_info_aes_gcm_128 aes_gcm_128; ++ struct tls12_crypto_info_aes_gcm_256 aes_gcm_256; ++ }; ++}; ++ ++struct tls_prot_info { ++ u16 version; ++ u16 cipher_type; ++ u16 prepend_size; ++ u16 tag_size; ++ u16 overhead_size; ++ u16 iv_size; ++ u16 salt_size; ++ u16 rec_seq_size; ++ u16 aad_size; ++ u16 tail_size; ++}; ++ ++struct tls_context { ++ struct tls_prot_info prot_info; ++ u8 tx_conf: 3; ++ u8 rx_conf: 3; ++ int (*push_pending_record)(struct sock *, int); ++ void (*sk_write_space)(struct sock *); ++ void *priv_ctx_tx; ++ void *priv_ctx_rx; ++ struct net_device *netdev; ++ struct cipher_context tx; ++ struct cipher_context rx; ++ struct scatterlist *partially_sent_record; ++ u16 partially_sent_offset; ++ bool in_tcp_sendpages; ++ bool pending_open_record_frags; ++ struct mutex tx_lock; ++ long unsigned int flags; ++ struct proto *sk_proto; ++ struct sock *sk; ++ void (*sk_destruct)(struct sock *); ++ union tls_crypto_context crypto_send; ++ union tls_crypto_context crypto_recv; ++ struct list_head list; ++ refcount_t refcount; ++ struct callback_head rcu; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++typedef u64 (*btf_bpf_skb_get_pay_offset)(struct sk_buff *); ++ ++typedef u64 (*btf_bpf_skb_get_nlattr)(struct sk_buff *, u32, u32); ++ ++typedef u64 (*btf_bpf_skb_get_nlattr_nest)(struct sk_buff *, u32, u32); ++ ++typedef u64 (*btf_bpf_skb_load_helper_8)(const struct sk_buff *, const void *, int, int); ++ ++typedef u64 (*btf_bpf_skb_load_helper_8_no_cache)(const struct sk_buff *, int); ++ ++typedef u64 (*btf_bpf_skb_load_helper_16)(const struct sk_buff *, const void *, int, int); ++ ++typedef u64 (*btf_bpf_skb_load_helper_16_no_cache)(const struct sk_buff *, int); ++ ++typedef u64 (*btf_bpf_skb_load_helper_32)(const struct sk_buff *, const void *, int, int); ++ ++typedef u64 (*btf_bpf_skb_load_helper_32_no_cache)(const struct sk_buff *, int); ++ +struct bpf_scratchpad { + union { + __be32 diff[128]; @@ -90645,19 +94854,227 @@ index 0000000..bcb9d76 + }; +}; + -+struct sk_reuseport_kern { -+ struct sk_buff *skb; -+ struct sock *sk; -+ struct sock *selected_sk; -+ void *data_end; -+ u32 hash; -+ u32 reuseport_id; -+ bool bind_inany; ++typedef u64 (*btf_bpf_skb_store_bytes)(struct sk_buff *, u32, const void *, u32, u64); ++ ++typedef u64 (*btf_bpf_skb_load_bytes)(const struct sk_buff *, u32, void *, u32); ++ ++typedef u64 (*btf_bpf_flow_dissector_load_bytes)(const struct bpf_flow_dissector *, u32, void *, u32); ++ ++typedef u64 (*btf_bpf_skb_load_bytes_relative)(const struct sk_buff *, u32, void *, u32, u32); ++ ++typedef u64 (*btf_bpf_skb_pull_data)(struct sk_buff *, u32); ++ ++typedef u64 (*btf_bpf_sk_fullsock)(struct sock *); ++ ++typedef u64 (*btf_sk_skb_pull_data)(struct sk_buff *, u32); ++ ++typedef u64 (*btf_bpf_l3_csum_replace)(struct sk_buff *, u32, u64, u64, u64); ++ ++typedef u64 (*btf_bpf_l4_csum_replace)(struct sk_buff *, u32, u64, u64, u64); ++ ++typedef u64 (*btf_bpf_csum_diff)(__be32 *, u32, __be32 *, u32, __wsum); ++ ++typedef u64 (*btf_bpf_csum_update)(struct sk_buff *, __wsum); ++ ++typedef u64 (*btf_bpf_csum_level)(struct sk_buff *, u64); ++ ++enum { ++ BPF_F_NEIGH = 2, ++ BPF_F_PEER = 4, ++ BPF_F_NEXTHOP = 8, +}; + -+struct bpf_dtab_netdev___2; ++typedef u64 (*btf_bpf_clone_redirect)(struct sk_buff *, u32, u64); + -+struct bpf_cpu_map_entry___2; ++typedef u64 (*btf_bpf_redirect)(u32, u64); ++ ++typedef u64 (*btf_bpf_redirect_peer)(u32, u64); ++ ++typedef u64 (*btf_bpf_redirect_neigh)(u32, struct bpf_redir_neigh *, int, u64); ++ ++typedef u64 (*btf_bpf_msg_apply_bytes)(struct sk_msg *, u32); ++ ++typedef u64 (*btf_bpf_msg_cork_bytes)(struct sk_msg *, u32); ++ ++typedef u64 (*btf_bpf_msg_pull_data)(struct sk_msg *, u32, u32, u64); ++ ++typedef u64 (*btf_bpf_msg_push_data)(struct sk_msg *, u32, u32, u64); ++ ++typedef u64 (*btf_bpf_msg_pop_data)(struct sk_msg *, u32, u32, u64); ++ ++typedef u64 (*btf_bpf_get_cgroup_classid_curr)(); ++ ++typedef u64 (*btf_bpf_skb_cgroup_classid)(const struct sk_buff *); ++ ++typedef u64 (*btf_bpf_get_cgroup_classid)(const struct sk_buff *); ++ ++typedef u64 (*btf_bpf_get_route_realm)(const struct sk_buff *); ++ ++typedef u64 (*btf_bpf_get_hash_recalc)(struct sk_buff *); ++ ++typedef u64 (*btf_bpf_set_hash_invalid)(struct sk_buff *); ++ ++typedef u64 (*btf_bpf_set_hash)(struct sk_buff *, u32); ++ ++typedef u64 (*btf_bpf_skb_vlan_push)(struct sk_buff *, __be16, u16); ++ ++typedef u64 (*btf_bpf_skb_vlan_pop)(struct sk_buff *); ++ ++typedef u64 (*btf_bpf_skb_change_proto)(struct sk_buff *, __be16, u64); ++ ++typedef u64 (*btf_bpf_skb_change_type)(struct sk_buff *, u32); ++ ++typedef u64 (*btf_sk_skb_adjust_room)(struct sk_buff *, s32, u32, u64); ++ ++typedef u64 (*btf_bpf_skb_adjust_room)(struct sk_buff *, s32, u32, u64); ++ ++typedef u64 (*btf_bpf_skb_change_tail)(struct sk_buff *, u32, u64); ++ ++typedef u64 (*btf_sk_skb_change_tail)(struct sk_buff *, u32, u64); ++ ++typedef u64 (*btf_bpf_skb_change_head)(struct sk_buff *, u32, u64); ++ ++typedef u64 (*btf_sk_skb_change_head)(struct sk_buff *, u32, u64); ++ ++typedef u64 (*btf_bpf_xdp_adjust_head)(struct xdp_buff *, int); ++ ++typedef u64 (*btf_bpf_xdp_adjust_tail)(struct xdp_buff *, int); ++ ++typedef u64 (*btf_bpf_xdp_adjust_meta)(struct xdp_buff *, int); ++ ++typedef u64 (*btf_bpf_xdp_redirect)(u32, u64); ++ ++typedef u64 (*btf_bpf_xdp_redirect_map)(struct bpf_map *, u32, u64); ++ ++typedef u64 (*btf_bpf_skb_event_output)(struct sk_buff *, struct bpf_map *, u64, void *, u64); ++ ++typedef u64 (*btf_bpf_skb_get_tunnel_key)(struct sk_buff *, struct bpf_tunnel_key *, u32, u64); ++ ++typedef u64 (*btf_bpf_skb_get_tunnel_opt)(struct sk_buff *, u8 *, u32); ++ ++typedef u64 (*btf_bpf_skb_set_tunnel_key)(struct sk_buff *, const struct bpf_tunnel_key *, u32, u64); ++ ++typedef u64 (*btf_bpf_skb_set_tunnel_opt)(struct sk_buff *, const u8 *, u32); ++ ++typedef u64 (*btf_bpf_skb_under_cgroup)(struct sk_buff *, struct bpf_map *, u32); ++ ++typedef u64 (*btf_bpf_skb_cgroup_id)(const struct sk_buff *); ++ ++typedef u64 (*btf_bpf_skb_ancestor_cgroup_id)(const struct sk_buff *, int); ++ ++typedef u64 (*btf_bpf_sk_cgroup_id)(struct sock *); ++ ++typedef u64 (*btf_bpf_sk_ancestor_cgroup_id)(struct sock *, int); ++ ++typedef u64 (*btf_bpf_xdp_event_output)(struct xdp_buff *, struct bpf_map *, u64, void *, u64); ++ ++typedef u64 (*btf_bpf_get_socket_cookie)(struct sk_buff *); ++ ++typedef u64 (*btf_bpf_get_socket_cookie_sock_addr)(struct bpf_sock_addr_kern *); ++ ++typedef u64 (*btf_bpf_get_socket_cookie_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_get_socket_cookie_sock_ops)(struct bpf_sock_ops_kern *); ++ ++typedef u64 (*btf_bpf_get_netns_cookie_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_get_netns_cookie_sock_addr)(struct bpf_sock_addr_kern *); ++ ++typedef u64 (*btf_bpf_get_socket_uid)(struct sk_buff *); ++ ++typedef u64 (*btf_bpf_sock_addr_setsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); ++ ++typedef u64 (*btf_bpf_get_sockops_uid_gid)(struct bpf_sock_ops_kern *); ++ ++typedef int (*bpf_getorigdst_opt_func)(struct sock *, int, void *, int *, int); ++ ++typedef u64 (*btf_bpf_sk_original_addr)(struct bpf_sock_ops_kern *, int, char *, int); ++ ++typedef u64 (*btf_bpf_sock_addr_getsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); ++ ++typedef u64 (*btf_bpf_sock_ops_setsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); ++ ++typedef u64 (*btf_bpf_sock_ops_getsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); ++ ++typedef u64 (*btf_bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops_kern *, int); ++ ++typedef u64 (*btf_bpf_bind)(struct bpf_sock_addr_kern *, struct sockaddr *, int); ++ ++typedef u64 (*btf_bpf_skb_get_xfrm_state)(struct sk_buff *, u32, struct bpf_xfrm_state *, u32, u64); ++ ++typedef u64 (*btf_bpf_xdp_fib_lookup)(struct xdp_buff *, struct bpf_fib_lookup *, int, u32); ++ ++typedef u64 (*btf_bpf_skb_fib_lookup)(struct sk_buff *, struct bpf_fib_lookup *, int, u32); ++ ++typedef u64 (*btf_bpf_lwt_in_push_encap)(struct sk_buff *, u32, void *, u32); ++ ++typedef u64 (*btf_bpf_lwt_xmit_push_encap)(struct sk_buff *, u32, void *, u32); ++ ++typedef u64 (*btf_bpf_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); ++ ++typedef u64 (*btf_bpf_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); ++ ++typedef u64 (*btf_bpf_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); ++ ++typedef u64 (*btf_bpf_sk_release)(struct sock *); ++ ++typedef u64 (*btf_bpf_xdp_sk_lookup_udp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); ++ ++typedef u64 (*btf_bpf_xdp_skc_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); ++ ++typedef u64 (*btf_bpf_xdp_sk_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); ++ ++typedef u64 (*btf_bpf_sock_addr_skc_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); ++ ++typedef u64 (*btf_bpf_sock_addr_sk_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); ++ ++typedef u64 (*btf_bpf_sock_addr_sk_lookup_udp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); ++ ++typedef u64 (*btf_bpf_tcp_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_get_listener_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_skb_ecn_set_ce)(struct sk_buff *); ++ ++typedef u64 (*btf_bpf_tcp_check_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); ++ ++typedef u64 (*btf_bpf_tcp_gen_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); ++ ++typedef u64 (*btf_bpf_sk_assign)(struct sk_buff *, struct sock *, u64); ++ ++typedef u64 (*btf_bpf_sock_ops_load_hdr_opt)(struct bpf_sock_ops_kern *, void *, u32, u64); ++ ++typedef u64 (*btf_bpf_sock_ops_store_hdr_opt)(struct bpf_sock_ops_kern *, const void *, u32, u64); ++ ++typedef u64 (*btf_bpf_sock_ops_reserve_hdr_opt)(struct bpf_sock_ops_kern *, u32, u64); ++ ++typedef u64 (*btf_sk_select_reuseport)(struct sk_reuseport_kern *, struct bpf_map *, void *, u32); ++ ++typedef u64 (*btf_sk_reuseport_load_bytes)(const struct sk_reuseport_kern *, u32, void *, u32); ++ ++typedef u64 (*btf_sk_reuseport_load_bytes_relative)(const struct sk_reuseport_kern *, u32, void *, u32, u32); ++ ++typedef u64 (*btf_bpf_sk_lookup_assign)(struct bpf_sk_lookup_kern *, struct sock *, u64); ++ ++typedef u64 (*btf_bpf_skc_to_tcp6_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_skc_to_tcp_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_skc_to_tcp_timewait_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_skc_to_tcp_request_sock)(struct sock *); ++ ++typedef u64 (*btf_bpf_skc_to_udp6_sock)(struct sock *); ++ ++struct bpf_dtab_netdev; ++ ++enum { ++ INET_DIAG_REQ_NONE = 0, ++ INET_DIAG_REQ_BYTECODE = 1, ++ INET_DIAG_REQ_SK_BPF_STORAGES = 2, ++ INET_DIAG_REQ_PROTOCOL = 3, ++ __INET_DIAG_REQ_MAX = 4, ++}; + +struct sock_diag_req { + __u8 sdiag_family; @@ -90688,6 +95105,8 @@ index 0000000..bcb9d76 + HWTSTAMP_TX_OFF = 0, + HWTSTAMP_TX_ON = 1, + HWTSTAMP_TX_ONESTEP_SYNC = 2, ++ HWTSTAMP_TX_ONESTEP_P2P = 3, ++ __HWTSTAMP_TX_CNT = 4, +}; + +enum hwtstamp_rx_filters { @@ -90707,19 +95126,20 @@ index 0000000..bcb9d76 + HWTSTAMP_FILTER_PTP_V2_SYNC = 13, + HWTSTAMP_FILTER_PTP_V2_DELAY_REQ = 14, + HWTSTAMP_FILTER_NTP_ALL = 15, ++ __HWTSTAMP_FILTER_CNT = 16, +}; + +struct tso_t { + int next_frag_idx; ++ int size; + void *data; -+ size_t size; + u16 ip_id; ++ u8 tlen; + bool ipv6; + u32 tcp_seq; +}; + +struct fib_notifier_info { -+ struct net *net; + int family; + struct netlink_ext_ack *extack; +}; @@ -90737,8 +95157,9 @@ index 0000000..bcb9d76 + FIB_EVENT_VIF_DEL = 9, +}; + -+struct zero_copy_allocator { -+ void (*free)(struct zero_copy_allocator *, long unsigned int); ++struct fib_notifier_net { ++ struct list_head fib_notifier_ops; ++ struct atomic_notifier_head fib_chain; +}; + +struct xdp_attachment_info { @@ -90746,47 +95167,368 @@ index 0000000..bcb9d76 + u32 flags; +}; + -+struct pp_alloc_cache { -+ u32 count; -+ void *cache[128]; -+}; ++struct xdp_buff_xsk; + -+struct page_pool_params { -+ unsigned int flags; -+ unsigned int order; -+ unsigned int pool_size; -+ int nid; ++struct xsk_buff_pool { + struct device *dev; -+ enum dma_data_direction dma_dir; ++ struct net_device *netdev; ++ struct list_head xsk_tx_list; ++ spinlock_t xsk_tx_list_lock; ++ refcount_t users; ++ struct xdp_umem *umem; ++ struct work_struct work; ++ struct list_head free_list; ++ u32 heads_cnt; ++ u16 queue_id; ++ long: 16; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ struct xsk_queue *fq; ++ struct xsk_queue *cq; ++ dma_addr_t *dma_pages; ++ struct xdp_buff_xsk *heads; ++ u64 chunk_mask; ++ u64 addrs_cnt; ++ u32 free_list_cnt; ++ u32 dma_pages_cnt; ++ u32 free_heads_cnt; ++ u32 headroom; ++ u32 chunk_size; ++ u32 frame_len; ++ u8 cached_need_wakeup; ++ bool uses_need_wakeup; ++ bool dma_need_sync; ++ bool unaligned; ++ void *addrs; ++ spinlock_t cq_lock; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ struct xdp_buff_xsk *free_heads[0]; ++ long: 64; ++ long: 64; +}; + -+struct page_pool { -+ struct callback_head rcu; -+ struct page_pool_params p; -+ long: 64; -+ long: 64; -+ struct pp_alloc_cache alloc; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct ptr_ring ring; ++struct xdp_buff_xsk { ++ struct xdp_buff xdp; ++ dma_addr_t dma; ++ dma_addr_t frame_dma; ++ struct xsk_buff_pool *pool; ++ bool unaligned; ++ u64 orig_addr; ++ struct list_head free_list_node; +}; + -+struct xdp_mem_allocator { -+ struct xdp_mem_info mem; ++struct flow_match { ++ struct flow_dissector *dissector; ++ void *mask; ++ void *key; ++}; ++ ++struct flow_match_meta { ++ struct flow_dissector_key_meta *key; ++ struct flow_dissector_key_meta *mask; ++}; ++ ++struct flow_match_basic { ++ struct flow_dissector_key_basic *key; ++ struct flow_dissector_key_basic *mask; ++}; ++ ++struct flow_match_control { ++ struct flow_dissector_key_control *key; ++ struct flow_dissector_key_control *mask; ++}; ++ ++struct flow_match_eth_addrs { ++ struct flow_dissector_key_eth_addrs *key; ++ struct flow_dissector_key_eth_addrs *mask; ++}; ++ ++struct flow_match_vlan { ++ struct flow_dissector_key_vlan *key; ++ struct flow_dissector_key_vlan *mask; ++}; ++ ++struct flow_match_ipv4_addrs { ++ struct flow_dissector_key_ipv4_addrs *key; ++ struct flow_dissector_key_ipv4_addrs *mask; ++}; ++ ++struct flow_match_ipv6_addrs { ++ struct flow_dissector_key_ipv6_addrs *key; ++ struct flow_dissector_key_ipv6_addrs *mask; ++}; ++ ++struct flow_match_ip { ++ struct flow_dissector_key_ip *key; ++ struct flow_dissector_key_ip *mask; ++}; ++ ++struct flow_match_ports { ++ struct flow_dissector_key_ports *key; ++ struct flow_dissector_key_ports *mask; ++}; ++ ++struct flow_match_icmp { ++ struct flow_dissector_key_icmp *key; ++ struct flow_dissector_key_icmp *mask; ++}; ++ ++struct flow_match_tcp { ++ struct flow_dissector_key_tcp *key; ++ struct flow_dissector_key_tcp *mask; ++}; ++ ++struct flow_match_mpls { ++ struct flow_dissector_key_mpls *key; ++ struct flow_dissector_key_mpls *mask; ++}; ++ ++struct flow_match_enc_keyid { ++ struct flow_dissector_key_keyid *key; ++ struct flow_dissector_key_keyid *mask; ++}; ++ ++struct flow_match_enc_opts { ++ struct flow_dissector_key_enc_opts *key; ++ struct flow_dissector_key_enc_opts *mask; ++}; ++ ++struct flow_match_ct { ++ struct flow_dissector_key_ct *key; ++ struct flow_dissector_key_ct *mask; ++}; ++ ++enum flow_action_id { ++ FLOW_ACTION_ACCEPT = 0, ++ FLOW_ACTION_DROP = 1, ++ FLOW_ACTION_TRAP = 2, ++ FLOW_ACTION_GOTO = 3, ++ FLOW_ACTION_REDIRECT = 4, ++ FLOW_ACTION_MIRRED = 5, ++ FLOW_ACTION_REDIRECT_INGRESS = 6, ++ FLOW_ACTION_MIRRED_INGRESS = 7, ++ FLOW_ACTION_VLAN_PUSH = 8, ++ FLOW_ACTION_VLAN_POP = 9, ++ FLOW_ACTION_VLAN_MANGLE = 10, ++ FLOW_ACTION_TUNNEL_ENCAP = 11, ++ FLOW_ACTION_TUNNEL_DECAP = 12, ++ FLOW_ACTION_MANGLE = 13, ++ FLOW_ACTION_ADD = 14, ++ FLOW_ACTION_CSUM = 15, ++ FLOW_ACTION_MARK = 16, ++ FLOW_ACTION_PTYPE = 17, ++ FLOW_ACTION_PRIORITY = 18, ++ FLOW_ACTION_WAKE = 19, ++ FLOW_ACTION_QUEUE = 20, ++ FLOW_ACTION_SAMPLE = 21, ++ FLOW_ACTION_POLICE = 22, ++ FLOW_ACTION_CT = 23, ++ FLOW_ACTION_CT_METADATA = 24, ++ FLOW_ACTION_MPLS_PUSH = 25, ++ FLOW_ACTION_MPLS_POP = 26, ++ FLOW_ACTION_MPLS_MANGLE = 27, ++ FLOW_ACTION_GATE = 28, ++ NUM_FLOW_ACTIONS = 29, ++}; ++ ++enum flow_action_mangle_base { ++ FLOW_ACT_MANGLE_UNSPEC = 0, ++ FLOW_ACT_MANGLE_HDR_TYPE_ETH = 1, ++ FLOW_ACT_MANGLE_HDR_TYPE_IP4 = 2, ++ FLOW_ACT_MANGLE_HDR_TYPE_IP6 = 3, ++ FLOW_ACT_MANGLE_HDR_TYPE_TCP = 4, ++ FLOW_ACT_MANGLE_HDR_TYPE_UDP = 5, ++}; ++ ++enum flow_action_hw_stats { ++ FLOW_ACTION_HW_STATS_IMMEDIATE = 1, ++ FLOW_ACTION_HW_STATS_DELAYED = 2, ++ FLOW_ACTION_HW_STATS_ANY = 3, ++ FLOW_ACTION_HW_STATS_DISABLED = 4, ++ FLOW_ACTION_HW_STATS_DONT_CARE = 7, ++}; ++ ++typedef void (*action_destr)(void *); ++ ++struct flow_action_cookie { ++ u32 cookie_len; ++ u8 cookie[0]; ++}; ++ ++struct nf_flowtable; ++ ++struct psample_group; ++ ++struct action_gate_entry; ++ ++struct flow_action_entry { ++ enum flow_action_id id; ++ enum flow_action_hw_stats hw_stats; ++ action_destr destructor; ++ void *destructor_priv; + union { -+ void *allocator; -+ struct page_pool *page_pool; -+ struct zero_copy_allocator *zc_alloc; ++ u32 chain_index; ++ struct net_device *dev; ++ struct { ++ u16 vid; ++ __be16 proto; ++ u8 prio; ++ } vlan; ++ struct { ++ enum flow_action_mangle_base htype; ++ u32 offset; ++ u32 mask; ++ u32 val; ++ } mangle; ++ struct ip_tunnel_info *tunnel; ++ u32 csum_flags; ++ u32 mark; ++ u16 ptype; ++ u32 priority; ++ struct { ++ u32 ctx; ++ u32 index; ++ u8 vf; ++ } queue; ++ struct { ++ struct psample_group *psample_group; ++ u32 rate; ++ u32 trunc_size; ++ bool truncate; ++ } sample; ++ struct { ++ u32 index; ++ u32 burst; ++ u64 rate_bytes_ps; ++ u32 mtu; ++ } police; ++ struct { ++ int action; ++ u16 zone; ++ struct nf_flowtable *flow_table; ++ } ct; ++ struct { ++ long unsigned int cookie; ++ u32 mark; ++ u32 labels[4]; ++ } ct_metadata; ++ struct { ++ u32 label; ++ __be16 proto; ++ u8 tc; ++ u8 bos; ++ u8 ttl; ++ } mpls_push; ++ struct { ++ __be16 proto; ++ } mpls_pop; ++ struct { ++ u32 label; ++ u8 tc; ++ u8 bos; ++ u8 ttl; ++ } mpls_mangle; ++ struct { ++ u32 index; ++ s32 prio; ++ u64 basetime; ++ u64 cycletime; ++ u64 cycletimeext; ++ u32 num_entries; ++ struct action_gate_entry *entries; ++ } gate; + }; -+ struct rhash_head node; ++ struct flow_action_cookie *cookie; ++}; ++ ++struct flow_action { ++ unsigned int num_entries; ++ struct flow_action_entry entries[0]; ++}; ++ ++struct flow_rule { ++ struct flow_match match; ++ struct flow_action action; ++}; ++ ++enum flow_block_command { ++ FLOW_BLOCK_BIND = 0, ++ FLOW_BLOCK_UNBIND = 1, ++}; ++ ++enum flow_block_binder_type { ++ FLOW_BLOCK_BINDER_TYPE_UNSPEC = 0, ++ FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS = 1, ++ FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS = 2, ++ FLOW_BLOCK_BINDER_TYPE_RED_EARLY_DROP = 3, ++ FLOW_BLOCK_BINDER_TYPE_RED_MARK = 4, ++}; ++ ++struct flow_block_offload { ++ enum flow_block_command command; ++ enum flow_block_binder_type binder_type; ++ bool block_shared; ++ bool unlocked_driver_cb; ++ struct net *net; ++ struct flow_block *block; ++ struct list_head cb_list; ++ struct list_head *driver_block_list; ++ struct netlink_ext_ack *extack; ++ struct Qdisc *sch; ++ struct list_head *cb_list_head; ++}; ++ ++struct flow_block_cb; ++ ++struct flow_block_indr { ++ struct list_head list; ++ struct net_device *dev; ++ struct Qdisc *sch; ++ enum flow_block_binder_type binder_type; ++ void *data; ++ void *cb_priv; ++ void (*cleanup)(struct flow_block_cb *); ++}; ++ ++struct flow_block_cb { ++ struct list_head driver_list; ++ struct list_head list; ++ flow_setup_cb_t *cb; ++ void *cb_ident; ++ void *cb_priv; ++ void (*release)(void *); ++ struct flow_block_indr indr; ++ unsigned int refcnt; ++}; ++ ++typedef int flow_indr_block_bind_cb_t(struct net_device *, struct Qdisc *, void *, enum tc_setup_type, void *, void *, void (*)(struct flow_block_cb *)); ++ ++struct flow_indr_dev { ++ struct list_head list; ++ flow_indr_block_bind_cb_t *cb; ++ void *cb_priv; ++ refcount_t refcnt; + struct callback_head rcu; +}; + ++struct flow_indir_dev_info { ++ void *data; ++ struct net_device *dev; ++ struct Qdisc *sch; ++ enum tc_setup_type type; ++ void (*cleanup)(struct flow_block_cb *); ++ struct list_head list; ++ enum flow_block_command command; ++ enum flow_block_binder_type binder_type; ++ struct list_head *cb_list; ++}; ++ +struct rx_queue_attribute { + struct attribute attr; + ssize_t (*show)(struct netdev_rx_queue *, char *); @@ -90799,6 +95541,78 @@ index 0000000..bcb9d76 + ssize_t (*store)(struct netdev_queue *, const char *, size_t); +}; + ++enum __sk_action { ++ __SK_DROP = 0, ++ __SK_PASS = 1, ++ __SK_REDIRECT = 2, ++ __SK_NONE = 3, ++}; ++ ++struct sk_psock_progs { ++ struct bpf_prog *msg_parser; ++ struct bpf_prog *skb_parser; ++ struct bpf_prog *skb_verdict; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++enum sk_psock_state_bits { ++ SK_PSOCK_TX_ENABLED = 0, ++}; ++ ++struct sk_psock_link { ++ struct list_head list; ++ struct bpf_map *map; ++ void *link_raw; ++}; ++ ++struct sk_psock_parser { ++ struct strparser strp; ++ bool enabled; ++ void (*saved_data_ready)(struct sock *); ++}; ++ ++struct sk_psock_work_state { ++ struct sk_buff *skb; ++ u32 len; ++ u32 off; ++}; ++ ++struct sk_psock { ++ struct sock *sk; ++ struct sock *sk_redir; ++ u32 apply_bytes; ++ u32 cork_bytes; ++ u32 eval; ++ struct sk_msg *cork; ++ struct sk_psock_progs progs; ++ struct sk_psock_parser parser; ++ struct sk_buff_head ingress_skb; ++ struct list_head ingress_msg; ++ spinlock_t ingress_lock; ++ long unsigned int state; ++ struct list_head link; ++ spinlock_t link_lock; ++ refcount_t refcnt; ++ void (*saved_unhash)(struct sock *); ++ void (*saved_close)(struct sock *, long int); ++ void (*saved_write_space)(struct sock *); ++ struct proto *sk_proto; ++ struct mutex work_mutex; ++ struct sk_psock_work_state work_state; ++ struct work_struct work; ++ union { ++ struct callback_head rcu; ++ struct work_struct gc; ++ }; ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ +struct inet6_ifaddr { + struct in6_addr addr; + __u32 prefix_len; @@ -90907,6 +95721,12 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_skb_copy_datagram_iovec {}; + ++typedef void (*btf_trace_kfree_skb)(void *, struct sk_buff *, void *); ++ ++typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *); ++ ++typedef void (*btf_trace_skb_copy_datagram_iovec)(void *, const struct sk_buff *, int); ++ +struct trace_event_raw_net_dev_start_xmit { + struct trace_entry ent; + u32 __data_loc_name; @@ -90938,6 +95758,14 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_net_dev_xmit_timeout { ++ struct trace_entry ent; ++ u32 __data_loc_name; ++ u32 __data_loc_driver; ++ int queue_index; ++ char __data[0]; ++}; ++ +struct trace_event_raw_net_dev_template { + struct trace_entry ent; + void *skbaddr; @@ -90970,6 +95798,12 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_net_dev_rx_exit_template { ++ struct trace_entry ent; ++ int ret; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_net_dev_start_xmit { + u32 name; +}; @@ -90978,6 +95812,11 @@ index 0000000..bcb9d76 + u32 name; +}; + ++struct trace_event_data_offsets_net_dev_xmit_timeout { ++ u32 name; ++ u32 driver; ++}; ++ +struct trace_event_data_offsets_net_dev_template { + u32 name; +}; @@ -90986,6 +95825,44 @@ index 0000000..bcb9d76 + u32 name; +}; + ++struct trace_event_data_offsets_net_dev_rx_exit_template {}; ++ ++typedef void (*btf_trace_net_dev_start_xmit)(void *, const struct sk_buff *, const struct net_device *); ++ ++typedef void (*btf_trace_net_dev_xmit)(void *, struct sk_buff *, int, struct net_device *, unsigned int); ++ ++typedef void (*btf_trace_net_dev_xmit_timeout)(void *, struct net_device *, int); ++ ++typedef void (*btf_trace_net_dev_queue)(void *, struct sk_buff *); ++ ++typedef void (*btf_trace_netif_receive_skb)(void *, struct sk_buff *); ++ ++typedef void (*btf_trace_netif_rx)(void *, struct sk_buff *); ++ ++typedef void (*btf_trace_napi_gro_frags_entry)(void *, const struct sk_buff *); ++ ++typedef void (*btf_trace_napi_gro_receive_entry)(void *, const struct sk_buff *); ++ ++typedef void (*btf_trace_netif_receive_skb_entry)(void *, const struct sk_buff *); ++ ++typedef void (*btf_trace_netif_receive_skb_list_entry)(void *, const struct sk_buff *); ++ ++typedef void (*btf_trace_netif_rx_entry)(void *, const struct sk_buff *); ++ ++typedef void (*btf_trace_netif_rx_ni_entry)(void *, const struct sk_buff *); ++ ++typedef void (*btf_trace_napi_gro_frags_exit)(void *, int); ++ ++typedef void (*btf_trace_napi_gro_receive_exit)(void *, int); ++ ++typedef void (*btf_trace_netif_receive_skb_exit)(void *, int); ++ ++typedef void (*btf_trace_netif_rx_exit)(void *, int); ++ ++typedef void (*btf_trace_netif_rx_ni_exit)(void *, int); ++ ++typedef void (*btf_trace_netif_receive_skb_list_exit)(void *, int); ++ +struct trace_event_raw_napi_poll { + struct trace_entry ent; + struct napi_struct *napi; @@ -90999,6 +95876,8 @@ index 0000000..bcb9d76 + u32 dev_name; +}; + ++typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); ++ +enum tcp_ca_state { + TCP_CA_Open = 0, + TCP_CA_Disorder = 1, @@ -91037,7 +95916,7 @@ index 0000000..bcb9d76 + __u16 sport; + __u16 dport; + __u16 family; -+ __u8 protocol; ++ __u16 protocol; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; @@ -91051,6 +95930,12 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_inet_sock_set_state {}; + ++typedef void (*btf_trace_sock_rcvqueue_full)(void *, struct sock *, struct sk_buff *); ++ ++typedef void (*btf_trace_sock_exceed_buf_limit)(void *, struct sock *, struct proto *, long int, int); ++ ++typedef void (*btf_trace_inet_sock_set_state)(void *, const struct sock *, const int, const int); ++ +struct trace_event_raw_udp_fail_queue_rcv_skb { + struct trace_entry ent; + int rc; @@ -91060,10 +95945,13 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_udp_fail_queue_rcv_skb {}; + ++typedef void (*btf_trace_udp_fail_queue_rcv_skb)(void *, int, struct sock *); ++ +struct trace_event_raw_tcp_event_sk_skb { + struct trace_entry ent; + const void *skbaddr; + const void *skaddr; ++ int state; + __u16 sport; + __u16 dport; + __u8 saddr[4]; @@ -91126,6 +96014,20 @@ index 0000000..bcb9d76 + +struct trace_event_data_offsets_tcp_probe {}; + ++typedef void (*btf_trace_tcp_retransmit_skb)(void *, const struct sock *, const struct sk_buff *); ++ ++typedef void (*btf_trace_tcp_send_reset)(void *, const struct sock *, const struct sk_buff *); ++ ++typedef void (*btf_trace_tcp_receive_reset)(void *, struct sock *); ++ ++typedef void (*btf_trace_tcp_destroy_sock)(void *, struct sock *); ++ ++typedef void (*btf_trace_tcp_rcv_space_adjust)(void *, struct sock *); ++ ++typedef void (*btf_trace_tcp_retransmit_synack)(void *, const struct sock *, const struct request_sock *); ++ ++typedef void (*btf_trace_tcp_probe)(void *, struct sock *, struct sk_buff *); ++ +struct trace_event_raw_fib_table_lookup { + struct trace_entry ent; + u32 tb_id; @@ -91138,8 +96040,8 @@ index 0000000..bcb9d76 + __u8 flags; + __u8 src[4]; + __u8 dst[4]; -+ __u8 gw[4]; -+ __u8 saddr[4]; ++ __u8 gw4[4]; ++ __u8 gw6[16]; + u16 sport; + u16 dport; + u32 __data_loc_name; @@ -91150,6 +96052,8 @@ index 0000000..bcb9d76 + u32 name; +}; + ++typedef void (*btf_trace_fib_table_lookup)(void *, u32, const struct flowi4 *, const struct fib_nh_common *, int); ++ +struct trace_event_raw_qdisc_dequeue { + struct trace_entry ent; + struct Qdisc *qdisc; @@ -91163,8 +96067,66 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_qdisc_reset { ++ struct trace_entry ent; ++ u32 __data_loc_dev; ++ u32 __data_loc_kind; ++ u32 parent; ++ u32 handle; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_qdisc_destroy { ++ struct trace_entry ent; ++ u32 __data_loc_dev; ++ u32 __data_loc_kind; ++ u32 parent; ++ u32 handle; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_qdisc_create { ++ struct trace_entry ent; ++ u32 __data_loc_dev; ++ u32 __data_loc_kind; ++ u32 parent; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_qdisc_dequeue {}; + ++struct trace_event_data_offsets_qdisc_reset { ++ u32 dev; ++ u32 kind; ++}; ++ ++struct trace_event_data_offsets_qdisc_destroy { ++ u32 dev; ++ u32 kind; ++}; ++ ++struct trace_event_data_offsets_qdisc_create { ++ u32 dev; ++ u32 kind; ++}; ++ ++typedef void (*btf_trace_qdisc_dequeue)(void *, struct Qdisc *, const struct netdev_queue *, int, struct sk_buff *); ++ ++typedef void (*btf_trace_qdisc_reset)(void *, struct Qdisc *); ++ ++typedef void (*btf_trace_qdisc_destroy)(void *, struct Qdisc *); ++ ++typedef void (*btf_trace_qdisc_create)(void *, const struct Qdisc_ops *, struct net_device *, u32); ++ ++struct bridge_stp_xstats { ++ __u64 transition_blk; ++ __u64 transition_fwd; ++ __u64 rx_bpdu; ++ __u64 tx_bpdu; ++ __u64 rx_tcn; ++ __u64 tx_tcn; ++}; ++ +struct br_mcast_stats { + __u64 igmp_v1queries[2]; + __u64 igmp_v2queries[2]; @@ -91188,7 +96150,11 @@ index 0000000..bcb9d76 + union { + __be32 ip4; + struct in6_addr ip6; -+ } u; ++ } src; ++ union { ++ __be32 ip4; ++ struct in6_addr ip6; ++ } dst; + __be16 proto; + __u16 vid; +}; @@ -91267,6 +96233,7 @@ index 0000000..bcb9d76 + int offload_fwd_mark; + u16 group_fwd_mask; + u16 backup_redirected_cnt; ++ struct bridge_stp_xstats stp_xstats; +}; + +struct bridge_mcast_stats { @@ -91274,16 +96241,13 @@ index 0000000..bcb9d76 + struct u64_stats_sync syncp; +}; + -+struct net_bridge_mdb_htable; -+ +struct net_bridge { + spinlock_t lock; + spinlock_t hash_lock; + struct list_head port_list; + struct net_device *dev; + struct pcpu_sw_netstats *stats; -+ u8 vlan_enabled; -+ u8 vlan_stats_enabled; ++ long unsigned int options; + __be16 vlan_proto; + u16 default_pvid; + struct net_bridge_vlan_group *vlgrp; @@ -91292,14 +96256,10 @@ index 0000000..bcb9d76 + struct rtable fake_rtable; + struct rt6_info fake_rt6_info; + }; -+ bool nf_call_iptables; -+ bool nf_call_ip6tables; -+ bool nf_call_arptables; + u16 group_fwd_mask; + u16 group_fwd_mask_required; + bridge_id designated_root; + bridge_id bridge_id; -+ u32 root_path_cost; + unsigned char topology_change; + unsigned char topology_change_detected; + u16 root_port; @@ -91311,32 +96271,30 @@ index 0000000..bcb9d76 + long unsigned int bridge_hello_time; + long unsigned int bridge_forward_delay; + long unsigned int bridge_ageing_time; ++ u32 root_path_cost; + u8 group_addr[6]; -+ bool group_addr_set; + enum { + BR_NO_STP = 0, + BR_KERNEL_STP = 1, + BR_USER_STP = 2, + } stp_enabled; -+ unsigned char multicast_router; -+ u8 multicast_disabled: 1; -+ u8 multicast_querier: 1; -+ u8 multicast_query_use_ifaddr: 1; -+ u8 has_ipv6_addr: 1; -+ u8 multicast_stats_enabled: 1; -+ u32 hash_elasticity; + u32 hash_max; + u32 multicast_last_member_count; + u32 multicast_startup_query_count; + u8 multicast_igmp_version; ++ u8 multicast_router; ++ u8 multicast_mld_version; ++ spinlock_t multicast_lock; + long unsigned int multicast_last_member_interval; + long unsigned int multicast_membership_interval; + long unsigned int multicast_querier_interval; + long unsigned int multicast_query_interval; + long unsigned int multicast_query_response_interval; + long unsigned int multicast_startup_query_interval; -+ spinlock_t multicast_lock; -+ struct net_bridge_mdb_htable *mdb; ++ struct rhashtable mdb_hash_tbl; ++ struct rhashtable sg_port_tbl; ++ struct hlist_head mcast_gc_list; ++ struct hlist_head mdb_list; + struct hlist_head router_list; + struct timer_list multicast_router_timer; + struct bridge_mcast_other_query ip4_other_query; @@ -91346,7 +96304,7 @@ index 0000000..bcb9d76 + struct bridge_mcast_other_query ip6_other_query; + struct bridge_mcast_own_query ip6_own_query; + struct bridge_mcast_querier ip6_querier; -+ u8 multicast_mld_version; ++ struct work_struct mcast_gc_work; + struct timer_list hello_timer; + struct timer_list tcn_timer; + struct timer_list topology_change_timer; @@ -91354,8 +96312,6 @@ index 0000000..bcb9d76 + struct kobject *ifobj; + u32 auto_cnt; + int offload_fwd_mark; -+ bool neigh_suppress_enabled; -+ bool mtu_set_by_user; + struct hlist_head fdb_list; +}; + @@ -91365,6 +96321,7 @@ index 0000000..bcb9d76 + struct list_head vlan_list; + u16 num_vlans; + u16 pvid; ++ u8 pvid_state; +}; + +struct net_bridge_fdb_key { @@ -91377,12 +96334,7 @@ index 0000000..bcb9d76 + struct net_bridge_port *dst; + struct net_bridge_fdb_key key; + struct hlist_node fdb_node; -+ unsigned char is_local: 1; -+ unsigned char is_static: 1; -+ unsigned char added_by_user: 1; -+ unsigned char added_by_external_learn: 1; -+ unsigned char offloaded: 1; -+ long: 59; ++ long unsigned int flags; + long: 64; + long: 64; + long unsigned int updated; @@ -91394,20 +96346,6 @@ index 0000000..bcb9d76 + long: 64; +}; + -+struct net_bridge_mdb_htable { -+ struct hlist_head *mhash; -+ struct callback_head rcu; -+ struct net_bridge_mdb_htable *old; -+ u32 size; -+ u32 max; -+ u32 secret; -+ u32 ver; -+}; -+ -+struct nf_br_ops { -+ int (*br_dev_xmit_hook)(struct sk_buff *); -+}; -+ +struct trace_event_raw_br_fdb_add { + struct trace_entry ent; + u8 ndm_flags; @@ -91442,7 +96380,7 @@ index 0000000..bcb9d76 + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; -+ bool added_by_user; ++ long unsigned int flags; + char __data[0]; +}; + @@ -91465,6 +96403,147 @@ index 0000000..bcb9d76 + u32 dev; +}; + ++typedef void (*btf_trace_br_fdb_add)(void *, struct ndmsg *, struct net_device *, const unsigned char *, u16, u16); ++ ++typedef void (*btf_trace_br_fdb_external_learn_add)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16); ++ ++typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge *, struct net_bridge_fdb_entry *); ++ ++typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); ++ ++struct trace_event_raw_page_pool_release { ++ struct trace_entry ent; ++ const struct page_pool *pool; ++ s32 inflight; ++ u32 hold; ++ u32 release; ++ u64 cnt; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_page_pool_state_release { ++ struct trace_entry ent; ++ const struct page_pool *pool; ++ const struct page *page; ++ u32 release; ++ long unsigned int pfn; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_page_pool_state_hold { ++ struct trace_entry ent; ++ const struct page_pool *pool; ++ const struct page *page; ++ u32 hold; ++ long unsigned int pfn; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_page_pool_update_nid { ++ struct trace_entry ent; ++ const struct page_pool *pool; ++ int pool_nid; ++ int new_nid; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_page_pool_release {}; ++ ++struct trace_event_data_offsets_page_pool_state_release {}; ++ ++struct trace_event_data_offsets_page_pool_state_hold {}; ++ ++struct trace_event_data_offsets_page_pool_update_nid {}; ++ ++typedef void (*btf_trace_page_pool_release)(void *, const struct page_pool *, s32, u32, u32); ++ ++typedef void (*btf_trace_page_pool_state_release)(void *, const struct page_pool *, const struct page *, u32); ++ ++typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, const struct page *, u32); ++ ++typedef void (*btf_trace_page_pool_update_nid)(void *, const struct page_pool *, int); ++ ++struct trace_event_raw_neigh_create { ++ struct trace_entry ent; ++ u32 family; ++ u32 __data_loc_dev; ++ int entries; ++ u8 created; ++ u8 gc_exempt; ++ u8 primary_key4[4]; ++ u8 primary_key6[16]; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_neigh_update { ++ struct trace_entry ent; ++ u32 family; ++ u32 __data_loc_dev; ++ u8 lladdr[32]; ++ u8 lladdr_len; ++ u8 flags; ++ u8 nud_state; ++ u8 type; ++ u8 dead; ++ int refcnt; ++ __u8 primary_key4[4]; ++ __u8 primary_key6[16]; ++ long unsigned int confirmed; ++ long unsigned int updated; ++ long unsigned int used; ++ u8 new_lladdr[32]; ++ u8 new_state; ++ u32 update_flags; ++ u32 pid; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_neigh__update { ++ struct trace_entry ent; ++ u32 family; ++ u32 __data_loc_dev; ++ u8 lladdr[32]; ++ u8 lladdr_len; ++ u8 flags; ++ u8 nud_state; ++ u8 type; ++ u8 dead; ++ int refcnt; ++ __u8 primary_key4[4]; ++ __u8 primary_key6[16]; ++ long unsigned int confirmed; ++ long unsigned int updated; ++ long unsigned int used; ++ u32 err; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_neigh_create { ++ u32 dev; ++}; ++ ++struct trace_event_data_offsets_neigh_update { ++ u32 dev; ++}; ++ ++struct trace_event_data_offsets_neigh__update { ++ u32 dev; ++}; ++ ++typedef void (*btf_trace_neigh_create)(void *, struct neigh_table *, struct net_device *, const void *, const struct neighbour *, bool); ++ ++typedef void (*btf_trace_neigh_update)(void *, struct neighbour *, const u8 *, u8, u32, u32); ++ ++typedef void (*btf_trace_neigh_update_done)(void *, struct neighbour *, int); ++ ++typedef void (*btf_trace_neigh_timer_handler)(void *, struct neighbour *, int); ++ ++typedef void (*btf_trace_neigh_event_send_done)(void *, struct neighbour *, int); ++ ++typedef void (*btf_trace_neigh_event_send_dead)(void *, struct neighbour *, int); ++ ++typedef void (*btf_trace_neigh_cleanup_and_release)(void *, struct neighbour *, int); ++ +struct net_dm_drop_point { + __u8 pc[8]; + __u32 count; @@ -91481,14 +96560,98 @@ index 0000000..bcb9d76 + NET_DM_CMD_CONFIG = 2, + NET_DM_CMD_START = 3, + NET_DM_CMD_STOP = 4, -+ _NET_DM_CMD_MAX = 5, ++ NET_DM_CMD_PACKET_ALERT = 5, ++ NET_DM_CMD_CONFIG_GET = 6, ++ NET_DM_CMD_CONFIG_NEW = 7, ++ NET_DM_CMD_STATS_GET = 8, ++ NET_DM_CMD_STATS_NEW = 9, ++ _NET_DM_CMD_MAX = 10, ++}; ++ ++enum net_dm_attr { ++ NET_DM_ATTR_UNSPEC = 0, ++ NET_DM_ATTR_ALERT_MODE = 1, ++ NET_DM_ATTR_PC = 2, ++ NET_DM_ATTR_SYMBOL = 3, ++ NET_DM_ATTR_IN_PORT = 4, ++ NET_DM_ATTR_TIMESTAMP = 5, ++ NET_DM_ATTR_PROTO = 6, ++ NET_DM_ATTR_PAYLOAD = 7, ++ NET_DM_ATTR_PAD = 8, ++ NET_DM_ATTR_TRUNC_LEN = 9, ++ NET_DM_ATTR_ORIG_LEN = 10, ++ NET_DM_ATTR_QUEUE_LEN = 11, ++ NET_DM_ATTR_STATS = 12, ++ NET_DM_ATTR_HW_STATS = 13, ++ NET_DM_ATTR_ORIGIN = 14, ++ NET_DM_ATTR_HW_TRAP_GROUP_NAME = 15, ++ NET_DM_ATTR_HW_TRAP_NAME = 16, ++ NET_DM_ATTR_HW_ENTRIES = 17, ++ NET_DM_ATTR_HW_ENTRY = 18, ++ NET_DM_ATTR_HW_TRAP_COUNT = 19, ++ NET_DM_ATTR_SW_DROPS = 20, ++ NET_DM_ATTR_HW_DROPS = 21, ++ NET_DM_ATTR_FLOW_ACTION_COOKIE = 22, ++ __NET_DM_ATTR_MAX = 23, ++ NET_DM_ATTR_MAX = 22, ++}; ++ ++enum net_dm_alert_mode { ++ NET_DM_ALERT_MODE_SUMMARY = 0, ++ NET_DM_ALERT_MODE_PACKET = 1, ++}; ++ ++enum { ++ NET_DM_ATTR_PORT_NETDEV_IFINDEX = 0, ++ NET_DM_ATTR_PORT_NETDEV_NAME = 1, ++ __NET_DM_ATTR_PORT_MAX = 2, ++ NET_DM_ATTR_PORT_MAX = 1, ++}; ++ ++enum { ++ NET_DM_ATTR_STATS_DROPPED = 0, ++ __NET_DM_ATTR_STATS_MAX = 1, ++ NET_DM_ATTR_STATS_MAX = 0, ++}; ++ ++enum net_dm_origin { ++ NET_DM_ORIGIN_SW = 0, ++ NET_DM_ORIGIN_HW = 1, ++}; ++ ++struct devlink_trap_metadata { ++ const char *trap_name; ++ const char *trap_group_name; ++ struct net_device *input_dev; ++ const struct flow_action_cookie *fa_cookie; ++ enum devlink_trap_type trap_type; ++}; ++ ++struct net_dm_stats { ++ u64 dropped; ++ struct u64_stats_sync syncp; ++}; ++ ++struct net_dm_hw_entry { ++ char trap_name[40]; ++ u32 count; ++}; ++ ++struct net_dm_hw_entries { ++ u32 num_entries; ++ struct net_dm_hw_entry entries[0]; +}; + +struct per_cpu_dm_data { + spinlock_t lock; -+ struct sk_buff *skb; ++ union { ++ struct sk_buff *skb; ++ struct net_dm_hw_entries *hw_entries; ++ }; ++ struct sk_buff_head drop_queue; + struct work_struct dm_alert_work; + struct timer_list send_timer; ++ struct net_dm_stats stats; +}; + +struct dm_hw_stat_delta { @@ -91499,6 +96662,45 @@ index 0000000..bcb9d76 + long unsigned int last_drop_val; +}; + ++struct net_dm_alert_ops { ++ void (*kfree_skb_probe)(void *, struct sk_buff *, void *); ++ void (*napi_poll_probe)(void *, struct napi_struct *, int, int); ++ void (*work_item_func)(struct work_struct *); ++ void (*hw_work_item_func)(struct work_struct *); ++ void (*hw_trap_probe)(void *, const struct devlink *, struct sk_buff *, const struct devlink_trap_metadata *); ++}; ++ ++struct net_dm_skb_cb { ++ union { ++ struct devlink_trap_metadata *hw_metadata; ++ void *pc; ++ }; ++}; ++ ++struct clock_identity { ++ u8 id[8]; ++}; ++ ++struct port_identity { ++ struct clock_identity clock_identity; ++ __be16 port_number; ++}; ++ ++struct ptp_header { ++ u8 tsmt; ++ u8 ver; ++ __be16 message_length; ++ u8 domain_number; ++ u8 reserved1; ++ u8 flag_field[2]; ++ __be64 correction; ++ __be32 reserved2; ++ struct port_identity source_port_identity; ++ __be16 sequence_id; ++ u8 control; ++ u8 log_message_interval; ++} __attribute__((packed)); ++ +struct update_classid_context { + u32 classid; + unsigned int batch; @@ -91512,7 +96714,7 @@ index 0000000..bcb9d76 +}; + +struct lwtunnel_encap_ops { -+ int (*build_state)(struct nlattr *, unsigned int, const void *, struct lwtunnel_state **, struct netlink_ext_ack *); ++ int (*build_state)(struct net *, struct nlattr *, unsigned int, const void *, struct lwtunnel_state **, struct netlink_ext_ack *); + void (*destroy_state)(struct lwtunnel_state *); + int (*output)(struct net *, struct sock *, struct sk_buff *); + int (*input)(struct sk_buff *); @@ -91523,12 +96725,6 @@ index 0000000..bcb9d76 + struct module *owner; +}; + -+enum bpf_ret_code { -+ BPF_OK = 0, -+ BPF_DROP = 2, -+ BPF_REDIRECT = 7, -+}; -+ +enum { + LWT_BPF_PROG_UNSPEC = 0, + LWT_BPF_PROG_FD = 1, @@ -91562,6 +96758,89 @@ index 0000000..bcb9d76 + int family; +}; + ++struct bpf_stab { ++ struct bpf_map map; ++ struct sock **sks; ++ struct sk_psock_progs progs; ++ raw_spinlock_t lock; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++typedef u64 (*btf_bpf_sock_map_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); ++ ++typedef u64 (*btf_bpf_sk_redirect_map)(struct sk_buff *, struct bpf_map *, u32, u64); ++ ++typedef u64 (*btf_bpf_msg_redirect_map)(struct sk_msg *, struct bpf_map *, u32, u64); ++ ++struct sock_map_seq_info { ++ struct bpf_map *map; ++ struct sock *sk; ++ u32 index; ++}; ++ ++struct bpf_iter__sockmap { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct bpf_map *map; ++ }; ++ union { ++ void *key; ++ }; ++ union { ++ struct sock *sk; ++ }; ++}; ++ ++struct bpf_shtab_elem { ++ struct callback_head rcu; ++ u32 hash; ++ struct sock *sk; ++ struct hlist_node node; ++ u8 key[0]; ++}; ++ ++struct bpf_shtab_bucket { ++ struct hlist_head head; ++ raw_spinlock_t lock; ++}; ++ ++struct bpf_shtab { ++ struct bpf_map map; ++ struct bpf_shtab_bucket *buckets; ++ u32 buckets_num; ++ u32 elem_size; ++ struct sk_psock_progs progs; ++ atomic_t count; ++ long: 32; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++typedef u64 (*btf_bpf_sock_hash_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); ++ ++typedef u64 (*btf_bpf_sk_redirect_hash)(struct sk_buff *, struct bpf_map *, void *, u64); ++ ++typedef u64 (*btf_bpf_msg_redirect_hash)(struct sk_msg *, struct bpf_map *, void *, u64); ++ ++struct sock_hash_seq_info { ++ struct bpf_map *map; ++ struct bpf_shtab *htab; ++ u32 bucket_id; ++}; ++ +struct dst_cache_pcpu { + long unsigned int refresh_ts; + struct dst_entry *dst; @@ -91572,6 +96851,12 @@ index 0000000..bcb9d76 + }; +}; + ++struct genl_dumpit_info { ++ const struct genl_family *family; ++ struct genl_ops op; ++ struct nlattr **attrs; ++}; ++ +enum devlink_command { + DEVLINK_CMD_UNSPEC = 0, + DEVLINK_CMD_GET = 1, @@ -91620,31 +96905,40 @@ index 0000000..bcb9d76 + DEVLINK_CMD_REGION_NEW = 44, + DEVLINK_CMD_REGION_DEL = 45, + DEVLINK_CMD_REGION_READ = 46, -+ __DEVLINK_CMD_MAX = 47, -+ DEVLINK_CMD_MAX = 46, ++ DEVLINK_CMD_PORT_PARAM_GET = 47, ++ DEVLINK_CMD_PORT_PARAM_SET = 48, ++ DEVLINK_CMD_PORT_PARAM_NEW = 49, ++ DEVLINK_CMD_PORT_PARAM_DEL = 50, ++ DEVLINK_CMD_INFO_GET = 51, ++ DEVLINK_CMD_HEALTH_REPORTER_GET = 52, ++ DEVLINK_CMD_HEALTH_REPORTER_SET = 53, ++ DEVLINK_CMD_HEALTH_REPORTER_RECOVER = 54, ++ DEVLINK_CMD_HEALTH_REPORTER_DIAGNOSE = 55, ++ DEVLINK_CMD_HEALTH_REPORTER_DUMP_GET = 56, ++ DEVLINK_CMD_HEALTH_REPORTER_DUMP_CLEAR = 57, ++ DEVLINK_CMD_FLASH_UPDATE = 58, ++ DEVLINK_CMD_FLASH_UPDATE_END = 59, ++ DEVLINK_CMD_FLASH_UPDATE_STATUS = 60, ++ DEVLINK_CMD_TRAP_GET = 61, ++ DEVLINK_CMD_TRAP_SET = 62, ++ DEVLINK_CMD_TRAP_NEW = 63, ++ DEVLINK_CMD_TRAP_DEL = 64, ++ DEVLINK_CMD_TRAP_GROUP_GET = 65, ++ DEVLINK_CMD_TRAP_GROUP_SET = 66, ++ DEVLINK_CMD_TRAP_GROUP_NEW = 67, ++ DEVLINK_CMD_TRAP_GROUP_DEL = 68, ++ DEVLINK_CMD_TRAP_POLICER_GET = 69, ++ DEVLINK_CMD_TRAP_POLICER_SET = 70, ++ DEVLINK_CMD_TRAP_POLICER_NEW = 71, ++ DEVLINK_CMD_TRAP_POLICER_DEL = 72, ++ DEVLINK_CMD_HEALTH_REPORTER_TEST = 73, ++ __DEVLINK_CMD_MAX = 74, ++ DEVLINK_CMD_MAX = 73, +}; + -+enum devlink_port_type { -+ DEVLINK_PORT_TYPE_NOTSET = 0, -+ DEVLINK_PORT_TYPE_AUTO = 1, -+ DEVLINK_PORT_TYPE_ETH = 2, -+ DEVLINK_PORT_TYPE_IB = 3, -+}; -+ -+enum devlink_sb_pool_type { -+ DEVLINK_SB_POOL_TYPE_INGRESS = 0, -+ DEVLINK_SB_POOL_TYPE_EGRESS = 1, -+}; -+ -+enum devlink_sb_threshold_type { -+ DEVLINK_SB_THRESHOLD_TYPE_STATIC = 0, -+ DEVLINK_SB_THRESHOLD_TYPE_DYNAMIC = 1, -+}; -+ -+enum devlink_port_flavour { -+ DEVLINK_PORT_FLAVOUR_PHYSICAL = 0, -+ DEVLINK_PORT_FLAVOUR_CPU = 1, -+ DEVLINK_PORT_FLAVOUR_DSA = 2, ++enum devlink_eswitch_mode { ++ DEVLINK_ESWITCH_MODE_LEGACY = 0, ++ DEVLINK_ESWITCH_MODE_SWITCHDEV = 1, +}; + +enum devlink_param_cmode { @@ -91655,6 +96949,26 @@ index 0000000..bcb9d76 + DEVLINK_PARAM_CMODE_MAX = 2, +}; + ++enum { ++ DEVLINK_ATTR_STATS_RX_PACKETS = 0, ++ DEVLINK_ATTR_STATS_RX_BYTES = 1, ++ DEVLINK_ATTR_STATS_RX_DROPPED = 2, ++ __DEVLINK_ATTR_STATS_MAX = 3, ++ DEVLINK_ATTR_STATS_MAX = 2, ++}; ++ ++enum { ++ DEVLINK_FLASH_OVERWRITE_SETTINGS_BIT = 0, ++ DEVLINK_FLASH_OVERWRITE_IDENTIFIERS_BIT = 1, ++ __DEVLINK_FLASH_OVERWRITE_MAX_BIT = 2, ++ DEVLINK_FLASH_OVERWRITE_MAX_BIT = 1, ++}; ++ ++enum { ++ DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT = 0, ++ DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE = 1, ++}; ++ +enum devlink_attr { + DEVLINK_ATTR_UNSPEC = 0, + DEVLINK_ATTR_BUS_NAME = 1, @@ -91754,8 +97068,74 @@ index 0000000..bcb9d76 + DEVLINK_ATTR_REGION_CHUNK_DATA = 95, + DEVLINK_ATTR_REGION_CHUNK_ADDR = 96, + DEVLINK_ATTR_REGION_CHUNK_LEN = 97, -+ __DEVLINK_ATTR_MAX = 98, -+ DEVLINK_ATTR_MAX = 97, ++ DEVLINK_ATTR_INFO_DRIVER_NAME = 98, ++ DEVLINK_ATTR_INFO_SERIAL_NUMBER = 99, ++ DEVLINK_ATTR_INFO_VERSION_FIXED = 100, ++ DEVLINK_ATTR_INFO_VERSION_RUNNING = 101, ++ DEVLINK_ATTR_INFO_VERSION_STORED = 102, ++ DEVLINK_ATTR_INFO_VERSION_NAME = 103, ++ DEVLINK_ATTR_INFO_VERSION_VALUE = 104, ++ DEVLINK_ATTR_SB_POOL_CELL_SIZE = 105, ++ DEVLINK_ATTR_FMSG = 106, ++ DEVLINK_ATTR_FMSG_OBJ_NEST_START = 107, ++ DEVLINK_ATTR_FMSG_PAIR_NEST_START = 108, ++ DEVLINK_ATTR_FMSG_ARR_NEST_START = 109, ++ DEVLINK_ATTR_FMSG_NEST_END = 110, ++ DEVLINK_ATTR_FMSG_OBJ_NAME = 111, ++ DEVLINK_ATTR_FMSG_OBJ_VALUE_TYPE = 112, ++ DEVLINK_ATTR_FMSG_OBJ_VALUE_DATA = 113, ++ DEVLINK_ATTR_HEALTH_REPORTER = 114, ++ DEVLINK_ATTR_HEALTH_REPORTER_NAME = 115, ++ DEVLINK_ATTR_HEALTH_REPORTER_STATE = 116, ++ DEVLINK_ATTR_HEALTH_REPORTER_ERR_COUNT = 117, ++ DEVLINK_ATTR_HEALTH_REPORTER_RECOVER_COUNT = 118, ++ DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS = 119, ++ DEVLINK_ATTR_HEALTH_REPORTER_GRACEFUL_PERIOD = 120, ++ DEVLINK_ATTR_HEALTH_REPORTER_AUTO_RECOVER = 121, ++ DEVLINK_ATTR_FLASH_UPDATE_FILE_NAME = 122, ++ DEVLINK_ATTR_FLASH_UPDATE_COMPONENT = 123, ++ DEVLINK_ATTR_FLASH_UPDATE_STATUS_MSG = 124, ++ DEVLINK_ATTR_FLASH_UPDATE_STATUS_DONE = 125, ++ DEVLINK_ATTR_FLASH_UPDATE_STATUS_TOTAL = 126, ++ DEVLINK_ATTR_PORT_PCI_PF_NUMBER = 127, ++ DEVLINK_ATTR_PORT_PCI_VF_NUMBER = 128, ++ DEVLINK_ATTR_STATS = 129, ++ DEVLINK_ATTR_TRAP_NAME = 130, ++ DEVLINK_ATTR_TRAP_ACTION = 131, ++ DEVLINK_ATTR_TRAP_TYPE = 132, ++ DEVLINK_ATTR_TRAP_GENERIC = 133, ++ DEVLINK_ATTR_TRAP_METADATA = 134, ++ DEVLINK_ATTR_TRAP_GROUP_NAME = 135, ++ DEVLINK_ATTR_RELOAD_FAILED = 136, ++ DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS_NS = 137, ++ DEVLINK_ATTR_NETNS_FD = 138, ++ DEVLINK_ATTR_NETNS_PID = 139, ++ DEVLINK_ATTR_NETNS_ID = 140, ++ DEVLINK_ATTR_HEALTH_REPORTER_AUTO_DUMP = 141, ++ DEVLINK_ATTR_TRAP_POLICER_ID = 142, ++ DEVLINK_ATTR_TRAP_POLICER_RATE = 143, ++ DEVLINK_ATTR_TRAP_POLICER_BURST = 144, ++ DEVLINK_ATTR_PORT_FUNCTION = 145, ++ DEVLINK_ATTR_INFO_BOARD_SERIAL_NUMBER = 146, ++ DEVLINK_ATTR_PORT_LANES = 147, ++ DEVLINK_ATTR_PORT_SPLITTABLE = 148, ++ DEVLINK_ATTR_PORT_EXTERNAL = 149, ++ DEVLINK_ATTR_PORT_CONTROLLER_NUMBER = 150, ++ DEVLINK_ATTR_FLASH_UPDATE_STATUS_TIMEOUT = 151, ++ DEVLINK_ATTR_FLASH_UPDATE_OVERWRITE_MASK = 152, ++ DEVLINK_ATTR_RELOAD_ACTION = 153, ++ DEVLINK_ATTR_RELOAD_ACTIONS_PERFORMED = 154, ++ DEVLINK_ATTR_RELOAD_LIMITS = 155, ++ DEVLINK_ATTR_DEV_STATS = 156, ++ DEVLINK_ATTR_RELOAD_STATS = 157, ++ DEVLINK_ATTR_RELOAD_STATS_ENTRY = 158, ++ DEVLINK_ATTR_RELOAD_STATS_LIMIT = 159, ++ DEVLINK_ATTR_RELOAD_STATS_VALUE = 160, ++ DEVLINK_ATTR_REMOTE_RELOAD_STATS = 161, ++ DEVLINK_ATTR_RELOAD_ACTION_INFO = 162, ++ DEVLINK_ATTR_RELOAD_ACTION_STATS = 163, ++ __DEVLINK_ATTR_MAX = 164, ++ DEVLINK_ATTR_MAX = 163, +}; + +enum devlink_dpipe_match_type { @@ -91788,83 +97168,11 @@ index 0000000..bcb9d76 + DEVLINK_RESOURCE_UNIT_ENTRY = 0, +}; + -+struct devlink_dpipe_headers; -+ -+struct devlink_ops; -+ -+struct devlink { -+ struct list_head list; -+ struct list_head port_list; -+ struct list_head sb_list; -+ struct list_head dpipe_table_list; -+ struct list_head resource_list; -+ struct list_head param_list; -+ struct list_head region_list; -+ u32 snapshot_id; -+ struct devlink_dpipe_headers *dpipe_headers; -+ const struct devlink_ops *ops; -+ struct device *dev; -+ possible_net_t _net; -+ struct mutex lock; -+ long: 64; -+ char priv[0]; -+}; -+ -+struct devlink_dpipe_headers { -+ struct devlink_dpipe_header **headers; -+ unsigned int headers_count; -+}; -+ -+struct devlink_port; -+ -+struct devlink_sb_pool_info; -+ -+struct devlink_ops { -+ int (*reload)(struct devlink *, struct netlink_ext_ack *); -+ int (*port_type_set)(struct devlink_port *, enum devlink_port_type); -+ int (*port_split)(struct devlink *, unsigned int, unsigned int, struct netlink_ext_ack *); -+ int (*port_unsplit)(struct devlink *, unsigned int, struct netlink_ext_ack *); -+ int (*sb_pool_get)(struct devlink *, unsigned int, u16, struct devlink_sb_pool_info *); -+ int (*sb_pool_set)(struct devlink *, unsigned int, u16, u32, enum devlink_sb_threshold_type); -+ int (*sb_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *); -+ int (*sb_port_pool_set)(struct devlink_port *, unsigned int, u16, u32); -+ int (*sb_tc_pool_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16 *, u32 *); -+ int (*sb_tc_pool_bind_set)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16, u32); -+ int (*sb_occ_snapshot)(struct devlink *, unsigned int); -+ int (*sb_occ_max_clear)(struct devlink *, unsigned int); -+ int (*sb_occ_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *, u32 *); -+ int (*sb_occ_tc_port_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u32 *, u32 *); -+ int (*eswitch_mode_get)(struct devlink *, u16 *); -+ int (*eswitch_mode_set)(struct devlink *, u16); -+ int (*eswitch_inline_mode_get)(struct devlink *, u8 *); -+ int (*eswitch_inline_mode_set)(struct devlink *, u8); -+ int (*eswitch_encap_mode_get)(struct devlink *, u8 *); -+ int (*eswitch_encap_mode_set)(struct devlink *, u8); -+}; -+ -+struct devlink_port_attrs { -+ bool set; -+ enum devlink_port_flavour flavour; -+ u32 port_number; -+ bool split; -+ u32 split_subport_number; -+}; -+ -+struct devlink_port { -+ struct list_head list; -+ struct devlink *devlink; -+ unsigned int index; -+ bool registered; -+ enum devlink_port_type type; -+ enum devlink_port_type desired_type; -+ void *type_dev; -+ struct devlink_port_attrs attrs; -+}; -+ -+struct devlink_sb_pool_info { -+ enum devlink_sb_pool_type pool_type; -+ u32 size; -+ enum devlink_sb_threshold_type threshold_type; ++enum devlink_port_function_attr { ++ DEVLINK_PORT_FUNCTION_ATTR_UNSPEC = 0, ++ DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR = 1, ++ __DEVLINK_PORT_FUNCTION_ATTR_MAX = 2, ++ DEVLINK_PORT_FUNCTION_ATTR_MAX = 1, +}; + +struct devlink_dpipe_match { @@ -91978,6 +97286,14 @@ index 0000000..bcb9d76 + enum devlink_param_cmode cmode; +}; + ++struct devlink_flash_notify { ++ const char *status_msg; ++ const char *component; ++ long unsigned int done; ++ long unsigned int total; ++ long unsigned int timeout; ++}; ++ +struct devlink_param { + u32 id; + const char *name; @@ -91994,6 +97310,7 @@ index 0000000..bcb9d76 + const struct devlink_param *param; + union devlink_param_value driverinit_value; + bool driverinit_value_valid; ++ bool published; +}; + +enum devlink_param_generic_id { @@ -92001,11 +97318,202 @@ index 0000000..bcb9d76 + DEVLINK_PARAM_GENERIC_ID_MAX_MACS = 1, + DEVLINK_PARAM_GENERIC_ID_ENABLE_SRIOV = 2, + DEVLINK_PARAM_GENERIC_ID_REGION_SNAPSHOT = 3, -+ __DEVLINK_PARAM_GENERIC_ID_MAX = 4, -+ DEVLINK_PARAM_GENERIC_ID_MAX = 3, ++ DEVLINK_PARAM_GENERIC_ID_IGNORE_ARI = 4, ++ DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MAX = 5, ++ DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MIN = 6, ++ DEVLINK_PARAM_GENERIC_ID_FW_LOAD_POLICY = 7, ++ DEVLINK_PARAM_GENERIC_ID_RESET_DEV_ON_DRV_PROBE = 8, ++ DEVLINK_PARAM_GENERIC_ID_ENABLE_ROCE = 9, ++ DEVLINK_PARAM_GENERIC_ID_ENABLE_REMOTE_DEV_RESET = 10, ++ __DEVLINK_PARAM_GENERIC_ID_MAX = 11, ++ DEVLINK_PARAM_GENERIC_ID_MAX = 10, +}; + -+typedef void devlink_snapshot_data_dest_t(const void *); ++struct devlink_region_ops { ++ const char *name; ++ void (*destructor)(const void *); ++ int (*snapshot)(struct devlink *, const struct devlink_region_ops *, struct netlink_ext_ack *, u8 **); ++ void *priv; ++}; ++ ++struct devlink_port_region_ops { ++ const char *name; ++ void (*destructor)(const void *); ++ int (*snapshot)(struct devlink_port *, const struct devlink_port_region_ops *, struct netlink_ext_ack *, u8 **); ++ void *priv; ++}; ++ ++enum devlink_health_reporter_state { ++ DEVLINK_HEALTH_REPORTER_STATE_HEALTHY = 0, ++ DEVLINK_HEALTH_REPORTER_STATE_ERROR = 1, ++}; ++ ++struct devlink_health_reporter; ++ ++struct devlink_fmsg; ++ ++struct devlink_health_reporter_ops { ++ char *name; ++ int (*recover)(struct devlink_health_reporter *, void *, struct netlink_ext_ack *); ++ int (*dump)(struct devlink_health_reporter *, struct devlink_fmsg *, void *, struct netlink_ext_ack *); ++ int (*diagnose)(struct devlink_health_reporter *, struct devlink_fmsg *, struct netlink_ext_ack *); ++ int (*test)(struct devlink_health_reporter *, struct netlink_ext_ack *); ++}; ++ ++struct devlink_health_reporter { ++ struct list_head list; ++ void *priv; ++ const struct devlink_health_reporter_ops *ops; ++ struct devlink *devlink; ++ struct devlink_port *devlink_port; ++ struct devlink_fmsg *dump_fmsg; ++ struct mutex dump_lock; ++ u64 graceful_period; ++ bool auto_recover; ++ bool auto_dump; ++ u8 health_state; ++ u64 dump_ts; ++ u64 dump_real_ts; ++ u64 error_count; ++ u64 recovery_count; ++ u64 last_recovery_ts; ++ refcount_t refcount; ++}; ++ ++struct devlink_fmsg { ++ struct list_head item_list; ++ bool putting_binary; ++}; ++ ++enum devlink_trap_generic_id { ++ DEVLINK_TRAP_GENERIC_ID_SMAC_MC = 0, ++ DEVLINK_TRAP_GENERIC_ID_VLAN_TAG_MISMATCH = 1, ++ DEVLINK_TRAP_GENERIC_ID_INGRESS_VLAN_FILTER = 2, ++ DEVLINK_TRAP_GENERIC_ID_INGRESS_STP_FILTER = 3, ++ DEVLINK_TRAP_GENERIC_ID_EMPTY_TX_LIST = 4, ++ DEVLINK_TRAP_GENERIC_ID_PORT_LOOPBACK_FILTER = 5, ++ DEVLINK_TRAP_GENERIC_ID_BLACKHOLE_ROUTE = 6, ++ DEVLINK_TRAP_GENERIC_ID_TTL_ERROR = 7, ++ DEVLINK_TRAP_GENERIC_ID_TAIL_DROP = 8, ++ DEVLINK_TRAP_GENERIC_ID_NON_IP_PACKET = 9, ++ DEVLINK_TRAP_GENERIC_ID_UC_DIP_MC_DMAC = 10, ++ DEVLINK_TRAP_GENERIC_ID_DIP_LB = 11, ++ DEVLINK_TRAP_GENERIC_ID_SIP_MC = 12, ++ DEVLINK_TRAP_GENERIC_ID_SIP_LB = 13, ++ DEVLINK_TRAP_GENERIC_ID_CORRUPTED_IP_HDR = 14, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_SIP_BC = 15, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_RESERVED_SCOPE = 16, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_INTERFACE_LOCAL_SCOPE = 17, ++ DEVLINK_TRAP_GENERIC_ID_MTU_ERROR = 18, ++ DEVLINK_TRAP_GENERIC_ID_UNRESOLVED_NEIGH = 19, ++ DEVLINK_TRAP_GENERIC_ID_RPF = 20, ++ DEVLINK_TRAP_GENERIC_ID_REJECT_ROUTE = 21, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_LPM_UNICAST_MISS = 22, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_LPM_UNICAST_MISS = 23, ++ DEVLINK_TRAP_GENERIC_ID_NON_ROUTABLE = 24, ++ DEVLINK_TRAP_GENERIC_ID_DECAP_ERROR = 25, ++ DEVLINK_TRAP_GENERIC_ID_OVERLAY_SMAC_MC = 26, ++ DEVLINK_TRAP_GENERIC_ID_INGRESS_FLOW_ACTION_DROP = 27, ++ DEVLINK_TRAP_GENERIC_ID_EGRESS_FLOW_ACTION_DROP = 28, ++ DEVLINK_TRAP_GENERIC_ID_STP = 29, ++ DEVLINK_TRAP_GENERIC_ID_LACP = 30, ++ DEVLINK_TRAP_GENERIC_ID_LLDP = 31, ++ DEVLINK_TRAP_GENERIC_ID_IGMP_QUERY = 32, ++ DEVLINK_TRAP_GENERIC_ID_IGMP_V1_REPORT = 33, ++ DEVLINK_TRAP_GENERIC_ID_IGMP_V2_REPORT = 34, ++ DEVLINK_TRAP_GENERIC_ID_IGMP_V3_REPORT = 35, ++ DEVLINK_TRAP_GENERIC_ID_IGMP_V2_LEAVE = 36, ++ DEVLINK_TRAP_GENERIC_ID_MLD_QUERY = 37, ++ DEVLINK_TRAP_GENERIC_ID_MLD_V1_REPORT = 38, ++ DEVLINK_TRAP_GENERIC_ID_MLD_V2_REPORT = 39, ++ DEVLINK_TRAP_GENERIC_ID_MLD_V1_DONE = 40, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_DHCP = 41, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_DHCP = 42, ++ DEVLINK_TRAP_GENERIC_ID_ARP_REQUEST = 43, ++ DEVLINK_TRAP_GENERIC_ID_ARP_RESPONSE = 44, ++ DEVLINK_TRAP_GENERIC_ID_ARP_OVERLAY = 45, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_SOLICIT = 46, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_ADVERT = 47, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_BFD = 48, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_BFD = 49, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_OSPF = 50, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_OSPF = 51, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_BGP = 52, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_BGP = 53, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_VRRP = 54, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_VRRP = 55, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_PIM = 56, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_PIM = 57, ++ DEVLINK_TRAP_GENERIC_ID_UC_LB = 58, ++ DEVLINK_TRAP_GENERIC_ID_LOCAL_ROUTE = 59, ++ DEVLINK_TRAP_GENERIC_ID_EXTERNAL_ROUTE = 60, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_UC_DIP_LINK_LOCAL_SCOPE = 61, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_NODES = 62, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_ROUTERS = 63, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_SOLICIT = 64, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ADVERT = 65, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_REDIRECT = 66, ++ DEVLINK_TRAP_GENERIC_ID_IPV4_ROUTER_ALERT = 67, ++ DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ALERT = 68, ++ DEVLINK_TRAP_GENERIC_ID_PTP_EVENT = 69, ++ DEVLINK_TRAP_GENERIC_ID_PTP_GENERAL = 70, ++ DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_SAMPLE = 71, ++ DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_TRAP = 72, ++ DEVLINK_TRAP_GENERIC_ID_EARLY_DROP = 73, ++ DEVLINK_TRAP_GENERIC_ID_VXLAN_PARSING = 74, ++ DEVLINK_TRAP_GENERIC_ID_LLC_SNAP_PARSING = 75, ++ DEVLINK_TRAP_GENERIC_ID_VLAN_PARSING = 76, ++ DEVLINK_TRAP_GENERIC_ID_PPPOE_PPP_PARSING = 77, ++ DEVLINK_TRAP_GENERIC_ID_MPLS_PARSING = 78, ++ DEVLINK_TRAP_GENERIC_ID_ARP_PARSING = 79, ++ DEVLINK_TRAP_GENERIC_ID_IP_1_PARSING = 80, ++ DEVLINK_TRAP_GENERIC_ID_IP_N_PARSING = 81, ++ DEVLINK_TRAP_GENERIC_ID_GRE_PARSING = 82, ++ DEVLINK_TRAP_GENERIC_ID_UDP_PARSING = 83, ++ DEVLINK_TRAP_GENERIC_ID_TCP_PARSING = 84, ++ DEVLINK_TRAP_GENERIC_ID_IPSEC_PARSING = 85, ++ DEVLINK_TRAP_GENERIC_ID_SCTP_PARSING = 86, ++ DEVLINK_TRAP_GENERIC_ID_DCCP_PARSING = 87, ++ DEVLINK_TRAP_GENERIC_ID_GTP_PARSING = 88, ++ DEVLINK_TRAP_GENERIC_ID_ESP_PARSING = 89, ++ __DEVLINK_TRAP_GENERIC_ID_MAX = 90, ++ DEVLINK_TRAP_GENERIC_ID_MAX = 89, ++}; ++ ++enum devlink_trap_group_generic_id { ++ DEVLINK_TRAP_GROUP_GENERIC_ID_L2_DROPS = 0, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_L3_DROPS = 1, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_L3_EXCEPTIONS = 2, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_BUFFER_DROPS = 3, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_TUNNEL_DROPS = 4, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_DROPS = 5, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_STP = 6, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_LACP = 7, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_LLDP = 8, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_MC_SNOOPING = 9, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_DHCP = 10, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_NEIGH_DISCOVERY = 11, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_BFD = 12, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_OSPF = 13, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_BGP = 14, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_VRRP = 15, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_PIM = 16, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_UC_LB = 17, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_LOCAL_DELIVERY = 18, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_EXTERNAL_DELIVERY = 19, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_IPV6 = 20, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_EVENT = 21, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_GENERAL = 22, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_SAMPLE = 23, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_TRAP = 24, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_PARSER_ERROR_DROPS = 25, ++ __DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 26, ++ DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 25, ++}; ++ ++struct devlink_info_req { ++ struct sk_buff *msg; ++}; + +struct trace_event_raw_devlink_hwmsg { + struct trace_entry ent; @@ -92019,6 +97527,58 @@ index 0000000..bcb9d76 + char __data[0]; +}; + ++struct trace_event_raw_devlink_hwerr { ++ struct trace_entry ent; ++ u32 __data_loc_bus_name; ++ u32 __data_loc_dev_name; ++ u32 __data_loc_driver_name; ++ int err; ++ u32 __data_loc_msg; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_devlink_health_report { ++ struct trace_entry ent; ++ u32 __data_loc_bus_name; ++ u32 __data_loc_dev_name; ++ u32 __data_loc_driver_name; ++ u32 __data_loc_reporter_name; ++ u32 __data_loc_msg; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_devlink_health_recover_aborted { ++ struct trace_entry ent; ++ u32 __data_loc_bus_name; ++ u32 __data_loc_dev_name; ++ u32 __data_loc_driver_name; ++ u32 __data_loc_reporter_name; ++ bool health_state; ++ u64 time_since_last_recover; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_devlink_health_reporter_state_update { ++ struct trace_entry ent; ++ u32 __data_loc_bus_name; ++ u32 __data_loc_dev_name; ++ u32 __data_loc_driver_name; ++ u32 __data_loc_reporter_name; ++ u8 new_state; ++ char __data[0]; ++}; ++ ++struct trace_event_raw_devlink_trap_report { ++ struct trace_entry ent; ++ u32 __data_loc_bus_name; ++ u32 __data_loc_dev_name; ++ u32 __data_loc_driver_name; ++ u32 __data_loc_trap_name; ++ u32 __data_loc_trap_group_name; ++ u32 __data_loc_input_dev_name; ++ char __data[0]; ++}; ++ +struct trace_event_data_offsets_devlink_hwmsg { + u32 bus_name; + u32 dev_name; @@ -92026,6 +97586,56 @@ index 0000000..bcb9d76 + u32 buf; +}; + ++struct trace_event_data_offsets_devlink_hwerr { ++ u32 bus_name; ++ u32 dev_name; ++ u32 driver_name; ++ u32 msg; ++}; ++ ++struct trace_event_data_offsets_devlink_health_report { ++ u32 bus_name; ++ u32 dev_name; ++ u32 driver_name; ++ u32 reporter_name; ++ u32 msg; ++}; ++ ++struct trace_event_data_offsets_devlink_health_recover_aborted { ++ u32 bus_name; ++ u32 dev_name; ++ u32 driver_name; ++ u32 reporter_name; ++}; ++ ++struct trace_event_data_offsets_devlink_health_reporter_state_update { ++ u32 bus_name; ++ u32 dev_name; ++ u32 driver_name; ++ u32 reporter_name; ++}; ++ ++struct trace_event_data_offsets_devlink_trap_report { ++ u32 bus_name; ++ u32 dev_name; ++ u32 driver_name; ++ u32 trap_name; ++ u32 trap_group_name; ++ u32 input_dev_name; ++}; ++ ++typedef void (*btf_trace_devlink_hwmsg)(void *, const struct devlink *, bool, long unsigned int, const u8 *, size_t); ++ ++typedef void (*btf_trace_devlink_hwerr)(void *, const struct devlink *, int, const char *); ++ ++typedef void (*btf_trace_devlink_health_report)(void *, const struct devlink *, const char *, const char *); ++ ++typedef void (*btf_trace_devlink_health_recover_aborted)(void *, const struct devlink *, const char *, bool, u64); ++ ++typedef void (*btf_trace_devlink_health_reporter_state_update)(void *, const struct devlink *, const char *, bool); ++ ++typedef void (*btf_trace_devlink_trap_report)(void *, const struct devlink *, struct sk_buff *, const struct devlink_trap_metadata *); ++ +struct devlink_sb { + struct list_head list; + unsigned int index; @@ -92038,8 +97648,12 @@ index 0000000..bcb9d76 + +struct devlink_region { + struct devlink *devlink; ++ struct devlink_port *port; + struct list_head list; -+ const char *name; ++ union { ++ const struct devlink_region_ops *ops; ++ const struct devlink_port_region_ops *port_ops; ++ }; + struct list_head snapshot_list; + u32 max_snapshots; + u32 cur_snapshots; @@ -92049,8 +97663,6 @@ index 0000000..bcb9d76 +struct devlink_snapshot { + struct list_head list; + struct devlink_region *region; -+ devlink_snapshot_data_dest_t *data_destructor; -+ u64 data_len; + u8 *data; + u32 id; +}; @@ -92059,6 +97671,48 @@ index 0000000..bcb9d76 + DEVLINK_MCGRP_CONFIG = 0, +}; + ++struct devlink_reload_combination { ++ enum devlink_reload_action action; ++ enum devlink_reload_limit limit; ++}; ++ ++struct devlink_fmsg_item { ++ struct list_head list; ++ int attrtype; ++ u8 nla_type; ++ u16 len; ++ int value[0]; ++}; ++ ++struct devlink_stats { ++ u64 rx_bytes; ++ u64 rx_packets; ++ struct u64_stats_sync syncp; ++}; ++ ++struct devlink_trap_policer_item { ++ const struct devlink_trap_policer *policer; ++ u64 rate; ++ u64 burst; ++ struct list_head list; ++}; ++ ++struct devlink_trap_group_item { ++ const struct devlink_trap_group *group; ++ struct devlink_trap_policer_item *policer_item; ++ struct list_head list; ++ struct devlink_stats *stats; ++}; ++ ++struct devlink_trap_item { ++ const struct devlink_trap *trap; ++ struct devlink_trap_group_item *group_item; ++ struct list_head list; ++ enum devlink_trap_action action; ++ struct devlink_stats *stats; ++ void *priv; ++}; ++ +struct gro_cell; + +struct gro_cells { @@ -92070,26 +97724,59 @@ index 0000000..bcb9d76 + struct napi_struct napi; +}; + -+struct group_req { -+ __u32 gr_interface; -+ int: 32; -+ struct __kernel_sockaddr_storage gr_group; ++enum { ++ BPF_LOCAL_STORAGE_GET_F_CREATE = 1, ++ BPF_SK_STORAGE_GET_F_CREATE = 1, +}; + -+struct group_source_req { -+ __u32 gsr_interface; -+ int: 32; -+ struct __kernel_sockaddr_storage gsr_group; -+ struct __kernel_sockaddr_storage gsr_source; ++enum { ++ SK_DIAG_BPF_STORAGE_REQ_NONE = 0, ++ SK_DIAG_BPF_STORAGE_REQ_MAP_FD = 1, ++ __SK_DIAG_BPF_STORAGE_REQ_MAX = 2, +}; + -+struct group_filter { -+ __u32 gf_interface; -+ int: 32; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; ++enum { ++ SK_DIAG_BPF_STORAGE_REP_NONE = 0, ++ SK_DIAG_BPF_STORAGE = 1, ++ __SK_DIAG_BPF_STORAGE_REP_MAX = 2, ++}; ++ ++enum { ++ SK_DIAG_BPF_STORAGE_NONE = 0, ++ SK_DIAG_BPF_STORAGE_PAD = 1, ++ SK_DIAG_BPF_STORAGE_MAP_ID = 2, ++ SK_DIAG_BPF_STORAGE_MAP_VALUE = 3, ++ __SK_DIAG_BPF_STORAGE_MAX = 4, ++}; ++ ++typedef u64 (*btf_bpf_sk_storage_get)(struct bpf_map *, struct sock *, void *, u64); ++ ++typedef u64 (*btf_bpf_sk_storage_delete)(struct bpf_map *, struct sock *); ++ ++struct bpf_sk_storage_diag { ++ u32 nr_maps; ++ struct bpf_map *maps[0]; ++}; ++ ++struct bpf_iter_seq_sk_storage_map_info { ++ struct bpf_map *map; ++ unsigned int bucket_id; ++ unsigned int skip_elems; ++}; ++ ++struct bpf_iter__bpf_sk_storage_map { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct bpf_map *map; ++ }; ++ union { ++ struct sock *sk; ++ }; ++ union { ++ void *value; ++ }; +}; + +struct compat_cmsghdr { @@ -92098,27 +97785,10 @@ index 0000000..bcb9d76 + compat_int_t cmsg_type; +}; + -+struct compat_group_req { -+ __u32 gr_interface; -+ struct __kernel_sockaddr_storage gr_group; -+}; -+ -+struct compat_group_source_req { -+ __u32 gsr_interface; -+ struct __kernel_sockaddr_storage gsr_group; -+ struct __kernel_sockaddr_storage gsr_source; -+}; -+ -+struct compat_group_filter { -+ __u32 gf_interface; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; -+}; -+ +typedef struct sk_buff * (*gro_receive_t)(struct list_head *, struct sk_buff *); + ++struct nvmem_cell; ++ +struct fch_hdr { + __u8 daddr[6]; + __u8 saddr[6]; @@ -92170,7 +97840,8 @@ index 0000000..bcb9d76 + TCA_HW_OFFLOAD = 12, + TCA_INGRESS_BLOCK = 13, + TCA_EGRESS_BLOCK = 14, -+ __TCA_MAX = 15, ++ TCA_DUMP_FLAGS = 15, ++ __TCA_MAX = 16, +}; + +struct vlan_pcpu_stats { @@ -92184,7 +97855,7 @@ index 0000000..bcb9d76 + u32 tx_dropped; +}; + -+struct netpoll___2; ++struct netpoll; + +struct skb_array { + struct ptr_ring ring; @@ -92204,15 +97875,15 @@ index 0000000..bcb9d76 + netdev_features_t set_features; + enum macvlan_mode mode; + u16 flags; -+ int nest_level; + unsigned int macaddr_count; -+ struct netpoll___2 *netpoll; ++ struct netpoll *netpoll; +}; + +struct psched_ratecfg { + u64 rate_bytes_ps; + u32 mult; + u16 overhead; ++ u16 mpu; + u8 linklayer; + u8 shift; +}; @@ -92236,12 +97907,21 @@ index 0000000..bcb9d76 + TC_MQ_CREATE = 0, + TC_MQ_DESTROY = 1, + TC_MQ_STATS = 2, ++ TC_MQ_GRAFT = 3, ++}; ++ ++struct tc_mq_opt_offload_graft_params { ++ long unsigned int queue; ++ u32 child_handle; +}; + +struct tc_mq_qopt_offload { + enum tc_mq_command command; + u32 handle; -+ struct tc_qopt_offload_stats stats; ++ union { ++ struct tc_qopt_offload_stats stats; ++ struct tc_mq_opt_offload_graft_params graft_params; ++ }; +}; + +struct mq_sched { @@ -92286,6 +97966,16 @@ index 0000000..bcb9d76 + struct Qdisc *qdisc; +}; + ++enum tc_root_command { ++ TC_ROOT_GRAFT = 0, ++}; ++ ++struct tc_root_qopt_offload { ++ enum tc_root_command command; ++ u32 handle; ++ bool ingress; ++}; ++ +struct check_loop_arg { + struct qdisc_walker w; + struct Qdisc *p; @@ -92294,8 +97984,16 @@ index 0000000..bcb9d76 + +struct tcf_bind_args { + struct tcf_walker w; -+ u32 classid; ++ long unsigned int base; + long unsigned int cl; ++ u32 classid; ++}; ++ ++struct tc_bind_class_args { ++ struct qdisc_walker w; ++ long unsigned int new_cl; ++ u32 portid; ++ u32 clid; +}; + +struct qdisc_dump_args { @@ -92317,7 +98015,36 @@ index 0000000..bcb9d76 + TCA_ACT_STATS = 4, + TCA_ACT_PAD = 5, + TCA_ACT_COOKIE = 6, -+ __TCA_ACT_MAX = 7, ++ TCA_ACT_FLAGS = 7, ++ TCA_ACT_HW_STATS = 8, ++ TCA_ACT_USED_HW_STATS = 9, ++ __TCA_ACT_MAX = 10, ++}; ++ ++enum tca_id { ++ TCA_ID_UNSPEC = 0, ++ TCA_ID_POLICE = 1, ++ TCA_ID_GACT = 5, ++ TCA_ID_IPT = 6, ++ TCA_ID_PEDIT = 7, ++ TCA_ID_MIRRED = 8, ++ TCA_ID_NAT = 9, ++ TCA_ID_XT = 10, ++ TCA_ID_SKBEDIT = 11, ++ TCA_ID_VLAN = 12, ++ TCA_ID_BPF = 13, ++ TCA_ID_CONNMARK = 14, ++ TCA_ID_SKBMOD = 15, ++ TCA_ID_CSUM = 16, ++ TCA_ID_TUNNEL_KEY = 17, ++ TCA_ID_SIMP = 22, ++ TCA_ID_IFE = 25, ++ TCA_ID_SAMPLE = 26, ++ TCA_ID_CTINFO = 27, ++ TCA_ID_MPLS = 28, ++ TCA_ID_CT = 29, ++ TCA_ID_GATE = 30, ++ __TCA_ID_MAX = 255, +}; + +struct tcf_t { @@ -92327,10 +98054,34 @@ index 0000000..bcb9d76 + __u64 firstuse; +}; + ++struct psample_group { ++ struct list_head list; ++ struct net *net; ++ u32 group_num; ++ u32 refcount; ++ u32 seq; ++ struct callback_head rcu; ++}; ++ ++struct action_gate_entry { ++ u8 gate_state; ++ u32 interval; ++ s32 ipv; ++ s32 maxoctets; ++}; ++ ++enum qdisc_class_ops_flags { ++ QDISC_CLASS_OPS_DOIT_UNLOCKED = 1, ++}; ++ ++enum tcf_proto_ops_flags { ++ TCF_PROTO_OPS_DOIT_UNLOCKED = 1, ++}; ++ +typedef void tcf_chain_head_change_t(struct tcf_proto *, void *); + +struct tcf_idrinfo { -+ spinlock_t lock; ++ struct mutex lock; + struct idr action_idr; + struct net *net; +}; @@ -92342,7 +98093,6 @@ index 0000000..bcb9d76 +struct tc_action { + const struct tc_action_ops *ops; + __u32 type; -+ __u32 order; + struct tcf_idrinfo *idrinfo; + u32 tcfa_index; + refcount_t tcfa_refcnt; @@ -92350,31 +98100,39 @@ index 0000000..bcb9d76 + int tcfa_action; + struct tcf_t tcfa_tm; + struct gnet_stats_basic_packed tcfa_bstats; ++ struct gnet_stats_basic_packed tcfa_bstats_hw; + struct gnet_stats_queue tcfa_qstats; + struct net_rate_estimator *tcfa_rate_est; + spinlock_t tcfa_lock; + struct gnet_stats_basic_cpu *cpu_bstats; ++ struct gnet_stats_basic_cpu *cpu_bstats_hw; + struct gnet_stats_queue *cpu_qstats; + struct tc_cookie *act_cookie; + struct tcf_chain *goto_chain; ++ u32 tcfa_flags; ++ u8 hw_stats; ++ u8 used_hw_stats; ++ bool used_hw_stats_valid; +}; + ++typedef void (*tc_action_priv_destructor)(void *); ++ +struct tc_action_ops { + struct list_head head; + char kind[16]; -+ __u32 type; ++ enum tca_id id; + size_t size; + struct module *owner; + int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); + int (*dump)(struct sk_buff *, struct tc_action *, int, int); + void (*cleanup)(struct tc_action *); -+ int (*lookup)(struct net *, struct tc_action **, u32, struct netlink_ext_ack *); -+ int (*init)(struct net *, struct nlattr *, struct nlattr *, struct tc_action **, int, int, bool, struct netlink_ext_ack *); ++ int (*lookup)(struct net *, struct tc_action **, u32); ++ int (*init)(struct net *, struct nlattr *, struct nlattr *, struct tc_action **, int, int, bool, struct tcf_proto *, u32, struct netlink_ext_ack *); + int (*walk)(struct net *, struct sk_buff *, struct netlink_callback *, int, const struct tc_action_ops *, struct netlink_ext_ack *); -+ void (*stats_update)(struct tc_action *, u64, u32, u64); ++ void (*stats_update)(struct tc_action *, u64, u64, u64, u64, bool); + size_t (*get_fill_size)(const struct tc_action *); -+ struct net_device * (*get_dev)(const struct tc_action *); -+ void (*put_dev)(struct net_device *); ++ struct net_device * (*get_dev)(const struct tc_action *, tc_action_priv_destructor *); ++ struct psample_group * (*get_psample_group)(const struct tc_action *, tc_action_priv_destructor *); +}; + +struct tc_cookie { @@ -92383,19 +98141,19 @@ index 0000000..bcb9d76 + struct callback_head rcu; +}; + -+enum tcf_block_binder_type { -+ TCF_BLOCK_BINDER_TYPE_UNSPEC = 0, -+ TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS = 1, -+ TCF_BLOCK_BINDER_TYPE_CLSACT_EGRESS = 2, -+}; -+ +struct tcf_block_ext_info { -+ enum tcf_block_binder_type binder_type; ++ enum flow_block_binder_type binder_type; + tcf_chain_head_change_t *chain_head_change; + void *chain_head_change_priv; + u32 block_index; +}; + ++struct tcf_qevent { ++ struct tcf_block *block; ++ struct tcf_block_ext_info info; ++ struct tcf_proto *filter_chain; ++}; ++ +struct tcf_exts { + __u32 type; + int nr_actions; @@ -92405,16 +98163,231 @@ index 0000000..bcb9d76 + int police; +}; + -+enum tc_block_command { -+ TC_BLOCK_BIND = 0, -+ TC_BLOCK_UNBIND = 1, ++enum pedit_header_type { ++ TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK = 0, ++ TCA_PEDIT_KEY_EX_HDR_TYPE_ETH = 1, ++ TCA_PEDIT_KEY_EX_HDR_TYPE_IP4 = 2, ++ TCA_PEDIT_KEY_EX_HDR_TYPE_IP6 = 3, ++ TCA_PEDIT_KEY_EX_HDR_TYPE_TCP = 4, ++ TCA_PEDIT_KEY_EX_HDR_TYPE_UDP = 5, ++ __PEDIT_HDR_TYPE_MAX = 6, +}; + -+struct tc_block_offload { -+ enum tc_block_command command; -+ enum tcf_block_binder_type binder_type; -+ struct tcf_block *block; -+ struct netlink_ext_ack *extack; ++enum pedit_cmd { ++ TCA_PEDIT_KEY_EX_CMD_SET = 0, ++ TCA_PEDIT_KEY_EX_CMD_ADD = 1, ++ __PEDIT_CMD_MAX = 2, ++}; ++ ++struct tc_pedit_key { ++ __u32 mask; ++ __u32 val; ++ __u32 off; ++ __u32 at; ++ __u32 offmask; ++ __u32 shift; ++}; ++ ++struct tcf_pedit_key_ex { ++ enum pedit_header_type htype; ++ enum pedit_cmd cmd; ++}; ++ ++struct tcf_pedit { ++ struct tc_action common; ++ unsigned char tcfp_nkeys; ++ unsigned char tcfp_flags; ++ struct tc_pedit_key *tcfp_keys; ++ struct tcf_pedit_key_ex *tcfp_keys_ex; ++}; ++ ++struct tcf_mirred { ++ struct tc_action common; ++ int tcfm_eaction; ++ bool tcfm_mac_header_xmit; ++ struct net_device *tcfm_dev; ++ struct list_head tcfm_list; ++}; ++ ++struct tcf_vlan_params { ++ int tcfv_action; ++ unsigned char tcfv_push_dst[6]; ++ unsigned char tcfv_push_src[6]; ++ u16 tcfv_push_vid; ++ __be16 tcfv_push_proto; ++ u8 tcfv_push_prio; ++ bool tcfv_push_prio_exists; ++ struct callback_head rcu; ++}; ++ ++struct tcf_vlan { ++ struct tc_action common; ++ struct tcf_vlan_params *vlan_p; ++}; ++ ++struct tcf_tunnel_key_params { ++ struct callback_head rcu; ++ int tcft_action; ++ struct metadata_dst *tcft_enc_metadata; ++}; ++ ++struct tcf_tunnel_key { ++ struct tc_action common; ++ struct tcf_tunnel_key_params *params; ++}; ++ ++struct tcf_csum_params { ++ u32 update_flags; ++ struct callback_head rcu; ++}; ++ ++struct tcf_csum { ++ struct tc_action common; ++ struct tcf_csum_params *params; ++}; ++ ++struct tcf_gact { ++ struct tc_action common; ++ u16 tcfg_ptype; ++ u16 tcfg_pval; ++ int tcfg_paction; ++ atomic_t packets; ++}; ++ ++struct tcf_police_params { ++ int tcfp_result; ++ u32 tcfp_ewma_rate; ++ s64 tcfp_burst; ++ u32 tcfp_mtu; ++ s64 tcfp_mtu_ptoks; ++ struct psched_ratecfg rate; ++ bool rate_present; ++ struct psched_ratecfg peak; ++ bool peak_present; ++ struct callback_head rcu; ++}; ++ ++struct tcf_police { ++ struct tc_action common; ++ struct tcf_police_params *params; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ spinlock_t tcfp_lock; ++ s64 tcfp_toks; ++ s64 tcfp_ptoks; ++ s64 tcfp_t_c; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++}; ++ ++struct tcf_sample { ++ struct tc_action common; ++ u32 rate; ++ bool truncate; ++ u32 trunc_size; ++ struct psample_group *psample_group; ++ u32 psample_group_num; ++ struct list_head tcfm_list; ++}; ++ ++struct tcf_skbedit_params { ++ u32 flags; ++ u32 priority; ++ u32 mark; ++ u32 mask; ++ u16 queue_mapping; ++ u16 ptype; ++ struct callback_head rcu; ++}; ++ ++struct tcf_skbedit { ++ struct tc_action common; ++ struct tcf_skbedit_params *params; ++}; ++ ++struct nf_nat_range2 { ++ unsigned int flags; ++ union nf_inet_addr min_addr; ++ union nf_inet_addr max_addr; ++ union nf_conntrack_man_proto min_proto; ++ union nf_conntrack_man_proto max_proto; ++ union nf_conntrack_man_proto base_proto; ++}; ++ ++struct tcf_ct_flow_table; ++ ++struct tcf_ct_params { ++ struct nf_conn *tmpl; ++ u16 zone; ++ u32 mark; ++ u32 mark_mask; ++ u32 labels[4]; ++ u32 labels_mask[4]; ++ struct nf_nat_range2 range; ++ bool ipv4_range; ++ u16 ct_action; ++ struct callback_head rcu; ++ struct tcf_ct_flow_table *ct_ft; ++ struct nf_flowtable *nf_ft; ++}; ++ ++struct tcf_ct { ++ struct tc_action common; ++ struct tcf_ct_params *params; ++}; ++ ++struct tcf_mpls_params { ++ int tcfm_action; ++ u32 tcfm_label; ++ u8 tcfm_tc; ++ u8 tcfm_ttl; ++ u8 tcfm_bos; ++ __be16 tcfm_proto; ++ struct callback_head rcu; ++}; ++ ++struct tcf_mpls { ++ struct tc_action common; ++ struct tcf_mpls_params *mpls_p; ++}; ++ ++struct tcfg_gate_entry { ++ int index; ++ u8 gate_state; ++ u32 interval; ++ s32 ipv; ++ s32 maxoctets; ++ struct list_head list; ++}; ++ ++struct tcf_gate_params { ++ s32 tcfg_priority; ++ u64 tcfg_basetime; ++ u64 tcfg_cycletime; ++ u64 tcfg_cycletime_ext; ++ u32 tcfg_flags; ++ s32 tcfg_clockid; ++ size_t num_entries; ++ struct list_head entries; ++}; ++ ++struct tcf_gate { ++ struct tc_action common; ++ struct tcf_gate_params param; ++ u8 current_gate_status; ++ ktime_t current_close_time; ++ u32 current_entry_octets; ++ s32 current_max_octets; ++ struct tcfg_gate_entry *next_entry; ++ struct hrtimer hitimer; ++ enum tk_offsets tk_offset; +}; + +struct tcf_filter_chain_list_item { @@ -92424,21 +98397,14 @@ index 0000000..bcb9d76 +}; + +struct tcf_net { ++ spinlock_t idr_lock; + struct idr idr; +}; + +struct tcf_block_owner_item { + struct list_head list; + struct Qdisc *q; -+ enum tcf_block_binder_type binder_type; -+}; -+ -+struct tcf_block_cb { -+ struct list_head list; -+ tc_setup_cb_t *cb; -+ void *cb_ident; -+ void *cb_priv; -+ unsigned int refcnt; ++ enum flow_block_binder_type binder_type; +}; + +struct tcf_chain_info { @@ -92453,6 +98419,7 @@ index 0000000..bcb9d76 + struct tcf_block *block; + struct Qdisc *q; + u32 parent; ++ bool terse_dump; +}; + +struct tcamsg { @@ -92475,27 +98442,25 @@ index 0000000..bcb9d76 + const struct tc_action_ops *ops; +}; + -+struct tcf_action_net { -+ struct rhashtable egdev_ht; -+}; -+ -+struct tcf_action_egdev_cb { -+ struct list_head list; -+ tc_setup_cb_t *cb; -+ void *cb_priv; -+}; -+ -+struct tcf_action_egdev { -+ struct rhash_head ht_node; -+ const struct net_device *dev; -+ unsigned int refcnt; -+ struct list_head cb_list; -+}; -+ +struct tc_fifo_qopt { + __u32 limit; +}; + ++enum tc_fifo_command { ++ TC_FIFO_REPLACE = 0, ++ TC_FIFO_DESTROY = 1, ++ TC_FIFO_STATS = 2, ++}; ++ ++struct tc_fifo_qopt_offload { ++ enum tc_fifo_command command; ++ u32 handle; ++ u32 parent; ++ union { ++ struct tc_qopt_offload_stats stats; ++ }; ++}; ++ +enum { + TCA_FQ_CODEL_UNSPEC = 0, + TCA_FQ_CODEL_TARGET = 1, @@ -92544,14 +98509,6 @@ index 0000000..bcb9d76 + }; +}; + -+enum { -+ INET_ECN_NOT_ECT = 0, -+ INET_ECN_ECT_1 = 1, -+ INET_ECN_ECT_0 = 2, -+ INET_ECN_CE = 3, -+ INET_ECN_MASK = 3, -+}; -+ +typedef u32 codel_time_t; + +typedef s32 codel_tdiff_t; @@ -92600,7 +98557,6 @@ index 0000000..bcb9d76 + struct sk_buff *tail; + struct list_head flowchain; + int deficit; -+ u32 dropped; + struct codel_vars cvars; +}; + @@ -92707,8 +98663,9 @@ index 0000000..bcb9d76 + NLMSGERR_ATTR_MSG = 1, + NLMSGERR_ATTR_OFFS = 2, + NLMSGERR_ATTR_COOKIE = 3, -+ __NLMSGERR_ATTR_MAX = 4, -+ NLMSGERR_ATTR_MAX = 3, ++ NLMSGERR_ATTR_POLICY = 4, ++ __NLMSGERR_ATTR_MAX = 5, ++ NLMSGERR_ATTR_MAX = 4, +}; + +struct nl_pktinfo { @@ -92823,6 +98780,15 @@ index 0000000..bcb9d76 + int link; +}; + ++struct bpf_iter__netlink { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct netlink_sock *sk; ++ }; ++}; ++ +enum { + CTRL_CMD_UNSPEC = 0, + CTRL_CMD_NEWFAMILY = 1, @@ -92834,7 +98800,8 @@ index 0000000..bcb9d76 + CTRL_CMD_NEWMCAST_GRP = 7, + CTRL_CMD_DELMCAST_GRP = 8, + CTRL_CMD_GETMCAST_GRP = 9, -+ __CTRL_CMD_MAX = 10, ++ CTRL_CMD_GETPOLICY = 10, ++ __CTRL_CMD_MAX = 11, +}; + +enum { @@ -92846,7 +98813,10 @@ index 0000000..bcb9d76 + CTRL_ATTR_MAXATTR = 5, + CTRL_ATTR_OPS = 6, + CTRL_ATTR_MCAST_GROUPS = 7, -+ __CTRL_ATTR_MAX = 8, ++ CTRL_ATTR_POLICY = 8, ++ CTRL_ATTR_OP_POLICY = 9, ++ CTRL_ATTR_OP = 10, ++ __CTRL_ATTR_MAX = 11, +}; + +enum { @@ -92863,11 +98833,981 @@ index 0000000..bcb9d76 + __CTRL_ATTR_MCAST_GRP_MAX = 3, +}; + ++enum { ++ CTRL_ATTR_POLICY_UNSPEC = 0, ++ CTRL_ATTR_POLICY_DO = 1, ++ CTRL_ATTR_POLICY_DUMP = 2, ++ __CTRL_ATTR_POLICY_DUMP_MAX = 3, ++ CTRL_ATTR_POLICY_DUMP_MAX = 2, ++}; ++ ++struct genl_start_context { ++ const struct genl_family *family; ++ struct nlmsghdr *nlh; ++ struct netlink_ext_ack *extack; ++ const struct genl_ops *ops; ++ int hdrlen; ++}; ++ ++struct netlink_policy_dump_state; ++ ++struct ctrl_dump_policy_ctx { ++ struct netlink_policy_dump_state *state; ++ const struct genl_family *rt; ++ unsigned int opidx; ++ u32 op; ++ u16 fam_id; ++ u8 policies: 1; ++ u8 single_op: 1; ++}; ++ ++enum netlink_attribute_type { ++ NL_ATTR_TYPE_INVALID = 0, ++ NL_ATTR_TYPE_FLAG = 1, ++ NL_ATTR_TYPE_U8 = 2, ++ NL_ATTR_TYPE_U16 = 3, ++ NL_ATTR_TYPE_U32 = 4, ++ NL_ATTR_TYPE_U64 = 5, ++ NL_ATTR_TYPE_S8 = 6, ++ NL_ATTR_TYPE_S16 = 7, ++ NL_ATTR_TYPE_S32 = 8, ++ NL_ATTR_TYPE_S64 = 9, ++ NL_ATTR_TYPE_BINARY = 10, ++ NL_ATTR_TYPE_STRING = 11, ++ NL_ATTR_TYPE_NUL_STRING = 12, ++ NL_ATTR_TYPE_NESTED = 13, ++ NL_ATTR_TYPE_NESTED_ARRAY = 14, ++ NL_ATTR_TYPE_BITFIELD32 = 15, ++}; ++ ++enum netlink_policy_type_attr { ++ NL_POLICY_TYPE_ATTR_UNSPEC = 0, ++ NL_POLICY_TYPE_ATTR_TYPE = 1, ++ NL_POLICY_TYPE_ATTR_MIN_VALUE_S = 2, ++ NL_POLICY_TYPE_ATTR_MAX_VALUE_S = 3, ++ NL_POLICY_TYPE_ATTR_MIN_VALUE_U = 4, ++ NL_POLICY_TYPE_ATTR_MAX_VALUE_U = 5, ++ NL_POLICY_TYPE_ATTR_MIN_LENGTH = 6, ++ NL_POLICY_TYPE_ATTR_MAX_LENGTH = 7, ++ NL_POLICY_TYPE_ATTR_POLICY_IDX = 8, ++ NL_POLICY_TYPE_ATTR_POLICY_MAXTYPE = 9, ++ NL_POLICY_TYPE_ATTR_BITFIELD32_MASK = 10, ++ NL_POLICY_TYPE_ATTR_PAD = 11, ++ NL_POLICY_TYPE_ATTR_MASK = 12, ++ __NL_POLICY_TYPE_ATTR_MAX = 13, ++ NL_POLICY_TYPE_ATTR_MAX = 12, ++}; ++ ++struct netlink_policy_dump_state { ++ unsigned int policy_idx; ++ unsigned int attr_idx; ++ unsigned int n_alloc; ++ struct { ++ const struct nla_policy *policy; ++ unsigned int maxtype; ++ } policies[0]; ++}; ++ ++struct trace_event_raw_bpf_test_finish { ++ struct trace_entry ent; ++ int err; ++ char __data[0]; ++}; ++ ++struct trace_event_data_offsets_bpf_test_finish {}; ++ ++typedef void (*btf_trace_bpf_test_finish)(void *, int *); ++ ++struct bpf_fentry_test_t { ++ struct bpf_fentry_test_t *a; ++}; ++ ++struct bpf_raw_tp_test_run_info { ++ struct bpf_prog *prog; ++ void *ctx; ++ u32 retval; ++}; ++ ++struct ethtool_cmd { ++ __u32 cmd; ++ __u32 supported; ++ __u32 advertising; ++ __u16 speed; ++ __u8 duplex; ++ __u8 port; ++ __u8 phy_address; ++ __u8 transceiver; ++ __u8 autoneg; ++ __u8 mdio_support; ++ __u32 maxtxpkt; ++ __u32 maxrxpkt; ++ __u16 speed_hi; ++ __u8 eth_tp_mdix; ++ __u8 eth_tp_mdix_ctrl; ++ __u32 lp_advertising; ++ __u32 reserved[2]; ++}; ++ ++struct ethtool_value { ++ __u32 cmd; ++ __u32 data; ++}; ++ ++enum tunable_id { ++ ETHTOOL_ID_UNSPEC = 0, ++ ETHTOOL_RX_COPYBREAK = 1, ++ ETHTOOL_TX_COPYBREAK = 2, ++ ETHTOOL_PFC_PREVENTION_TOUT = 3, ++ ETHTOOL_TX_COPYBREAK_BUF_SIZE = 4, ++ __ETHTOOL_TUNABLE_COUNT = 5, ++}; ++ ++enum tunable_type_id { ++ ETHTOOL_TUNABLE_UNSPEC = 0, ++ ETHTOOL_TUNABLE_U8 = 1, ++ ETHTOOL_TUNABLE_U16 = 2, ++ ETHTOOL_TUNABLE_U32 = 3, ++ ETHTOOL_TUNABLE_U64 = 4, ++ ETHTOOL_TUNABLE_STRING = 5, ++ ETHTOOL_TUNABLE_S8 = 6, ++ ETHTOOL_TUNABLE_S16 = 7, ++ ETHTOOL_TUNABLE_S32 = 8, ++ ETHTOOL_TUNABLE_S64 = 9, ++}; ++ ++enum phy_tunable_id { ++ ETHTOOL_PHY_ID_UNSPEC = 0, ++ ETHTOOL_PHY_DOWNSHIFT = 1, ++ ETHTOOL_PHY_FAST_LINK_DOWN = 2, ++ ETHTOOL_PHY_EDPD = 3, ++ __ETHTOOL_PHY_TUNABLE_COUNT = 4, ++}; ++ ++enum ethtool_stringset { ++ ETH_SS_TEST = 0, ++ ETH_SS_STATS = 1, ++ ETH_SS_PRIV_FLAGS = 2, ++ ETH_SS_NTUPLE_FILTERS = 3, ++ ETH_SS_FEATURES = 4, ++ ETH_SS_RSS_HASH_FUNCS = 5, ++ ETH_SS_TUNABLES = 6, ++ ETH_SS_PHY_STATS = 7, ++ ETH_SS_PHY_TUNABLES = 8, ++ ETH_SS_LINK_MODES = 9, ++ ETH_SS_MSG_CLASSES = 10, ++ ETH_SS_WOL_MODES = 11, ++ ETH_SS_SOF_TIMESTAMPING = 12, ++ ETH_SS_TS_TX_TYPES = 13, ++ ETH_SS_TS_RX_FILTERS = 14, ++ ETH_SS_UDP_TUNNEL_TYPES = 15, ++ ETH_SS_COUNT = 16, ++}; ++ ++struct ethtool_gstrings { ++ __u32 cmd; ++ __u32 string_set; ++ __u32 len; ++ __u8 data[0]; ++}; ++ ++struct ethtool_sset_info { ++ __u32 cmd; ++ __u32 reserved; ++ __u64 sset_mask; ++ __u32 data[0]; ++}; ++ ++struct ethtool_perm_addr { ++ __u32 cmd; ++ __u32 size; ++ __u8 data[0]; ++}; ++ ++enum ethtool_flags { ++ ETH_FLAG_TXVLAN = 128, ++ ETH_FLAG_RXVLAN = 256, ++ ETH_FLAG_LRO = 32768, ++ ETH_FLAG_NTUPLE = 134217728, ++ ETH_FLAG_RXHASH = 268435456, ++}; ++ ++struct ethtool_rxfh { ++ __u32 cmd; ++ __u32 rss_context; ++ __u32 indir_size; ++ __u32 key_size; ++ __u8 hfunc; ++ __u8 rsvd8[3]; ++ __u32 rsvd32; ++ __u32 rss_config[0]; ++}; ++ ++struct ethtool_get_features_block { ++ __u32 available; ++ __u32 requested; ++ __u32 active; ++ __u32 never_changed; ++}; ++ ++struct ethtool_gfeatures { ++ __u32 cmd; ++ __u32 size; ++ struct ethtool_get_features_block features[0]; ++}; ++ ++struct ethtool_set_features_block { ++ __u32 valid; ++ __u32 requested; ++}; ++ ++struct ethtool_sfeatures { ++ __u32 cmd; ++ __u32 size; ++ struct ethtool_set_features_block features[0]; ++}; ++ ++enum ethtool_sfeatures_retval_bits { ++ ETHTOOL_F_UNSUPPORTED__BIT = 0, ++ ETHTOOL_F_WISH__BIT = 1, ++ ETHTOOL_F_COMPAT__BIT = 2, ++}; ++ ++struct ethtool_per_queue_op { ++ __u32 cmd; ++ __u32 sub_command; ++ __u32 queue_mask[128]; ++ char data[0]; ++}; ++ ++struct compat_ethtool_rx_flow_spec { ++ u32 flow_type; ++ union ethtool_flow_union h_u; ++ struct ethtool_flow_ext h_ext; ++ union ethtool_flow_union m_u; ++ struct ethtool_flow_ext m_ext; ++ compat_u64 ring_cookie; ++ u32 location; ++} __attribute__((packed)); ++ ++struct compat_ethtool_rxnfc { ++ u32 cmd; ++ u32 flow_type; ++ compat_u64 data; ++ struct compat_ethtool_rx_flow_spec fs; ++ u32 rule_cnt; ++ u32 rule_locs[0]; ++} __attribute__((packed)); ++ ++enum { ++ ETH_RSS_HASH_TOP_BIT = 0, ++ ETH_RSS_HASH_XOR_BIT = 1, ++ ETH_RSS_HASH_CRC32_BIT = 2, ++ ETH_RSS_HASH_FUNCS_COUNT = 3, ++}; ++ ++struct ethtool_rx_flow_rule { ++ struct flow_rule *rule; ++ long unsigned int priv[0]; ++}; ++ ++struct ethtool_rx_flow_spec_input { ++ const struct ethtool_rx_flow_spec *fs; ++ u32 rss_ctx; ++}; ++ ++struct ethtool_link_usettings { ++ struct ethtool_link_settings base; ++ struct { ++ __u32 supported[3]; ++ __u32 advertising[3]; ++ __u32 lp_advertising[3]; ++ } link_modes; ++}; ++ ++struct ethtool_rx_flow_key { ++ struct flow_dissector_key_basic basic; ++ union { ++ struct flow_dissector_key_ipv4_addrs ipv4; ++ struct flow_dissector_key_ipv6_addrs ipv6; ++ }; ++ struct flow_dissector_key_ports tp; ++ struct flow_dissector_key_ip ip; ++ struct flow_dissector_key_vlan vlan; ++ struct flow_dissector_key_eth_addrs eth_addrs; ++ long: 48; ++}; ++ ++struct ethtool_rx_flow_match { ++ struct flow_dissector dissector; ++ int: 32; ++ struct ethtool_rx_flow_key key; ++ struct ethtool_rx_flow_key mask; ++}; ++ ++enum { ++ ETHTOOL_UDP_TUNNEL_TYPE_VXLAN = 0, ++ ETHTOOL_UDP_TUNNEL_TYPE_GENEVE = 1, ++ ETHTOOL_UDP_TUNNEL_TYPE_VXLAN_GPE = 2, ++ __ETHTOOL_UDP_TUNNEL_TYPE_CNT = 3, ++}; ++ ++enum { ++ ETHTOOL_MSG_USER_NONE = 0, ++ ETHTOOL_MSG_STRSET_GET = 1, ++ ETHTOOL_MSG_LINKINFO_GET = 2, ++ ETHTOOL_MSG_LINKINFO_SET = 3, ++ ETHTOOL_MSG_LINKMODES_GET = 4, ++ ETHTOOL_MSG_LINKMODES_SET = 5, ++ ETHTOOL_MSG_LINKSTATE_GET = 6, ++ ETHTOOL_MSG_DEBUG_GET = 7, ++ ETHTOOL_MSG_DEBUG_SET = 8, ++ ETHTOOL_MSG_WOL_GET = 9, ++ ETHTOOL_MSG_WOL_SET = 10, ++ ETHTOOL_MSG_FEATURES_GET = 11, ++ ETHTOOL_MSG_FEATURES_SET = 12, ++ ETHTOOL_MSG_PRIVFLAGS_GET = 13, ++ ETHTOOL_MSG_PRIVFLAGS_SET = 14, ++ ETHTOOL_MSG_RINGS_GET = 15, ++ ETHTOOL_MSG_RINGS_SET = 16, ++ ETHTOOL_MSG_CHANNELS_GET = 17, ++ ETHTOOL_MSG_CHANNELS_SET = 18, ++ ETHTOOL_MSG_COALESCE_GET = 19, ++ ETHTOOL_MSG_COALESCE_SET = 20, ++ ETHTOOL_MSG_PAUSE_GET = 21, ++ ETHTOOL_MSG_PAUSE_SET = 22, ++ ETHTOOL_MSG_EEE_GET = 23, ++ ETHTOOL_MSG_EEE_SET = 24, ++ ETHTOOL_MSG_TSINFO_GET = 25, ++ ETHTOOL_MSG_CABLE_TEST_ACT = 26, ++ ETHTOOL_MSG_CABLE_TEST_TDR_ACT = 27, ++ ETHTOOL_MSG_TUNNEL_INFO_GET = 28, ++ __ETHTOOL_MSG_USER_CNT = 29, ++ ETHTOOL_MSG_USER_MAX = 28, ++}; ++ ++enum { ++ ETHTOOL_A_HEADER_UNSPEC = 0, ++ ETHTOOL_A_HEADER_DEV_INDEX = 1, ++ ETHTOOL_A_HEADER_DEV_NAME = 2, ++ ETHTOOL_A_HEADER_FLAGS = 3, ++ __ETHTOOL_A_HEADER_CNT = 4, ++ ETHTOOL_A_HEADER_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_STRSET_UNSPEC = 0, ++ ETHTOOL_A_STRSET_HEADER = 1, ++ ETHTOOL_A_STRSET_STRINGSETS = 2, ++ ETHTOOL_A_STRSET_COUNTS_ONLY = 3, ++ __ETHTOOL_A_STRSET_CNT = 4, ++ ETHTOOL_A_STRSET_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_LINKINFO_UNSPEC = 0, ++ ETHTOOL_A_LINKINFO_HEADER = 1, ++ ETHTOOL_A_LINKINFO_PORT = 2, ++ ETHTOOL_A_LINKINFO_PHYADDR = 3, ++ ETHTOOL_A_LINKINFO_TP_MDIX = 4, ++ ETHTOOL_A_LINKINFO_TP_MDIX_CTRL = 5, ++ ETHTOOL_A_LINKINFO_TRANSCEIVER = 6, ++ __ETHTOOL_A_LINKINFO_CNT = 7, ++ ETHTOOL_A_LINKINFO_MAX = 6, ++}; ++ ++enum { ++ ETHTOOL_A_LINKMODES_UNSPEC = 0, ++ ETHTOOL_A_LINKMODES_HEADER = 1, ++ ETHTOOL_A_LINKMODES_AUTONEG = 2, ++ ETHTOOL_A_LINKMODES_OURS = 3, ++ ETHTOOL_A_LINKMODES_PEER = 4, ++ ETHTOOL_A_LINKMODES_SPEED = 5, ++ ETHTOOL_A_LINKMODES_DUPLEX = 6, ++ ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG = 7, ++ ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE = 8, ++ __ETHTOOL_A_LINKMODES_CNT = 9, ++ ETHTOOL_A_LINKMODES_MAX = 8, ++}; ++ ++enum { ++ ETHTOOL_A_LINKSTATE_UNSPEC = 0, ++ ETHTOOL_A_LINKSTATE_HEADER = 1, ++ ETHTOOL_A_LINKSTATE_LINK = 2, ++ ETHTOOL_A_LINKSTATE_SQI = 3, ++ ETHTOOL_A_LINKSTATE_SQI_MAX = 4, ++ ETHTOOL_A_LINKSTATE_EXT_STATE = 5, ++ ETHTOOL_A_LINKSTATE_EXT_SUBSTATE = 6, ++ __ETHTOOL_A_LINKSTATE_CNT = 7, ++ ETHTOOL_A_LINKSTATE_MAX = 6, ++}; ++ ++enum { ++ ETHTOOL_A_DEBUG_UNSPEC = 0, ++ ETHTOOL_A_DEBUG_HEADER = 1, ++ ETHTOOL_A_DEBUG_MSGMASK = 2, ++ __ETHTOOL_A_DEBUG_CNT = 3, ++ ETHTOOL_A_DEBUG_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_WOL_UNSPEC = 0, ++ ETHTOOL_A_WOL_HEADER = 1, ++ ETHTOOL_A_WOL_MODES = 2, ++ ETHTOOL_A_WOL_SOPASS = 3, ++ __ETHTOOL_A_WOL_CNT = 4, ++ ETHTOOL_A_WOL_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_FEATURES_UNSPEC = 0, ++ ETHTOOL_A_FEATURES_HEADER = 1, ++ ETHTOOL_A_FEATURES_HW = 2, ++ ETHTOOL_A_FEATURES_WANTED = 3, ++ ETHTOOL_A_FEATURES_ACTIVE = 4, ++ ETHTOOL_A_FEATURES_NOCHANGE = 5, ++ __ETHTOOL_A_FEATURES_CNT = 6, ++ ETHTOOL_A_FEATURES_MAX = 5, ++}; ++ ++enum { ++ ETHTOOL_A_PRIVFLAGS_UNSPEC = 0, ++ ETHTOOL_A_PRIVFLAGS_HEADER = 1, ++ ETHTOOL_A_PRIVFLAGS_FLAGS = 2, ++ __ETHTOOL_A_PRIVFLAGS_CNT = 3, ++ ETHTOOL_A_PRIVFLAGS_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_RINGS_UNSPEC = 0, ++ ETHTOOL_A_RINGS_HEADER = 1, ++ ETHTOOL_A_RINGS_RX_MAX = 2, ++ ETHTOOL_A_RINGS_RX_MINI_MAX = 3, ++ ETHTOOL_A_RINGS_RX_JUMBO_MAX = 4, ++ ETHTOOL_A_RINGS_TX_MAX = 5, ++ ETHTOOL_A_RINGS_RX = 6, ++ ETHTOOL_A_RINGS_RX_MINI = 7, ++ ETHTOOL_A_RINGS_RX_JUMBO = 8, ++ ETHTOOL_A_RINGS_TX = 9, ++ ETHTOOL_A_RINGS_RX_BUF_LEN = 10, ++ __ETHTOOL_A_RINGS_CNT = 11, ++ ETHTOOL_A_RINGS_MAX = 10, ++}; ++ ++enum { ++ ETHTOOL_A_CHANNELS_UNSPEC = 0, ++ ETHTOOL_A_CHANNELS_HEADER = 1, ++ ETHTOOL_A_CHANNELS_RX_MAX = 2, ++ ETHTOOL_A_CHANNELS_TX_MAX = 3, ++ ETHTOOL_A_CHANNELS_OTHER_MAX = 4, ++ ETHTOOL_A_CHANNELS_COMBINED_MAX = 5, ++ ETHTOOL_A_CHANNELS_RX_COUNT = 6, ++ ETHTOOL_A_CHANNELS_TX_COUNT = 7, ++ ETHTOOL_A_CHANNELS_OTHER_COUNT = 8, ++ ETHTOOL_A_CHANNELS_COMBINED_COUNT = 9, ++ __ETHTOOL_A_CHANNELS_CNT = 10, ++ ETHTOOL_A_CHANNELS_MAX = 9, ++}; ++ ++enum { ++ ETHTOOL_A_COALESCE_UNSPEC = 0, ++ ETHTOOL_A_COALESCE_HEADER = 1, ++ ETHTOOL_A_COALESCE_RX_USECS = 2, ++ ETHTOOL_A_COALESCE_RX_MAX_FRAMES = 3, ++ ETHTOOL_A_COALESCE_RX_USECS_IRQ = 4, ++ ETHTOOL_A_COALESCE_RX_MAX_FRAMES_IRQ = 5, ++ ETHTOOL_A_COALESCE_TX_USECS = 6, ++ ETHTOOL_A_COALESCE_TX_MAX_FRAMES = 7, ++ ETHTOOL_A_COALESCE_TX_USECS_IRQ = 8, ++ ETHTOOL_A_COALESCE_TX_MAX_FRAMES_IRQ = 9, ++ ETHTOOL_A_COALESCE_STATS_BLOCK_USECS = 10, ++ ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX = 11, ++ ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX = 12, ++ ETHTOOL_A_COALESCE_PKT_RATE_LOW = 13, ++ ETHTOOL_A_COALESCE_RX_USECS_LOW = 14, ++ ETHTOOL_A_COALESCE_RX_MAX_FRAMES_LOW = 15, ++ ETHTOOL_A_COALESCE_TX_USECS_LOW = 16, ++ ETHTOOL_A_COALESCE_TX_MAX_FRAMES_LOW = 17, ++ ETHTOOL_A_COALESCE_PKT_RATE_HIGH = 18, ++ ETHTOOL_A_COALESCE_RX_USECS_HIGH = 19, ++ ETHTOOL_A_COALESCE_RX_MAX_FRAMES_HIGH = 20, ++ ETHTOOL_A_COALESCE_TX_USECS_HIGH = 21, ++ ETHTOOL_A_COALESCE_TX_MAX_FRAMES_HIGH = 22, ++ ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL = 23, ++ ETHTOOL_A_COALESCE_USE_CQE_MODE_TX = 24, ++ ETHTOOL_A_COALESCE_USE_CQE_MODE_RX = 25, ++ __ETHTOOL_A_COALESCE_CNT = 26, ++ ETHTOOL_A_COALESCE_MAX = 25, ++}; ++ ++enum { ++ ETHTOOL_A_PAUSE_UNSPEC = 0, ++ ETHTOOL_A_PAUSE_HEADER = 1, ++ ETHTOOL_A_PAUSE_AUTONEG = 2, ++ ETHTOOL_A_PAUSE_RX = 3, ++ ETHTOOL_A_PAUSE_TX = 4, ++ ETHTOOL_A_PAUSE_STATS = 5, ++ __ETHTOOL_A_PAUSE_CNT = 6, ++ ETHTOOL_A_PAUSE_MAX = 5, ++}; ++ ++enum { ++ ETHTOOL_A_EEE_UNSPEC = 0, ++ ETHTOOL_A_EEE_HEADER = 1, ++ ETHTOOL_A_EEE_MODES_OURS = 2, ++ ETHTOOL_A_EEE_MODES_PEER = 3, ++ ETHTOOL_A_EEE_ACTIVE = 4, ++ ETHTOOL_A_EEE_ENABLED = 5, ++ ETHTOOL_A_EEE_TX_LPI_ENABLED = 6, ++ ETHTOOL_A_EEE_TX_LPI_TIMER = 7, ++ __ETHTOOL_A_EEE_CNT = 8, ++ ETHTOOL_A_EEE_MAX = 7, ++}; ++ ++enum { ++ ETHTOOL_A_TSINFO_UNSPEC = 0, ++ ETHTOOL_A_TSINFO_HEADER = 1, ++ ETHTOOL_A_TSINFO_TIMESTAMPING = 2, ++ ETHTOOL_A_TSINFO_TX_TYPES = 3, ++ ETHTOOL_A_TSINFO_RX_FILTERS = 4, ++ ETHTOOL_A_TSINFO_PHC_INDEX = 5, ++ __ETHTOOL_A_TSINFO_CNT = 6, ++ ETHTOOL_A_TSINFO_MAX = 5, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_TEST_UNSPEC = 0, ++ ETHTOOL_A_CABLE_TEST_HEADER = 1, ++ __ETHTOOL_A_CABLE_TEST_CNT = 2, ++ ETHTOOL_A_CABLE_TEST_MAX = 1, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_TEST_TDR_UNSPEC = 0, ++ ETHTOOL_A_CABLE_TEST_TDR_HEADER = 1, ++ ETHTOOL_A_CABLE_TEST_TDR_CFG = 2, ++ __ETHTOOL_A_CABLE_TEST_TDR_CNT = 3, ++ ETHTOOL_A_CABLE_TEST_TDR_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_TUNNEL_INFO_UNSPEC = 0, ++ ETHTOOL_A_TUNNEL_INFO_HEADER = 1, ++ ETHTOOL_A_TUNNEL_INFO_UDP_PORTS = 2, ++ __ETHTOOL_A_TUNNEL_INFO_CNT = 3, ++ ETHTOOL_A_TUNNEL_INFO_MAX = 2, ++}; ++ ++enum ethtool_multicast_groups { ++ ETHNL_MCGRP_MONITOR = 0, ++}; ++ ++struct ethnl_req_info { ++ struct net_device *dev; ++ u32 flags; ++}; ++ ++struct ethnl_reply_data { ++ struct net_device *dev; ++}; ++ ++struct ethnl_request_ops { ++ u8 request_cmd; ++ u8 reply_cmd; ++ u16 hdr_attr; ++ unsigned int req_info_size; ++ unsigned int reply_data_size; ++ bool allow_nodev_do; ++ int (*parse_request)(struct ethnl_req_info *, struct nlattr **, struct netlink_ext_ack *); ++ int (*prepare_data)(const struct ethnl_req_info *, struct ethnl_reply_data *, struct genl_info *); ++ int (*reply_size)(const struct ethnl_req_info *, const struct ethnl_reply_data *); ++ int (*fill_reply)(struct sk_buff *, const struct ethnl_req_info *, const struct ethnl_reply_data *); ++ void (*cleanup_data)(struct ethnl_reply_data *); ++}; ++ ++struct ethnl_dump_ctx { ++ const struct ethnl_request_ops *ops; ++ struct ethnl_req_info *req_info; ++ struct ethnl_reply_data *reply_data; ++ int pos_hash; ++ int pos_idx; ++}; ++ ++typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const void *); ++ ++enum { ++ ETHTOOL_A_BITSET_BIT_UNSPEC = 0, ++ ETHTOOL_A_BITSET_BIT_INDEX = 1, ++ ETHTOOL_A_BITSET_BIT_NAME = 2, ++ ETHTOOL_A_BITSET_BIT_VALUE = 3, ++ __ETHTOOL_A_BITSET_BIT_CNT = 4, ++ ETHTOOL_A_BITSET_BIT_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_BITSET_BITS_UNSPEC = 0, ++ ETHTOOL_A_BITSET_BITS_BIT = 1, ++ __ETHTOOL_A_BITSET_BITS_CNT = 2, ++ ETHTOOL_A_BITSET_BITS_MAX = 1, ++}; ++ ++enum { ++ ETHTOOL_A_BITSET_UNSPEC = 0, ++ ETHTOOL_A_BITSET_NOMASK = 1, ++ ETHTOOL_A_BITSET_SIZE = 2, ++ ETHTOOL_A_BITSET_BITS = 3, ++ ETHTOOL_A_BITSET_VALUE = 4, ++ ETHTOOL_A_BITSET_MASK = 5, ++ __ETHTOOL_A_BITSET_CNT = 6, ++ ETHTOOL_A_BITSET_MAX = 5, ++}; ++ ++typedef const char (* const ethnl_string_array_t)[32]; ++ ++enum { ++ ETHTOOL_A_STRING_UNSPEC = 0, ++ ETHTOOL_A_STRING_INDEX = 1, ++ ETHTOOL_A_STRING_VALUE = 2, ++ __ETHTOOL_A_STRING_CNT = 3, ++ ETHTOOL_A_STRING_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_STRINGS_UNSPEC = 0, ++ ETHTOOL_A_STRINGS_STRING = 1, ++ __ETHTOOL_A_STRINGS_CNT = 2, ++ ETHTOOL_A_STRINGS_MAX = 1, ++}; ++ ++enum { ++ ETHTOOL_A_STRINGSET_UNSPEC = 0, ++ ETHTOOL_A_STRINGSET_ID = 1, ++ ETHTOOL_A_STRINGSET_COUNT = 2, ++ ETHTOOL_A_STRINGSET_STRINGS = 3, ++ __ETHTOOL_A_STRINGSET_CNT = 4, ++ ETHTOOL_A_STRINGSET_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_STRINGSETS_UNSPEC = 0, ++ ETHTOOL_A_STRINGSETS_STRINGSET = 1, ++ __ETHTOOL_A_STRINGSETS_CNT = 2, ++ ETHTOOL_A_STRINGSETS_MAX = 1, ++}; ++ ++struct strset_info { ++ bool per_dev; ++ bool free_strings; ++ unsigned int count; ++ const char (*strings)[32]; ++}; ++ ++struct strset_req_info { ++ struct ethnl_req_info base; ++ u32 req_ids; ++ bool counts_only; ++}; ++ ++struct strset_reply_data { ++ struct ethnl_reply_data base; ++ struct strset_info sets[16]; ++}; ++ ++struct linkinfo_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_link_ksettings ksettings; ++ struct ethtool_link_settings *lsettings; ++}; ++ ++struct linkmodes_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_link_ksettings ksettings; ++ struct ethtool_link_settings *lsettings; ++ bool peer_empty; ++}; ++ ++struct link_mode_info { ++ int speed; ++ u8 duplex; ++}; ++ ++struct linkstate_reply_data { ++ struct ethnl_reply_data base; ++ int link; ++ int sqi; ++ int sqi_max; ++ bool link_ext_state_provided; ++ struct ethtool_link_ext_state_info ethtool_link_ext_state_info; ++}; ++ ++struct debug_reply_data { ++ struct ethnl_reply_data base; ++ u32 msg_mask; ++}; ++ ++struct wol_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_wolinfo wol; ++ bool show_sopass; ++}; ++ ++struct features_reply_data { ++ struct ethnl_reply_data base; ++ u32 hw[2]; ++ u32 wanted[2]; ++ u32 active[2]; ++ u32 nochange[2]; ++ u32 all[2]; ++}; ++ ++struct privflags_reply_data { ++ struct ethnl_reply_data base; ++ const char (*priv_flag_names)[32]; ++ unsigned int n_priv_flags; ++ u32 priv_flags; ++}; ++ ++enum ethtool_supported_ring_param { ++ ETHTOOL_RING_USE_RX_BUF_LEN = 1, ++}; ++ ++struct rings_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_ringparam ringparam; ++ struct kernel_ethtool_ringparam kernel_ringparam; ++}; ++ ++struct channels_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_channels channels; ++}; ++ ++struct coalesce_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_coalesce coalesce; ++ struct kernel_ethtool_coalesce kernel_coalesce; ++ u32 supported_params; ++}; ++ ++enum { ++ ETHTOOL_A_PAUSE_STAT_UNSPEC = 0, ++ ETHTOOL_A_PAUSE_STAT_PAD = 1, ++ ETHTOOL_A_PAUSE_STAT_TX_FRAMES = 2, ++ ETHTOOL_A_PAUSE_STAT_RX_FRAMES = 3, ++ __ETHTOOL_A_PAUSE_STAT_CNT = 4, ++ ETHTOOL_A_PAUSE_STAT_MAX = 3, ++}; ++ ++struct pause_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_pauseparam pauseparam; ++ struct ethtool_pause_stats pausestat; ++}; ++ ++struct eee_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_eee eee; ++}; ++ ++struct tsinfo_reply_data { ++ struct ethnl_reply_data base; ++ struct ethtool_ts_info ts_info; ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_PAIR_A = 0, ++ ETHTOOL_A_CABLE_PAIR_B = 1, ++ ETHTOOL_A_CABLE_PAIR_C = 2, ++ ETHTOOL_A_CABLE_PAIR_D = 3, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_RESULT_UNSPEC = 0, ++ ETHTOOL_A_CABLE_RESULT_PAIR = 1, ++ ETHTOOL_A_CABLE_RESULT_CODE = 2, ++ __ETHTOOL_A_CABLE_RESULT_CNT = 3, ++ ETHTOOL_A_CABLE_RESULT_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC = 0, ++ ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR = 1, ++ ETHTOOL_A_CABLE_FAULT_LENGTH_CM = 2, ++ __ETHTOOL_A_CABLE_FAULT_LENGTH_CNT = 3, ++ ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC = 0, ++ ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED = 1, ++ ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED = 2, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_NEST_UNSPEC = 0, ++ ETHTOOL_A_CABLE_NEST_RESULT = 1, ++ ETHTOOL_A_CABLE_NEST_FAULT_LENGTH = 2, ++ __ETHTOOL_A_CABLE_NEST_CNT = 3, ++ ETHTOOL_A_CABLE_NEST_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_TEST_NTF_UNSPEC = 0, ++ ETHTOOL_A_CABLE_TEST_NTF_HEADER = 1, ++ ETHTOOL_A_CABLE_TEST_NTF_STATUS = 2, ++ ETHTOOL_A_CABLE_TEST_NTF_NEST = 3, ++ __ETHTOOL_A_CABLE_TEST_NTF_CNT = 4, ++ ETHTOOL_A_CABLE_TEST_NTF_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_TEST_TDR_CFG_UNSPEC = 0, ++ ETHTOOL_A_CABLE_TEST_TDR_CFG_FIRST = 1, ++ ETHTOOL_A_CABLE_TEST_TDR_CFG_LAST = 2, ++ ETHTOOL_A_CABLE_TEST_TDR_CFG_STEP = 3, ++ ETHTOOL_A_CABLE_TEST_TDR_CFG_PAIR = 4, ++ __ETHTOOL_A_CABLE_TEST_TDR_CFG_CNT = 5, ++ ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX = 4, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_AMPLITUDE_UNSPEC = 0, ++ ETHTOOL_A_CABLE_AMPLITUDE_PAIR = 1, ++ ETHTOOL_A_CABLE_AMPLITUDE_mV = 2, ++ __ETHTOOL_A_CABLE_AMPLITUDE_CNT = 3, ++ ETHTOOL_A_CABLE_AMPLITUDE_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_PULSE_UNSPEC = 0, ++ ETHTOOL_A_CABLE_PULSE_mV = 1, ++ __ETHTOOL_A_CABLE_PULSE_CNT = 2, ++ ETHTOOL_A_CABLE_PULSE_MAX = 1, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_STEP_UNSPEC = 0, ++ ETHTOOL_A_CABLE_STEP_FIRST_DISTANCE = 1, ++ ETHTOOL_A_CABLE_STEP_LAST_DISTANCE = 2, ++ ETHTOOL_A_CABLE_STEP_STEP_DISTANCE = 3, ++ __ETHTOOL_A_CABLE_STEP_CNT = 4, ++ ETHTOOL_A_CABLE_STEP_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_CABLE_TDR_NEST_UNSPEC = 0, ++ ETHTOOL_A_CABLE_TDR_NEST_STEP = 1, ++ ETHTOOL_A_CABLE_TDR_NEST_AMPLITUDE = 2, ++ ETHTOOL_A_CABLE_TDR_NEST_PULSE = 3, ++ __ETHTOOL_A_CABLE_TDR_NEST_CNT = 4, ++ ETHTOOL_A_CABLE_TDR_NEST_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_TUNNEL_UDP_ENTRY_UNSPEC = 0, ++ ETHTOOL_A_TUNNEL_UDP_ENTRY_PORT = 1, ++ ETHTOOL_A_TUNNEL_UDP_ENTRY_TYPE = 2, ++ __ETHTOOL_A_TUNNEL_UDP_ENTRY_CNT = 3, ++ ETHTOOL_A_TUNNEL_UDP_ENTRY_MAX = 2, ++}; ++ ++enum { ++ ETHTOOL_A_TUNNEL_UDP_TABLE_UNSPEC = 0, ++ ETHTOOL_A_TUNNEL_UDP_TABLE_SIZE = 1, ++ ETHTOOL_A_TUNNEL_UDP_TABLE_TYPES = 2, ++ ETHTOOL_A_TUNNEL_UDP_TABLE_ENTRY = 3, ++ __ETHTOOL_A_TUNNEL_UDP_TABLE_CNT = 4, ++ ETHTOOL_A_TUNNEL_UDP_TABLE_MAX = 3, ++}; ++ ++enum { ++ ETHTOOL_A_TUNNEL_UDP_UNSPEC = 0, ++ ETHTOOL_A_TUNNEL_UDP_TABLE = 1, ++ __ETHTOOL_A_TUNNEL_UDP_CNT = 2, ++ ETHTOOL_A_TUNNEL_UDP_MAX = 1, ++}; ++ ++enum udp_parsable_tunnel_type { ++ UDP_TUNNEL_TYPE_VXLAN = 1, ++ UDP_TUNNEL_TYPE_GENEVE = 2, ++ UDP_TUNNEL_TYPE_VXLAN_GPE = 4, ++}; ++ ++enum udp_tunnel_nic_info_flags { ++ UDP_TUNNEL_NIC_INFO_MAY_SLEEP = 1, ++ UDP_TUNNEL_NIC_INFO_OPEN_ONLY = 2, ++ UDP_TUNNEL_NIC_INFO_IPV4_ONLY = 4, ++ UDP_TUNNEL_NIC_INFO_STATIC_IANA_VXLAN = 8, ++}; ++ ++struct udp_tunnel_nic_ops { ++ void (*get_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); ++ void (*set_port_priv)(struct net_device *, unsigned int, unsigned int, u8); ++ void (*add_port)(struct net_device *, struct udp_tunnel_info *); ++ void (*del_port)(struct net_device *, struct udp_tunnel_info *); ++ void (*reset_ntf)(struct net_device *); ++ size_t (*dump_size)(struct net_device *, unsigned int); ++ int (*dump_write)(struct net_device *, unsigned int, struct sk_buff *); ++}; ++ ++struct ethnl_tunnel_info_dump_ctx { ++ struct ethnl_req_info req_info; ++ int pos_hash; ++ int pos_idx; ++}; ++ +struct nf_hook_entries_rcu_head { + struct callback_head head; + void *allocation; +}; + ++struct nf_conn; ++ ++enum nf_nat_manip_type; ++ ++struct nf_nat_hook { ++ int (*parse_nat_setup)(struct nf_conn *, enum nf_nat_manip_type, const struct nlattr *); ++ void (*decode_session)(struct sk_buff *, struct flowi *); ++ unsigned int (*manip_pkt)(struct sk_buff *, struct nf_conn *, enum nf_nat_manip_type, enum ip_conntrack_dir); ++ u64 kabi_reserved1; ++}; ++ ++struct nf_conntrack_tuple; ++ ++struct nf_ct_hook { ++ int (*update)(struct net *, struct sk_buff *); ++ void (*destroy)(struct nf_conntrack *); ++ bool (*get_tuple_skb)(struct nf_conntrack_tuple *, const struct sk_buff *); ++ u64 kabi_reserved1; ++}; ++ ++struct nfnl_ct_hook { ++ struct nf_conn * (*get_ct)(const struct sk_buff *, enum ip_conntrack_info *); ++ size_t (*build_size)(const struct nf_conn *); ++ int (*build)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, u_int16_t, u_int16_t); ++ int (*parse)(const struct nlattr *, struct nf_conn *); ++ int (*attach_expect)(const struct nlattr *, struct nf_conn *, u32, u32); ++ void (*seq_adjust)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, s32); ++ u64 kabi_reserved1; ++}; ++ ++struct nf_ipv6_ops { ++ void (*route_input)(struct sk_buff *); ++ int (*fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); ++ int (*reroute)(struct sk_buff *, const struct nf_queue_entry *); ++ u64 kabi_reserved1; ++}; ++ ++struct nf_queue_entry { ++ struct list_head list; ++ struct sk_buff *skb; ++ unsigned int id; ++ unsigned int hook_index; ++ struct net_device *physin; ++ struct net_device *physout; ++ struct nf_hook_state state; ++ u16 size; ++}; ++ +struct nf_loginfo { + u_int8_t type; + union { @@ -92889,6 +99829,25 @@ index 0000000..bcb9d76 + char buf[1020]; +}; + ++struct nf_bridge_info { ++ enum { ++ BRNF_PROTO_UNCHANGED = 0, ++ BRNF_PROTO_8021Q = 1, ++ BRNF_PROTO_PPPOE = 2, ++ } orig_proto: 8; ++ u8 pkt_otherhost: 1; ++ u8 in_prerouting: 1; ++ u8 bridged_dnat: 1; ++ __u16 frag_max_size; ++ struct net_device *physindev; ++ struct net_device *physoutdev; ++ union { ++ __be32 ipv4_daddr; ++ struct in6_addr ipv6_daddr; ++ char neigh_header[8]; ++ }; ++}; ++ +struct ip_rt_info { + __be32 daddr; + __be32 saddr; @@ -92907,26 +99866,12 @@ index 0000000..bcb9d76 + u_int8_t pf; + int set_optmin; + int set_optmax; -+ int (*set)(struct sock *, int, void *, unsigned int); -+ int (*compat_set)(struct sock *, int, void *, unsigned int); ++ int (*set)(struct sock *, int, sockptr_t, unsigned int); + int get_optmin; + int get_optmax; + int (*get)(struct sock *, int, void *, int *); -+ int (*compat_get)(struct sock *, int, void *, int *); + struct module *owner; -+}; -+ -+struct xt_table_info; -+ -+struct xt_table { -+ struct list_head list; -+ unsigned int valid_hooks; -+ struct xt_table_info *private; -+ struct module *me; -+ u_int8_t af; -+ int priority; -+ int (*table_init)(struct net *); -+ const char name[32]; ++ u64 kabi_reserved1; +}; + +struct xt_action_param; @@ -93081,17 +100026,6 @@ index 0000000..bcb9d76 + u_int8_t family; +}; + -+struct xt_table_info { -+ unsigned int size; -+ unsigned int number; -+ unsigned int initial_entries; -+ unsigned int hook_entry[5]; -+ unsigned int underflow[5]; -+ unsigned int stacksize; -+ void ***jumpstack; -+ unsigned char entries[0]; -+}; -+ +struct xt_percpu_counter_alloc_state { + unsigned int off; + const char *mem; @@ -93211,6 +100145,11 @@ index 0000000..bcb9d76 + unsigned int rtm_flags; +}; + ++struct rtvia { ++ __kernel_sa_family_t rtvia_family; ++ __u8 rtvia_addr[0]; ++}; ++ +struct ip_sf_list; + +struct ip_mc_list { @@ -93255,8 +100194,8 @@ index 0000000..bcb9d76 + +struct ip_sf_list { + struct ip_sf_list *sf_next; -+ __be32 sf_inaddr; + long unsigned int sf_count[2]; ++ __be32 sf_inaddr; + unsigned char sf_gsresp; + unsigned char sf_oldin; + unsigned char sf_crcount; @@ -93293,11 +100232,30 @@ index 0000000..bcb9d76 + refcount_t refcnt; +}; + ++struct fib_rt_info { ++ struct fib_info *fi; ++ u32 tb_id; ++ __be32 dst; ++ int dst_len; ++ u8 tos; ++ u8 type; ++ u8 offload: 1; ++ u8 trap: 1; ++ u8 unused: 6; ++}; ++ +struct uncached_list { + spinlock_t lock; + struct list_head head; +}; + ++struct ip_rt_acct { ++ __u32 o_bytes; ++ __u32 o_packets; ++ __u32 i_bytes; ++ __u32 i_packets; ++}; ++ +struct rt_cache_stat { + unsigned int in_slow_tot; + unsigned int in_slow_mc; @@ -93309,22 +100267,19 @@ index 0000000..bcb9d76 + unsigned int out_slow_mc; +}; + -+struct icmphdr { -+ __u8 type; -+ __u8 code; -+ __sum16 checksum; -+ union { -+ struct { -+ __be16 id; -+ __be16 sequence; -+ } echo; -+ __be32 gateway; -+ struct { -+ __be16 __unused; -+ __be16 mtu; -+ } frag; -+ __u8 reserved[4]; -+ } un; ++struct fib_alias { ++ struct hlist_node fa_list; ++ struct fib_info *fa_info; ++ u8 fa_tos; ++ u8 fa_type; ++ u8 fa_state; ++ u8 fa_slen; ++ u32 tb_id; ++ s16 fa_default; ++ u8 offload: 1; ++ u8 trap: 1; ++ u8 unused: 6; ++ struct callback_head rcu; +}; + +struct fib_prop { @@ -93332,6 +100287,11 @@ index 0000000..bcb9d76 + u8 scope; +}; + ++struct net_offload { ++ struct offload_callbacks callbacks; ++ unsigned int flags; ++}; ++ +struct raw_hashinfo { + rwlock_t lock; + struct hlist_head ht[256]; @@ -93357,6 +100317,7 @@ index 0000000..bcb9d76 + INET_FRAG_FIRST_IN = 1, + INET_FRAG_LAST_IN = 2, + INET_FRAG_COMPLETE = 4, ++ INET_FRAG_HASH_DEAD = 8, +}; + +struct ipq { @@ -93384,6 +100345,24 @@ index 0000000..bcb9d76 + __u16 gso_size; +}; + ++struct ip_fraglist_iter { ++ struct sk_buff *frag; ++ struct iphdr *iph; ++ int offset; ++ unsigned int hlen; ++}; ++ ++struct ip_frag_state { ++ bool DF; ++ unsigned int hlen; ++ unsigned int ll_rs; ++ unsigned int mtu; ++ unsigned int left; ++ int offset; ++ int ptr; ++ __be16 not_last_frag; ++}; ++ +struct ip_reply_arg { + struct kvec iov[1]; + int flags; @@ -93408,26 +100387,49 @@ index 0000000..bcb9d76 + __be32 imsf_slist[1]; +}; + ++struct group_req { ++ __u32 gr_interface; ++ struct __kernel_sockaddr_storage gr_group; ++}; ++ ++struct group_source_req { ++ __u32 gsr_interface; ++ struct __kernel_sockaddr_storage gsr_group; ++ struct __kernel_sockaddr_storage gsr_source; ++}; ++ ++struct group_filter { ++ __u32 gf_interface; ++ struct __kernel_sockaddr_storage gf_group; ++ __u32 gf_fmode; ++ __u32 gf_numsrc; ++ struct __kernel_sockaddr_storage gf_slist[1]; ++}; ++ +struct in_pktinfo { + int ipi_ifindex; + struct in_addr ipi_spec_dst; + struct in_addr ipi_addr; +}; + -+struct inet_timewait_sock { -+ struct sock_common __tw_common; -+ __u32 tw_mark; -+ volatile unsigned char tw_substate; -+ unsigned char tw_rcv_wscale; -+ __be16 tw_sport; -+ unsigned int tw_kill: 1; -+ unsigned int tw_transparent: 1; -+ unsigned int tw_flowlabel: 20; -+ unsigned int tw_pad: 2; -+ unsigned int tw_tos: 8; -+ struct timer_list tw_timer; -+ struct inet_bind_bucket *tw_tb; -+}; ++struct compat_group_req { ++ __u32 gr_interface; ++ struct __kernel_sockaddr_storage gr_group; ++} __attribute__((packed)); ++ ++struct compat_group_source_req { ++ __u32 gsr_interface; ++ struct __kernel_sockaddr_storage gsr_group; ++ struct __kernel_sockaddr_storage gsr_source; ++} __attribute__((packed)); ++ ++struct compat_group_filter { ++ __u32 gf_interface; ++ struct __kernel_sockaddr_storage gf_group; ++ __u32 gf_fmode; ++ __u32 gf_numsrc; ++ struct __kernel_sockaddr_storage gf_slist[1]; ++} __attribute__((packed)); + +struct tcpvegas_info { + __u32 tcpv_enabled; @@ -93525,6 +100527,7 @@ index 0000000..bcb9d76 + __u8 tcpi_snd_wscale: 4; + __u8 tcpi_rcv_wscale: 4; + __u8 tcpi_delivery_rate_app_limited: 1; ++ __u8 tcpi_fastopen_client_fail: 2; + __u32 tcpi_rto; + __u32 tcpi_ato; + __u32 tcpi_snd_mss; @@ -93569,6 +100572,8 @@ index 0000000..bcb9d76 + __u64 tcpi_bytes_retrans; + __u32 tcpi_dsack_dups; + __u32 tcpi_reord_seen; ++ __u32 tcpi_rcv_ooopack; ++ __u32 tcpi_snd_wnd; +}; + +enum { @@ -93594,12 +100599,20 @@ index 0000000..bcb9d76 + 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, +}; + +struct tcp_zerocopy_receive { + __u64 address; + __u32 length; + __u32 recv_skip_hint; ++ __u32 inq; ++ __s32 err; ++ __u64 copybuf_address; ++ __s32 copybuf_len; +}; + +struct tcp_md5sig_pool { @@ -93621,11 +100634,24 @@ index 0000000..bcb9d76 + unsigned int flags; +}; + ++enum tcp_fastopen_client_fail { ++ TFO_STATUS_UNSPEC = 0, ++ TFO_COOKIE_UNAVAILABLE = 1, ++ TFO_DATA_NOT_ACKED = 2, ++ TFO_SYN_RETRANSMITTED = 3, ++}; ++ +struct tcp_sack_block_wire { + __be32 start_seq; + __be32 end_seq; +}; + ++struct static_key_false_deferred { ++ struct static_key_false key; ++ long unsigned int timeout; ++ struct delayed_work work; ++}; ++ +enum tcp_queue { + TCP_FRAG_IN_WRITE_QUEUE = 0, + TCP_FRAG_IN_RTX_QUEUE = 1, @@ -93638,12 +100664,13 @@ index 0000000..bcb9d76 +}; + +struct tcp_sacktag_state { -+ u32 reord; + u64 first_sackt; + u64 last_sackt; -+ struct rate_sample *rate; ++ u32 reord; ++ u32 sack_delivered; + int flag; + unsigned int mss_now; ++ struct rate_sample *rate; +}; + +enum pkt_hash_types { @@ -93653,6 +100680,11 @@ index 0000000..bcb9d76 + PKT_HASH_TYPE_L4 = 3, +}; + ++enum { ++ BPF_WRITE_HDR_TCP_CURRENT_MSS = 1, ++ BPF_WRITE_HDR_TCP_SYNACK_COOKIE = 2, ++}; ++ +enum tsq_flags { + TSQF_THROTTLED = 1, + TSQF_QUEUED = 2, @@ -93662,16 +100694,20 @@ index 0000000..bcb9d76 + TCPF_MTU_REDUCED_DEFERRED = 32, +}; + ++struct mptcp_out_options {}; ++ +struct tcp_out_options { + u16 options; + u16 mss; + u8 ws; + u8 num_sack_blocks; + u8 hash_size; ++ u8 bpf_opt_len; + __u8 *hash_location; + __u32 tsval; + __u32 tsecr; + struct tcp_fastopen_cookie *fastopen_cookie; ++ struct mptcp_out_options mptcp; +}; + +struct tsq_tasklet { @@ -93684,18 +100720,13 @@ index 0000000..bcb9d76 + __u8 tcpm_flags; + __u8 tcpm_prefixlen; + __u16 tcpm_keylen; -+ __u32 __tcpm_pad; ++ int tcpm_ifindex; + __u8 tcpm_key[80]; +}; + -+struct tcp_timewait_sock { -+ struct inet_timewait_sock tw_sk; -+ u32 tw_rcv_wnd; -+ u32 tw_ts_offset; -+ u32 tw_ts_recent; -+ u32 tw_last_oow_ack_time; -+ int tw_ts_recent_stamp; -+ struct tcp_md5sig_key *tw_md5_key; ++struct icmp_err { ++ int errno; ++ unsigned int fatal: 1; +}; + +enum tcp_tw_status { @@ -93726,6 +100757,7 @@ index 0000000..bcb9d76 + struct seq_net_private p; + enum tcp_seq_states state; + struct sock *syn_wait_sk; ++ struct tcp_seq_afinfo *bpf_seq_afinfo; + int bucket; + int offset; + int sbucket; @@ -93733,6 +100765,16 @@ index 0000000..bcb9d76 + loff_t last_pos; +}; + ++struct bpf_iter__tcp { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct sock_common *sk_common; ++ }; ++ uid_t uid; ++}; ++ +enum tcp_metric_index { + TCP_METRIC_RTT = 0, + TCP_METRIC_RTTVAR = 1, @@ -93817,35 +100859,17 @@ index 0000000..bcb9d76 + int hlen; +}; + -+struct udp_sock { -+ struct inet_sock inet; -+ int pending; -+ unsigned int corkflag; -+ __u8 encap_type; -+ unsigned char no_check6_tx: 1; -+ unsigned char no_check6_rx: 1; -+ __u16 len; -+ __u16 gso_size; -+ __u16 pcslen; -+ __u16 pcrlen; -+ __u8 pcflag; -+ __u8 unused[3]; -+ int (*encap_rcv)(struct sock *, struct sk_buff *); -+ void (*encap_destroy)(struct sock *); -+ struct sk_buff * (*gro_receive)(struct sock *, struct list_head *, struct sk_buff *); -+ int (*gro_complete)(struct sock *, struct sk_buff *, int); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sk_buff_head reader_queue; -+ int forward_deficit; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; ++struct ip_tunnel_encap { ++ u16 type; ++ u16 flags; ++ __be16 sport; ++ __be16 dport; ++}; ++ ++struct ip_tunnel_encap_ops { ++ size_t (*encap_hlen)(struct ip_tunnel_encap *); ++ int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi4 *); ++ int (*err_handler)(struct sk_buff *, u32); +}; + +struct udp_skb_cb { @@ -93872,6 +100896,19 @@ index 0000000..bcb9d76 +struct udp_iter_state { + struct seq_net_private p; + int bucket; ++ struct udp_seq_afinfo *bpf_seq_afinfo; ++}; ++ ++struct bpf_iter__udp { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct udp_sock *udp_sk; ++ }; ++ uid_t uid; ++ int: 32; ++ int bucket; +}; + +struct inet_protosw { @@ -93895,10 +100932,6 @@ index 0000000..bcb9d76 + char arp_dev[16]; +}; + -+typedef struct { -+ char ax25_call[7]; -+} ax25_address; -+ +enum { + AX25_VALUES_IPDEFMODE = 0, + AX25_VALUES_AXDEFMODE = 1, @@ -93917,16 +100950,6 @@ index 0000000..bcb9d76 + AX25_MAX_VALUES = 14, +}; + -+struct ax25_dev { -+ struct ax25_dev *next; -+ struct net_device *dev; -+ struct net_device *forward; -+ struct ctl_table_header *sysheader; -+ int values[14]; -+}; -+ -+typedef struct ax25_dev ax25_dev; -+ +enum ip_conntrack_status { + IPS_EXPECTED_BIT = 0, + IPS_EXPECTED = 1, @@ -93956,12 +100979,16 @@ index 0000000..bcb9d76 + IPS_TEMPLATE = 2048, + IPS_UNTRACKED_BIT = 12, + IPS_UNTRACKED = 4096, ++ IPS_NAT_CLASH_BIT = 12, ++ IPS_NAT_CLASH = 4096, + IPS_HELPER_BIT = 13, + IPS_HELPER = 8192, + IPS_OFFLOAD_BIT = 14, + IPS_OFFLOAD = 16384, -+ IPS_UNCHANGEABLE_MASK = 19449, -+ __IPS_MAX_BIT = 15, ++ IPS_HW_OFFLOAD_BIT = 15, ++ IPS_HW_OFFLOAD = 32768, ++ IPS_UNCHANGEABLE_MASK = 56313, ++ __IPS_MAX_BIT = 16, +}; + +enum { @@ -93970,13 +100997,17 @@ index 0000000..bcb9d76 + XFRM_LOOKUP_KEEP_DST_REF = 4, +}; + -+struct pingv6_ops { -+ int (*ipv6_recv_error)(struct sock *, struct msghdr *, int, int *); -+ void (*ip6_datagram_recv_common_ctl)(struct sock *, struct msghdr *, struct sk_buff *); -+ void (*ip6_datagram_recv_specific_ctl)(struct sock *, struct msghdr *, struct sk_buff *); -+ int (*icmpv6_err_convert)(u8, u8, int *); -+ void (*ipv6_icmp_error)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); -+ int (*ipv6_chk_addr)(struct net *, const struct in6_addr *, const struct net_device *, int); ++struct icmp_ext_hdr { ++ __u8 reserved1: 4; ++ __u8 version: 4; ++ __u8 reserved2; ++ __sum16 checksum; ++}; ++ ++struct icmp_extobj_hdr { ++ __be16 length; ++ __u8 class_num; ++ __u8 class_type; +}; + +struct icmp_bxm { @@ -93996,16 +101027,6 @@ index 0000000..bcb9d76 + short int error; +}; + -+enum grep_conntrack { -+ GRE_CT_UNREPLIED = 0, -+ GRE_CT_REPLIED = 1, -+ GRE_CT_MAX = 2, -+}; -+ -+struct nf_conntrack_l4proto; -+ -+struct nf_conntrack_l3proto; -+ +struct ifaddrmsg { + __u8 ifa_family; + __u8 ifa_prefixlen; @@ -94025,7 +101046,8 @@ index 0000000..bcb9d76 + IFA_MULTICAST = 7, + IFA_FLAGS = 8, + IFA_RT_PRIORITY = 9, -+ __IFA_MAX = 10, ++ IFA_TARGET_NETNSID = 10, ++ __IFA_MAX = 11, +}; + +struct ifa_cacheinfo { @@ -94064,11 +101086,63 @@ index 0000000..bcb9d76 + __NETCONFA_MAX = 9, +}; + ++struct inet_fill_args { ++ u32 portid; ++ u32 seq; ++ int event; ++ unsigned int flags; ++ int netnsid; ++ int ifindex; ++}; ++ +struct devinet_sysctl_table { + struct ctl_table_header *sysctl_header; + struct ctl_table devinet_vars[33]; +}; + ++struct rtentry { ++ long unsigned int rt_pad1; ++ struct sockaddr rt_dst; ++ struct sockaddr rt_gateway; ++ struct sockaddr rt_genmask; ++ short unsigned int rt_flags; ++ short int rt_pad2; ++ long unsigned int rt_pad3; ++ void *rt_pad4; ++ short int rt_metric; ++ char *rt_dev; ++ long unsigned int rt_mtu; ++ long unsigned int rt_window; ++ short unsigned int rt_irtt; ++}; ++ ++struct pingv6_ops { ++ int (*ipv6_recv_error)(struct sock *, struct msghdr *, int, int *); ++ void (*ip6_datagram_recv_common_ctl)(struct sock *, struct msghdr *, struct sk_buff *); ++ void (*ip6_datagram_recv_specific_ctl)(struct sock *, struct msghdr *, struct sk_buff *); ++ int (*icmpv6_err_convert)(u8, u8, int *); ++ void (*ipv6_icmp_error)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); ++ int (*ipv6_chk_addr)(struct net *, const struct in6_addr *, const struct net_device *, int); ++}; ++ ++struct compat_rtentry { ++ u32 rt_pad1; ++ struct sockaddr rt_dst; ++ struct sockaddr rt_gateway; ++ struct sockaddr rt_genmask; ++ short unsigned int rt_flags; ++ short int rt_pad2; ++ u32 rt_pad3; ++ unsigned char rt_tos; ++ unsigned char rt_class; ++ short int rt_pad4; ++ short int rt_metric; ++ compat_uptr_t rt_dev; ++ u32 rt_mtu; ++ u32 rt_window; ++ short unsigned int rt_irtt; ++}; ++ +struct igmphdr { + __u8 type; + __u8 code; @@ -94119,26 +101193,24 @@ index 0000000..bcb9d76 + struct ip_mc_list *im; +}; + -+struct nl_info { -+ struct nlmsghdr *nlh; -+ struct net *nl_net; -+ u32 portid; -+ bool skip_notify; -+}; -+ +struct fib_config { + u8 fc_dst_len; + u8 fc_tos; + u8 fc_protocol; + u8 fc_scope; + u8 fc_type; ++ u8 fc_gw_family; + u32 fc_table; + __be32 fc_dst; -+ __be32 fc_gw; ++ union { ++ __be32 fc_gw4; ++ struct in6_addr fc_gw6; ++ }; + int fc_oif; + u32 fc_flags; + u32 fc_priority; + __be32 fc_prefsrc; ++ u32 fc_nh_id; + struct nlattr *fc_mx; + struct rtnexthop *fc_mp; + int fc_mx_len; @@ -94164,23 +101236,22 @@ index 0000000..bcb9d76 + int err; +}; + ++struct fib_dump_filter { ++ u32 table_id; ++ bool filter_set; ++ bool dump_routes; ++ bool dump_exceptions; ++ unsigned char protocol; ++ unsigned char rt_type; ++ unsigned int flags; ++ struct net_device *dev; ++}; ++ +struct fib_nh_notifier_info { + struct fib_notifier_info info; + struct fib_nh *fib_nh; +}; + -+struct fib_alias { -+ struct hlist_node fa_list; -+ struct fib_info *fa_info; -+ u8 fa_tos; -+ u8 fa_type; -+ u8 fa_state; -+ u8 fa_slen; -+ u32 tb_id; -+ s16 fa_default; -+ struct callback_head rcu; -+}; -+ +struct fib_entry_notifier_info { + struct fib_notifier_info info; + u32 dst; @@ -94325,7 +101396,8 @@ index 0000000..bcb9d76 + LWTUNNEL_IP_TOS = 5, + LWTUNNEL_IP_FLAGS = 6, + LWTUNNEL_IP_PAD = 7, -+ __LWTUNNEL_IP_MAX = 8, ++ LWTUNNEL_IP_OPTS = 8, ++ __LWTUNNEL_IP_MAX = 9, +}; + +enum lwtunnel_ip6_t { @@ -94337,12 +101409,148 @@ index 0000000..bcb9d76 + LWTUNNEL_IP6_TC = 5, + LWTUNNEL_IP6_FLAGS = 6, + LWTUNNEL_IP6_PAD = 7, -+ __LWTUNNEL_IP6_MAX = 8, ++ LWTUNNEL_IP6_OPTS = 8, ++ __LWTUNNEL_IP6_MAX = 9, ++}; ++ ++enum { ++ LWTUNNEL_IP_OPTS_UNSPEC = 0, ++ LWTUNNEL_IP_OPTS_GENEVE = 1, ++ LWTUNNEL_IP_OPTS_VXLAN = 2, ++ LWTUNNEL_IP_OPTS_ERSPAN = 3, ++ __LWTUNNEL_IP_OPTS_MAX = 4, ++}; ++ ++enum { ++ LWTUNNEL_IP_OPT_GENEVE_UNSPEC = 0, ++ LWTUNNEL_IP_OPT_GENEVE_CLASS = 1, ++ LWTUNNEL_IP_OPT_GENEVE_TYPE = 2, ++ LWTUNNEL_IP_OPT_GENEVE_DATA = 3, ++ __LWTUNNEL_IP_OPT_GENEVE_MAX = 4, ++}; ++ ++enum { ++ LWTUNNEL_IP_OPT_VXLAN_UNSPEC = 0, ++ LWTUNNEL_IP_OPT_VXLAN_GBP = 1, ++ __LWTUNNEL_IP_OPT_VXLAN_MAX = 2, ++}; ++ ++enum { ++ LWTUNNEL_IP_OPT_ERSPAN_UNSPEC = 0, ++ LWTUNNEL_IP_OPT_ERSPAN_VER = 1, ++ LWTUNNEL_IP_OPT_ERSPAN_INDEX = 2, ++ LWTUNNEL_IP_OPT_ERSPAN_DIR = 3, ++ LWTUNNEL_IP_OPT_ERSPAN_HWID = 4, ++ __LWTUNNEL_IP_OPT_ERSPAN_MAX = 5, +}; + +struct ip6_tnl_encap_ops { + size_t (*encap_hlen)(struct ip_tunnel_encap *); + int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi6 *); ++ int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); ++}; ++ ++struct geneve_opt { ++ __be16 opt_class; ++ u8 type; ++ u8 length: 5; ++ u8 r3: 1; ++ u8 r2: 1; ++ u8 r1: 1; ++ u8 opt_data[0]; ++}; ++ ++struct vxlan_metadata { ++ u32 gbp; ++}; ++ ++struct erspan_md2 { ++ __be32 timestamp; ++ __be16 sgt; ++ __u8 hwid_upper: 2; ++ __u8 ft: 5; ++ __u8 p: 1; ++ __u8 o: 1; ++ __u8 gra: 2; ++ __u8 dir: 1; ++ __u8 hwid: 4; ++}; ++ ++struct erspan_metadata { ++ int version; ++ union { ++ __be32 index; ++ struct erspan_md2 md2; ++ } u; ++}; ++ ++struct nhmsg { ++ unsigned char nh_family; ++ unsigned char nh_scope; ++ unsigned char nh_protocol; ++ unsigned char resvd; ++ unsigned int nh_flags; ++}; ++ ++struct nexthop_grp { ++ __u32 id; ++ __u8 weight; ++ __u8 resvd1; ++ __u16 resvd2; ++}; ++ ++enum { ++ NEXTHOP_GRP_TYPE_MPATH = 0, ++ __NEXTHOP_GRP_TYPE_MAX = 1, ++}; ++ ++enum { ++ NHA_UNSPEC = 0, ++ NHA_ID = 1, ++ NHA_GROUP = 2, ++ NHA_GROUP_TYPE = 3, ++ NHA_BLACKHOLE = 4, ++ NHA_OIF = 5, ++ NHA_GATEWAY = 6, ++ NHA_ENCAP_TYPE = 7, ++ NHA_ENCAP = 8, ++ NHA_GROUPS = 9, ++ NHA_MASTER = 10, ++ NHA_FDB = 11, ++ __NHA_MAX = 12, ++}; ++ ++struct nh_config { ++ u32 nh_id; ++ u8 nh_family; ++ u8 nh_protocol; ++ u8 nh_blackhole; ++ u8 nh_fdb; ++ u32 nh_flags; ++ int nh_ifindex; ++ struct net_device *dev; ++ union { ++ __be32 ipv4; ++ struct in6_addr ipv6; ++ } gw; ++ struct nlattr *nh_grp; ++ u16 nh_grp_type; ++ struct nlattr *nh_encap; ++ u16 nh_encap_type; ++ u32 nlflags; ++ struct nl_info nlinfo; ++}; ++ ++enum nexthop_event_type { ++ NEXTHOP_EVENT_DEL = 0, ++}; ++ ++struct inet6_protocol { ++ void (*early_demux)(struct sk_buff *); ++ void (*early_demux_handler)(struct sk_buff *); ++ int (*handler)(struct sk_buff *); ++ int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); ++ unsigned int flags; +}; + +struct snmp_mib { @@ -94428,7 +101636,7 @@ index 0000000..bcb9d76 + unsigned char im_msgtype; + unsigned char im_mbz; + unsigned char im_vif; -+ unsigned char unused3; ++ unsigned char im_vif_hi; + struct in_addr im_src; + struct in_addr im_dst; +}; @@ -94473,7 +101681,8 @@ index 0000000..bcb9d76 + IPMRA_CREPORT_SRC_ADDR = 3, + IPMRA_CREPORT_DST_ADDR = 4, + IPMRA_CREPORT_PKT = 5, -+ __IPMRA_CREPORT_MAX = 6, ++ IPMRA_CREPORT_TABLE = 6, ++ __IPMRA_CREPORT_MAX = 7, +}; + +struct vif_device { @@ -94589,16 +101798,6 @@ index 0000000..bcb9d76 + }; +}; + -+struct ip_tunnel_parm { -+ char name[16]; -+ int link; -+ __be16 i_flags; -+ __be16 o_flags; -+ __be32 i_key; -+ __be32 o_key; -+ struct iphdr iph; -+}; -+ +struct ipmr_result { + struct mr_table *mrt; +}; @@ -94645,6 +101844,58 @@ index 0000000..bcb9d76 + u32 curr_rtt; +}; + ++struct tls_rec { ++ struct list_head list; ++ int tx_ready; ++ int tx_flags; ++ struct sk_msg msg_plaintext; ++ struct sk_msg msg_encrypted; ++ struct scatterlist sg_aead_in[2]; ++ struct scatterlist sg_aead_out[2]; ++ char content_type; ++ struct scatterlist sg_content_type; ++ char aad_space[13]; ++ u8 iv_data[16]; ++ struct aead_request aead_req; ++ u8 aead_req_ctx[0]; ++}; ++ ++struct tx_work { ++ struct delayed_work work; ++ struct sock *sk; ++}; ++ ++struct tls_sw_context_tx { ++ struct crypto_aead *aead_send; ++ struct crypto_wait async_wait; ++ struct tx_work tx_work; ++ struct tls_rec *open_rec; ++ struct list_head tx_list; ++ atomic_t encrypt_pending; ++ spinlock_t encrypt_compl_lock; ++ int async_notify; ++ u8 async_capable: 1; ++ long unsigned int tx_bitmask; ++}; ++ ++enum { ++ TCP_BPF_IPV4 = 0, ++ TCP_BPF_IPV6 = 1, ++ TCP_BPF_NUM_PROTS = 2, ++}; ++ ++enum { ++ TCP_BPF_BASE = 0, ++ TCP_BPF_TX = 1, ++ TCP_BPF_NUM_CFGS = 2, ++}; ++ ++enum { ++ UDP_BPF_IPV4 = 0, ++ UDP_BPF_IPV6 = 1, ++ UDP_BPF_NUM_PROTS = 2, ++}; ++ +struct netlbl_audit { + u32 secid; + kuid_t loginuid; @@ -94693,28 +101944,16 @@ index 0000000..bcb9d76 + struct list_head list; +}; + -+struct strp_msg { -+ int full_len; -+ int offset; -+}; ++struct ZSTD_CStream_s; + -+struct ZSTD_CStream_s___2; -+ -+typedef struct ZSTD_CStream_s___2 ZSTD_CStream___2; -+ -+struct ZSTD_DStream_s___2; -+ -+typedef struct ZSTD_DStream_s___2 ZSTD_DStream___2; ++typedef struct ZSTD_CStream_s ZSTD_CStream___2; + +struct tcp_comp_context_tx { + ZSTD_CStream___2 *cstream; + void *cworkspace; + void *plaintext_data; + void *compressed_data; -+ struct scatterlist sg_data[17]; -+ unsigned int sg_size; -+ int sg_num; -+ struct scatterlist *partially_send; ++ struct sk_msg msg; + bool in_tcp_sendpages; +}; + @@ -94741,13 +101980,26 @@ index 0000000..bcb9d76 + struct dst_ops *dst_ops; + struct dst_entry * (*dst_lookup)(struct net *, int, int, const xfrm_address_t *, const xfrm_address_t *, u32); + int (*get_saddr)(struct net *, int, xfrm_address_t *, xfrm_address_t *, u32); -+ void (*decode_session)(struct sk_buff *, struct flowi *, int); -+ int (*get_tos)(const struct flowi *); -+ int (*init_path)(struct xfrm_dst *, struct dst_entry *, int); + int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); + struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); +}; + ++struct xfrm_state_afinfo { ++ u8 family; ++ u8 proto; ++ const struct xfrm_type_offload *type_offload_esp; ++ const struct xfrm_type *type_esp; ++ const struct xfrm_type *type_ipip; ++ const struct xfrm_type *type_ipip6; ++ const struct xfrm_type *type_comp; ++ const struct xfrm_type *type_ah; ++ const struct xfrm_type *type_routing; ++ const struct xfrm_type *type_dstopts; ++ int (*output)(struct net *, struct sock *, struct sk_buff *); ++ int (*transport_finish)(struct sk_buff *, int); ++ void (*local_error)(struct sk_buff *, u32); ++}; ++ +struct ip_tunnel; + +struct ip6_tnl; @@ -94783,7 +102035,8 @@ index 0000000..bcb9d76 +}; + +struct xfrm_input_afinfo { -+ unsigned int family; ++ u8 family; ++ bool is_ipip; + int (*callback)(struct sk_buff *, u8, int); +}; + @@ -94796,6 +102049,8 @@ index 0000000..bcb9d76 + int priority; +}; + ++typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); ++ +enum { + XFRM_STATE_VOID = 0, + XFRM_STATE_ACQ = 1, @@ -94861,11 +102116,62 @@ index 0000000..bcb9d76 + u32 spdhmcnt; +}; + ++struct ip6_mh { ++ __u8 ip6mh_proto; ++ __u8 ip6mh_hdrlen; ++ __u8 ip6mh_type; ++ __u8 ip6mh_reserved; ++ __u16 ip6mh_cksum; ++ __u8 data[0]; ++}; ++ +struct xfrm_flo { + struct dst_entry *dst_orig; + u8 flags; +}; + ++struct xfrm_pol_inexact_node { ++ struct rb_node node; ++ union { ++ xfrm_address_t addr; ++ struct callback_head rcu; ++ }; ++ u8 prefixlen; ++ struct rb_root root; ++ struct hlist_head hhead; ++}; ++ ++struct xfrm_pol_inexact_key { ++ possible_net_t net; ++ u32 if_id; ++ u16 family; ++ u8 dir; ++ u8 type; ++}; ++ ++struct xfrm_pol_inexact_bin { ++ struct xfrm_pol_inexact_key k; ++ struct rhash_head head; ++ struct hlist_head hhead; ++ seqcount_spinlock_t count; ++ struct rb_root root_d; ++ struct rb_root root_s; ++ struct list_head inexact_bins; ++ struct callback_head rcu; ++}; ++ ++enum xfrm_pol_inexact_candidate_type { ++ XFRM_POL_CAND_BOTH = 0, ++ XFRM_POL_CAND_SADDR = 1, ++ XFRM_POL_CAND_DADDR = 2, ++ XFRM_POL_CAND_ANY = 3, ++ XFRM_POL_CAND_MAX = 4, ++}; ++ ++struct xfrm_pol_inexact_candidates { ++ struct hlist_head *res[4]; ++}; ++ +enum xfrm_ae_ftype_t { + XFRM_AE_UNSPEC = 0, + XFRM_AE_RTHR = 1, @@ -94878,42 +102184,6 @@ index 0000000..bcb9d76 + __XFRM_AE_MAX = 65, +}; + -+enum xfrm_attr_type_t { -+ XFRMA_UNSPEC = 0, -+ XFRMA_ALG_AUTH = 1, -+ XFRMA_ALG_CRYPT = 2, -+ XFRMA_ALG_COMP = 3, -+ XFRMA_ENCAP = 4, -+ XFRMA_TMPL = 5, -+ XFRMA_SA = 6, -+ XFRMA_POLICY = 7, -+ XFRMA_SEC_CTX = 8, -+ XFRMA_LTIME_VAL = 9, -+ XFRMA_REPLAY_VAL = 10, -+ XFRMA_REPLAY_THRESH = 11, -+ XFRMA_ETIMER_THRESH = 12, -+ XFRMA_SRCADDR = 13, -+ XFRMA_COADDR = 14, -+ XFRMA_LASTUSED = 15, -+ XFRMA_POLICY_TYPE = 16, -+ XFRMA_MIGRATE = 17, -+ XFRMA_ALG_AEAD = 18, -+ XFRMA_KMADDRESS = 19, -+ XFRMA_ALG_AUTH_TRUNC = 20, -+ XFRMA_MARK = 21, -+ XFRMA_TFCPAD = 22, -+ XFRMA_REPLAY_ESN_VAL = 23, -+ XFRMA_SA_EXTRA_FLAGS = 24, -+ XFRMA_PROTO = 25, -+ XFRMA_ADDRESS_FILTER = 26, -+ XFRMA_PAD = 27, -+ XFRMA_OFFLOAD_DEV = 28, -+ XFRMA_SET_MARK = 29, -+ XFRMA_SET_MARK_MASK = 30, -+ XFRMA_IF_ID = 31, -+ __XFRMA_MAX = 32, -+}; -+ +enum xfrm_nlgroups { + XFRMNLGRP_NONE = 0, + XFRMNLGRP_ACQUIRE = 1, @@ -94927,6 +102197,10 @@ index 0000000..bcb9d76 + __XFRMNLGRP_MAX = 9, +}; + ++enum { ++ XFRM_MODE_FLAG_TUNNEL = 1, ++}; ++ +struct km_event { + union { + u32 hard; @@ -94941,10 +102215,6 @@ index 0000000..bcb9d76 + struct net *net; +}; + -+enum { -+ XFRM_MODE_FLAG_TUNNEL = 1, -+}; -+ +struct xfrm_mgr { + struct list_head list; + int (*notify)(struct xfrm_state *, const struct km_event *); @@ -94963,6 +102233,20 @@ index 0000000..bcb9d76 + u32 sadcnt; +}; + ++struct xfrm_translator { ++ int (*alloc_compat)(struct sk_buff *, const struct nlmsghdr *); ++ struct nlmsghdr * (*rcv_msg_compat)(const struct nlmsghdr *, int, const struct nla_policy *, struct netlink_ext_ack *); ++ int (*xlate_user_policy_sockptr)(u8 **, int); ++ struct module *owner; ++}; ++ ++struct ip_beet_phdr { ++ __u8 nexthdr; ++ __u8 hdrlen; ++ __u8 padlen; ++ __u8 reserved; ++}; ++ +struct ip_tunnel_6rd_parm { + struct in6_addr prefix; + __be32 relay_prefix; @@ -95075,6 +102359,7 @@ index 0000000..bcb9d76 + struct inet6_skb_parm h6; + } header; + int (*finish)(struct net *, struct sock *, struct sk_buff *); ++ struct net *net; +}; + +struct xfrm_user_offload { @@ -95340,19 +102625,85 @@ index 0000000..bcb9d76 + unsigned int splice_flags; +}; + ++struct ipv6_params { ++ __s32 disable_ipv6; ++ __s32 autoconf; ++}; ++ ++enum flowlabel_reflect { ++ FLOWLABEL_REFLECT_ESTABLISHED = 1, ++ FLOWLABEL_REFLECT_TCP_RESET = 2, ++ FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, ++}; ++ ++struct in6_rtmsg { ++ struct in6_addr rtmsg_dst; ++ struct in6_addr rtmsg_src; ++ struct in6_addr rtmsg_gateway; ++ __u32 rtmsg_type; ++ __u16 rtmsg_dst_len; ++ __u16 rtmsg_src_len; ++ __u32 rtmsg_metric; ++ long unsigned int rtmsg_info; ++ __u32 rtmsg_flags; ++ int rtmsg_ifindex; ++}; ++ ++struct compat_in6_rtmsg { ++ struct in6_addr rtmsg_dst; ++ struct in6_addr rtmsg_src; ++ struct in6_addr rtmsg_gateway; ++ u32 rtmsg_type; ++ u16 rtmsg_dst_len; ++ u16 rtmsg_src_len; ++ u32 rtmsg_metric; ++ u32 rtmsg_info; ++ u32 rtmsg_flags; ++ s32 rtmsg_ifindex; ++}; ++ +struct ac6_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct inet6_dev *idev; +}; + ++struct ip6_fraglist_iter { ++ struct ipv6hdr *tmp_hdr; ++ struct sk_buff *frag; ++ int offset; ++ unsigned int hlen; ++ __be32 frag_id; ++ u8 nexthdr; ++}; ++ ++struct ip6_frag_state { ++ u8 *prevhdr; ++ unsigned int hlen; ++ unsigned int mtu; ++ unsigned int left; ++ int offset; ++ int ptr; ++ int hroom; ++ int troom; ++ __be32 frag_id; ++ u8 nexthdr; ++}; ++ ++struct ip6_ra_chain { ++ struct ip6_ra_chain *next; ++ struct sock *sk; ++ int sel; ++ void (*destructor)(struct sock *); ++}; ++ +struct ipcm6_cookie { + struct sockcm_cookie sockc; + __s16 hlimit; + __s16 tclass; ++ __u16 gso_size; + __s8 dontfrag; + struct ipv6_txoptions *opt; -+ __u16 gso_size; +}; + +enum { @@ -95489,7 +102840,8 @@ index 0000000..bcb9d76 + DEVCONF_DISABLE_POLICY = 48, + DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, + DEVCONF_NDISC_TCLASS = 50, -+ DEVCONF_MAX = 51, ++ DEVCONF_RPL_SEG_ENABLED = 51, ++ DEVCONF_MAX = 52, +}; + +enum { @@ -95612,31 +102964,6 @@ index 0000000..bcb9d76 + u16 scope; +}; + -+struct fib6_config { -+ u32 fc_table; -+ u32 fc_metric; -+ int fc_dst_len; -+ int fc_src_len; -+ int fc_ifindex; -+ u32 fc_flags; -+ u32 fc_protocol; -+ u16 fc_type; -+ u16 fc_delete_all_nh: 1; -+ u16 __unused: 15; -+ struct in6_addr fc_dst; -+ struct in6_addr fc_src; -+ struct in6_addr fc_prefsrc; -+ struct in6_addr fc_gateway; -+ long unsigned int fc_expires; -+ struct nlattr *fc_mx; -+ int fc_mx_len; -+ int fc_mp_len; -+ struct nlattr *fc_mp; -+ struct nl_info fc_nlinfo; -+ struct nlattr *fc_encap; -+ u16 fc_encap_type; -+}; -+ +enum cleanup_prefix_rt_t { + CLEANUP_PREFIX_RT_NOP = 0, + CLEANUP_PREFIX_RT_DEL = 1, @@ -95686,6 +103013,16 @@ index 0000000..bcb9d76 + ANYCAST_ADDR = 2, +}; + ++struct inet6_fill_args { ++ u32 portid; ++ u32 seq; ++ int event; ++ unsigned int flags; ++ int netnsid; ++ int ifindex; ++ enum addr_type_t type; ++}; ++ +enum { + DAD_PROCESS = 0, + DAD_BEGIN = 1, @@ -95757,6 +103094,7 @@ index 0000000..bcb9d76 + struct sk_buff *skb; + struct netlink_callback *cb; + struct net *net; ++ struct fib_dump_filter filter; +}; + +struct netevent_redirect { @@ -95790,24 +103128,71 @@ index 0000000..bcb9d76 + u32 name; +}; + ++typedef void (*btf_trace_fib6_table_lookup)(void *, const struct net *, const struct fib6_result *, struct fib6_table *, const struct flowi6 *); ++ +enum rt6_nud_state { -+ RT6_NUD_FAIL_HARD = -3, -+ RT6_NUD_FAIL_PROBE = -2, -+ RT6_NUD_FAIL_DO_RR = -1, ++ RT6_NUD_FAIL_HARD = 4294967293, ++ RT6_NUD_FAIL_PROBE = 4294967294, ++ RT6_NUD_FAIL_DO_RR = 4294967295, + RT6_NUD_SUCCEED = 1, +}; + ++struct fib6_nh_dm_arg { ++ struct net *net; ++ const struct in6_addr *saddr; ++ int oif; ++ int flags; ++ struct fib6_nh *nh; ++}; ++ +struct __rt6_probe_work { + struct work_struct work; + struct in6_addr target; + struct net_device *dev; +}; + ++struct fib6_nh_frl_arg { ++ u32 flags; ++ int oif; ++ int strict; ++ int *mpri; ++ bool *do_rr; ++ struct fib6_nh *nh; ++}; ++ ++struct fib6_nh_excptn_arg { ++ struct rt6_info *rt; ++ int plen; ++}; ++ ++struct fib6_nh_match_arg { ++ const struct net_device *dev; ++ const struct in6_addr *gw; ++ struct fib6_nh *match; ++}; ++ ++struct fib6_nh_age_excptn_arg { ++ struct fib6_gc_args *gc_args; ++ long unsigned int now; ++}; ++ ++struct fib6_nh_rd_arg { ++ struct fib6_result *res; ++ struct flowi6 *fl6; ++ const struct in6_addr *gw; ++ struct rt6_info **ret; ++}; ++ +struct ip6rd_flowi { + struct flowi6 fl6; + struct in6_addr gateway; +}; + ++struct fib6_nh_del_cached_rt_arg { ++ struct fib6_config *cfg; ++ struct fib6_info *f6i; ++}; ++ +struct arg_dev_net_ip { + struct net_device *dev; + struct net *net; @@ -95817,7 +103202,7 @@ index 0000000..bcb9d76 +struct arg_netdev_event { + const struct net_device *dev; + union { -+ unsigned int nh_flags; ++ unsigned char nh_flags; + long unsigned int event; + }; +}; @@ -95825,6 +103210,7 @@ index 0000000..bcb9d76 +struct rt6_mtu_change_arg { + struct net_device *dev; + unsigned int mtu; ++ struct fib6_info *f6i; +}; + +struct rt6_nh { @@ -95833,6 +103219,14 @@ index 0000000..bcb9d76 + struct list_head next; +}; + ++struct fib6_nh_exception_dump_walker { ++ struct rt6_rtnl_dump_arg *dump; ++ struct fib6_info *rt; ++ unsigned int flags; ++ unsigned int skip; ++ unsigned int count; ++}; ++ +enum fib6_walk_state { + FWS_L = 0, + FWS_R = 1, @@ -95848,6 +103242,7 @@ index 0000000..bcb9d76 + enum fib6_walk_state state; + unsigned int skip; + unsigned int count; ++ unsigned int skip_in_node; + int (*func)(struct fib6_walker *); + void *args; +}; @@ -95855,6 +103250,7 @@ index 0000000..bcb9d76 +struct fib6_entry_notifier_info { + struct fib_notifier_info info; + struct fib6_info *rt; ++ unsigned int nsiblings; +}; + +struct ipv6_route_iter { @@ -95865,12 +103261,22 @@ index 0000000..bcb9d76 + int sernum; +}; + ++struct bpf_iter__ipv6_route { ++ union { ++ struct bpf_iter_meta *meta; ++ }; ++ union { ++ struct fib6_info *rt; ++ }; ++}; ++ +struct fib6_cleaner { + struct fib6_walker w; + struct net *net; + int (*func)(struct fib6_info *, void *); + int sernum; + void *arg; ++ bool skip_notify; +}; + +enum { @@ -95880,6 +103286,12 @@ index 0000000..bcb9d76 +struct fib6_dump_arg { + struct net *net; + struct notifier_block *nb; ++ struct netlink_ext_ack *extack; ++}; ++ ++struct fib6_nh_pcpu_arg { ++ struct fib6_info *from; ++ const struct fib6_table *table; +}; + +struct lookup_args { @@ -95908,6 +103320,17 @@ index 0000000..bcb9d76 + __u32 ip6m_mtu; +}; + ++struct ipv6_sr_hdr { ++ __u8 nexthdr; ++ __u8 hdrlen; ++ __u8 type; ++ __u8 segments_left; ++ __u8 first_segment; ++ __u8 flags; ++ __u16 tag; ++ struct in6_addr segments[0]; ++}; ++ +struct nduseroptmsg { + unsigned char nduseropt_family; + unsigned char nduseropt_pad1; @@ -96041,11 +103464,6 @@ index 0000000..bcb9d76 + u8 ecn; +}; + -+struct tcp6_sock { -+ struct tcp_sock tcp; -+ struct ipv6_pinfo inet6; -+}; -+ +struct tcp6_pseudohdr { + struct in6_addr saddr; + struct in6_addr daddr; @@ -96059,6 +103477,22 @@ index 0000000..bcb9d76 + struct in6_addr addr[0]; +}; + ++struct ipv6_rpl_sr_hdr { ++ __u8 nexthdr; ++ __u8 hdrlen; ++ __u8 type; ++ __u8 segments_left; ++ __u32 cmpre: 4; ++ __u32 cmpri: 4; ++ __u32 reserved: 4; ++ __u32 pad: 4; ++ __u32 reserved1: 16; ++ union { ++ struct in6_addr addr[0]; ++ __u8 data[0]; ++ } segments; ++}; ++ +struct tlvtype_proc { + int type; + bool (*func)(struct sk_buff *, int); @@ -96191,23 +103625,29 @@ index 0000000..bcb9d76 + compat_ulong_t obytes; +}; + -+struct ip6_mh { -+ __u8 ip6mh_proto; -+ __u8 ip6mh_hdrlen; -+ __u8 ip6mh_type; -+ __u8 ip6mh_reserved; -+ __u16 ip6mh_cksum; -+ __u8 data[0]; -+}; -+ +struct xfrm6_protocol { + int (*handler)(struct sk_buff *); ++ int (*input_handler)(struct sk_buff *, int, __be32, int); + int (*cb_handler)(struct sk_buff *, int); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); + struct xfrm6_protocol *next; + int priority; +}; + ++struct br_input_skb_cb { ++ struct net_device *brdev; ++ u16 frag_max_size; ++ u8 igmp; ++ u8 mrouters_only: 1; ++ u8 proxyarp_replied: 1; ++ u8 src_port_isolated: 1; ++ u8 vlan_filtered: 1; ++ u8 br_netfilter_broute: 1; ++ int offload_fwd_mark; ++}; ++ ++struct nf_bridge_frag_data; ++ +typedef struct rt6_info * (*pol_lookup_t)(struct net *, struct fib6_table *, struct flowi6 *, const struct sk_buff *, int); + +struct fib6_rule { @@ -96417,6 +103857,12 @@ index 0000000..bcb9d76 + struct tpacket_req3 req3; +}; + ++struct fanout_args { ++ __u16 id; ++ __u16 type_flags; ++ __u32 max_num_members; ++}; ++ +struct virtio_net_hdr { + __u8 flags; + __u8 gso_type; @@ -96455,7 +103901,7 @@ index 0000000..bcb9d76 + char *prev; + char *nxt_offset; + struct sk_buff *skb; -+ atomic_t blk_fill_in_prog; ++ rwlock_t blk_fill_in_prog_lock; + short unsigned int retire_blk_tov; + short unsigned int version; + long unsigned int tov_in_jiffies; @@ -96485,6 +103931,7 @@ index 0000000..bcb9d76 +struct packet_fanout { + possible_net_t net; + unsigned int num_members; ++ u32 max_num_members; + u16 id; + u8 type; + u8 flags; @@ -96493,12 +103940,11 @@ index 0000000..bcb9d76 + struct bpf_prog *bpf_prog; + }; + struct list_head list; -+ struct sock *arr[256]; + spinlock_t lock; + refcount_t sk_ref; + long: 64; -+ long: 64; + struct packet_type prot_hook; ++ struct sock *arr[0]; + long: 64; + long: 64; + long: 64; @@ -96588,11 +104034,6 @@ index 0000000..bcb9d76 + } sa; +}; + -+struct _strp_msg { -+ struct strp_msg strp; -+ int accum_len; -+}; -+ +struct vlan_group { + unsigned int nr_vlan_devs; + struct hlist_node hlist; @@ -96612,6 +104053,7 @@ index 0000000..bcb9d76 + VLAN_FLAG_GVRP = 2, + VLAN_FLAG_LOOSE_BINDING = 4, + VLAN_FLAG_MVRP = 8, ++ VLAN_FLAG_BRIDGE_BINDING = 16, +}; + +struct vlan_priority_tci_mapping { @@ -96633,7 +104075,6 @@ index 0000000..bcb9d76 + struct proc_dir_entry *dent; + struct vlan_pcpu_stats *vlan_pcpu_stats; + struct netpoll *netpoll; -+ unsigned int nest_level; +}; + +enum vlan_protos { @@ -97131,14 +104572,91 @@ index 0000000..bcb9d76 + }; +}; + -+struct switchdev_trans_item { -+ struct list_head list; -+ void *data; -+ void (*destructor)(const void *); ++struct switchdev_trans { ++ bool ph_prepare; ++}; ++ ++enum switchdev_attr_id { ++ SWITCHDEV_ATTR_ID_UNDEFINED = 0, ++ SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, ++ SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 2, ++ SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 3, ++ SWITCHDEV_ATTR_ID_PORT_MROUTER = 4, ++ SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 5, ++ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 6, ++ SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 7, ++ SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 8, ++}; ++ ++struct switchdev_attr { ++ struct net_device *orig_dev; ++ enum switchdev_attr_id id; ++ u32 flags; ++ void *complete_priv; ++ void (*complete)(struct net_device *, int, void *); ++ union { ++ u8 stp_state; ++ long unsigned int brport_flags; ++ bool mrouter; ++ clock_t ageing_time; ++ bool vlan_filtering; ++ bool mc_disabled; ++ } u; ++}; ++ ++enum switchdev_obj_id { ++ SWITCHDEV_OBJ_ID_UNDEFINED = 0, ++ SWITCHDEV_OBJ_ID_PORT_VLAN = 1, ++ SWITCHDEV_OBJ_ID_PORT_MDB = 2, ++ SWITCHDEV_OBJ_ID_HOST_MDB = 3, ++}; ++ ++struct switchdev_obj { ++ struct net_device *orig_dev; ++ enum switchdev_obj_id id; ++ u32 flags; ++ void *complete_priv; ++ void (*complete)(struct net_device *, int, void *); ++ u64 kabi_reserved1; ++ u64 kabi_reserved2; ++ u64 kabi_reserved3; ++ u64 kabi_reserved4; ++}; ++ ++enum switchdev_notifier_type { ++ SWITCHDEV_FDB_ADD_TO_BRIDGE = 1, ++ SWITCHDEV_FDB_DEL_TO_BRIDGE = 2, ++ SWITCHDEV_FDB_ADD_TO_DEVICE = 3, ++ SWITCHDEV_FDB_DEL_TO_DEVICE = 4, ++ SWITCHDEV_FDB_OFFLOADED = 5, ++ SWITCHDEV_FDB_FLUSH_TO_BRIDGE = 6, ++ SWITCHDEV_PORT_OBJ_ADD = 7, ++ SWITCHDEV_PORT_OBJ_DEL = 8, ++ SWITCHDEV_PORT_ATTR_SET = 9, ++ SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE = 10, ++ SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE = 11, ++ SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE = 12, ++ SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE = 13, ++ SWITCHDEV_VXLAN_FDB_OFFLOADED = 14, +}; + +struct switchdev_notifier_info { + struct net_device *dev; ++ struct netlink_ext_ack *extack; ++}; ++ ++struct switchdev_notifier_port_obj_info { ++ struct switchdev_notifier_info info; ++ const struct switchdev_obj *obj; ++ struct switchdev_trans *trans; ++ bool handled; ++}; ++ ++struct switchdev_notifier_port_attr_info { ++ struct switchdev_notifier_info info; ++ const struct switchdev_attr *attr; ++ struct switchdev_trans *trans; ++ bool handled; +}; + +typedef void switchdev_deferred_func_t(struct net_device *, const void *); @@ -97150,6 +104668,18 @@ index 0000000..bcb9d76 + long unsigned int data[0]; +}; + ++enum l3mdev_type { ++ L3MDEV_TYPE_UNSPEC = 0, ++ L3MDEV_TYPE_VRF = 1, ++ __L3MDEV_TYPE_MAX = 2, ++}; ++ ++typedef int (*lookup_by_table_id_t)(struct net *, u32); ++ ++struct l3mdev_handler { ++ lookup_by_table_id_t dev_lookup; ++}; ++ +struct sockaddr_xdp { + __u16 sxdp_family; + __u16 sxdp_flags; @@ -97162,6 +104692,7 @@ index 0000000..bcb9d76 + __u64 producer; + __u64 consumer; + __u64 desc; ++ __u64 flags; +}; + +struct xdp_mmap_offsets { @@ -97176,12 +104707,20 @@ index 0000000..bcb9d76 + __u64 len; + __u32 chunk_size; + __u32 headroom; ++ __u32 flags; +}; + +struct xdp_statistics { + __u64 rx_dropped; + __u64 rx_invalid_descs; + __u64 tx_invalid_descs; ++ __u64 rx_ring_full; ++ __u64 rx_fill_ring_empty_descs; ++ __u64 tx_ring_empty_descs; ++}; ++ ++struct xdp_options { ++ __u32 flags; +}; + +struct xdp_desc { @@ -97193,15 +104732,32 @@ index 0000000..bcb9d76 +struct xdp_ring; + +struct xsk_queue { -+ struct xdp_umem_props umem_props; + u32 ring_mask; + u32 nentries; -+ u32 prod_head; -+ u32 prod_tail; -+ u32 cons_head; -+ u32 cons_tail; ++ u32 cached_prod; ++ u32 cached_cons; + struct xdp_ring *ring; + u64 invalid_descs; ++ u64 queue_empty_descs; ++}; ++ ++struct xdp_ring_offset_v1 { ++ __u64 producer; ++ __u64 consumer; ++ __u64 desc; ++}; ++ ++struct xdp_mmap_offsets_v1 { ++ struct xdp_ring_offset_v1 rx; ++ struct xdp_ring_offset_v1 tx; ++ struct xdp_ring_offset_v1 fr; ++ struct xdp_ring_offset_v1 cr; ++}; ++ ++struct xsk_map_node { ++ struct list_head node; ++ struct xsk_map *map; ++ struct xdp_sock **map_entry; +}; + +struct xdp_ring { @@ -97214,7 +104770,7 @@ index 0000000..bcb9d76 + long: 64; + long: 64; + long: 64; -+ u32 consumer; ++ u32 pad; + long: 32; + long: 64; + long: 64; @@ -97223,6 +104779,15 @@ index 0000000..bcb9d76 + long: 64; + long: 64; + long: 64; ++ u32 consumer; ++ u32 flags; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; ++ long: 64; +}; + +struct xdp_rxtx_ring { @@ -97235,180 +104800,217 @@ index 0000000..bcb9d76 + u64 desc[0]; +}; + -+struct compress_format { -+ unsigned char magic[2]; -+ const char *name; -+ decompress_fn decompressor; ++struct xsk_dma_map { ++ dma_addr_t *dma_pages; ++ struct device *dev; ++ struct net_device *netdev; ++ refcount_t users; ++ struct list_head list; ++ u32 dma_pages_cnt; ++ bool dma_need_sync; +}; + -+struct group_data { -+ int limit[21]; -+ int base[20]; -+ int permute[258]; -+ int minLen; -+ int maxLen; ++struct pcibios_fwaddrmap { ++ struct list_head list; ++ struct pci_dev *dev; ++ resource_size_t fw_addr[17]; +}; + -+struct bunzip_data { -+ int writeCopies; -+ int writePos; -+ int writeRunCountdown; -+ int writeCount; -+ int writeCurrent; -+ long int (*fill)(void *, long unsigned int); -+ long int inbufCount; -+ long int inbufPos; -+ unsigned char *inbuf; -+ unsigned int inbufBitCount; -+ unsigned int inbufBits; -+ unsigned int crc32Table[256]; -+ unsigned int headerCRC; -+ unsigned int totalCRC; -+ unsigned int writeCRC; -+ unsigned int *dbuf; -+ unsigned int dbufSize; -+ unsigned char selectors[32768]; -+ struct group_data groups[6]; -+ int io_error; -+ int byteCount[256]; -+ unsigned char symToByte[256]; -+ unsigned char mtfSymbol[256]; ++struct pci_check_idx_range { ++ int start; ++ int end; +}; + -+struct rc { -+ long int (*fill)(void *, long unsigned int); -+ uint8_t *ptr; -+ uint8_t *buffer; -+ uint8_t *buffer_end; -+ long int buffer_size; -+ uint32_t code; -+ uint32_t range; -+ uint32_t bound; -+ void (*error)(char *); ++struct pci_raw_ops { ++ int (*read)(unsigned int, unsigned int, unsigned int, int, int, u32 *); ++ int (*write)(unsigned int, unsigned int, unsigned int, int, int, u32); +}; + -+struct lzma_header { -+ uint8_t pos; -+ uint32_t dict_size; -+ uint64_t dst_size; ++struct pci_mmcfg_region { ++ struct list_head list; ++ struct resource res; ++ u64 address; ++ char *virt; ++ u16 segment; ++ u8 start_bus; ++ u8 end_bus; ++ char name[30]; ++}; ++ ++struct acpi_table_mcfg { ++ struct acpi_table_header header; ++ u8 reserved[8]; ++}; ++ ++struct acpi_mcfg_allocation { ++ u64 address; ++ u16 pci_segment; ++ u8 start_bus_number; ++ u8 end_bus_number; ++ u32 reserved; ++}; ++ ++struct pci_mmcfg_hostbridge_probe { ++ u32 bus; ++ u32 devfn; ++ u32 vendor; ++ u32 device; ++ const char * (*probe)(); ++}; ++ ++typedef bool (*check_reserved_t)(u64, u64, unsigned int); ++ ++struct xen_pci_frontend_ops { ++ int (*enable_msi)(struct pci_dev *, int *); ++ void (*disable_msi)(struct pci_dev *); ++ int (*enable_msix)(struct pci_dev *, int *, int); ++ void (*disable_msix)(struct pci_dev *); ++}; ++ ++struct xen_msi_ops { ++ int (*setup_msi_irqs)(struct pci_dev *, int, int); ++ void (*teardown_msi_irqs)(struct pci_dev *); ++}; ++ ++struct pci_root_info { ++ struct acpi_pci_root_info common; ++ struct pci_sysdata sd; ++ bool mcfg_added; ++ u8 start_bus; ++ u8 end_bus; ++}; ++ ++struct irq_info___3 { ++ u8 bus; ++ u8 devfn; ++ struct { ++ u8 link; ++ u16 bitmap; ++ } __attribute__((packed)) irq[4]; ++ u8 slot; ++ u8 rfu; ++}; ++ ++struct irq_routing_table { ++ u32 signature; ++ u16 version; ++ u16 size; ++ u8 rtr_bus; ++ u8 rtr_devfn; ++ u16 exclusive_irqs; ++ u16 rtr_vendor; ++ u16 rtr_device; ++ u32 miniport_data; ++ u8 rfu[11]; ++ u8 checksum; ++ struct irq_info___3 slots[0]; ++}; ++ ++struct irq_router { ++ char *name; ++ u16 vendor; ++ u16 device; ++ int (*get)(struct pci_dev *, struct pci_dev *, int); ++ int (*set)(struct pci_dev *, struct pci_dev *, int, int); ++}; ++ ++struct irq_router_handler { ++ u16 vendor; ++ int (*probe)(struct irq_router *, struct pci_dev *, u16); ++}; ++ ++struct pci_setup_rom { ++ struct setup_data data; ++ uint16_t vendor; ++ uint16_t devid; ++ uint64_t pcilen; ++ long unsigned int segment; ++ long unsigned int bus; ++ long unsigned int device; ++ long unsigned int function; ++ uint8_t romdata[0]; ++}; ++ ++enum pci_bf_sort_state { ++ pci_bf_sort_default = 0, ++ pci_force_nobf = 1, ++ pci_force_bf = 2, ++ pci_dmi_bf = 3, ++}; ++ ++struct pci_root_res { ++ struct list_head list; ++ struct resource res; ++}; ++ ++struct pci_root_info___2 { ++ struct list_head list; ++ char name[12]; ++ struct list_head resources; ++ struct resource busn; ++ int node; ++ int link; ++}; ++ ++struct amd_hostbridge { ++ u32 bus; ++ u32 slot; ++ u32 device; ++}; ++ ++struct saved_msr { ++ bool valid; ++ struct msr_info info; ++}; ++ ++struct saved_msrs { ++ unsigned int num; ++ struct saved_msr *array; ++}; ++ ++struct saved_context { ++ struct pt_regs regs; ++ u16 ds; ++ u16 es; ++ u16 fs; ++ u16 gs; ++ long unsigned int kernelmode_gs_base; ++ long unsigned int usermode_gs_base; ++ long unsigned int fs_base; ++ long unsigned int cr0; ++ long unsigned int cr2; ++ long unsigned int cr3; ++ long unsigned int cr4; ++ u64 misc_enable; ++ bool misc_enable_saved; ++ struct saved_msrs saved_msrs; ++ long unsigned int efer; ++ u16 gdt_pad; ++ struct desc_ptr gdt_desc; ++ u16 idt_pad; ++ struct desc_ptr idt; ++ u16 ldt; ++ u16 tss; ++ long unsigned int tr; ++ long unsigned int safety; ++ long unsigned int return_address; +} __attribute__((packed)); + -+struct writer { -+ uint8_t *buffer; -+ uint8_t previous_byte; -+ size_t buffer_pos; -+ int bufsize; -+ size_t global_pos; -+ long int (*flush)(void *, long unsigned int); -+ struct lzma_header *header; ++typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *); ++ ++struct restore_data_record { ++ long unsigned int jump_address; ++ long unsigned int jump_address_phys; ++ long unsigned int cr3; ++ long unsigned int magic; ++ long unsigned int e820_checksum; +}; + -+struct cstate { -+ int state; -+ uint32_t rep0; -+ uint32_t rep1; -+ uint32_t rep2; -+ uint32_t rep3; -+}; -+ -+struct xz_dec___2; -+ -+enum cpio_fields { -+ C_MAGIC = 0, -+ C_INO = 1, -+ C_MODE = 2, -+ C_UID = 3, -+ C_GID = 4, -+ C_NLINK = 5, -+ C_MTIME = 6, -+ C_FILESIZE = 7, -+ C_MAJ = 8, -+ C_MIN = 9, -+ C_RMAJ = 10, -+ C_RMIN = 11, -+ C_NAMESIZE = 12, -+ C_CHKSUM = 13, -+ C_NFIELDS = 14, -+}; -+ -+struct fprop_local_single { -+ long unsigned int events; -+ unsigned int period; -+ raw_spinlock_t lock; -+}; -+ -+struct klist_waiter { -+ struct list_head list; -+ struct klist_node *node; -+ struct task_struct *process; -+ int woken; -+}; -+ -+struct uevent_sock { -+ struct list_head list; -+ struct sock *sk; -+}; -+ -+struct radix_tree_preload { -+ unsigned int nr; -+ struct radix_tree_node *nodes; -+}; -+ -+typedef struct { -+ long unsigned int key[2]; -+} hsiphash_key_t; -+ -+enum format_type { -+ FORMAT_TYPE_NONE = 0, -+ FORMAT_TYPE_WIDTH = 1, -+ FORMAT_TYPE_PRECISION = 2, -+ FORMAT_TYPE_CHAR = 3, -+ FORMAT_TYPE_STR = 4, -+ FORMAT_TYPE_PTR = 5, -+ FORMAT_TYPE_PERCENT_CHAR = 6, -+ FORMAT_TYPE_INVALID = 7, -+ FORMAT_TYPE_LONG_LONG = 8, -+ FORMAT_TYPE_ULONG = 9, -+ FORMAT_TYPE_LONG = 10, -+ FORMAT_TYPE_UBYTE = 11, -+ FORMAT_TYPE_BYTE = 12, -+ FORMAT_TYPE_USHORT = 13, -+ FORMAT_TYPE_SHORT = 14, -+ FORMAT_TYPE_UINT = 15, -+ FORMAT_TYPE_INT = 16, -+ FORMAT_TYPE_SIZE_T = 17, -+ FORMAT_TYPE_PTRDIFF = 18, -+}; -+ -+struct printf_spec { -+ unsigned int type: 8; -+ int field_width: 24; -+ unsigned int flags: 8; -+ unsigned int base: 8; -+ int precision: 16; -+}; -+ -+enum { -+ st_wordstart = 0, -+ st_wordcmp = 1, -+ st_wordskip = 2, -+ st_bufcpy = 3, -+}; -+ -+enum { -+ st_wordstart___2 = 0, -+ st_wordcmp___2 = 1, -+ st_wordskip___2 = 2, -+}; -+ -+struct in6_addr___2; -+ -+enum reg_type { -+ REG_TYPE_RM = 0, -+ REG_TYPE_INDEX = 1, -+ REG_TYPE_BASE = 2, -+}; ++#ifndef BPF_NO_PRESERVE_ACCESS_INDEX ++#pragma clang attribute pop ++#endif + ++#endif /* __VMLINUX_H__ */ -- -2.27.0 +2.33.0