Kernel
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- 51 participants
- 18725 discussions
Dmitrii Dolgov (1):
perf stat: Separate bperf from bpf_profiler
Ian Rogers (3):
perf test bpf-counters: Add test for BPF event modifier
perf docs: Document bpf event modifier
perf build: Properly guard libbpf includes
Namhyung Kim (12):
bpf: Allow bpf_get_current_ancestor_cgroup_id for tracing
perf core: Factor out __perf_sw_event_sched
perf core: Add PERF_COUNT_SW_CGROUP_SWITCHES event
perf tools: Add 'cgroup-switches' software event
perf tools: Add read_cgroup_id() function
perf tools: Add cgroup_is_v2() helper
perf bpf_counter: Move common functions to bpf_counter.h
perf stat: Enable BPF counter with --for-each-cgroup
perf stat: Fix BPF program section name
perf stat: Fix handling of unsupported cgroup events when using BPF
counters
perf stat: Fix error check for bpf_program__attach
perf test shell stat_bpf_counters: Fix test on Intel
Song Liu (13):
bpftool: Add Makefile target bootstrap
perf build: Support build BPF skeletons with perf
perf stat: Enable counting events for BPF programs
perf stat: Introduce 'bperf' to share hardware PMCs with BPF
perf stat: Measure 't0' and 'ref_time' after enable_counters()
perf util: Move bpf_perf definitions to a libperf header
perf bpf: check perf_attr_map is compatible with the perf binary
perf stat: Introduce config stat.bpf-counter-events
perf stat: Introduce ':b' modifier
perf stat: Introduce bpf_counter_ops->disable()
perf bpf: Fix building perf with BUILD_BPF_SKEL=1 by default in more
distros
perf bpf_skel: Do not use typedef to avoid error on old clang
perf test: Add a shell test for 'perf stat --bpf-counters' new option
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
Yonghong Song (1):
bpf: Add rcu_read_lock in bpf_get_current_[ancestor_]cgroup_id()
helpers
Yu Kuai (1):
perf stat: Fix error return code in bperf__load()
include/linux/perf_event.h | 40 +-
include/uapi/linux/perf_event.h | 1 +
kernel/bpf/helpers.c | 22 +-
kernel/trace/bpf_trace.c | 2 +
tools/bpf/bpftool/Makefile | 2 +
tools/build/Makefile.feature | 4 +-
tools/include/uapi/linux/perf_event.h | 1 +
tools/lib/perf/include/perf/bpf_perf.h | 32 +
tools/perf/Documentation/perf-list.txt | 1 +
tools/perf/Documentation/perf-stat.txt | 31 +
tools/perf/Makefile.config | 9 +
tools/perf/Makefile.perf | 65 +-
tools/perf/builtin-stat.c | 110 ++-
tools/perf/builtin-trace.c | 2 +
tools/perf/tests/shell/stat_bpf_counters.sh | 76 ++
tools/perf/util/Build | 2 +
tools/perf/util/bpf_counter.c | 833 ++++++++++++++++++
tools/perf/util/bpf_counter.h | 137 +++
tools/perf/util/bpf_counter_cgroup.c | 299 +++++++
tools/perf/util/bpf_skel/.gitignore | 3 +
tools/perf/util/bpf_skel/bperf_cgroup.bpf.c | 191 ++++
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 162 ++++
tools/perf/util/bpf_skel/bperf_leader.bpf.c | 55 ++
tools/perf/util/bpf_skel/bperf_u.h | 19 +
.../util/bpf_skel/bpf_prog_profiler.bpf.c | 93 ++
tools/perf/util/cgroup.c | 47 +
tools/perf/util/cgroup.h | 13 +
tools/perf/util/config.c | 4 +
tools/perf/util/evlist.c | 4 +
tools/perf/util/evsel.c | 27 +
tools/perf/util/evsel.h | 37 +
tools/perf/util/parse-events.c | 12 +-
tools/perf/util/parse-events.l | 3 +-
tools/perf/util/python.c | 27 +
tools/perf/util/stat-display.c | 4 +-
tools/perf/util/stat.c | 2 +-
tools/perf/util/target.c | 34 +-
tools/perf/util/target.h | 8 +
tools/scripts/Makefile.include | 1 +
39 files changed, 2364 insertions(+), 51 deletions(-)
create mode 100644 tools/lib/perf/include/perf/bpf_perf.h
create mode 100755 tools/perf/tests/shell/stat_bpf_counters.sh
create mode 100644 tools/perf/util/bpf_counter.c
create mode 100644 tools/perf/util/bpf_counter.h
create mode 100644 tools/perf/util/bpf_counter_cgroup.c
create mode 100644 tools/perf/util/bpf_skel/.gitignore
create mode 100644 tools/perf/util/bpf_skel/bperf_cgroup.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_follower.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_leader.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_u.h
create mode 100644 tools/perf/util/bpf_skel/bpf_prog_profiler.bpf.c
--
2.34.1
2
37
v1:
- Fix compilation error
Zhang Qiao (5):
sched: Add cmdline sched_soft_domain switch for soft domain feature
sched: Rework cpu.soft_domain_nr_cpu
sched: Fix soft domain group memleak
sched: Consider task affinity in wake_soft_domain()
sched: Fix might sleep in atomic section issue
kernel/sched/core.c | 16 ++--
kernel/sched/fair.c | 63 +++++++--------
kernel/sched/sched.h | 17 +++-
kernel/sched/soft_domain.c | 162 ++++++++++++++++++++++++++++++++-----
4 files changed, 199 insertions(+), 59 deletions(-)
--
2.18.0.huawei.25
2
6
Matti Vaittinen (2):
workqueue: Add resource managed version of delayed work init
devm-helpers: Add resource managed version of work init
Reka Norman (1):
HID: intel-ish-hid: ipc: Fix potential use-after-free in work function
Zhang Lixu (1):
HID: intel-ish-hid: ipc: Fix dev_err usage with uninitialized
dev->devc
drivers/hid/intel-ish-hid/ipc/ipc.c | 11 +++-
include/linux/devm-helpers.h | 78 +++++++++++++++++++++++++++++
2 files changed, 87 insertions(+), 2 deletions(-)
create mode 100644 include/linux/devm-helpers.h
--
2.34.1
2
5

[PATCH OLK-6.6 0/3] Fix the problem of NFS client mount read/write permission failure
by Li Lingfeng 12 Jun '25
by Li Lingfeng 12 Jun '25
12 Jun '25
Li Lingfeng (3):
Revert "nfs: fix the loss of superblock's initialized flags"
Revert "nfs: pass flags to second superblock"
Revert "nfs: ignore SB_RDONLY when mounting nfs"
fs/nfs/internal.h | 2 +-
fs/nfs/nfs4super.c | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
--
2.31.1
2
4

12 Jun '25
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/IC30P1
--------------------------------
Currently, only L3_MON supports the limbo mechanism, while L2_MON does not.
Therefore, during initialization, avoid incorrect initialization of the
resctrl_rmid_realloc_limit and resctrl_rmid_realloc_threshold variables by
L2_MON.
Similarly, since L2_MON does not support read/write operations on the
max_threshold_occupancy interface, and directly returns.
Fixes: 556688623b2b ("fs/resctrl: Create l2 cache monitors")
Signed-off-by: Zeng Heng <zengheng4(a)huawei.com>
---
drivers/platform/mpam/mpam_resctrl.c | 6 ++++--
fs/resctrl/rdtgroup.c | 9 +++++++++
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/mpam/mpam_resctrl.c b/drivers/platform/mpam/mpam_resctrl.c
index ae02d33dab3f..8de4aae95253 100644
--- a/drivers/platform/mpam/mpam_resctrl.c
+++ b/drivers/platform/mpam/mpam_resctrl.c
@@ -738,8 +738,10 @@ static void mpam_resctrl_pick_caches(void)
continue;
}
- if (mpam_has_feature(mpam_feat_msmon_csu, cprops))
- update_rmid_limits(cache_size);
+ if (mpam_has_feature(mpam_feat_msmon_csu, cprops)) {
+ if (class->level == 3)
+ update_rmid_limits(cache_size);
+ }
if (has_cpor) {
if (class->level == 2) {
diff --git a/fs/resctrl/rdtgroup.c b/fs/resctrl/rdtgroup.c
index 39c83694956d..86567d32e4df 100644
--- a/fs/resctrl/rdtgroup.c
+++ b/fs/resctrl/rdtgroup.c
@@ -1304,6 +1304,11 @@ static int rdt_delay_linear_show(struct kernfs_open_file *of,
static int max_threshold_occ_show(struct kernfs_open_file *of,
struct seq_file *seq, void *v)
{
+ struct rdt_resource *r = of->kn->parent->priv;
+
+ if (r->cache_level != 3)
+ return 0;
+
seq_printf(seq, "%u\n", resctrl_rmid_realloc_threshold);
return 0;
@@ -1326,9 +1331,13 @@ static int rdt_thread_throttle_mode_show(struct kernfs_open_file *of,
static ssize_t max_threshold_occ_write(struct kernfs_open_file *of,
char *buf, size_t nbytes, loff_t off)
{
+ struct rdt_resource *r = of->kn->parent->priv;
unsigned int bytes;
int ret;
+ if (r->cache_level != 3)
+ return 0;
+
ret = kstrtouint(buf, 0, &bytes);
if (ret)
return ret;
--
2.25.1
2
1

[openeuler:OLK-6.6] BUILD REGRESSION a163190fdc7a6ff3074e37e58ab83592602dcb09
by kernel test robot 12 Jun '25
by kernel test robot 12 Jun '25
12 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-6.6
branch HEAD: a163190fdc7a6ff3074e37e58ab83592602dcb09 !16670 mm/mm_spe.c: remove redundant checks and debug prints in mm_spe probe
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505130655.7iroL05g-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505191456.gDWxN0oB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201519.o4k4rCxn-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201603.DayzxkWd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201708.6dvo6U58-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201722.VJAhefze-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201757.qoTbv6a9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201856.VGaOEUgd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201929.AHI9gRxc-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201944.3gmU2Dch-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210529.5XGNL1lQ-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210722.gwnDsvxy-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210904.LgTxS8rg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505261539.RLecPVlr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272122.LGw8kmAU-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272226.RcAmWtpx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272259.OmUgrWdN-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280023.4g7q598y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280056.91YNE6dg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280147.YRorbaqT-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280148.N1Nt6ytB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280443.W5j7eO4Y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280603.E3YHNVzo-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280802.sHbtyOVR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281457.ZzTKocMO-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281528.FWgbJLUK-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281611.rYwqwDFF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281622.nxl9aDmY-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505290337.UpMv109S-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291449.qcY77e1i-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505301346.VRD8YS7H-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506050103.qcTmWVAw-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506110323.W8vxCje1-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506110730.xt79RnwS-lkp@intel.com
./drivers/crypto/sedriver/wst_se_common_type.h: 19 linux/version.h not needed.
Warning: drivers/arm/mm_monitor/spe-decoder/arm-spe-decoder.c references a file that doesn't exist: Documentation/arm64/memory.rst
arch/arm64/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/arm64/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/arm64/kvm/hisilicon/hisi_virt.h:112:13: warning: 'hisi_ipiv_supported_per_vm' defined but not used [-Wunused-function]
arch/arm64/kvm/hisilicon/hisi_virt.h:116:13: warning: 'hisi_ipiv_enable_per_vm' defined but not used [-Wunused-function]
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/x86/kernel/cpu/bpf-rvi.c:129:25: warning: no previous prototype for function 'bpf_arch_flags' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for function 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/x86/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
drivers/crypto/sedriver/wst_se_echip_driver.c:1082:9: warning: no previous prototype for 'se_kernelwrite' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:114:5: warning: no previous prototype for 'se_free_dma_buf' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1175:5: warning: no previous prototype for 'se_chip_load' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1272:6: warning: no previous prototype for 'se_chip_unload' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:150:5: warning: no previous prototype for 'se_printk_hex' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:95:25: warning: no previous prototype for 'se_get_dma_buf' [-Wmissing-prototypes]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:240:32: warning: unused variable 'entry' [-Wunused-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:244:13: warning: variable 'restart_fg' set but not used [-Wunused-but-set-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:256:21: warning: unused variable 'ring_index' [-Wunused-variable]
drivers/gpu/drm/phytium/pe220x_dc.c:252:6: warning: no previous prototype for function 'pe220x_dc_bmc_hw_plane_get_primary_format' [-Wmissing-prototypes]
drivers/gpu/drm/phytium/phytium_gem.c:174:5: warning: no previous prototype for function 'phytium_gem_prime_mmap' [-Wmissing-prototypes]
drivers/i2c/busses/i2c-zhaoxin-smbus.c:78:16: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
drivers/i2c/busses/i2c-zhaoxin-smbus.c:83:2: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
drivers/irqchip/irq-gic-v3-its.c:392:15: warning: no previous prototype for 'gic_data_rdist_get_vlpi_base' [-Wmissing-prototypes]
drivers/irqchip/irq-gic-v3-its.c:392:15: warning: no previous prototype for function 'gic_data_rdist_get_vlpi_base' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c: mag_mpu_cmd_defs.h is included more than once.
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:410:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/motorcomm/yt6801/yt6801_desc.c:206:73: warning: '%u' directive output may be truncated writing between 1 and 10 bytes into a region of size 8 [-Wformat-truncation=]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:35: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:42: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for 'ps3_pci_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for 'ps3_pci_init_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for 'ps3_pci_init_complete_exit' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli.c:108:9: error: function 'ps3stor_cli_printf' might be a candidate for 'gnu_printf' format attribute [-Werror=suggest-attribute=format]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for 'ps3_dump_context_show' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for 'ps3_dump_file_write' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for 'ps3_dump_file_close' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for 'ps3_dump_local_time' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for 'ps3_dump_filename_build' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for 'ps3_dump_file_open' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for 'ps3_trigger_irq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for 'ps3_resp_status_convert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for 'ps3_io_recv_ok_stat_inc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for 'ps3_cmd_stat_content_clear' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for 'ps3_dump_dir_length' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for 'ps3_scsi_private_init_pd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for 'ps3_scsi_private_init_vd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for 'ps3_sas_expander_phys_refresh' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_instance_manager.c:669:60: error: 'snprintf' output may be truncated before the last format character [-Werror=format-truncation=]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for 'ps3_ioc_resource_prepare_hba' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for 'ps3_ioc_resource_prepare_switch' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for 'ps3_ioc_resource_prepare_raid' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for 'ps3_hard_reset_to_ready' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for 'ps3_clean_mgr_cmd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: 'PS3_INTERRUPT_CMD_ENABLE_MSIX' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: 'PS3_INTERRUPT_MASK_DISABLE' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: 'PS3_INTERRUPT_STATUS_EXIST_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: 'PS3_INTERRUPT_CLEAR_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: 'PS3_SSD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: 'PS3_HDD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for 'ps3_cli_ver_query' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for 'ps3_qos_pd_waitq_ratio_update' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for 'ps3_hba_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for 'ps3_hba_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for 'ps3_cmd_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for 'ps3_qos_cmd_waitq_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for 'ps3_hba_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for 'ps3_hba_qos_vd_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for 'ps3_hba_qos_vd_reset' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for 'ps3_hba_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for 'ps3_raid_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for 'ps3_qos_mgrq_resend' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for 'ps3_qos_vd_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for 'ps3_raid_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for 'ps3_qos_exclusive_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for 'ps3_qos_tg_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for 'ps3_raid_qos_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4022:6: error: no previous prototype for 'ps3_raid_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4083:6: error: no previous prototype for 'ps3_raid_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for 'ps3_qos_all_pd_rc_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for 'ps3_pd_quota_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for 'ps3_pd_quota_waitq_clean' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for 'ps3_range_check_and_insert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for 'ps3_r1x_hash_range_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for 'ps3_r1x_hash_range_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for 'ps3_r1x_hash_bit_check' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for 'ps3_r1x_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for 'ps3_r1x_hash_bit_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for 'rbtDelNodeDo' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for 'ps3_recovery_irq_queue_destroy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for 'ps3_hard_recovery_state_finish' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:363:5: error: no previous prototype for 'ps3_recovery_state_transfer' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for 'ps3_recovery_context_alloc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for 'ps3_recovery_context_free' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for 'ps3_recovery_context_delete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:407:5: error: no previous prototype for 'ps3_sas_update_phy_info' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1110:5: error: no previous prototype for 'ps3_wait_for_outstanding_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:876:6: error: no previous prototype for 'ps3_set_task_manager_busy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1958:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
drivers/video/fbdev/riva/riva_hw.o: warning: objtool: RivaGetConfig+0x7dd: stack state mismatch: cfa1=4+8 cfa2=4-24
fs/nfs/dir.c:1498:6: warning: no previous prototype for 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/dir.c:1498:6: warning: no previous prototype for function 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:127: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/dns_process.c:129:6: warning: no previous prototype for function 'enfs_swap_name_cache' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:148:6: warning: no previous prototype for function 'enfs_domain_inc' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:217:6: warning: no previous prototype for function 'ip_list_append' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:361:5: warning: no previous prototype for function 'enfs_quick_sort' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:394:5: warning: no previous prototype for function 'enfs_dns_process_ip' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:434:5: warning: no previous prototype for function 'enfs_server_query_dns' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:494:6: warning: no previous prototype for function 'query_dns_each_name' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:582:5: warning: no previous prototype for function 'enfs_iter_nfs_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:669:6: warning: no previous prototype for function 'enfs_domain_for_each' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:92:6: warning: no previous prototype for function 'enfs_update_domain_name' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_config.c:554:6: warning: no previous prototype for function 'enfs_glob_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:100:6: warning: no previous prototype for function 'enfs_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:95:9: warning: no previous prototype for function 'enfs_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:112:6: warning: no previous prototype for function 'enfs_update_lookup_cache_flag_to_server' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:146:5: warning: no previous prototype for function 'enfs_query_lookup_cache' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:251:6: warning: no previous prototype for function 'enfs_query_lookup_cache_pre_check' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:269:6: warning: no previous prototype for function 'lookupcache_execute_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:292:6: warning: no previous prototype for function 'lookupcache_workqueue_queue_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:305:5: warning: no previous prototype for function 'lookupcache_add_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:374:6: warning: no previous prototype for function 'lookupcache_loop_rpclnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:423:6: warning: no previous prototype for function 'enfs_lookupcache_update_switch' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:440:5: warning: no previous prototype for function 'lookupcache_routine' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:460:5: warning: no previous prototype for function 'lookupcache_start' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:471:5: warning: no previous prototype for function 'enfs_lookupcache_workqueue_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:487:6: warning: no previous prototype for function 'lookupcache_workqueue_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:504:5: warning: no previous prototype for function 'enfs_lookupcache_timer_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:98:6: warning: no previous prototype for function 'enfs_clean_server_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:179: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/enfs_multipath.c:321:5: warning: no previous prototype for function 'enfs_configure_xprt_to_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:357:6: warning: no previous prototype for function 'enfs_cmp_addrs' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:374:6: warning: no previous prototype for function 'enfs_xprt_addrs_is_same' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:393:6: warning: no previous prototype for function 'enfs_already_have_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:589:6: warning: variable 'link_count' set but not used [-Wunused-but-set-variable]
fs/nfs/enfs/enfs_multipath.c:836:5: warning: no previous prototype for function 'enfs_multipath_create_thread' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:932:6: warning: no previous prototype for function 'enfs_create_multi_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:988:6: warning: no previous prototype for function 'enfs_release_rpc_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:120:6: warning: no previous prototype for function 'enfs_free_client_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:135:6: warning: no previous prototype for function 'nfs_multipath_client_info_free_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:191:6: warning: no previous prototype for function 'nfs_multipath_ip_list_info_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:328:6: warning: no previous prototype for function 'print_ip_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:352:6: warning: no previous prototype for function 'print_dns_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:390:6: warning: no previous prototype for function 'convert_lookup_cache_str' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:72:5: warning: no previous prototype for function 'nfs_multipath_client_mount_info_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:162:5: warning: no previous prototype for function 'enfs_parse_ip_single' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:236:6: warning: no previous prototype for function 'enfs_valid_ip' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:24:6: warning: no previous prototype for function 'nfs_multipath_parse_ip_ipv6_add' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:361:6: warning: no previous prototype for function 'isInvalidDns' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:387:5: warning: no previous prototype for function 'nfs_multipath_parse_dns_list' [-Wmissing-prototypes]
include/linux/psp-hygon.h:509:5: warning: no previous prototype for function 'psp_register_cmd_notifier' [-Wmissing-prototypes]
include/linux/psp-hygon.h:510:5: warning: no previous prototype for function 'psp_unregister_cmd_notifier' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for function 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for function 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/sched/core.c:158:5: warning: no previous prototype for 'sched_task_is_throttled' [-Wmissing-prototypes]
kernel/sched/core.c:158:5: warning: no previous prototype for function 'sched_task_is_throttled' [-Wmissing-prototypes]
mm/damon/core.c:116:5: warning: no previous prototype for function 'damon_target_init_kfifo' [-Wmissing-prototypes]
mm/damon/core.c:132:6: warning: no previous prototype for function 'damon_target_deinit_kfifo' [-Wmissing-prototypes]
mm/dynamic_pool.c:1704:51: warning: variable 'ret' is uninitialized when used here [-Wuninitialized]
mm/madvise.c:297:6: warning: no previous prototype for 'force_swapin_vma' [-Wmissing-prototypes]
mm/madvise.c:297:6: warning: no previous prototype for function 'force_swapin_vma' [-Wmissing-prototypes]
mm/mem_sampling.c:69:6: warning: no previous prototype for function 'mem_sampling_record_cb_register' [-Wmissing-prototypes]
mm/mem_sampling.c:86:6: warning: no previous prototype for function 'mem_sampling_record_cb_unregister' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for function 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1618: warning: expecting prototype for memblock_alloc_internal(). Prototype was for __memblock_alloc_internal() instead
mm/memcontrol.c:3382:6: warning: no previous prototype for function 'hisi_oom_recover' [-Wmissing-prototypes]
mm/memcontrol.c:4733:12: warning: 'mem_cgroup_check_swap_for_v1' defined but not used [-Wunused-function]
mm/mempolicy.c:1115:25: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/mempolicy.c:1115:32: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/oom_kill.c:319: warning: Function parameter or member 'oc' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'points' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'task' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: expecting prototype for We choose the task in low(). Prototype was for oom_next_task() instead
mm/page_cache_limit.c:61:5: warning: no previous prototype for 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:61:5: warning: no previous prototype for function 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for function 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for function 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/share_pool.c:1510: warning: Function parameter or member 'node_id' not described in 'sp_area_alloc'
mm/share_pool.c:2425: warning: duplicate section name 'Return'
mm/share_pool.c:2796:7: warning: variable 'is_hugepage' set but not used [-Wunused-but-set-variable]
mm/share_pool.c:2844: warning: Function parameter or member 'spg_id' not described in 'mg_sp_unshare'
mm/share_pool.c:975: warning: expecting prototype for mp_sp_group_id_by_pid(). Prototype was for mg_sp_group_id_by_pid() instead
mm/vmalloc.c:4976: warning: Function parameter or member 'pgoff' not described in 'remap_vmalloc_hugepage_range_partial'
Unverified Error/Warning (likely false positive, kindly check if interested):
fs/nfs/enfs/enfs_multipath.c: enfs_multipath.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-gpu-drm-phytium-pe22_dc.c:warning:no-previous-prototype-for-function-pe22_dc_bmc_hw_plane_get_primary_format
| |-- drivers-gpu-drm-phytium-phytium_gem.c:warning:no-previous-prototype-for-function-phytium_gem_prime_mmap
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-function-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_deinit_kfifo
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_init_kfifo
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_register
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_unregister
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-hisi_oom_recover
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-share_pool.c:warning:Function-parameter-or-member-node_id-not-described-in-sp_area_alloc
| |-- mm-share_pool.c:warning:Function-parameter-or-member-spg_id-not-described-in-mg_sp_unshare
| |-- mm-share_pool.c:warning:duplicate-section-name-Return
| |-- mm-share_pool.c:warning:expecting-prototype-for-mp_sp_group_id_by_pid().-Prototype-was-for-mg_sp_group_id_by_pid()-instead
| |-- mm-share_pool.c:warning:variable-is_hugepage-set-but-not-used
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- arm64-allnoconfig
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-defconfig
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- arch-arm64-kvm-hisilicon-hisi_virt.h:warning:hisi_ipiv_enable_per_vm-defined-but-not-used
| |-- arch-arm64-kvm-hisilicon-hisi_virt.h:warning:hisi_ipiv_supported_per_vm-defined-but-not-used
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-002-20250611
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-003-20250611
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allmodconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete_exit
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli.c:error:function-ps3stor_cli_printf-might-be-a-candidate-for-gnu_printf-format-attribute
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-ps3_dump_context_show
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_close
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_open
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_write
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_filename_build
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_local_time
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_resp_status_convert
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_trigger_irq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_cmd_stat_content_clear
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_io_recv_ok_stat_inc
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-ps3_dump_dir_length
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_pd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_vd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-ps3_sas_expander_phys_refresh
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:error:snprintf-output-may-be-truncated-before-the-last-format-character
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_hba
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_raid
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_switch
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-ps3_hard_reset_to_ready
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-ps3_clean_mgr_cmd
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_HDD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CLEAR_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_ENABLE_MSIX-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_MASK_DISABLE-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_STATUS_EXIST_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_SSD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-ps3_cli_ver_query
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_cmd_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_init
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_reset
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clean
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_all_pd_rc_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_cmd_waitq_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_exclusive_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_mgrq_resend
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_pd_waitq_ratio_update
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_tg_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_vd_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_conflict_queue_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_check
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_range_check_and_insert
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-rbtDelNodeDo
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_hard_recovery_state_finish
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_alloc
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_delete
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_free
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_irq_queue_destroy
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_state_transfer
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-ps3_sas_update_phy_info
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_set_task_manager_busy
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_wait_for_outstanding_complete
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpuset_from_task
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_sysctl_handler
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allnoconfig
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allyesconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete_exit
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli.c:error:function-ps3stor_cli_printf-might-be-a-candidate-for-gnu_printf-format-attribute
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-ps3_dump_context_show
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_close
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_open
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_write
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_filename_build
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_local_time
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_resp_status_convert
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_trigger_irq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_cmd_stat_content_clear
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_io_recv_ok_stat_inc
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-ps3_dump_dir_length
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_pd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_vd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-ps3_sas_expander_phys_refresh
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:error:snprintf-output-may-be-truncated-before-the-last-format-character
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_hba
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_raid
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_switch
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-ps3_hard_reset_to_ready
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-ps3_clean_mgr_cmd
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_HDD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CLEAR_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_ENABLE_MSIX-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_MASK_DISABLE-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_STATUS_EXIST_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_SSD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-ps3_cli_ver_query
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_cmd_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_init
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_reset
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clean
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_all_pd_rc_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_cmd_waitq_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_exclusive_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_mgrq_resend
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_pd_waitq_ratio_update
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_tg_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_vd_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_conflict_queue_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_check
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_range_check_and_insert
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-rbtDelNodeDo
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_hard_recovery_state_finish
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_alloc
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_delete
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_free
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_irq_queue_destroy
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_state_transfer
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-ps3_sas_update_phy_info
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_set_task_manager_busy
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_wait_for_outstanding_complete
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpuset_from_task
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_sysctl_handler
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-defconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-001-20250611
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-002-20250611
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allnoconfig
| |-- Warning:drivers-arm-mm_monitor-spe-decoder-arm-spe-decoder.c-references-a-file-that-doesn-t-exist:Documentation-arm64-memory.rst
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-crypto-sedriver-wst_se_common_type.h:linux-version.h-not-needed.
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:mag_mpu_cmd_defs.h-is-included-more-than-once.
| |-- fs-nfs-enfs-enfs_multipath.c:enfs_multipath.h-is-included-more-than-once.
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allyesconfig
| |-- arch-x86-kernel-cpu-bpf-rvi.c:warning:no-previous-prototype-for-function-bpf_arch_flags
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- x86_64-buildonly-randconfig-001-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-002-20250611
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_register_cmd_notifier
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_unregister_cmd_notifier
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-003-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_register_cmd_notifier
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_unregister_cmd_notifier
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-004-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-005-20250611
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_task_is_throttled
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-006-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-i2c-busses-i2c-zhaoxin-smbus.c:error:call-to-undeclared-function-inb-ISO-C99-and-later-do-not-support-implicit-function-declarations
| |-- drivers-i2c-busses-i2c-zhaoxin-smbus.c:error:call-to-undeclared-function-outb-ISO-C99-and-later-do-not-support-implicit-function-declarations
| |-- drivers-video-fbdev-riva-riva_hw.o:warning:objtool:RivaGetConfig:stack-state-mismatch:cfa1-cfa2
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_task_is_throttled
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- x86_64-defconfig
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-randconfig-161-20250612
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
`-- x86_64-rhel-9.4-rust
|-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
|-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
|-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
|-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
|-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
|-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
|-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
`-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
elapsed time: 734m
configs tested: 22
configs skipped: 124
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 defconfig gcc-15.1.0
arm64 randconfig-001-20250611 gcc-6.5.0
arm64 randconfig-002-20250611 gcc-9.5.0
arm64 randconfig-003-20250611 gcc-13.3.0
arm64 randconfig-004-20250611 gcc-5.5.0
loongarch allmodconfig gcc-15.1.0
loongarch allnoconfig gcc-15.1.0
loongarch defconfig gcc-15.1.0
loongarch randconfig-001-20250611 gcc-15.1.0
loongarch randconfig-002-20250611 gcc-15.1.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250611 gcc-12
x86_64 buildonly-randconfig-002-20250611 clang-20
x86_64 buildonly-randconfig-003-20250611 clang-20
x86_64 buildonly-randconfig-004-20250611 gcc-12
x86_64 buildonly-randconfig-005-20250611 gcc-12
x86_64 buildonly-randconfig-006-20250611 clang-20
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10 2954/2954] ipc/fast_ipc.c:249:18: warning: variable 'pending_signals' set but not used
by kernel test robot 12 Jun '25
by kernel test robot 12 Jun '25
12 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: 1fc14d09b9f01b271181b25cc434d200e220c4d3 [2954/2954] ipc: add fast_ipc module to enable fast process switching
config: arm64-randconfig-r133-20250610 (https://download.01.org/0day-ci/archive/20250612/202506120113.Q1CFi903-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce: (https://download.01.org/0day-ci/archive/20250612/202506120113.Q1CFi903-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506120113.Q1CFi903-lkp@intel.com/
All warnings (new ones prefixed by >>):
ipc/fast_ipc.c: In function 'fast_ipc_wait_call':
>> ipc/fast_ipc.c:249:18: warning: variable 'pending_signals' set but not used [-Wunused-but-set-variable]
249 | sigset_t pending_signals;
| ^~~~~~~~~~~~~~~
vim +/pending_signals +249 ipc/fast_ipc.c
244
245 long fast_ipc_wait_call(struct fast_ipc_bind_info *bind_info,
246 struct task_struct *tsk)
247 {
248 long ret = 0;
> 249 sigset_t pending_signals;
250
251 for (;;) {
252 set_current_state(TASK_INTERRUPTIBLE);
253 if (bind_info->is_calling)
254 break;
255
256 if (bind_info->server_need_exit) {
257 ret = -ENODEV;
258 break;
259 }
260
261 schedule();
262
263 if (signal_pending_state(TASK_INTERRUPTIBLE, tsk)
264 && !bind_info->is_calling) {
265 if (fatal_signal_pending(tsk)) {
266 pr_err("[CPU/%d][%s/%d] current task has SIGKILL\n",
267 smp_processor_id(), tsk->comm, tsk->pid);
268 }
269
270 pending_signals = current->pending.signal;
271 ret = -ERESTARTSYS;
272 break;
273 }
274 }
275
276 set_current_state(TASK_RUNNING);
277 return ret;
278 }
279 EXPORT_SYMBOL_GPL(fast_ipc_wait_call);
280
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:openEuler-1.0-LTS] BUILD REGRESSION 7b14992c5fc2361904e3c2f345fe502cf7961adb
by kernel test robot 12 Jun '25
by kernel test robot 12 Jun '25
12 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
branch HEAD: 7b14992c5fc2361904e3c2f345fe502cf7961adb !16650 mm/vmscan: fix hwpoisoned THP handling in shrink_page_list
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505160438.vuslIGAx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201642.9kWf73yF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201731.rOzzhiIH-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201910.3QGTFYPj-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505202028.GvFwJHdW-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505202138.LT7VPPBg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061449.nBm6oAvj-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061633.Zsp5yfyi-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061637.CVNqsEqf-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061755.yar1Fr9d-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506071856.LxaA5NHF-lkp@intel.com
/kbuild/src/headers/Makefile:626: include/config/auto.conf.cmd: No such file or directory
arch/x86/kernel/fpu/core.c:175:14: warning: mixing declarations and code is a C99 extension [-Wdeclaration-after-statement]
include/linux/list.h:65:19: warning: storing the address of local variable 'tmp' in '((struct list_head *)lip)[5].prev' [-Wdangling-pointer=]
mm/huge_memory.c:2092:8: warning: variable 'orig_pud' set but not used [-Wunused-but-set-variable]
mm/hugetlb.c:1432:6: warning: no previous prototype for 'free_huge_page_to_dhugetlb_pool' [-Wmissing-prototypes]
mm/khugepaged.c:1387: warning: Function parameter or member 'hpage' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'mapping' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'mm' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'node' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'reliable' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'start' not described in 'collapse_shmem'
mm/maccess.c:85:6: warning: no previous prototype for '__probe_user_read' [-Wmissing-prototypes]
mm/memcontrol.c:5000:6: warning: no previous prototype for 'dhugetlb_pool_is_free' [-Wmissing-prototypes]
mm/memcontrol.c:5000:6: warning: no previous prototype for function 'dhugetlb_pool_is_free' [-Wmissing-prototypes]
mm/memcontrol.c:6728: warning: bad line: | 0, otherwise.
mm/memory.c:4803:3: warning: cast from 'int (*)(unsigned long, unsigned long, struct cgp_args *)' to 'ktask_thread_func' (aka 'int (*)(void *, void *, void *)') converts to incompatible function type [-Wcast-function-type-mismatch]
mm/memory_hotplug.c:481:16: warning: variable 'start_pfn' set but not used [-Wunused-but-set-variable]
mm/memory_hotplug.c:481:23: warning: variable 'start_pfn' set but not used [-Wunused-but-set-variable]
mm/memory_hotplug.c:970:13: warning: 'rollback_node_hotadd' defined but not used [-Wunused-function]
mm/page_alloc.c:3123: warning: Function parameter or member 'mt' not described in '__putback_isolated_page'
mm/rmap.c:916:17: warning: variable 'cstart' set but not used [-Wunused-but-set-variable]
mm/rmap.c:916:31: warning: variable 'cstart' set but not used [-Wunused-but-set-variable]
mm/vmalloc.c:231:16: warning: variable 'start' set but not used [-Wunused-but-set-variable]
mm/vmalloc.c:231:23: warning: variable 'start' set but not used [-Wunused-but-set-variable]
Unverified Error/Warning (likely false positive, kindly check if interested):
mm/hugetlb.c: linux/share_pool.h is included more than once.
mm/shmem.c: linux/share_pool.h is included more than once.
mm/swap.c: linux/memremap.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-allnoconfig
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-002-20250611
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-003-20250611
| |-- include-linux-list.h:warning:storing-the-address-of-local-variable-tmp-in-((struct-list_head-)lip)-.prev
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-allmodconfig
| `-- arch-x86-kernel-fpu-core.c:warning:mixing-declarations-and-code-is-a-C99-extension
|-- x86_64-allnoconfig
| |-- Makefile:include-config-auto.conf.cmd:No-such-file-or-directory
| |-- mm-hugetlb.c:linux-share_pool.h-is-included-more-than-once.
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| |-- mm-shmem.c:linux-share_pool.h-is-included-more-than-once.
| |-- mm-swap.c:linux-memremap.h-is-included-more-than-once.
| |-- mm-vmalloc.c:warning:variable-start-set-but-not-used
| `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration
|-- x86_64-allyesconfig
| |-- arch-x86-kernel-fpu-core.c:warning:mixing-declarations-and-code-is-a-C99-extension
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-002-20250611
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| |-- mm-vmalloc.c:warning:variable-start-set-but-not-used
| `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration
|-- x86_64-buildonly-randconfig-003-20250611
| |-- kernel-hung_task.c:error:use-of-undeclared-identifier-sysctl_hung_task_all_cpu_backtrace
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| |-- mm-vmalloc.c:warning:variable-start-set-but-not-used
| `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration
|-- x86_64-buildonly-randconfig-006-20250611
| |-- arch-x86-kernel-fpu-core.c:warning:mixing-declarations-and-code-is-a-C99-extension
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-dhugetlb_pool_is_free
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-defconfig
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
`-- x86_64-rhel-9.4-rust
|-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
|-- mm-hugetlb.c:warning:no-previous-prototype-for-function-free_huge_page_to_dhugetlb_pool
|-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
|-- mm-memcontrol.c:warning:bad-line:otherwise.
|-- mm-memcontrol.c:warning:no-previous-prototype-for-function-dhugetlb_pool_is_free
|-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
|-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
|-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
|-- mm-rmap.c:warning:variable-cstart-set-but-not-used
`-- mm-vmalloc.c:warning:variable-start-set-but-not-used
elapsed time: 800m
configs tested: 16
configs skipped: 110
tested configs:
arm64 allmodconfig gcc-15.1.0
arm64 allnoconfig gcc-15.1.0
arm64 randconfig-001-20250611 gcc-6.5.0
arm64 randconfig-002-20250611 gcc-9.5.0
arm64 randconfig-003-20250611 gcc-13.3.0
arm64 randconfig-004-20250611 gcc-5.5.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250611 gcc-12
x86_64 buildonly-randconfig-002-20250611 clang-20
x86_64 buildonly-randconfig-003-20250611 clang-20
x86_64 buildonly-randconfig-004-20250611 gcc-12
x86_64 buildonly-randconfig-005-20250611 gcc-12
x86_64 buildonly-randconfig-006-20250611 clang-20
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10 2954/2954] arch/arm64/net/bpf_jit_comp.c:1647:73: sparse: sparse: incorrect type in argument 5 (different base types)
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: 43be0c0544c8e70723951433fd2dae258fff3dff [2954/2954] bpf, arm64: Fix bpf trampoline instruction endianness
config: arm64-randconfig-r133-20250610 (https://download.01.org/0day-ci/archive/20250611/202506112030.xet5A4D9-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce: (https://download.01.org/0day-ci/archive/20250611/202506112030.xet5A4D9-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506112030.xet5A4D9-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
arch/arm64/net/bpf_jit_comp.c:1515:29: sparse: sparse: incorrect type in assignment (different base types) @@ expected unsigned int [usertype] * @@ got restricted __le32 [usertype] * @@
arch/arm64/net/bpf_jit_comp.c:1515:29: sparse: expected unsigned int [usertype] *
arch/arm64/net/bpf_jit_comp.c:1515:29: sparse: got restricted __le32 [usertype] *
>> arch/arm64/net/bpf_jit_comp.c:1647:73: sparse: sparse: incorrect type in argument 5 (different base types) @@ expected unsigned int [usertype] **branches @@ got restricted __le32 [usertype] **[assigned] branches @@
arch/arm64/net/bpf_jit_comp.c:1647:73: sparse: expected unsigned int [usertype] **branches
arch/arm64/net/bpf_jit_comp.c:1647:73: sparse: got restricted __le32 [usertype] **[assigned] branches
vim +1647 arch/arm64/net/bpf_jit_comp.c
2a5ab77af7f94d Xu Kuohai 2024-04-13 1496
2a5ab77af7f94d Xu Kuohai 2024-04-13 1497 static void invoke_bpf_mod_ret(struct jit_ctx *ctx, struct bpf_tramp_progs *tp,
2a5ab77af7f94d Xu Kuohai 2024-04-13 1498 int args_off, int retval_off, u32 **branches)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1499 {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1500 int i;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1501
2a5ab77af7f94d Xu Kuohai 2024-04-13 1502 /* The first fmod_ret program will receive a garbage return value.
2a5ab77af7f94d Xu Kuohai 2024-04-13 1503 * Set this to 0 to avoid confusing the program.
2a5ab77af7f94d Xu Kuohai 2024-04-13 1504 */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1505 emit(A64_STR64I(A64_ZR, A64_SP, retval_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1506 for (i = 0; i < tp->nr_progs; i++) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1507 invoke_bpf_prog(ctx, tp->progs[i], args_off, retval_off, true);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1508 /* if (*(u64 *)(sp + retval_off) != 0)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1509 * goto do_fexit;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1510 */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1511 emit(A64_LDR64I(A64_R(10), A64_SP, retval_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1512 /* Save the location of branch, and generate a nop.
2a5ab77af7f94d Xu Kuohai 2024-04-13 1513 * This nop will be replaced with a cbnz later.
2a5ab77af7f94d Xu Kuohai 2024-04-13 1514 */
2a5ab77af7f94d Xu Kuohai 2024-04-13 @1515 branches[i] = ctx->image + ctx->idx;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1516 emit(A64_NOP, ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1517 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1518 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1519
2a5ab77af7f94d Xu Kuohai 2024-04-13 1520 static void save_args(struct jit_ctx *ctx, int args_off, int nargs)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1521 {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1522 int i;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1523
2a5ab77af7f94d Xu Kuohai 2024-04-13 1524 for (i = 0; i < nargs; i++) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1525 emit(A64_STR64I(i, A64_SP, args_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1526 args_off += 8;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1527 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1528 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1529
2a5ab77af7f94d Xu Kuohai 2024-04-13 1530 static void restore_args(struct jit_ctx *ctx, int args_off, int nargs)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1531 {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1532 int i;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1533
2a5ab77af7f94d Xu Kuohai 2024-04-13 1534 for (i = 0; i < nargs; i++) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1535 emit(A64_LDR64I(i, A64_SP, args_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1536 args_off += 8;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1537 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1538 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1539
2a5ab77af7f94d Xu Kuohai 2024-04-13 1540 /* Based on the x86's implementation of arch_prepare_bpf_trampoline().
2a5ab77af7f94d Xu Kuohai 2024-04-13 1541 *
2a5ab77af7f94d Xu Kuohai 2024-04-13 1542 * bpf prog and function entry before bpf trampoline hooked:
2a5ab77af7f94d Xu Kuohai 2024-04-13 1543 * mov x9, lr
2a5ab77af7f94d Xu Kuohai 2024-04-13 1544 * nop
2a5ab77af7f94d Xu Kuohai 2024-04-13 1545 *
2a5ab77af7f94d Xu Kuohai 2024-04-13 1546 * bpf prog and function entry after bpf trampoline hooked:
2a5ab77af7f94d Xu Kuohai 2024-04-13 1547 * mov x9, lr
2a5ab77af7f94d Xu Kuohai 2024-04-13 1548 * bl <bpf_trampoline or plt>
2a5ab77af7f94d Xu Kuohai 2024-04-13 1549 *
2a5ab77af7f94d Xu Kuohai 2024-04-13 1550 */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1551 static int prepare_trampoline(struct jit_ctx *ctx, struct bpf_tramp_image *im,
2a5ab77af7f94d Xu Kuohai 2024-04-13 1552 struct bpf_tramp_progs *tprogs, void *orig_call,
2a5ab77af7f94d Xu Kuohai 2024-04-13 1553 int nargs, u32 flags)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1554 {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1555 int i;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1556 int stack_size;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1557 int retaddr_off;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1558 int regs_off;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1559 int retval_off;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1560 int args_off;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1561 struct bpf_tramp_progs *fentry = &tprogs[BPF_TRAMP_FENTRY];
2a5ab77af7f94d Xu Kuohai 2024-04-13 1562 struct bpf_tramp_progs *fexit = &tprogs[BPF_TRAMP_FEXIT];
2a5ab77af7f94d Xu Kuohai 2024-04-13 1563 struct bpf_tramp_progs *fmod_ret = &tprogs[BPF_TRAMP_MODIFY_RETURN];
2a5ab77af7f94d Xu Kuohai 2024-04-13 1564 bool save_ret;
43be0c0544c8e7 Xu Kuohai 2024-04-13 1565 __le32 **branches = NULL;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1566
2a5ab77af7f94d Xu Kuohai 2024-04-13 1567 /* trampoline stack layout:
2a5ab77af7f94d Xu Kuohai 2024-04-13 1568 * [ parent ip ]
2a5ab77af7f94d Xu Kuohai 2024-04-13 1569 * [ FP ]
2a5ab77af7f94d Xu Kuohai 2024-04-13 1570 * SP + retaddr_off [ self ip ]
2a5ab77af7f94d Xu Kuohai 2024-04-13 1571 * [ FP ]
2a5ab77af7f94d Xu Kuohai 2024-04-13 1572 *
2a5ab77af7f94d Xu Kuohai 2024-04-13 1573 * [ padding ] align SP to multiples of 16
2a5ab77af7f94d Xu Kuohai 2024-04-13 1574 *
2a5ab77af7f94d Xu Kuohai 2024-04-13 1575 * SP + regs_off [ x19 ] callee saved reg x19
2a5ab77af7f94d Xu Kuohai 2024-04-13 1576 *
2a5ab77af7f94d Xu Kuohai 2024-04-13 1577 * SP + retval_off [ return value ] BPF_TRAMP_F_CALL_ORIG or
2a5ab77af7f94d Xu Kuohai 2024-04-13 1578 * BPF_TRAMP_F_RET_FENTRY_RET
2a5ab77af7f94d Xu Kuohai 2024-04-13 1579 *
2a5ab77af7f94d Xu Kuohai 2024-04-13 1580 * [ argN ]
2a5ab77af7f94d Xu Kuohai 2024-04-13 1581 * [ ... ]
2a5ab77af7f94d Xu Kuohai 2024-04-13 1582 * SP + args_off [ arg1 ]
2a5ab77af7f94d Xu Kuohai 2024-04-13 1583 */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1584
2a5ab77af7f94d Xu Kuohai 2024-04-13 1585 stack_size = 0;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1586
2a5ab77af7f94d Xu Kuohai 2024-04-13 1587 args_off = stack_size;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1588 /* room for args */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1589 stack_size += nargs * 8;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1590
2a5ab77af7f94d Xu Kuohai 2024-04-13 1591 /* room for return value */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1592 retval_off = stack_size;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1593 save_ret = flags & (BPF_TRAMP_F_CALL_ORIG | BPF_TRAMP_F_RET_FENTRY_RET);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1594 if (save_ret)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1595 stack_size += 8;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1596
2a5ab77af7f94d Xu Kuohai 2024-04-13 1597 /* room for callee saved registers, currently only x19 is used */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1598 regs_off = stack_size;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1599 stack_size += 8;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1600
2a5ab77af7f94d Xu Kuohai 2024-04-13 1601 /* round up to multiples of 16 to avoid SPAlignmentFault */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1602 stack_size = round_up(stack_size, 16);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1603
2a5ab77af7f94d Xu Kuohai 2024-04-13 1604 /* return address locates above FP */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1605 retaddr_off = stack_size + 8;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1606
2a5ab77af7f94d Xu Kuohai 2024-04-13 1607 /* bpf trampoline may be invoked by 3 instruction types:
2a5ab77af7f94d Xu Kuohai 2024-04-13 1608 * 1. bl, attached to bpf prog or kernel function via short jump
2a5ab77af7f94d Xu Kuohai 2024-04-13 1609 * 2. br, attached to bpf prog or kernel function via long jump
2a5ab77af7f94d Xu Kuohai 2024-04-13 1610 * 3. blr, working as a function pointer, used by struct_ops.
2a5ab77af7f94d Xu Kuohai 2024-04-13 1611 * So BTI_JC should used here to support both br and blr.
2a5ab77af7f94d Xu Kuohai 2024-04-13 1612 */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1613 emit_bti(A64_BTI_JC, ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1614
2a5ab77af7f94d Xu Kuohai 2024-04-13 1615 /* frame for parent function */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1616 emit(A64_PUSH(A64_FP, A64_R(9), A64_SP), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1617 emit(A64_MOV(1, A64_FP, A64_SP), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1618
2a5ab77af7f94d Xu Kuohai 2024-04-13 1619 /* frame for patched function */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1620 emit(A64_PUSH(A64_FP, A64_LR, A64_SP), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1621 emit(A64_MOV(1, A64_FP, A64_SP), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1622
2a5ab77af7f94d Xu Kuohai 2024-04-13 1623 /* allocate stack space */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1624 emit(A64_SUB_I(1, A64_SP, A64_SP, stack_size), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1625
2a5ab77af7f94d Xu Kuohai 2024-04-13 1626 /* save args */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1627 save_args(ctx, args_off, nargs);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1628
2a5ab77af7f94d Xu Kuohai 2024-04-13 1629 /* save callee saved registers */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1630 emit(A64_STR64I(A64_R(19), A64_SP, regs_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1631
2a5ab77af7f94d Xu Kuohai 2024-04-13 1632 if (flags & BPF_TRAMP_F_CALL_ORIG) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1633 emit_addr_mov_i64(A64_R(0), (const u64)im, ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1634 emit_call((const u64)__bpf_tramp_enter, ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1635 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1636
2a5ab77af7f94d Xu Kuohai 2024-04-13 1637 for (i = 0; i < fentry->nr_progs; i++)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1638 invoke_bpf_prog(ctx, fentry->progs[i], args_off,
2a5ab77af7f94d Xu Kuohai 2024-04-13 1639 retval_off, flags & BPF_TRAMP_F_RET_FENTRY_RET);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1640
2a5ab77af7f94d Xu Kuohai 2024-04-13 1641 if (fmod_ret->nr_progs) {
43be0c0544c8e7 Xu Kuohai 2024-04-13 1642 branches = kcalloc(fmod_ret->nr_progs, sizeof(__le32 *),
2a5ab77af7f94d Xu Kuohai 2024-04-13 1643 GFP_KERNEL);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1644 if (!branches)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1645 return -ENOMEM;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1646
2a5ab77af7f94d Xu Kuohai 2024-04-13 @1647 invoke_bpf_mod_ret(ctx, fmod_ret, args_off, retval_off, branches);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1648 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1649
2a5ab77af7f94d Xu Kuohai 2024-04-13 1650 if (flags & BPF_TRAMP_F_CALL_ORIG) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1651 restore_args(ctx, args_off, nargs);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1652 /* call original func */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1653 emit(A64_LDR64I(A64_R(10), A64_SP, retaddr_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1654 emit(A64_BLR(A64_R(10)), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1655 /* store return value */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1656 emit(A64_STR64I(A64_R(0), A64_SP, retval_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1657 /* reserve a nop for bpf_tramp_image_put */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1658 im->ip_after_call = ctx->image + ctx->idx;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1659 emit(A64_NOP, ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1660 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1661
2a5ab77af7f94d Xu Kuohai 2024-04-13 1662 /* update the branches saved in invoke_bpf_mod_ret with cbnz */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1663 for (i = 0; i < fmod_ret->nr_progs && ctx->image != NULL; i++) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1664 int offset = &ctx->image[ctx->idx] - branches[i];
43be0c0544c8e7 Xu Kuohai 2024-04-13 1665 *branches[i] = cpu_to_le32(A64_CBNZ(1, A64_R(10), offset));
2a5ab77af7f94d Xu Kuohai 2024-04-13 1666 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1667
2a5ab77af7f94d Xu Kuohai 2024-04-13 1668 for (i = 0; i < fexit->nr_progs; i++)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1669 invoke_bpf_prog(ctx, fexit->progs[i], args_off, retval_off, false);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1670
2a5ab77af7f94d Xu Kuohai 2024-04-13 1671 if (flags & BPF_TRAMP_F_CALL_ORIG) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1672 im->ip_epilogue = ctx->image + ctx->idx;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1673 emit_addr_mov_i64(A64_R(0), (const u64)im, ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1674 emit_call((const u64)__bpf_tramp_exit, ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1675 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1676
2a5ab77af7f94d Xu Kuohai 2024-04-13 1677 if (flags & BPF_TRAMP_F_RESTORE_REGS)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1678 restore_args(ctx, args_off, nargs);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1679
2a5ab77af7f94d Xu Kuohai 2024-04-13 1680 /* restore callee saved register x19 */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1681 emit(A64_LDR64I(A64_R(19), A64_SP, regs_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1682
2a5ab77af7f94d Xu Kuohai 2024-04-13 1683 if (save_ret)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1684 emit(A64_LDR64I(A64_R(0), A64_SP, retval_off), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1685
2a5ab77af7f94d Xu Kuohai 2024-04-13 1686 /* reset SP */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1687 emit(A64_MOV(1, A64_SP, A64_FP), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1688
2a5ab77af7f94d Xu Kuohai 2024-04-13 1689 /* pop frames */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1690 emit(A64_POP(A64_FP, A64_LR, A64_SP), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1691 emit(A64_POP(A64_FP, A64_R(9), A64_SP), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1692
2a5ab77af7f94d Xu Kuohai 2024-04-13 1693 if (flags & BPF_TRAMP_F_SKIP_FRAME) {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1694 /* skip patched function, return to parent */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1695 emit(A64_MOV(1, A64_LR, A64_R(9)), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1696 emit(A64_RET(A64_R(9)), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1697 } else {
2a5ab77af7f94d Xu Kuohai 2024-04-13 1698 /* return to patched function */
2a5ab77af7f94d Xu Kuohai 2024-04-13 1699 emit(A64_MOV(1, A64_R(10), A64_LR), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1700 emit(A64_MOV(1, A64_LR, A64_R(9)), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1701 emit(A64_RET(A64_R(10)), ctx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1702 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1703
2a5ab77af7f94d Xu Kuohai 2024-04-13 1704 if (ctx->image)
2a5ab77af7f94d Xu Kuohai 2024-04-13 1705 bpf_flush_icache(ctx->image, ctx->image + ctx->idx);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1706
2a5ab77af7f94d Xu Kuohai 2024-04-13 1707 kfree(branches);
2a5ab77af7f94d Xu Kuohai 2024-04-13 1708
2a5ab77af7f94d Xu Kuohai 2024-04-13 1709 return ctx->idx;
2a5ab77af7f94d Xu Kuohai 2024-04-13 1710 }
2a5ab77af7f94d Xu Kuohai 2024-04-13 1711
:::::: The code at line 1647 was first introduced by commit
:::::: 2a5ab77af7f94dc99ac894566927f4f934ed675b bpf, arm64: Add bpf trampoline for arm64
:::::: TO: Xu Kuohai <xukuohai(a)huawei.com>
:::::: CC: Pu Lehui <pulehui(a)huawei.com>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[PATCH OLK-6.6] irqchip/gic-v3: Fix xint sleeping function called from invalid context
by Jinjie Ruan 11 Jun '25
by Jinjie Ruan 11 Jun '25
11 Jun '25
Offering: HULK
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/ICEDX1
------------------
disable_irq() and debugfs_create_symlink() might sleep,
local_irq_disable() will mask IRQS on current PE. Because sleep
is not allowed when interrupts are disabled, the following bug occurs.
So move them out of local_irq_disable/enable() to fix it.
BUG: sleeping function called from invalid context at kernel/irq/manage.c:737
in_atomic(): 0, irqs_disabled(): 1, non_block: 0, pid: 1033, name: bash
preempt_count: 0, expected: 0
CPU: 1 PID: 1033 Comm: bash Not tainted 6.6.0+ #1
Hardware name: linux,dummy-virt (DT)
Call trace:
dump_backtrace+0xf8/0x290
show_stack+0x3c/0x70
dump_stack_lvl+0x1a8/0x2e8
dump_stack+0x34/0x50
__might_resched+0x31c/0x5f8
__might_sleep+0xc8/0x1d8
disable_irq+0x48/0xb8
xint_proc_write+0x1b0/0x3f8
proc_reg_write+0x218/0x348
vfs_write+0x244/0xfd0
ksys_write+0x11c/0x290
__arm64_sys_write+0x8c/0xd8
invoke_syscall+0xb4/0x300
el0_svc_common.constprop.0+0x1f8/0x310
do_el0_svc+0x5c/0x88
el0_svc+0x44/0x200
el0t_64_sync_handler+0xc0/0xc8
el0t_64_sync+0x3b8/0x3c0
BUG: sleeping function called from invalid context at mm/slab.h:494
in_atomic(): 0, irqs_disabled(): 128, non_block: 0, pid: 414, name: bash
CPU: 0 PID: 414 Comm: bash Tainted: G W 5.10.0-00033-gee505d161ada #4
Hardware name: linux,dummy-virt (DT)
Call trace:
dump_backtrace+0x0/0x430
show_stack+0x34/0x4c
dump_stack+0x1d0/0x248
___might_sleep+0x15c/0x1bc
__might_sleep+0x7c/0x114
__kmalloc_track_caller+0x198/0x87c
kstrdup+0x134/0x1d0
debugfs_create_symlink+0x3c/0x250
xint_add_debugfs_entry+0xd4/0x140
xint_transform+0x1f4/0x210
xint_proc_write+0x26c/0x344
proc_reg_write+0x184/0x210
vfs_write+0x17c/0x634
ksys_write+0x104/0x230
__arm64_sys_write+0x54/0x80
invoke_syscall+0x84/0x230
el0_xcall_common.constprop.0+0x1ec/0x204
do_el0_xcall+0x98/0x18c
el0_xcall_handler+0x24/0x3c
el0_sync+0x17c/0x194
Fixes: 63f9ef213a47 ("arm64: Add debugfs dir for xint")
Fixes: 3053668e6b21 ("arm64: Introduce Xint software solution")
Signed-off-by: Jinjie Ruan <ruanjinjie(a)huawei.com>
---
drivers/irqchip/irq-gic-v3.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
index 9d2a5cc50c33..4805b3280acc 100644
--- a/drivers/irqchip/irq-gic-v3.c
+++ b/drivers/irqchip/irq-gic-v3.c
@@ -1030,11 +1030,9 @@ static bool xint_transform(int irqno, enum xint_op op)
switch (op) {
case IRQ_TO_XINT:
set_bit(hwirq, irqnr_xint_map);
- xint_add_debugfs_entry(irqno);
return true;
case XINT_TO_IRQ:
clear_bit(hwirq, irqnr_xint_map);
- xint_remove_debugfs_entry(irqno);
return false;
case XINT_SET_CHECK:
return test_bit(hwirq, irqnr_xint_map);
@@ -1049,6 +1047,7 @@ static ssize_t xint_proc_write(struct file *file,
const char __user *buffer, size_t count, loff_t *pos)
{
int irq = (int)(long)pde_data(file_inode(file));
+ enum xint_op switch_type;
bool xint_state = false;
unsigned long val;
char *buf = NULL;
@@ -1071,13 +1070,21 @@ static ssize_t xint_proc_write(struct file *file,
return -EBUSY;
}
- local_irq_disable();
+ if (xint_state) {
+ switch_type = XINT_TO_IRQ;
+ xint_remove_debugfs_entry(irq);
+ } else {
+ switch_type = IRQ_TO_XINT;
+ xint_add_debugfs_entry(irq);
+ }
+
disable_irq(irq);
+ local_irq_disable();
- xint_transform(irq, xint_state ? XINT_TO_IRQ : IRQ_TO_XINT);
+ xint_transform(irq, switch_type);
- enable_irq(irq);
local_irq_enable();
+ enable_irq(irq);
kfree(buf);
--
2.34.1
2
1

[openeuler:OLK-5.10 2954/2954] arch/arm64/net/bpf_jit_comp.c:1514:29: sparse: sparse: incorrect type in assignment (different base types)
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: 2a5ab77af7f94dc99ac894566927f4f934ed675b [2954/2954] bpf, arm64: Add bpf trampoline for arm64
config: arm64-randconfig-r133-20250610 (https://download.01.org/0day-ci/archive/20250611/202506111719.ynqhjFZY-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce: (https://download.01.org/0day-ci/archive/20250611/202506111719.ynqhjFZY-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506111719.ynqhjFZY-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> arch/arm64/net/bpf_jit_comp.c:1514:29: sparse: sparse: incorrect type in assignment (different base types) @@ expected unsigned int [usertype] * @@ got restricted __le32 [usertype] * @@
arch/arm64/net/bpf_jit_comp.c:1514:29: sparse: expected unsigned int [usertype] *
arch/arm64/net/bpf_jit_comp.c:1514:29: sparse: got restricted __le32 [usertype] *
arch/arm64/net/bpf_jit_comp.c:1663:52: sparse: sparse: subtraction of different types can't work (different base types)
vim +1514 arch/arm64/net/bpf_jit_comp.c
1495
1496 static void invoke_bpf_mod_ret(struct jit_ctx *ctx, struct bpf_tramp_progs *tp,
1497 int args_off, int retval_off, u32 **branches)
1498 {
1499 int i;
1500
1501 /* The first fmod_ret program will receive a garbage return value.
1502 * Set this to 0 to avoid confusing the program.
1503 */
1504 emit(A64_STR64I(A64_ZR, A64_SP, retval_off), ctx);
1505 for (i = 0; i < tp->nr_progs; i++) {
1506 invoke_bpf_prog(ctx, tp->progs[i], args_off, retval_off, true);
1507 /* if (*(u64 *)(sp + retval_off) != 0)
1508 * goto do_fexit;
1509 */
1510 emit(A64_LDR64I(A64_R(10), A64_SP, retval_off), ctx);
1511 /* Save the location of branch, and generate a nop.
1512 * This nop will be replaced with a cbnz later.
1513 */
> 1514 branches[i] = ctx->image + ctx->idx;
1515 emit(A64_NOP, ctx);
1516 }
1517 }
1518
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[PATCH OLK-5.10] mm: slub: add __GFP_NOWARN when allocations with GFP_NOWAIT
by Nanyong Sun 11 Jun '25
by Nanyong Sun 11 Jun '25
11 Jun '25
From: Kaixiong Yu <yukaixiong(a)huawei.com>
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/ICAVPP
--------------------------------
GFP_NOWAIT callers are always prepared for their allocations to fail
because they fail so frequently. In such case, don't need to generate
a warning. So, add __GFP_NOWARN to flag when allocations.
Fixes: 76e3125423ba ("mm/slub: Reduce memory consumption in extreme scenarios")
Signed-off-by: Kaixiong Yu <yukaixiong(a)huawei.com>
---
mm/slub.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/slub.c b/mm/slub.c
index d4e7e88df7ff..bcc00a95c368 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -2782,7 +2782,7 @@ static void *___slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
*/
if (unlikely(node != NUMA_NO_NODE && !(gfpflags & __GFP_THISNODE)
&& try_thisnode))
- pc_gfpflags = GFP_NOWAIT | __GFP_THISNODE;
+ pc_gfpflags = GFP_NOWAIT | __GFP_THISNODE | __GFP_NOWARN;
freelist = new_slab_objects(s, pc_gfpflags, node, &c);
--
2.34.1
2
1

[PATCH OLK-5.10] KVM: Explicitly verify target vCPU is online in kvm_get_vcpu()
by Nanyong Sun 11 Jun '25
by Nanyong Sun 11 Jun '25
11 Jun '25
From: Sean Christopherson <seanjc(a)google.com>
stable inclusion
from stable-v6.1.129
commit d817e510662fd1c9797952408d94806f97a5fffd
category: bugfix
bugzilla: https://gitee.com/src-openeuler/kernel/issues/IBRED7
CVE: CVE-2024-58083
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id…
--------------------------------
commit 1e7381f3617d14b3c11da80ff5f8a93ab14cfc46 upstream.
Explicitly verify the target vCPU is fully online _prior_ to clamping the
index in kvm_get_vcpu(). If the index is "bad", the nospec clamping will
generate '0', i.e. KVM will return vCPU0 instead of NULL.
In practice, the bug is unlikely to cause problems, as it will only come
into play if userspace or the guest is buggy or misbehaving, e.g. KVM may
send interrupts to vCPU0 instead of dropping them on the floor.
However, returning vCPU0 when it shouldn't exist per online_vcpus is
problematic now that KVM uses an xarray for the vCPUs array, as KVM needs
to insert into the xarray before publishing the vCPU to userspace (see
commit c5b077549136 ("KVM: Convert the kvm->vcpus array to a xarray")),
i.e. before vCPU creation is guaranteed to succeed.
As a result, incorrectly providing access to vCPU0 will trigger a
use-after-free if vCPU0 is dereferenced and kvm_vm_ioctl_create_vcpu()
bails out of vCPU creation due to an error and frees vCPU0. Commit
afb2acb2e3a3 ("KVM: Fix vcpu_array[0] races") papered over that issue, but
in doing so introduced an unsolvable teardown conundrum. Preventing
accesses to vCPU0 before it's fully online will allow reverting commit
afb2acb2e3a3, without re-introducing the vcpu_array[0] UAF race.
Fixes: 1d487e9bf8ba ("KVM: fix spectrev1 gadgets")
Cc: stable(a)vger.kernel.org
Cc: Will Deacon <will(a)kernel.org>
Cc: Michal Luczaj <mhal(a)rbox.co>
Reviewed-by: Pankaj Gupta <pankaj.gupta(a)amd.com>
Acked-by: Will Deacon <will(a)kernel.org>
Link: https://lore.kernel.org/r/20241009150455.1057573-2-seanjc@google.com
Signed-off-by: Sean Christopherson <seanjc(a)google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Signed-off-by: Kaixiong Yu <yukaixiong(a)huawei.com>
---
include/linux/kvm_host.h | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index b8ae37549e2a..0bbfd625dd6c 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -670,6 +670,15 @@ static inline struct kvm_io_bus *kvm_get_bus(struct kvm *kvm, enum kvm_bus idx)
static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
{
int num_vcpus = atomic_read(&kvm->online_vcpus);
+
+ /*
+ * Explicitly verify the target vCPU is online, as the anti-speculation
+ * logic only limits the CPU's ability to speculate, e.g. given a "bad"
+ * index, clamping the index to 0 would return vCPU0, not NULL.
+ */
+ if (i >= num_vcpus)
+ return NULL;
+
i = array_index_nospec(i, num_vcpus);
/* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu. */
--
2.34.1
2
1
Reka Norman (1):
HID: intel-ish-hid: ipc: Fix potential use-after-free in work function
Zhang Lixu (1):
HID: intel-ish-hid: ipc: Fix dev_err usage with uninitialized
dev->devc
drivers/hid/intel-ish-hid/ipc/ipc.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
--
2.34.1
2
3

[PATCH OLK-5.10] cifs: fix mount deadlock by avoiding super block iteration in DFS reconnect
by Wang Zhaolong 11 Jun '25
by Wang Zhaolong 11 Jun '25
11 Jun '25
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/ICE4PV
CVE: NA
--------------------------------
A deadlock issue occurs when network interruption during mount triggers
DFS reconnection logic that calls iterate_supers_type().
The detailed call process is as follows:
mount.cifs cifsd
path_mount
do_new_mount
vfs_get_tree
legacy_get_tree
cifs_smb3_do_mount
sget
alloc_super
down_write_nested(&s->s_umount, ..); // hold lock
cifs_read_super
cifs_root_iget
cifs_get_inode_info
smb2_query_path_info
smb2_compound_op
compound_send_recv
wait_for_response // wait for cifsd to wake it up
cifs_demultiplex_thread
cifs_read_from_socket
cifs_readv_from_socket
server_unresponsive
cifs_reconnect
cifs_get_tcp_super
__cifs_get_super
iterate_supers_type
down_read(&sb->s_umount); // block
mid->callback()
cifs_wake_up_task
wake_up_process // won't be executed
do_new_mount_fc
up_write(&sb->s_umount); // release lock here
This patch fixes the problem by doing the following:
- Add vfs_sb back-pointer to cifs_sb_info for direct access
- Protect list traversal with existing tcon->sb_list_lock
- Use atomic operations to safely manage super block references
- Remove complex callback-based iteration in favor of simple loop
Fixes: 93d5cb517db3 ("cifs: Add support for failover in cifs_reconnect()")
Signed-off-by: Wang Zhaolong <wangzhaolong1(a)huawei.com>
---
fs/cifs/cifs_fs_sb.h | 1 +
fs/cifs/cifsfs.c | 1 +
fs/cifs/connect.c | 10 ++--
fs/cifs/misc.c | 121 +++++++++++++++++++++----------------------
4 files changed, 66 insertions(+), 67 deletions(-)
diff --git a/fs/cifs/cifs_fs_sb.h b/fs/cifs/cifs_fs_sb.h
index d14002d67b6a..d180ef3f9d89 100644
--- a/fs/cifs/cifs_fs_sb.h
+++ b/fs/cifs/cifs_fs_sb.h
@@ -58,10 +58,11 @@
struct cifs_sb_info {
struct rb_root tlink_tree;
struct list_head tcon_sb_link;
spinlock_t tlink_tree_lock;
+ struct super_block *vfs_sb;
struct tcon_link *master_tlink;
struct nls_table *local_nls;
unsigned int bsize;
unsigned int rsize;
unsigned int wsize;
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index dac20bbc2786..a86a1fb34e59 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -778,10 +778,11 @@ cifs_get_root(struct smb_vol *vol, struct super_block *sb)
static int cifs_set_super(struct super_block *sb, void *data)
{
struct cifs_mnt_data *mnt_data = data;
sb->s_fs_info = mnt_data->cifs_sb;
+ mnt_data->cifs_sb->vfs_sb = sb;
return set_anon_super(sb, NULL);
}
static struct dentry *
cifs_smb3_do_mount(struct file_system_type *fs_type,
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index 56afed6d9ef8..23798ab5d5f1 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -405,16 +405,11 @@ cifs_reconnect(struct TCP_Server_Info *server)
spin_lock(&GlobalMid_Lock);
server->nr_targets = 1;
#ifdef CONFIG_CIFS_DFS_UPCALL
spin_unlock(&GlobalMid_Lock);
sb = cifs_get_tcp_super(server);
- if (IS_ERR(sb)) {
- rc = PTR_ERR(sb);
- cifs_dbg(FYI, "%s: will not do DFS failover: rc = %d\n",
- __func__, rc);
- sb = NULL;
- } else {
+ if (sb) {
cifs_sb = CIFS_SB(sb);
rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list);
if (rc) {
cifs_sb = NULL;
if (rc != -EOPNOTSUPP) {
@@ -422,10 +417,13 @@ cifs_reconnect(struct TCP_Server_Info *server)
__func__);
}
} else {
server->nr_targets = dfs_cache_get_nr_tgts(&tgt_list);
}
+ } else {
+ cifs_dbg(FYI, "%s: will not do DFS failover\n", __func__);
+ rc = -EINVAL;
}
cifs_dbg(FYI, "%s: will retry %d target(s)\n", __func__,
server->nr_targets);
spin_lock(&GlobalMid_Lock);
#endif
diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c
index 12131a5d5073..2b52750acc07 100644
--- a/fs/cifs/misc.c
+++ b/fs/cifs/misc.c
@@ -1034,66 +1034,52 @@ int copy_path_name(char *dst, const char *src)
struct super_cb_data {
void *data;
struct super_block *sb;
};
-static void tcp_super_cb(struct super_block *sb, void *arg)
+struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server)
{
- struct super_cb_data *sd = arg;
- struct TCP_Server_Info *server = sd->data;
- struct cifs_sb_info *cifs_sb;
+ struct super_block *sb;
+ struct cifs_ses *ses;
struct cifs_tcon *tcon;
+ struct cifs_sb_info *cifs_sb;
- if (sd->sb)
- return;
-
- cifs_sb = CIFS_SB(sb);
- tcon = cifs_sb_master_tcon(cifs_sb);
- if (tcon->ses->server == server)
- sd->sb = sb;
-}
+ if (!server)
+ return NULL;
-static struct super_block *__cifs_get_super(void (*f)(struct super_block *, void *),
- void *data)
-{
- struct super_cb_data sd = {
- .data = data,
- .sb = NULL,
- };
- struct file_system_type **fs_type = (struct file_system_type *[]) {
- &cifs_fs_type, &smb3_fs_type, NULL,
- };
-
- for (; *fs_type; fs_type++) {
- iterate_supers_type(*fs_type, f, &sd);
- if (sd.sb) {
- /*
- * Grab an active reference in order to prevent automounts (DFS links)
- * of expiring and then freeing up our cifs superblock pointer while
- * we're doing failover.
- */
- cifs_sb_active(sd.sb);
- return sd.sb;
+ spin_lock(&cifs_tcp_ses_lock);
+ list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
+ list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
+ spin_lock(&tcon->sb_list_lock);
+ list_for_each_entry(cifs_sb, &tcon->cifs_sb_list, tcon_sb_link) {
+ sb = cifs_sb->vfs_sb;
+
+ /* Safely increment s_active only if it's not zero.
+ *
+ * When s_active == 0, the super block is being deactivated
+ * and should not be used. This prevents UAF scenarios
+ * where we might grab a reference to a super block that's
+ * in the middle of destruction.
+ */
+ if (!atomic_add_unless(&sb->s_active, 1, 0))
+ continue;
+ spin_unlock(&tcon->sb_list_lock);
+ spin_unlock(&cifs_tcp_ses_lock);
+ return sb;
+ }
+ spin_unlock(&tcon->sb_list_lock);
}
}
- return ERR_PTR(-EINVAL);
-}
-
-static void __cifs_put_super(struct super_block *sb)
-{
- if (!IS_ERR_OR_NULL(sb))
- cifs_sb_deactive(sb);
-}
+ spin_unlock(&cifs_tcp_ses_lock);
-struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server)
-{
- return __cifs_get_super(tcp_super_cb, server);
+ return NULL;
}
void cifs_put_tcp_super(struct super_block *sb)
{
- __cifs_put_super(sb);
+ if (!IS_ERR_OR_NULL(sb))
+ cifs_sb_deactive(sb);
}
#ifdef CONFIG_CIFS_DFS_UPCALL
int match_target_ip(struct TCP_Server_Info *server,
const char *share, size_t share_len,
@@ -1138,33 +1124,46 @@ int match_target_ip(struct TCP_Server_Info *server,
kfree(tip);
return rc;
}
-static void tcon_super_cb(struct super_block *sb, void *arg)
+static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
{
- struct super_cb_data *sd = arg;
- struct cifs_tcon *tcon = sd->data;
struct cifs_sb_info *cifs_sb;
+ struct super_block *sb = ERR_PTR(-EINVAL);
+
+ if (!tcon && list_empty(&tcon->cifs_sb_list))
+ return sb;
+
+ spin_lock(&tcon->sb_list_lock);
+ list_for_each_entry(cifs_sb, &tcon->cifs_sb_list, tcon_sb_link) {
+ sb = cifs_sb->vfs_sb;
+
+ if (!tcon->dfs_path)
+ continue;
+ if (!cifs_sb->origin_fullpath)
+ continue;
+ if (strcasecmp(tcon->dfs_path, cifs_sb->origin_fullpath))
+ continue;
+ /*
+ * Use atomic_add_unless to safely increment s_active.
+ * This ensures we don't add a reference to a super block
+ * that has s_active == 0 (being destroyed).
+ */
+ if (!atomic_add_unless(&sb->s_active, 1, 0))
+ continue;
+ break;
+ }
+ spin_unlock(&tcon->sb_list_lock);
- if (sd->sb)
- return;
-
- cifs_sb = CIFS_SB(sb);
- if (tcon->dfs_path && cifs_sb->origin_fullpath &&
- !strcasecmp(tcon->dfs_path, cifs_sb->origin_fullpath))
- sd->sb = sb;
-}
-
-static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
-{
- return __cifs_get_super(tcon_super_cb, tcon);
+ return sb;
}
static inline void cifs_put_tcon_super(struct super_block *sb)
{
- __cifs_put_super(sb);
+ if (!IS_ERR_OR_NULL(sb))
+ cifs_sb_deactive(sb);
}
#else
static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
{
return ERR_PTR(-EOPNOTSUPP);
--
2.34.3
2
1
Reka Norman (1):
HID: intel-ish-hid: ipc: Fix potential use-after-free in work function
Zhang Lixu (1):
HID: intel-ish-hid: ipc: Fix dev_err usage with uninitialized
dev->devc
drivers/hid/intel-ish-hid/ipc/ipc.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
--
2.34.1
2
3
Support xcall prefetch.
Changes in v8:
- Support xcall prefetch on and off runtime.
- Refactor the xcall proc interface code, move to
/fs/proc/proc_xcall.c.
- Fix xint irqnr_xint_map array out of bounds access problem
in __handle_domain_irq() by introducing is_hwirq_xint() helper.
- Introduce system_supports_xint() and system_supports_xcall() to reduce
the overhead, and remove fast_syscall_enabeld(), remove extern
is_xint_support.
- Limit the task xinfo alloc and xcall prefetch init
by system_supports_xcall() to reduce the overhead.
Changes in v7:
- Remove "echo @xxx > /proc/$PID/xcall" usage, replace with
"echo 1 > /proc/$PID/prefetch". Now the xcall enable and
prefetch can be enabled separately.
Changes in v6:
- Only use one reserved kabi in task_struct for xcall.
- Free prefetch item after eventpoll_release_file() to avoid
possible competition between ep_prefetch_item_enqueue() and pfi free.
- Fix "echo > /proc/xcall/cpu_list" show problem.
Changes in v5:
- Fix dentry free before free_prefetch_item() and then UAF in
prefetch work by cancel_work_sync() before free pfi and move
free_prefetch_item() to the first of __fput().
- Fix __queue_work() oops bug.
- /proc/xcall/mask_list -> /proc/xcall/cpu_list
- Fix xcall_prefetch print data type.
- Update prefetch tracepoint, move xcall points definition
to separete header file.
- Make xcall_prefetch depends on EPOLL.
- Adjust xcall prefetch buf to 16KB by default.
- Add xcall_prefetch_init() function.
- Only use write lock in free_prefetch_item().
- Simplify xcall_read() and add some comment.
- Update commit message.
Changes in v4:
- Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default.
- Fix xint sleeping function called from invalid context bug.
- free_prefetch_item() in file_free() instead of filp_close(), which
fix the alloc-queue and free competition.
- Fix kernel_read() warning for FMODE_READ not set.
- Add sock_from_file() limit for prefetch.
- Check NULL for rc_work.
- Simplfy the cpumask interface code, and rename
to "/proc/xcall/mask_list".
- Remove the xcall_cache_pages_order interface.
- tracepoint update: fd -> file.
- Simplify the xcall_read() function again.
- Handle copy_to_user() return value.
- Remove unused XCALL_CACHE_QUEUED.
- Update the commit message.
Changes in v3:
- Add XCALL_PREFETCH config to isolate feature code.
- Split the /proc/xxx interface code out to independent patches, which
will make it clear.
- Update the cpumask interface to "/proc/xcall/numa_mask", and it can
set the numa mask of all numas one time.
- Add xcall select count to make xcall_cache_pages_order adjust safe.
- Introduce xcall_read_start/end() to make it clear.
- Simplify the xcall_read() function.
- Use cpumask_next() instead of get_nth_cpu_in_cpumask() function.
- Use independent cpu select policy function.
- Remove some unnecessary pr_err().
- Update the commit message.
Changes in v2:
- Upadte the xcall prefetch state machine, remove the queued state and
add prefetch, cancel states.
- Remove the pfi lock and use atomic variables.
- Change the 'xcall select' semantics and simplify the code a lot.
- Remove keep_running, remove unrelated code.
- Remove the count in struct read_cache_entry, and use
percpu hit/miss count.
- Remove sync mode, so remove struct read_cache_entry
in struct task_struct.
- Use hash table to find prefetch item for a file, which will not
change the file struct KABI.
- Use rwlock instead of spinlock for hash table.
- Use alloc_page() instead kmalloc() to align 4KB.
- Update the commit message.
Jinjie Ruan (9):
arm64: Introduce Xint software solution
arm64: Add debugfs dir for xint
arm64: Reserve a kabi in task_struct exclusively for xcall
arm64: Introduce xcall prefetch enable interface
eventpoll: Support xcall async prefetch
eventpoll: Add /proc/xcall/prefetch dir for performance tuning
eventpoll: Add /proc/xcall/cpu_list for performance tuning
xcall: Add tracepoints for different prefetching stages
config: Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default
Liao Chen (1):
arm64: revert kpti bypass
Yipeng Zou (2):
arm64: Introduce xcall a faster svc exception handling
arm64: Faster SVC exception handler with xcall
arch/Kconfig | 81 +++++
arch/arm64/Kconfig | 2 +
arch/arm64/configs/openeuler_defconfig | 7 +
arch/arm64/include/asm/cpucaps.h | 2 +
arch/arm64/include/asm/cpufeature.h | 12 +
arch/arm64/include/asm/exception.h | 3 +
arch/arm64/include/asm/xcall.h | 18 ++
arch/arm64/kernel/Makefile | 1 +
arch/arm64/kernel/asm-offsets.c | 3 +
arch/arm64/kernel/cpufeature.c | 49 +++
arch/arm64/kernel/entry-common.c | 22 ++
arch/arm64/kernel/entry.S | 183 ++++++++++-
arch/arm64/kernel/syscall.c | 57 ++++
arch/arm64/kernel/xcall.c | 38 +++
drivers/irqchip/irq-gic-v3.c | 145 +++++++++
fs/eventpoll.c | 412 +++++++++++++++++++++++++
fs/file_table.c | 1 +
fs/proc/Makefile | 1 +
fs/proc/base.c | 6 +
fs/proc/internal.h | 7 +
fs/proc/proc_xcall.c | 181 +++++++++++
fs/read_write.c | 10 +-
include/linux/fs.h | 35 +++
include/linux/hardirq.h | 5 +
include/linux/irqchip/arm-gic-v3.h | 12 +
include/linux/sched.h | 4 +
include/trace/events/xcall.h | 106 +++++++
kernel/fork.c | 19 ++
kernel/irq/debugfs.c | 36 +++
kernel/irq/internals.h | 16 +
kernel/irq/irqdesc.c | 19 ++
kernel/irq/proc.c | 10 +
kernel/softirq.c | 73 +++++
33 files changed, 1573 insertions(+), 3 deletions(-)
create mode 100644 arch/arm64/include/asm/xcall.h
create mode 100644 arch/arm64/kernel/xcall.c
create mode 100644 fs/proc/proc_xcall.c
create mode 100644 include/trace/events/xcall.h
--
2.34.1
2
13

[PATCH OLK-5.10] HID: intel-ish-hid: ipc: Fix potential use-after-free in work function
by Xiaomeng Zhang 11 Jun '25
by Xiaomeng Zhang 11 Jun '25
11 Jun '25
From: Reka Norman <rekanorman(a)chromium.org>
mainline inclusion
from mainline-v6.3-rc2
commit 8ae2f2b0a28416ed2f6d8478ac8b9f7862f36785
category: bugfix
bugzilla: https://gitee.com/src-openeuler/kernel/issues/IC5DGB
CVE: CVE-2023-53039
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?…
--------------------------------
When a reset notify IPC message is received, the ISR schedules a work
function and passes the ISHTP device to it via a global pointer
ishtp_dev. If ish_probe() fails, the devm-managed device resources
including ishtp_dev are freed, but the work is not cancelled, causing a
use-after-free when the work function tries to access ishtp_dev. Use
devm_work_autocancel() instead, so that the work is automatically
cancelled if probe fails.
Signed-off-by: Reka Norman <rekanorman(a)chromium.org>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada(a)linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina(a)suse.cz>
Signed-off-by: Xiaomeng Zhang <zhangxiaomeng13(a)huawei.com>
---
drivers/hid/intel-ish-hid/ipc/ipc.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/drivers/hid/intel-ish-hid/ipc/ipc.c b/drivers/hid/intel-ish-hid/ipc/ipc.c
index a45ac7fa417b..b950873c300b 100644
--- a/drivers/hid/intel-ish-hid/ipc/ipc.c
+++ b/drivers/hid/intel-ish-hid/ipc/ipc.c
@@ -5,6 +5,7 @@
* Copyright (c) 2014-2016, Intel Corporation.
*/
+#include <linux/devm-helpers.h>
#include <linux/sched.h>
#include <linux/spinlock.h>
#include <linux/delay.h>
@@ -594,7 +595,6 @@ static void recv_ipc(struct ishtp_device *dev, uint32_t doorbell_val)
case MNG_RESET_NOTIFY:
if (!ishtp_dev) {
ishtp_dev = dev;
- INIT_WORK(&fw_reset_work, fw_reset_work_fn);
}
schedule_work(&fw_reset_work);
break;
@@ -885,6 +885,7 @@ struct ishtp_device *ish_dev_init(struct pci_dev *pdev)
{
struct ishtp_device *dev;
int i;
+ int ret;
dev = devm_kzalloc(&pdev->dev,
sizeof(struct ishtp_device) + sizeof(struct ish_hw),
@@ -920,6 +921,12 @@ struct ishtp_device *ish_dev_init(struct pci_dev *pdev)
list_add_tail(&tx_buf->link, &dev->wr_free_list);
}
+ ret = devm_work_autocancel(&pdev->dev, &fw_reset_work, fw_reset_work_fn);
+ if (ret) {
+ dev_err(dev->devc, "Failed to initialise FW reset work\n");
+ return NULL;
+ }
+
dev->ops = &ish_hw_ops;
dev->devc = &pdev->dev;
dev->mtu = IPC_PAYLOAD_SIZE - sizeof(struct ishtp_msg_hdr);
--
2.34.1
2
1

[PATCH OLK-6.6] mm/mm_spe.c: remove redundant checks and debug prints in mm_spe probe
by Ze Zuo 11 Jun '25
by Ze Zuo 11 Jun '25
11 Jun '25
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/src-openeuler/kernel/issues/ICC3QM
CVE: NA
--------------------------------
The pdev and dev pointers are already registered and validated in
arm_spe_pmu, so additional checks in the mm_spe driver are
redundant.
Similarly, the kpti=off condition is implicitly handled because
the mm_spe driver cannot be enabled if arm_spe_pmu registration fails.
Remove these unnecessary checks to simplify the code.
Fixes: b8a759002c48 ("mm_monitor/mm_spe: Introduce standalone SPE profiling framework")
Signed-off-by: Ze Zuo <zuoze1(a)huawei.com>
---
drivers/arm/mm_monitor/mm_spe.c | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/drivers/arm/mm_monitor/mm_spe.c b/drivers/arm/mm_monitor/mm_spe.c
index 3acfd47c545f..192f1f9c6adb 100644
--- a/drivers/arm/mm_monitor/mm_spe.c
+++ b/drivers/arm/mm_monitor/mm_spe.c
@@ -473,25 +473,7 @@ static int mm_spe_device_probe(struct platform_device *pdev)
struct device *dev;
- /*
- * If kernelspace is unmapped when running at EL0, then the SPE
- * buffer will fault and prematurely terminate the AUX session.
- */
- if (arm64_kernel_unmapped_at_el0()) {
- dev_warn_once(dev, "buffer inaccessible. Try passing \"kpti=off\" on the kernel command line\n");
- return -EPERM;
- }
-
- if (!pdev) {
- pr_err("pdev is NULL!\n");
- return -ENODEV;
- }
-
dev = &pdev->dev;
- if (!dev) {
- pr_err("dev is NULL!\n");
- return -ENODEV;
- }
spe = devm_kzalloc(dev, sizeof(*spe), GFP_KERNEL);
if (!spe)
--
2.25.1
2
1

[openeuler:OLK-5.10 2954/2954] fs/proc/base.c:1454:6: sparse: sparse: symbol 'pbha_bit0_hide_file' was not declared. Should it be static?
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: bea38841945a52bd03004240eb0da6a5115bae21 [2954/2954] arm64: mm: Hide pbha_bit0 in procfs if pbha is not enabled
config: arm64-randconfig-r133-20250610 (https://download.01.org/0day-ci/archive/20250611/202506111322.Edx0vIZW-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce: (https://download.01.org/0day-ci/archive/20250611/202506111322.Edx0vIZW-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506111322.Edx0vIZW-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> fs/proc/base.c:1454:6: sparse: sparse: symbol 'pbha_bit0_hide_file' was not declared. Should it be static?
fs/proc/base.c:2471:25: sparse: sparse: cast to restricted fmode_t
fs/proc/base.c:2528:42: sparse: sparse: cast from restricted fmode_t
fs/proc/base.c:2625:48: sparse: sparse: cast from restricted fmode_t
fs/proc/base.c: note: in included file (through include/linux/rcuwait.h, include/linux/percpu-rwsem.h, include/linux/fs.h, ...):
include/linux/sched/signal.h:719:37: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct spinlock [usertype] *lock @@ got struct spinlock [noderef] __rcu * @@
include/linux/sched/signal.h:719:37: sparse: expected struct spinlock [usertype] *lock
include/linux/sched/signal.h:719:37: sparse: got struct spinlock [noderef] __rcu *
fs/proc/base.c:1126:36: sparse: sparse: context imbalance in '__set_oom_adj' - unexpected unlock
vim +/pbha_bit0_hide_file +1454 fs/proc/base.c
1453
> 1454 bool pbha_bit0_hide_file(const char *name)
1455 {
1456 if (!system_support_pbha_bit0() && !strncmp("pbha_bit0", name, 9))
1457 return true;
1458
1459 return false;
1460 }
1461 #else
1462 static bool pbha_bit0_hide_file(const char *name) { return false; }
1463 #endif
1464
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6] BUILD REGRESSION edaf3ccc9feb52d789c59499a6d681cdcd3fb9c5
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-6.6
branch HEAD: edaf3ccc9feb52d789c59499a6d681cdcd3fb9c5 !15819 [OLK-6.6]drm/phytium: Fix some Bugs in Phytium Display Engine
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505122110.l7rKvRzx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505130655.7iroL05g-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505191456.gDWxN0oB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201519.o4k4rCxn-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201603.DayzxkWd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201708.6dvo6U58-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201722.VJAhefze-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201757.qoTbv6a9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201856.VGaOEUgd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201929.AHI9gRxc-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201944.3gmU2Dch-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210529.5XGNL1lQ-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210722.gwnDsvxy-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210904.LgTxS8rg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505261539.RLecPVlr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272122.LGw8kmAU-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272226.RcAmWtpx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272259.OmUgrWdN-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280023.4g7q598y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280056.91YNE6dg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280147.YRorbaqT-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280148.N1Nt6ytB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280443.W5j7eO4Y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280603.E3YHNVzo-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280802.sHbtyOVR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281457.ZzTKocMO-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281528.FWgbJLUK-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281622.nxl9aDmY-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505290337.UpMv109S-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505301346.VRD8YS7H-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506050103.qcTmWVAw-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506110323.W8vxCje1-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506110730.xt79RnwS-lkp@intel.com
./drivers/crypto/sedriver/wst_se_common_type.h: 19 linux/version.h not needed.
Warning: drivers/arm/mm_monitor/spe-decoder/arm-spe-decoder.c references a file that doesn't exist: Documentation/arm64/memory.rst
arch/arm64/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/arm64/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/x86/kernel/cpu/bpf-rvi.c:129:25: warning: no previous prototype for function 'bpf_arch_flags' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for function 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/x86/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
drivers/crypto/sedriver/wst_se_echip_driver.c:1082:9: warning: no previous prototype for 'se_kernelwrite' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:114:5: warning: no previous prototype for 'se_free_dma_buf' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1175:5: warning: no previous prototype for 'se_chip_load' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1272:6: warning: no previous prototype for 'se_chip_unload' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:150:5: warning: no previous prototype for 'se_printk_hex' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:95:25: warning: no previous prototype for 'se_get_dma_buf' [-Wmissing-prototypes]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:240:32: warning: unused variable 'entry' [-Wunused-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:244:13: warning: variable 'restart_fg' set but not used [-Wunused-but-set-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:256:21: warning: unused variable 'ring_index' [-Wunused-variable]
drivers/gpu/drm/phytium/pe220x_dc.c:252:6: warning: no previous prototype for function 'pe220x_dc_bmc_hw_plane_get_primary_format' [-Wmissing-prototypes]
drivers/gpu/drm/phytium/phytium_gem.c:174:5: warning: no previous prototype for function 'phytium_gem_prime_mmap' [-Wmissing-prototypes]
drivers/i2c/busses/i2c-zhaoxin-smbus.c:78:16: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
drivers/i2c/busses/i2c-zhaoxin-smbus.c:83:2: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
drivers/irqchip/irq-gic-v3-its.c:392:15: warning: no previous prototype for function 'gic_data_rdist_get_vlpi_base' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/cqm/cqm_bitmap_table.c:445:23: error: invalid application of 'sizeof' to an incomplete type 'const struct free_memory[]'
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c: mag_mpu_cmd_defs.h is included more than once.
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hwif.c:862: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:410:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/motorcomm/yt6801/yt6801_desc.c:206:73: warning: '%u' directive output may be truncated writing between 1 and 10 bytes into a region of size 8 [-Wformat-truncation=]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:35: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:42: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for 'ps3_pci_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for 'ps3_pci_init_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for 'ps3_pci_init_complete_exit' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli.c:108:9: error: function 'ps3stor_cli_printf' might be a candidate for 'gnu_printf' format attribute [-Werror=suggest-attribute=format]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for 'ps3_dump_context_show' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for 'ps3_dump_file_write' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for 'ps3_dump_file_close' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for 'ps3_dump_local_time' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for 'ps3_dump_filename_build' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for 'ps3_dump_file_open' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for 'ps3_trigger_irq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for 'ps3_resp_status_convert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for 'ps3_io_recv_ok_stat_inc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for 'ps3_cmd_stat_content_clear' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for 'ps3_dump_dir_length' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for 'ps3_scsi_private_init_pd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for 'ps3_scsi_private_init_vd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for 'ps3_sas_expander_phys_refresh' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_instance_manager.c:669:60: error: 'snprintf' output may be truncated before the last format character [-Werror=format-truncation=]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for 'ps3_ioc_resource_prepare_hba' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for 'ps3_ioc_resource_prepare_switch' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for 'ps3_ioc_resource_prepare_raid' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for 'ps3_hard_reset_to_ready' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for 'ps3_clean_mgr_cmd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: 'PS3_INTERRUPT_CMD_ENABLE_MSIX' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: 'PS3_INTERRUPT_MASK_DISABLE' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: 'PS3_INTERRUPT_STATUS_EXIST_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: 'PS3_INTERRUPT_CLEAR_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: 'PS3_SSD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: 'PS3_HDD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for 'ps3_cli_ver_query' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for 'ps3_qos_pd_waitq_ratio_update' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for 'ps3_hba_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for 'ps3_hba_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for 'ps3_cmd_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for 'ps3_qos_cmd_waitq_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for 'ps3_hba_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for 'ps3_hba_qos_vd_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for 'ps3_hba_qos_vd_reset' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for 'ps3_hba_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for 'ps3_raid_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for 'ps3_qos_mgrq_resend' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for 'ps3_qos_vd_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for 'ps3_raid_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for 'ps3_qos_exclusive_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for 'ps3_qos_tg_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for 'ps3_raid_qos_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4022:6: error: no previous prototype for 'ps3_raid_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4083:6: error: no previous prototype for 'ps3_raid_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for 'ps3_qos_all_pd_rc_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for 'ps3_pd_quota_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for 'ps3_pd_quota_waitq_clean' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for 'ps3_range_check_and_insert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for 'ps3_r1x_hash_range_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for 'ps3_r1x_hash_range_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for 'ps3_r1x_hash_bit_check' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for 'ps3_r1x_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for 'ps3_r1x_hash_bit_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for 'rbtDelNodeDo' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for 'ps3_recovery_irq_queue_destroy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for 'ps3_hard_recovery_state_finish' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:363:5: error: no previous prototype for 'ps3_recovery_state_transfer' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for 'ps3_recovery_context_alloc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for 'ps3_recovery_context_free' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for 'ps3_recovery_context_delete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:407:5: error: no previous prototype for 'ps3_sas_update_phy_info' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1110:5: error: no previous prototype for 'ps3_wait_for_outstanding_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:876:6: error: no previous prototype for 'ps3_set_task_manager_busy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1958:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
drivers/video/fbdev/riva/riva_hw.o: warning: objtool: RivaGetConfig+0x7dd: stack state mismatch: cfa1=4+8 cfa2=4-24
fs/nfs/dir.c:1498:6: warning: no previous prototype for 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/dir.c:1498:6: warning: no previous prototype for function 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:127: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/dns_process.c:129:6: warning: no previous prototype for function 'enfs_swap_name_cache' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:148:6: warning: no previous prototype for function 'enfs_domain_inc' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:217:6: warning: no previous prototype for function 'ip_list_append' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:361:5: warning: no previous prototype for function 'enfs_quick_sort' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:394:5: warning: no previous prototype for function 'enfs_dns_process_ip' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:434:5: warning: no previous prototype for function 'enfs_server_query_dns' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:494:6: warning: no previous prototype for function 'query_dns_each_name' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:582:5: warning: no previous prototype for function 'enfs_iter_nfs_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:669:6: warning: no previous prototype for function 'enfs_domain_for_each' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:92:6: warning: no previous prototype for function 'enfs_update_domain_name' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_config.c:554:6: warning: no previous prototype for function 'enfs_glob_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:100:6: warning: no previous prototype for function 'enfs_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:95:9: warning: no previous prototype for function 'enfs_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:112:6: warning: no previous prototype for function 'enfs_update_lookup_cache_flag_to_server' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:146:5: warning: no previous prototype for function 'enfs_query_lookup_cache' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:251:6: warning: no previous prototype for function 'enfs_query_lookup_cache_pre_check' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:269:6: warning: no previous prototype for function 'lookupcache_execute_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:292:6: warning: no previous prototype for function 'lookupcache_workqueue_queue_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:305:5: warning: no previous prototype for function 'lookupcache_add_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:374:6: warning: no previous prototype for function 'lookupcache_loop_rpclnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:423:6: warning: no previous prototype for function 'enfs_lookupcache_update_switch' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:440:5: warning: no previous prototype for function 'lookupcache_routine' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:460:5: warning: no previous prototype for function 'lookupcache_start' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:471:5: warning: no previous prototype for function 'enfs_lookupcache_workqueue_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:487:6: warning: no previous prototype for function 'lookupcache_workqueue_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:504:5: warning: no previous prototype for function 'enfs_lookupcache_timer_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:98:6: warning: no previous prototype for function 'enfs_clean_server_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:179: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/enfs_multipath.c:321:5: warning: no previous prototype for function 'enfs_configure_xprt_to_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:357:6: warning: no previous prototype for function 'enfs_cmp_addrs' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:374:6: warning: no previous prototype for function 'enfs_xprt_addrs_is_same' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:393:6: warning: no previous prototype for function 'enfs_already_have_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:589:6: warning: variable 'link_count' set but not used [-Wunused-but-set-variable]
fs/nfs/enfs/enfs_multipath.c:836:5: warning: no previous prototype for function 'enfs_multipath_create_thread' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:932:6: warning: no previous prototype for function 'enfs_create_multi_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:988:6: warning: no previous prototype for function 'enfs_release_rpc_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:120:6: warning: no previous prototype for function 'enfs_free_client_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:135:6: warning: no previous prototype for function 'nfs_multipath_client_info_free_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:191:6: warning: no previous prototype for function 'nfs_multipath_ip_list_info_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:328:6: warning: no previous prototype for function 'print_ip_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:352:6: warning: no previous prototype for function 'print_dns_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:390:6: warning: no previous prototype for function 'convert_lookup_cache_str' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:72:5: warning: no previous prototype for function 'nfs_multipath_client_mount_info_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:162:5: warning: no previous prototype for function 'enfs_parse_ip_single' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:236:6: warning: no previous prototype for function 'enfs_valid_ip' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:24:6: warning: no previous prototype for function 'nfs_multipath_parse_ip_ipv6_add' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:361:6: warning: no previous prototype for function 'isInvalidDns' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:387:5: warning: no previous prototype for function 'nfs_multipath_parse_dns_list' [-Wmissing-prototypes]
include/linux/psp-hygon.h:509:5: warning: no previous prototype for function 'psp_register_cmd_notifier' [-Wmissing-prototypes]
include/linux/psp-hygon.h:510:5: warning: no previous prototype for function 'psp_unregister_cmd_notifier' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for function 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for function 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/sched/core.c:158:5: warning: no previous prototype for 'sched_task_is_throttled' [-Wmissing-prototypes]
kernel/sched/core.c:158:5: warning: no previous prototype for function 'sched_task_is_throttled' [-Wmissing-prototypes]
mm/damon/core.c:116:5: warning: no previous prototype for function 'damon_target_init_kfifo' [-Wmissing-prototypes]
mm/damon/core.c:132:6: warning: no previous prototype for function 'damon_target_deinit_kfifo' [-Wmissing-prototypes]
mm/dynamic_pool.c:1704:51: warning: variable 'ret' is uninitialized when used here [-Wuninitialized]
mm/madvise.c:297:6: warning: no previous prototype for 'force_swapin_vma' [-Wmissing-prototypes]
mm/madvise.c:297:6: warning: no previous prototype for function 'force_swapin_vma' [-Wmissing-prototypes]
mm/mem_sampling.c:69:6: warning: no previous prototype for function 'mem_sampling_record_cb_register' [-Wmissing-prototypes]
mm/mem_sampling.c:86:6: warning: no previous prototype for function 'mem_sampling_record_cb_unregister' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for function 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1618: warning: expecting prototype for memblock_alloc_internal(). Prototype was for __memblock_alloc_internal() instead
mm/memcontrol.c:3382:6: warning: no previous prototype for function 'hisi_oom_recover' [-Wmissing-prototypes]
mm/memcontrol.c:4733:12: warning: 'mem_cgroup_check_swap_for_v1' defined but not used [-Wunused-function]
mm/mempolicy.c:1115:25: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/mempolicy.c:1115:32: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/oom_kill.c:319: warning: Function parameter or member 'oc' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'points' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'task' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: expecting prototype for We choose the task in low(). Prototype was for oom_next_task() instead
mm/page_cache_limit.c:61:5: warning: no previous prototype for 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:61:5: warning: no previous prototype for function 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for function 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for function 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/share_pool.c:1510: warning: Function parameter or member 'node_id' not described in 'sp_area_alloc'
mm/share_pool.c:2425: warning: duplicate section name 'Return'
mm/share_pool.c:2796:7: warning: variable 'is_hugepage' set but not used [-Wunused-but-set-variable]
mm/share_pool.c:2844: warning: Function parameter or member 'spg_id' not described in 'mg_sp_unshare'
mm/share_pool.c:975: warning: expecting prototype for mp_sp_group_id_by_pid(). Prototype was for mg_sp_group_id_by_pid() instead
mm/vmalloc.c:4976: warning: Function parameter or member 'pgoff' not described in 'remap_vmalloc_hugepage_range_partial'
pagewalk.c:(.text+0x104c): undefined reference to `vm_normal_page_pmd'
Unverified Error/Warning (likely false positive, kindly check if interested):
fs/nfs/enfs/enfs_multipath.c: enfs_multipath.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-gpu-drm-phytium-pe22_dc.c:warning:no-previous-prototype-for-function-pe22_dc_bmc_hw_plane_get_primary_format
| |-- drivers-gpu-drm-phytium-phytium_gem.c:warning:no-previous-prototype-for-function-phytium_gem_prime_mmap
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-function-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_bitmap_table.c:error:invalid-application-of-sizeof-to-an-incomplete-type-const-struct-free_memory
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_deinit_kfifo
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_init_kfifo
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_register
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_unregister
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-hisi_oom_recover
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-share_pool.c:warning:Function-parameter-or-member-node_id-not-described-in-sp_area_alloc
| |-- mm-share_pool.c:warning:Function-parameter-or-member-spg_id-not-described-in-mg_sp_unshare
| |-- mm-share_pool.c:warning:duplicate-section-name-Return
| |-- mm-share_pool.c:warning:expecting-prototype-for-mp_sp_group_id_by_pid().-Prototype-was-for-mg_sp_group_id_by_pid()-instead
| |-- mm-share_pool.c:warning:variable-is_hugepage-set-but-not-used
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- arm64-allnoconfig
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-001-20250610
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-002-20250610
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- pagewalk.c:(.text):undefined-reference-to-vm_normal_page_pmd
|-- arm64-randconfig-003-20250610
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-004-20250610
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allmodconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete_exit
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli.c:error:function-ps3stor_cli_printf-might-be-a-candidate-for-gnu_printf-format-attribute
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-ps3_dump_context_show
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_close
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_open
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_write
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_filename_build
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_local_time
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_resp_status_convert
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_trigger_irq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_cmd_stat_content_clear
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_io_recv_ok_stat_inc
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-ps3_dump_dir_length
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_pd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_vd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-ps3_sas_expander_phys_refresh
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:error:snprintf-output-may-be-truncated-before-the-last-format-character
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_hba
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_raid
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_switch
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-ps3_hard_reset_to_ready
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-ps3_clean_mgr_cmd
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_HDD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CLEAR_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_ENABLE_MSIX-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_MASK_DISABLE-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_STATUS_EXIST_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_SSD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-ps3_cli_ver_query
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_cmd_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_init
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_reset
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clean
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_all_pd_rc_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_cmd_waitq_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_exclusive_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_mgrq_resend
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_pd_waitq_ratio_update
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_tg_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_vd_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_conflict_queue_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_check
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_range_check_and_insert
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-rbtDelNodeDo
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_hard_recovery_state_finish
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_alloc
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_delete
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_free
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_irq_queue_destroy
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_state_transfer
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-ps3_sas_update_phy_info
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_set_task_manager_busy
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_wait_for_outstanding_complete
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpuset_from_task
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_sysctl_handler
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allnoconfig
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-001-20250611
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-002-20250611
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allnoconfig
| |-- Warning:drivers-arm-mm_monitor-spe-decoder-arm-spe-decoder.c-references-a-file-that-doesn-t-exist:Documentation-arm64-memory.rst
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-crypto-sedriver-wst_se_common_type.h:linux-version.h-not-needed.
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:mag_mpu_cmd_defs.h-is-included-more-than-once.
| |-- fs-nfs-enfs-enfs_multipath.c:enfs_multipath.h-is-included-more-than-once.
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allyesconfig
| |-- arch-x86-kernel-cpu-bpf-rvi.c:warning:no-previous-prototype-for-function-bpf_arch_flags
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_bitmap_table.c:error:invalid-application-of-sizeof-to-an-incomplete-type-const-struct-free_memory
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- x86_64-buildonly-randconfig-001-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-002-20250611
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_register_cmd_notifier
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_unregister_cmd_notifier
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-003-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_register_cmd_notifier
| |-- include-linux-psp-hygon.h:warning:no-previous-prototype-for-function-psp_unregister_cmd_notifier
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-004-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-005-20250611
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_task_is_throttled
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-006-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-i2c-busses-i2c-zhaoxin-smbus.c:error:call-to-undeclared-function-inb-ISO-C99-and-later-do-not-support-implicit-function-declarations
| |-- drivers-i2c-busses-i2c-zhaoxin-smbus.c:error:call-to-undeclared-function-outb-ISO-C99-and-later-do-not-support-implicit-function-declarations
| |-- drivers-video-fbdev-riva-riva_hw.o:warning:objtool:RivaGetConfig:stack-state-mismatch:cfa1-cfa2
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_task_is_throttled
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- x86_64-defconfig
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-randconfig-161-20250611
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_task_is_throttled
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
`-- x86_64-rhel-9.4-rust
|-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
|-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
|-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
|-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
|-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
|-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
|-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
`-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
elapsed time: 740m
configs tested: 20
configs skipped: 114
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 randconfig-001-20250610 clang-21
arm64 randconfig-002-20250610 gcc-11.5.0
arm64 randconfig-003-20250610 clang-21
arm64 randconfig-004-20250610 clang-18
loongarch allmodconfig gcc-15.1.0
loongarch allnoconfig gcc-15.1.0
loongarch randconfig-001-20250611 gcc-15.1.0
loongarch randconfig-002-20250611 gcc-15.1.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250611 gcc-12
x86_64 buildonly-randconfig-002-20250611 clang-20
x86_64 buildonly-randconfig-003-20250611 clang-20
x86_64 buildonly-randconfig-004-20250611 gcc-12
x86_64 buildonly-randconfig-005-20250611 gcc-12
x86_64 buildonly-randconfig-006-20250611 clang-20
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Dmitrii Dolgov (1):
perf stat: Separate bperf from bpf_profiler
Ian Rogers (3):
perf test bpf-counters: Add test for BPF event modifier
perf docs: Document bpf event modifier
perf build: Properly guard libbpf includes
Namhyung Kim (12):
bpf: Allow bpf_get_current_ancestor_cgroup_id for tracing
perf core: Factor out __perf_sw_event_sched
perf core: Add PERF_COUNT_SW_CGROUP_SWITCHES event
perf tools: Add 'cgroup-switches' software event
perf tools: Add read_cgroup_id() function
perf tools: Add cgroup_is_v2() helper
perf bpf_counter: Move common functions to bpf_counter.h
perf stat: Enable BPF counter with --for-each-cgroup
perf stat: Fix BPF program section name
perf stat: Fix handling of unsupported cgroup events when using BPF
counters
perf stat: Fix error check for bpf_program__attach
perf test shell stat_bpf_counters: Fix test on Intel
Song Liu (13):
bpftool: Add Makefile target bootstrap
perf build: Support build BPF skeletons with perf
perf stat: Enable counting events for BPF programs
perf stat: Introduce 'bperf' to share hardware PMCs with BPF
perf stat: Measure 't0' and 'ref_time' after enable_counters()
perf util: Move bpf_perf definitions to a libperf header
perf bpf: check perf_attr_map is compatible with the perf binary
perf stat: Introduce config stat.bpf-counter-events
perf stat: Introduce ':b' modifier
perf stat: Introduce bpf_counter_ops->disable()
perf bpf: Fix building perf with BUILD_BPF_SKEL=1 by default in more
distros
perf bpf_skel: Do not use typedef to avoid error on old clang
perf test: Add a shell test for 'perf stat --bpf-counters' new option
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
Yonghong Song (1):
bpf: Add rcu_read_lock in bpf_get_current_[ancestor_]cgroup_id()
helpers
Yu Kuai (1):
perf stat: Fix error return code in bperf__load()
include/linux/perf_event.h | 40 +-
include/uapi/linux/perf_event.h | 1 +
kernel/bpf/helpers.c | 22 +-
kernel/trace/bpf_trace.c | 2 +
tools/bpf/bpftool/Makefile | 2 +
tools/build/Makefile.feature | 4 +-
tools/include/uapi/linux/perf_event.h | 1 +
tools/lib/perf/include/perf/bpf_perf.h | 32 +
tools/perf/Documentation/perf-list.txt | 1 +
tools/perf/Documentation/perf-stat.txt | 31 +
tools/perf/Makefile.config | 9 +
tools/perf/Makefile.perf | 65 +-
tools/perf/builtin-stat.c | 110 ++-
tools/perf/builtin-trace.c | 2 +
tools/perf/tests/shell/stat_bpf_counters.sh | 76 ++
tools/perf/util/Build | 2 +
tools/perf/util/bpf_counter.c | 833 ++++++++++++++++++
tools/perf/util/bpf_counter.h | 137 +++
tools/perf/util/bpf_counter_cgroup.c | 299 +++++++
tools/perf/util/bpf_skel/.gitignore | 3 +
tools/perf/util/bpf_skel/bperf_cgroup.bpf.c | 191 ++++
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 167 ++++
tools/perf/util/bpf_skel/bperf_leader.bpf.c | 55 ++
tools/perf/util/bpf_skel/bperf_u.h | 19 +
.../util/bpf_skel/bpf_prog_profiler.bpf.c | 93 ++
tools/perf/util/cgroup.c | 47 +
tools/perf/util/cgroup.h | 13 +
tools/perf/util/config.c | 4 +
tools/perf/util/evlist.c | 4 +
tools/perf/util/evsel.c | 27 +
tools/perf/util/evsel.h | 37 +
tools/perf/util/parse-events.c | 12 +-
tools/perf/util/parse-events.l | 3 +-
tools/perf/util/python.c | 27 +
tools/perf/util/stat-display.c | 4 +-
tools/perf/util/stat.c | 2 +-
tools/perf/util/target.c | 34 +-
tools/perf/util/target.h | 8 +
tools/scripts/Makefile.include | 1 +
39 files changed, 2369 insertions(+), 51 deletions(-)
create mode 100644 tools/lib/perf/include/perf/bpf_perf.h
create mode 100755 tools/perf/tests/shell/stat_bpf_counters.sh
create mode 100644 tools/perf/util/bpf_counter.c
create mode 100644 tools/perf/util/bpf_counter.h
create mode 100644 tools/perf/util/bpf_counter_cgroup.c
create mode 100644 tools/perf/util/bpf_skel/.gitignore
create mode 100644 tools/perf/util/bpf_skel/bperf_cgroup.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_follower.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_leader.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_u.h
create mode 100644 tools/perf/util/bpf_skel/bpf_prog_profiler.bpf.c
--
2.34.1
2
37

[openeuler:OLK-5.10 2954/2954] include/trace/trace_events.h:27:23: warning: 'str__oenetcls__trace_system_name' defined but not used
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: d60758b0ffcd28339b899dcd5dc7416019a69b53 [2954/2954] net/oenetcls: introduce oenetcls for network optimization
config: x86_64-randconfig-r112-20250610 (https://download.01.org/0day-ci/archive/20250611/202506111017.uCAP8oQv-lkp@…)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250611/202506111017.uCAP8oQv-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506111017.uCAP8oQv-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from include/trace/define_trace.h:102,
from include/trace/hooks/oenetcls.h:41,
from drivers/hooks/vendor_hooks.c:12:
>> include/trace/trace_events.h:27:23: warning: 'str__oenetcls__trace_system_name' defined but not used [-Wunused-const-variable=]
27 | #define __app__(x, y) str__##x##y
| ^~~~~
include/trace/trace_events.h:28:21: note: in expansion of macro '__app__'
28 | #define __app(x, y) __app__(x, y)
| ^~~~~~~
include/trace/trace_events.h:30:29: note: in expansion of macro '__app'
30 | #define TRACE_SYSTEM_STRING __app(TRACE_SYSTEM_VAR,__trace_system_name)
| ^~~~~
include/trace/trace_events.h:33:27: note: in expansion of macro 'TRACE_SYSTEM_STRING'
33 | static const char TRACE_SYSTEM_STRING[] = \
| ^~~~~~~~~~~~~~~~~~~
include/trace/trace_events.h:36:1: note: in expansion of macro 'TRACE_MAKE_SYSTEM_STR'
36 | TRACE_MAKE_SYSTEM_STR();
| ^~~~~~~~~~~~~~~~~~~~~
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for PGP_KEY_PARSER
Depends on [n]: CRYPTO [=y] && ASYMMETRIC_KEY_TYPE [=y] && ASYMMETRIC_PUBLIC_KEY_SUBTYPE [=n]
Selected by [y]:
- PGP_PRELOAD [=y] && CRYPTO [=y] && ASYMMETRIC_KEY_TYPE [=y]
vim +/str__oenetcls__trace_system_name +27 include/trace/trace_events.h
acd388fd3af350a include/trace/ftrace.h Steven Rostedt (Red Hat 2015-03-31 26)
acd388fd3af350a include/trace/ftrace.h Steven Rostedt (Red Hat 2015-03-31 @27) #define __app__(x, y) str__##x##y
acd388fd3af350a include/trace/ftrace.h Steven Rostedt (Red Hat 2015-03-31 28) #define __app(x, y) __app__(x, y)
acd388fd3af350a include/trace/ftrace.h Steven Rostedt (Red Hat 2015-03-31 29)
:::::: The code at line 27 was first introduced by commit
:::::: acd388fd3af350ab24c6ab6f19b83fc4a4f3aa60 tracing: Give system name a pointer
:::::: TO: Steven Rostedt (Red Hat) <rostedt(a)goodmis.org>
:::::: CC: Steven Rostedt <rostedt(a)goodmis.org>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10 2954/2954] drivers/net/dsa/mv88e6xxx/chip.c:2320:25: error: implicit declaration of function 'mv88e6xxx_g2_eeprom_wait'; did you mean 'mv88e6xxx_g2_pvt_write'?
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
Hi Fabio,
FYI, the error/warning still remains.
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: 02956abc74ede6549249eb21e5b319b92dd147f3 [2954/2954] net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent
config: arm64-randconfig-r133-20250610 (https://download.01.org/0day-ci/archive/20250611/202506111048.RGaU4PH0-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce: (https://download.01.org/0day-ci/archive/20250611/202506111048.RGaU4PH0-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506111048.RGaU4PH0-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/net/dsa/mv88e6xxx/chip.c: In function 'mv88e6xxx_hardware_reset':
>> drivers/net/dsa/mv88e6xxx/chip.c:2320:25: error: implicit declaration of function 'mv88e6xxx_g2_eeprom_wait'; did you mean 'mv88e6xxx_g2_pvt_write'? [-Werror=implicit-function-declaration]
2320 | mv88e6xxx_g2_eeprom_wait(chip);
| ^~~~~~~~~~~~~~~~~~~~~~~~
| mv88e6xxx_g2_pvt_write
cc1: some warnings being treated as errors
vim +2320 drivers/net/dsa/mv88e6xxx/chip.c
2306
2307 static void mv88e6xxx_hardware_reset(struct mv88e6xxx_chip *chip)
2308 {
2309 struct gpio_desc *gpiod = chip->reset;
2310
2311 /* If there is a GPIO connected to the reset pin, toggle it */
2312 if (gpiod) {
2313 /* If the switch has just been reset and not yet completed
2314 * loading EEPROM, the reset may interrupt the I2C transaction
2315 * mid-byte, causing the first EEPROM read after the reset
2316 * from the wrong location resulting in the switch booting
2317 * to wrong mode and inoperable.
2318 */
2319 if (chip->info->ops->get_eeprom)
> 2320 mv88e6xxx_g2_eeprom_wait(chip);
2321
2322 gpiod_set_value_cansleep(gpiod, 1);
2323 usleep_range(10000, 20000);
2324 gpiod_set_value_cansleep(gpiod, 0);
2325 usleep_range(10000, 20000);
2326
2327 if (chip->info->ops->get_eeprom)
2328 mv88e6xxx_g2_eeprom_wait(chip);
2329 }
2330 }
2331
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
From: Li Nan <linan122(a)huawei.com>
hulk inclusion
category: cleanup
bugzilla: https://gitee.com/openeuler/kernel/issues/ICE1VQ
--------------------------------
There are some uselsess file, remove it.
Fixes: 46149930e144 ("md: fix kmemleak of rdev->serial")
Signed-off-by: Li Nan <linan122(a)huawei.com>
---
Module.symvers.back | 22973 ------------------------------------------
current.log | 396 -
2 files changed, 23369 deletions(-)
delete mode 100644 Module.symvers.back
delete mode 100644 current.log
diff --git a/Module.symvers.back b/Module.symvers.back
deleted file mode 100644
index 814c511c7921..000000000000
--- a/Module.symvers.back
+++ /dev/null
@@ -1,22973 +0,0 @@
-0xf7370f56 system_state vmlinux EXPORT_SYMBOL
-0xbea5ff1e static_key_initialized vmlinux EXPORT_SYMBOL_GPL
-0xc2e587d1 reset_devices vmlinux EXPORT_SYMBOL
-0xba497f13 loops_per_jiffy vmlinux EXPORT_SYMBOL
-0x4539ad42 init_uts_ns vmlinux EXPORT_SYMBOL_GPL
-0x43f92edd wait_for_initramfs vmlinux EXPORT_SYMBOL_GPL
-0x44f4c866 init_task vmlinux EXPORT_SYMBOL
-0x0abdc439 cc_platform_has vmlinux EXPORT_SYMBOL_GPL
-0x98378a1d cc_mkdec vmlinux EXPORT_SYMBOL_GPL
-0x0a47553f tdx_kvm_hypercall vmlinux EXPORT_SYMBOL_GPL
-0xe7b96be0 tdx_mcall_get_report0 vmlinux EXPORT_SYMBOL_GPL
-0x50b42ba1 entry_ibpb vmlinux EXPORT_SYMBOL_GPL
-0x31c45b8c mds_verw_sel vmlinux EXPORT_SYMBOL_GPL
-0x315a2bf5 asm_load_gs_index vmlinux EXPORT_SYMBOL
-0x41d9f0ad clear_bhb_loop vmlinux EXPORT_SYMBOL_GPL
-0xd416cfec perf_guest_get_msrs vmlinux EXPORT_SYMBOL_GPL
-0x450110e8 perf_assign_events vmlinux EXPORT_SYMBOL_GPL
-0x0bb197ee events_sysfs_show vmlinux EXPORT_SYMBOL_GPL
-0xebc89978 events_hybrid_sysfs_show vmlinux EXPORT_SYMBOL_GPL
-0xe0e6ef02 perf_get_x86_pmu_capability vmlinux EXPORT_SYMBOL_GPL
-0xd6df01f7 perf_get_hw_event_config vmlinux EXPORT_SYMBOL_GPL
-0x3d10f6b9 perf_msr_probe vmlinux EXPORT_SYMBOL_GPL
-0x5fdfa2c1 amd_pmu_enable_virt vmlinux EXPORT_SYMBOL_GPL
-0x18582826 amd_pmu_disable_virt vmlinux EXPORT_SYMBOL_GPL
-0x10ddd0cb __SCT__perf_lopwr_cb vmlinux EXPORT_SYMBOL_GPL
-0x636257f7 get_ibs_caps vmlinux EXPORT_SYMBOL
-0xf0fd0b61 x86_perf_get_lbr vmlinux EXPORT_SYMBOL_GPL
-0xbc92596d intel_pt_validate_cap vmlinux EXPORT_SYMBOL_GPL
-0x38ea9765 intel_pt_validate_hw_cap vmlinux EXPORT_SYMBOL_GPL
-0x3b91db5b intel_pt_handle_vmx vmlinux EXPORT_SYMBOL_GPL
-0x45d14bdf hypercall_page vmlinux EXPORT_SYMBOL_GPL
-0xcca5839d xen_vcpu_id vmlinux EXPORT_SYMBOL
-0x6226b9fa machine_to_phys_mapping vmlinux EXPORT_SYMBOL
-0xf28ed6e2 machine_to_phys_nr vmlinux EXPORT_SYMBOL
-0x262a7063 xen_start_info vmlinux EXPORT_SYMBOL_GPL
-0xc4008d55 xen_have_vector_callback vmlinux EXPORT_SYMBOL_GPL
-0x731dba7a xen_domain_type vmlinux EXPORT_SYMBOL_GPL
-0x54ea6dfe xen_start_flags vmlinux EXPORT_SYMBOL
-0xd971c6c4 xen_arch_register_cpu vmlinux EXPORT_SYMBOL
-0x4740b3bc xen_arch_unregister_cpu vmlinux EXPORT_SYMBOL
-0x3165daa3 arbitrary_virt_to_machine vmlinux EXPORT_SYMBOL_GPL
-0xe468109e xen_unmap_domain_gfn_range vmlinux EXPORT_SYMBOL_GPL
-0xfc98c8dc xen_percpu_upcall vmlinux EXPORT_SYMBOL_GPL
-0x85cb2c45 xen_has_pv_devices vmlinux EXPORT_SYMBOL_GPL
-0x0034f3b6 xen_has_pv_nic_devices vmlinux EXPORT_SYMBOL_GPL
-0xeb833c22 xen_has_pv_disk_devices vmlinux EXPORT_SYMBOL_GPL
-0x28e64c64 xen_has_pv_and_legacy_disk_devices vmlinux EXPORT_SYMBOL_GPL
-0x116180b5 hv_current_partition_id vmlinux EXPORT_SYMBOL_GPL
-0x9bad141d hv_hypercall_pg vmlinux EXPORT_SYMBOL_GPL
-0xf5b52d5c hv_vp_assist_page vmlinux EXPORT_SYMBOL_GPL
-0x07b64d81 hyperv_stop_tsc_emulation vmlinux EXPORT_SYMBOL_GPL
-0xe1aa2d62 set_hv_tscchange_cb vmlinux EXPORT_SYMBOL_GPL
-0xda1f78ee clear_hv_tscchange_cb vmlinux EXPORT_SYMBOL_GPL
-0x3af578f5 hyperv_report_panic vmlinux EXPORT_SYMBOL_GPL
-0x90a9d8cc hv_is_hyperv_initialized vmlinux EXPORT_SYMBOL_GPL
-0x98f4d306 hyperv_flush_guest_mapping vmlinux EXPORT_SYMBOL_GPL
-0x0cfe59cb hyperv_fill_flush_guest_mapping_list vmlinux EXPORT_SYMBOL_GPL
-0x265b6e29 hyperv_flush_guest_mapping_range vmlinux EXPORT_SYMBOL_GPL
-0xc874d710 hv_unmap_ioapic_interrupt vmlinux EXPORT_SYMBOL_GPL
-0x9615b005 hv_map_ioapic_interrupt vmlinux EXPORT_SYMBOL_GPL
-0xccc46fc3 hv_get_isolation_type vmlinux EXPORT_SYMBOL_GPL
-0x4c9d28b0 phys_base vmlinux EXPORT_SYMBOL
-0x815f2897 empty_zero_page vmlinux EXPORT_SYMBOL
-0x72d79d83 pgdir_shift vmlinux EXPORT_SYMBOL
-0xdad13544 ptrs_per_p4d vmlinux EXPORT_SYMBOL
-0x7cd8d75e page_offset_base vmlinux EXPORT_SYMBOL
-0x9cb986f2 vmalloc_base vmlinux EXPORT_SYMBOL
-0x97651e6c vmemmap_base vmlinux EXPORT_SYMBOL
-0x8c341c48 current_save_fsgs vmlinux EXPORT_SYMBOL_GPL
-0x4b762828 start_thread vmlinux EXPORT_SYMBOL_GPL
-0xee13e697 set_personality_ia32 vmlinux EXPORT_SYMBOL_GPL
-0x9a2c088f irq_stat vmlinux EXPORT_SYMBOL
-0xc287d96a kvm_set_posted_intr_wakeup_handler vmlinux EXPORT_SYMBOL_GPL
-0xc558530d profile_pc vmlinux EXPORT_SYMBOL
-0xde4eeab5 __register_nmi_handler vmlinux EXPORT_SYMBOL
-0xe64ad8ea unregister_nmi_handler vmlinux EXPORT_SYMBOL_GPL
-0xea69d7d7 asm_exc_nmi_kvm_vmx vmlinux EXPORT_SYMBOL_GPL
-0x6e85b00b local_touch_nmi vmlinux EXPORT_SYMBOL_GPL
-0xfa518833 boot_cpu_data vmlinux EXPORT_SYMBOL
-0x37b8b39e screen_info vmlinux EXPORT_SYMBOL
-0xbbb98859 edid_info vmlinux EXPORT_SYMBOL_GPL
-0x607b34f1 edd vmlinux EXPORT_SYMBOL
-0x6f34bc42 x86_platform vmlinux EXPORT_SYMBOL_GPL
-0x8dcf94ee legacy_pic vmlinux EXPORT_SYMBOL
-0x3fd3193e pci_map_biosrom vmlinux EXPORT_SYMBOL
-0x326425ca pci_unmap_biosrom vmlinux EXPORT_SYMBOL
-0x4c9c2f01 pci_biosrom_size vmlinux EXPORT_SYMBOL
-0x3da171f9 pci_mem_start vmlinux EXPORT_SYMBOL
-0x26cda94f e820__mapped_raw_any vmlinux EXPORT_SYMBOL_GPL
-0x91b9a4ba e820__mapped_any vmlinux EXPORT_SYMBOL_GPL
-0x8bbcbc13 dma_ops vmlinux EXPORT_SYMBOL
-0x556cca46 x86_apple_machine vmlinux EXPORT_SYMBOL
-0x90ba258a arch_debugfs_dir vmlinux EXPORT_SYMBOL
-0xfa35044a alternatives_patched vmlinux EXPORT_SYMBOL_GPL
-0x6988d0ca cpu_dr7 vmlinux EXPORT_SYMBOL
-0x196614ce hw_breakpoint_restore vmlinux EXPORT_SYMBOL_GPL
-0xd6b33026 cpu_khz vmlinux EXPORT_SYMBOL
-0x44aaf30f tsc_khz vmlinux EXPORT_SYMBOL
-0x5f2da8c4 check_tsc_unstable vmlinux EXPORT_SYMBOL_GPL
-0xc9216a82 recalibrate_cpu_khz vmlinux EXPORT_SYMBOL_GPL
-0x56398615 mark_tsc_unstable vmlinux EXPORT_SYMBOL_GPL
-0x58d760d0 convert_art_to_tsc vmlinux EXPORT_SYMBOL
-0x958ee9d5 convert_art_ns_to_tsc vmlinux EXPORT_SYMBOL
-0x735a0bd5 native_io_delay vmlinux EXPORT_SYMBOL
-0x7040fff9 rtc_lock vmlinux EXPORT_SYMBOL
-0x9e64fbfe rtc_cmos_read vmlinux EXPORT_SYMBOL
-0x2def7f76 rtc_cmos_write vmlinux EXPORT_SYMBOL
-0x6ea1a27a native_save_fl vmlinux EXPORT_SYMBOL
-0xe8e235c8 arch_static_call_transform vmlinux EXPORT_SYMBOL_GPL
-0xaf354bbe cpu_tss_rw vmlinux EXPORT_SYMBOL
-0xbaf9d785 __tss_limit_invalid vmlinux EXPORT_SYMBOL_GPL
-0xef9aedfc boot_option_idle_override vmlinux EXPORT_SYMBOL
-0xbadc80b2 arch_cpu_idle vmlinux EXPORT_SYMBOL_GPL
-0x32e3b076 mxcsr_feature_mask vmlinux EXPORT_SYMBOL_GPL
-0x73dd54eb irq_fpu_usable vmlinux EXPORT_SYMBOL
-0x73d9f31d fpu_alloc_guest_fpstate vmlinux EXPORT_SYMBOL_GPL
-0x4f56dafb fpu_free_guest_fpstate vmlinux EXPORT_SYMBOL_GPL
-0x34db62bd fpu_enable_guest_xfd_features vmlinux EXPORT_SYMBOL_GPL
-0x5ff7f38e fpu_update_guest_xfd vmlinux EXPORT_SYMBOL_GPL
-0x273e1002 fpu_sync_guest_vmexit_xfd_state vmlinux EXPORT_SYMBOL_GPL
-0x85329672 fpu_swap_kvm_fpstate vmlinux EXPORT_SYMBOL_GPL
-0xc03b3c29 fpu_copy_guest_fpstate_to_uabi vmlinux EXPORT_SYMBOL_GPL
-0xcf78ec68 fpu_copy_uabi_to_guest_fpstate vmlinux EXPORT_SYMBOL_GPL
-0x4129f5ee kernel_fpu_begin_mask vmlinux EXPORT_SYMBOL_GPL
-0x38722f80 kernel_fpu_end vmlinux EXPORT_SYMBOL_GPL
-0xcd81a945 switch_fpu_return vmlinux EXPORT_SYMBOL_GPL
-0xcaa68533 cpu_has_xfeatures vmlinux EXPORT_SYMBOL_GPL
-0xf5878cc7 fpstate_clear_xstate_component vmlinux EXPORT_SYMBOL_GPL
-0x1475d603 xstate_get_guest_group_perm vmlinux EXPORT_SYMBOL_GPL
-0x1389619c __max_die_per_package vmlinux EXPORT_SYMBOL
-0xd1f6c5f3 smp_num_siblings vmlinux EXPORT_SYMBOL
-0xbb5598ce get_llc_id vmlinux EXPORT_SYMBOL_GPL
-0x17add64b gdt_page vmlinux EXPORT_SYMBOL_GPL
-0x45e8d7b5 native_write_cr0 vmlinux EXPORT_SYMBOL
-0x0b637410 cr4_update_irqsoff vmlinux EXPORT_SYMBOL
-0x9d14205c cr4_read_shadow vmlinux EXPORT_SYMBOL_GPL
-0x7c20b6a0 load_direct_gdt vmlinux EXPORT_SYMBOL_GPL
-0xf881cecd load_fixmap_gdt vmlinux EXPORT_SYMBOL_GPL
-0x31571f0e pcpu_hot vmlinux EXPORT_SYMBOL
-0xf767ca35 fixed_percpu_data vmlinux EXPORT_SYMBOL_GPL
-0xcea381dd x86_match_cpu vmlinux EXPORT_SYMBOL
-0x6ffce680 x86_cpu_has_min_microcode_rev vmlinux EXPORT_SYMBOL_GPL
-0x096a7e6f x86_spec_ctrl_base vmlinux EXPORT_SYMBOL_GPL
-0x61b443f8 x86_spec_ctrl_current vmlinux EXPORT_SYMBOL_GPL
-0x5d0113e0 x86_pred_cmd vmlinux EXPORT_SYMBOL_GPL
-0x56948896 spec_ctrl_current vmlinux EXPORT_SYMBOL_GPL
-0x2b67b6b7 mds_idle_clear vmlinux EXPORT_SYMBOL_GPL
-0xa2d0b59d mmio_stale_data_clear vmlinux EXPORT_SYMBOL_GPL
-0x48e080b1 x86_virt_spec_ctrl vmlinux EXPORT_SYMBOL_GPL
-0x57861a5c gds_ucode_mitigated vmlinux EXPORT_SYMBOL_GPL
-0xe83eba32 itlb_multihit_kvm_mitigation vmlinux EXPORT_SYMBOL_GPL
-0x696d7e0b l1tf_mitigation vmlinux EXPORT_SYMBOL_GPL
-0x50b03f5d l1tf_vmx_mitigation vmlinux EXPORT_SYMBOL_GPL
-0x85b15444 arch_set_max_freq_ratio vmlinux EXPORT_SYMBOL_GPL
-0x808a8088 handle_guest_split_lock vmlinux EXPORT_SYMBOL_GPL
-0x738fe32b amd_get_nodes_per_socket vmlinux EXPORT_SYMBOL_GPL
-0x5388b1a0 amd_get_dr_addr_mask vmlinux EXPORT_SYMBOL_GPL
-0xc2033d9f amd_get_highest_perf vmlinux EXPORT_SYMBOL_GPL
-0x388264ea amd_clear_divider vmlinux EXPORT_SYMBOL_GPL
-0xc45d0d13 injectm vmlinux EXPORT_SYMBOL_GPL
-0x3df82d00 mce_log vmlinux EXPORT_SYMBOL_GPL
-0xb8b2b1f7 mce_register_decode_chain vmlinux EXPORT_SYMBOL_GPL
-0x0f2d7d87 mce_unregister_decode_chain vmlinux EXPORT_SYMBOL_GPL
-0x6d2e899d mce_usable_address vmlinux EXPORT_SYMBOL_GPL
-0x6790ebd3 mce_is_memory_error vmlinux EXPORT_SYMBOL_GPL
-0x001b074f mce_is_correctable vmlinux EXPORT_SYMBOL_GPL
-0xdba0e344 machine_check_poll vmlinux EXPORT_SYMBOL_GPL
-0x7915cee5 do_machine_check vmlinux EXPORT_SYMBOL_GPL
-0xe0c77bb5 mce_notify_irq vmlinux EXPORT_SYMBOL_GPL
-0xc3cc4300 smca_get_long_name vmlinux EXPORT_SYMBOL_GPL
-0x5fdf7b32 smca_get_bank_type vmlinux EXPORT_SYMBOL_GPL
-0x4791cb91 apei_mce_report_mem_error vmlinux EXPORT_SYMBOL_GPL
-0x1aff3d55 mce_register_injector_chain vmlinux EXPORT_SYMBOL_GPL
-0xa7127da7 mce_unregister_injector_chain vmlinux EXPORT_SYMBOL_GPL
-0x5b641283 arch_phys_wc_add vmlinux EXPORT_SYMBOL
-0x50d68377 arch_phys_wc_del vmlinux EXPORT_SYMBOL
-0x8e3d911b arch_phys_wc_index vmlinux EXPORT_SYMBOL_GPL
-0xbb35ef87 mtrr_state vmlinux EXPORT_SYMBOL_GPL
-0xd0be497b intel_collect_cpu_info vmlinux EXPORT_SYMBOL_GPL
-0xdce1a875 intel_find_matching_signature vmlinux EXPORT_SYMBOL_GPL
-0xb8ab68df intel_microcode_sanity_check vmlinux EXPORT_SYMBOL_GPL
-0xdb1aaf9b arch_is_platform_page vmlinux EXPORT_SYMBOL_GPL
-0xe0d39f1c sgx_set_attribute vmlinux EXPORT_SYMBOL_GPL
-0x32e4d1e0 sgx_virt_ecreate vmlinux EXPORT_SYMBOL_GPL
-0x8c4fded2 sgx_virt_einit vmlinux EXPORT_SYMBOL_GPL
-0xd7dd777b reserve_perfctr_nmi vmlinux EXPORT_SYMBOL
-0x04d8c750 release_perfctr_nmi vmlinux EXPORT_SYMBOL
-0x740a1b95 reserve_evntsel_nmi vmlinux EXPORT_SYMBOL
-0xa70fabbe release_evntsel_nmi vmlinux EXPORT_SYMBOL
-0x29ad8e33 x86_hyper_type vmlinux EXPORT_SYMBOL
-0x1cd44f98 hyperv_paravisor_present vmlinux EXPORT_SYMBOL_GPL
-0x2842afef hv_get_non_nested_register vmlinux EXPORT_SYMBOL_GPL
-0x636751b8 hv_set_non_nested_register vmlinux EXPORT_SYMBOL_GPL
-0xcaf0271f hv_get_register vmlinux EXPORT_SYMBOL_GPL
-0xfab52fab hv_set_register vmlinux EXPORT_SYMBOL_GPL
-0x1a45cb6c acpi_disabled vmlinux EXPORT_SYMBOL
-0x51d12d4e acpi_pci_disabled vmlinux EXPORT_SYMBOL
-0xb5a8c226 acpi_gsi_to_irq vmlinux EXPORT_SYMBOL_GPL
-0xd6011c12 acpi_register_gsi vmlinux EXPORT_SYMBOL_GPL
-0x7b5452b8 acpi_unregister_gsi vmlinux EXPORT_SYMBOL_GPL
-0x7e7bcf26 acpi_map_cpu vmlinux EXPORT_SYMBOL
-0xb674a534 acpi_unmap_cpu vmlinux EXPORT_SYMBOL
-0xdc5736d5 acpi_register_ioapic vmlinux EXPORT_SYMBOL
-0xbf3193ec acpi_unregister_ioapic vmlinux EXPORT_SYMBOL
-0xffc30c3a acpi_processor_power_init_bm_check vmlinux EXPORT_SYMBOL
-0x70576fee acpi_processor_ffh_cstate_probe vmlinux EXPORT_SYMBOL_GPL
-0x64a62e11 acpi_processor_ffh_cstate_enter vmlinux EXPORT_SYMBOL_GPL
-0x60a32ea9 pm_power_off vmlinux EXPORT_SYMBOL
-0xe9dc51c5 cpu_emergency_register_virt_callback vmlinux EXPORT_SYMBOL_GPL
-0x69ad6ac1 cpu_emergency_unregister_virt_callback vmlinux EXPORT_SYMBOL_GPL
-0xe9a5e67f intel_graphics_stolen_res vmlinux EXPORT_SYMBOL
-0xcabfad1f smp_ops vmlinux EXPORT_SYMBOL_GPL
-0x3b83610f cpu_sibling_map vmlinux EXPORT_SYMBOL
-0xa9785b49 cpu_core_map vmlinux EXPORT_SYMBOL
-0x3c427f67 cpu_die_map vmlinux EXPORT_SYMBOL
-0x4e24d2f7 cpu_info vmlinux EXPORT_SYMBOL
-0x39081193 __max_logical_packages vmlinux EXPORT_SYMBOL
-0xdb16b170 topology_phys_to_logical_pkg vmlinux EXPORT_SYMBOL
-0x2f888d28 cpu_clustergroup_mask vmlinux EXPORT_SYMBOL_GPL
-0x53569707 this_cpu_off vmlinux EXPORT_SYMBOL
-0xb19a5453 __per_cpu_offset vmlinux EXPORT_SYMBOL
-0x5dbcfa4f boot_cpu_physical_apicid vmlinux EXPORT_SYMBOL_GPL
-0xa50bcff0 x86_cpu_to_apicid vmlinux EXPORT_SYMBOL
-0xad536c91 x86_cpu_to_acpiid vmlinux EXPORT_SYMBOL
-0x01848a8e local_apic_timer_c2_ok vmlinux EXPORT_SYMBOL_GPL
-0xff1e67b9 setup_APIC_eilvt vmlinux EXPORT_SYMBOL_GPL
-0x9d4894c8 x2apic_mode vmlinux EXPORT_SYMBOL_GPL
-0x3466ce63 x86_msi_msg_get_destid vmlinux EXPORT_SYMBOL_GPL
-0x1ba237b0 default_cpu_present_to_apicid vmlinux EXPORT_SYMBOL_GPL
-0x4b9f9ab7 x86_vector_domain vmlinux EXPORT_SYMBOL_GPL
-0x3c476a44 irqd_cfg vmlinux EXPORT_SYMBOL_GPL
-0x7b1fba0d __SCT__apic_call_send_IPI_mask vmlinux EXPORT_SYMBOL_GPL
-0x3e39d447 __SCT__apic_call_send_IPI_self vmlinux EXPORT_SYMBOL_GPL
-0x1eb922a3 IO_APIC_get_PCI_irq_vector vmlinux EXPORT_SYMBOL
-0x59cd521a pci_msi_prepare vmlinux EXPORT_SYMBOL_GPL
-0xb5ab892d uv_undefined vmlinux EXPORT_SYMBOL
-0xf4dd89bf uv_get_hubless_system vmlinux EXPORT_SYMBOL_GPL
-0x0f9fc04e uv_get_archtype vmlinux EXPORT_SYMBOL_GPL
-0x12e285ec is_uv_system vmlinux EXPORT_SYMBOL_GPL
-0x2eda4807 is_uv_hubbed vmlinux EXPORT_SYMBOL_GPL
-0x8ad5ceb1 __uv_hub_info_list vmlinux EXPORT_SYMBOL_GPL
-0xf3189f7e __uv_cpu_info vmlinux EXPORT_SYMBOL_GPL
-0xaa86cfb5 uv_possible_blades vmlinux EXPORT_SYMBOL_GPL
-0x8b966b63 sn_rtc_cycles_per_second vmlinux EXPORT_SYMBOL
-0x1cbc6a3a apic vmlinux EXPORT_SYMBOL_GPL
-0xbdfb6dbb __fentry__ vmlinux EXPORT_SYMBOL
-0xe295c0ff is_hpet_enabled vmlinux EXPORT_SYMBOL_GPL
-0xc9c3f176 hpet_register_irq_handler vmlinux EXPORT_SYMBOL_GPL
-0xe3bc7fd4 hpet_unregister_irq_handler vmlinux EXPORT_SYMBOL_GPL
-0xb3253ed9 hpet_rtc_timer_init vmlinux EXPORT_SYMBOL_GPL
-0xa452c297 hpet_mask_rtc_irq_bit vmlinux EXPORT_SYMBOL_GPL
-0xa9126bff hpet_set_rtc_irq_bit vmlinux EXPORT_SYMBOL_GPL
-0xb7d7c12e hpet_set_alarm_time vmlinux EXPORT_SYMBOL_GPL
-0x85d7edfd hpet_set_periodic_freq vmlinux EXPORT_SYMBOL_GPL
-0x518c2fc6 hpet_rtc_dropped_irq vmlinux EXPORT_SYMBOL_GPL
-0x782adb74 hpet_rtc_interrupt vmlinux EXPORT_SYMBOL_GPL
-0x81221cad amd_nb_num vmlinux EXPORT_SYMBOL_GPL
-0x87e64181 amd_nb_has_feature vmlinux EXPORT_SYMBOL_GPL
-0xc6d87dd1 node_to_amd_nb vmlinux EXPORT_SYMBOL_GPL
-0x0fc37562 amd_smn_read vmlinux EXPORT_SYMBOL_GPL
-0x86169f3e amd_smn_write vmlinux EXPORT_SYMBOL_GPL
-0x86d65c4e hygon_f18h_m4h vmlinux EXPORT_SYMBOL_GPL
-0x413629f0 hygon_nb_num vmlinux EXPORT_SYMBOL_GPL
-0xa4947c87 get_df_id vmlinux EXPORT_SYMBOL_GPL
-0xbcb838a1 amd_flush_garts vmlinux EXPORT_SYMBOL_GPL
-0xef8fc95f kvm_async_pf_task_wait_schedule vmlinux EXPORT_SYMBOL_GPL
-0x92141343 kvm_async_pf_task_wake vmlinux EXPORT_SYMBOL_GPL
-0xf1cd8929 kvm_read_and_reset_apf_flags vmlinux EXPORT_SYMBOL_GPL
-0xe9ce931a kvm_para_available vmlinux EXPORT_SYMBOL_GPL
-0x8f2eb429 kvm_arch_para_hints vmlinux EXPORT_SYMBOL_GPL
-0xff8e74e2 arch_haltpoll_enable vmlinux EXPORT_SYMBOL_GPL
-0x9424058f arch_haltpoll_disable vmlinux EXPORT_SYMBOL_GPL
-0x4c49f1de hv_clock_per_cpu vmlinux EXPORT_SYMBOL_GPL
-0xc6f1bcc1 kvm_clock vmlinux EXPORT_SYMBOL_GPL
-0x4c5a3a93 pv_ops vmlinux EXPORT_SYMBOL
-0x59bbf145 pv_info vmlinux EXPORT_SYMBOL_GPL
-0x8677f369 pvclock_get_pvti_cpu0_va vmlinux EXPORT_SYMBOL_GPL
-0x6af32560 unwind_get_return_address vmlinux EXPORT_SYMBOL_GPL
-0xf3df948e unwind_next_frame vmlinux EXPORT_SYMBOL_GPL
-0x5b81b543 __unwind_start vmlinux EXPORT_SYMBOL_GPL
-0x5d377b2b snp_issue_guest_request vmlinux EXPORT_SYMBOL_GPL
-0x46cf10eb cachemode2protval vmlinux EXPORT_SYMBOL
-0xc512626a __supported_pte_mask vmlinux EXPORT_SYMBOL_GPL
-0xd38cd261 __default_kernel_pte_mask vmlinux EXPORT_SYMBOL
-0xde80cd09 ioremap vmlinux EXPORT_SYMBOL
-0x5f2fcc83 ioremap_uc vmlinux EXPORT_SYMBOL_GPL
-0xfd93ee35 ioremap_wc vmlinux EXPORT_SYMBOL
-0xa72cfb7d ioremap_wt vmlinux EXPORT_SYMBOL
-0x79df9633 ioremap_encrypted vmlinux EXPORT_SYMBOL
-0x556422b3 ioremap_cache vmlinux EXPORT_SYMBOL
-0x55f95e07 ioremap_prot vmlinux EXPORT_SYMBOL
-0xedc03953 iounmap vmlinux EXPORT_SYMBOL
-0x1d19f77b physical_mask vmlinux EXPORT_SYMBOL
-0x531b604e __virt_addr_valid vmlinux EXPORT_SYMBOL
-0x7521afb6 leave_mm vmlinux EXPORT_SYMBOL_GPL
-0x593edc4b cpu_tlbstate_shared vmlinux EXPORT_SYMBOL
-0xe3e88acb __get_current_cr3_fast vmlinux EXPORT_SYMBOL_GPL
-0x40a0aafc __flush_tlb_all vmlinux EXPORT_SYMBOL_GPL
-0x9acd3f6f get_cpu_entry_area vmlinux EXPORT_SYMBOL
-0x494e3393 vm_get_page_prot vmlinux EXPORT_SYMBOL
-0x0c805f93 clflush_cache_range vmlinux EXPORT_SYMBOL_GPL
-0x2c635527 arch_invalidate_pmem vmlinux EXPORT_SYMBOL_GPL
-0xd6551b9c cpu_cache_has_invalidate_memregion vmlinux EXPORT_SYMBOL_GPL DEVMEM
-0x3c804b25 cpu_cache_invalidate_memregion vmlinux EXPORT_SYMBOL_GPL DEVMEM
-0x8b9200fd lookup_address vmlinux EXPORT_SYMBOL_GPL
-0x30cf804f slow_virt_to_phys vmlinux EXPORT_SYMBOL_GPL
-0xab65ed80 set_memory_uc vmlinux EXPORT_SYMBOL
-0x767ddb02 set_memory_wc vmlinux EXPORT_SYMBOL
-0x91607d95 set_memory_wb vmlinux EXPORT_SYMBOL
-0xc8126340 clear_mce_nospec vmlinux EXPORT_SYMBOL_GPL
-0xd5f3bb7b set_memory_encrypted vmlinux EXPORT_SYMBOL_GPL
-0xc683da81 set_memory_decrypted vmlinux EXPORT_SYMBOL_GPL
-0x738e8717 set_pages_uc vmlinux EXPORT_SYMBOL
-0xc2a352e8 set_pages_array_uc vmlinux EXPORT_SYMBOL
-0xf350ae72 set_pages_array_wc vmlinux EXPORT_SYMBOL
-0xd7fd7862 set_pages_wb vmlinux EXPORT_SYMBOL
-0xbde994a5 set_pages_array_wb vmlinux EXPORT_SYMBOL
-0x550ce709 pat_enabled vmlinux EXPORT_SYMBOL_GPL
-0xf8fe3986 pat_pfn_immune_to_uc_mtrr vmlinux EXPORT_SYMBOL_GPL
-0xf2b81b64 arch_io_reserve_memtype_wc vmlinux EXPORT_SYMBOL
-0xd1f60a89 arch_io_free_memtype_wc vmlinux EXPORT_SYMBOL
-0x50d1f870 pgprot_writecombine vmlinux EXPORT_SYMBOL_GPL
-0x93dc2586 pgprot_writethrough vmlinux EXPORT_SYMBOL_GPL
-0xdf230c2a node_data vmlinux EXPORT_SYMBOL
-0x8363675e node_to_cpumask_map vmlinux EXPORT_SYMBOL
-0x99f068d5 x86_cpu_to_node_map vmlinux EXPORT_SYMBOL
-0x46c47fb6 __node_distance vmlinux EXPORT_SYMBOL
-0x36173c1d phys_to_target_node vmlinux EXPORT_SYMBOL_GPL
-0x638a9653 memory_add_physaddr_to_nid vmlinux EXPORT_SYMBOL_GPL
-0x8a35b432 sme_me_mask vmlinux EXPORT_SYMBOL
-0x1f6cd584 efivar_reserved_space vmlinux EXPORT_SYMBOL_GPL
-0x9aa71c2a efi_query_variable_store vmlinux EXPORT_SYMBOL_GPL
-0x86c7272b iosf_mbi_read vmlinux EXPORT_SYMBOL
-0x7a88da87 iosf_mbi_write vmlinux EXPORT_SYMBOL
-0x96eab78b iosf_mbi_modify vmlinux EXPORT_SYMBOL
-0x28e09af1 iosf_mbi_available vmlinux EXPORT_SYMBOL
-0xffcd7f49 iosf_mbi_punit_acquire vmlinux EXPORT_SYMBOL
-0xf7ef9a79 iosf_mbi_punit_release vmlinux EXPORT_SYMBOL
-0x86f27420 iosf_mbi_block_punit_i2c_access vmlinux EXPORT_SYMBOL
-0x44414ff2 iosf_mbi_unblock_punit_i2c_access vmlinux EXPORT_SYMBOL
-0xf30965ac iosf_mbi_register_pmic_bus_access_notifier vmlinux EXPORT_SYMBOL
-0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked vmlinux EXPORT_SYMBOL
-0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier vmlinux EXPORT_SYMBOL
-0x9ad7a582 iosf_mbi_assert_punit_acquired vmlinux EXPORT_SYMBOL
-0x1e5a5f22 sn_partition_id vmlinux EXPORT_SYMBOL_GPL
-0x84b268cf sn_coherency_id vmlinux EXPORT_SYMBOL_GPL
-0x988a1a00 sn_region_size vmlinux EXPORT_SYMBOL_GPL
-0xaa5aee1c uv_bios_mq_watchlist_alloc vmlinux EXPORT_SYMBOL_GPL
-0xdf81924d uv_bios_mq_watchlist_free vmlinux EXPORT_SYMBOL_GPL
-0x9930f8a3 uv_bios_change_memprotect vmlinux EXPORT_SYMBOL_GPL
-0xbdb2dfd5 uv_bios_reserved_page_pa vmlinux EXPORT_SYMBOL_GPL
-0x8328673f uv_bios_get_master_nasid vmlinux EXPORT_SYMBOL_GPL
-0x1e912415 uv_bios_get_heapsize vmlinux EXPORT_SYMBOL_GPL
-0xba82f246 uv_bios_install_heap vmlinux EXPORT_SYMBOL_GPL
-0x18b2790f uv_bios_obj_count vmlinux EXPORT_SYMBOL_GPL
-0xcd8e8f82 uv_bios_enum_objs vmlinux EXPORT_SYMBOL_GPL
-0x0bbeaeba uv_bios_enum_ports vmlinux EXPORT_SYMBOL_GPL
-0xd9992eb4 uv_bios_get_geoinfo vmlinux EXPORT_SYMBOL_GPL
-0x2c61bb09 uv_bios_get_pci_topology vmlinux EXPORT_SYMBOL_GPL
-0x67dcd76b uv_setup_irq vmlinux EXPORT_SYMBOL_GPL
-0x5d9317d7 uv_teardown_irq vmlinux EXPORT_SYMBOL_GPL
-0x0dd588c3 free_task vmlinux EXPORT_SYMBOL
-0x6f1627eb __mmdrop vmlinux EXPORT_SYMBOL_GPL
-0xe5763914 __put_task_struct vmlinux EXPORT_SYMBOL_GPL
-0x94160518 __put_task_struct_rcu_cb vmlinux EXPORT_SYMBOL_GPL
-0xdbca668a mmput vmlinux EXPORT_SYMBOL_GPL
-0x2de05329 mmput_async vmlinux EXPORT_SYMBOL_GPL
-0xe4bb17a8 get_task_mm vmlinux EXPORT_SYMBOL_GPL
-0x1f8544b8 panic_timeout vmlinux EXPORT_SYMBOL_GPL
-0x07ceeac9 panic_notifier_list vmlinux EXPORT_SYMBOL
-0x63eb9355 panic_blink vmlinux EXPORT_SYMBOL
-0xb3a2dfdf nmi_panic vmlinux EXPORT_SYMBOL
-0xf1e046cc panic vmlinux EXPORT_SYMBOL
-0x651a4139 test_taint vmlinux EXPORT_SYMBOL
-0x0eb6eb87 add_taint vmlinux EXPORT_SYMBOL
-0x56470118 __warn_printk vmlinux EXPORT_SYMBOL
-0xf0fdf6cb __stack_chk_fail vmlinux EXPORT_SYMBOL
-0x4507f4a8 cpuhp_tasks_frozen vmlinux EXPORT_SYMBOL_GPL
-0xa04f945a cpus_read_lock vmlinux EXPORT_SYMBOL_GPL
-0x5831e062 cpus_read_trylock vmlinux EXPORT_SYMBOL_GPL
-0x18fb2caf cpus_read_unlock vmlinux EXPORT_SYMBOL_GPL
-0x4d0015e2 cpu_hotplug_disable vmlinux EXPORT_SYMBOL_GPL
-0xf6c8dc62 cpu_hotplug_enable vmlinux EXPORT_SYMBOL_GPL
-0x947b40c6 cpu_smt_possible vmlinux EXPORT_SYMBOL_GPL
-0xad4e6259 remove_cpu vmlinux EXPORT_SYMBOL_GPL
-0x7eb808d0 add_cpu vmlinux EXPORT_SYMBOL_GPL
-0xce9ce30f __cpuhp_state_add_instance vmlinux EXPORT_SYMBOL_GPL
-0x28f2cfaf __cpuhp_setup_state_cpuslocked vmlinux EXPORT_SYMBOL
-0xe69ef497 __cpuhp_setup_state vmlinux EXPORT_SYMBOL
-0x60317a84 __cpuhp_state_remove_instance vmlinux EXPORT_SYMBOL_GPL
-0xe34b0c18 __cpuhp_remove_state_cpuslocked vmlinux EXPORT_SYMBOL
-0xc4ad0bc5 __cpuhp_remove_state vmlinux EXPORT_SYMBOL
-0x01c12c32 cpu_bit_bitmap vmlinux EXPORT_SYMBOL_GPL
-0xc278c965 cpu_all_bits vmlinux EXPORT_SYMBOL
-0x9e683f75 __cpu_possible_mask vmlinux EXPORT_SYMBOL
-0x5a5a2271 __cpu_online_mask vmlinux EXPORT_SYMBOL
-0x34676d80 __cpu_enabled_mask vmlinux EXPORT_SYMBOL
-0x7aff77a3 __cpu_present_mask vmlinux EXPORT_SYMBOL
-0xe3d857ea __cpu_active_mask vmlinux EXPORT_SYMBOL
-0x2b6f0962 __cpu_dying_mask vmlinux EXPORT_SYMBOL
-0xc60d0620 __num_online_cpus vmlinux EXPORT_SYMBOL
-0x1cbd92b0 cpu_mitigations_off vmlinux EXPORT_SYMBOL_GPL
-0x4eac5fc1 cpu_mitigations_auto_nosmt vmlinux EXPORT_SYMBOL_GPL
-0x4448bb0c rcuwait_wake_up vmlinux EXPORT_SYMBOL_GPL
-0xe4c05b37 thread_group_exited vmlinux EXPORT_SYMBOL
-0xc359fb65 abort vmlinux EXPORT_SYMBOL
-0xee2d0fc7 _local_bh_enable vmlinux EXPORT_SYMBOL
-0x3c3fce39 __local_bh_enable_ip vmlinux EXPORT_SYMBOL
-0x9e0e39d1 __tasklet_schedule vmlinux EXPORT_SYMBOL
-0x1c30a13d __tasklet_hi_schedule vmlinux EXPORT_SYMBOL
-0x43e7ee03 tasklet_setup vmlinux EXPORT_SYMBOL
-0x4629c8c4 tasklet_init vmlinux EXPORT_SYMBOL
-0x03ffe489 tasklet_unlock_spin_wait vmlinux EXPORT_SYMBOL
-0xbbc19ae2 tasklet_kill vmlinux EXPORT_SYMBOL
-0xb361d8f0 tasklet_unlock vmlinux EXPORT_SYMBOL_GPL
-0x6a279ae4 tasklet_unlock_wait vmlinux EXPORT_SYMBOL_GPL
-0xdbdf6c92 ioport_resource vmlinux EXPORT_SYMBOL
-0x77358855 iomem_resource vmlinux EXPORT_SYMBOL
-0x13110126 request_resource vmlinux EXPORT_SYMBOL
-0xc5e74216 release_resource vmlinux EXPORT_SYMBOL
-0xcc935375 walk_iomem_res_desc vmlinux EXPORT_SYMBOL_GPL
-0xfc03d97a page_is_ram vmlinux EXPORT_SYMBOL_GPL
-0xf6a28554 region_intersects vmlinux EXPORT_SYMBOL_GPL
-0xf3e0e1df allocate_resource vmlinux EXPORT_SYMBOL
-0x5f23e3fa insert_resource vmlinux EXPORT_SYMBOL_GPL
-0x84b45156 insert_resource_expand_to_fit vmlinux EXPORT_SYMBOL_GPL CXL
-0x0b2db2d5 remove_resource vmlinux EXPORT_SYMBOL_GPL
-0xd68c5a1f adjust_resource vmlinux EXPORT_SYMBOL
-0x85bd1608 __request_region vmlinux EXPORT_SYMBOL
-0x1035c7c2 __release_region vmlinux EXPORT_SYMBOL
-0x0355e4fa devm_request_resource vmlinux EXPORT_SYMBOL
-0x84e4b336 devm_release_resource vmlinux EXPORT_SYMBOL
-0xe4ad86fd __devm_request_region vmlinux EXPORT_SYMBOL
-0x680c1277 __devm_release_region vmlinux EXPORT_SYMBOL
-0x3dfb86b9 resource_list_create_entry vmlinux EXPORT_SYMBOL
-0x25e9d4bd resource_list_free vmlinux EXPORT_SYMBOL
-0x2f7fef53 devm_request_free_mem_region vmlinux EXPORT_SYMBOL_GPL
-0x024d13dd request_free_mem_region vmlinux EXPORT_SYMBOL_GPL
-0x7fa19cc4 alloc_free_mem_region vmlinux EXPORT_SYMBOL_GPL CXL
-0xc8827b75 sysctl_vals vmlinux EXPORT_SYMBOL
-0x9cdd6a66 sysctl_long_vals vmlinux EXPORT_SYMBOL_GPL
-0x1afaa2fd proc_dou8vec_minmax vmlinux EXPORT_SYMBOL_GPL
-0x98cb878e proc_dobool vmlinux EXPORT_SYMBOL
-0xf94536c2 proc_dointvec vmlinux EXPORT_SYMBOL
-0x28500e13 proc_douintvec vmlinux EXPORT_SYMBOL
-0xe2bbfa56 proc_dointvec_jiffies vmlinux EXPORT_SYMBOL
-0x2801a22f proc_dointvec_minmax vmlinux EXPORT_SYMBOL
-0xfb74e910 proc_douintvec_minmax vmlinux EXPORT_SYMBOL_GPL
-0x1fc1109e proc_dointvec_userhz_jiffies vmlinux EXPORT_SYMBOL
-0x100bddf8 proc_dointvec_ms_jiffies vmlinux EXPORT_SYMBOL
-0x520e97c4 proc_dostring vmlinux EXPORT_SYMBOL
-0x9092defd proc_doulongvec_minmax vmlinux EXPORT_SYMBOL
-0x5968dc6d proc_doulongvec_ms_jiffies_minmax vmlinux EXPORT_SYMBOL
-0xfe215b97 proc_do_large_bitmap vmlinux EXPORT_SYMBOL
-0x2023476e has_capability vmlinux EXPORT_SYMBOL
-0xa7cab4da has_capability_noaudit vmlinux EXPORT_SYMBOL
-0xbf8e32db ns_capable vmlinux EXPORT_SYMBOL
-0x7a783584 ns_capable_noaudit vmlinux EXPORT_SYMBOL
-0x79518913 ns_capable_setid vmlinux EXPORT_SYMBOL
-0xc6cbbc89 capable vmlinux EXPORT_SYMBOL
-0x7f39ef33 file_ns_capable vmlinux EXPORT_SYMBOL
-0xe72c8b67 capable_wrt_inode_uidgid vmlinux EXPORT_SYMBOL
-0x639cb01f task_user_regset_view vmlinux EXPORT_SYMBOL_GPL
-0x90bcd49a init_user_ns vmlinux EXPORT_SYMBOL_GPL
-0x3d886965 free_uid vmlinux EXPORT_SYMBOL_GPL
-0xfb6af58d recalc_sigpending vmlinux EXPORT_SYMBOL
-0x31d81bf6 flush_signals vmlinux EXPORT_SYMBOL
-0x7fdfe173 dequeue_signal vmlinux EXPORT_SYMBOL_GPL
-0xa68a88ff kill_pid_usb_asyncio vmlinux EXPORT_SYMBOL_GPL
-0xab6b46d9 send_sig_info vmlinux EXPORT_SYMBOL
-0x3ec97633 send_sig vmlinux EXPORT_SYMBOL
-0x6ea9363b force_sig vmlinux EXPORT_SYMBOL
-0x366be677 send_sig_mceerr vmlinux EXPORT_SYMBOL
-0x06f5dcae kill_pgrp vmlinux EXPORT_SYMBOL
-0x07dfe0e1 kill_pid vmlinux EXPORT_SYMBOL
-0x6a5fa363 sigprocmask vmlinux EXPORT_SYMBOL
-0x6df1aaf1 kernel_sigaction vmlinux EXPORT_SYMBOL
-0x8b618d08 overflowuid vmlinux EXPORT_SYMBOL
-0x7171121c overflowgid vmlinux EXPORT_SYMBOL
-0x25820c64 fs_overflowuid vmlinux EXPORT_SYMBOL
-0xdf929370 fs_overflowgid vmlinux EXPORT_SYMBOL
-0xdb8a1b3f usermodehelper_read_trylock vmlinux EXPORT_SYMBOL_GPL
-0x2d1b02d2 usermodehelper_read_lock_wait vmlinux EXPORT_SYMBOL_GPL
-0xae69b1c1 usermodehelper_read_unlock vmlinux EXPORT_SYMBOL_GPL
-0x0f88ec72 call_usermodehelper_setup vmlinux EXPORT_SYMBOL
-0x6582e664 call_usermodehelper_exec vmlinux EXPORT_SYMBOL
-0xa7eedcc4 call_usermodehelper vmlinux EXPORT_SYMBOL
-0x2d3385d3 system_wq vmlinux EXPORT_SYMBOL
-0xcd91b127 system_highpri_wq vmlinux EXPORT_SYMBOL_GPL
-0x131db64a system_long_wq vmlinux EXPORT_SYMBOL_GPL
-0xd4c14632 system_unbound_wq vmlinux EXPORT_SYMBOL_GPL
-0xd4034828 system_freezable_wq vmlinux EXPORT_SYMBOL_GPL
-0x47884890 system_power_efficient_wq vmlinux EXPORT_SYMBOL_GPL
-0xd067d3c5 system_freezable_power_efficient_wq vmlinux EXPORT_SYMBOL_GPL
-0x205c0dad queue_work_on vmlinux EXPORT_SYMBOL
-0xe91bd5f4 queue_work_node vmlinux EXPORT_SYMBOL_GPL
-0x5a88af97 delayed_work_timer_fn vmlinux EXPORT_SYMBOL
-0xb8a6122e queue_delayed_work_on vmlinux EXPORT_SYMBOL
-0x1e219080 mod_delayed_work_on vmlinux EXPORT_SYMBOL_GPL
-0xda617ae2 queue_rcu_work vmlinux EXPORT_SYMBOL
-0x9166fc03 __flush_workqueue vmlinux EXPORT_SYMBOL
-0xa38602cd drain_workqueue vmlinux EXPORT_SYMBOL_GPL
-0xcf5d78f4 flush_work vmlinux EXPORT_SYMBOL_GPL
-0x957afe23 cancel_work_sync vmlinux EXPORT_SYMBOL_GPL
-0x07e8800c flush_delayed_work vmlinux EXPORT_SYMBOL
-0xa0abf57b flush_rcu_work vmlinux EXPORT_SYMBOL
-0x8bf57459 cancel_work vmlinux EXPORT_SYMBOL
-0xb209059f cancel_delayed_work vmlinux EXPORT_SYMBOL
-0x6b1a4c91 cancel_delayed_work_sync vmlinux EXPORT_SYMBOL
-0x0d96f98d execute_in_process_context vmlinux EXPORT_SYMBOL_GPL
-0x9ea09d99 free_workqueue_attrs vmlinux EXPORT_SYMBOL_GPL
-0xd8986e8f alloc_workqueue_attrs vmlinux EXPORT_SYMBOL_GPL
-0xfbebcbf3 apply_workqueue_attrs vmlinux EXPORT_SYMBOL_GPL
-0x49cd25ed alloc_workqueue vmlinux EXPORT_SYMBOL_GPL
-0x8c03d20c destroy_workqueue vmlinux EXPORT_SYMBOL_GPL
-0xf31b3fd1 workqueue_set_max_active vmlinux EXPORT_SYMBOL_GPL
-0x169c6523 current_work vmlinux EXPORT_SYMBOL
-0xa26d9b4f workqueue_congested vmlinux EXPORT_SYMBOL_GPL
-0x70a4c927 work_busy vmlinux EXPORT_SYMBOL_GPL
-0xdd0762df set_worker_desc vmlinux EXPORT_SYMBOL_GPL
-0xc2d55962 work_on_cpu_key vmlinux EXPORT_SYMBOL_GPL
-0x5460f79f work_on_cpu_safe_key vmlinux EXPORT_SYMBOL_GPL
-0xc1198662 __warn_flushing_systemwide_wq vmlinux EXPORT_SYMBOL
-0xb6f29c0c init_pid_ns vmlinux EXPORT_SYMBOL_GPL
-0x71cb67af put_pid vmlinux EXPORT_SYMBOL_GPL
-0x07b41d49 find_pid_ns vmlinux EXPORT_SYMBOL_GPL
-0xd3ac66f5 find_vpid vmlinux EXPORT_SYMBOL_GPL
-0xb3f17fd8 pid_task vmlinux EXPORT_SYMBOL
-0x2e4697ab find_get_task_by_vpid vmlinux EXPORT_SYMBOL_GPL
-0xc07ed7a1 get_task_pid vmlinux EXPORT_SYMBOL_GPL
-0xcd96aaf6 get_pid_task vmlinux EXPORT_SYMBOL_GPL
-0x99e0edc8 find_get_pid vmlinux EXPORT_SYMBOL_GPL
-0xac74fafc pid_nr_ns vmlinux EXPORT_SYMBOL_GPL
-0x4243c31e pid_vnr vmlinux EXPORT_SYMBOL_GPL
-0x2384db70 __task_pid_nr_ns vmlinux EXPORT_SYMBOL
-0xc06fbc13 task_active_pid_ns vmlinux EXPORT_SYMBOL_GPL
-0x32200ccb find_ge_pid vmlinux EXPORT_SYMBOL_GPL
-0x35586038 param_set_byte vmlinux EXPORT_SYMBOL
-0x31834aa3 param_get_byte vmlinux EXPORT_SYMBOL
-0xe1abaa28 param_ops_byte vmlinux EXPORT_SYMBOL
-0x27e779d0 param_set_short vmlinux EXPORT_SYMBOL
-0xc8221d5b param_get_short vmlinux EXPORT_SYMBOL
-0x09945e22 param_ops_short vmlinux EXPORT_SYMBOL
-0xbff3b9e8 param_set_ushort vmlinux EXPORT_SYMBOL
-0x15a2f967 param_get_ushort vmlinux EXPORT_SYMBOL
-0xfccd6a2d param_ops_ushort vmlinux EXPORT_SYMBOL
-0x79b1d7ef param_set_int vmlinux EXPORT_SYMBOL
-0x26af48ec param_get_int vmlinux EXPORT_SYMBOL
-0x6286c7a6 param_ops_int vmlinux EXPORT_SYMBOL
-0x95ec27d5 param_set_uint vmlinux EXPORT_SYMBOL
-0xb657d2f3 param_get_uint vmlinux EXPORT_SYMBOL
-0x211ab393 param_ops_uint vmlinux EXPORT_SYMBOL
-0x389109ed param_set_long vmlinux EXPORT_SYMBOL
-0xf87502c6 param_get_long vmlinux EXPORT_SYMBOL
-0x086e582e param_ops_long vmlinux EXPORT_SYMBOL
-0xfe718daf param_set_ulong vmlinux EXPORT_SYMBOL
-0x75edf7a9 param_get_ulong vmlinux EXPORT_SYMBOL
-0x5e9e0079 param_ops_ulong vmlinux EXPORT_SYMBOL
-0xaf427b58 param_set_ullong vmlinux EXPORT_SYMBOL
-0x34316d7d param_get_ullong vmlinux EXPORT_SYMBOL
-0x8f1e6725 param_ops_ullong vmlinux EXPORT_SYMBOL
-0x558d5f1b param_set_hexint vmlinux EXPORT_SYMBOL
-0x45a0aae5 param_get_hexint vmlinux EXPORT_SYMBOL
-0x7ffce4ef param_ops_hexint vmlinux EXPORT_SYMBOL
-0x7333fd92 param_set_uint_minmax vmlinux EXPORT_SYMBOL_GPL
-0x165c7255 param_set_charp vmlinux EXPORT_SYMBOL
-0x28a775e4 param_get_charp vmlinux EXPORT_SYMBOL
-0x27479d14 param_free_charp vmlinux EXPORT_SYMBOL
-0x8ef1ee8e param_ops_charp vmlinux EXPORT_SYMBOL
-0x2217c358 param_set_bool vmlinux EXPORT_SYMBOL
-0x5b3e0c3f param_get_bool vmlinux EXPORT_SYMBOL
-0x556855b3 param_ops_bool vmlinux EXPORT_SYMBOL
-0xa591ef91 param_set_bool_enable_only vmlinux EXPORT_SYMBOL_GPL
-0x0f096950 param_ops_bool_enable_only vmlinux EXPORT_SYMBOL_GPL
-0x93f87c87 param_set_invbool vmlinux EXPORT_SYMBOL
-0x83eb199d param_get_invbool vmlinux EXPORT_SYMBOL
-0xaed2e3b0 param_ops_invbool vmlinux EXPORT_SYMBOL
-0x39f678de param_set_bint vmlinux EXPORT_SYMBOL
-0xf3daf801 param_ops_bint vmlinux EXPORT_SYMBOL
-0xf3029ddf param_array_ops vmlinux EXPORT_SYMBOL
-0x7a29ee6d param_set_copystring vmlinux EXPORT_SYMBOL
-0x6ca0e7b7 param_get_string vmlinux EXPORT_SYMBOL
-0xf9f0a4d6 param_ops_string vmlinux EXPORT_SYMBOL
-0x27933c14 kernel_param_lock vmlinux EXPORT_SYMBOL
-0x1bd1ae21 kernel_param_unlock vmlinux EXPORT_SYMBOL
-0xb3f7646e kthread_should_stop vmlinux EXPORT_SYMBOL
-0x79defbe1 kthread_should_park vmlinux EXPORT_SYMBOL_GPL
-0xca7d8764 kthread_freezable_should_stop vmlinux EXPORT_SYMBOL_GPL
-0x68e6c182 kthread_func vmlinux EXPORT_SYMBOL_GPL
-0x7aa7b80f kthread_data vmlinux EXPORT_SYMBOL_GPL
-0xf95322f4 kthread_parkme vmlinux EXPORT_SYMBOL_GPL
-0x6008689f kthread_complete_and_exit vmlinux EXPORT_SYMBOL
-0x3fc32952 kthread_create_on_node vmlinux EXPORT_SYMBOL
-0x0a267844 kthread_bind vmlinux EXPORT_SYMBOL
-0xd0e73424 kthread_create_on_cpu vmlinux EXPORT_SYMBOL
-0x72f9f3ab kthread_unpark vmlinux EXPORT_SYMBOL_GPL
-0x273314da kthread_park vmlinux EXPORT_SYMBOL_GPL
-0x95120fc8 kthread_stop vmlinux EXPORT_SYMBOL
-0x15cc8621 __kthread_init_worker vmlinux EXPORT_SYMBOL_GPL
-0x955b0e2e kthread_worker_fn vmlinux EXPORT_SYMBOL_GPL
-0x0cc4ec2e kthread_create_worker vmlinux EXPORT_SYMBOL
-0xb0639252 kthread_create_worker_on_cpu vmlinux EXPORT_SYMBOL
-0xf9282f6a kthread_queue_work vmlinux EXPORT_SYMBOL_GPL
-0x088ea051 kthread_delayed_work_timer_fn vmlinux EXPORT_SYMBOL
-0x1477cffa kthread_queue_delayed_work vmlinux EXPORT_SYMBOL_GPL
-0xd0fb8742 kthread_flush_work vmlinux EXPORT_SYMBOL_GPL
-0xbd884727 kthread_mod_delayed_work vmlinux EXPORT_SYMBOL_GPL
-0x199bc6fd kthread_cancel_work_sync vmlinux EXPORT_SYMBOL_GPL
-0x1608cd81 kthread_cancel_delayed_work_sync vmlinux EXPORT_SYMBOL_GPL
-0xe1172641 kthread_flush_worker vmlinux EXPORT_SYMBOL_GPL
-0xd63252bc kthread_destroy_worker vmlinux EXPORT_SYMBOL
-0x46b0cf23 kthread_use_mm vmlinux EXPORT_SYMBOL_GPL
-0x56acd38d kthread_unuse_mm vmlinux EXPORT_SYMBOL_GPL
-0x69013f09 kthread_associate_blkcg vmlinux EXPORT_SYMBOL
-0x2b9997fb atomic_notifier_chain_register vmlinux EXPORT_SYMBOL_GPL
-0x9d9910a1 atomic_notifier_chain_register_unique_prio vmlinux EXPORT_SYMBOL_GPL
-0x7181db30 atomic_notifier_chain_unregister vmlinux EXPORT_SYMBOL_GPL
-0xd3752c27 atomic_notifier_call_chain vmlinux EXPORT_SYMBOL_GPL
-0x0907d14d blocking_notifier_chain_register vmlinux EXPORT_SYMBOL_GPL
-0x061336ae blocking_notifier_chain_register_unique_prio vmlinux EXPORT_SYMBOL_GPL
-0x4ece3615 blocking_notifier_chain_unregister vmlinux EXPORT_SYMBOL_GPL
-0xe25d23f3 blocking_notifier_call_chain_robust vmlinux EXPORT_SYMBOL_GPL
-0x823eae06 blocking_notifier_call_chain vmlinux EXPORT_SYMBOL_GPL
-0xdc9fa232 raw_notifier_chain_register vmlinux EXPORT_SYMBOL_GPL
-0xd06524ba raw_notifier_chain_unregister vmlinux EXPORT_SYMBOL_GPL
-0x248bc867 raw_notifier_call_chain_robust vmlinux EXPORT_SYMBOL_GPL
-0xa851973a raw_notifier_call_chain vmlinux EXPORT_SYMBOL_GPL
-0x467e1220 srcu_notifier_chain_register vmlinux EXPORT_SYMBOL_GPL
-0x5883b4f3 srcu_notifier_chain_unregister vmlinux EXPORT_SYMBOL_GPL
-0x0c9eabae srcu_notifier_call_chain vmlinux EXPORT_SYMBOL_GPL
-0xd87ca116 srcu_init_notifier_head vmlinux EXPORT_SYMBOL_GPL
-0xb6261484 register_die_notifier vmlinux EXPORT_SYMBOL_GPL
-0x121d958a unregister_die_notifier vmlinux EXPORT_SYMBOL_GPL
-0x8b5d638a kernel_kobj vmlinux EXPORT_SYMBOL_GPL
-0x28766b29 __put_cred vmlinux EXPORT_SYMBOL
-0x1588de30 get_task_cred vmlinux EXPORT_SYMBOL
-0xc048acfd prepare_creds vmlinux EXPORT_SYMBOL
-0x7134fc29 commit_creds vmlinux EXPORT_SYMBOL
-0x91efa43f abort_creds vmlinux EXPORT_SYMBOL
-0x2e73cffb override_creds vmlinux EXPORT_SYMBOL
-0xe986a0da revert_creds vmlinux EXPORT_SYMBOL
-0x4510886d cred_fscmp vmlinux EXPORT_SYMBOL
-0xd0c4f898 prepare_kernel_cred vmlinux EXPORT_SYMBOL
-0x031a80ae set_security_override vmlinux EXPORT_SYMBOL
-0xb87e408b set_security_override_from_ctx vmlinux EXPORT_SYMBOL
-0xe1fb251f set_create_files_as vmlinux EXPORT_SYMBOL
-0xef199f9e cad_pid vmlinux EXPORT_SYMBOL
-0x429c3f9c reboot_mode vmlinux EXPORT_SYMBOL_GPL
-0xd0c05159 emergency_restart vmlinux EXPORT_SYMBOL_GPL
-0x3517383e register_reboot_notifier vmlinux EXPORT_SYMBOL
-0xac1a55be unregister_reboot_notifier vmlinux EXPORT_SYMBOL
-0xa57f6457 devm_register_reboot_notifier vmlinux EXPORT_SYMBOL
-0xd9d8fd16 register_restart_handler vmlinux EXPORT_SYMBOL
-0x40d59096 unregister_restart_handler vmlinux EXPORT_SYMBOL
-0x1e7bbcb3 kernel_restart vmlinux EXPORT_SYMBOL_GPL
-0x054e550b kernel_halt vmlinux EXPORT_SYMBOL_GPL
-0xfd77e268 register_sys_off_handler vmlinux EXPORT_SYMBOL_GPL
-0xde31bf7e unregister_sys_off_handler vmlinux EXPORT_SYMBOL_GPL
-0x74c5c47f devm_register_sys_off_handler vmlinux EXPORT_SYMBOL_GPL
-0x769edebf devm_register_power_off_handler vmlinux EXPORT_SYMBOL_GPL
-0xbc4742ed devm_register_restart_handler vmlinux EXPORT_SYMBOL_GPL
-0x0756a31c register_platform_power_off vmlinux EXPORT_SYMBOL_GPL
-0xd2d7e59b unregister_platform_power_off vmlinux EXPORT_SYMBOL_GPL
-0xe1c87a2f kernel_can_power_off vmlinux EXPORT_SYMBOL_GPL
-0xf184d189 kernel_power_off vmlinux EXPORT_SYMBOL_GPL
-0x56256e8a orderly_poweroff vmlinux EXPORT_SYMBOL_GPL
-0x794b7271 orderly_reboot vmlinux EXPORT_SYMBOL_GPL
-0xfcf9ef73 hw_protection_shutdown vmlinux EXPORT_SYMBOL_GPL
-0xd21b61bd async_schedule_node_domain vmlinux EXPORT_SYMBOL_GPL
-0xf5f370e0 async_schedule_node vmlinux EXPORT_SYMBOL_GPL
-0xa5efbf4c async_synchronize_full vmlinux EXPORT_SYMBOL_GPL
-0x6ca4bf88 async_synchronize_full_domain vmlinux EXPORT_SYMBOL_GPL
-0x286cc647 async_synchronize_cookie_domain vmlinux EXPORT_SYMBOL_GPL
-0x7a81541b async_synchronize_cookie vmlinux EXPORT_SYMBOL_GPL
-0x29eba37f current_is_async vmlinux EXPORT_SYMBOL_GPL
-0xfab9445c smpboot_register_percpu_thread vmlinux EXPORT_SYMBOL_GPL
-0x3b865954 smpboot_unregister_percpu_thread vmlinux EXPORT_SYMBOL_GPL
-0x12c4efc7 regset_get vmlinux EXPORT_SYMBOL
-0xa46a731b regset_get_alloc vmlinux EXPORT_SYMBOL
-0x48f8d9fa groups_alloc vmlinux EXPORT_SYMBOL
-0x0351acd2 groups_free vmlinux EXPORT_SYMBOL
-0xc4f45d6e groups_sort vmlinux EXPORT_SYMBOL
-0x4e151a2b set_groups vmlinux EXPORT_SYMBOL
-0xb5bebf7a set_current_groups vmlinux EXPORT_SYMBOL
-0x8b8059bd in_group_p vmlinux EXPORT_SYMBOL
-0x39461d6a in_egroup_p vmlinux EXPORT_SYMBOL
-0x5b30e25c vhost_task_wake vmlinux EXPORT_SYMBOL_GPL
-0x4471a51d vhost_task_stop vmlinux EXPORT_SYMBOL_GPL
-0xdbe3dbe0 vhost_task_create vmlinux EXPORT_SYMBOL_GPL
-0x8f00f6d1 vhost_task_start vmlinux EXPORT_SYMBOL_GPL
-0x22f5ca29 __tracepoint_ipi_send_cpu vmlinux EXPORT_SYMBOL_GPL
-0xa81485e6 __traceiter_ipi_send_cpu vmlinux EXPORT_SYMBOL_GPL
-0x9bb5dba3 __SCK__tp_func_ipi_send_cpu vmlinux EXPORT_SYMBOL_GPL
-0x793ac193 __SCT__tp_func_ipi_send_cpu vmlinux EXPORT_SYMBOL_GPL
-0x14c43011 __tracepoint_ipi_send_cpumask vmlinux EXPORT_SYMBOL_GPL
-0xcf35629e __traceiter_ipi_send_cpumask vmlinux EXPORT_SYMBOL_GPL
-0xc900eb24 __SCK__tp_func_ipi_send_cpumask vmlinux EXPORT_SYMBOL_GPL
-0xa098115b __SCT__tp_func_ipi_send_cpumask vmlinux EXPORT_SYMBOL_GPL
-0xa1d9133c __tracepoint_pelt_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0x77ce2280 __traceiter_pelt_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0x871c904a __SCK__tp_func_pelt_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0xc23601c1 __SCT__tp_func_pelt_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0x04bb0a0c __tracepoint_pelt_rt_tp vmlinux EXPORT_SYMBOL_GPL
-0xddba2e46 __traceiter_pelt_rt_tp vmlinux EXPORT_SYMBOL_GPL
-0x1808d03c __SCK__tp_func_pelt_rt_tp vmlinux EXPORT_SYMBOL_GPL
-0xe271f20c __SCT__tp_func_pelt_rt_tp vmlinux EXPORT_SYMBOL_GPL
-0x81a437c9 __tracepoint_pelt_dl_tp vmlinux EXPORT_SYMBOL_GPL
-0x8033789c __traceiter_pelt_dl_tp vmlinux EXPORT_SYMBOL_GPL
-0x9d17edf9 __SCK__tp_func_pelt_dl_tp vmlinux EXPORT_SYMBOL_GPL
-0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp vmlinux EXPORT_SYMBOL_GPL
-0xe72e5f9f __tracepoint_pelt_irq_tp vmlinux EXPORT_SYMBOL_GPL
-0x9f325f60 __traceiter_pelt_irq_tp vmlinux EXPORT_SYMBOL_GPL
-0xc1ebdce9 __SCK__tp_func_pelt_irq_tp vmlinux EXPORT_SYMBOL_GPL
-0x8b95e6a2 __SCT__tp_func_pelt_irq_tp vmlinux EXPORT_SYMBOL_GPL
-0x9267679b __tracepoint_pelt_se_tp vmlinux EXPORT_SYMBOL_GPL
-0x3a52131f __traceiter_pelt_se_tp vmlinux EXPORT_SYMBOL_GPL
-0x8ed4bdab __SCK__tp_func_pelt_se_tp vmlinux EXPORT_SYMBOL_GPL
-0xbf165dec __SCT__tp_func_pelt_se_tp vmlinux EXPORT_SYMBOL_GPL
-0x2357feae __tracepoint_pelt_thermal_tp vmlinux EXPORT_SYMBOL_GPL
-0x923c8846 __traceiter_pelt_thermal_tp vmlinux EXPORT_SYMBOL_GPL
-0xeaf002c1 __SCK__tp_func_pelt_thermal_tp vmlinux EXPORT_SYMBOL_GPL
-0x0ddadea2 __SCT__tp_func_pelt_thermal_tp vmlinux EXPORT_SYMBOL_GPL
-0x9a7b80e3 __tracepoint_sched_cpu_capacity_tp vmlinux EXPORT_SYMBOL_GPL
-0xcf9c5a1b __traceiter_sched_cpu_capacity_tp vmlinux EXPORT_SYMBOL_GPL
-0xa0df0c43 __SCK__tp_func_sched_cpu_capacity_tp vmlinux EXPORT_SYMBOL_GPL
-0x762640ab __SCT__tp_func_sched_cpu_capacity_tp vmlinux EXPORT_SYMBOL_GPL
-0x0c3fe548 __tracepoint_sched_overutilized_tp vmlinux EXPORT_SYMBOL_GPL
-0xbba19d62 __traceiter_sched_overutilized_tp vmlinux EXPORT_SYMBOL_GPL
-0x369b69e8 __SCK__tp_func_sched_overutilized_tp vmlinux EXPORT_SYMBOL_GPL
-0xa462d5a6 __SCT__tp_func_sched_overutilized_tp vmlinux EXPORT_SYMBOL_GPL
-0x8d63882d __tracepoint_sched_util_est_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0x642d7960 __traceiter_sched_util_est_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0xb7c7048d __SCK__tp_func_sched_util_est_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp vmlinux EXPORT_SYMBOL_GPL
-0xf162fd25 __tracepoint_sched_util_est_se_tp vmlinux EXPORT_SYMBOL_GPL
-0xc4c17308 __traceiter_sched_util_est_se_tp vmlinux EXPORT_SYMBOL_GPL
-0xe0bf9344 __SCK__tp_func_sched_util_est_se_tp vmlinux EXPORT_SYMBOL_GPL
-0xd20c66ab __SCT__tp_func_sched_util_est_se_tp vmlinux EXPORT_SYMBOL_GPL
-0x6163038b __tracepoint_sched_update_nr_running_tp vmlinux EXPORT_SYMBOL_GPL
-0x8356f54c __traceiter_sched_update_nr_running_tp vmlinux EXPORT_SYMBOL_GPL
-0x4d13be5b __SCK__tp_func_sched_update_nr_running_tp vmlinux EXPORT_SYMBOL_GPL
-0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp vmlinux EXPORT_SYMBOL_GPL
-0x49608959 migrate_disable vmlinux EXPORT_SYMBOL_GPL
-0x4d7272e4 migrate_enable vmlinux EXPORT_SYMBOL_GPL
-0x08a220ae set_cpus_allowed_ptr vmlinux EXPORT_SYMBOL_GPL
-0x42326d25 kick_process vmlinux EXPORT_SYMBOL_GPL
-0x7062b700 wake_up_process vmlinux EXPORT_SYMBOL
-0x0402cbbf preempt_notifier_inc vmlinux EXPORT_SYMBOL_GPL
-0x32bc0fcf preempt_notifier_dec vmlinux EXPORT_SYMBOL_GPL
-0xaf8f4cfa preempt_notifier_register vmlinux EXPORT_SYMBOL_GPL
-0xcbb9f201 preempt_notifier_unregister vmlinux EXPORT_SYMBOL_GPL
-0x4248ae3c single_task_running vmlinux EXPORT_SYMBOL
-0x38869d88 kstat vmlinux EXPORT_SYMBOL
-0xb58aeaab kernel_cpustat vmlinux EXPORT_SYMBOL
-0x01000e51 schedule vmlinux EXPORT_SYMBOL
-0xaad8c7d6 default_wake_function vmlinux EXPORT_SYMBOL
-0x2f37ce33 set_user_nice vmlinux EXPORT_SYMBOL
-0x93195011 sched_setattr_nocheck vmlinux EXPORT_SYMBOL_GPL
-0x893b83b0 sched_set_fifo vmlinux EXPORT_SYMBOL_GPL
-0x3956f87f sched_set_fifo_low vmlinux EXPORT_SYMBOL_GPL
-0xc02095f8 sched_set_normal vmlinux EXPORT_SYMBOL_GPL
-0x0800473f __cond_resched vmlinux EXPORT_SYMBOL
-0xa02aa74a __cond_resched_lock vmlinux EXPORT_SYMBOL
-0x47d8d301 __cond_resched_rwlock_read vmlinux EXPORT_SYMBOL
-0x0c575719 __cond_resched_rwlock_write vmlinux EXPORT_SYMBOL
-0x760a0f4f yield vmlinux EXPORT_SYMBOL
-0xc8b9c072 yield_to vmlinux EXPORT_SYMBOL_GPL
-0xfbc4f89e io_schedule_timeout vmlinux EXPORT_SYMBOL
-0x93a6e0b2 io_schedule vmlinux EXPORT_SYMBOL
-0x19f9bf08 sched_show_task vmlinux EXPORT_SYMBOL_GPL
-0x03ce7234 sched_smt_present vmlinux EXPORT_SYMBOL_GPL
-0x02394899 play_idle_precise vmlinux EXPORT_SYMBOL_GPL
-0x7185a94b task_cputime_adjusted vmlinux EXPORT_SYMBOL_GPL
-0xc9139893 vtime_guest_enter vmlinux EXPORT_SYMBOL_GPL
-0xd1e0e7f1 vtime_guest_exit vmlinux EXPORT_SYMBOL_GPL
-0x814e2386 kcpustat_field vmlinux EXPORT_SYMBOL_GPL
-0x1913b57a kcpustat_cpu_fetch vmlinux EXPORT_SYMBOL_GPL
-0xe94986d6 sched_clock vmlinux EXPORT_SYMBOL_GPL
-0x7ac1254b local_clock vmlinux EXPORT_SYMBOL_GPL
-0xceb66bec sched_clock_cpu vmlinux EXPORT_SYMBOL_GPL
-0xc87e487a sched_clock_idle_sleep_event vmlinux EXPORT_SYMBOL_GPL
-0x166db1b5 sched_clock_idle_wakeup_event vmlinux EXPORT_SYMBOL_GPL
-0x1403ad09 cpufreq_add_update_util_hook vmlinux EXPORT_SYMBOL_GPL
-0x3192d768 cpufreq_remove_update_util_hook vmlinux EXPORT_SYMBOL_GPL
-0xf1e98c74 avenrun vmlinux EXPORT_SYMBOL
-0xa6257a2f complete vmlinux EXPORT_SYMBOL
-0x93d6dd8c complete_all vmlinux EXPORT_SYMBOL
-0x25974000 wait_for_completion vmlinux EXPORT_SYMBOL
-0x4a3ad70e wait_for_completion_timeout vmlinux EXPORT_SYMBOL
-0x392b1fea wait_for_completion_io vmlinux EXPORT_SYMBOL
-0x5c26a53b wait_for_completion_io_timeout vmlinux EXPORT_SYMBOL
-0x2e3bcce2 wait_for_completion_interruptible vmlinux EXPORT_SYMBOL
-0xf02aa937 wait_for_completion_interruptible_timeout vmlinux EXPORT_SYMBOL
-0x20463df4 wait_for_completion_killable vmlinux EXPORT_SYMBOL
-0xb0617db4 wait_for_completion_state vmlinux EXPORT_SYMBOL
-0x726bc3c7 wait_for_completion_killable_timeout vmlinux EXPORT_SYMBOL
-0x21ef374c try_wait_for_completion vmlinux EXPORT_SYMBOL
-0xddf6ad7a completion_done vmlinux EXPORT_SYMBOL
-0x608741b5 __init_swait_queue_head vmlinux EXPORT_SYMBOL
-0xd52caa1a swake_up_locked vmlinux EXPORT_SYMBOL
-0xc80ab559 swake_up_one vmlinux EXPORT_SYMBOL
-0x1b597b7a swake_up_all vmlinux EXPORT_SYMBOL
-0x8204b1d4 prepare_to_swait_exclusive vmlinux EXPORT_SYMBOL
-0xb48e8c99 prepare_to_swait_event vmlinux EXPORT_SYMBOL
-0xf0a94079 finish_swait vmlinux EXPORT_SYMBOL
-0xad9901ae bit_waitqueue vmlinux EXPORT_SYMBOL
-0xca431c05 wake_bit_function vmlinux EXPORT_SYMBOL
-0xbe6a866f __wait_on_bit vmlinux EXPORT_SYMBOL
-0x1984d421 out_of_line_wait_on_bit vmlinux EXPORT_SYMBOL
-0x4071b517 out_of_line_wait_on_bit_timeout vmlinux EXPORT_SYMBOL_GPL
-0x9d92f3ad __wait_on_bit_lock vmlinux EXPORT_SYMBOL
-0xb3687850 out_of_line_wait_on_bit_lock vmlinux EXPORT_SYMBOL
-0xfc336d2e __wake_up_bit vmlinux EXPORT_SYMBOL
-0xa0fbac79 wake_up_bit vmlinux EXPORT_SYMBOL
-0x5e332b52 __var_waitqueue vmlinux EXPORT_SYMBOL
-0x5d49aabc init_wait_var_entry vmlinux EXPORT_SYMBOL
-0xf8f61ebc wake_up_var vmlinux EXPORT_SYMBOL
-0x16e297c3 bit_wait vmlinux EXPORT_SYMBOL
-0x58e3306d bit_wait_io vmlinux EXPORT_SYMBOL
-0x44bae227 bit_wait_timeout vmlinux EXPORT_SYMBOL_GPL
-0x55eecff4 bit_wait_io_timeout vmlinux EXPORT_SYMBOL_GPL
-0xd9a5ea54 __init_waitqueue_head vmlinux EXPORT_SYMBOL
-0x4afb2238 add_wait_queue vmlinux EXPORT_SYMBOL
-0xde293f9e add_wait_queue_exclusive vmlinux EXPORT_SYMBOL
-0x005f18a6 add_wait_queue_priority vmlinux EXPORT_SYMBOL_GPL
-0x37110088 remove_wait_queue vmlinux EXPORT_SYMBOL
-0xe2964344 __wake_up vmlinux EXPORT_SYMBOL
-0x2773c485 __wake_up_locked vmlinux EXPORT_SYMBOL_GPL
-0x09337cd0 __wake_up_locked_key vmlinux EXPORT_SYMBOL_GPL
-0xba220db7 __wake_up_sync_key vmlinux EXPORT_SYMBOL_GPL
-0xc7856e74 __wake_up_locked_sync_key vmlinux EXPORT_SYMBOL_GPL
-0xb8273d0b __wake_up_sync vmlinux EXPORT_SYMBOL_GPL
-0xd5fd90f1 prepare_to_wait vmlinux EXPORT_SYMBOL
-0xc622556f prepare_to_wait_exclusive vmlinux EXPORT_SYMBOL
-0xfe487975 init_wait_entry vmlinux EXPORT_SYMBOL
-0x8c26d495 prepare_to_wait_event vmlinux EXPORT_SYMBOL
-0x5b2f27fb do_wait_intr vmlinux EXPORT_SYMBOL
-0x5102a30b do_wait_intr_irq vmlinux EXPORT_SYMBOL
-0x92540fbf finish_wait vmlinux EXPORT_SYMBOL
-0xad73041f autoremove_wake_function vmlinux EXPORT_SYMBOL
-0xb308c97d wait_woken vmlinux EXPORT_SYMBOL
-0xd0654aba woken_wake_function vmlinux EXPORT_SYMBOL
-0x16664fd3 sched_numa_find_nth_cpu vmlinux EXPORT_SYMBOL_GPL
-0x1e3817a3 sched_numa_hop_mask vmlinux EXPORT_SYMBOL_GPL
-0x929e95cf psi_memstall_enter vmlinux EXPORT_SYMBOL_GPL
-0x15bd7435 psi_memstall_leave vmlinux EXPORT_SYMBOL_GPL
-0x74e73871 housekeeping_overridden vmlinux EXPORT_SYMBOL_GPL
-0xbf2e2e71 housekeeping_enabled vmlinux EXPORT_SYMBOL_GPL
-0x757c1bbb housekeeping_any_cpu vmlinux EXPORT_SYMBOL_GPL
-0xae9852a0 housekeeping_cpumask vmlinux EXPORT_SYMBOL_GPL
-0x3c8bb71b housekeeping_affine vmlinux EXPORT_SYMBOL_GPL
-0x4bdb8dcc housekeeping_test_cpu vmlinux EXPORT_SYMBOL_GPL
-0x813c2761 sched_autogroup_create_attach vmlinux EXPORT_SYMBOL
-0xcecf4931 sched_autogroup_detach vmlinux EXPORT_SYMBOL
-0xcefb0c9f __mutex_init vmlinux EXPORT_SYMBOL
-0x364c23ad mutex_is_locked vmlinux EXPORT_SYMBOL
-0x4dfa8d4b mutex_lock vmlinux EXPORT_SYMBOL
-0x3213f038 mutex_unlock vmlinux EXPORT_SYMBOL
-0x9d2f7437 ww_mutex_unlock vmlinux EXPORT_SYMBOL
-0x870cc10d ww_mutex_trylock vmlinux EXPORT_SYMBOL
-0x89940875 mutex_lock_interruptible vmlinux EXPORT_SYMBOL
-0x6d16c104 mutex_lock_killable vmlinux EXPORT_SYMBOL
-0x64a31445 mutex_lock_io vmlinux EXPORT_SYMBOL_GPL
-0xbb9ed3bf mutex_trylock vmlinux EXPORT_SYMBOL
-0x1076ef53 ww_mutex_lock vmlinux EXPORT_SYMBOL
-0xe00d47df ww_mutex_lock_interruptible vmlinux EXPORT_SYMBOL
-0xcfc9deaf atomic_dec_and_mutex_lock vmlinux EXPORT_SYMBOL
-0x6626afca down vmlinux EXPORT_SYMBOL
-0x6bd0e573 down_interruptible vmlinux EXPORT_SYMBOL
-0x36b6ebbf down_killable vmlinux EXPORT_SYMBOL
-0xe9ffc063 down_trylock vmlinux EXPORT_SYMBOL
-0x92e683f5 down_timeout vmlinux EXPORT_SYMBOL
-0xcf2a6966 up vmlinux EXPORT_SYMBOL
-0x7b4da6ff __init_rwsem vmlinux EXPORT_SYMBOL
-0x668b19a1 down_read vmlinux EXPORT_SYMBOL
-0xb61d6fc2 down_read_interruptible vmlinux EXPORT_SYMBOL
-0x62f7e207 down_read_killable vmlinux EXPORT_SYMBOL
-0xc3ff38c2 down_read_trylock vmlinux EXPORT_SYMBOL
-0x57bc19d2 down_write vmlinux EXPORT_SYMBOL
-0x364850b1 down_write_killable vmlinux EXPORT_SYMBOL
-0xe40c37ea down_write_trylock vmlinux EXPORT_SYMBOL
-0x53b954a2 up_read vmlinux EXPORT_SYMBOL
-0xce807a25 up_write vmlinux EXPORT_SYMBOL
-0x18888d00 downgrade_write vmlinux EXPORT_SYMBOL
-0xfe9c8a3f __percpu_init_rwsem vmlinux EXPORT_SYMBOL_GPL
-0x6b48debd percpu_free_rwsem vmlinux EXPORT_SYMBOL_GPL
-0x8a8ca2e2 __percpu_down_read vmlinux EXPORT_SYMBOL_GPL
-0xbbfc9a6d percpu_is_read_locked vmlinux EXPORT_SYMBOL_GPL
-0x4ace7562 percpu_down_write vmlinux EXPORT_SYMBOL_GPL
-0x5f2f0ccf percpu_up_write vmlinux EXPORT_SYMBOL_GPL
-0xfef216eb _raw_spin_trylock vmlinux EXPORT_SYMBOL
-0x8518a4a6 _raw_spin_trylock_bh vmlinux EXPORT_SYMBOL
-0xba8fbd64 _raw_spin_lock vmlinux EXPORT_SYMBOL
-0x34db050b _raw_spin_lock_irqsave vmlinux EXPORT_SYMBOL
-0x8427cc7b _raw_spin_lock_irq vmlinux EXPORT_SYMBOL
-0x0c3690fc _raw_spin_lock_bh vmlinux EXPORT_SYMBOL
-0xd35cce70 _raw_spin_unlock_irqrestore vmlinux EXPORT_SYMBOL
-0xe46021ca _raw_spin_unlock_bh vmlinux EXPORT_SYMBOL
-0x889b1370 _raw_read_trylock vmlinux EXPORT_SYMBOL
-0xfe8c61f0 _raw_read_lock vmlinux EXPORT_SYMBOL
-0xb1342cdb _raw_read_lock_irqsave vmlinux EXPORT_SYMBOL
-0x48112d76 _raw_read_lock_irq vmlinux EXPORT_SYMBOL
-0x8dee722d _raw_read_lock_bh vmlinux EXPORT_SYMBOL
-0xdf2ebb87 _raw_read_unlock_irqrestore vmlinux EXPORT_SYMBOL
-0xaeb082ad _raw_read_unlock_bh vmlinux EXPORT_SYMBOL
-0x258a2c02 _raw_write_trylock vmlinux EXPORT_SYMBOL
-0xe68efe41 _raw_write_lock vmlinux EXPORT_SYMBOL
-0x1b908d85 _raw_write_lock_nested vmlinux EXPORT_SYMBOL
-0x5021bd81 _raw_write_lock_irqsave vmlinux EXPORT_SYMBOL
-0x3aca0190 _raw_write_lock_irq vmlinux EXPORT_SYMBOL
-0x51a511eb _raw_write_lock_bh vmlinux EXPORT_SYMBOL
-0xeb078aee _raw_write_unlock_irqrestore vmlinux EXPORT_SYMBOL
-0xe7ab1ecc _raw_write_unlock_bh vmlinux EXPORT_SYMBOL
-0x09d44df9 in_lock_functions vmlinux EXPORT_SYMBOL
-0xe033cb29 native_queued_spin_lock_slowpath vmlinux EXPORT_SYMBOL
-0xe2204f19 __cna_queued_spin_lock_slowpath vmlinux EXPORT_SYMBOL
-0x495e378d __pv_queued_spin_lock_slowpath vmlinux EXPORT_SYMBOL
-0xecc62ffe rt_mutex_base_init vmlinux EXPORT_SYMBOL
-0x3f9f361c rt_mutex_lock vmlinux EXPORT_SYMBOL_GPL
-0x7cef2676 rt_mutex_lock_interruptible vmlinux EXPORT_SYMBOL_GPL
-0x0d5faaa6 rt_mutex_lock_killable vmlinux EXPORT_SYMBOL_GPL
-0x1e3256e1 rt_mutex_trylock vmlinux EXPORT_SYMBOL_GPL
-0xea228be6 rt_mutex_unlock vmlinux EXPORT_SYMBOL_GPL
-0x433164b5 __rt_mutex_init vmlinux EXPORT_SYMBOL_GPL
-0x617c452b queued_read_lock_slowpath vmlinux EXPORT_SYMBOL
-0xc528a49a queued_write_lock_slowpath vmlinux EXPORT_SYMBOL
-0xdf0ca3f4 cpu_latency_qos_request_active vmlinux EXPORT_SYMBOL_GPL
-0x28afbb08 cpu_latency_qos_add_request vmlinux EXPORT_SYMBOL_GPL
-0x37169f79 cpu_latency_qos_update_request vmlinux EXPORT_SYMBOL_GPL
-0x22ec5205 cpu_latency_qos_remove_request vmlinux EXPORT_SYMBOL_GPL
-0xda7912d4 freq_qos_add_request vmlinux EXPORT_SYMBOL_GPL
-0x1e9bc719 freq_qos_update_request vmlinux EXPORT_SYMBOL_GPL
-0xe5c02b64 freq_qos_remove_request vmlinux EXPORT_SYMBOL_GPL
-0x38c3ff30 freq_qos_add_notifier vmlinux EXPORT_SYMBOL_GPL
-0x4e4c37e2 freq_qos_remove_notifier vmlinux EXPORT_SYMBOL_GPL
-0x051085e3 lock_system_sleep vmlinux EXPORT_SYMBOL_GPL
-0x893c5ddb unlock_system_sleep vmlinux EXPORT_SYMBOL_GPL
-0x55c76a23 ksys_sync_helper vmlinux EXPORT_SYMBOL_GPL
-0x9cc4f70a register_pm_notifier vmlinux EXPORT_SYMBOL_GPL
-0x7681946c unregister_pm_notifier vmlinux EXPORT_SYMBOL_GPL
-0x6d211d05 pm_report_hw_sleep_time vmlinux EXPORT_SYMBOL_GPL
-0xabc6e9e4 pm_report_max_hw_sleep vmlinux EXPORT_SYMBOL_GPL
-0xa208b5a7 pm_debug_messages_should_print vmlinux EXPORT_SYMBOL_GPL
-0x7d59dd46 pm_wq vmlinux EXPORT_SYMBOL_GPL
-0x6efb291d pm_vt_switch_required vmlinux EXPORT_SYMBOL
-0xf28632f0 pm_vt_switch_unregister vmlinux EXPORT_SYMBOL
-0x377bbcbc pm_suspend_target_state vmlinux EXPORT_SYMBOL_GPL
-0x42635d55 pm_suspend_global_flags vmlinux EXPORT_SYMBOL_GPL
-0x9b555c8c pm_suspend_default_s2idle vmlinux EXPORT_SYMBOL_GPL
-0x63197685 s2idle_wake vmlinux EXPORT_SYMBOL_GPL
-0x9ac11b74 suspend_set_ops vmlinux EXPORT_SYMBOL_GPL
-0xb2e764e8 suspend_valid_only_mem vmlinux EXPORT_SYMBOL_GPL
-0x530b1e98 pm_suspend vmlinux EXPORT_SYMBOL
-0xca467318 hibernation_set_ops vmlinux EXPORT_SYMBOL_GPL
-0x13f42152 system_entering_hibernation vmlinux EXPORT_SYMBOL
-0x5c309e65 hibernate_quiet_exec vmlinux EXPORT_SYMBOL_GPL
-0x2592fc6c console_printk vmlinux EXPORT_SYMBOL_GPL
-0x98e508ef ignore_console_lock_warning vmlinux EXPORT_SYMBOL
-0x5ecb4607 __tracepoint_console vmlinux EXPORT_SYMBOL_GPL
-0xb0e7ab1f __traceiter_console vmlinux EXPORT_SYMBOL_GPL
-0xecf732ab __SCK__tp_func_console vmlinux EXPORT_SYMBOL_GPL
-0xeb52f746 __SCT__tp_func_console vmlinux EXPORT_SYMBOL_GPL
-0xb1c3a01a oops_in_progress vmlinux EXPORT_SYMBOL
-0xb5093dd3 console_list vmlinux EXPORT_SYMBOL_GPL
-0x6f14e9db console_list_lock vmlinux EXPORT_SYMBOL
-0x14d7477f console_list_unlock vmlinux EXPORT_SYMBOL
-0x3ab28948 console_srcu_read_lock vmlinux EXPORT_SYMBOL
-0x3cb23db3 console_srcu_read_unlock vmlinux EXPORT_SYMBOL
-0x2459bbcc console_set_on_cmdline vmlinux EXPORT_SYMBOL
-0xee8c02e9 vprintk_emit vmlinux EXPORT_SYMBOL
-0xf2fb61bd vprintk_default vmlinux EXPORT_SYMBOL_GPL
-0x122c3a7e _printk vmlinux EXPORT_SYMBOL
-0x0366307a console_suspend_enabled vmlinux EXPORT_SYMBOL
-0x04c8aebf console_verbose vmlinux EXPORT_SYMBOL_GPL
-0xfbaaf01e console_lock vmlinux EXPORT_SYMBOL
-0x40d04664 console_trylock vmlinux EXPORT_SYMBOL
-0x944a564d is_console_locked vmlinux EXPORT_SYMBOL
-0xc631580a console_unlock vmlinux EXPORT_SYMBOL
-0xbef43296 console_conditional_schedule vmlinux EXPORT_SYMBOL
-0xee7c525e console_stop vmlinux EXPORT_SYMBOL
-0x16e2462c console_start vmlinux EXPORT_SYMBOL
-0xbc5b78b8 register_console vmlinux EXPORT_SYMBOL
-0xebf8c4ec unregister_console vmlinux EXPORT_SYMBOL
-0x971a1c09 console_force_preferred_locked vmlinux EXPORT_SYMBOL
-0x6128b5fc __printk_ratelimit vmlinux EXPORT_SYMBOL
-0x07cc4a5d printk_timed_ratelimit vmlinux EXPORT_SYMBOL
-0x6c5ad0cd kmsg_dump_register vmlinux EXPORT_SYMBOL_GPL
-0xda0947de kmsg_dump_unregister vmlinux EXPORT_SYMBOL_GPL
-0x989074ff kmsg_dump_reason_str vmlinux EXPORT_SYMBOL_GPL
-0x4f2c996d kmsg_dump_get_line vmlinux EXPORT_SYMBOL_GPL
-0xee518148 kmsg_dump_get_buffer vmlinux EXPORT_SYMBOL_GPL
-0x480305ca kmsg_dump_rewind vmlinux EXPORT_SYMBOL_GPL
-0x371e1953 __printk_cpu_sync_wait vmlinux EXPORT_SYMBOL
-0xa64c7249 __printk_cpu_sync_try_get vmlinux EXPORT_SYMBOL
-0xc0fe9137 __printk_cpu_sync_put vmlinux EXPORT_SYMBOL
-0x715a5ed0 vprintk vmlinux EXPORT_SYMBOL
-0xcdca3691 nr_irqs vmlinux EXPORT_SYMBOL_GPL
-0x7ceaf0d5 generic_handle_irq vmlinux EXPORT_SYMBOL_GPL
-0x81e2bdf4 generic_handle_irq_safe vmlinux EXPORT_SYMBOL_GPL
-0xb23fcd71 generic_handle_domain_irq vmlinux EXPORT_SYMBOL_GPL
-0x857f0744 generic_handle_domain_irq_safe vmlinux EXPORT_SYMBOL_GPL
-0x1c5b1f28 irq_free_descs vmlinux EXPORT_SYMBOL_GPL
-0x80c2c8cc __irq_alloc_descs vmlinux EXPORT_SYMBOL_GPL
-0xc08bbce6 irq_get_percpu_devid_partition vmlinux EXPORT_SYMBOL_GPL
-0x8df1fcdf handle_bad_irq vmlinux EXPORT_SYMBOL_GPL
-0xfbbd41ca no_action vmlinux EXPORT_SYMBOL_GPL
-0x0aa309cf synchronize_hardirq vmlinux EXPORT_SYMBOL
-0xe523ad75 synchronize_irq vmlinux EXPORT_SYMBOL
-0xa7218eba irq_set_affinity vmlinux EXPORT_SYMBOL_GPL
-0x78bab66b irq_force_affinity vmlinux EXPORT_SYMBOL_GPL
-0x199c4833 __irq_apply_affinity_hint vmlinux EXPORT_SYMBOL_GPL
-0x9a48d862 irq_set_affinity_notifier vmlinux EXPORT_SYMBOL_GPL
-0x6636c3c9 irq_set_vcpu_affinity vmlinux EXPORT_SYMBOL_GPL
-0x27bbf221 disable_irq_nosync vmlinux EXPORT_SYMBOL
-0x3ce4ca6f disable_irq vmlinux EXPORT_SYMBOL
-0xbd3fe1e3 disable_hardirq vmlinux EXPORT_SYMBOL_GPL
-0xfcec0987 enable_irq vmlinux EXPORT_SYMBOL
-0xce2840e7 irq_set_irq_wake vmlinux EXPORT_SYMBOL
-0xdc6596fa irq_set_parent vmlinux EXPORT_SYMBOL_GPL
-0x9504df26 irq_wake_thread vmlinux EXPORT_SYMBOL_GPL
-0xc1514a3b free_irq vmlinux EXPORT_SYMBOL
-0x92d5838e request_threaded_irq vmlinux EXPORT_SYMBOL
-0xdbdb0e8b request_any_context_irq vmlinux EXPORT_SYMBOL_GPL
-0x335c570f enable_percpu_irq vmlinux EXPORT_SYMBOL_GPL
-0x32ab06cc irq_percpu_is_enabled vmlinux EXPORT_SYMBOL_GPL
-0xf21e1f9b disable_percpu_irq vmlinux EXPORT_SYMBOL_GPL
-0xbc6bec66 free_percpu_irq vmlinux EXPORT_SYMBOL_GPL
-0x7bb045a7 __request_percpu_irq vmlinux EXPORT_SYMBOL_GPL
-0x1d222ced irq_get_irqchip_state vmlinux EXPORT_SYMBOL_GPL
-0xb88dbfce irq_set_irqchip_state vmlinux EXPORT_SYMBOL_GPL
-0x6f7e6040 irq_has_action vmlinux EXPORT_SYMBOL_GPL
-0xf47654df irq_check_status_bit vmlinux EXPORT_SYMBOL_GPL
-0x572004d9 irq_inject_interrupt vmlinux EXPORT_SYMBOL_GPL
-0xc9a4e90d irq_set_chip vmlinux EXPORT_SYMBOL
-0x0bc477a2 irq_set_irq_type vmlinux EXPORT_SYMBOL
-0x3dcb88a0 irq_set_handler_data vmlinux EXPORT_SYMBOL
-0x20a789ac irq_set_chip_data vmlinux EXPORT_SYMBOL
-0xcb0b0388 irq_get_irq_data vmlinux EXPORT_SYMBOL_GPL
-0x549525ef handle_nested_irq vmlinux EXPORT_SYMBOL_GPL
-0xc12c558c handle_simple_irq vmlinux EXPORT_SYMBOL_GPL
-0x8b754d3f handle_untracked_irq vmlinux EXPORT_SYMBOL_GPL
-0x8123f086 handle_level_irq vmlinux EXPORT_SYMBOL_GPL
-0xa385f6cc handle_fasteoi_irq vmlinux EXPORT_SYMBOL_GPL
-0x87d053a1 handle_fasteoi_nmi vmlinux EXPORT_SYMBOL_GPL
-0x06a88c15 handle_edge_irq vmlinux EXPORT_SYMBOL
-0x553089d2 __irq_set_handler vmlinux EXPORT_SYMBOL_GPL
-0xfdb81918 irq_set_chained_handler_and_data vmlinux EXPORT_SYMBOL_GPL
-0x46d3f6fd irq_set_chip_and_handler_name vmlinux EXPORT_SYMBOL_GPL
-0x7522f3ba irq_modify_status vmlinux EXPORT_SYMBOL_GPL
-0xe397285c irq_chip_set_parent_state vmlinux EXPORT_SYMBOL_GPL
-0x629dc1df irq_chip_get_parent_state vmlinux EXPORT_SYMBOL_GPL
-0xd671a8cf irq_chip_enable_parent vmlinux EXPORT_SYMBOL_GPL
-0x4d96805e irq_chip_disable_parent vmlinux EXPORT_SYMBOL_GPL
-0xbf75530d irq_chip_ack_parent vmlinux EXPORT_SYMBOL_GPL
-0x05dcccd7 irq_chip_mask_parent vmlinux EXPORT_SYMBOL_GPL
-0x52b8f1db irq_chip_mask_ack_parent vmlinux EXPORT_SYMBOL_GPL
-0x9fe587f6 irq_chip_unmask_parent vmlinux EXPORT_SYMBOL_GPL
-0xa72d62d5 irq_chip_eoi_parent vmlinux EXPORT_SYMBOL_GPL
-0xb19c9214 irq_chip_set_affinity_parent vmlinux EXPORT_SYMBOL_GPL
-0x38ce5ac9 irq_chip_set_type_parent vmlinux EXPORT_SYMBOL_GPL
-0xf7fff891 irq_chip_retrigger_hierarchy vmlinux EXPORT_SYMBOL_GPL
-0x74f09f29 irq_chip_set_vcpu_affinity_parent vmlinux EXPORT_SYMBOL_GPL
-0xc75055b1 irq_chip_set_wake_parent vmlinux EXPORT_SYMBOL_GPL
-0x354dae8f irq_chip_request_resources_parent vmlinux EXPORT_SYMBOL_GPL
-0xb0c3785f irq_chip_release_resources_parent vmlinux EXPORT_SYMBOL_GPL
-0x2709722a dummy_irq_chip vmlinux EXPORT_SYMBOL_GPL
-0xe8a0a15c devm_request_threaded_irq vmlinux EXPORT_SYMBOL
-0xff791898 devm_request_any_context_irq vmlinux EXPORT_SYMBOL
-0x51ad84dd devm_free_irq vmlinux EXPORT_SYMBOL
-0xc3510aa2 __devm_irq_alloc_descs vmlinux EXPORT_SYMBOL_GPL
-0xb121390a probe_irq_on vmlinux EXPORT_SYMBOL
-0x360b1afe probe_irq_mask vmlinux EXPORT_SYMBOL
-0xab600421 probe_irq_off vmlinux EXPORT_SYMBOL
-0x273b4ac5 irqchip_fwnode_ops vmlinux EXPORT_SYMBOL_GPL
-0x85d4656f __irq_domain_alloc_fwnode vmlinux EXPORT_SYMBOL_GPL
-0x1b925d4a irq_domain_free_fwnode vmlinux EXPORT_SYMBOL_GPL
-0x304cc062 __irq_domain_add vmlinux EXPORT_SYMBOL_GPL
-0x87a0feb4 irq_domain_remove vmlinux EXPORT_SYMBOL_GPL
-0x3d4cfcc5 irq_domain_update_bus_token vmlinux EXPORT_SYMBOL_GPL
-0x5e44c3f1 irq_domain_create_simple vmlinux EXPORT_SYMBOL_GPL
-0xc373452e irq_domain_add_legacy vmlinux EXPORT_SYMBOL_GPL
-0x6c232807 irq_domain_create_legacy vmlinux EXPORT_SYMBOL_GPL
-0x1ead49ae irq_find_matching_fwspec vmlinux EXPORT_SYMBOL_GPL
-0xcd0d5ee2 irq_set_default_host vmlinux EXPORT_SYMBOL_GPL
-0x98f74a03 irq_get_default_host vmlinux EXPORT_SYMBOL_GPL
-0x107c1efd irq_domain_associate vmlinux EXPORT_SYMBOL_GPL
-0xef28d43b irq_domain_associate_many vmlinux EXPORT_SYMBOL_GPL
-0x289e7008 irq_create_mapping_affinity vmlinux EXPORT_SYMBOL_GPL
-0x385f3e24 of_phandle_args_to_fwspec vmlinux EXPORT_SYMBOL_GPL
-0x6a89ffdf irq_create_fwspec_mapping vmlinux EXPORT_SYMBOL_GPL
-0xd2c8b6aa irq_create_of_mapping vmlinux EXPORT_SYMBOL_GPL
-0x2c7db649 irq_dispose_mapping vmlinux EXPORT_SYMBOL_GPL
-0x9491b320 __irq_resolve_mapping vmlinux EXPORT_SYMBOL_GPL
-0x5aece2ed irq_domain_xlate_onecell vmlinux EXPORT_SYMBOL_GPL
-0xfd04ac41 irq_domain_xlate_twocell vmlinux EXPORT_SYMBOL_GPL
-0x9b4ec56b irq_domain_xlate_onetwocell vmlinux EXPORT_SYMBOL_GPL
-0x34046716 irq_domain_simple_ops vmlinux EXPORT_SYMBOL_GPL
-0x5cbc0988 irq_domain_translate_onecell vmlinux EXPORT_SYMBOL_GPL
-0x8fb3c841 irq_domain_translate_twocell vmlinux EXPORT_SYMBOL_GPL
-0x8158f50d irq_domain_reset_irq_data vmlinux EXPORT_SYMBOL_GPL
-0x1bf16ea9 irq_domain_create_hierarchy vmlinux EXPORT_SYMBOL_GPL
-0xd99c8bcc irq_domain_disconnect_hierarchy vmlinux EXPORT_SYMBOL_GPL
-0x5244b2c0 irq_domain_get_irq_data vmlinux EXPORT_SYMBOL_GPL
-0xff2b0209 irq_domain_set_hwirq_and_chip vmlinux EXPORT_SYMBOL_GPL
-0x5c71cd58 irq_domain_set_info vmlinux EXPORT_SYMBOL
-0xf9acd8bf irq_domain_free_irqs_common vmlinux EXPORT_SYMBOL_GPL
-0xddb44340 __irq_domain_alloc_irqs vmlinux EXPORT_SYMBOL_GPL
-0xf0077109 irq_domain_push_irq vmlinux EXPORT_SYMBOL_GPL
-0x80141824 irq_domain_pop_irq vmlinux EXPORT_SYMBOL_GPL
-0x2ad9a788 irq_domain_alloc_irqs_parent vmlinux EXPORT_SYMBOL_GPL
-0xfc9c7bdb irq_domain_free_irqs_parent vmlinux EXPORT_SYMBOL_GPL
-0xabb7c7c2 get_cached_msi_msg vmlinux EXPORT_SYMBOL_GPL
-0x92a88c18 msi_lock_descs vmlinux EXPORT_SYMBOL_GPL
-0xb5499073 msi_unlock_descs vmlinux EXPORT_SYMBOL_GPL
-0xcad3c1c1 msi_domain_first_desc vmlinux EXPORT_SYMBOL_GPL
-0x9d9b1cfe msi_next_desc vmlinux EXPORT_SYMBOL_GPL
-0xa54f02c5 msi_domain_get_virq vmlinux EXPORT_SYMBOL_GPL
-0xf671807f msi_device_has_isolated_msi vmlinux EXPORT_SYMBOL_GPL
-0xf4af35c2 rcu_gp_is_normal vmlinux EXPORT_SYMBOL_GPL
-0xd6ae9ba7 rcu_async_should_hurry vmlinux EXPORT_SYMBOL_GPL
-0x7282ecb6 rcu_async_hurry vmlinux EXPORT_SYMBOL_GPL
-0xc3b47825 rcu_async_relax vmlinux EXPORT_SYMBOL_GPL
-0xc0a96e14 rcu_gp_is_expedited vmlinux EXPORT_SYMBOL_GPL
-0x8f0748af rcu_expedite_gp vmlinux EXPORT_SYMBOL_GPL
-0x5bdbac4e rcu_unexpedite_gp vmlinux EXPORT_SYMBOL_GPL
-0x24da0093 rcu_inkernel_boot_has_ended vmlinux EXPORT_SYMBOL_GPL
-0xcd9cd2ff wakeme_after_rcu vmlinux EXPORT_SYMBOL_GPL
-0xbfed2cd9 __wait_rcu_gp vmlinux EXPORT_SYMBOL_GPL
-0x150a0caf finish_rcuwait vmlinux EXPORT_SYMBOL_GPL
-0x92db8f68 do_trace_rcu_torture_read vmlinux EXPORT_SYMBOL_GPL
-0xb0747ed2 rcu_cpu_stall_suppress vmlinux EXPORT_SYMBOL_GPL
-0x789c73d9 rcu_cpu_stall_suppress_at_boot vmlinux EXPORT_SYMBOL_GPL
-0xbb4146b3 get_completed_synchronize_rcu vmlinux EXPORT_SYMBOL_GPL
-0x807fdcc4 call_rcu_tasks_rude vmlinux EXPORT_SYMBOL_GPL
-0xb7a387fc synchronize_rcu_tasks_rude vmlinux EXPORT_SYMBOL_GPL
-0x51390c96 rcu_barrier_tasks_rude vmlinux EXPORT_SYMBOL_GPL
-0xd42f1d4e show_rcu_tasks_rude_gp_kthread vmlinux EXPORT_SYMBOL_GPL
-0xd860ea92 get_rcu_tasks_rude_gp_kthread vmlinux EXPORT_SYMBOL_GPL
-0x43e38a4e rcu_trc_cmpxchg_need_qs vmlinux EXPORT_SYMBOL_GPL
-0x1ee10644 rcu_read_unlock_trace_special vmlinux EXPORT_SYMBOL_GPL
-0x8d4221ca rcu_tasks_trace_qs_blkd vmlinux EXPORT_SYMBOL_GPL
-0x52c35e83 call_rcu_tasks_trace vmlinux EXPORT_SYMBOL_GPL
-0x6246a629 synchronize_rcu_tasks_trace vmlinux EXPORT_SYMBOL_GPL
-0xcfc7b4e4 rcu_barrier_tasks_trace vmlinux EXPORT_SYMBOL_GPL
-0x7c291e86 show_rcu_tasks_trace_gp_kthread vmlinux EXPORT_SYMBOL_GPL
-0xf340cf8e get_rcu_tasks_trace_gp_kthread vmlinux EXPORT_SYMBOL_GPL
-0xa73d5d23 init_srcu_struct vmlinux EXPORT_SYMBOL_GPL
-0x18785092 cleanup_srcu_struct vmlinux EXPORT_SYMBOL_GPL
-0x958a9688 __srcu_read_lock vmlinux EXPORT_SYMBOL_GPL
-0xfc8caaf2 __srcu_read_unlock vmlinux EXPORT_SYMBOL_GPL
-0x27879d41 call_srcu vmlinux EXPORT_SYMBOL_GPL
-0x746bd3f0 synchronize_srcu_expedited vmlinux EXPORT_SYMBOL_GPL
-0x34d308d5 synchronize_srcu vmlinux EXPORT_SYMBOL_GPL
-0x00c25d6f get_state_synchronize_srcu vmlinux EXPORT_SYMBOL_GPL
-0xc789ae3e start_poll_synchronize_srcu vmlinux EXPORT_SYMBOL_GPL
-0x9d7a152b poll_state_synchronize_srcu vmlinux EXPORT_SYMBOL_GPL
-0x0e9937b7 srcu_barrier vmlinux EXPORT_SYMBOL_GPL
-0xcb369df8 srcu_batches_completed vmlinux EXPORT_SYMBOL_GPL
-0xfc8e6c51 srcutorture_get_gp_data vmlinux EXPORT_SYMBOL_GPL
-0x1cdb10c7 srcu_torture_stats_print vmlinux EXPORT_SYMBOL_GPL
-0x42825ce2 rcu_scheduler_active vmlinux EXPORT_SYMBOL_GPL
-0x216de4e1 rcu_get_gp_kthreads_prio vmlinux EXPORT_SYMBOL_GPL
-0x5a1d134a rcu_momentary_dyntick_idle vmlinux EXPORT_SYMBOL_GPL
-0xe6e40502 rcu_get_gp_seq vmlinux EXPORT_SYMBOL_GPL
-0x6d7e951e rcu_exp_batches_completed vmlinux EXPORT_SYMBOL_GPL
-0x2e028ae6 rcutorture_get_gp_data vmlinux EXPORT_SYMBOL_GPL
-0xce6db656 rcu_is_watching vmlinux EXPORT_SYMBOL_GPL
-0xbb028ad3 rcu_gp_slow_register vmlinux EXPORT_SYMBOL_GPL
-0x7f84f35d rcu_gp_slow_unregister vmlinux EXPORT_SYMBOL_GPL
-0xb2c1732e rcu_gp_set_torture_wait vmlinux EXPORT_SYMBOL_GPL
-0x8924eb1e rcu_force_quiescent_state vmlinux EXPORT_SYMBOL_GPL
-0x28aa6a67 call_rcu vmlinux EXPORT_SYMBOL_GPL
-0x44c10a52 kvfree_call_rcu vmlinux EXPORT_SYMBOL_GPL
-0x6091797f synchronize_rcu vmlinux EXPORT_SYMBOL_GPL
-0x61bd0bd0 get_completed_synchronize_rcu_full vmlinux EXPORT_SYMBOL_GPL
-0xf3808cb1 get_state_synchronize_rcu vmlinux EXPORT_SYMBOL_GPL
-0x67c3c795 get_state_synchronize_rcu_full vmlinux EXPORT_SYMBOL_GPL
-0x91955a9f start_poll_synchronize_rcu vmlinux EXPORT_SYMBOL_GPL
-0xb23b7691 start_poll_synchronize_rcu_full vmlinux EXPORT_SYMBOL_GPL
-0x442deaa9 poll_state_synchronize_rcu vmlinux EXPORT_SYMBOL_GPL
-0x836d652f poll_state_synchronize_rcu_full vmlinux EXPORT_SYMBOL_GPL
-0x49e96999 cond_synchronize_rcu vmlinux EXPORT_SYMBOL_GPL
-0x1b0602c1 cond_synchronize_rcu_full vmlinux EXPORT_SYMBOL_GPL
-0x60a13e90 rcu_barrier vmlinux EXPORT_SYMBOL_GPL
-0xe9f5116f rcu_exp_jiffies_till_stall_check vmlinux EXPORT_SYMBOL_GPL
-0x3d510a7b rcu_jiffies_till_stall_check vmlinux EXPORT_SYMBOL_GPL
-0x8c0ed103 rcu_check_boost_fail vmlinux EXPORT_SYMBOL_GPL
-0x4f6a07fe show_rcu_gp_kthreads vmlinux EXPORT_SYMBOL_GPL
-0x3c1c3725 rcu_fwd_progress_check vmlinux EXPORT_SYMBOL_GPL
-0x86f6b99d synchronize_rcu_expedited vmlinux EXPORT_SYMBOL_GPL
-0x4c2b351d start_poll_synchronize_rcu_expedited vmlinux EXPORT_SYMBOL_GPL
-0x59b063ba start_poll_synchronize_rcu_expedited_full vmlinux EXPORT_SYMBOL_GPL
-0xbda04a91 cond_synchronize_rcu_expedited vmlinux EXPORT_SYMBOL_GPL
-0x8110a73a cond_synchronize_rcu_expedited_full vmlinux EXPORT_SYMBOL_GPL
-0x09f50f32 rcu_nocb_flush_deferred_wakeup vmlinux EXPORT_SYMBOL_GPL
-0xe791df1f rcu_nocb_cpu_deoffload vmlinux EXPORT_SYMBOL_GPL
-0x7c3e736a rcu_nocb_cpu_offload vmlinux EXPORT_SYMBOL_GPL
-0x3f83f8d3 rcu_bind_current_to_nocb vmlinux EXPORT_SYMBOL_GPL
-0x2d5f69b3 rcu_read_unlock_strict vmlinux EXPORT_SYMBOL_GPL
-0xcd974f00 rcu_all_qs vmlinux EXPORT_SYMBOL_GPL
-0x68952493 rcu_note_context_switch vmlinux EXPORT_SYMBOL_GPL
-0x4bceb9ad klp_register_patch vmlinux EXPORT_SYMBOL_GPL
-0x87ef6109 klp_unregister_patch vmlinux EXPORT_SYMBOL_GPL
-0x82b7f9ac dmam_free_coherent vmlinux EXPORT_SYMBOL
-0x6d111b21 dmam_alloc_attrs vmlinux EXPORT_SYMBOL
-0x216a1486 dma_map_page_attrs vmlinux EXPORT_SYMBOL
-0x2deeb601 dma_unmap_page_attrs vmlinux EXPORT_SYMBOL
-0xe26c5798 dma_map_sg_attrs vmlinux EXPORT_SYMBOL
-0x9cc1fb86 dma_map_sgtable vmlinux EXPORT_SYMBOL_GPL
-0xf8bcfae7 dma_unmap_sg_attrs vmlinux EXPORT_SYMBOL
-0x8f1cb40f dma_map_resource vmlinux EXPORT_SYMBOL
-0x65ac0a44 dma_unmap_resource vmlinux EXPORT_SYMBOL
-0x6bbf1ac7 dma_sync_single_for_cpu vmlinux EXPORT_SYMBOL
-0xdf31c63d dma_sync_single_for_device vmlinux EXPORT_SYMBOL
-0x40716bf1 dma_sync_sg_for_cpu vmlinux EXPORT_SYMBOL
-0xdb3e75d3 dma_sync_sg_for_device vmlinux EXPORT_SYMBOL
-0xb29a5802 dma_get_sgtable_attrs vmlinux EXPORT_SYMBOL
-0x6a768f32 dma_can_mmap vmlinux EXPORT_SYMBOL_GPL
-0x716458eb dma_mmap_attrs vmlinux EXPORT_SYMBOL
-0x251299a0 dma_get_required_mask vmlinux EXPORT_SYMBOL_GPL
-0xc701264c dma_alloc_attrs vmlinux EXPORT_SYMBOL
-0x7db75cf1 dma_free_attrs vmlinux EXPORT_SYMBOL
-0xbdd74607 dma_alloc_pages vmlinux EXPORT_SYMBOL_GPL
-0xb7c06028 dma_free_pages vmlinux EXPORT_SYMBOL_GPL
-0xa877aa10 dma_mmap_pages vmlinux EXPORT_SYMBOL_GPL
-0xf96efa31 dma_alloc_noncontiguous vmlinux EXPORT_SYMBOL_GPL
-0xb4941f6c dma_free_noncontiguous vmlinux EXPORT_SYMBOL_GPL
-0x63e8d615 dma_vmap_noncontiguous vmlinux EXPORT_SYMBOL_GPL
-0x1ed378f1 dma_vunmap_noncontiguous vmlinux EXPORT_SYMBOL_GPL
-0xd42dc108 dma_mmap_noncontiguous vmlinux EXPORT_SYMBOL_GPL
-0x9d9539d2 dma_pci_p2pdma_supported vmlinux EXPORT_SYMBOL_GPL
-0x018b87c4 dma_set_mask vmlinux EXPORT_SYMBOL
-0x20cb3e4d dma_set_coherent_mask vmlinux EXPORT_SYMBOL
-0xee56b3be dma_max_mapping_size vmlinux EXPORT_SYMBOL_GPL
-0xa3b3d87e dma_opt_mapping_size vmlinux EXPORT_SYMBOL_GPL
-0x6e320464 dma_need_sync vmlinux EXPORT_SYMBOL_GPL
-0x1889ac26 dma_get_merge_boundary vmlinux EXPORT_SYMBOL_GPL
-0x63c74cf9 xfer_to_guest_mode_handle_work vmlinux EXPORT_SYMBOL_GPL
-0xf353a698 register_module_notifier vmlinux EXPORT_SYMBOL
-0x6a5ecb18 unregister_module_notifier vmlinux EXPORT_SYMBOL
-0x1b34ed67 __module_put_and_kthread_exit vmlinux EXPORT_SYMBOL
-0x55a22e35 __tracepoint_module_get vmlinux EXPORT_SYMBOL
-0x41bb27be __traceiter_module_get vmlinux EXPORT_SYMBOL
-0xde4d59b5 __SCK__tp_func_module_get vmlinux EXPORT_SYMBOL
-0x2a6fa0d0 __SCT__tp_func_module_get vmlinux EXPORT_SYMBOL
-0xe984b1b1 module_refcount vmlinux EXPORT_SYMBOL
-0x6e9dd606 __symbol_put vmlinux EXPORT_SYMBOL
-0x66d87d38 symbol_put_addr vmlinux EXPORT_SYMBOL_GPL
-0x385b38d4 __module_get vmlinux EXPORT_SYMBOL
-0x819ffa5b try_module_get vmlinux EXPORT_SYMBOL
-0xb4082c14 module_put vmlinux EXPORT_SYMBOL
-0x868784cb __symbol_get vmlinux EXPORT_SYMBOL_GPL
-0xa24f23d8 __request_module vmlinux EXPORT_SYMBOL
-0xd6fde043 is_module_sig_enforced vmlinux EXPORT_SYMBOL
-0x9c344e60 module_layout vmlinux EXPORT_SYMBOL
-0xd73653c4 freezer_active vmlinux EXPORT_SYMBOL
-0xb7855970 freezing_slow_path vmlinux EXPORT_SYMBOL
-0x04482cdb __refrigerator vmlinux EXPORT_SYMBOL
-0x9e61bb05 set_freezable vmlinux EXPORT_SYMBOL
-0x995d1071 prof_on vmlinux EXPORT_SYMBOL_GPL
-0x67955ce6 profile_hits vmlinux EXPORT_SYMBOL_GPL
-0xa45c7b90 stack_trace_print vmlinux EXPORT_SYMBOL_GPL
-0x74c7bffa stack_trace_snprint vmlinux EXPORT_SYMBOL_GPL
-0x6bd1aa56 stack_trace_save vmlinux EXPORT_SYMBOL_GPL
-0x15ade1cc filter_irq_stacks vmlinux EXPORT_SYMBOL_GPL
-0xfe5d4bb2 sys_tz vmlinux EXPORT_SYMBOL
-0x37befc70 jiffies_to_msecs vmlinux EXPORT_SYMBOL
-0x7f24de73 jiffies_to_usecs vmlinux EXPORT_SYMBOL
-0x0fb2f8a4 mktime64 vmlinux EXPORT_SYMBOL
-0x6b853d06 ns_to_kernel_old_timeval vmlinux EXPORT_SYMBOL
-0x365acda7 set_normalized_timespec64 vmlinux EXPORT_SYMBOL
-0x65929cae ns_to_timespec64 vmlinux EXPORT_SYMBOL
-0x7f02188f __msecs_to_jiffies vmlinux EXPORT_SYMBOL
-0xf1969a8e __usecs_to_jiffies vmlinux EXPORT_SYMBOL
-0xdf93b9d8 timespec64_to_jiffies vmlinux EXPORT_SYMBOL
-0x188ea314 jiffies_to_timespec64 vmlinux EXPORT_SYMBOL
-0x7d0db45c jiffies_to_clock_t vmlinux EXPORT_SYMBOL
-0x6d294e43 clock_t_to_jiffies vmlinux EXPORT_SYMBOL
-0xb1ddf995 jiffies_64_to_clock_t vmlinux EXPORT_SYMBOL
-0xee8d74d6 jiffies64_to_nsecs vmlinux EXPORT_SYMBOL
-0x92ec510d jiffies64_to_msecs vmlinux EXPORT_SYMBOL
-0x75d0deb9 nsecs_to_jiffies64 vmlinux EXPORT_SYMBOL
-0xffae8e8b nsecs_to_jiffies vmlinux EXPORT_SYMBOL_GPL
-0x00513f58 get_timespec64 vmlinux EXPORT_SYMBOL_GPL
-0x170cc36c put_timespec64 vmlinux EXPORT_SYMBOL_GPL
-0x6f12560a get_old_timespec32 vmlinux EXPORT_SYMBOL_GPL
-0x6dbaafd3 put_old_timespec32 vmlinux EXPORT_SYMBOL_GPL
-0xa38a9f71 get_itimerspec64 vmlinux EXPORT_SYMBOL_GPL
-0xd39e9848 put_itimerspec64 vmlinux EXPORT_SYMBOL_GPL
-0x9b9071cb get_old_itimerspec32 vmlinux EXPORT_SYMBOL_GPL
-0x26ab4755 put_old_itimerspec32 vmlinux EXPORT_SYMBOL_GPL
-0x055e77e8 jiffies_64 vmlinux EXPORT_SYMBOL
-0xf9a054b5 __round_jiffies vmlinux EXPORT_SYMBOL_GPL
-0x8f6cee77 __round_jiffies_relative vmlinux EXPORT_SYMBOL_GPL
-0x091eb9b4 round_jiffies vmlinux EXPORT_SYMBOL_GPL
-0x1eb9516e round_jiffies_relative vmlinux EXPORT_SYMBOL_GPL
-0x1c87a811 __round_jiffies_up vmlinux EXPORT_SYMBOL_GPL
-0xd273b1b1 __round_jiffies_up_relative vmlinux EXPORT_SYMBOL_GPL
-0x50fad434 round_jiffies_up vmlinux EXPORT_SYMBOL_GPL
-0xef6c3f70 round_jiffies_up_relative vmlinux EXPORT_SYMBOL_GPL
-0xd058781f init_timer_key vmlinux EXPORT_SYMBOL
-0x2e1a1a1c mod_timer_pending vmlinux EXPORT_SYMBOL
-0x3a8db252 mod_timer vmlinux EXPORT_SYMBOL
-0x1ac4cd5f timer_reduce vmlinux EXPORT_SYMBOL
-0xb95dd051 add_timer vmlinux EXPORT_SYMBOL
-0x590b39a1 add_timer_on vmlinux EXPORT_SYMBOL_GPL
-0x76440b33 timer_delete vmlinux EXPORT_SYMBOL
-0x7b7aff4f timer_shutdown vmlinux EXPORT_SYMBOL_GPL
-0x37160773 try_to_del_timer_sync vmlinux EXPORT_SYMBOL
-0xb1862407 timer_delete_sync vmlinux EXPORT_SYMBOL
-0x1ffb1eee timer_shutdown_sync vmlinux EXPORT_SYMBOL_GPL
-0x8ddd8aad schedule_timeout vmlinux EXPORT_SYMBOL
-0x054496b4 schedule_timeout_interruptible vmlinux EXPORT_SYMBOL
-0x0f09cc34 schedule_timeout_killable vmlinux EXPORT_SYMBOL
-0x151f4898 schedule_timeout_uninterruptible vmlinux EXPORT_SYMBOL
-0x7807f0f8 schedule_timeout_idle vmlinux EXPORT_SYMBOL
-0xf9a482f9 msleep vmlinux EXPORT_SYMBOL
-0xcc5005fe msleep_interruptible vmlinux EXPORT_SYMBOL
-0xc3055d20 usleep_range_state vmlinux EXPORT_SYMBOL
-0x03952887 ktime_add_safe vmlinux EXPORT_SYMBOL_GPL
-0x406c4cb1 hrtimer_resolution vmlinux EXPORT_SYMBOL_GPL
-0x71361277 hrtimer_forward vmlinux EXPORT_SYMBOL_GPL
-0x827b36b4 hrtimer_start_range_ns vmlinux EXPORT_SYMBOL_GPL
-0xca9a7299 hrtimer_try_to_cancel vmlinux EXPORT_SYMBOL_GPL
-0x7a31ca71 hrtimer_cancel vmlinux EXPORT_SYMBOL_GPL
-0xeb84529a __hrtimer_get_remaining vmlinux EXPORT_SYMBOL_GPL
-0xaac942f7 hrtimer_init vmlinux EXPORT_SYMBOL_GPL
-0x21b2af23 hrtimer_active vmlinux EXPORT_SYMBOL_GPL
-0xa1b4f49f hrtimer_sleeper_start_expires vmlinux EXPORT_SYMBOL_GPL
-0xbbb1fb69 hrtimer_init_sleeper vmlinux EXPORT_SYMBOL_GPL
-0x9468ea70 schedule_hrtimeout_range_clock vmlinux EXPORT_SYMBOL_GPL
-0xd03eaf4c schedule_hrtimeout_range vmlinux EXPORT_SYMBOL_GPL
-0x6a460dc5 schedule_hrtimeout vmlinux EXPORT_SYMBOL_GPL
-0x6ebe366f ktime_get_mono_fast_ns vmlinux EXPORT_SYMBOL_GPL
-0x141f38bf ktime_get_raw_fast_ns vmlinux EXPORT_SYMBOL_GPL
-0x6ef6b54f ktime_get_boot_fast_ns vmlinux EXPORT_SYMBOL_GPL
-0x651d10e5 ktime_get_tai_fast_ns vmlinux EXPORT_SYMBOL_GPL
-0x052c9aed ktime_get_real_fast_ns vmlinux EXPORT_SYMBOL_GPL
-0xb4b97c90 pvclock_gtod_register_notifier vmlinux EXPORT_SYMBOL_GPL
-0x4688d7ec pvclock_gtod_unregister_notifier vmlinux EXPORT_SYMBOL_GPL
-0x9ec6ca96 ktime_get_real_ts64 vmlinux EXPORT_SYMBOL
-0xb43f9365 ktime_get vmlinux EXPORT_SYMBOL_GPL
-0xfe476039 ktime_get_resolution_ns vmlinux EXPORT_SYMBOL_GPL
-0xc4f0da12 ktime_get_with_offset vmlinux EXPORT_SYMBOL_GPL
-0xbcc15e75 ktime_get_coarse_with_offset vmlinux EXPORT_SYMBOL_GPL
-0x6d6fec1f ktime_mono_to_any vmlinux EXPORT_SYMBOL_GPL
-0x9714e0bb ktime_get_raw vmlinux EXPORT_SYMBOL_GPL
-0x5e515be6 ktime_get_ts64 vmlinux EXPORT_SYMBOL_GPL
-0xa9320d27 ktime_get_seconds vmlinux EXPORT_SYMBOL_GPL
-0x953e1b9e ktime_get_real_seconds vmlinux EXPORT_SYMBOL_GPL
-0x4cb27100 ktime_get_snapshot vmlinux EXPORT_SYMBOL_GPL
-0x4d4cab52 get_device_system_crosststamp vmlinux EXPORT_SYMBOL_GPL
-0x7a95e5ae do_settimeofday64 vmlinux EXPORT_SYMBOL
-0x1edb69d6 ktime_get_raw_ts64 vmlinux EXPORT_SYMBOL
-0xef464c28 getboottime64 vmlinux EXPORT_SYMBOL_GPL
-0x484f6edf ktime_get_coarse_real_ts64 vmlinux EXPORT_SYMBOL
-0xf5e7ea40 ktime_get_coarse_ts64 vmlinux EXPORT_SYMBOL
-0xbb6508da random_get_entropy_fallback vmlinux EXPORT_SYMBOL_GPL
-0x62bb09bf clocks_calc_mult_shift vmlinux EXPORT_SYMBOL_GPL
-0xbe65e182 max_cswd_read_retries vmlinux EXPORT_SYMBOL_GPL
-0xbc355ea2 clocksource_verify_percpu vmlinux EXPORT_SYMBOL_GPL
-0x33d90e4a __clocksource_update_freq_scale vmlinux EXPORT_SYMBOL_GPL
-0x85032c1f __clocksource_register_scale vmlinux EXPORT_SYMBOL_GPL
-0x13582b17 clocksource_change_rating vmlinux EXPORT_SYMBOL
-0xc582115b clocksource_unregister vmlinux EXPORT_SYMBOL
-0x15ba50a6 jiffies vmlinux EXPORT_SYMBOL
-0x0fff5afc time64_to_tm vmlinux EXPORT_SYMBOL
-0x862258db timecounter_init vmlinux EXPORT_SYMBOL_GPL
-0x6f9e763b timecounter_read vmlinux EXPORT_SYMBOL_GPL
-0xbc3f2cb0 timecounter_cyc2time vmlinux EXPORT_SYMBOL_GPL
-0x83a3dc40 alarmtimer_get_rtcdev vmlinux EXPORT_SYMBOL_GPL
-0xaaa45ada alarm_expires_remaining vmlinux EXPORT_SYMBOL_GPL
-0xe36b7ec7 alarm_init vmlinux EXPORT_SYMBOL_GPL
-0xb3e9da04 alarm_start vmlinux EXPORT_SYMBOL_GPL
-0x94742414 alarm_start_relative vmlinux EXPORT_SYMBOL_GPL
-0x0171b929 alarm_restart vmlinux EXPORT_SYMBOL_GPL
-0x5761a06a alarm_try_to_cancel vmlinux EXPORT_SYMBOL_GPL
-0xa300db36 alarm_cancel vmlinux EXPORT_SYMBOL_GPL
-0x3c8d2359 alarm_forward vmlinux EXPORT_SYMBOL_GPL
-0xcca12a47 alarm_forward_now vmlinux EXPORT_SYMBOL_GPL
-0x80a8e286 posix_clock_register vmlinux EXPORT_SYMBOL_GPL
-0x17bb52f0 posix_clock_unregister vmlinux EXPORT_SYMBOL_GPL
-0x5700bb35 clockevent_delta2ns vmlinux EXPORT_SYMBOL_GPL
-0xfcf27bb1 clockevents_unbind_device vmlinux EXPORT_SYMBOL_GPL
-0x004fa2e8 clockevents_register_device vmlinux EXPORT_SYMBOL_GPL
-0x27eb11a6 clockevents_config_and_register vmlinux EXPORT_SYMBOL_GPL
-0xbfe5616d tick_broadcast_oneshot_control vmlinux EXPORT_SYMBOL_GPL
-0x5c5a1b16 tick_broadcast_control vmlinux EXPORT_SYMBOL_GPL
-0x4e5ee273 tick_nohz_full_mask vmlinux EXPORT_SYMBOL_GPL
-0x9a185ace tick_nohz_full_running vmlinux EXPORT_SYMBOL_GPL
-0x1005d60b tick_nohz_dep_set_cpu vmlinux EXPORT_SYMBOL_GPL
-0x30e42163 tick_nohz_dep_clear_cpu vmlinux EXPORT_SYMBOL_GPL
-0x7da00a2c tick_nohz_dep_set_task vmlinux EXPORT_SYMBOL_GPL
-0x78c41dc6 tick_nohz_dep_clear_task vmlinux EXPORT_SYMBOL_GPL
-0x7b9793a2 get_cpu_idle_time_us vmlinux EXPORT_SYMBOL_GPL
-0x1234e483 get_cpu_iowait_time_us vmlinux EXPORT_SYMBOL_GPL
-0x7054a3e4 request_dma vmlinux EXPORT_SYMBOL
-0x72b243d4 free_dma vmlinux EXPORT_SYMBOL
-0x175e33fb dma_spin_lock vmlinux EXPORT_SYMBOL
-0x6228c21f smp_call_function_single vmlinux EXPORT_SYMBOL
-0xa080c5e5 smp_call_function_single_async vmlinux EXPORT_SYMBOL_GPL
-0x01ee5532 smp_call_function_any vmlinux EXPORT_SYMBOL_GPL
-0xbb13595e smp_call_function_many vmlinux EXPORT_SYMBOL
-0xa0eae826 smp_call_function vmlinux EXPORT_SYMBOL
-0x381a798a setup_max_cpus vmlinux EXPORT_SYMBOL
-0x017de3d5 nr_cpu_ids vmlinux EXPORT_SYMBOL
-0x63f835ba on_each_cpu_cond_mask vmlinux EXPORT_SYMBOL
-0xa6e1a69d kick_all_cpus_sync vmlinux EXPORT_SYMBOL_GPL
-0xbe687e88 wake_up_all_idle_cpus vmlinux EXPORT_SYMBOL_GPL
-0x267df662 smp_call_on_cpu vmlinux EXPORT_SYMBOL_GPL
-0x661601de sprint_symbol vmlinux EXPORT_SYMBOL_GPL
-0x6dd5680d sprint_symbol_build_id vmlinux EXPORT_SYMBOL_GPL
-0xe769232e sprint_symbol_no_offset vmlinux EXPORT_SYMBOL_GPL
-0x01bf55fc paddr_vmcoreinfo_note vmlinux EXPORT_SYMBOL
-0x265bbef9 kexec_crash_loaded vmlinux EXPORT_SYMBOL_GPL
-0x3ba01b47 get_compat_sigset vmlinux EXPORT_SYMBOL_GPL
-0x330010b6 cpuset_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0xdf2738bb cpu_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x5e173309 cpu_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x8d3330b6 cpuacct_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x04bf0092 io_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x7de6cc23 io_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0xf352023f memory_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xf2b33cb7 memory_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x604722fd devices_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xee6c633a devices_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0xa3ece414 freezer_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x49242bc7 freezer_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0xae1051b0 net_cls_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x036de383 perf_event_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0xd159586c net_prio_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xfbffd601 net_prio_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x578eeb4d hugetlb_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0xe60a5e8d pids_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x70c2c7ea pids_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x39ded098 rdma_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xc4a31146 rdma_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0xdc841b74 misc_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x4bd6f08b misc_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x3bd81c62 files_cgrp_subsys_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0xaffce185 files_cgrp_subsys_on_dfl_key vmlinux EXPORT_SYMBOL_GPL
-0x82ee5802 cgrp_dfl_root vmlinux EXPORT_SYMBOL_GPL
-0xf3a08fa4 cgroup_get_e_css vmlinux EXPORT_SYMBOL_GPL
-0x9052dba0 of_css vmlinux EXPORT_SYMBOL_GPL
-0x88e3efda cgroup_path_ns vmlinux EXPORT_SYMBOL_GPL
-0xdff12e33 css_next_descendant_pre vmlinux EXPORT_SYMBOL_GPL
-0x542ad574 cgroup_get_from_id vmlinux EXPORT_SYMBOL_GPL
-0x27644b7e cgroup_get_from_path vmlinux EXPORT_SYMBOL_GPL
-0x20b13f65 cgroup_get_from_fd vmlinux EXPORT_SYMBOL_GPL
-0x9955a09a free_cgroup_ns vmlinux EXPORT_SYMBOL
-0x1aa6b9dd cgroup_attach_task_all vmlinux EXPORT_SYMBOL_GPL
-0xf6f74383 rdmacg_uncharge vmlinux EXPORT_SYMBOL
-0xcc3413f9 rdmacg_try_charge vmlinux EXPORT_SYMBOL
-0x01757935 rdmacg_register_device vmlinux EXPORT_SYMBOL
-0x1b777357 rdmacg_unregister_device vmlinux EXPORT_SYMBOL
-0x23864ce7 cpuset_mem_spread_node vmlinux EXPORT_SYMBOL_GPL
-0x5a39e3d2 misc_cg_res_total_usage vmlinux EXPORT_SYMBOL_GPL
-0x4f96967e misc_cg_set_capacity vmlinux EXPORT_SYMBOL_GPL
-0x5425794e misc_cg_try_charge vmlinux EXPORT_SYMBOL_GPL
-0x5d6c60e8 misc_cg_uncharge vmlinux EXPORT_SYMBOL_GPL
-0xd6907c36 __put_user_ns vmlinux EXPORT_SYMBOL
-0x42a7d8cc make_kuid vmlinux EXPORT_SYMBOL
-0xf8f44f14 from_kuid vmlinux EXPORT_SYMBOL
-0x5a628deb from_kuid_munged vmlinux EXPORT_SYMBOL
-0x1fc9b278 make_kgid vmlinux EXPORT_SYMBOL
-0xd052da2f from_kgid vmlinux EXPORT_SYMBOL
-0x686818ab from_kgid_munged vmlinux EXPORT_SYMBOL
-0x786e3f90 make_kprojid vmlinux EXPORT_SYMBOL
-0x7dc05a68 from_kprojid vmlinux EXPORT_SYMBOL
-0x5d0cbbb1 from_kprojid_munged vmlinux EXPORT_SYMBOL
-0xc9ba9337 current_in_userns vmlinux EXPORT_SYMBOL
-0x31e7bf2d put_pid_ns vmlinux EXPORT_SYMBOL_GPL
-0xcb970751 stop_machine vmlinux EXPORT_SYMBOL_GPL
-0x1ef20793 stop_core_cpuslocked vmlinux EXPORT_SYMBOL_GPL
-0xb44e18ea audit_enabled vmlinux EXPORT_SYMBOL_GPL
-0xcbbf0a6f audit_log_task_context vmlinux EXPORT_SYMBOL
-0xacf649bf audit_log_task_info vmlinux EXPORT_SYMBOL
-0xd76f4088 audit_log_start vmlinux EXPORT_SYMBOL
-0xeb37101c audit_log_end vmlinux EXPORT_SYMBOL
-0xe1dcf64a audit_log_format vmlinux EXPORT_SYMBOL
-0x1d606b67 audit_log vmlinux EXPORT_SYMBOL
-0xff5ae51d __audit_inode_child vmlinux EXPORT_SYMBOL_GPL
-0x5afc722e __audit_log_nfcfg vmlinux EXPORT_SYMBOL_GPL
-0xfcca5424 register_kprobe vmlinux EXPORT_SYMBOL_GPL
-0xb6eabe37 register_kprobes vmlinux EXPORT_SYMBOL_GPL
-0x63026490 unregister_kprobe vmlinux EXPORT_SYMBOL_GPL
-0x356d09a1 unregister_kprobes vmlinux EXPORT_SYMBOL_GPL
-0xdeefe6e6 register_kretprobe vmlinux EXPORT_SYMBOL_GPL
-0xa3499171 register_kretprobes vmlinux EXPORT_SYMBOL_GPL
-0x3b3d60f2 unregister_kretprobe vmlinux EXPORT_SYMBOL_GPL
-0xbde4960c unregister_kretprobes vmlinux EXPORT_SYMBOL_GPL
-0x87f34e99 disable_kprobe vmlinux EXPORT_SYMBOL_GPL
-0x8b8cc689 enable_kprobe vmlinux EXPORT_SYMBOL_GPL
-0xb4ea7cf7 kgdb_connected vmlinux EXPORT_SYMBOL_GPL
-0x88ab6fe3 kgdb_active vmlinux EXPORT_SYMBOL_GPL
-0xe336794b kgdb_register_io_module vmlinux EXPORT_SYMBOL_GPL
-0x19dc5dd8 kgdb_unregister_io_module vmlinux EXPORT_SYMBOL_GPL
-0x01e1a8de kgdb_breakpoint vmlinux EXPORT_SYMBOL_GPL
-0x5986d190 kdb_printf vmlinux EXPORT_SYMBOL_GPL
-0x1fd07fff kdb_grepping_flag vmlinux EXPORT_SYMBOL
-0x344361a1 kdb_register vmlinux EXPORT_SYMBOL_GPL
-0x24fc50f4 kdb_unregister vmlinux EXPORT_SYMBOL_GPL
-0x687b6a16 kdbgetsymval vmlinux EXPORT_SYMBOL
-0xf3b451ca kdb_poll_funcs vmlinux EXPORT_SYMBOL_GPL
-0xa48196c8 kdb_poll_idx vmlinux EXPORT_SYMBOL_GPL
-0x07b21f85 kdb_get_kbd_char vmlinux EXPORT_SYMBOL_GPL
-0xa3b958ce reset_hung_task_detector vmlinux EXPORT_SYMBOL_GPL
-0xc4ae915e arch_touch_nmi_watchdog vmlinux EXPORT_SYMBOL
-0x6fcb87a1 touch_softlockup_watchdog vmlinux EXPORT_SYMBOL
-0xf05e323a relay_buf_full vmlinux EXPORT_SYMBOL_GPL
-0x3c42c9cd relay_reset vmlinux EXPORT_SYMBOL_GPL
-0x0e5b23bc relay_open vmlinux EXPORT_SYMBOL_GPL
-0x9b635321 relay_late_setup_files vmlinux EXPORT_SYMBOL_GPL
-0xe577e5ae relay_switch_subbuf vmlinux EXPORT_SYMBOL_GPL
-0x03427286 relay_subbufs_consumed vmlinux EXPORT_SYMBOL_GPL
-0x4ccc3826 relay_close vmlinux EXPORT_SYMBOL_GPL
-0xcf1bd6fb relay_flush vmlinux EXPORT_SYMBOL_GPL
-0x8afd8cc6 relay_file_operations vmlinux EXPORT_SYMBOL_GPL
-0xa1040a57 tracepoint_srcu vmlinux EXPORT_SYMBOL_GPL
-0xe3d35dd7 tracepoint_probe_register_prio_may_exist vmlinux EXPORT_SYMBOL_GPL
-0xf0af37ef tracepoint_probe_register_prio vmlinux EXPORT_SYMBOL_GPL
-0xe91a1a3c tracepoint_probe_register vmlinux EXPORT_SYMBOL_GPL
-0x360eefb5 tracepoint_probe_unregister vmlinux EXPORT_SYMBOL_GPL
-0xefa2c27d register_tracepoint_module_notifier vmlinux EXPORT_SYMBOL_GPL
-0x7dda30af unregister_tracepoint_module_notifier vmlinux EXPORT_SYMBOL_GPL
-0x22b6c659 for_each_kernel_tracepoint vmlinux EXPORT_SYMBOL_GPL
-0x2951a872 trace_clock_local vmlinux EXPORT_SYMBOL_GPL
-0x58d6311d trace_clock vmlinux EXPORT_SYMBOL_GPL
-0x3a8bbb8e trace_clock_jiffies vmlinux EXPORT_SYMBOL_GPL
-0xe48611ac trace_clock_global vmlinux EXPORT_SYMBOL_GPL
-0xd3b6d77e ftrace_free_filter vmlinux EXPORT_SYMBOL_GPL
-0x99f75857 register_ftrace_direct vmlinux EXPORT_SYMBOL_GPL
-0xc1eb4340 unregister_ftrace_direct vmlinux EXPORT_SYMBOL_GPL
-0x1a85a5f4 modify_ftrace_direct_nolock vmlinux EXPORT_SYMBOL_GPL
-0x42f807ef modify_ftrace_direct vmlinux EXPORT_SYMBOL_GPL
-0x94b41058 ftrace_set_filter_ip vmlinux EXPORT_SYMBOL_GPL
-0x7dca2809 ftrace_set_filter_ips vmlinux EXPORT_SYMBOL_GPL
-0x342c468d ftrace_ops_set_global_filter vmlinux EXPORT_SYMBOL_GPL
-0x010e88d4 ftrace_set_filter vmlinux EXPORT_SYMBOL_GPL
-0xdde10cad ftrace_set_notrace vmlinux EXPORT_SYMBOL_GPL
-0x27f4f029 ftrace_set_global_filter vmlinux EXPORT_SYMBOL_GPL
-0x2e2360b1 ftrace_set_global_notrace vmlinux EXPORT_SYMBOL_GPL
-0xa3f56731 register_ftrace_function vmlinux EXPORT_SYMBOL_GPL
-0xfc029b11 unregister_ftrace_function vmlinux EXPORT_SYMBOL_GPL
-0xb4eda0da ring_buffer_event_length vmlinux EXPORT_SYMBOL_GPL
-0x9d09e8ae ring_buffer_event_data vmlinux EXPORT_SYMBOL_GPL
-0x174c6274 ring_buffer_time_stamp vmlinux EXPORT_SYMBOL_GPL
-0x88b4ae92 ring_buffer_normalize_time_stamp vmlinux EXPORT_SYMBOL_GPL
-0x6198dfea __ring_buffer_alloc vmlinux EXPORT_SYMBOL_GPL
-0xca9a1d5e ring_buffer_free vmlinux EXPORT_SYMBOL_GPL
-0x18008c59 ring_buffer_resize vmlinux EXPORT_SYMBOL_GPL
-0xa4b07fe7 ring_buffer_change_overwrite vmlinux EXPORT_SYMBOL_GPL
-0xfe1b2f45 ring_buffer_unlock_commit vmlinux EXPORT_SYMBOL_GPL
-0x93255b2b ring_buffer_lock_reserve vmlinux EXPORT_SYMBOL_GPL
-0x885528a6 ring_buffer_discard_commit vmlinux EXPORT_SYMBOL_GPL
-0xd260af0d ring_buffer_write vmlinux EXPORT_SYMBOL_GPL
-0x3c681dc4 ring_buffer_record_disable vmlinux EXPORT_SYMBOL_GPL
-0xc6779093 ring_buffer_record_enable vmlinux EXPORT_SYMBOL_GPL
-0x06cca30b ring_buffer_record_off vmlinux EXPORT_SYMBOL_GPL
-0xf2967796 ring_buffer_record_on vmlinux EXPORT_SYMBOL_GPL
-0x98ee62b2 ring_buffer_record_disable_cpu vmlinux EXPORT_SYMBOL_GPL
-0x31a95e8b ring_buffer_record_enable_cpu vmlinux EXPORT_SYMBOL_GPL
-0xd31a2ac5 ring_buffer_oldest_event_ts vmlinux EXPORT_SYMBOL_GPL
-0xc3de65ff ring_buffer_bytes_cpu vmlinux EXPORT_SYMBOL_GPL
-0x3061cfce ring_buffer_entries_cpu vmlinux EXPORT_SYMBOL_GPL
-0x2a62cb3a ring_buffer_overrun_cpu vmlinux EXPORT_SYMBOL_GPL
-0x682ff057 ring_buffer_commit_overrun_cpu vmlinux EXPORT_SYMBOL_GPL
-0x956ac400 ring_buffer_dropped_events_cpu vmlinux EXPORT_SYMBOL_GPL
-0x961286e0 ring_buffer_read_events_cpu vmlinux EXPORT_SYMBOL_GPL
-0xea38036f ring_buffer_entries vmlinux EXPORT_SYMBOL_GPL
-0xa4ab7c1c ring_buffer_overruns vmlinux EXPORT_SYMBOL_GPL
-0xb0b85f47 ring_buffer_iter_reset vmlinux EXPORT_SYMBOL_GPL
-0x9aeacb87 ring_buffer_iter_empty vmlinux EXPORT_SYMBOL_GPL
-0xd9e24457 ring_buffer_peek vmlinux EXPORT_SYMBOL_GPL
-0x5b21ceff ring_buffer_iter_peek vmlinux EXPORT_SYMBOL_GPL
-0x40f8b94e ring_buffer_iter_dropped vmlinux EXPORT_SYMBOL_GPL
-0x5e85415b ring_buffer_consume vmlinux EXPORT_SYMBOL_GPL
-0x60ebc96f ring_buffer_read_prepare vmlinux EXPORT_SYMBOL_GPL
-0xfb32b30f ring_buffer_read_prepare_sync vmlinux EXPORT_SYMBOL_GPL
-0x5091b823 ring_buffer_read_start vmlinux EXPORT_SYMBOL_GPL
-0x3a536bd7 ring_buffer_read_finish vmlinux EXPORT_SYMBOL_GPL
-0xef70eb7e ring_buffer_iter_advance vmlinux EXPORT_SYMBOL_GPL
-0x9b6ec967 ring_buffer_size vmlinux EXPORT_SYMBOL_GPL
-0x7e7e3f58 ring_buffer_reset_cpu vmlinux EXPORT_SYMBOL_GPL
-0x6fcef6ab ring_buffer_reset vmlinux EXPORT_SYMBOL_GPL
-0x788bfbad ring_buffer_empty vmlinux EXPORT_SYMBOL_GPL
-0x412bc681 ring_buffer_empty_cpu vmlinux EXPORT_SYMBOL_GPL
-0xfe8cdb84 ring_buffer_alloc_read_page vmlinux EXPORT_SYMBOL_GPL
-0x0f180070 ring_buffer_free_read_page vmlinux EXPORT_SYMBOL_GPL
-0x77222306 ring_buffer_read_page vmlinux EXPORT_SYMBOL_GPL
-0x9593ef31 register_ftrace_export vmlinux EXPORT_SYMBOL_GPL
-0x81f372a2 unregister_ftrace_export vmlinux EXPORT_SYMBOL_GPL
-0x15691695 trace_array_put vmlinux EXPORT_SYMBOL_GPL
-0x10138352 tracing_on vmlinux EXPORT_SYMBOL_GPL
-0xede1504e __trace_array_puts vmlinux EXPORT_SYMBOL_GPL
-0x2d41e6f5 __trace_puts vmlinux EXPORT_SYMBOL_GPL
-0xb1e25684 __trace_bputs vmlinux EXPORT_SYMBOL_GPL
-0x369fcd70 tracing_snapshot vmlinux EXPORT_SYMBOL_GPL
-0xd32850f8 tracing_snapshot_cond vmlinux EXPORT_SYMBOL_GPL
-0x90950e96 tracing_cond_snapshot_data vmlinux EXPORT_SYMBOL_GPL
-0xe4971ade tracing_alloc_snapshot vmlinux EXPORT_SYMBOL_GPL
-0x697c5d0d tracing_snapshot_alloc vmlinux EXPORT_SYMBOL_GPL
-0xbebd6aee tracing_snapshot_cond_enable vmlinux EXPORT_SYMBOL_GPL
-0xab3d2eae tracing_snapshot_cond_disable vmlinux EXPORT_SYMBOL_GPL
-0x7944e0fc tracing_off vmlinux EXPORT_SYMBOL_GPL
-0x74baf17a tracing_is_on vmlinux EXPORT_SYMBOL_GPL
-0x7381287f trace_handle_return vmlinux EXPORT_SYMBOL_GPL
-0xb5b68874 trace_event_buffer_lock_reserve vmlinux EXPORT_SYMBOL_GPL
-0x7ee1befd trace_event_buffer_commit vmlinux EXPORT_SYMBOL_GPL
-0x9430b198 trace_dump_stack vmlinux EXPORT_SYMBOL_GPL
-0xa2e1b3ef trace_printk_init_buffers vmlinux EXPORT_SYMBOL_GPL
-0x3cd1b510 trace_vbprintk vmlinux EXPORT_SYMBOL_GPL
-0xee349542 trace_array_printk vmlinux EXPORT_SYMBOL_GPL
-0x48c04606 trace_array_init_printk vmlinux EXPORT_SYMBOL_GPL
-0xc3708747 trace_vprintk vmlinux EXPORT_SYMBOL_GPL
-0x0710eefe trace_array_get_by_name vmlinux EXPORT_SYMBOL_GPL
-0xdd697be9 trace_array_destroy vmlinux EXPORT_SYMBOL_GPL
-0xaaa918c9 ftrace_dump vmlinux EXPORT_SYMBOL_GPL
-0x99078b39 trace_print_flags_seq vmlinux EXPORT_SYMBOL
-0xcc5c2df4 trace_print_symbols_seq vmlinux EXPORT_SYMBOL
-0x9a58dd2d trace_print_bitmask_seq vmlinux EXPORT_SYMBOL_GPL
-0xe02ba436 trace_print_hex_seq vmlinux EXPORT_SYMBOL
-0xc3bc72ad trace_print_array_seq vmlinux EXPORT_SYMBOL
-0x81ac5e33 trace_print_hex_dump_seq vmlinux EXPORT_SYMBOL
-0x6eb54295 trace_raw_output_prep vmlinux EXPORT_SYMBOL
-0xa7403428 trace_event_printf vmlinux EXPORT_SYMBOL
-0x4b87373d trace_output_call vmlinux EXPORT_SYMBOL_GPL
-0xe1c66a2f register_trace_event vmlinux EXPORT_SYMBOL_GPL
-0x22ce4a87 unregister_trace_event vmlinux EXPORT_SYMBOL_GPL
-0x525d0aa3 trace_seq_printf vmlinux EXPORT_SYMBOL_GPL
-0xec5ad73b trace_seq_bitmask vmlinux EXPORT_SYMBOL_GPL
-0x910bdf6b trace_seq_vprintf vmlinux EXPORT_SYMBOL_GPL
-0xc43e92b9 trace_seq_bprintf vmlinux EXPORT_SYMBOL_GPL
-0x1741ddee trace_seq_puts vmlinux EXPORT_SYMBOL_GPL
-0x1b5f4377 trace_seq_putc vmlinux EXPORT_SYMBOL_GPL
-0x24709b2f trace_seq_putmem vmlinux EXPORT_SYMBOL_GPL
-0x11e08f96 trace_seq_putmem_hex vmlinux EXPORT_SYMBOL_GPL
-0x4ddbece3 trace_seq_path vmlinux EXPORT_SYMBOL_GPL
-0xc839c1ce trace_seq_to_user vmlinux EXPORT_SYMBOL_GPL
-0xd08adb2b trace_seq_hex_dump vmlinux EXPORT_SYMBOL
-0xc7975de0 trace_seq_acquire vmlinux EXPORT_SYMBOL
-0xa20d01ba __trace_bprintk vmlinux EXPORT_SYMBOL_GPL
-0x31019477 __ftrace_vbprintk vmlinux EXPORT_SYMBOL_GPL
-0x133969d7 __trace_printk vmlinux EXPORT_SYMBOL_GPL
-0x7e3bdecd __ftrace_vprintk vmlinux EXPORT_SYMBOL_GPL
-0x294d93fd __blk_trace_note_message vmlinux EXPORT_SYMBOL_GPL
-0x50c620a2 blk_trace_remove vmlinux EXPORT_SYMBOL_GPL
-0x98fc7da6 blk_trace_setup vmlinux EXPORT_SYMBOL_GPL
-0x9b4782af blk_trace_startstop vmlinux EXPORT_SYMBOL_GPL
-0xa0f3d589 blk_add_driver_data vmlinux EXPORT_SYMBOL_GPL
-0x2bd8a8bb blk_fill_rwbs vmlinux EXPORT_SYMBOL_GPL
-0x231640eb trace_define_field vmlinux EXPORT_SYMBOL_GPL
-0xd6b9aa0f trace_event_raw_init vmlinux EXPORT_SYMBOL_GPL
-0x31eab785 trace_event_ignore_this_pid vmlinux EXPORT_SYMBOL_GPL
-0x2f22f356 trace_event_buffer_reserve vmlinux EXPORT_SYMBOL_GPL
-0xfe9b9107 trace_event_reg vmlinux EXPORT_SYMBOL_GPL
-0xd217e9e6 trace_set_clr_event vmlinux EXPORT_SYMBOL_GPL
-0xb0997e4c trace_array_set_clr_event vmlinux EXPORT_SYMBOL_GPL
-0x1c58bb22 trace_add_event_call vmlinux EXPORT_SYMBOL_GPL
-0xac5750cc trace_remove_event_call vmlinux EXPORT_SYMBOL_GPL
-0x69a3fca8 trace_get_event_file vmlinux EXPORT_SYMBOL_GPL
-0x6ca9aef0 trace_put_event_file vmlinux EXPORT_SYMBOL_GPL
-0xad5f0017 perf_trace_buf_alloc vmlinux EXPORT_SYMBOL_GPL
-0xe7d6d2d4 filter_match_preds vmlinux EXPORT_SYMBOL_GPL
-0x35a47b17 event_triggers_call vmlinux EXPORT_SYMBOL_GPL
-0xd4b1db4e __trace_trigger_soft_disabled vmlinux EXPORT_SYMBOL_GPL
-0x29333900 event_triggers_post_call vmlinux EXPORT_SYMBOL_GPL
-0x074f98db synth_event_add_field vmlinux EXPORT_SYMBOL_GPL
-0x093786cf synth_event_add_field_str vmlinux EXPORT_SYMBOL_GPL
-0x84ef27f5 synth_event_add_fields vmlinux EXPORT_SYMBOL_GPL
-0xeaef0b3f __synth_event_gen_cmd_start vmlinux EXPORT_SYMBOL_GPL
-0xda45f2d4 synth_event_gen_cmd_array_start vmlinux EXPORT_SYMBOL_GPL
-0xb22b8b35 synth_event_create vmlinux EXPORT_SYMBOL_GPL
-0x64e27c4f synth_event_delete vmlinux EXPORT_SYMBOL_GPL
-0x2b6d960d synth_event_cmd_init vmlinux EXPORT_SYMBOL_GPL
-0x09655365 synth_event_trace vmlinux EXPORT_SYMBOL_GPL
-0x4c4fc08f synth_event_trace_array vmlinux EXPORT_SYMBOL_GPL
-0xb9d1f030 synth_event_trace_start vmlinux EXPORT_SYMBOL_GPL
-0x255ee59e synth_event_add_next_val vmlinux EXPORT_SYMBOL_GPL
-0xaa13621d synth_event_add_val vmlinux EXPORT_SYMBOL_GPL
-0x6cc0c0bc synth_event_trace_end vmlinux EXPORT_SYMBOL_GPL
-0x1c306718 bpf_trace_run1 vmlinux EXPORT_SYMBOL_GPL
-0xb3f79588 bpf_trace_run2 vmlinux EXPORT_SYMBOL_GPL
-0xf6b9e4f0 bpf_trace_run3 vmlinux EXPORT_SYMBOL_GPL
-0x5d0dc54a bpf_trace_run4 vmlinux EXPORT_SYMBOL_GPL
-0x1d10477e bpf_trace_run5 vmlinux EXPORT_SYMBOL_GPL
-0x07534276 bpf_trace_run6 vmlinux EXPORT_SYMBOL_GPL
-0xe6172940 bpf_trace_run7 vmlinux EXPORT_SYMBOL_GPL
-0x504f771f bpf_trace_run8 vmlinux EXPORT_SYMBOL_GPL
-0x2e9b0346 bpf_trace_run9 vmlinux EXPORT_SYMBOL_GPL
-0x4604301b bpf_trace_run10 vmlinux EXPORT_SYMBOL_GPL
-0xf9466e53 bpf_trace_run11 vmlinux EXPORT_SYMBOL_GPL
-0x24a0dd74 bpf_trace_run12 vmlinux EXPORT_SYMBOL_GPL
-0x532b90b5 kprobe_event_cmd_init vmlinux EXPORT_SYMBOL_GPL
-0x890f4f97 __kprobe_event_gen_cmd_start vmlinux EXPORT_SYMBOL_GPL
-0x7afcb7db __kprobe_event_add_fields vmlinux EXPORT_SYMBOL_GPL
-0xe3b09712 kprobe_event_delete vmlinux EXPORT_SYMBOL_GPL
-0xa4d8cd58 __tracepoint_error_report_end vmlinux EXPORT_SYMBOL_GPL
-0xd29c1f10 __traceiter_error_report_end vmlinux EXPORT_SYMBOL_GPL
-0xf64f1e29 __SCK__tp_func_error_report_end vmlinux EXPORT_SYMBOL_GPL
-0x31706316 __SCT__tp_func_error_report_end vmlinux EXPORT_SYMBOL_GPL
-0x24953e07 __tracepoint_suspend_resume vmlinux EXPORT_SYMBOL_GPL
-0x05883efb __traceiter_suspend_resume vmlinux EXPORT_SYMBOL_GPL
-0xd3b1e520 __SCK__tp_func_suspend_resume vmlinux EXPORT_SYMBOL_GPL
-0x127c109b __SCT__tp_func_suspend_resume vmlinux EXPORT_SYMBOL_GPL
-0x2b755daf __tracepoint_cpu_idle vmlinux EXPORT_SYMBOL_GPL
-0x53d7c01e __traceiter_cpu_idle vmlinux EXPORT_SYMBOL_GPL
-0x39854591 __SCK__tp_func_cpu_idle vmlinux EXPORT_SYMBOL_GPL
-0xbd99e873 __SCT__tp_func_cpu_idle vmlinux EXPORT_SYMBOL_GPL
-0xd21dca30 __tracepoint_cpu_frequency vmlinux EXPORT_SYMBOL_GPL
-0xead3e41b __traceiter_cpu_frequency vmlinux EXPORT_SYMBOL_GPL
-0x9491b0a4 __SCK__tp_func_cpu_frequency vmlinux EXPORT_SYMBOL_GPL
-0x2386c0ea __SCT__tp_func_cpu_frequency vmlinux EXPORT_SYMBOL_GPL
-0xea60c04f __tracepoint_powernv_throttle vmlinux EXPORT_SYMBOL_GPL
-0x69637b2c __traceiter_powernv_throttle vmlinux EXPORT_SYMBOL_GPL
-0x21a48e52 __SCK__tp_func_powernv_throttle vmlinux EXPORT_SYMBOL_GPL
-0xd0df12ba __SCT__tp_func_powernv_throttle vmlinux EXPORT_SYMBOL_GPL
-0x0206d386 __tracepoint_rpm_return_int vmlinux EXPORT_SYMBOL_GPL
-0xcde71fb3 __traceiter_rpm_return_int vmlinux EXPORT_SYMBOL_GPL
-0xf25ac978 __SCK__tp_func_rpm_return_int vmlinux EXPORT_SYMBOL_GPL
-0x495a4221 __SCT__tp_func_rpm_return_int vmlinux EXPORT_SYMBOL_GPL
-0xb6e48635 __tracepoint_rpm_idle vmlinux EXPORT_SYMBOL_GPL
-0x374b134a __traceiter_rpm_idle vmlinux EXPORT_SYMBOL_GPL
-0xb8054a08 __SCK__tp_func_rpm_idle vmlinux EXPORT_SYMBOL_GPL
-0x6759bd00 __SCT__tp_func_rpm_idle vmlinux EXPORT_SYMBOL_GPL
-0xb5713518 __tracepoint_rpm_suspend vmlinux EXPORT_SYMBOL_GPL
-0x0d9bbc2f __traceiter_rpm_suspend vmlinux EXPORT_SYMBOL_GPL
-0x29800979 __SCK__tp_func_rpm_suspend vmlinux EXPORT_SYMBOL_GPL
-0x1c764526 __SCT__tp_func_rpm_suspend vmlinux EXPORT_SYMBOL_GPL
-0xa0b9ad5c __tracepoint_rpm_resume vmlinux EXPORT_SYMBOL_GPL
-0x947ccf2d __traceiter_rpm_resume vmlinux EXPORT_SYMBOL_GPL
-0x58836598 __SCK__tp_func_rpm_resume vmlinux EXPORT_SYMBOL_GPL
-0xd1e9b2ad __SCT__tp_func_rpm_resume vmlinux EXPORT_SYMBOL_GPL
-0xc46324f6 dynevent_create vmlinux EXPORT_SYMBOL_GPL
-0x7d387f4e irq_work_queue vmlinux EXPORT_SYMBOL_GPL
-0x541bd60a irq_work_run vmlinux EXPORT_SYMBOL_GPL
-0x7571bf01 irq_work_sync vmlinux EXPORT_SYMBOL_GPL
-0x251a298a bpf_prog_alloc vmlinux EXPORT_SYMBOL_GPL
-0xc9827693 __bpf_call_base vmlinux EXPORT_SYMBOL_GPL
-0x476cbd0e bpf_prog_select_runtime vmlinux EXPORT_SYMBOL_GPL
-0x366c9655 bpf_empty_prog_array vmlinux EXPORT_SYMBOL
-0x4b1641d0 bpf_prog_free vmlinux EXPORT_SYMBOL_GPL
-0x1b28bad8 bpf_event_output vmlinux EXPORT_SYMBOL_GPL
-0xf84bd6ee bpf_stats_enabled_key vmlinux EXPORT_SYMBOL
-0xb281ef28 __tracepoint_xdp_exception vmlinux EXPORT_SYMBOL_GPL
-0xd09acb7e __traceiter_xdp_exception vmlinux EXPORT_SYMBOL_GPL
-0x7322c631 __SCK__tp_func_xdp_exception vmlinux EXPORT_SYMBOL_GPL
-0x8fa9d9e8 __SCT__tp_func_xdp_exception vmlinux EXPORT_SYMBOL_GPL
-0xea988e31 __tracepoint_xdp_bulk_tx vmlinux EXPORT_SYMBOL_GPL
-0x2047bfc2 __traceiter_xdp_bulk_tx vmlinux EXPORT_SYMBOL_GPL
-0x09d5178d __SCK__tp_func_xdp_bulk_tx vmlinux EXPORT_SYMBOL_GPL
-0x872d4f7c __SCT__tp_func_xdp_bulk_tx vmlinux EXPORT_SYMBOL_GPL
-0x716509bf bpf_map_put vmlinux EXPORT_SYMBOL_GPL
-0xdaf33328 bpf_map_inc vmlinux EXPORT_SYMBOL_GPL
-0xdc5dc7c4 bpf_map_inc_with_uref vmlinux EXPORT_SYMBOL_GPL
-0x4078637f bpf_map_get vmlinux EXPORT_SYMBOL
-0x9bc20bce bpf_map_inc_not_zero vmlinux EXPORT_SYMBOL_GPL
-0x835ed549 bpf_prog_put vmlinux EXPORT_SYMBOL_GPL
-0xaaca7659 bpf_prog_add vmlinux EXPORT_SYMBOL_GPL
-0xdb837a0f bpf_prog_sub vmlinux EXPORT_SYMBOL_GPL
-0xed9e4594 bpf_prog_inc vmlinux EXPORT_SYMBOL_GPL
-0xb11e8cbf bpf_prog_inc_not_zero vmlinux EXPORT_SYMBOL_GPL
-0x6e24d0d5 bpf_prog_get_type_dev vmlinux EXPORT_SYMBOL_GPL
-0xde00825c bpf_link_put vmlinux EXPORT_SYMBOL
-0x8b23848d bpf_link_get_from_fd vmlinux EXPORT_SYMBOL
-0x8fb32e82 kern_sys_bpf vmlinux EXPORT_SYMBOL
-0x4ef84b2a bpf_prog_get_type_path vmlinux EXPORT_SYMBOL
-0xeab4c157 bpf_preload_ops vmlinux EXPORT_SYMBOL_GPL
-0x7d1bb1d4 tnum_strn vmlinux EXPORT_SYMBOL_GPL
-0x46253c27 bpf_verifier_log_write vmlinux EXPORT_SYMBOL_GPL
-0x751d2e97 bpf_log vmlinux EXPORT_SYMBOL_GPL
-0x0ecfea88 btf_type_by_id vmlinux EXPORT_SYMBOL_GPL
-0x4985083c register_btf_kfunc_id_set vmlinux EXPORT_SYMBOL_GPL
-0xb1e4b1bd register_btf_fmodret_id_set vmlinux EXPORT_SYMBOL_GPL
-0xb9bc335e register_btf_id_dtor_kfuncs vmlinux EXPORT_SYMBOL_GPL
-0xf477deac bpf_offload_dev_match vmlinux EXPORT_SYMBOL_GPL
-0x58bfd7e6 bpf_offload_dev_netdev_register vmlinux EXPORT_SYMBOL_GPL
-0xde29fbb5 bpf_offload_dev_netdev_unregister vmlinux EXPORT_SYMBOL_GPL
-0xe80216b9 bpf_offload_dev_create vmlinux EXPORT_SYMBOL_GPL
-0x352ec68b bpf_offload_dev_destroy vmlinux EXPORT_SYMBOL_GPL
-0x1f563160 bpf_offload_dev_priv vmlinux EXPORT_SYMBOL_GPL
-0x8ec760b0 cgroup_bpf_enabled_key vmlinux EXPORT_SYMBOL
-0x3258336d __cgroup_bpf_run_filter_skb vmlinux EXPORT_SYMBOL
-0x976006f8 __cgroup_bpf_run_filter_sk vmlinux EXPORT_SYMBOL
-0xb50b9653 __cgroup_bpf_run_filter_sock_addr vmlinux EXPORT_SYMBOL
-0x454251ac __cgroup_bpf_run_filter_sock_ops vmlinux EXPORT_SYMBOL
-0x3b7a7163 __static_call_return0 vmlinux EXPORT_SYMBOL_GPL
-0x9f910b68 __static_call_update vmlinux EXPORT_SYMBOL_GPL
-0xeeab8204 perf_event_disable vmlinux EXPORT_SYMBOL_GPL
-0x4630c4af perf_event_enable vmlinux EXPORT_SYMBOL_GPL
-0x31b0cf6f perf_event_addr_filters_sync vmlinux EXPORT_SYMBOL_GPL
-0xf4879918 perf_event_refresh vmlinux EXPORT_SYMBOL_GPL
-0xbdccdfec perf_event_release_kernel vmlinux EXPORT_SYMBOL_GPL
-0x3a654de6 perf_event_read_value vmlinux EXPORT_SYMBOL_GPL
-0xe6a21af1 perf_event_pause vmlinux EXPORT_SYMBOL_GPL
-0x133c250a perf_event_period vmlinux EXPORT_SYMBOL_GPL
-0x88736202 perf_event_update_userpage vmlinux EXPORT_SYMBOL_GPL
-0x77f24400 perf_register_guest_info_callbacks vmlinux EXPORT_SYMBOL_GPL
-0x6bbd8324 perf_unregister_guest_info_callbacks vmlinux EXPORT_SYMBOL_GPL
-0x90982f03 perf_report_aux_output_id vmlinux EXPORT_SYMBOL_GPL
-0x4ef5bcf4 perf_swevent_get_recursion_context vmlinux EXPORT_SYMBOL_GPL
-0xfabf8f2f perf_trace_run_bpf_submit vmlinux EXPORT_SYMBOL_GPL
-0x29ac2a22 perf_tp_event vmlinux EXPORT_SYMBOL_GPL
-0x415226c4 perf_pmu_register vmlinux EXPORT_SYMBOL_GPL
-0xbd037c9b perf_pmu_unregister vmlinux EXPORT_SYMBOL_GPL
-0x328ffbcf perf_event_create_kernel_counter vmlinux EXPORT_SYMBOL_GPL
-0xb73dbe4a perf_pmu_migrate_context vmlinux EXPORT_SYMBOL_GPL
-0xeea68238 perf_event_sysfs_show vmlinux EXPORT_SYMBOL_GPL
-0xf5c11385 perf_aux_output_flag vmlinux EXPORT_SYMBOL_GPL
-0xb87b5856 perf_aux_output_begin vmlinux EXPORT_SYMBOL_GPL
-0xfdeb0288 perf_aux_output_end vmlinux EXPORT_SYMBOL_GPL
-0x8e1f7b18 perf_aux_output_skip vmlinux EXPORT_SYMBOL_GPL
-0xe05dfb9c perf_get_aux vmlinux EXPORT_SYMBOL_GPL
-0xcd3a04c8 register_user_hw_breakpoint vmlinux EXPORT_SYMBOL_GPL
-0x1db5ca5f modify_user_hw_breakpoint vmlinux EXPORT_SYMBOL_GPL
-0xf04d00db unregister_hw_breakpoint vmlinux EXPORT_SYMBOL_GPL
-0x68661107 register_wide_hw_breakpoint vmlinux EXPORT_SYMBOL_GPL
-0xf0428fcd unregister_wide_hw_breakpoint vmlinux EXPORT_SYMBOL_GPL
-0xe20b29c4 uprobe_unregister vmlinux EXPORT_SYMBOL_GPL
-0x9575c755 uprobe_register vmlinux EXPORT_SYMBOL_GPL
-0x3ebd91c9 uprobe_register_refctr vmlinux EXPORT_SYMBOL_GPL
-0x7452adff user_return_notifier_register vmlinux EXPORT_SYMBOL_GPL
-0xe7232e0f user_return_notifier_unregister vmlinux EXPORT_SYMBOL_GPL
-0x56e44fa9 padata_do_parallel vmlinux EXPORT_SYMBOL
-0x63a186f3 padata_do_serial vmlinux EXPORT_SYMBOL
-0x659c9406 padata_set_cpumask vmlinux EXPORT_SYMBOL
-0xedee9763 padata_alloc vmlinux EXPORT_SYMBOL
-0xa2398230 padata_free vmlinux EXPORT_SYMBOL
-0xbd4e7a41 padata_alloc_shell vmlinux EXPORT_SYMBOL
-0xa0d2e8b7 padata_free_shell vmlinux EXPORT_SYMBOL
-0xb26a1add elfcorehdr_addr vmlinux EXPORT_SYMBOL_GPL
-0x389b64a2 static_key_count vmlinux EXPORT_SYMBOL_GPL
-0x0b8c8a23 static_key_fast_inc_not_disabled vmlinux EXPORT_SYMBOL_GPL
-0x2c834418 static_key_slow_inc vmlinux EXPORT_SYMBOL_GPL
-0x3a55981a static_key_enable_cpuslocked vmlinux EXPORT_SYMBOL_GPL
-0x6b2b69f7 static_key_enable vmlinux EXPORT_SYMBOL_GPL
-0x0e6b79af static_key_disable_cpuslocked vmlinux EXPORT_SYMBOL_GPL
-0xb912560d static_key_disable vmlinux EXPORT_SYMBOL_GPL
-0x67bfae24 jump_label_update_timeout vmlinux EXPORT_SYMBOL_GPL
-0x2f4880df static_key_slow_dec vmlinux EXPORT_SYMBOL_GPL
-0xe22948cd __static_key_slow_dec_deferred vmlinux EXPORT_SYMBOL_GPL
-0x65447ec8 __static_key_deferred_flush vmlinux EXPORT_SYMBOL_GPL
-0xe8c0eabf jump_label_rate_limit vmlinux EXPORT_SYMBOL_GPL
-0x36c75b4e context_tracking vmlinux EXPORT_SYMBOL_GPL
-0xa2c0f59a ct_idle_enter vmlinux EXPORT_SYMBOL_GPL
-0x52647db1 ct_idle_exit vmlinux EXPORT_SYMBOL_GPL
-0x95609b26 context_tracking_key vmlinux EXPORT_SYMBOL_GPL
-0x92d308d1 __ct_user_enter vmlinux EXPORT_SYMBOL_GPL
-0xbd5ef27d ct_user_enter vmlinux EXPORT_SYMBOL_GPL
-0x4f80e319 __ct_user_exit vmlinux EXPORT_SYMBOL_GPL
-0xad06c825 ct_user_exit vmlinux EXPORT_SYMBOL_GPL
-0x4d924f20 memremap vmlinux EXPORT_SYMBOL
-0x9e9fdd9d memunmap vmlinux EXPORT_SYMBOL
-0xd4fa34e5 devm_memremap vmlinux EXPORT_SYMBOL
-0xe7186224 devm_memunmap vmlinux EXPORT_SYMBOL
-0x76bc28cd verify_pkcs7_signature vmlinux EXPORT_SYMBOL_GPL
-0x90ae520b search_trusted_key vmlinux EXPORT_SYMBOL_GPL
-0xfa43cefc is_hash_blacklisted vmlinux EXPORT_SYMBOL_GPL
-0xa36f50fb is_binary_blacklisted vmlinux EXPORT_SYMBOL_GPL
-0x19734f82 filemap_check_errors vmlinux EXPORT_SYMBOL
-0xf5fa38b4 filemap_fdatawrite_wbc vmlinux EXPORT_SYMBOL
-0x8d15e265 filemap_fdatawrite vmlinux EXPORT_SYMBOL
-0x0d2d9cb0 filemap_fdatawrite_range vmlinux EXPORT_SYMBOL
-0x7dc910bb filemap_flush vmlinux EXPORT_SYMBOL
-0xe05d249a filemap_range_has_page vmlinux EXPORT_SYMBOL
-0x05b36381 filemap_fdatawait_range vmlinux EXPORT_SYMBOL
-0xc98f1565 filemap_fdatawait_range_keep_errors vmlinux EXPORT_SYMBOL
-0x4be14f52 file_fdatawait_range vmlinux EXPORT_SYMBOL
-0xa5e2c3e1 filemap_fdatawait_keep_errors vmlinux EXPORT_SYMBOL
-0x023ac9cf filemap_range_has_writeback vmlinux EXPORT_SYMBOL_GPL
-0xce2fff5b filemap_write_and_wait_range vmlinux EXPORT_SYMBOL
-0x0d488ff3 __filemap_set_wb_err vmlinux EXPORT_SYMBOL
-0x8274b021 file_check_and_advance_wb_err vmlinux EXPORT_SYMBOL
-0x179f3b4a file_write_and_wait_range vmlinux EXPORT_SYMBOL
-0xd3949209 replace_page_cache_folio vmlinux EXPORT_SYMBOL_GPL
-0x8b4f52ec filemap_add_folio vmlinux EXPORT_SYMBOL_GPL
-0x6b20d055 filemap_alloc_folio vmlinux EXPORT_SYMBOL
-0xc9b235e1 filemap_invalidate_lock_two vmlinux EXPORT_SYMBOL
-0x4195be6e filemap_invalidate_unlock_two vmlinux EXPORT_SYMBOL
-0xa950bb1d folio_wait_bit vmlinux EXPORT_SYMBOL
-0xfd4ae54e folio_wait_bit_killable vmlinux EXPORT_SYMBOL
-0x060d7e86 folio_add_wait_queue vmlinux EXPORT_SYMBOL_GPL
-0x8663fd5b folio_unlock vmlinux EXPORT_SYMBOL
-0xd4469e1e folio_end_private_2 vmlinux EXPORT_SYMBOL
-0x87fa787f folio_wait_private_2 vmlinux EXPORT_SYMBOL
-0xcd0a08c8 folio_wait_private_2_killable vmlinux EXPORT_SYMBOL
-0x7a56dbac folio_end_writeback vmlinux EXPORT_SYMBOL
-0x89f54383 __folio_lock vmlinux EXPORT_SYMBOL
-0xeb150015 __folio_lock_killable vmlinux EXPORT_SYMBOL_GPL
-0x87d748e6 page_cache_next_miss vmlinux EXPORT_SYMBOL
-0x1205e296 page_cache_prev_miss vmlinux EXPORT_SYMBOL
-0x09dc7080 __filemap_get_folio vmlinux EXPORT_SYMBOL
-0xb1c3d3a2 filemap_get_folios vmlinux EXPORT_SYMBOL
-0xfbb91314 filemap_get_folios_contig vmlinux EXPORT_SYMBOL
-0x76eb512e filemap_get_folios_tag vmlinux EXPORT_SYMBOL
-0x88619698 filemap_read vmlinux EXPORT_SYMBOL_GPL
-0xbd9a5f0b generic_file_read_iter vmlinux EXPORT_SYMBOL
-0x1b8bc90f filemap_splice_read vmlinux EXPORT_SYMBOL
-0x7e3781ca filemap_fault vmlinux EXPORT_SYMBOL
-0x796457f9 filemap_map_pages vmlinux EXPORT_SYMBOL
-0xa0088028 filemap_page_mkwrite vmlinux EXPORT_SYMBOL
-0x94f53583 generic_file_mmap vmlinux EXPORT_SYMBOL
-0x7b5414ac generic_file_readonly_mmap vmlinux EXPORT_SYMBOL
-0x4ca57ce5 read_cache_folio vmlinux EXPORT_SYMBOL
-0x49899a6f mapping_read_folio_gfp vmlinux EXPORT_SYMBOL
-0x636502f0 read_cache_page vmlinux EXPORT_SYMBOL
-0x5053cba0 read_cache_page_gfp vmlinux EXPORT_SYMBOL
-0x8c19a3b3 generic_file_direct_write vmlinux EXPORT_SYMBOL
-0x83097f2d generic_perform_write vmlinux EXPORT_SYMBOL
-0x097f1fff __generic_file_write_iter vmlinux EXPORT_SYMBOL
-0xba47d1d2 generic_file_write_iter vmlinux EXPORT_SYMBOL
-0x73d6be62 filemap_release_folio vmlinux EXPORT_SYMBOL
-0xc1945f47 mempool_exit vmlinux EXPORT_SYMBOL
-0x81e6ef06 mempool_destroy vmlinux EXPORT_SYMBOL
-0x4d97c16f mempool_init_node vmlinux EXPORT_SYMBOL
-0xdde8c764 mempool_init vmlinux EXPORT_SYMBOL
-0x89ed582d mempool_create vmlinux EXPORT_SYMBOL
-0xcd4c40a8 mempool_create_node vmlinux EXPORT_SYMBOL
-0xcb6214a3 mempool_resize vmlinux EXPORT_SYMBOL
-0xa1ecf3bf mempool_alloc vmlinux EXPORT_SYMBOL
-0xe48a7886 mempool_free vmlinux EXPORT_SYMBOL
-0xc972449f mempool_alloc_slab vmlinux EXPORT_SYMBOL
-0x8a99a016 mempool_free_slab vmlinux EXPORT_SYMBOL
-0xd35a6d31 mempool_kmalloc vmlinux EXPORT_SYMBOL
-0x6a037cf1 mempool_kfree vmlinux EXPORT_SYMBOL
-0x766a0927 mempool_alloc_pages vmlinux EXPORT_SYMBOL
-0xd985dc99 mempool_free_pages vmlinux EXPORT_SYMBOL
-0x622c7922 register_oom_notifier vmlinux EXPORT_SYMBOL_GPL
-0xc617f82c unregister_oom_notifier vmlinux EXPORT_SYMBOL_GPL
-0x64b18bbd generic_fadvise vmlinux EXPORT_SYMBOL
-0xde59060d vfs_fadvise vmlinux EXPORT_SYMBOL
-0x4531ab62 copy_from_kernel_nofault vmlinux EXPORT_SYMBOL_GPL
-0x7a98f4b4 copy_from_user_nofault vmlinux EXPORT_SYMBOL_GPL
-0xc9a4b416 copy_to_user_nofault vmlinux EXPORT_SYMBOL_GPL
-0x7682ba4e __copy_overflow vmlinux EXPORT_SYMBOL
-0x41814cb8 dirty_writeback_interval vmlinux EXPORT_SYMBOL_GPL
-0x76d3cd60 laptop_mode vmlinux EXPORT_SYMBOL
-0xafed1640 wb_writeout_inc vmlinux EXPORT_SYMBOL_GPL
-0x2b0678d3 bdi_set_max_ratio vmlinux EXPORT_SYMBOL
-0xc8e6ea7d balance_dirty_pages_ratelimited_flags vmlinux EXPORT_SYMBOL_GPL
-0xb95e9434 balance_dirty_pages_ratelimited vmlinux EXPORT_SYMBOL
-0x55f84825 tag_pages_for_writeback vmlinux EXPORT_SYMBOL
-0x53ef5ef0 write_cache_pages vmlinux EXPORT_SYMBOL
-0xc0bc2481 noop_dirty_folio vmlinux EXPORT_SYMBOL
-0x5c5556b2 filemap_dirty_folio vmlinux EXPORT_SYMBOL
-0x528e4c13 folio_redirty_for_writepage vmlinux EXPORT_SYMBOL
-0x64166649 folio_mark_dirty vmlinux EXPORT_SYMBOL
-0x684524e9 set_page_dirty_lock vmlinux EXPORT_SYMBOL
-0x79c554ef __folio_cancel_dirty vmlinux EXPORT_SYMBOL
-0x7fe54121 folio_clear_dirty_for_io vmlinux EXPORT_SYMBOL
-0x34cc6416 __folio_start_writeback vmlinux EXPORT_SYMBOL
-0xa0e3ecfc folio_wait_writeback vmlinux EXPORT_SYMBOL_GPL
-0x8f6ad0a1 folio_wait_writeback_killable vmlinux EXPORT_SYMBOL_GPL
-0x2ff6a378 folio_wait_stable vmlinux EXPORT_SYMBOL_GPL
-0x5eb64de7 page_mapping vmlinux EXPORT_SYMBOL
-0xab330f61 unlock_page vmlinux EXPORT_SYMBOL
-0xab5aec57 end_page_writeback vmlinux EXPORT_SYMBOL
-0xeeb08631 wait_on_page_writeback vmlinux EXPORT_SYMBOL_GPL
-0x3580d074 wait_for_stable_page vmlinux EXPORT_SYMBOL_GPL
-0x0748bb81 mark_page_accessed vmlinux EXPORT_SYMBOL
-0xbcf09b1d set_page_writeback vmlinux EXPORT_SYMBOL
-0xdf1a423e set_page_dirty vmlinux EXPORT_SYMBOL
-0x442b8bb9 __set_page_dirty_nobuffers vmlinux EXPORT_SYMBOL
-0x34d9a996 clear_page_dirty_for_io vmlinux EXPORT_SYMBOL
-0x09d62b56 redirty_page_for_writepage vmlinux EXPORT_SYMBOL
-0xdfa39c90 add_to_page_cache_lru vmlinux EXPORT_SYMBOL
-0xc70e18b2 pagecache_get_page vmlinux EXPORT_SYMBOL
-0xaa9c7ea7 grab_cache_page_write_begin vmlinux EXPORT_SYMBOL
-0x32f5bc2b file_ra_state_init vmlinux EXPORT_SYMBOL_GPL
-0xb2688547 page_cache_ra_unbounded vmlinux EXPORT_SYMBOL_GPL
-0xf84c66ae page_cache_sync_ra vmlinux EXPORT_SYMBOL_GPL
-0xea206d21 page_cache_async_ra vmlinux EXPORT_SYMBOL_GPL
-0x6326e4f7 readahead_expand vmlinux EXPORT_SYMBOL
-0x11a2e535 __folio_put vmlinux EXPORT_SYMBOL
-0xf0009fee put_pages_list vmlinux EXPORT_SYMBOL
-0x5010a5bb folio_mark_accessed vmlinux EXPORT_SYMBOL
-0x46e66745 folio_add_lru vmlinux EXPORT_SYMBOL
-0xfaf549e2 folios_put_refs vmlinux EXPORT_SYMBOL
-0xeb667520 release_pages vmlinux EXPORT_SYMBOL
-0xc5cfd5d3 __folio_batch_release vmlinux EXPORT_SYMBOL
-0x1589db54 folio_invalidate vmlinux EXPORT_SYMBOL_GPL
-0x43c50eff generic_error_remove_page vmlinux EXPORT_SYMBOL
-0xb9851f74 truncate_inode_pages_range vmlinux EXPORT_SYMBOL
-0x8356e8ac truncate_inode_pages vmlinux EXPORT_SYMBOL
-0x59e3a85e truncate_inode_pages_final vmlinux EXPORT_SYMBOL
-0x4a4ae5c3 invalidate_mapping_pages vmlinux EXPORT_SYMBOL
-0x3dea0c67 invalidate_inode_pages2_range vmlinux EXPORT_SYMBOL_GPL
-0x667f244d invalidate_inode_pages2 vmlinux EXPORT_SYMBOL_GPL
-0x7ae98201 truncate_pagecache vmlinux EXPORT_SYMBOL
-0xdf9c05e3 truncate_setsize vmlinux EXPORT_SYMBOL
-0x0d6969a1 pagecache_isize_extended vmlinux EXPORT_SYMBOL
-0x706bac0d truncate_pagecache_range vmlinux EXPORT_SYMBOL
-0x48fc9974 register_shrinker vmlinux EXPORT_SYMBOL
-0x6c43ede1 unregister_shrinker vmlinux EXPORT_SYMBOL
-0xd73c8c2b synchronize_shrinkers vmlinux EXPORT_SYMBOL
-0x144645f9 reclaim_pages vmlinux EXPORT_SYMBOL_GPL
-0x0eb6c7df check_move_unevictable_folios vmlinux EXPORT_SYMBOL_GPL
-0xc3c5e3b6 shmem_truncate_range vmlinux EXPORT_SYMBOL_GPL
-0xd0c3ad84 shmem_aops vmlinux EXPORT_SYMBOL
-0x4f17e3f5 shmem_file_setup vmlinux EXPORT_SYMBOL_GPL
-0x4c40015b shmem_file_setup_with_mnt vmlinux EXPORT_SYMBOL_GPL
-0x2fe071ec shmem_read_folio_gfp vmlinux EXPORT_SYMBOL_GPL
-0xd47989d9 shmem_read_mapping_page_gfp vmlinux EXPORT_SYMBOL_GPL
-0xf474fdcb kfree_const vmlinux EXPORT_SYMBOL
-0x2d39b0a7 kstrdup vmlinux EXPORT_SYMBOL
-0x365e7911 kstrdup_const vmlinux EXPORT_SYMBOL
-0x9eacf8a5 kstrndup vmlinux EXPORT_SYMBOL
-0x66b4cc41 kmemdup vmlinux EXPORT_SYMBOL
-0xf88ecec4 kvmemdup vmlinux EXPORT_SYMBOL
-0xb3f548ad kmemdup_nul vmlinux EXPORT_SYMBOL
-0x9291cd3b memdup_user vmlinux EXPORT_SYMBOL
-0x90576ec4 vmemdup_user vmlinux EXPORT_SYMBOL
-0x41482d8b strndup_user vmlinux EXPORT_SYMBOL
-0x1d07e365 memdup_user_nul vmlinux EXPORT_SYMBOL
-0xb561f24f vma_set_file vmlinux EXPORT_SYMBOL
-0x3c2edbcf __account_locked_vm vmlinux EXPORT_SYMBOL_GPL
-0x0f8cf2cf account_locked_vm vmlinux EXPORT_SYMBOL_GPL
-0xb67917fd vm_mmap vmlinux EXPORT_SYMBOL
-0x599fb41c kvmalloc_node vmlinux EXPORT_SYMBOL
-0x7aa1756e kvfree vmlinux EXPORT_SYMBOL
-0x7412ed5b kvfree_sensitive vmlinux EXPORT_SYMBOL
-0x7ce58981 kvrealloc vmlinux EXPORT_SYMBOL
-0xee883b06 __vmalloc_array vmlinux EXPORT_SYMBOL
-0x2aabcdc8 vmalloc_array vmlinux EXPORT_SYMBOL
-0x40f76a86 __vcalloc vmlinux EXPORT_SYMBOL
-0xd7482f05 vcalloc vmlinux EXPORT_SYMBOL
-0x6defe92d folio_mapping vmlinux EXPORT_SYMBOL
-0x26520970 vm_memory_committed vmlinux EXPORT_SYMBOL_GPL
-0xcb561441 mem_dump_obj vmlinux EXPORT_SYMBOL_GPL
-0x412f893c page_offline_begin vmlinux EXPORT_SYMBOL
-0xfa08c34a page_offline_end vmlinux EXPORT_SYMBOL
-0x8726ecd8 vm_event_states vmlinux EXPORT_SYMBOL
-0x7278d328 all_vm_events vmlinux EXPORT_SYMBOL_GPL
-0x02ba1187 vm_zone_stat vmlinux EXPORT_SYMBOL
-0x7d18cc38 vm_node_stat vmlinux EXPORT_SYMBOL
-0xb4f9d10f __mod_zone_page_state vmlinux EXPORT_SYMBOL
-0xc460fb5c __mod_node_page_state vmlinux EXPORT_SYMBOL
-0x4940bd8b __inc_zone_page_state vmlinux EXPORT_SYMBOL
-0x063abbf5 __inc_node_page_state vmlinux EXPORT_SYMBOL
-0x69080f69 __dec_zone_page_state vmlinux EXPORT_SYMBOL
-0xe2f687fd __dec_node_page_state vmlinux EXPORT_SYMBOL
-0x937c7084 mod_zone_page_state vmlinux EXPORT_SYMBOL
-0xfba5e937 inc_zone_page_state vmlinux EXPORT_SYMBOL
-0xdbed5bd5 dec_zone_page_state vmlinux EXPORT_SYMBOL
-0x56eb8111 mod_node_page_state vmlinux EXPORT_SYMBOL
-0x0b8479b3 inc_node_page_state vmlinux EXPORT_SYMBOL
-0xef4845bb dec_node_page_state vmlinux EXPORT_SYMBOL
-0xef61ca28 noop_backing_dev_info vmlinux EXPORT_SYMBOL_GPL
-0x2923ec9d bdi_alloc vmlinux EXPORT_SYMBOL
-0xb0993d1c bdi_register vmlinux EXPORT_SYMBOL
-0xad85ced5 bdi_unregister vmlinux EXPORT_SYMBOL
-0xe45273fe bdi_put vmlinux EXPORT_SYMBOL
-0x7273cf6f inode_to_bdi vmlinux EXPORT_SYMBOL
-0xb25f7cd3 bdi_dev_name vmlinux EXPORT_SYMBOL_GPL
-0x138d06cc init_on_alloc vmlinux EXPORT_SYMBOL
-0xf6f9d58d init_on_free vmlinux EXPORT_SYMBOL
-0xaf793668 __alloc_percpu_gfp vmlinux EXPORT_SYMBOL_GPL
-0x949f7342 __alloc_percpu vmlinux EXPORT_SYMBOL_GPL
-0xc9ec4e21 free_percpu vmlinux EXPORT_SYMBOL_GPL
-0x578a1ff3 kmem_cache_size vmlinux EXPORT_SYMBOL
-0x4e2390e0 kmem_cache_create_usercopy vmlinux EXPORT_SYMBOL
-0x26136e89 kmem_cache_create vmlinux EXPORT_SYMBOL
-0xe2b29ec9 kmem_cache_destroy vmlinux EXPORT_SYMBOL
-0x51bd2a39 kmem_cache_shrink vmlinux EXPORT_SYMBOL
-0x2fc1e0fe kmem_valid_obj vmlinux EXPORT_SYMBOL_GPL
-0x0fd4610e kmem_dump_obj vmlinux EXPORT_SYMBOL_GPL
-0xde589bca kmalloc_caches vmlinux EXPORT_SYMBOL
-0xcc392eea kmalloc_size_roundup vmlinux EXPORT_SYMBOL
-0x1ba59527 __kmalloc_node vmlinux EXPORT_SYMBOL
-0xeb233a45 __kmalloc vmlinux EXPORT_SYMBOL
-0x4e547048 __kmalloc_node_track_caller vmlinux EXPORT_SYMBOL
-0x037a0cba kfree vmlinux EXPORT_SYMBOL
-0x2eab4f95 kmalloc_trace vmlinux EXPORT_SYMBOL
-0x01c0b111 kmalloc_node_trace vmlinux EXPORT_SYMBOL
-0x9ed12e20 kmalloc_large vmlinux EXPORT_SYMBOL
-0x48d3fa27 kmalloc_large_node vmlinux EXPORT_SYMBOL
-0xc8dcc62a krealloc vmlinux EXPORT_SYMBOL
-0xd0760fc0 kfree_sensitive vmlinux EXPORT_SYMBOL
-0x04ea5d10 ksize vmlinux EXPORT_SYMBOL
-0x5d1d756c __tracepoint_kmalloc vmlinux EXPORT_SYMBOL
-0x16a7b16f __traceiter_kmalloc vmlinux EXPORT_SYMBOL
-0x76a93275 __SCK__tp_func_kmalloc vmlinux EXPORT_SYMBOL
-0x17f813a9 __SCT__tp_func_kmalloc vmlinux EXPORT_SYMBOL
-0xf95edc5e __tracepoint_kmem_cache_alloc vmlinux EXPORT_SYMBOL
-0x2835b6e7 __traceiter_kmem_cache_alloc vmlinux EXPORT_SYMBOL
-0x63347dc6 __SCK__tp_func_kmem_cache_alloc vmlinux EXPORT_SYMBOL
-0xd338ea7e __SCT__tp_func_kmem_cache_alloc vmlinux EXPORT_SYMBOL
-0x6c223169 __tracepoint_kfree vmlinux EXPORT_SYMBOL
-0x5ae1154b __traceiter_kfree vmlinux EXPORT_SYMBOL
-0x71a98b69 __SCK__tp_func_kfree vmlinux EXPORT_SYMBOL
-0xdef8d0ae __SCT__tp_func_kfree vmlinux EXPORT_SYMBOL
-0xf0647e09 __tracepoint_kmem_cache_free vmlinux EXPORT_SYMBOL
-0xc0081a19 __traceiter_kmem_cache_free vmlinux EXPORT_SYMBOL
-0x25765088 __SCK__tp_func_kmem_cache_free vmlinux EXPORT_SYMBOL
-0xff52848a __SCT__tp_func_kmem_cache_free vmlinux EXPORT_SYMBOL
-0x31f5d792 __SetPageMovable vmlinux EXPORT_SYMBOL
-0x88323bb0 __ClearPageMovable vmlinux EXPORT_SYMBOL
-0x944375db _totalram_pages vmlinux EXPORT_SYMBOL
-0x785a93b4 si_mem_available vmlinux EXPORT_SYMBOL_GPL
-0x40c7247c si_meminfo vmlinux EXPORT_SYMBOL
-0x648dfc82 list_lru_add vmlinux EXPORT_SYMBOL_GPL
-0x42bf8fe1 list_lru_del vmlinux EXPORT_SYMBOL_GPL
-0xabc640f3 list_lru_isolate vmlinux EXPORT_SYMBOL_GPL
-0x903b627c list_lru_isolate_move vmlinux EXPORT_SYMBOL_GPL
-0x96970581 list_lru_count_one vmlinux EXPORT_SYMBOL_GPL
-0x5ee2aa12 list_lru_count_node vmlinux EXPORT_SYMBOL_GPL
-0x2348a5a1 list_lru_walk_one vmlinux EXPORT_SYMBOL_GPL
-0x3476ac5b list_lru_walk_node vmlinux EXPORT_SYMBOL_GPL
-0xf13d6d7a __list_lru_init vmlinux EXPORT_SYMBOL_GPL
-0x96a55fda list_lru_destroy vmlinux EXPORT_SYMBOL_GPL
-0x10b97c26 dump_page vmlinux EXPORT_SYMBOL
-0x8c867e72 unpin_user_page vmlinux EXPORT_SYMBOL
-0x0378604d unpin_user_pages_dirty_lock vmlinux EXPORT_SYMBOL
-0x16d0775b unpin_user_page_range_dirty_lock vmlinux EXPORT_SYMBOL
-0xcffd89a2 unpin_user_pages vmlinux EXPORT_SYMBOL
-0xa2e29553 fixup_user_fault vmlinux EXPORT_SYMBOL_GPL
-0xc0364007 fault_in_writeable vmlinux EXPORT_SYMBOL
-0x1d9672bd fault_in_subpage_writeable vmlinux EXPORT_SYMBOL
-0xfb348fea fault_in_safe_writeable vmlinux EXPORT_SYMBOL
-0x8e3e0f7d fault_in_readable vmlinux EXPORT_SYMBOL
-0xe27b70ff get_user_pages_remote vmlinux EXPORT_SYMBOL
-0xa1a905d4 get_user_pages vmlinux EXPORT_SYMBOL
-0xa073bbfd get_user_pages_unlocked vmlinux EXPORT_SYMBOL
-0x42367c79 get_user_pages_fast_only vmlinux EXPORT_SYMBOL_GPL
-0xc309ecd0 get_user_pages_fast vmlinux EXPORT_SYMBOL_GPL
-0x80bfd2f9 pin_user_pages_fast vmlinux EXPORT_SYMBOL_GPL
-0xe34c99a2 pin_user_pages_remote vmlinux EXPORT_SYMBOL
-0x670b5957 pin_user_pages vmlinux EXPORT_SYMBOL
-0xeaa75e10 pin_user_pages_unlocked vmlinux EXPORT_SYMBOL
-0x947c6892 __tracepoint_mmap_lock_start_locking vmlinux EXPORT_SYMBOL
-0x8a383f9f __traceiter_mmap_lock_start_locking vmlinux EXPORT_SYMBOL
-0xba4e4499 __SCK__tp_func_mmap_lock_start_locking vmlinux EXPORT_SYMBOL
-0x718a4693 __SCT__tp_func_mmap_lock_start_locking vmlinux EXPORT_SYMBOL
-0x0c57c87b __tracepoint_mmap_lock_acquire_returned vmlinux EXPORT_SYMBOL
-0x9a0bc3a9 __traceiter_mmap_lock_acquire_returned vmlinux EXPORT_SYMBOL
-0xf1e41d9a __SCK__tp_func_mmap_lock_acquire_returned vmlinux EXPORT_SYMBOL
-0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned vmlinux EXPORT_SYMBOL
-0xa048954b __tracepoint_mmap_lock_released vmlinux EXPORT_SYMBOL
-0x5e817175 __traceiter_mmap_lock_released vmlinux EXPORT_SYMBOL
-0x03b4961a __SCK__tp_func_mmap_lock_released vmlinux EXPORT_SYMBOL
-0x8d60652c __SCT__tp_func_mmap_lock_released vmlinux EXPORT_SYMBOL
-0xf9647319 __mmap_lock_do_trace_start_locking vmlinux EXPORT_SYMBOL
-0x2b41dfc2 __mmap_lock_do_trace_acquire_returned vmlinux EXPORT_SYMBOL
-0xb153b704 __mmap_lock_do_trace_released vmlinux EXPORT_SYMBOL
-0x8a7d1c31 high_memory vmlinux EXPORT_SYMBOL
-0x85efc7e0 zero_pfn vmlinux EXPORT_SYMBOL
-0x0038eaff zap_vma_ptes vmlinux EXPORT_SYMBOL_GPL
-0x8a9aba3d vm_insert_pages vmlinux EXPORT_SYMBOL
-0x7954a102 vm_insert_page vmlinux EXPORT_SYMBOL
-0xe533a7bd vm_map_pages vmlinux EXPORT_SYMBOL
-0xa1717036 vm_map_pages_zero vmlinux EXPORT_SYMBOL
-0xd2605fbe vmf_insert_pfn_prot vmlinux EXPORT_SYMBOL
-0x7aadc724 vmf_insert_pfn vmlinux EXPORT_SYMBOL
-0x31c63dd3 vmf_insert_mixed vmlinux EXPORT_SYMBOL
-0xb8d4a03e vmf_insert_mixed_mkwrite vmlinux EXPORT_SYMBOL
-0xb47c454c remap_pfn_range vmlinux EXPORT_SYMBOL
-0xc08e0f54 vm_iomap_memory vmlinux EXPORT_SYMBOL
-0xf15132a7 apply_to_page_range vmlinux EXPORT_SYMBOL_GPL
-0x4e3dabb2 apply_to_existing_page_range vmlinux EXPORT_SYMBOL_GPL
-0x77ee0ec1 unmap_mapping_pages vmlinux EXPORT_SYMBOL_GPL
-0x16967824 unmap_mapping_range vmlinux EXPORT_SYMBOL
-0xf8b08e09 handle_mm_fault vmlinux EXPORT_SYMBOL_GPL
-0x9d17a72a follow_pte vmlinux EXPORT_SYMBOL_GPL
-0xea839f4b follow_pfn vmlinux EXPORT_SYMBOL
-0x74621f1f generic_access_phys vmlinux EXPORT_SYMBOL_GPL
-0xd058ddf3 access_process_vm vmlinux EXPORT_SYMBOL_GPL
-0xcc5d22d9 can_do_mlock vmlinux EXPORT_SYMBOL
-0x59a613f5 get_unmapped_area vmlinux EXPORT_SYMBOL
-0x0e236cbc find_vma_intersection vmlinux EXPORT_SYMBOL
-0xf9b219a7 find_vma vmlinux EXPORT_SYMBOL
-0x5b56860c vm_munmap vmlinux EXPORT_SYMBOL
-0x8a7094ba vm_brk_flags vmlinux EXPORT_SYMBOL
-0x0ba0b938 vm_brk vmlinux EXPORT_SYMBOL
-0xb0e5024a walk_page_range vmlinux EXPORT_SYMBOL_GPL
-0xce5b5f15 folio_mkclean vmlinux EXPORT_SYMBOL_GPL
-0xed218686 make_device_exclusive_range vmlinux EXPORT_SYMBOL_GPL
-0xc31db0ce is_vmalloc_addr vmlinux EXPORT_SYMBOL
-0x1ee47e00 is_vmalloc_or_module_addr vmlinux EXPORT_SYMBOL_GPL
-0x62ece445 vmalloc_to_page vmlinux EXPORT_SYMBOL
-0x3744cf36 vmalloc_to_pfn vmlinux EXPORT_SYMBOL
-0x26ed2186 register_vmap_purge_notifier vmlinux EXPORT_SYMBOL_GPL
-0xb7c69a63 unregister_vmap_purge_notifier vmlinux EXPORT_SYMBOL_GPL
-0xc22a3091 vm_unmap_aliases vmlinux EXPORT_SYMBOL_GPL
-0x03fd2571 vm_unmap_ram vmlinux EXPORT_SYMBOL
-0xbf6cf2b3 vm_map_ram vmlinux EXPORT_SYMBOL
-0x60ecda37 __get_vm_area_caller vmlinux EXPORT_SYMBOL
-0x999e8297 vfree vmlinux EXPORT_SYMBOL
-0x94961283 vunmap vmlinux EXPORT_SYMBOL
-0xcc4d1a5a vmap vmlinux EXPORT_SYMBOL
-0x2e7a17d4 vmap_pfn vmlinux EXPORT_SYMBOL_GPL
-0xf8239a04 __vmalloc_node_range vmlinux EXPORT_SYMBOL
-0xae04012c __vmalloc vmlinux EXPORT_SYMBOL
-0xd6ee688f vmalloc vmlinux EXPORT_SYMBOL
-0xbdda1b5f vmalloc_huge vmlinux EXPORT_SYMBOL_GPL
-0x40a9b349 vzalloc vmlinux EXPORT_SYMBOL
-0x5635a60a vmalloc_user vmlinux EXPORT_SYMBOL
-0x23fd3028 vmalloc_node vmlinux EXPORT_SYMBOL
-0x9e0c711d vzalloc_node vmlinux EXPORT_SYMBOL
-0xa0b04675 vmalloc_32 vmlinux EXPORT_SYMBOL
-0x0b1beb31 vmalloc_32_user vmlinux EXPORT_SYMBOL
-0x4ceb58a8 remap_vmalloc_range vmlinux EXPORT_SYMBOL
-0xd7e4acb7 free_vm_area vmlinux EXPORT_SYMBOL_GPL
-0x618911fc numa_node vmlinux EXPORT_SYMBOL
-0x916758a3 node_states vmlinux EXPORT_SYMBOL
-0xd89da37f movable_zone vmlinux EXPORT_SYMBOL
-0x7bbccd05 nr_node_ids vmlinux EXPORT_SYMBOL
-0x82c87ad5 nr_online_nodes vmlinux EXPORT_SYMBOL
-0x51f9b7ba split_page vmlinux EXPORT_SYMBOL_GPL
-0xa10602b0 __alloc_pages_bulk vmlinux EXPORT_SYMBOL_GPL
-0xd01e3d4c __alloc_pages vmlinux EXPORT_SYMBOL
-0xbe86bc5b __folio_alloc vmlinux EXPORT_SYMBOL
-0x6a5cb5ee __get_free_pages vmlinux EXPORT_SYMBOL
-0xf09b5d9a get_zeroed_page vmlinux EXPORT_SYMBOL
-0x122a111b __free_pages vmlinux EXPORT_SYMBOL
-0x4302d0eb free_pages vmlinux EXPORT_SYMBOL
-0xc93efd64 __page_frag_cache_drain vmlinux EXPORT_SYMBOL
-0x2de125c0 page_frag_alloc_align vmlinux EXPORT_SYMBOL
-0x88e1d0f0 page_frag_free vmlinux EXPORT_SYMBOL
-0x5fc72f0e alloc_pages_exact vmlinux EXPORT_SYMBOL
-0xeb44339a free_pages_exact vmlinux EXPORT_SYMBOL
-0x27fa66e1 nr_free_buffer_pages vmlinux EXPORT_SYMBOL_GPL
-0xc14d4b29 adjust_managed_page_count vmlinux EXPORT_SYMBOL
-0x73abb180 alloc_contig_range vmlinux EXPORT_SYMBOL
-0x10e6f74a free_contig_range vmlinux EXPORT_SYMBOL
-0xcc9b534f is_free_buddy_page vmlinux EXPORT_SYMBOL
-0xa0eb2117 pfn_to_online_page vmlinux EXPORT_SYMBOL_GPL
-0x2e063a71 set_online_page_callback vmlinux EXPORT_SYMBOL_GPL
-0xc89bbbf0 restore_online_page_callback vmlinux EXPORT_SYMBOL_GPL
-0xc45e8a57 generic_online_page vmlinux EXPORT_SYMBOL_GPL
-0xbd7aaaee add_memory vmlinux EXPORT_SYMBOL_GPL
-0xfcbfec70 add_memory_driver_managed vmlinux EXPORT_SYMBOL_GPL
-0x9be30d27 mhp_get_pluggable_range vmlinux EXPORT_SYMBOL_GPL
-0x99daa9bf try_offline_node vmlinux EXPORT_SYMBOL
-0x0bbdc9b2 remove_memory vmlinux EXPORT_SYMBOL_GPL
-0x08c78cf7 offline_and_remove_memory vmlinux EXPORT_SYMBOL_GPL
-0xa0d3456d nr_swap_pages vmlinux EXPORT_SYMBOL_GPL
-0x9d1d6a82 add_swap_extent vmlinux EXPORT_SYMBOL_GPL
-0x8e8f2d78 swapcache_mapping vmlinux EXPORT_SYMBOL_GPL
-0xc6c3a168 __page_file_index vmlinux EXPORT_SYMBOL_GPL
-0x1b5b6b48 dma_pool_create vmlinux EXPORT_SYMBOL
-0xb5aa7165 dma_pool_destroy vmlinux EXPORT_SYMBOL
-0x678b96ec dma_pool_alloc vmlinux EXPORT_SYMBOL
-0x2f7754a8 dma_pool_free vmlinux EXPORT_SYMBOL
-0x3a3777bc dmam_pool_create vmlinux EXPORT_SYMBOL
-0x71a672ef dmam_pool_destroy vmlinux EXPORT_SYMBOL
-0xedbe6868 vma_kernel_pagesize vmlinux EXPORT_SYMBOL_GPL
-0xbcb36fe4 hugetlb_optimize_vmemmap_key vmlinux EXPORT_SYMBOL
-0x8a665bfa numa_nearest_node vmlinux EXPORT_SYMBOL_GPL
-0x10772115 vma_alloc_folio vmlinux EXPORT_SYMBOL
-0xe78b06e7 alloc_pages vmlinux EXPORT_SYMBOL
-0x6aece430 folio_alloc vmlinux EXPORT_SYMBOL
-0x3199fbeb mem_section vmlinux EXPORT_SYMBOL
-0xf73dc8e7 mmu_interval_read_begin vmlinux EXPORT_SYMBOL_GPL
-0x89f21282 __mmu_notifier_register vmlinux EXPORT_SYMBOL_GPL
-0x603195e1 mmu_notifier_register vmlinux EXPORT_SYMBOL_GPL
-0x66ed3911 mmu_notifier_get_locked vmlinux EXPORT_SYMBOL_GPL
-0x6e989a6c mmu_notifier_unregister vmlinux EXPORT_SYMBOL_GPL
-0x92f30a12 mmu_notifier_put vmlinux EXPORT_SYMBOL_GPL
-0xeb212932 mmu_interval_notifier_insert vmlinux EXPORT_SYMBOL_GPL
-0x4e481b5c mmu_interval_notifier_insert_locked vmlinux EXPORT_SYMBOL_GPL
-0xe3ee9ba6 mmu_interval_notifier_remove vmlinux EXPORT_SYMBOL_GPL
-0x6a4f623b mmu_notifier_synchronize vmlinux EXPORT_SYMBOL_GPL
-0x25a260fa ksm_madvise vmlinux EXPORT_SYMBOL_GPL
-0xb9ea8b77 kmem_cache_alloc vmlinux EXPORT_SYMBOL
-0x35c9bd58 kmem_cache_alloc_lru vmlinux EXPORT_SYMBOL
-0xcbf45fef kmem_cache_alloc_node vmlinux EXPORT_SYMBOL
-0x6cfeb4fa kmem_cache_free vmlinux EXPORT_SYMBOL
-0x44569ce4 kmem_cache_free_bulk vmlinux EXPORT_SYMBOL
-0x1d3db620 kmem_cache_alloc_bulk vmlinux EXPORT_SYMBOL
-0xf0b4454f validate_slab_cache vmlinux EXPORT_SYMBOL
-0x5f1ab260 folio_migrate_mapping vmlinux EXPORT_SYMBOL
-0xf0a99529 folio_migrate_flags vmlinux EXPORT_SYMBOL
-0x5972d6ec folio_migrate_copy vmlinux EXPORT_SYMBOL
-0x1d1e341e migrate_folio vmlinux EXPORT_SYMBOL
-0x3531c363 buffer_migrate_folio vmlinux EXPORT_SYMBOL
-0xfcd13db5 buffer_migrate_folio_norefs vmlinux EXPORT_SYMBOL_GPL
-0x7bf6acf4 filemap_migrate_folio vmlinux EXPORT_SYMBOL_GPL
-0x33e4ab40 alloc_memory_type vmlinux EXPORT_SYMBOL_GPL
-0x15ed897a put_memory_type vmlinux EXPORT_SYMBOL_GPL
-0xbe56ab51 init_node_memory_type vmlinux EXPORT_SYMBOL_GPL
-0x5b939811 clear_node_memory_type vmlinux EXPORT_SYMBOL_GPL
-0x231c32fd mt_perf_to_adistance vmlinux EXPORT_SYMBOL_GPL
-0x02ad0d44 register_mt_adistance_algorithm vmlinux EXPORT_SYMBOL_GPL
-0x060991ad unregister_mt_adistance_algorithm vmlinux EXPORT_SYMBOL_GPL
-0xaa347d59 mt_calc_adistance vmlinux EXPORT_SYMBOL_GPL
-0x1f1865f6 migrate_vma_setup vmlinux EXPORT_SYMBOL
-0x7cd9fd0a migrate_device_pages vmlinux EXPORT_SYMBOL
-0xd7e588ce migrate_vma_pages vmlinux EXPORT_SYMBOL
-0x7e5c9cbd migrate_device_finalize vmlinux EXPORT_SYMBOL
-0x373f4310 migrate_vma_finalize vmlinux EXPORT_SYMBOL
-0x6276af56 migrate_device_range vmlinux EXPORT_SYMBOL
-0x9767621d thp_get_unmapped_area vmlinux EXPORT_SYMBOL_GPL
-0x0242594f vmf_insert_pfn_pmd vmlinux EXPORT_SYMBOL_GPL
-0x8f92a375 vmf_insert_pfn_pud vmlinux EXPORT_SYMBOL_GPL
-0x277d5469 __pud_trans_huge_lock vmlinux EXPORT_SYMBOL_GPL
-0xab638708 memory_cgrp_subsys vmlinux EXPORT_SYMBOL
-0xca5cea13 int_active_memcg vmlinux EXPORT_SYMBOL_GPL
-0x035d25ab memcg_kmem_online_key vmlinux EXPORT_SYMBOL
-0xfaecb308 memcg_bpf_enabled_key vmlinux EXPORT_SYMBOL
-0x2b08a77a __lruvec_stat_mod_folio vmlinux EXPORT_SYMBOL
-0x5c8fea26 mem_cgroup_from_task vmlinux EXPORT_SYMBOL
-0x596b7758 get_mem_cgroup_from_mm vmlinux EXPORT_SYMBOL
-0x3dabf271 memcg_sockets_enabled_key vmlinux EXPORT_SYMBOL
-0xcc9268fc hwpoison_filter_enable vmlinux EXPORT_SYMBOL_GPL
-0x8d7e3373 hwpoison_filter_dev_major vmlinux EXPORT_SYMBOL_GPL
-0x326cefe5 hwpoison_filter_dev_minor vmlinux EXPORT_SYMBOL_GPL
-0x15ea2648 hwpoison_filter_flags_mask vmlinux EXPORT_SYMBOL_GPL
-0x6ba36c6a hwpoison_filter_flags_value vmlinux EXPORT_SYMBOL_GPL
-0x2176e42a hwpoison_filter_memcg vmlinux EXPORT_SYMBOL_GPL
-0x02d6a904 hwpoison_filter vmlinux EXPORT_SYMBOL_GPL
-0xf536f34f shake_page vmlinux EXPORT_SYMBOL_GPL
-0xa2daa978 mf_dax_kill_procs vmlinux EXPORT_SYMBOL_GPL
-0x7918d817 memory_failure vmlinux EXPORT_SYMBOL_GPL
-0x6a421062 memory_failure_queue vmlinux EXPORT_SYMBOL_GPL
-0xb907513f unpoison_memory vmlinux EXPORT_SYMBOL
-0x05feeea6 soft_online_page vmlinux EXPORT_SYMBOL_GPL
-0x93185277 soft_offline_page vmlinux EXPORT_SYMBOL_GPL
-0x9db17906 zpool_register_driver vmlinux EXPORT_SYMBOL
-0x6aa464b1 zpool_unregister_driver vmlinux EXPORT_SYMBOL
-0x6005c351 zpool_has_pool vmlinux EXPORT_SYMBOL
-0x5957cddb zs_lookup_class_index vmlinux EXPORT_SYMBOL_GPL
-0xcbe56bc2 zs_get_total_pages vmlinux EXPORT_SYMBOL_GPL
-0xc341ae6d zs_map_object vmlinux EXPORT_SYMBOL_GPL
-0x924c46f8 zs_unmap_object vmlinux EXPORT_SYMBOL_GPL
-0x3d8baf3b zs_huge_class_size vmlinux EXPORT_SYMBOL_GPL
-0xb29533ee zs_malloc vmlinux EXPORT_SYMBOL_GPL
-0x958df3ac zs_free vmlinux EXPORT_SYMBOL_GPL
-0x5da67adc zs_compact vmlinux EXPORT_SYMBOL_GPL
-0x7cceaf92 zs_pool_stats vmlinux EXPORT_SYMBOL_GPL
-0xbcf1f0e6 zs_create_pool vmlinux EXPORT_SYMBOL_GPL
-0xc69b7ee5 zs_destroy_pool vmlinux EXPORT_SYMBOL_GPL
-0x7c833aa3 balloon_page_list_enqueue vmlinux EXPORT_SYMBOL_GPL
-0x90790ebf balloon_page_list_dequeue vmlinux EXPORT_SYMBOL_GPL
-0xe66e871a balloon_page_alloc vmlinux EXPORT_SYMBOL_GPL
-0x4fe0c92b balloon_page_enqueue vmlinux EXPORT_SYMBOL_GPL
-0x8ad04d12 balloon_page_dequeue vmlinux EXPORT_SYMBOL_GPL
-0x17d39f00 balloon_mops vmlinux EXPORT_SYMBOL_GPL
-0x88db9f48 __check_object_size vmlinux EXPORT_SYMBOL
-0x0fbb7344 memremap_compat_align vmlinux EXPORT_SYMBOL_GPL
-0x587f22d7 devmap_managed_key vmlinux EXPORT_SYMBOL
-0x0b8d483f memunmap_pages vmlinux EXPORT_SYMBOL_GPL
-0x83ce281b memremap_pages vmlinux EXPORT_SYMBOL_GPL
-0xf90cceb8 devm_memremap_pages vmlinux EXPORT_SYMBOL_GPL
-0x54aacc04 devm_memunmap_pages vmlinux EXPORT_SYMBOL_GPL
-0x602bcead get_dev_pagemap vmlinux EXPORT_SYMBOL_GPL
-0x2113d891 zone_device_page_init vmlinux EXPORT_SYMBOL_GPL
-0x778c80dc __put_devmap_managed_page_refs vmlinux EXPORT_SYMBOL
-0xff6bd1c4 hmm_range_fault vmlinux EXPORT_SYMBOL
-0x155c617d wp_shared_mapping_range vmlinux EXPORT_SYMBOL_GPL
-0xa1ab609e clean_record_shared_mapping_range vmlinux EXPORT_SYMBOL_GPL
-0xff84a8a5 page_reporting_order vmlinux EXPORT_SYMBOL_GPL
-0x4d08b416 page_reporting_register vmlinux EXPORT_SYMBOL_GPL
-0xa4e431a0 page_reporting_unregister vmlinux EXPORT_SYMBOL_GPL
-0xc60d4e95 add_page_for_swap vmlinux EXPORT_SYMBOL_GPL
-0x531a12b1 get_page_from_vaddr vmlinux EXPORT_SYMBOL_GPL
-0x510c1acd do_swapcache_reclaim vmlinux EXPORT_SYMBOL_GPL
-0xedd6e43a vfs_truncate vmlinux EXPORT_SYMBOL_GPL
-0x1e0f0548 vfs_fallocate vmlinux EXPORT_SYMBOL_GPL
-0x713a53f5 finish_open vmlinux EXPORT_SYMBOL
-0xd171d189 finish_no_open vmlinux EXPORT_SYMBOL
-0x1be71d65 file_path vmlinux EXPORT_SYMBOL
-0x967016f0 dentry_open vmlinux EXPORT_SYMBOL
-0x443d8728 dentry_create vmlinux EXPORT_SYMBOL
-0xbbc606a5 kernel_file_open vmlinux EXPORT_SYMBOL_GPL
-0xad8c041b backing_file_open vmlinux EXPORT_SYMBOL_GPL
-0x58e6be74 filp_open vmlinux EXPORT_SYMBOL
-0xff35c480 file_open_root vmlinux EXPORT_SYMBOL
-0xfd1242ea filp_close vmlinux EXPORT_SYMBOL
-0xca41ba87 generic_file_open vmlinux EXPORT_SYMBOL
-0xa6fd1a49 nonseekable_open vmlinux EXPORT_SYMBOL
-0xd91e9fb4 stream_open vmlinux EXPORT_SYMBOL
-0x4ad57977 generic_ro_fops vmlinux EXPORT_SYMBOL
-0xd1741c33 vfs_setpos vmlinux EXPORT_SYMBOL
-0x93d5bceb generic_file_llseek_size vmlinux EXPORT_SYMBOL
-0xa3f3e4bb generic_file_llseek vmlinux EXPORT_SYMBOL
-0x21ca01db fixed_size_llseek vmlinux EXPORT_SYMBOL
-0xeb67e77c no_seek_end_llseek vmlinux EXPORT_SYMBOL
-0xeb2e3d5a no_seek_end_llseek_size vmlinux EXPORT_SYMBOL
-0xb3c48b8c noop_llseek vmlinux EXPORT_SYMBOL
-0xf54a0d6f default_llseek vmlinux EXPORT_SYMBOL
-0xc2e66f92 vfs_llseek vmlinux EXPORT_SYMBOL
-0xdaeac741 rw_verify_area vmlinux EXPORT_SYMBOL
-0x71a8b076 kernel_read vmlinux EXPORT_SYMBOL
-0x94695cd1 __kernel_write vmlinux EXPORT_SYMBOL_GPL
-0x7cf0f67b kernel_write vmlinux EXPORT_SYMBOL
-0x3c12b944 vfs_iocb_iter_read vmlinux EXPORT_SYMBOL
-0x100129bb vfs_iter_read vmlinux EXPORT_SYMBOL
-0x9399995d vfs_iocb_iter_write vmlinux EXPORT_SYMBOL
-0xf55b8a89 vfs_iter_write vmlinux EXPORT_SYMBOL
-0x2416bcf2 generic_copy_file_range vmlinux EXPORT_SYMBOL
-0xe8001ecc vfs_copy_file_range vmlinux EXPORT_SYMBOL
-0x3df154cc generic_write_checks_count vmlinux EXPORT_SYMBOL
-0x0234b645 generic_write_checks vmlinux EXPORT_SYMBOL
-0xc9cf4f10 backing_file_real_path vmlinux EXPORT_SYMBOL_GPL
-0x8abacc47 get_max_files vmlinux EXPORT_SYMBOL_GPL
-0x87572ab3 alloc_file_pseudo vmlinux EXPORT_SYMBOL
-0x55339365 flush_delayed_fput vmlinux EXPORT_SYMBOL_GPL
-0xa46014e8 fput vmlinux EXPORT_SYMBOL
-0x64557ef0 __fput_sync vmlinux EXPORT_SYMBOL
-0xc2eab03a deactivate_locked_super vmlinux EXPORT_SYMBOL
-0xd5749d2f deactivate_super vmlinux EXPORT_SYMBOL
-0x79733002 retire_super vmlinux EXPORT_SYMBOL
-0x7697fa71 generic_shutdown_super vmlinux EXPORT_SYMBOL
-0xffafc2c8 sget_fc vmlinux EXPORT_SYMBOL
-0x46367743 sget vmlinux EXPORT_SYMBOL
-0xe0ad699d drop_super vmlinux EXPORT_SYMBOL
-0x19163380 drop_super_exclusive vmlinux EXPORT_SYMBOL
-0x2839583f iterate_supers_type vmlinux EXPORT_SYMBOL
-0x0d07f543 get_anon_bdev vmlinux EXPORT_SYMBOL
-0x47709e42 free_anon_bdev vmlinux EXPORT_SYMBOL
-0x9fdbdcaf set_anon_super vmlinux EXPORT_SYMBOL
-0xac4f288f kill_anon_super vmlinux EXPORT_SYMBOL
-0x79952124 kill_litter_super vmlinux EXPORT_SYMBOL
-0xea31fd23 set_anon_super_fc vmlinux EXPORT_SYMBOL
-0x8b0cf6c2 get_tree_nodev vmlinux EXPORT_SYMBOL
-0x103c54df get_tree_single vmlinux EXPORT_SYMBOL
-0x22e9276c get_tree_keyed vmlinux EXPORT_SYMBOL
-0x728710dc sget_dev vmlinux EXPORT_SYMBOL
-0x9d1385d1 fs_holder_ops vmlinux EXPORT_SYMBOL_GPL
-0xa2a0f470 setup_bdev_super vmlinux EXPORT_SYMBOL_GPL
-0x65844228 get_tree_bdev vmlinux EXPORT_SYMBOL
-0xaaada3b1 mount_bdev vmlinux EXPORT_SYMBOL
-0xa4a7a22b kill_block_super vmlinux EXPORT_SYMBOL
-0x0c3aef23 mount_nodev vmlinux EXPORT_SYMBOL
-0xcf46c8fc mount_single vmlinux EXPORT_SYMBOL
-0x4f4ff4ee vfs_get_tree vmlinux EXPORT_SYMBOL
-0x47302a32 super_setup_bdi_name vmlinux EXPORT_SYMBOL
-0x8457dea5 super_setup_bdi vmlinux EXPORT_SYMBOL
-0x30e98125 freeze_super vmlinux EXPORT_SYMBOL
-0x62e9b902 thaw_super vmlinux EXPORT_SYMBOL
-0x3fd78f3b register_chrdev_region vmlinux EXPORT_SYMBOL
-0x6091b333 unregister_chrdev_region vmlinux EXPORT_SYMBOL
-0xe3ec2f2b alloc_chrdev_region vmlinux EXPORT_SYMBOL
-0xd7ba17ed cdev_init vmlinux EXPORT_SYMBOL
-0xceb68479 cdev_alloc vmlinux EXPORT_SYMBOL
-0xe9916b2f cdev_del vmlinux EXPORT_SYMBOL
-0xad73866d cdev_add vmlinux EXPORT_SYMBOL
-0x5d873cbb cdev_set_parent vmlinux EXPORT_SYMBOL
-0x21e49af6 cdev_device_add vmlinux EXPORT_SYMBOL
-0xaefb03c9 cdev_device_del vmlinux EXPORT_SYMBOL
-0xd552d5a3 __register_chrdev vmlinux EXPORT_SYMBOL
-0x6bc3fbc0 __unregister_chrdev vmlinux EXPORT_SYMBOL
-0xb463e8e2 generic_fillattr vmlinux EXPORT_SYMBOL
-0x94c4f623 generic_fill_statx_attr vmlinux EXPORT_SYMBOL
-0xe5e2c55c vfs_getattr_nosec vmlinux EXPORT_SYMBOL
-0x79e69bb9 vfs_getattr vmlinux EXPORT_SYMBOL
-0x36e2f0ec __inode_add_bytes vmlinux EXPORT_SYMBOL
-0x76f85115 inode_add_bytes vmlinux EXPORT_SYMBOL
-0x21377f20 __inode_sub_bytes vmlinux EXPORT_SYMBOL
-0x612dded9 inode_sub_bytes vmlinux EXPORT_SYMBOL
-0x67b0fb98 inode_get_bytes vmlinux EXPORT_SYMBOL
-0xb5894303 inode_set_bytes vmlinux EXPORT_SYMBOL
-0xa8891929 __register_binfmt vmlinux EXPORT_SYMBOL
-0x329b8d91 unregister_binfmt vmlinux EXPORT_SYMBOL
-0x1dd2a8e1 copy_string_kernel vmlinux EXPORT_SYMBOL
-0x7989cfbb setup_arg_pages vmlinux EXPORT_SYMBOL
-0xc33c46ff open_exec vmlinux EXPORT_SYMBOL
-0x7707015a __get_task_comm vmlinux EXPORT_SYMBOL_GPL
-0x3a73dac9 begin_new_exec vmlinux EXPORT_SYMBOL
-0xd724f268 would_dump vmlinux EXPORT_SYMBOL
-0xf6c541c7 setup_new_exec vmlinux EXPORT_SYMBOL
-0xa2e33e21 finalize_exec vmlinux EXPORT_SYMBOL
-0x8ae544f5 bprm_change_interp vmlinux EXPORT_SYMBOL
-0x44783c26 remove_arg_zero vmlinux EXPORT_SYMBOL
-0xa8f83276 set_binfmt vmlinux EXPORT_SYMBOL
-0xfeb7f11f pipe_lock vmlinux EXPORT_SYMBOL
-0x6cb57c0a pipe_unlock vmlinux EXPORT_SYMBOL
-0x3dab854b generic_pipe_buf_try_steal vmlinux EXPORT_SYMBOL
-0xa1b12ac9 generic_pipe_buf_get vmlinux EXPORT_SYMBOL
-0x26d01ab8 generic_pipe_buf_release vmlinux EXPORT_SYMBOL
-0x22694647 getname_kernel vmlinux EXPORT_SYMBOL
-0x95cb3de8 putname vmlinux EXPORT_SYMBOL
-0xf66b34ef generic_permission vmlinux EXPORT_SYMBOL
-0xa08fbff8 inode_permission vmlinux EXPORT_SYMBOL
-0x9c15566d path_get vmlinux EXPORT_SYMBOL
-0xd56bd279 path_put vmlinux EXPORT_SYMBOL
-0x30371aa5 follow_up vmlinux EXPORT_SYMBOL
-0x1514b0d9 follow_down_one vmlinux EXPORT_SYMBOL
-0x7f34acf0 follow_down vmlinux EXPORT_SYMBOL
-0x9906a447 lookup_one_qstr_excl vmlinux EXPORT_SYMBOL
-0xd6eaaea1 full_name_hash vmlinux EXPORT_SYMBOL
-0x162893fd hashlen_string vmlinux EXPORT_SYMBOL
-0x2e5c780c kern_path vmlinux EXPORT_SYMBOL
-0x3438d32a vfs_path_parent_lookup vmlinux EXPORT_SYMBOL
-0x069e3843 vfs_path_lookup vmlinux EXPORT_SYMBOL
-0xb9b31c15 try_lookup_one_len vmlinux EXPORT_SYMBOL
-0x68accf52 lookup_one_len vmlinux EXPORT_SYMBOL
-0x231530f1 lookup_one vmlinux EXPORT_SYMBOL
-0x8e6a12c1 lookup_one_unlocked vmlinux EXPORT_SYMBOL
-0xb01a36bc lookup_one_positive_unlocked vmlinux EXPORT_SYMBOL
-0x93862f04 lookup_one_len_unlocked vmlinux EXPORT_SYMBOL
-0xf8198c92 lookup_positive_unlocked vmlinux EXPORT_SYMBOL
-0x0ed5018d user_path_at_empty vmlinux EXPORT_SYMBOL
-0xa931a7f7 __check_sticky vmlinux EXPORT_SYMBOL
-0x8ed02a72 lock_rename vmlinux EXPORT_SYMBOL
-0x2b365c9a lock_rename_child vmlinux EXPORT_SYMBOL
-0xe0af4716 unlock_rename vmlinux EXPORT_SYMBOL
-0x0a2660bb vfs_create vmlinux EXPORT_SYMBOL
-0x172794fa vfs_mkobj vmlinux EXPORT_SYMBOL
-0x2e04d918 kernel_tmpfile_open vmlinux EXPORT_SYMBOL
-0x0fee3341 kern_path_create vmlinux EXPORT_SYMBOL
-0x3274ac38 done_path_create vmlinux EXPORT_SYMBOL
-0xc3257572 user_path_create vmlinux EXPORT_SYMBOL
-0x0f2a8f04 vfs_mknod vmlinux EXPORT_SYMBOL
-0xdee3afda vfs_mkdir vmlinux EXPORT_SYMBOL
-0x008ababd vfs_rmdir vmlinux EXPORT_SYMBOL
-0xfb280a0d vfs_unlink vmlinux EXPORT_SYMBOL
-0x7bc6f0b0 vfs_symlink vmlinux EXPORT_SYMBOL
-0x52493ec5 vfs_link vmlinux EXPORT_SYMBOL
-0x0f8d462c vfs_rename vmlinux EXPORT_SYMBOL
-0xa2600d76 vfs_readlink vmlinux EXPORT_SYMBOL
-0x7a0b927c vfs_get_link vmlinux EXPORT_SYMBOL
-0x47ffbad6 page_get_link vmlinux EXPORT_SYMBOL
-0x3c185c61 page_put_link vmlinux EXPORT_SYMBOL
-0x1663c72f page_readlink vmlinux EXPORT_SYMBOL
-0xb4d1fa31 page_symlink vmlinux EXPORT_SYMBOL
-0xe41dd342 page_symlink_inode_operations vmlinux EXPORT_SYMBOL
-0x5f8023a3 __f_setown vmlinux EXPORT_SYMBOL
-0x81994a71 f_setown vmlinux EXPORT_SYMBOL
-0x5bb7892b fasync_helper vmlinux EXPORT_SYMBOL
-0x171e64f4 kill_fasync vmlinux EXPORT_SYMBOL
-0xf33eb267 vfs_ioctl vmlinux EXPORT_SYMBOL
-0x605790dc fiemap_fill_next_extent vmlinux EXPORT_SYMBOL
-0x426d8c9e fiemap_prep vmlinux EXPORT_SYMBOL
-0xb5b63711 fileattr_fill_xflags vmlinux EXPORT_SYMBOL
-0x9c86b9ab fileattr_fill_flags vmlinux EXPORT_SYMBOL
-0x06477fdd vfs_fileattr_get vmlinux EXPORT_SYMBOL
-0x9507c90f copy_fsxattr_to_user vmlinux EXPORT_SYMBOL
-0xf35c9a2e vfs_fileattr_set vmlinux EXPORT_SYMBOL
-0x06948b8d compat_ptr_ioctl vmlinux EXPORT_SYMBOL
-0x0da92b81 wrap_directory_iterator vmlinux EXPORT_SYMBOL
-0x8ab69c6b iterate_dir vmlinux EXPORT_SYMBOL
-0x6975b1b6 poll_initwait vmlinux EXPORT_SYMBOL
-0xd3280bc7 poll_freewait vmlinux EXPORT_SYMBOL
-0x82d79b51 sysctl_vfs_cache_pressure vmlinux EXPORT_SYMBOL_GPL
-0xe6fa06a2 rename_lock vmlinux EXPORT_SYMBOL
-0x4bef1c67 empty_name vmlinux EXPORT_SYMBOL
-0x92b9b180 slash_name vmlinux EXPORT_SYMBOL
-0xafc08054 dotdot_name vmlinux EXPORT_SYMBOL
-0xd118c550 take_dentry_name_snapshot vmlinux EXPORT_SYMBOL
-0xf3a57892 release_dentry_name_snapshot vmlinux EXPORT_SYMBOL
-0x21b9d7b1 __d_drop vmlinux EXPORT_SYMBOL
-0x807b05ea d_drop vmlinux EXPORT_SYMBOL
-0xd9a6c665 d_mark_dontcache vmlinux EXPORT_SYMBOL
-0x0a41db78 dput vmlinux EXPORT_SYMBOL
-0x9c46336d dget_parent vmlinux EXPORT_SYMBOL
-0x59303157 d_find_any_alias vmlinux EXPORT_SYMBOL
-0x2f860c2b d_find_alias vmlinux EXPORT_SYMBOL
-0x1d91e527 d_prune_aliases vmlinux EXPORT_SYMBOL
-0x136f4a18 shrink_dcache_sb vmlinux EXPORT_SYMBOL
-0x337c579c path_has_submounts vmlinux EXPORT_SYMBOL
-0x7aca7652 shrink_dcache_parent vmlinux EXPORT_SYMBOL
-0x3e7c2e5e d_invalidate vmlinux EXPORT_SYMBOL
-0x452da005 d_alloc vmlinux EXPORT_SYMBOL
-0x622134ea d_alloc_anon vmlinux EXPORT_SYMBOL
-0x78a76fe9 d_alloc_name vmlinux EXPORT_SYMBOL
-0xb58bdda2 d_set_d_op vmlinux EXPORT_SYMBOL
-0xaa46090b d_set_fallthru vmlinux EXPORT_SYMBOL
-0x1b0837d1 d_instantiate vmlinux EXPORT_SYMBOL
-0xe5e7e2f7 d_instantiate_new vmlinux EXPORT_SYMBOL
-0xd72e1c02 d_make_root vmlinux EXPORT_SYMBOL
-0x992f3861 d_instantiate_anon vmlinux EXPORT_SYMBOL
-0x7b52d244 d_obtain_alias vmlinux EXPORT_SYMBOL
-0x330cca41 d_obtain_root vmlinux EXPORT_SYMBOL
-0x680354d0 d_add_ci vmlinux EXPORT_SYMBOL
-0x311fb80a d_same_name vmlinux EXPORT_SYMBOL_GPL
-0xd6359408 d_lookup vmlinux EXPORT_SYMBOL
-0x53b66865 d_hash_and_lookup vmlinux EXPORT_SYMBOL
-0xcbd60b9d d_delete vmlinux EXPORT_SYMBOL
-0x8a31d601 d_rehash vmlinux EXPORT_SYMBOL
-0x8a004970 d_alloc_parallel vmlinux EXPORT_SYMBOL
-0x637ad03f __d_lookup_unhash_wake vmlinux EXPORT_SYMBOL
-0xe1b12ca5 d_add vmlinux EXPORT_SYMBOL
-0xb0580afc d_exact_alias vmlinux EXPORT_SYMBOL
-0xf31ed87d d_move vmlinux EXPORT_SYMBOL
-0x36d7ef59 d_splice_alias vmlinux EXPORT_SYMBOL
-0x3abd769c is_subdir vmlinux EXPORT_SYMBOL
-0xf3ced370 d_tmpfile vmlinux EXPORT_SYMBOL
-0x3096be16 names_cachep vmlinux EXPORT_SYMBOL
-0x78544166 empty_aops vmlinux EXPORT_SYMBOL
-0x821deb77 inode_init_always vmlinux EXPORT_SYMBOL
-0x90a2bd92 free_inode_nonrcu vmlinux EXPORT_SYMBOL
-0x54de97a8 __destroy_inode vmlinux EXPORT_SYMBOL
-0xe8c93fb1 drop_nlink vmlinux EXPORT_SYMBOL
-0x198c1a50 clear_nlink vmlinux EXPORT_SYMBOL
-0xec6f771d set_nlink vmlinux EXPORT_SYMBOL
-0xc97b0673 inc_nlink vmlinux EXPORT_SYMBOL
-0x8b36997a address_space_init_once vmlinux EXPORT_SYMBOL
-0xab0d4dd8 inode_init_once vmlinux EXPORT_SYMBOL
-0xae1d040e ihold vmlinux EXPORT_SYMBOL
-0x58ab5a44 inode_sb_list_add vmlinux EXPORT_SYMBOL_GPL
-0xc60bb143 __insert_inode_hash vmlinux EXPORT_SYMBOL
-0xfa4debd9 __remove_inode_hash vmlinux EXPORT_SYMBOL
-0x298f39b0 clear_inode vmlinux EXPORT_SYMBOL
-0xe262db06 evict_inodes vmlinux EXPORT_SYMBOL_GPL
-0xe953b21f get_next_ino vmlinux EXPORT_SYMBOL
-0xfc640889 new_inode vmlinux EXPORT_SYMBOL
-0xec57b139 unlock_new_inode vmlinux EXPORT_SYMBOL
-0xdcb98b1e discard_new_inode vmlinux EXPORT_SYMBOL
-0xf4e7fed9 lock_two_nondirectories vmlinux EXPORT_SYMBOL
-0x865235ea unlock_two_nondirectories vmlinux EXPORT_SYMBOL
-0x1dac1c38 inode_insert5 vmlinux EXPORT_SYMBOL
-0xbfecd8e8 iget5_locked vmlinux EXPORT_SYMBOL
-0xeac0ae0a iget_locked vmlinux EXPORT_SYMBOL
-0xfb3ab364 iunique vmlinux EXPORT_SYMBOL
-0xa8b692f5 igrab vmlinux EXPORT_SYMBOL
-0x04ef3115 ilookup5_nowait vmlinux EXPORT_SYMBOL
-0x2ff1d4ef ilookup5 vmlinux EXPORT_SYMBOL
-0x30c9bf50 ilookup vmlinux EXPORT_SYMBOL
-0xde6f0e72 find_inode_nowait vmlinux EXPORT_SYMBOL
-0x5a44cf50 find_inode_rcu vmlinux EXPORT_SYMBOL
-0xe72e7fa1 find_inode_by_ino_rcu vmlinux EXPORT_SYMBOL
-0x20011a53 insert_inode_locked vmlinux EXPORT_SYMBOL
-0x5c074be9 insert_inode_locked4 vmlinux EXPORT_SYMBOL
-0xeaf4732f generic_delete_inode vmlinux EXPORT_SYMBOL
-0x8723e82b iput vmlinux EXPORT_SYMBOL
-0xba2773a5 bmap vmlinux EXPORT_SYMBOL
-0x01187a79 inode_update_timestamps vmlinux EXPORT_SYMBOL
-0xbd73e00f generic_update_time vmlinux EXPORT_SYMBOL
-0xbff0792a inode_update_time vmlinux EXPORT_SYMBOL
-0x2d7e2983 touch_atime vmlinux EXPORT_SYMBOL
-0xf314d8ed file_remove_privs vmlinux EXPORT_SYMBOL
-0xfacaafa4 file_update_time vmlinux EXPORT_SYMBOL
-0x505aaec4 file_modified vmlinux EXPORT_SYMBOL
-0x0ee1bb1f kiocb_modified vmlinux EXPORT_SYMBOL_GPL
-0xb042cf09 inode_needs_sync vmlinux EXPORT_SYMBOL
-0x4f75530f init_special_inode vmlinux EXPORT_SYMBOL
-0x155774a0 inode_init_owner vmlinux EXPORT_SYMBOL
-0x6a05e4b1 inode_owner_or_capable vmlinux EXPORT_SYMBOL
-0x42f977e7 inode_dio_wait vmlinux EXPORT_SYMBOL
-0x0f766815 inode_set_flags vmlinux EXPORT_SYMBOL
-0xb2dbc95a inode_nohighmem vmlinux EXPORT_SYMBOL
-0x1f155374 timestamp_truncate vmlinux EXPORT_SYMBOL
-0x3615e3a4 current_time vmlinux EXPORT_SYMBOL
-0x9397eccc inode_set_ctime_current vmlinux EXPORT_SYMBOL
-0x0bc6bda0 mode_strip_sgid vmlinux EXPORT_SYMBOL
-0xe70de5fb setattr_should_drop_sgid vmlinux EXPORT_SYMBOL
-0xa90aa92a setattr_should_drop_suidgid vmlinux EXPORT_SYMBOL
-0xb1f8275d setattr_prepare vmlinux EXPORT_SYMBOL
-0x9e8a3482 inode_newsize_ok vmlinux EXPORT_SYMBOL
-0x51363d3f setattr_copy vmlinux EXPORT_SYMBOL
-0x83192580 may_setattr vmlinux EXPORT_SYMBOL
-0x39d94f86 notify_change vmlinux EXPORT_SYMBOL
-0x7f46d1a2 make_bad_inode vmlinux EXPORT_SYMBOL
-0x7a57544c is_bad_inode vmlinux EXPORT_SYMBOL
-0xbf8eeca8 iget_failed vmlinux EXPORT_SYMBOL
-0xa843805a get_unused_fd_flags vmlinux EXPORT_SYMBOL
-0x3f4547a7 put_unused_fd vmlinux EXPORT_SYMBOL
-0x7058fe5b fd_install vmlinux EXPORT_SYMBOL
-0xb6fde909 close_fd vmlinux EXPORT_SYMBOL
-0xe0a97312 fget vmlinux EXPORT_SYMBOL
-0x5efbe4ad fget_raw vmlinux EXPORT_SYMBOL
-0x7bbd80e1 task_lookup_next_fd_rcu vmlinux EXPORT_SYMBOL
-0xc1d8cfaf __fdget vmlinux EXPORT_SYMBOL
-0x1dcf5430 receive_fd vmlinux EXPORT_SYMBOL_GPL
-0xbef1d3f8 iterate_fd vmlinux EXPORT_SYMBOL
-0xfece1324 register_filesystem vmlinux EXPORT_SYMBOL
-0x7c4fd05e unregister_filesystem vmlinux EXPORT_SYMBOL
-0x209be8e3 get_fs_type vmlinux EXPORT_SYMBOL
-0xbcce846c fs_kobj vmlinux EXPORT_SYMBOL_GPL
-0xa0f97976 __mnt_is_readonly vmlinux EXPORT_SYMBOL_GPL
-0x64b2a789 mnt_want_write vmlinux EXPORT_SYMBOL_GPL
-0x02b12f15 mnt_want_write_file vmlinux EXPORT_SYMBOL_GPL
-0xa694a9d3 mnt_drop_write vmlinux EXPORT_SYMBOL_GPL
-0x89cdb1f1 mnt_drop_write_file vmlinux EXPORT_SYMBOL
-0xf732512d vfs_create_mount vmlinux EXPORT_SYMBOL
-0x226d6c74 fc_mount vmlinux EXPORT_SYMBOL
-0x80cdb393 vfs_kern_mount vmlinux EXPORT_SYMBOL_GPL
-0xdc2f9f6b vfs_submount vmlinux EXPORT_SYMBOL_GPL
-0xedc1efca mntput vmlinux EXPORT_SYMBOL
-0x59303bc4 mntget vmlinux EXPORT_SYMBOL
-0x60c6990d path_is_mountpoint vmlinux EXPORT_SYMBOL
-0x2a23cf44 may_umount_tree vmlinux EXPORT_SYMBOL
-0x8675039a may_umount vmlinux EXPORT_SYMBOL
-0x68708099 clone_private_mount vmlinux EXPORT_SYMBOL_GPL
-0xc42856de mnt_set_expiry vmlinux EXPORT_SYMBOL
-0x064db9a5 mark_mounts_for_expiry vmlinux EXPORT_SYMBOL_GPL
-0x3238a0f8 mount_subtree vmlinux EXPORT_SYMBOL
-0x50330d67 path_is_under vmlinux EXPORT_SYMBOL
-0x54287dce kern_mount vmlinux EXPORT_SYMBOL_GPL
-0x872abf59 kern_unmount vmlinux EXPORT_SYMBOL
-0x9d70e1a5 kern_unmount_array vmlinux EXPORT_SYMBOL
-0x22a42778 seq_open vmlinux EXPORT_SYMBOL
-0x2da29cf4 seq_read vmlinux EXPORT_SYMBOL
-0xf588b58e seq_read_iter vmlinux EXPORT_SYMBOL
-0x7c04689c seq_lseek vmlinux EXPORT_SYMBOL
-0x0096db8f seq_release vmlinux EXPORT_SYMBOL
-0x30bcd599 seq_escape_mem vmlinux EXPORT_SYMBOL
-0x382e4d40 seq_vprintf vmlinux EXPORT_SYMBOL
-0x9183a539 seq_printf vmlinux EXPORT_SYMBOL
-0x02179927 seq_bprintf vmlinux EXPORT_SYMBOL
-0x23b9d6e2 mangle_path vmlinux EXPORT_SYMBOL
-0xdbeb7a84 seq_path vmlinux EXPORT_SYMBOL
-0xbe3449c5 seq_file_path vmlinux EXPORT_SYMBOL
-0x934fe8b0 seq_dentry vmlinux EXPORT_SYMBOL
-0xc405d87a single_open vmlinux EXPORT_SYMBOL
-0x4baef9f1 single_open_size vmlinux EXPORT_SYMBOL
-0x8c8d774e single_release vmlinux EXPORT_SYMBOL
-0x6b8d8697 seq_release_private vmlinux EXPORT_SYMBOL
-0xe4e0772a __seq_open_private vmlinux EXPORT_SYMBOL
-0xa441ca73 seq_open_private vmlinux EXPORT_SYMBOL
-0xc54ec380 seq_putc vmlinux EXPORT_SYMBOL
-0xb2047735 seq_puts vmlinux EXPORT_SYMBOL
-0xdbd2ba53 seq_put_decimal_ull vmlinux EXPORT_SYMBOL
-0x4c501357 seq_put_decimal_ll vmlinux EXPORT_SYMBOL
-0xbef02cb7 seq_write vmlinux EXPORT_SYMBOL
-0xfe63fbd3 seq_pad vmlinux EXPORT_SYMBOL
-0xda82a975 seq_hex_dump vmlinux EXPORT_SYMBOL
-0xff1e9dd8 seq_list_start vmlinux EXPORT_SYMBOL
-0xf346231f seq_list_start_head vmlinux EXPORT_SYMBOL
-0xe7d4daac seq_list_next vmlinux EXPORT_SYMBOL
-0x0f1ad8e2 seq_list_start_rcu vmlinux EXPORT_SYMBOL
-0x50944630 seq_list_start_head_rcu vmlinux EXPORT_SYMBOL
-0x0479aac1 seq_list_next_rcu vmlinux EXPORT_SYMBOL
-0x543ef284 seq_hlist_start vmlinux EXPORT_SYMBOL
-0x3dfc897c seq_hlist_start_head vmlinux EXPORT_SYMBOL
-0x75bda77a seq_hlist_next vmlinux EXPORT_SYMBOL
-0xc84a0a7e seq_hlist_start_rcu vmlinux EXPORT_SYMBOL
-0x1e9edfb7 seq_hlist_start_head_rcu vmlinux EXPORT_SYMBOL
-0x67b78eb3 seq_hlist_next_rcu vmlinux EXPORT_SYMBOL
-0xacab29b7 seq_hlist_start_percpu vmlinux EXPORT_SYMBOL
-0xfedcdb60 seq_hlist_next_percpu vmlinux EXPORT_SYMBOL
-0x1b53968c xattr_supports_user_prefix vmlinux EXPORT_SYMBOL
-0x8152d2fb __vfs_setxattr vmlinux EXPORT_SYMBOL
-0xcc2734f4 __vfs_setxattr_locked vmlinux EXPORT_SYMBOL_GPL
-0x46ad14f8 vfs_setxattr vmlinux EXPORT_SYMBOL_GPL
-0xb4091120 __vfs_getxattr vmlinux EXPORT_SYMBOL
-0xa9ed71fe vfs_getxattr vmlinux EXPORT_SYMBOL_GPL
-0x42441bec vfs_listxattr vmlinux EXPORT_SYMBOL_GPL
-0x6d81522e __vfs_removexattr vmlinux EXPORT_SYMBOL
-0x3b60960f __vfs_removexattr_locked vmlinux EXPORT_SYMBOL_GPL
-0x0f3c1746 vfs_removexattr vmlinux EXPORT_SYMBOL_GPL
-0x03547d91 generic_listxattr vmlinux EXPORT_SYMBOL
-0xe86c53fa xattr_full_name vmlinux EXPORT_SYMBOL
-0x26ffd963 simple_getattr vmlinux EXPORT_SYMBOL
-0xc444b0a3 simple_statfs vmlinux EXPORT_SYMBOL
-0x336dd185 always_delete_dentry vmlinux EXPORT_SYMBOL
-0xd117d1c2 simple_dentry_operations vmlinux EXPORT_SYMBOL
-0x49a95064 simple_lookup vmlinux EXPORT_SYMBOL
-0x50a1b792 dcache_dir_open vmlinux EXPORT_SYMBOL
-0x4d0d4dec dcache_dir_close vmlinux EXPORT_SYMBOL
-0x2d75a4f1 dcache_dir_lseek vmlinux EXPORT_SYMBOL
-0x861b9e2e dcache_readdir vmlinux EXPORT_SYMBOL
-0xbfa08a83 generic_read_dir vmlinux EXPORT_SYMBOL
-0xadaeb4a2 simple_dir_operations vmlinux EXPORT_SYMBOL
-0xea7dfccc simple_dir_inode_operations vmlinux EXPORT_SYMBOL
-0xcb26abfa simple_recursive_removal vmlinux EXPORT_SYMBOL
-0x25d5edf1 init_pseudo vmlinux EXPORT_SYMBOL
-0x494e0d93 simple_open vmlinux EXPORT_SYMBOL
-0x297944cb simple_link vmlinux EXPORT_SYMBOL
-0x131d0b9e simple_empty vmlinux EXPORT_SYMBOL
-0xe89ce5db simple_unlink vmlinux EXPORT_SYMBOL
-0x18ce398d simple_rmdir vmlinux EXPORT_SYMBOL
-0xc1d2ed5b simple_rename_timestamp vmlinux EXPORT_SYMBOL_GPL
-0x8d24202c simple_rename_exchange vmlinux EXPORT_SYMBOL_GPL
-0xa74aac95 simple_rename vmlinux EXPORT_SYMBOL
-0x27c30705 simple_setattr vmlinux EXPORT_SYMBOL
-0x0e466eb5 simple_write_begin vmlinux EXPORT_SYMBOL
-0x950e7165 ram_aops vmlinux EXPORT_SYMBOL
-0xd44c621c simple_fill_super vmlinux EXPORT_SYMBOL
-0xbce932f7 simple_pin_fs vmlinux EXPORT_SYMBOL
-0xeac6f562 simple_release_fs vmlinux EXPORT_SYMBOL
-0x619cb7dd simple_read_from_buffer vmlinux EXPORT_SYMBOL
-0xbb4f4766 simple_write_to_buffer vmlinux EXPORT_SYMBOL
-0x65e0d6d7 memory_read_from_buffer vmlinux EXPORT_SYMBOL
-0x530aeeae simple_transaction_set vmlinux EXPORT_SYMBOL
-0x909f1f68 simple_transaction_get vmlinux EXPORT_SYMBOL
-0x03a0bd6e simple_transaction_read vmlinux EXPORT_SYMBOL
-0x9b3d6994 simple_transaction_release vmlinux EXPORT_SYMBOL
-0xd1285c94 simple_attr_open vmlinux EXPORT_SYMBOL_GPL
-0x9ae0a98a simple_attr_release vmlinux EXPORT_SYMBOL_GPL
-0x14df8579 simple_attr_read vmlinux EXPORT_SYMBOL_GPL
-0x3dfcf689 simple_attr_write vmlinux EXPORT_SYMBOL_GPL
-0x8aebdc1b simple_attr_write_signed vmlinux EXPORT_SYMBOL_GPL
-0xe59b1384 generic_fh_to_dentry vmlinux EXPORT_SYMBOL_GPL
-0x45fd6bbd generic_fh_to_parent vmlinux EXPORT_SYMBOL_GPL
-0xcf5aa995 __generic_file_fsync vmlinux EXPORT_SYMBOL
-0xa6db5923 generic_file_fsync vmlinux EXPORT_SYMBOL
-0xa095e02e generic_check_addressable vmlinux EXPORT_SYMBOL
-0x7f5c28d8 noop_fsync vmlinux EXPORT_SYMBOL
-0xc4966b05 noop_direct_IO vmlinux EXPORT_SYMBOL_GPL
-0xb8b043f2 kfree_link vmlinux EXPORT_SYMBOL
-0x3565ee31 alloc_anon_inode vmlinux EXPORT_SYMBOL
-0x37d2b6a7 simple_nosetlease vmlinux EXPORT_SYMBOL
-0x87d5ef0d simple_get_link vmlinux EXPORT_SYMBOL
-0x537ae6a9 simple_symlink_inode_operations vmlinux EXPORT_SYMBOL
-0x85186332 generic_set_encrypted_ci_d_ops vmlinux EXPORT_SYMBOL
-0xb0d2fcb1 inode_maybe_inc_iversion vmlinux EXPORT_SYMBOL
-0xcccd5af6 inode_query_iversion vmlinux EXPORT_SYMBOL
-0x5101ea78 direct_write_fallback vmlinux EXPORT_SYMBOL_GPL
-0xddacd341 simple_inode_init_ts vmlinux EXPORT_SYMBOL
-0x711e4357 __tracepoint_wbc_writepage vmlinux EXPORT_SYMBOL_GPL
-0xa52217e2 __traceiter_wbc_writepage vmlinux EXPORT_SYMBOL_GPL
-0x27615ed0 __SCK__tp_func_wbc_writepage vmlinux EXPORT_SYMBOL_GPL
-0x917d953b __SCT__tp_func_wbc_writepage vmlinux EXPORT_SYMBOL_GPL
-0xf027c4ed __inode_attach_wb vmlinux EXPORT_SYMBOL_GPL
-0x7d009804 wbc_attach_and_unlock_inode vmlinux EXPORT_SYMBOL_GPL
-0x32ec517e wbc_detach_inode vmlinux EXPORT_SYMBOL_GPL
-0xf4a95fd4 wbc_account_cgroup_owner vmlinux EXPORT_SYMBOL_GPL
-0x0c3b8a70 inode_io_list_del vmlinux EXPORT_SYMBOL
-0x3de4a02c __mark_inode_dirty vmlinux EXPORT_SYMBOL
-0x125ace79 writeback_inodes_sb_nr vmlinux EXPORT_SYMBOL
-0x77dd4ef4 writeback_inodes_sb vmlinux EXPORT_SYMBOL
-0x1171ac7b try_to_writeback_inodes_sb vmlinux EXPORT_SYMBOL
-0x9238d3ba sync_inodes_sb vmlinux EXPORT_SYMBOL
-0x93c0fb5a write_inode_now vmlinux EXPORT_SYMBOL
-0x0c4aa4b4 sync_inode_metadata vmlinux EXPORT_SYMBOL
-0x3b6a7c25 splice_to_pipe vmlinux EXPORT_SYMBOL_GPL
-0x59275fa5 add_to_pipe vmlinux EXPORT_SYMBOL
-0xba43a53e copy_splice_read vmlinux EXPORT_SYMBOL
-0x59e5b376 nosteal_pipe_buf_ops vmlinux EXPORT_SYMBOL
-0x5be682de __splice_from_pipe vmlinux EXPORT_SYMBOL
-0xa5476dc2 iter_file_splice_write vmlinux EXPORT_SYMBOL
-0x59af0514 vfs_splice_read vmlinux EXPORT_SYMBOL_GPL
-0x1109cb83 splice_direct_to_actor vmlinux EXPORT_SYMBOL
-0x48e75107 do_splice_direct vmlinux EXPORT_SYMBOL
-0x8f431403 sync_filesystem vmlinux EXPORT_SYMBOL
-0x76e88309 vfs_fsync_range vmlinux EXPORT_SYMBOL
-0x859cad88 vfs_fsync vmlinux EXPORT_SYMBOL
-0xfcb5b4e3 d_path vmlinux EXPORT_SYMBOL
-0x909db267 dentry_path_raw vmlinux EXPORT_SYMBOL
-0x620641bc fsstack_copy_inode_size vmlinux EXPORT_SYMBOL_GPL
-0xc53fa76c fsstack_copy_attr_all vmlinux EXPORT_SYMBOL_GPL
-0x0b07abe2 unshare_fs_struct vmlinux EXPORT_SYMBOL_GPL
-0x5e95b1cd current_umask vmlinux EXPORT_SYMBOL
-0x28be0549 vfs_get_fsid vmlinux EXPORT_SYMBOL
-0x7e820694 vfs_statfs vmlinux EXPORT_SYMBOL
-0xaa05e743 open_related_ns vmlinux EXPORT_SYMBOL_GPL
-0xc3805cd1 fs_ftype_to_dtype vmlinux EXPORT_SYMBOL_GPL
-0x84264ced fs_umode_to_ftype vmlinux EXPORT_SYMBOL_GPL
-0x8f786bee fs_umode_to_dtype vmlinux EXPORT_SYMBOL_GPL
-0xb6b74085 vfs_parse_fs_param_source vmlinux EXPORT_SYMBOL
-0xfe17a41b vfs_parse_fs_param vmlinux EXPORT_SYMBOL
-0xa78e1c88 vfs_parse_fs_string vmlinux EXPORT_SYMBOL
-0xcd33f9e1 vfs_parse_monolithic_sep vmlinux EXPORT_SYMBOL
-0x95c37fd7 generic_parse_monolithic vmlinux EXPORT_SYMBOL
-0xc0bb46cb fs_context_for_mount vmlinux EXPORT_SYMBOL
-0x402fd24e fs_context_for_reconfigure vmlinux EXPORT_SYMBOL
-0xd4d49da9 fs_context_for_submount vmlinux EXPORT_SYMBOL
-0xba58e815 vfs_dup_fs_context vmlinux EXPORT_SYMBOL
-0x8610cb70 logfc vmlinux EXPORT_SYMBOL
-0x6d3437b6 put_fs_context vmlinux EXPORT_SYMBOL
-0x86d52ba5 lookup_constant vmlinux EXPORT_SYMBOL
-0x173c5c88 __fs_parse vmlinux EXPORT_SYMBOL
-0x96c71b8e fs_lookup_param vmlinux EXPORT_SYMBOL
-0x6eb3b12f fs_param_is_bool vmlinux EXPORT_SYMBOL
-0x0fca2ec1 fs_param_is_u32 vmlinux EXPORT_SYMBOL
-0x2aa1711d fs_param_is_s32 vmlinux EXPORT_SYMBOL
-0x5f5b4bac fs_param_is_u64 vmlinux EXPORT_SYMBOL
-0x6c851dbd fs_param_is_enum vmlinux EXPORT_SYMBOL
-0x83637c7a fs_param_is_string vmlinux EXPORT_SYMBOL
-0xe285334f fs_param_is_blob vmlinux EXPORT_SYMBOL
-0xdd9e22bd fs_param_is_fd vmlinux EXPORT_SYMBOL
-0x90c20e3e fs_param_is_blockdev vmlinux EXPORT_SYMBOL
-0xe0538b6b fs_param_is_path vmlinux EXPORT_SYMBOL
-0x496df2da kernel_read_file vmlinux EXPORT_SYMBOL_GPL
-0xf20ff3a4 kernel_read_file_from_path vmlinux EXPORT_SYMBOL_GPL
-0x2873ad95 kernel_read_file_from_path_initns vmlinux EXPORT_SYMBOL_GPL
-0x2b576760 kernel_read_file_from_fd vmlinux EXPORT_SYMBOL_GPL
-0xbc314156 nop_mnt_idmap vmlinux EXPORT_SYMBOL_GPL
-0x93cf0b94 make_vfsuid vmlinux EXPORT_SYMBOL_GPL
-0xfb11d302 make_vfsgid vmlinux EXPORT_SYMBOL_GPL
-0xb70c6798 from_vfsuid vmlinux EXPORT_SYMBOL_GPL
-0xb3f9d501 from_vfsgid vmlinux EXPORT_SYMBOL_GPL
-0x93605e9a vfsgid_in_group_p vmlinux EXPORT_SYMBOL_GPL
-0x4dabb098 generic_remap_file_range_prep vmlinux EXPORT_SYMBOL
-0xcd2d7fbd do_clone_file_range vmlinux EXPORT_SYMBOL
-0xb5347a2b vfs_clone_file_range vmlinux EXPORT_SYMBOL
-0x6639b84f vfs_dedupe_file_range_one vmlinux EXPORT_SYMBOL
-0x3cbc4e05 vfs_dedupe_file_range vmlinux EXPORT_SYMBOL
-0xa5a32482 touch_buffer vmlinux EXPORT_SYMBOL
-0x9ceb4ec1 __lock_buffer vmlinux EXPORT_SYMBOL
-0x0079c3d5 unlock_buffer vmlinux EXPORT_SYMBOL
-0xdff408b9 __wait_on_buffer vmlinux EXPORT_SYMBOL
-0xa254581b end_buffer_read_sync vmlinux EXPORT_SYMBOL
-0x8bc379c0 end_buffer_write_sync vmlinux EXPORT_SYMBOL
-0x6f2072ee end_buffer_async_write vmlinux EXPORT_SYMBOL
-0x1f5d91fe mark_buffer_async_write vmlinux EXPORT_SYMBOL
-0x82a5d1e4 sync_mapping_buffers vmlinux EXPORT_SYMBOL
-0x7420e0ff generic_buffers_fsync_noflush vmlinux EXPORT_SYMBOL
-0x0f379f7d generic_buffers_fsync vmlinux EXPORT_SYMBOL
-0x157e05f9 mark_buffer_dirty_inode vmlinux EXPORT_SYMBOL
-0xfb90ceaf block_dirty_folio vmlinux EXPORT_SYMBOL
-0xae7252dc invalidate_inode_buffers vmlinux EXPORT_SYMBOL
-0xb730f9a2 folio_alloc_buffers vmlinux EXPORT_SYMBOL_GPL
-0x75b3051f alloc_page_buffers vmlinux EXPORT_SYMBOL_GPL
-0x7ff42802 mark_buffer_dirty vmlinux EXPORT_SYMBOL
-0x852fa92a mark_buffer_write_io_error vmlinux EXPORT_SYMBOL
-0xc78f4c44 __brelse vmlinux EXPORT_SYMBOL
-0xf96118eb __bforget vmlinux EXPORT_SYMBOL
-0xc46b3188 __find_get_block vmlinux EXPORT_SYMBOL
-0x1cfd31d0 __getblk_gfp vmlinux EXPORT_SYMBOL
-0x1c600b03 __breadahead vmlinux EXPORT_SYMBOL
-0xb17f5982 __bread_gfp vmlinux EXPORT_SYMBOL
-0xf5a691cd invalidate_bh_lrus vmlinux EXPORT_SYMBOL_GPL
-0xfd54c14f folio_set_bh vmlinux EXPORT_SYMBOL
-0xd12c2f9e block_invalidate_folio vmlinux EXPORT_SYMBOL
-0xe39dbcfa folio_create_empty_buffers vmlinux EXPORT_SYMBOL
-0x7081b488 create_empty_buffers vmlinux EXPORT_SYMBOL
-0x8dfd84da clean_bdev_aliases vmlinux EXPORT_SYMBOL
-0x9eea35ab __block_write_full_folio vmlinux EXPORT_SYMBOL
-0xf4233005 folio_zero_new_buffers vmlinux EXPORT_SYMBOL
-0x26973239 __block_write_begin vmlinux EXPORT_SYMBOL
-0x76505db8 block_write_begin vmlinux EXPORT_SYMBOL
-0x96822979 block_write_end vmlinux EXPORT_SYMBOL
-0x2dca697d generic_write_end vmlinux EXPORT_SYMBOL
-0x36d90aaa block_is_partially_uptodate vmlinux EXPORT_SYMBOL
-0x44649bb8 block_read_full_folio vmlinux EXPORT_SYMBOL
-0x3c884557 generic_cont_expand_simple vmlinux EXPORT_SYMBOL
-0x90326cec cont_write_begin vmlinux EXPORT_SYMBOL
-0x9ed77657 block_commit_write vmlinux EXPORT_SYMBOL
-0x9ea22378 block_page_mkwrite vmlinux EXPORT_SYMBOL
-0x1ee34bc8 block_truncate_page vmlinux EXPORT_SYMBOL
-0x8691b578 block_write_full_page vmlinux EXPORT_SYMBOL
-0x12898a8e generic_block_bmap vmlinux EXPORT_SYMBOL
-0xd0e82ec7 submit_bh vmlinux EXPORT_SYMBOL
-0xf812467d write_dirty_buffer vmlinux EXPORT_SYMBOL
-0x559f88f3 __sync_dirty_buffer vmlinux EXPORT_SYMBOL
-0x2c01b829 sync_dirty_buffer vmlinux EXPORT_SYMBOL
-0x6f86de08 try_to_free_buffers vmlinux EXPORT_SYMBOL
-0xd274f394 alloc_buffer_head vmlinux EXPORT_SYMBOL
-0x04e12761 free_buffer_head vmlinux EXPORT_SYMBOL
-0x730fe25a bh_uptodate_or_lock vmlinux EXPORT_SYMBOL
-0x5940a650 __bh_read vmlinux EXPORT_SYMBOL
-0xa626fac6 __bh_read_batch vmlinux EXPORT_SYMBOL
-0xb6b239e2 mpage_readahead vmlinux EXPORT_SYMBOL
-0x0995ca59 mpage_read_folio vmlinux EXPORT_SYMBOL
-0x1b7c6df0 mpage_writepages vmlinux EXPORT_SYMBOL
-0x79411b92 __blockdev_direct_IO vmlinux EXPORT_SYMBOL
-0x6221f544 __fsnotify_inode_delete vmlinux EXPORT_SYMBOL_GPL
-0xb2f93161 __fsnotify_parent vmlinux EXPORT_SYMBOL_GPL
-0x764affa5 fsnotify vmlinux EXPORT_SYMBOL_GPL
-0x1a6bf28f fsnotify_get_cookie vmlinux EXPORT_SYMBOL_GPL
-0xb1cd9d37 fsnotify_put_group vmlinux EXPORT_SYMBOL_GPL
-0x43ad3141 fsnotify_alloc_group vmlinux EXPORT_SYMBOL_GPL
-0xfdf3b888 fsnotify_put_mark vmlinux EXPORT_SYMBOL_GPL
-0xa58b1851 fsnotify_destroy_mark vmlinux EXPORT_SYMBOL_GPL
-0x7c150f92 fsnotify_add_mark vmlinux EXPORT_SYMBOL_GPL
-0xe7c9b182 fsnotify_find_mark vmlinux EXPORT_SYMBOL_GPL
-0xea3268d5 fsnotify_init_mark vmlinux EXPORT_SYMBOL_GPL
-0xbaf6850c fsnotify_wait_marks_destroyed vmlinux EXPORT_SYMBOL_GPL
-0x079c8386 anon_inode_getfile vmlinux EXPORT_SYMBOL_GPL
-0x9553c159 anon_inode_getfd vmlinux EXPORT_SYMBOL_GPL
-0x6382365f anon_inode_getfd_secure vmlinux EXPORT_SYMBOL_GPL
-0xdf0f75c6 eventfd_signal vmlinux EXPORT_SYMBOL_GPL
-0x941f2aaa eventfd_ctx_put vmlinux EXPORT_SYMBOL_GPL
-0xe911df29 eventfd_ctx_do_read vmlinux EXPORT_SYMBOL_GPL
-0x41ed3cec eventfd_ctx_remove_wait_queue vmlinux EXPORT_SYMBOL_GPL
-0x3827e8b2 eventfd_fget vmlinux EXPORT_SYMBOL_GPL
-0xd67364f7 eventfd_ctx_fdget vmlinux EXPORT_SYMBOL_GPL
-0x24a58efe eventfd_ctx_fileget vmlinux EXPORT_SYMBOL_GPL
-0xd524b9ac kiocb_set_cancel_fn vmlinux EXPORT_SYMBOL
-0x5f377b22 dax_layout_busy_page_range vmlinux EXPORT_SYMBOL_GPL
-0x94093737 dax_layout_busy_page vmlinux EXPORT_SYMBOL_GPL
-0x6438b3ff dax_writeback_mapping_range vmlinux EXPORT_SYMBOL_GPL
-0x2ab3b6e6 dax_file_unshare vmlinux EXPORT_SYMBOL_GPL
-0x33a916ed dax_zero_range vmlinux EXPORT_SYMBOL_GPL
-0x74d46ae6 dax_truncate_page vmlinux EXPORT_SYMBOL_GPL
-0x8f6f5d7b dax_iomap_rw vmlinux EXPORT_SYMBOL_GPL
-0x8868349e dax_iomap_fault vmlinux EXPORT_SYMBOL_GPL
-0xa70a340d dax_finish_sync_fault vmlinux EXPORT_SYMBOL_GPL
-0x218b307e dax_remap_file_range_prep vmlinux EXPORT_SYMBOL_GPL
-0xde9f7798 locks_alloc_lock vmlinux EXPORT_SYMBOL_GPL
-0x9d60a8a8 locks_release_private vmlinux EXPORT_SYMBOL_GPL
-0x45a25ee5 locks_owner_has_blockers vmlinux EXPORT_SYMBOL_GPL
-0x1cea7660 locks_free_lock vmlinux EXPORT_SYMBOL
-0x1b6c51e8 locks_init_lock vmlinux EXPORT_SYMBOL
-0xe0acf6ac locks_copy_conflock vmlinux EXPORT_SYMBOL
-0x8e69977d locks_copy_lock vmlinux EXPORT_SYMBOL
-0x7aef43fe locks_delete_block vmlinux EXPORT_SYMBOL
-0xd84fb71b posix_test_lock vmlinux EXPORT_SYMBOL
-0xc1e1b5f8 posix_lock_file vmlinux EXPORT_SYMBOL
-0x5cd7acc8 lease_modify vmlinux EXPORT_SYMBOL
-0xeb723cc0 __break_lease vmlinux EXPORT_SYMBOL
-0x087349cd lease_get_mtime vmlinux EXPORT_SYMBOL
-0x942c6790 generic_setlease vmlinux EXPORT_SYMBOL
-0x43aa319e lease_register_notifier vmlinux EXPORT_SYMBOL_GPL
-0x985453e1 lease_unregister_notifier vmlinux EXPORT_SYMBOL_GPL
-0x376ff072 vfs_setlease vmlinux EXPORT_SYMBOL_GPL
-0xd8248272 locks_lock_inode_wait vmlinux EXPORT_SYMBOL
-0x0d6948e6 vfs_test_lock vmlinux EXPORT_SYMBOL_GPL
-0x61225ca1 vfs_lock_file vmlinux EXPORT_SYMBOL_GPL
-0x41cd8092 locks_remove_posix vmlinux EXPORT_SYMBOL
-0x51abe7e6 vfs_cancel_lock vmlinux EXPORT_SYMBOL_GPL
-0x8b0bd407 vfs_inode_has_locks vmlinux EXPORT_SYMBOL_GPL
-0x71d6bc3c get_cached_acl vmlinux EXPORT_SYMBOL
-0x8023b4d0 get_cached_acl_rcu vmlinux EXPORT_SYMBOL
-0x0895e249 set_cached_acl vmlinux EXPORT_SYMBOL
-0x7245318b forget_cached_acl vmlinux EXPORT_SYMBOL
-0x448035e4 forget_all_cached_acls vmlinux EXPORT_SYMBOL
-0x53f27437 get_inode_acl vmlinux EXPORT_SYMBOL
-0xbf59c419 posix_acl_init vmlinux EXPORT_SYMBOL
-0x9b496b21 posix_acl_alloc vmlinux EXPORT_SYMBOL
-0xfb60faf5 posix_acl_clone vmlinux EXPORT_SYMBOL_GPL
-0x19e7a670 posix_acl_valid vmlinux EXPORT_SYMBOL
-0x00b4e615 posix_acl_equiv_mode vmlinux EXPORT_SYMBOL
-0x5818fe3c posix_acl_from_mode vmlinux EXPORT_SYMBOL
-0x803ddbb6 __posix_acl_create vmlinux EXPORT_SYMBOL
-0xeafc141f __posix_acl_chmod vmlinux EXPORT_SYMBOL
-0xade188cc posix_acl_chmod vmlinux EXPORT_SYMBOL
-0x4e8871a1 posix_acl_create vmlinux EXPORT_SYMBOL_GPL
-0x031af116 posix_acl_update_mode vmlinux EXPORT_SYMBOL
-0xf8a1fc44 posix_acl_from_xattr vmlinux EXPORT_SYMBOL
-0xd91b1d76 posix_acl_to_xattr vmlinux EXPORT_SYMBOL
-0x06d61679 set_posix_acl vmlinux EXPORT_SYMBOL
-0x0688fa5a nop_posix_acl_access vmlinux EXPORT_SYMBOL_GPL
-0x006fd0b9 nop_posix_acl_default vmlinux EXPORT_SYMBOL_GPL
-0xcee1d478 vfs_set_acl vmlinux EXPORT_SYMBOL_GPL
-0xb687383a vfs_get_acl vmlinux EXPORT_SYMBOL_GPL
-0xb9e87af9 vfs_remove_acl vmlinux EXPORT_SYMBOL_GPL
-0x2373370c nfs_ssc_client_tbl vmlinux EXPORT_SYMBOL_GPL
-0x65332aa1 nfs42_ssc_register vmlinux EXPORT_SYMBOL_GPL
-0xa69063e6 nfs42_ssc_unregister vmlinux EXPORT_SYMBOL_GPL
-0xe09f013d nfs_ssc_register vmlinux EXPORT_SYMBOL_GPL
-0xd62f136b nfs_ssc_unregister vmlinux EXPORT_SYMBOL_GPL
-0x0ebe7587 dump_emit vmlinux EXPORT_SYMBOL
-0x49f615a3 dump_skip_to vmlinux EXPORT_SYMBOL
-0x8e59d926 dump_skip vmlinux EXPORT_SYMBOL
-0xfb8fa68b dump_align vmlinux EXPORT_SYMBOL
-0xd28486c0 iomap_read_folio vmlinux EXPORT_SYMBOL_GPL
-0x00c81743 iomap_readahead vmlinux EXPORT_SYMBOL_GPL
-0xce8fa6a5 iomap_is_partially_uptodate vmlinux EXPORT_SYMBOL_GPL
-0x215b462d iomap_get_folio vmlinux EXPORT_SYMBOL_GPL
-0xf19bf820 iomap_release_folio vmlinux EXPORT_SYMBOL_GPL
-0x7ad4d622 iomap_invalidate_folio vmlinux EXPORT_SYMBOL_GPL
-0x0a3f20ac iomap_dirty_folio vmlinux EXPORT_SYMBOL_GPL
-0xc115f35f __iomap_write_begin vmlinux EXPORT_SYMBOL_GPL
-0xda1e2b85 __iomap_write_end vmlinux EXPORT_SYMBOL_GPL
-0xb1d2a060 iomap_file_buffered_write vmlinux EXPORT_SYMBOL_GPL
-0x654ced42 iomap_file_buffered_write_punch_delalloc vmlinux EXPORT_SYMBOL_GPL
-0x49ac6691 iomap_file_unshare vmlinux EXPORT_SYMBOL_GPL
-0xe687a785 iomap_zero_range vmlinux EXPORT_SYMBOL_GPL
-0x9b357132 iomap_truncate_page vmlinux EXPORT_SYMBOL_GPL
-0xd8724b4a iomap_page_mkwrite vmlinux EXPORT_SYMBOL_GPL
-0xa722ad39 iomap_finish_ioends vmlinux EXPORT_SYMBOL_GPL
-0xd3035570 iomap_ioend_try_merge vmlinux EXPORT_SYMBOL_GPL
-0x22d9409b iomap_sort_ioends vmlinux EXPORT_SYMBOL_GPL
-0xdc51fcb3 iomap_writepages vmlinux EXPORT_SYMBOL_GPL
-0x344a2c84 iomap_dio_complete vmlinux EXPORT_SYMBOL_GPL
-0x07ab8edc iomap_dio_bio_end_io vmlinux EXPORT_SYMBOL_GPL
-0xeed79550 __iomap_dio_rw vmlinux EXPORT_SYMBOL_GPL
-0xe0d914f4 iomap_dio_rw vmlinux EXPORT_SYMBOL_GPL
-0x3033bf8d iomap_fiemap vmlinux EXPORT_SYMBOL_GPL
-0x8aae4c21 iomap_bmap vmlinux EXPORT_SYMBOL_GPL
-0x041243ab iomap_seek_hole vmlinux EXPORT_SYMBOL_GPL
-0x65a86c3d iomap_seek_data vmlinux EXPORT_SYMBOL_GPL
-0x1455f68a iomap_swapfile_activate vmlinux EXPORT_SYMBOL_GPL
-0x2bb6099e dq_data_lock vmlinux EXPORT_SYMBOL
-0x29293d88 __quota_error vmlinux EXPORT_SYMBOL
-0xad9a075c register_quota_format vmlinux EXPORT_SYMBOL
-0x26c16b35 unregister_quota_format vmlinux EXPORT_SYMBOL
-0x1ac3a581 dqstats vmlinux EXPORT_SYMBOL
-0x59b98560 dquot_mark_dquot_dirty vmlinux EXPORT_SYMBOL
-0x97050df7 mark_info_dirty vmlinux EXPORT_SYMBOL
-0x14f06121 dquot_acquire vmlinux EXPORT_SYMBOL
-0x01533db7 dquot_commit vmlinux EXPORT_SYMBOL
-0xcaeda34a dquot_release vmlinux EXPORT_SYMBOL
-0x6ae338ed dquot_destroy vmlinux EXPORT_SYMBOL
-0xb0910df7 dquot_scan_active vmlinux EXPORT_SYMBOL
-0x6c3aebb7 dquot_writeback_dquots vmlinux EXPORT_SYMBOL
-0x2a9dfd4a dquot_quota_sync vmlinux EXPORT_SYMBOL
-0xd1080170 dqput vmlinux EXPORT_SYMBOL
-0xd198be3c dquot_alloc vmlinux EXPORT_SYMBOL
-0x27db883c dqget vmlinux EXPORT_SYMBOL
-0x9a54cafd dquot_initialize vmlinux EXPORT_SYMBOL
-0x9dfa8919 dquot_initialize_needed vmlinux EXPORT_SYMBOL
-0x690e5301 dquot_drop vmlinux EXPORT_SYMBOL
-0x5fe8c351 __dquot_alloc_space vmlinux EXPORT_SYMBOL
-0xfd2c06e6 dquot_alloc_inode vmlinux EXPORT_SYMBOL
-0x685050de dquot_claim_space_nodirty vmlinux EXPORT_SYMBOL
-0x27a309e5 dquot_reclaim_space_nodirty vmlinux EXPORT_SYMBOL
-0x3e468246 __dquot_free_space vmlinux EXPORT_SYMBOL
-0x830bc9d4 dquot_free_inode vmlinux EXPORT_SYMBOL
-0x0e49f709 __dquot_transfer vmlinux EXPORT_SYMBOL
-0x65a8a9ff dquot_transfer vmlinux EXPORT_SYMBOL
-0x8591d65c dquot_commit_info vmlinux EXPORT_SYMBOL
-0x7b621bd6 dquot_get_next_id vmlinux EXPORT_SYMBOL
-0x95590775 dquot_operations vmlinux EXPORT_SYMBOL
-0xde43929b dquot_file_open vmlinux EXPORT_SYMBOL
-0xcbb63888 dquot_disable vmlinux EXPORT_SYMBOL
-0x80941263 dquot_quota_off vmlinux EXPORT_SYMBOL
-0x29983600 dquot_load_quota_sb vmlinux EXPORT_SYMBOL
-0x1e543376 dquot_load_quota_inode vmlinux EXPORT_SYMBOL
-0xc185b496 dquot_resume vmlinux EXPORT_SYMBOL
-0xd27ead38 dquot_quota_on vmlinux EXPORT_SYMBOL
-0x8d4c3e27 dquot_quota_on_mount vmlinux EXPORT_SYMBOL
-0x698fc536 dquot_get_dqblk vmlinux EXPORT_SYMBOL
-0xbba407b9 dquot_get_next_dqblk vmlinux EXPORT_SYMBOL
-0xa359f130 dquot_set_dqblk vmlinux EXPORT_SYMBOL
-0x2e7ab44b dquot_get_state vmlinux EXPORT_SYMBOL
-0x8a328a3e dquot_set_dqinfo vmlinux EXPORT_SYMBOL
-0x1982094b dquot_quotactl_sysfile_ops vmlinux EXPORT_SYMBOL
-0x67d1cf40 qtree_entry_unused vmlinux EXPORT_SYMBOL
-0x81f9aaf8 qtree_write_dquot vmlinux EXPORT_SYMBOL
-0x3e2ec778 qtree_delete_dquot vmlinux EXPORT_SYMBOL
-0x0f9f1b14 qtree_read_dquot vmlinux EXPORT_SYMBOL
-0x31665db4 qtree_release_dquot vmlinux EXPORT_SYMBOL
-0xc4ce95e0 qtree_get_next_id vmlinux EXPORT_SYMBOL
-0x8d55bb8a qid_eq vmlinux EXPORT_SYMBOL
-0x7ad050b9 qid_lt vmlinux EXPORT_SYMBOL
-0x7ce18c9f from_kqid vmlinux EXPORT_SYMBOL
-0x2d30596c from_kqid_munged vmlinux EXPORT_SYMBOL
-0x937733e3 qid_valid vmlinux EXPORT_SYMBOL
-0x7daece67 quota_send_warning vmlinux EXPORT_SYMBOL
-0xdc5bc615 proc_symlink vmlinux EXPORT_SYMBOL
-0x42778c38 _proc_mkdir vmlinux EXPORT_SYMBOL_GPL
-0x167cfbff proc_mkdir_data vmlinux EXPORT_SYMBOL_GPL
-0x0308fd2f proc_mkdir_mode vmlinux EXPORT_SYMBOL
-0xe4f0106e proc_mkdir vmlinux EXPORT_SYMBOL
-0x9ad4df32 proc_create_mount_point vmlinux EXPORT_SYMBOL
-0xf2c6cae2 proc_create_data vmlinux EXPORT_SYMBOL
-0x9edb3bb8 proc_create vmlinux EXPORT_SYMBOL
-0x778c2190 proc_create_seq_private vmlinux EXPORT_SYMBOL
-0xcf5e8a83 proc_create_single_data vmlinux EXPORT_SYMBOL
-0x113b0273 proc_set_size vmlinux EXPORT_SYMBOL
-0xc3e79bcf proc_set_user vmlinux EXPORT_SYMBOL
-0x6e20e986 remove_proc_entry vmlinux EXPORT_SYMBOL
-0x035c13e6 remove_proc_subtree vmlinux EXPORT_SYMBOL
-0x0d036614 proc_get_parent_data vmlinux EXPORT_SYMBOL_GPL
-0x3cba5fd7 proc_remove vmlinux EXPORT_SYMBOL
-0xc02ca214 register_sysctl_mount_point vmlinux EXPORT_SYMBOL
-0x21f93669 register_sysctl_sz vmlinux EXPORT_SYMBOL
-0xc54e1706 unregister_sysctl_table vmlinux EXPORT_SYMBOL
-0x69d860a8 proc_create_net_data vmlinux EXPORT_SYMBOL_GPL
-0xab9acb74 proc_create_net_data_write vmlinux EXPORT_SYMBOL_GPL
-0xc9040fe0 proc_create_net_single vmlinux EXPORT_SYMBOL_GPL
-0x12566bef proc_create_net_single_write vmlinux EXPORT_SYMBOL_GPL
-0x052b4013 register_vmcore_cb vmlinux EXPORT_SYMBOL_GPL
-0x8c98d248 unregister_vmcore_cb vmlinux EXPORT_SYMBOL_GPL
-0x75d499dd vmcore_add_device_dump vmlinux EXPORT_SYMBOL
-0x3d431cc0 proc_page_scan_operations vmlinux EXPORT_SYMBOL_GPL
-0x254ce798 proc_swap_pages_operations vmlinux EXPORT_SYMBOL_GPL
-0x3282e960 kernfs_path_from_node vmlinux EXPORT_SYMBOL_GPL
-0xf0de1380 kernfs_get vmlinux EXPORT_SYMBOL_GPL
-0xb4ecdbae kernfs_put vmlinux EXPORT_SYMBOL_GPL
-0xf3c022a8 kernfs_find_and_get_ns vmlinux EXPORT_SYMBOL_GPL
-0x12ed917e kernfs_notify vmlinux EXPORT_SYMBOL_GPL
-0xd52feb8e sysfs_notify vmlinux EXPORT_SYMBOL_GPL
-0x86728fb0 sysfs_create_file_ns vmlinux EXPORT_SYMBOL_GPL
-0x81632151 sysfs_create_files vmlinux EXPORT_SYMBOL_GPL
-0x649581c6 sysfs_add_file_to_group vmlinux EXPORT_SYMBOL_GPL
-0x90563dbb sysfs_chmod_file vmlinux EXPORT_SYMBOL_GPL
-0xd3fe9b33 sysfs_break_active_protection vmlinux EXPORT_SYMBOL_GPL
-0xdbfba215 sysfs_unbreak_active_protection vmlinux EXPORT_SYMBOL_GPL
-0x6124c4a1 sysfs_remove_file_ns vmlinux EXPORT_SYMBOL_GPL
-0x41473aec sysfs_remove_file_self vmlinux EXPORT_SYMBOL_GPL
-0x62a6956b sysfs_remove_files vmlinux EXPORT_SYMBOL_GPL
-0xfaca49ed sysfs_remove_file_from_group vmlinux EXPORT_SYMBOL_GPL
-0xa67fe6a3 sysfs_create_bin_file vmlinux EXPORT_SYMBOL_GPL
-0x00c0ce2b sysfs_remove_bin_file vmlinux EXPORT_SYMBOL_GPL
-0x805b277e sysfs_file_change_owner vmlinux EXPORT_SYMBOL_GPL
-0xd9447e60 sysfs_change_owner vmlinux EXPORT_SYMBOL_GPL
-0xe783e261 sysfs_emit vmlinux EXPORT_SYMBOL_GPL
-0x99f2d00a sysfs_emit_at vmlinux EXPORT_SYMBOL_GPL
-0xf1cfd6d2 sysfs_create_mount_point vmlinux EXPORT_SYMBOL_GPL
-0xac01372a sysfs_remove_mount_point vmlinux EXPORT_SYMBOL_GPL
-0x6cc482fa sysfs_create_link vmlinux EXPORT_SYMBOL_GPL
-0xbd9f40ea sysfs_create_link_nowarn vmlinux EXPORT_SYMBOL_GPL
-0x0b3717e3 sysfs_remove_link vmlinux EXPORT_SYMBOL_GPL
-0x2436b7b1 sysfs_rename_link_ns vmlinux EXPORT_SYMBOL_GPL
-0x24a713d6 sysfs_create_group vmlinux EXPORT_SYMBOL_GPL
-0x9932c122 sysfs_create_groups vmlinux EXPORT_SYMBOL_GPL
-0x99aedb5f sysfs_update_groups vmlinux EXPORT_SYMBOL_GPL
-0x24a96c3c sysfs_update_group vmlinux EXPORT_SYMBOL_GPL
-0xf79ee2d6 sysfs_remove_group vmlinux EXPORT_SYMBOL_GPL
-0xcb909905 sysfs_remove_groups vmlinux EXPORT_SYMBOL_GPL
-0x4c42828c sysfs_merge_group vmlinux EXPORT_SYMBOL_GPL
-0x1cda632b sysfs_unmerge_group vmlinux EXPORT_SYMBOL_GPL
-0xbba67b3e sysfs_add_link_to_group vmlinux EXPORT_SYMBOL_GPL
-0x8a0bf8df sysfs_remove_link_from_group vmlinux EXPORT_SYMBOL_GPL
-0xa474447c compat_only_sysfs_link_entry_to_kobj vmlinux EXPORT_SYMBOL_GPL
-0xf137aeba sysfs_group_change_owner vmlinux EXPORT_SYMBOL_GPL
-0x2bae5b31 sysfs_groups_change_owner vmlinux EXPORT_SYMBOL_GPL
-0xb5809ae5 configfs_remove_default_groups vmlinux EXPORT_SYMBOL
-0x14ea7967 configfs_depend_item vmlinux EXPORT_SYMBOL
-0x8e852d89 configfs_undepend_item vmlinux EXPORT_SYMBOL
-0xf15c4405 configfs_depend_item_unlocked vmlinux EXPORT_SYMBOL
-0x47e9282d configfs_register_group vmlinux EXPORT_SYMBOL
-0x592d5107 configfs_unregister_group vmlinux EXPORT_SYMBOL
-0x0a50c8b6 configfs_register_default_group vmlinux EXPORT_SYMBOL
-0xfc5154da configfs_unregister_default_group vmlinux EXPORT_SYMBOL
-0x7325fd3c configfs_register_subsystem vmlinux EXPORT_SYMBOL
-0x1f7630cb configfs_unregister_subsystem vmlinux EXPORT_SYMBOL
-0xd20584bb config_item_set_name vmlinux EXPORT_SYMBOL
-0x6e685b47 config_item_init_type_name vmlinux EXPORT_SYMBOL
-0xf5d77d39 config_group_init_type_name vmlinux EXPORT_SYMBOL
-0x52aace22 config_item_get vmlinux EXPORT_SYMBOL
-0x85c5fb51 config_item_get_unless_zero vmlinux EXPORT_SYMBOL
-0xc4ade3c0 config_item_put vmlinux EXPORT_SYMBOL
-0x75603d32 config_group_init vmlinux EXPORT_SYMBOL
-0xa9568238 config_group_find_item vmlinux EXPORT_SYMBOL
-0x26f8f6ac exportfs_encode_inode_fh vmlinux EXPORT_SYMBOL_GPL
-0x59279a99 exportfs_encode_fh vmlinux EXPORT_SYMBOL_GPL
-0x856f8589 exportfs_decode_fh_raw vmlinux EXPORT_SYMBOL_GPL
-0x2ef2d32b exportfs_decode_fh vmlinux EXPORT_SYMBOL_GPL
-0x94bf03ca utf8_to_utf32 vmlinux EXPORT_SYMBOL
-0x2875a315 utf32_to_utf8 vmlinux EXPORT_SYMBOL
-0x97adb487 utf8s_to_utf16s vmlinux EXPORT_SYMBOL
-0xabf32f29 utf16s_to_utf8s vmlinux EXPORT_SYMBOL
-0x4bf99274 __register_nls vmlinux EXPORT_SYMBOL
-0xf0b29c63 unregister_nls vmlinux EXPORT_SYMBOL
-0xd6059556 unload_nls vmlinux EXPORT_SYMBOL
-0xb5809f24 load_nls vmlinux EXPORT_SYMBOL
-0x5616eb03 load_nls_default vmlinux EXPORT_SYMBOL
-0xbfae9e07 utf8_validate vmlinux EXPORT_SYMBOL
-0x953d2426 utf8_strncmp vmlinux EXPORT_SYMBOL
-0xc452212c utf8_strncasecmp vmlinux EXPORT_SYMBOL
-0x01156ae4 utf8_strncasecmp_folded vmlinux EXPORT_SYMBOL
-0xe6550092 utf8_casefold vmlinux EXPORT_SYMBOL
-0x0a1e8769 utf8_casefold_hash vmlinux EXPORT_SYMBOL
-0x57db8fd6 utf8_normalize vmlinux EXPORT_SYMBOL
-0xd7987177 utf8_load vmlinux EXPORT_SYMBOL
-0x81a1eb59 utf8_unload vmlinux EXPORT_SYMBOL
-0x3565a929 utf8_data_table vmlinux EXPORT_SYMBOL_GPL
-0x88795610 debugfs_lookup vmlinux EXPORT_SYMBOL_GPL
-0xc7155af9 debugfs_create_file vmlinux EXPORT_SYMBOL_GPL
-0xe14aa8b3 debugfs_create_file_unsafe vmlinux EXPORT_SYMBOL_GPL
-0x752ec58e debugfs_create_file_size vmlinux EXPORT_SYMBOL_GPL
-0x0df22fa2 debugfs_create_dir vmlinux EXPORT_SYMBOL_GPL
-0x72ced7e9 debugfs_create_automount vmlinux EXPORT_SYMBOL
-0x20ffc8ac debugfs_create_symlink vmlinux EXPORT_SYMBOL_GPL
-0x42185bbd debugfs_remove vmlinux EXPORT_SYMBOL_GPL
-0x6ac0a109 debugfs_lookup_and_remove vmlinux EXPORT_SYMBOL_GPL
-0x3975d10d debugfs_rename vmlinux EXPORT_SYMBOL_GPL
-0x716265c7 debugfs_initialized vmlinux EXPORT_SYMBOL_GPL
-0x937b8fa5 debugfs_real_fops vmlinux EXPORT_SYMBOL_GPL
-0xbe112b8f debugfs_file_get vmlinux EXPORT_SYMBOL_GPL
-0x686fde3f debugfs_file_put vmlinux EXPORT_SYMBOL_GPL
-0x89b3bafa debugfs_attr_read vmlinux EXPORT_SYMBOL_GPL
-0xc241b5ac debugfs_attr_write vmlinux EXPORT_SYMBOL_GPL
-0xe10cfc12 debugfs_attr_write_signed vmlinux EXPORT_SYMBOL_GPL
-0x7d83f764 debugfs_create_u8 vmlinux EXPORT_SYMBOL_GPL
-0x5c24cd72 debugfs_create_u16 vmlinux EXPORT_SYMBOL_GPL
-0x35127d4f debugfs_create_u32 vmlinux EXPORT_SYMBOL_GPL
-0x774198ad debugfs_create_u64 vmlinux EXPORT_SYMBOL_GPL
-0xff487866 debugfs_create_ulong vmlinux EXPORT_SYMBOL_GPL
-0x6b850ba4 debugfs_create_x8 vmlinux EXPORT_SYMBOL_GPL
-0x23d5b20d debugfs_create_x16 vmlinux EXPORT_SYMBOL_GPL
-0x4ae30230 debugfs_create_x32 vmlinux EXPORT_SYMBOL_GPL
-0x08b0e7d2 debugfs_create_x64 vmlinux EXPORT_SYMBOL_GPL
-0xa3823a50 debugfs_create_size_t vmlinux EXPORT_SYMBOL_GPL
-0x709e0cc1 debugfs_create_atomic_t vmlinux EXPORT_SYMBOL_GPL
-0x35d2b490 debugfs_read_file_bool vmlinux EXPORT_SYMBOL_GPL
-0xaf97c5c2 debugfs_write_file_bool vmlinux EXPORT_SYMBOL_GPL
-0x562d563b debugfs_create_bool vmlinux EXPORT_SYMBOL_GPL
-0xbe1aa366 debugfs_create_str vmlinux EXPORT_SYMBOL_GPL
-0x39dc66f7 debugfs_create_blob vmlinux EXPORT_SYMBOL_GPL
-0xc0b48a9a debugfs_create_u32_array vmlinux EXPORT_SYMBOL_GPL
-0x5fa8ceba debugfs_print_regs32 vmlinux EXPORT_SYMBOL_GPL
-0xfe087f8b debugfs_create_regset32 vmlinux EXPORT_SYMBOL_GPL
-0xf1eb36c8 debugfs_create_devm_seqfile vmlinux EXPORT_SYMBOL_GPL
-0xa5d7c388 pstore_type_to_name vmlinux EXPORT_SYMBOL_GPL
-0x7e5db80b pstore_name_to_type vmlinux EXPORT_SYMBOL_GPL
-0x116b2baa pstore_register vmlinux EXPORT_SYMBOL_GPL
-0x4bfee452 pstore_unregister vmlinux EXPORT_SYMBOL_GPL
-0x55609556 key_alloc vmlinux EXPORT_SYMBOL
-0x9c2a59ee key_payload_reserve vmlinux EXPORT_SYMBOL
-0xc40bb154 key_instantiate_and_link vmlinux EXPORT_SYMBOL
-0x03c07873 key_reject_and_link vmlinux EXPORT_SYMBOL
-0xde31500c key_put vmlinux EXPORT_SYMBOL
-0xe673cfb9 key_set_timeout vmlinux EXPORT_SYMBOL_GPL
-0xfe1d2e94 key_create_or_update vmlinux EXPORT_SYMBOL
-0x700c6c17 key_create vmlinux EXPORT_SYMBOL
-0x7984eefc key_update vmlinux EXPORT_SYMBOL
-0x63cbbf43 key_revoke vmlinux EXPORT_SYMBOL
-0x1b5052c6 key_invalidate vmlinux EXPORT_SYMBOL
-0xc6cde844 generic_key_instantiate vmlinux EXPORT_SYMBOL
-0xc6c6214d register_key_type vmlinux EXPORT_SYMBOL
-0x38ac36ab unregister_key_type vmlinux EXPORT_SYMBOL
-0xfdf6ffe7 key_type_keyring vmlinux EXPORT_SYMBOL
-0x9a429ae1 keyring_alloc vmlinux EXPORT_SYMBOL
-0xce77341c keyring_search vmlinux EXPORT_SYMBOL
-0x9f50b770 keyring_restrict vmlinux EXPORT_SYMBOL
-0xcb487cef key_link vmlinux EXPORT_SYMBOL
-0xfb753999 key_unlink vmlinux EXPORT_SYMBOL
-0x69e13477 key_move vmlinux EXPORT_SYMBOL
-0x490f7898 keyring_clear vmlinux EXPORT_SYMBOL
-0xb8aff233 key_task_permission vmlinux EXPORT_SYMBOL
-0xa512cdb4 key_validate vmlinux EXPORT_SYMBOL
-0x1dc6c93b lookup_user_key vmlinux EXPORT_SYMBOL
-0xa120f459 complete_request_key vmlinux EXPORT_SYMBOL
-0x71fcc237 wait_for_key_construction vmlinux EXPORT_SYMBOL
-0x398558bd request_key_tag vmlinux EXPORT_SYMBOL
-0x16fcb232 request_key_with_auxdata vmlinux EXPORT_SYMBOL
-0xf1ef9864 request_key_rcu vmlinux EXPORT_SYMBOL
-0xdc63bd8a key_type_user vmlinux EXPORT_SYMBOL_GPL
-0xb5197535 key_type_logon vmlinux EXPORT_SYMBOL_GPL
-0x1e424d61 user_preparse vmlinux EXPORT_SYMBOL_GPL
-0x8ead800c user_free_preparse vmlinux EXPORT_SYMBOL_GPL
-0x3a4470e9 user_update vmlinux EXPORT_SYMBOL_GPL
-0x630c723b user_revoke vmlinux EXPORT_SYMBOL
-0x6ee27c94 user_destroy vmlinux EXPORT_SYMBOL_GPL
-0x8b7be019 user_describe vmlinux EXPORT_SYMBOL_GPL
-0xce51aa05 user_read vmlinux EXPORT_SYMBOL_GPL
-0x8f94154f key_type_trusted vmlinux EXPORT_SYMBOL_GPL
-0x79470a2c TSS_authhmac vmlinux EXPORT_SYMBOL_GPL
-0xde6f1851 TSS_checkhmac1 vmlinux EXPORT_SYMBOL_GPL
-0xc4a72936 trusted_tpm_send vmlinux EXPORT_SYMBOL_GPL
-0x73cc8631 oiap vmlinux EXPORT_SYMBOL_GPL
-0xcdf7df12 key_type_encrypted vmlinux EXPORT_SYMBOL_GPL
-0x0805f2c8 ecryptfs_get_auth_tok_key vmlinux EXPORT_SYMBOL
-0x263beb75 ecryptfs_get_versions vmlinux EXPORT_SYMBOL
-0x3891ffc8 ecryptfs_fill_auth_tok vmlinux EXPORT_SYMBOL
-0xcb3ae215 call_blocking_lsm_notifier vmlinux EXPORT_SYMBOL
-0xf738d1be register_blocking_lsm_notifier vmlinux EXPORT_SYMBOL
-0x88822d38 unregister_blocking_lsm_notifier vmlinux EXPORT_SYMBOL
-0xf2e5bd87 security_free_mnt_opts vmlinux EXPORT_SYMBOL
-0xb48d4d22 security_sb_eat_lsm_opts vmlinux EXPORT_SYMBOL
-0x87eca219 security_sb_mnt_opts_compat vmlinux EXPORT_SYMBOL
-0x2a0f190e security_sb_remount vmlinux EXPORT_SYMBOL
-0xb18ddd52 security_sb_set_mnt_opts vmlinux EXPORT_SYMBOL
-0xfa3a7719 security_sb_clone_mnt_opts vmlinux EXPORT_SYMBOL
-0x36fa7f33 security_dentry_init_security vmlinux EXPORT_SYMBOL
-0x8763101a security_dentry_create_files_as vmlinux EXPORT_SYMBOL
-0x8ef6de68 security_inode_init_security vmlinux EXPORT_SYMBOL
-0x48f492fc security_path_mknod vmlinux EXPORT_SYMBOL
-0xbb63fe96 security_path_mkdir vmlinux EXPORT_SYMBOL
-0xdf426852 security_path_unlink vmlinux EXPORT_SYMBOL
-0x21de4a04 security_path_rename vmlinux EXPORT_SYMBOL
-0xe7d8aacc security_inode_create vmlinux EXPORT_SYMBOL_GPL
-0xdaf1783b security_inode_mkdir vmlinux EXPORT_SYMBOL_GPL
-0xf1bf0ec2 security_inode_setattr vmlinux EXPORT_SYMBOL_GPL
-0x5a237d62 security_inode_listsecurity vmlinux EXPORT_SYMBOL
-0xcd0f36df security_inode_copy_up vmlinux EXPORT_SYMBOL
-0x2d994605 security_inode_copy_up_xattr vmlinux EXPORT_SYMBOL
-0xc0d73592 security_file_ioctl vmlinux EXPORT_SYMBOL_GPL
-0x76cfd380 security_file_ioctl_compat vmlinux EXPORT_SYMBOL_GPL
-0xb9475e48 security_cred_getsecid vmlinux EXPORT_SYMBOL
-0x9bc89421 security_kernel_read_file vmlinux EXPORT_SYMBOL_GPL
-0x70a45ae2 security_kernel_post_read_file vmlinux EXPORT_SYMBOL_GPL
-0x86bbc06c security_kernel_load_data vmlinux EXPORT_SYMBOL_GPL
-0xca8c34fd security_kernel_post_load_data vmlinux EXPORT_SYMBOL_GPL
-0x189adfe6 security_current_getsecid_subj vmlinux EXPORT_SYMBOL
-0x7bee790a security_task_getsecid_obj vmlinux EXPORT_SYMBOL
-0xfe675c82 security_d_instantiate vmlinux EXPORT_SYMBOL
-0xcdc39c9e security_ismaclabel vmlinux EXPORT_SYMBOL
-0xf44d53da security_secid_to_secctx vmlinux EXPORT_SYMBOL
-0xf9c1f9ab security_secctx_to_secid vmlinux EXPORT_SYMBOL
-0xed61f6b3 security_release_secctx vmlinux EXPORT_SYMBOL
-0x9ce5d4ee security_inode_invalidate_secctx vmlinux EXPORT_SYMBOL
-0xa393bef1 security_inode_notifysecctx vmlinux EXPORT_SYMBOL
-0x06c33b39 security_inode_setsecctx vmlinux EXPORT_SYMBOL
-0xd958b360 security_inode_getsecctx vmlinux EXPORT_SYMBOL
-0x03592ea0 security_unix_stream_connect vmlinux EXPORT_SYMBOL
-0xa8fef7bb security_unix_may_send vmlinux EXPORT_SYMBOL
-0x716ddb7a security_socket_socketpair vmlinux EXPORT_SYMBOL
-0x02649054 security_sock_rcv_skb vmlinux EXPORT_SYMBOL
-0xea161f3c security_socket_getpeersec_dgram vmlinux EXPORT_SYMBOL
-0xe06141e9 security_sk_clone vmlinux EXPORT_SYMBOL
-0x53cc3604 security_sk_classify_flow vmlinux EXPORT_SYMBOL
-0xf5cf7920 security_req_classify_flow vmlinux EXPORT_SYMBOL
-0x0da10ec3 security_sock_graft vmlinux EXPORT_SYMBOL
-0xd4592578 security_inet_conn_request vmlinux EXPORT_SYMBOL
-0x7da9e8ce security_inet_conn_established vmlinux EXPORT_SYMBOL
-0x2c82c36a security_secmark_relabel_packet vmlinux EXPORT_SYMBOL
-0x2f03fc4b security_secmark_refcount_inc vmlinux EXPORT_SYMBOL
-0x19bd383b security_secmark_refcount_dec vmlinux EXPORT_SYMBOL
-0x438610bd security_tun_dev_alloc_security vmlinux EXPORT_SYMBOL
-0x50097088 security_tun_dev_free_security vmlinux EXPORT_SYMBOL
-0x4f1cd128 security_tun_dev_create vmlinux EXPORT_SYMBOL
-0x34f3484e security_tun_dev_attach_queue vmlinux EXPORT_SYMBOL
-0x9be7bde4 security_tun_dev_attach vmlinux EXPORT_SYMBOL
-0xda3d10a8 security_tun_dev_open vmlinux EXPORT_SYMBOL
-0xc0118bab security_sctp_assoc_request vmlinux EXPORT_SYMBOL
-0x7c435d2f security_sctp_bind_connect vmlinux EXPORT_SYMBOL
-0xdc984676 security_sctp_sk_clone vmlinux EXPORT_SYMBOL
-0x417477ec security_sctp_assoc_established vmlinux EXPORT_SYMBOL
-0x3f89071b security_ib_pkey_access vmlinux EXPORT_SYMBOL
-0xe58090ca security_ib_endport_manage_subnet vmlinux EXPORT_SYMBOL
-0x2f2e91b2 security_ib_alloc_security vmlinux EXPORT_SYMBOL
-0x50be748d security_ib_free_security vmlinux EXPORT_SYMBOL
-0xc65304b3 security_xfrm_policy_alloc vmlinux EXPORT_SYMBOL
-0xa9c63b69 security_xfrm_policy_free vmlinux EXPORT_SYMBOL
-0x27866435 security_xfrm_state_alloc vmlinux EXPORT_SYMBOL
-0xc599a772 security_xfrm_state_delete vmlinux EXPORT_SYMBOL
-0x3bfa0721 security_skb_classify_flow vmlinux EXPORT_SYMBOL
-0x127d83ea security_locked_down vmlinux EXPORT_SYMBOL
-0x011ace65 securityfs_create_file vmlinux EXPORT_SYMBOL_GPL
-0xd358ded1 securityfs_create_dir vmlinux EXPORT_SYMBOL_GPL
-0x518b6a03 securityfs_create_symlink vmlinux EXPORT_SYMBOL_GPL
-0x484fc3a7 securityfs_remove vmlinux EXPORT_SYMBOL_GPL
-0x9e9eab95 devcgroup_check_permission vmlinux EXPORT_SYMBOL
-0x57c9c701 ima_file_check vmlinux EXPORT_SYMBOL_GPL
-0x6e484655 ima_file_hash vmlinux EXPORT_SYMBOL_GPL
-0x4eae9d8c ima_inode_hash vmlinux EXPORT_SYMBOL_GPL
-0x0d5cecc6 ima_measure_critical_data vmlinux EXPORT_SYMBOL_GPL
-0x48366951 evm_verifyxattr vmlinux EXPORT_SYMBOL_GPL
-0xc046baff evm_inode_init_security vmlinux EXPORT_SYMBOL_GPL
-0xe2ce2b4d evm_set_key vmlinux EXPORT_SYMBOL_GPL
-0x457594fa crypto_alg_list vmlinux EXPORT_SYMBOL_GPL
-0x35d3dc46 crypto_alg_sem vmlinux EXPORT_SYMBOL_GPL
-0xbe5c888b crypto_chain vmlinux EXPORT_SYMBOL_GPL
-0x4509a60d __crypto_boot_test_finished vmlinux EXPORT_SYMBOL_GPL
-0x76f6b0f6 crypto_mod_get vmlinux EXPORT_SYMBOL_GPL
-0xfa502233 crypto_mod_put vmlinux EXPORT_SYMBOL_GPL
-0x8d875d5a crypto_larval_alloc vmlinux EXPORT_SYMBOL_GPL
-0x83cc514b crypto_larval_kill vmlinux EXPORT_SYMBOL_GPL
-0x7398458b crypto_wait_for_test vmlinux EXPORT_SYMBOL_GPL
-0x5a7bfe41 crypto_probing_notify vmlinux EXPORT_SYMBOL_GPL
-0x309eb744 crypto_alg_mod_lookup vmlinux EXPORT_SYMBOL_GPL
-0xa4df1bc6 crypto_shoot_alg vmlinux EXPORT_SYMBOL_GPL
-0x2555c852 __crypto_alloc_tfmgfp vmlinux EXPORT_SYMBOL_GPL
-0x4d928447 __crypto_alloc_tfm vmlinux EXPORT_SYMBOL_GPL
-0x1abcd28b crypto_alloc_base vmlinux EXPORT_SYMBOL_GPL
-0x2b85ec8c crypto_create_tfm_node vmlinux EXPORT_SYMBOL_GPL
-0x2ed24071 crypto_clone_tfm vmlinux EXPORT_SYMBOL_GPL
-0xd25b3036 crypto_find_alg vmlinux EXPORT_SYMBOL_GPL
-0x22412fa1 crypto_alloc_tfm_node vmlinux EXPORT_SYMBOL_GPL
-0xf0dfa50c crypto_destroy_tfm vmlinux EXPORT_SYMBOL_GPL
-0x951a2773 crypto_has_alg vmlinux EXPORT_SYMBOL_GPL
-0x0a8e458b crypto_req_done vmlinux EXPORT_SYMBOL_GPL
-0xc808f64c crypto_cipher_setkey vmlinux EXPORT_SYMBOL_GPL CRYPTO_INTERNAL
-0xa231dc32 crypto_cipher_encrypt_one vmlinux EXPORT_SYMBOL_GPL CRYPTO_INTERNAL
-0x0167f0b1 crypto_cipher_decrypt_one vmlinux EXPORT_SYMBOL_GPL CRYPTO_INTERNAL
-0xdf21978e crypto_clone_cipher vmlinux EXPORT_SYMBOL_GPL
-0x2b604223 crypto_comp_compress vmlinux EXPORT_SYMBOL_GPL
-0xb12defe7 crypto_comp_decompress vmlinux EXPORT_SYMBOL_GPL
-0xb0aa812e fips_enabled vmlinux EXPORT_SYMBOL_GPL
-0x7ee2356b fips_fail_notif_chain vmlinux EXPORT_SYMBOL_GPL
-0x7bf6b498 fips_fail_notify vmlinux EXPORT_SYMBOL_GPL
-0x453b8a66 crypto_remove_spawns vmlinux EXPORT_SYMBOL_GPL
-0x808ec1a3 crypto_alg_tested vmlinux EXPORT_SYMBOL_GPL
-0x3de9cae1 crypto_remove_final vmlinux EXPORT_SYMBOL_GPL
-0x02a53a97 crypto_register_alg vmlinux EXPORT_SYMBOL_GPL
-0xeebe4361 crypto_unregister_alg vmlinux EXPORT_SYMBOL_GPL
-0x192926d2 crypto_register_algs vmlinux EXPORT_SYMBOL_GPL
-0xb9332d2b crypto_unregister_algs vmlinux EXPORT_SYMBOL_GPL
-0xcc3b1ec2 crypto_register_template vmlinux EXPORT_SYMBOL_GPL
-0x0b47fd84 crypto_register_templates vmlinux EXPORT_SYMBOL_GPL
-0x49c450a7 crypto_unregister_template vmlinux EXPORT_SYMBOL_GPL
-0xf778745f crypto_unregister_templates vmlinux EXPORT_SYMBOL_GPL
-0xa935ab25 crypto_lookup_template vmlinux EXPORT_SYMBOL_GPL
-0xaa7ca825 crypto_register_instance vmlinux EXPORT_SYMBOL_GPL
-0x2c6c9363 crypto_unregister_instance vmlinux EXPORT_SYMBOL_GPL
-0xe7c07405 crypto_grab_spawn vmlinux EXPORT_SYMBOL_GPL
-0x5d756560 crypto_drop_spawn vmlinux EXPORT_SYMBOL_GPL
-0x322d0f22 crypto_spawn_tfm vmlinux EXPORT_SYMBOL_GPL
-0x68bb184f crypto_spawn_tfm2 vmlinux EXPORT_SYMBOL_GPL
-0x9879932b crypto_register_notifier vmlinux EXPORT_SYMBOL_GPL
-0x710c73b6 crypto_unregister_notifier vmlinux EXPORT_SYMBOL_GPL
-0xfdbd7a17 crypto_get_attr_type vmlinux EXPORT_SYMBOL_GPL
-0x4934bdd0 crypto_check_attr_type vmlinux EXPORT_SYMBOL_GPL
-0x9a11a0fc crypto_attr_alg_name vmlinux EXPORT_SYMBOL_GPL
-0x2e7f4aa9 crypto_inst_setname vmlinux EXPORT_SYMBOL_GPL
-0x499043d3 crypto_init_queue vmlinux EXPORT_SYMBOL_GPL
-0x85ace5cd crypto_enqueue_request vmlinux EXPORT_SYMBOL_GPL
-0x35c97f8b crypto_enqueue_request_head vmlinux EXPORT_SYMBOL_GPL
-0x3c05b084 crypto_dequeue_request vmlinux EXPORT_SYMBOL_GPL
-0x3ef051c8 crypto_inc vmlinux EXPORT_SYMBOL_GPL
-0xc066faa0 crypto_alg_extsize vmlinux EXPORT_SYMBOL_GPL
-0x23c9dd65 crypto_type_has_alg vmlinux EXPORT_SYMBOL_GPL
-0x9f08c714 scatterwalk_copychunks vmlinux EXPORT_SYMBOL_GPL
-0xc62611e1 scatterwalk_map_and_copy vmlinux EXPORT_SYMBOL_GPL
-0x80a095d8 scatterwalk_ffwd vmlinux EXPORT_SYMBOL_GPL
-0x3d27635a crypto_aead_setkey vmlinux EXPORT_SYMBOL_GPL
-0x4e023dce crypto_aead_setauthsize vmlinux EXPORT_SYMBOL_GPL
-0x0e1ad047 crypto_aead_encrypt vmlinux EXPORT_SYMBOL_GPL
-0xc839053f crypto_aead_decrypt vmlinux EXPORT_SYMBOL_GPL
-0x821df0a9 crypto_grab_aead vmlinux EXPORT_SYMBOL_GPL
-0x74a40a4a crypto_alloc_aead vmlinux EXPORT_SYMBOL_GPL
-0xf6995dc8 crypto_register_aead vmlinux EXPORT_SYMBOL_GPL
-0x67669653 crypto_unregister_aead vmlinux EXPORT_SYMBOL_GPL
-0xf8fd779b crypto_register_aeads vmlinux EXPORT_SYMBOL_GPL
-0xa185fa67 crypto_unregister_aeads vmlinux EXPORT_SYMBOL_GPL
-0xd1749deb aead_register_instance vmlinux EXPORT_SYMBOL_GPL
-0x1952d613 aead_geniv_alloc vmlinux EXPORT_SYMBOL_GPL
-0x1eaa776e aead_init_geniv vmlinux EXPORT_SYMBOL_GPL
-0x1a6f719f aead_exit_geniv vmlinux EXPORT_SYMBOL_GPL
-0x34e7bf0a skcipher_walk_done vmlinux EXPORT_SYMBOL_GPL
-0x5731e60b skcipher_walk_complete vmlinux EXPORT_SYMBOL_GPL
-0x82290555 skcipher_walk_virt vmlinux EXPORT_SYMBOL_GPL
-0x0b08fdb4 skcipher_walk_async vmlinux EXPORT_SYMBOL_GPL
-0xe5e42e7c skcipher_walk_aead_encrypt vmlinux EXPORT_SYMBOL_GPL
-0xc3803934 skcipher_walk_aead_decrypt vmlinux EXPORT_SYMBOL_GPL
-0x2b737455 crypto_skcipher_setkey vmlinux EXPORT_SYMBOL_GPL
-0x8e4e54b4 crypto_skcipher_encrypt vmlinux EXPORT_SYMBOL_GPL
-0xe7e8a07b crypto_skcipher_decrypt vmlinux EXPORT_SYMBOL_GPL
-0x999752aa crypto_grab_skcipher vmlinux EXPORT_SYMBOL_GPL
-0x160bea1e crypto_alloc_skcipher vmlinux EXPORT_SYMBOL_GPL
-0xad2cc197 crypto_alloc_sync_skcipher vmlinux EXPORT_SYMBOL_GPL
-0x6199ad5d crypto_has_skcipher vmlinux EXPORT_SYMBOL_GPL
-0x0efda04d crypto_register_skcipher vmlinux EXPORT_SYMBOL_GPL
-0x6cd0492e crypto_unregister_skcipher vmlinux EXPORT_SYMBOL_GPL
-0x4f378073 crypto_register_skciphers vmlinux EXPORT_SYMBOL_GPL
-0x6c5c487c crypto_unregister_skciphers vmlinux EXPORT_SYMBOL_GPL
-0xb53453e3 skcipher_register_instance vmlinux EXPORT_SYMBOL_GPL
-0xbf727db8 skcipher_alloc_instance_simple vmlinux EXPORT_SYMBOL_GPL
-0x035234da crypto_hash_walk_done vmlinux EXPORT_SYMBOL_GPL
-0x084492f4 crypto_hash_walk_first vmlinux EXPORT_SYMBOL_GPL
-0x5d4e7341 crypto_ahash_setkey vmlinux EXPORT_SYMBOL_GPL
-0xcaa6c12b crypto_ahash_final vmlinux EXPORT_SYMBOL_GPL
-0x5b50f906 crypto_ahash_finup vmlinux EXPORT_SYMBOL_GPL
-0x36080431 crypto_ahash_digest vmlinux EXPORT_SYMBOL_GPL
-0x4471d05b crypto_grab_ahash vmlinux EXPORT_SYMBOL_GPL
-0x50c77bb8 crypto_alloc_ahash vmlinux EXPORT_SYMBOL_GPL
-0x34407691 crypto_has_ahash vmlinux EXPORT_SYMBOL_GPL
-0x2263846a crypto_clone_ahash vmlinux EXPORT_SYMBOL_GPL
-0xf043c4a6 crypto_register_ahash vmlinux EXPORT_SYMBOL_GPL
-0x11b6d171 crypto_unregister_ahash vmlinux EXPORT_SYMBOL_GPL
-0x1b65eb8e crypto_register_ahashes vmlinux EXPORT_SYMBOL_GPL
-0x72b04127 crypto_unregister_ahashes vmlinux EXPORT_SYMBOL_GPL
-0x6c9cfcc1 ahash_register_instance vmlinux EXPORT_SYMBOL_GPL
-0x6391d3ab crypto_hash_alg_has_setkey vmlinux EXPORT_SYMBOL_GPL
-0x9fa22f01 shash_no_setkey vmlinux EXPORT_SYMBOL_GPL
-0x7dc98a9d crypto_shash_setkey vmlinux EXPORT_SYMBOL_GPL
-0x7e37a9b7 crypto_shash_update vmlinux EXPORT_SYMBOL_GPL
-0x79279254 crypto_shash_final vmlinux EXPORT_SYMBOL_GPL
-0x02e422d1 crypto_shash_finup vmlinux EXPORT_SYMBOL_GPL
-0x7361d85a crypto_shash_digest vmlinux EXPORT_SYMBOL_GPL
-0x077d2b85 crypto_shash_tfm_digest vmlinux EXPORT_SYMBOL_GPL
-0x30ffd810 shash_ahash_update vmlinux EXPORT_SYMBOL_GPL
-0x2e93db72 shash_ahash_finup vmlinux EXPORT_SYMBOL_GPL
-0x4c6d22d4 shash_ahash_digest vmlinux EXPORT_SYMBOL_GPL
-0x14ce0c5f crypto_grab_shash vmlinux EXPORT_SYMBOL_GPL
-0x25818887 crypto_alloc_shash vmlinux EXPORT_SYMBOL_GPL
-0x10b89330 crypto_has_shash vmlinux EXPORT_SYMBOL_GPL
-0xef5a8b26 crypto_clone_shash vmlinux EXPORT_SYMBOL_GPL
-0x727c9572 crypto_register_shash vmlinux EXPORT_SYMBOL_GPL
-0xb1b26bb2 crypto_unregister_shash vmlinux EXPORT_SYMBOL_GPL
-0x99aefefc crypto_register_shashes vmlinux EXPORT_SYMBOL_GPL
-0x521e1580 crypto_unregister_shashes vmlinux EXPORT_SYMBOL_GPL
-0x1b9ad18d shash_register_instance vmlinux EXPORT_SYMBOL_GPL
-0x79788af4 shash_free_singlespawn_instance vmlinux EXPORT_SYMBOL_GPL
-0xb06dede6 crypto_grab_akcipher vmlinux EXPORT_SYMBOL_GPL
-0x1bf39a10 crypto_alloc_akcipher vmlinux EXPORT_SYMBOL_GPL
-0xdf50d547 crypto_register_akcipher vmlinux EXPORT_SYMBOL_GPL
-0xdef3eddb crypto_unregister_akcipher vmlinux EXPORT_SYMBOL_GPL
-0x3ea6c415 akcipher_register_instance vmlinux EXPORT_SYMBOL_GPL
-0x8d0a4d0e crypto_akcipher_sync_prep vmlinux EXPORT_SYMBOL_GPL
-0x461c7e1d crypto_akcipher_sync_post vmlinux EXPORT_SYMBOL_GPL
-0x08ee1135 crypto_akcipher_sync_encrypt vmlinux EXPORT_SYMBOL_GPL
-0x8fc0b587 crypto_akcipher_sync_decrypt vmlinux EXPORT_SYMBOL_GPL
-0x9f6df2c1 crypto_init_akcipher_ops_sig vmlinux EXPORT_SYMBOL_GPL
-0x051aac56 crypto_alloc_sig vmlinux EXPORT_SYMBOL_GPL
-0xaa985ca3 crypto_sig_maxsize vmlinux EXPORT_SYMBOL_GPL
-0x64cc0473 crypto_sig_sign vmlinux EXPORT_SYMBOL_GPL
-0xf439c631 crypto_sig_verify vmlinux EXPORT_SYMBOL_GPL
-0x1e28c73d crypto_sig_set_pubkey vmlinux EXPORT_SYMBOL_GPL
-0xdc4bfb5b crypto_sig_set_privkey vmlinux EXPORT_SYMBOL_GPL
-0x5051b22e crypto_alloc_kpp vmlinux EXPORT_SYMBOL_GPL
-0x4db05c89 crypto_grab_kpp vmlinux EXPORT_SYMBOL_GPL
-0xf3a09fe7 crypto_has_kpp vmlinux EXPORT_SYMBOL_GPL
-0xd2a430be crypto_register_kpp vmlinux EXPORT_SYMBOL_GPL
-0x9a77137f crypto_unregister_kpp vmlinux EXPORT_SYMBOL_GPL
-0xd71310e1 kpp_register_instance vmlinux EXPORT_SYMBOL_GPL
-0x89ae7aa0 rsa_parse_pub_key vmlinux EXPORT_SYMBOL_GPL
-0xdce50e7f rsa_parse_pub_key_raw vmlinux EXPORT_SYMBOL_GPL
-0xd75b20aa rsa_parse_priv_key vmlinux EXPORT_SYMBOL_GPL
-0x376b2c76 rsa_parse_priv_key_raw vmlinux EXPORT_SYMBOL_GPL
-0xf7018cfa sm2_compute_z_digest vmlinux EXPORT_SYMBOL_GPL
-0x0b8a13c8 crypto_alloc_acomp vmlinux EXPORT_SYMBOL_GPL
-0x31f80698 crypto_alloc_acomp_node vmlinux EXPORT_SYMBOL_GPL
-0x1daf3b07 acomp_request_alloc vmlinux EXPORT_SYMBOL_GPL
-0x1f9d204a acomp_request_free vmlinux EXPORT_SYMBOL_GPL
-0xe2a06f5f crypto_register_acomp vmlinux EXPORT_SYMBOL_GPL
-0xabb86966 crypto_unregister_acomp vmlinux EXPORT_SYMBOL_GPL
-0x4ba896f3 crypto_register_acomps vmlinux EXPORT_SYMBOL_GPL
-0x16865e9b crypto_unregister_acomps vmlinux EXPORT_SYMBOL_GPL
-0x6b672294 crypto_register_scomp vmlinux EXPORT_SYMBOL_GPL
-0x6cf80724 crypto_unregister_scomp vmlinux EXPORT_SYMBOL_GPL
-0x2e6efb83 crypto_register_scomps vmlinux EXPORT_SYMBOL_GPL
-0x97fba8de crypto_unregister_scomps vmlinux EXPORT_SYMBOL_GPL
-0x3bdb5d28 alg_test vmlinux EXPORT_SYMBOL_GPL
-0x740e3808 crypto_get_default_null_skcipher vmlinux EXPORT_SYMBOL_GPL
-0x21cd536a crypto_put_default_null_skcipher vmlinux EXPORT_SYMBOL_GPL
-0xf749debc md5_zero_message_hash vmlinux EXPORT_SYMBOL_GPL
-0x7b5a4926 sha1_zero_message_hash vmlinux EXPORT_SYMBOL_GPL
-0x37db4c25 crypto_sha1_update vmlinux EXPORT_SYMBOL
-0x61be8ce4 crypto_sha1_finup vmlinux EXPORT_SYMBOL
-0x946dd559 sha224_zero_message_hash vmlinux EXPORT_SYMBOL_GPL
-0x1fa1d95c sha256_zero_message_hash vmlinux EXPORT_SYMBOL_GPL
-0x9198543a crypto_sha256_update vmlinux EXPORT_SYMBOL
-0x97fa36e8 crypto_sha256_finup vmlinux EXPORT_SYMBOL
-0x76eeeb0f sha384_zero_message_hash vmlinux EXPORT_SYMBOL_GPL
-0x67da9f7c sha512_zero_message_hash vmlinux EXPORT_SYMBOL_GPL
-0x637d988d crypto_sha512_update vmlinux EXPORT_SYMBOL
-0xeb31064b crypto_sha512_finup vmlinux EXPORT_SYMBOL
-0x221132ee crypto_sha3_init vmlinux EXPORT_SYMBOL
-0x17a0d369 crypto_sha3_update vmlinux EXPORT_SYMBOL
-0x5f8de146 crypto_sha3_final vmlinux EXPORT_SYMBOL
-0xa98edad1 sm3_update vmlinux EXPORT_SYMBOL_GPL
-0xf04338f9 sm3_final vmlinux EXPORT_SYMBOL_GPL
-0x0bddca87 sm3_zero_message_hash vmlinux EXPORT_SYMBOL_GPL
-0x32e24c8a blake2b_compress_generic vmlinux EXPORT_SYMBOL
-0x8eb82b86 cryptd_alloc_skcipher vmlinux EXPORT_SYMBOL_GPL
-0xa572d3ef cryptd_skcipher_child vmlinux EXPORT_SYMBOL_GPL
-0x7784fe5d cryptd_skcipher_queued vmlinux EXPORT_SYMBOL_GPL
-0x27411b4e cryptd_free_skcipher vmlinux EXPORT_SYMBOL_GPL
-0xfa83b9ff cryptd_alloc_ahash vmlinux EXPORT_SYMBOL_GPL
-0x03870fdd cryptd_ahash_child vmlinux EXPORT_SYMBOL_GPL
-0xb307e548 cryptd_shash_desc vmlinux EXPORT_SYMBOL_GPL
-0x04c253b7 cryptd_ahash_queued vmlinux EXPORT_SYMBOL_GPL
-0x0689abea cryptd_free_ahash vmlinux EXPORT_SYMBOL_GPL
-0x0c1c0b05 cryptd_alloc_aead vmlinux EXPORT_SYMBOL_GPL
-0xfbf06eb9 cryptd_aead_child vmlinux EXPORT_SYMBOL_GPL
-0x03e8aacb cryptd_aead_queued vmlinux EXPORT_SYMBOL_GPL
-0x3b56455d cryptd_free_aead vmlinux EXPORT_SYMBOL_GPL
-0x1a10c32b crypto_ft_tab vmlinux EXPORT_SYMBOL_GPL
-0x56054c05 crypto_it_tab vmlinux EXPORT_SYMBOL_GPL
-0x8df461fc crypto_aes_set_key vmlinux EXPORT_SYMBOL_GPL
-0x765ff474 crc_t10dif_generic vmlinux EXPORT_SYMBOL
-0xf3d631b5 crypto_default_rng vmlinux EXPORT_SYMBOL_GPL
-0x33933972 crypto_rng_reset vmlinux EXPORT_SYMBOL_GPL
-0x1193db6b crypto_alloc_rng vmlinux EXPORT_SYMBOL_GPL
-0x6ff607b6 crypto_get_default_rng vmlinux EXPORT_SYMBOL_GPL
-0x668402aa crypto_put_default_rng vmlinux EXPORT_SYMBOL_GPL
-0x5bd0748f crypto_del_default_rng vmlinux EXPORT_SYMBOL_GPL
-0x13ab4e10 crypto_register_rng vmlinux EXPORT_SYMBOL_GPL
-0xf719e596 crypto_unregister_rng vmlinux EXPORT_SYMBOL_GPL
-0xdfc18e4d crypto_register_rngs vmlinux EXPORT_SYMBOL_GPL
-0x74c63db3 crypto_unregister_rngs vmlinux EXPORT_SYMBOL_GPL
-0x5a98031e af_alg_register_type vmlinux EXPORT_SYMBOL_GPL
-0x172253a1 af_alg_unregister_type vmlinux EXPORT_SYMBOL_GPL
-0x0e647596 af_alg_release vmlinux EXPORT_SYMBOL_GPL
-0x9e7e76fa af_alg_release_parent vmlinux EXPORT_SYMBOL_GPL
-0xc2a48304 af_alg_accept vmlinux EXPORT_SYMBOL_GPL
-0x8dcfbf05 af_alg_free_sg vmlinux EXPORT_SYMBOL_GPL
-0x49d1c4d7 af_alg_count_tsgl vmlinux EXPORT_SYMBOL_GPL
-0xe6a43bf5 af_alg_pull_tsgl vmlinux EXPORT_SYMBOL_GPL
-0xd9208e6f af_alg_wmem_wakeup vmlinux EXPORT_SYMBOL_GPL
-0x29284f14 af_alg_wait_for_data vmlinux EXPORT_SYMBOL_GPL
-0x273a2593 af_alg_sendmsg vmlinux EXPORT_SYMBOL_GPL
-0x5346dc23 af_alg_free_resources vmlinux EXPORT_SYMBOL_GPL
-0x27e92408 af_alg_async_cb vmlinux EXPORT_SYMBOL_GPL
-0x71f7bc46 af_alg_poll vmlinux EXPORT_SYMBOL_GPL
-0x599f8d68 af_alg_alloc_areq vmlinux EXPORT_SYMBOL_GPL
-0x3e6b77bb af_alg_get_rsgl vmlinux EXPORT_SYMBOL_GPL
-0xf311e156 key_being_used_for vmlinux EXPORT_SYMBOL_GPL
-0xace96d3e find_asymmetric_key vmlinux EXPORT_SYMBOL_GPL
-0xbb6f025a asymmetric_key_generate_id vmlinux EXPORT_SYMBOL_GPL
-0x975519c1 asymmetric_key_id_same vmlinux EXPORT_SYMBOL_GPL
-0x3a9be019 asymmetric_key_id_partial vmlinux EXPORT_SYMBOL_GPL
-0x0b776362 key_type_asymmetric vmlinux EXPORT_SYMBOL_GPL
-0x8b4d68ec register_asymmetric_key_parser vmlinux EXPORT_SYMBOL_GPL
-0xd3de0875 unregister_asymmetric_key_parser vmlinux EXPORT_SYMBOL_GPL
-0xb7c57a7a public_key_signature_free vmlinux EXPORT_SYMBOL_GPL
-0x88fd3c0f query_asymmetric_key vmlinux EXPORT_SYMBOL_GPL
-0x032b6086 encrypt_blob vmlinux EXPORT_SYMBOL_GPL
-0x01d71aad decrypt_blob vmlinux EXPORT_SYMBOL_GPL
-0xf9013d01 create_signature vmlinux EXPORT_SYMBOL_GPL
-0xf050f240 verify_signature vmlinux EXPORT_SYMBOL_GPL
-0x37b8eae7 public_key_free vmlinux EXPORT_SYMBOL_GPL
-0x618bde09 public_key_verify_signature vmlinux EXPORT_SYMBOL_GPL
-0x0922c345 public_key_subtype vmlinux EXPORT_SYMBOL_GPL
-0x411e694f x509_free_certificate vmlinux EXPORT_SYMBOL_GPL
-0x8037f0fc x509_cert_parse vmlinux EXPORT_SYMBOL_GPL
-0x998d79d6 x509_decode_time vmlinux EXPORT_SYMBOL_GPL
-0x10bcb528 x509_load_certificate_list vmlinux EXPORT_SYMBOL_GPL
-0x9a68038d pkcs7_free_message vmlinux EXPORT_SYMBOL_GPL
-0x4507d7fd pkcs7_parse_message vmlinux EXPORT_SYMBOL_GPL
-0x28f3f95a pkcs7_get_content_data vmlinux EXPORT_SYMBOL_GPL
-0x4ff7a9ad pkcs7_validate_trust vmlinux EXPORT_SYMBOL_GPL
-0xa6d2fcfe pkcs7_verify vmlinux EXPORT_SYMBOL_GPL
-0xf96a3be5 pkcs7_supply_detached_data vmlinux EXPORT_SYMBOL_GPL
-0x6f9f23ed pgp_hash_algorithms vmlinux EXPORT_SYMBOL_GPL
-0xa3b15716 pgp_to_public_key_algo vmlinux EXPORT_SYMBOL_GPL
-0x3d07eaee pgp_parse_packets vmlinux EXPORT_SYMBOL_GPL
-0x6cffb9d4 pgp_parse_public_key vmlinux EXPORT_SYMBOL_GPL
-0xc3c4c6cc hash_algo_name vmlinux EXPORT_SYMBOL_GPL
-0xcd24e146 hash_digest_size vmlinux EXPORT_SYMBOL_GPL
-0x88638552 simd_skcipher_create_compat vmlinux EXPORT_SYMBOL_GPL
-0x66983e96 simd_skcipher_create vmlinux EXPORT_SYMBOL_GPL
-0xefe73979 simd_skcipher_free vmlinux EXPORT_SYMBOL_GPL
-0xf2a9dbaf simd_register_skciphers_compat vmlinux EXPORT_SYMBOL_GPL
-0x89340c14 simd_unregister_skciphers vmlinux EXPORT_SYMBOL_GPL
-0x504cb053 simd_aead_create_compat vmlinux EXPORT_SYMBOL_GPL
-0x851c747c simd_aead_create vmlinux EXPORT_SYMBOL_GPL
-0xbfd26f15 simd_aead_free vmlinux EXPORT_SYMBOL_GPL
-0x89fd3091 simd_register_aeads_compat vmlinux EXPORT_SYMBOL_GPL
-0x27902cf5 simd_unregister_aeads vmlinux EXPORT_SYMBOL_GPL
-0x0fb75369 I_BDEV vmlinux EXPORT_SYMBOL
-0x93023ead invalidate_bdev vmlinux EXPORT_SYMBOL
-0x8eeb2d19 set_blocksize vmlinux EXPORT_SYMBOL
-0xce729406 sb_set_blocksize vmlinux EXPORT_SYMBOL
-0x37d4988e sb_min_blocksize vmlinux EXPORT_SYMBOL
-0x26c6b53d sync_blockdev_nowait vmlinux EXPORT_SYMBOL_GPL
-0x23960ae2 sync_blockdev vmlinux EXPORT_SYMBOL
-0xa34ed10c sync_blockdev_range vmlinux EXPORT_SYMBOL
-0x8f5ab67c freeze_bdev vmlinux EXPORT_SYMBOL
-0x56d0333e thaw_bdev vmlinux EXPORT_SYMBOL
-0xdb0691c0 blockdev_superblock vmlinux EXPORT_SYMBOL_GPL
-0x4dbbde79 bd_prepare_to_claim vmlinux EXPORT_SYMBOL_GPL
-0x6c7551f0 bd_abort_claiming vmlinux EXPORT_SYMBOL
-0xda22f0b4 bdev_open_by_dev vmlinux EXPORT_SYMBOL
-0x5ec648d8 bdev_open_by_path vmlinux EXPORT_SYMBOL
-0xcc1aedd3 bdev_release vmlinux EXPORT_SYMBOL
-0x34c7cdbc lookup_bdev vmlinux EXPORT_SYMBOL
-0xbc366f45 fs_bio_set vmlinux EXPORT_SYMBOL
-0x23f80119 bio_uninit vmlinux EXPORT_SYMBOL
-0x421c6f1b bio_init vmlinux EXPORT_SYMBOL
-0x545832f7 bio_reset vmlinux EXPORT_SYMBOL
-0x407c4744 bio_chain vmlinux EXPORT_SYMBOL
-0x92c022f9 blk_next_bio vmlinux EXPORT_SYMBOL_GPL
-0x6b60ed44 bio_alloc_bioset vmlinux EXPORT_SYMBOL
-0x090a84ea bio_kmalloc vmlinux EXPORT_SYMBOL
-0x9699aa75 zero_fill_bio_iter vmlinux EXPORT_SYMBOL
-0xb9f2d099 bio_put vmlinux EXPORT_SYMBOL
-0x5a31c4b4 bio_alloc_clone vmlinux EXPORT_SYMBOL
-0xadb8f84d bio_init_clone vmlinux EXPORT_SYMBOL
-0x2efd5f3d bio_add_pc_page vmlinux EXPORT_SYMBOL
-0x3a32d9fb bio_add_zone_append_page vmlinux EXPORT_SYMBOL_GPL
-0x0c1d78e4 __bio_add_page vmlinux EXPORT_SYMBOL_GPL
-0xf8f90d2b bio_add_page vmlinux EXPORT_SYMBOL
-0xee2d61a7 bio_add_folio vmlinux EXPORT_SYMBOL
-0x48a1a2c4 __bio_release_pages vmlinux EXPORT_SYMBOL_GPL
-0xf4bc0782 bio_iov_iter_get_pages vmlinux EXPORT_SYMBOL_GPL
-0xe6f7a44e submit_bio_wait vmlinux EXPORT_SYMBOL
-0x68c1600e __bio_advance vmlinux EXPORT_SYMBOL
-0x52e84824 bio_copy_data_iter vmlinux EXPORT_SYMBOL
-0xfe5f5de7 bio_copy_data vmlinux EXPORT_SYMBOL
-0xe2e447aa bio_free_pages vmlinux EXPORT_SYMBOL
-0x35e30d96 bio_set_pages_dirty vmlinux EXPORT_SYMBOL_GPL
-0xef7ed2ee bio_check_pages_dirty vmlinux EXPORT_SYMBOL_GPL
-0xed102506 bio_endio vmlinux EXPORT_SYMBOL
-0x88a13aa1 bio_split vmlinux EXPORT_SYMBOL
-0x6d1c8e8f bio_trim vmlinux EXPORT_SYMBOL_GPL
-0x80685254 bioset_exit vmlinux EXPORT_SYMBOL
-0x0d840b7a bioset_init vmlinux EXPORT_SYMBOL
-0x36126c0d elv_bio_merge_ok vmlinux EXPORT_SYMBOL
-0x32a2fb27 elevator_alloc vmlinux EXPORT_SYMBOL
-0xdbe3c9e3 elv_rqhash_del vmlinux EXPORT_SYMBOL_GPL
-0x2a5d8c3e elv_rqhash_add vmlinux EXPORT_SYMBOL_GPL
-0xa6ac25eb elv_rb_add vmlinux EXPORT_SYMBOL
-0x362b6074 elv_rb_del vmlinux EXPORT_SYMBOL
-0xdf060d96 elv_rb_find vmlinux EXPORT_SYMBOL
-0xa39cacb7 elv_register vmlinux EXPORT_SYMBOL_GPL
-0xbb39f127 elv_unregister vmlinux EXPORT_SYMBOL_GPL
-0xb123af9f elv_rb_former_request vmlinux EXPORT_SYMBOL
-0x8b81995e elv_rb_latter_request vmlinux EXPORT_SYMBOL
-0x2bf0ccd7 __tracepoint_block_bio_remap vmlinux EXPORT_SYMBOL_GPL
-0x1068f1c0 __traceiter_block_bio_remap vmlinux EXPORT_SYMBOL_GPL
-0x21d23379 __SCK__tp_func_block_bio_remap vmlinux EXPORT_SYMBOL_GPL
-0x273aff5c __SCT__tp_func_block_bio_remap vmlinux EXPORT_SYMBOL_GPL
-0x7def0614 __tracepoint_block_rq_remap vmlinux EXPORT_SYMBOL_GPL
-0x41221ecd __traceiter_block_rq_remap vmlinux EXPORT_SYMBOL_GPL
-0x5fbe8f9a __SCK__tp_func_block_rq_remap vmlinux EXPORT_SYMBOL_GPL
-0xcf02ab71 __SCT__tp_func_block_rq_remap vmlinux EXPORT_SYMBOL_GPL
-0x3642a63c __tracepoint_block_bio_complete vmlinux EXPORT_SYMBOL_GPL
-0x58a79d11 __traceiter_block_bio_complete vmlinux EXPORT_SYMBOL_GPL
-0xa3e06aca __SCK__tp_func_block_bio_complete vmlinux EXPORT_SYMBOL_GPL
-0x4e144a54 __SCT__tp_func_block_bio_complete vmlinux EXPORT_SYMBOL_GPL
-0x1dada29c __tracepoint_block_split vmlinux EXPORT_SYMBOL_GPL
-0x80b21e0d __traceiter_block_split vmlinux EXPORT_SYMBOL_GPL
-0x60b5db22 __SCK__tp_func_block_split vmlinux EXPORT_SYMBOL_GPL
-0xd4404350 __SCT__tp_func_block_split vmlinux EXPORT_SYMBOL_GPL
-0x66f0d21d __tracepoint_block_unplug vmlinux EXPORT_SYMBOL_GPL
-0x8ae4ed7b __traceiter_block_unplug vmlinux EXPORT_SYMBOL_GPL
-0x4a5454ef __SCK__tp_func_block_unplug vmlinux EXPORT_SYMBOL_GPL
-0x12189359 __SCT__tp_func_block_unplug vmlinux EXPORT_SYMBOL_GPL
-0x71343e43 __tracepoint_block_rq_insert vmlinux EXPORT_SYMBOL_GPL
-0x1da8a0bf __traceiter_block_rq_insert vmlinux EXPORT_SYMBOL_GPL
-0x7b16c1ed __SCK__tp_func_block_rq_insert vmlinux EXPORT_SYMBOL_GPL
-0x85bfc5f9 __SCT__tp_func_block_rq_insert vmlinux EXPORT_SYMBOL_GPL
-0xedf5d32f blk_queue_flag_set vmlinux EXPORT_SYMBOL
-0x65c046c4 blk_queue_flag_clear vmlinux EXPORT_SYMBOL
-0x98fe9ac2 blk_queue_flag_test_and_set vmlinux EXPORT_SYMBOL_GPL
-0x19c42957 blk_op_str vmlinux EXPORT_SYMBOL_GPL
-0x612bfd89 errno_to_blk_status vmlinux EXPORT_SYMBOL_GPL
-0x84502a47 blk_status_to_errno vmlinux EXPORT_SYMBOL_GPL
-0x2a181b9b blk_status_to_str vmlinux EXPORT_SYMBOL_GPL
-0x3fa7ce20 blk_sync_queue vmlinux EXPORT_SYMBOL
-0x16970746 blk_set_pm_only vmlinux EXPORT_SYMBOL_GPL
-0x38d0f277 blk_clear_pm_only vmlinux EXPORT_SYMBOL_GPL
-0xc4cdfc36 blk_put_queue vmlinux EXPORT_SYMBOL
-0xb71354ae blk_get_queue vmlinux EXPORT_SYMBOL
-0x9cdbaddc submit_bio_noacct vmlinux EXPORT_SYMBOL
-0x71eb3103 submit_bio vmlinux EXPORT_SYMBOL
-0xabc46621 bio_poll vmlinux EXPORT_SYMBOL_GPL
-0x2a04799a iocb_bio_iopoll vmlinux EXPORT_SYMBOL_GPL
-0x7c63bb0f bdev_start_io_acct vmlinux EXPORT_SYMBOL
-0x7f2cd5c0 bio_start_io_acct vmlinux EXPORT_SYMBOL_GPL
-0x88a99bf0 bdev_end_io_acct vmlinux EXPORT_SYMBOL
-0x4b5ed32c bio_end_io_acct_remapped vmlinux EXPORT_SYMBOL_GPL
-0x76f6ee70 blk_lld_busy vmlinux EXPORT_SYMBOL_GPL
-0x1053d90a kblockd_schedule_work vmlinux EXPORT_SYMBOL
-0x250fc3fd kblockd_mod_delayed_work_on vmlinux EXPORT_SYMBOL
-0x9fb921cb blk_start_plug vmlinux EXPORT_SYMBOL
-0xd27b25dd blk_check_plugged vmlinux EXPORT_SYMBOL
-0x5fc92237 blk_finish_plug vmlinux EXPORT_SYMBOL
-0x62377a7b blk_io_schedule vmlinux EXPORT_SYMBOL_GPL
-0x5e468442 blkdev_issue_flush vmlinux EXPORT_SYMBOL
-0xb6eda6eb blk_mq_hctx_set_fq_lock_class vmlinux EXPORT_SYMBOL_GPL
-0x9fd3cc04 blk_queue_rq_timeout vmlinux EXPORT_SYMBOL_GPL
-0xfc300639 blk_set_stacking_limits vmlinux EXPORT_SYMBOL
-0x70cd40d6 blk_queue_bounce_limit vmlinux EXPORT_SYMBOL
-0x0055d09f blk_queue_max_hw_sectors vmlinux EXPORT_SYMBOL
-0xae0f3190 blk_queue_chunk_sectors vmlinux EXPORT_SYMBOL
-0x5abd61c6 blk_queue_max_discard_sectors vmlinux EXPORT_SYMBOL
-0xec18efd9 blk_queue_max_secure_erase_sectors vmlinux EXPORT_SYMBOL
-0xcded8d24 blk_queue_max_write_zeroes_sectors vmlinux EXPORT_SYMBOL
-0xac38f2de blk_queue_max_zone_append_sectors vmlinux EXPORT_SYMBOL_GPL
-0x85f6c289 blk_queue_max_segments vmlinux EXPORT_SYMBOL
-0x5903d9a3 blk_queue_max_discard_segments vmlinux EXPORT_SYMBOL_GPL
-0xd616bfbb blk_queue_max_segment_size vmlinux EXPORT_SYMBOL
-0x1ecec37e blk_queue_logical_block_size vmlinux EXPORT_SYMBOL
-0xe31154b1 blk_queue_physical_block_size vmlinux EXPORT_SYMBOL
-0x3192b3ce blk_queue_zone_write_granularity vmlinux EXPORT_SYMBOL_GPL
-0x3d3592a1 blk_queue_alignment_offset vmlinux EXPORT_SYMBOL
-0x3a645bd3 disk_update_readahead vmlinux EXPORT_SYMBOL_GPL
-0xd981b97c blk_limits_io_min vmlinux EXPORT_SYMBOL
-0x3a5b1565 blk_queue_io_min vmlinux EXPORT_SYMBOL
-0xc91bfd18 blk_limits_io_opt vmlinux EXPORT_SYMBOL
-0xe1e99896 blk_queue_io_opt vmlinux EXPORT_SYMBOL
-0xcc55bb2e blk_stack_limits vmlinux EXPORT_SYMBOL
-0x12c807e3 disk_stack_limits vmlinux EXPORT_SYMBOL
-0x03718307 blk_queue_update_dma_pad vmlinux EXPORT_SYMBOL
-0x517160de blk_queue_segment_boundary vmlinux EXPORT_SYMBOL
-0x467b8d63 blk_queue_virt_boundary vmlinux EXPORT_SYMBOL
-0xe6b44d33 blk_queue_dma_alignment vmlinux EXPORT_SYMBOL
-0x741ecb0a blk_queue_update_dma_alignment vmlinux EXPORT_SYMBOL
-0x7cee1e3f blk_set_queue_depth vmlinux EXPORT_SYMBOL
-0x432e10ec blk_queue_write_cache vmlinux EXPORT_SYMBOL_GPL
-0x36337759 blk_queue_required_elevator_features vmlinux EXPORT_SYMBOL_GPL
-0x73b10837 blk_queue_can_use_dma_map_merging vmlinux EXPORT_SYMBOL_GPL
-0x394fb4b8 disk_set_zoned vmlinux EXPORT_SYMBOL_GPL
-0x379c6431 bdev_alignment_offset vmlinux EXPORT_SYMBOL_GPL
-0xc067d0a3 bdev_discard_alignment vmlinux EXPORT_SYMBOL_GPL
-0x701be308 put_io_context vmlinux EXPORT_SYMBOL_GPL
-0x80b6651d set_task_ioprio vmlinux EXPORT_SYMBOL_GPL
-0x6c35695c ioc_lookup_icq vmlinux EXPORT_SYMBOL
-0x8ba924ef ioc_find_get_icq vmlinux EXPORT_SYMBOL_GPL
-0x14cb34a2 blk_rq_append_bio vmlinux EXPORT_SYMBOL
-0x9106804c blk_rq_map_user_iov vmlinux EXPORT_SYMBOL
-0x82576dc0 blk_rq_map_user vmlinux EXPORT_SYMBOL
-0xced8f18f blk_rq_map_user_io vmlinux EXPORT_SYMBOL
-0x7d7a3119 blk_rq_unmap_user vmlinux EXPORT_SYMBOL
-0xbb17ccbe blk_rq_map_kern vmlinux EXPORT_SYMBOL
-0xf15ba042 bio_split_rw vmlinux EXPORT_SYMBOL_GPL
-0xe888cba1 bio_split_to_limits vmlinux EXPORT_SYMBOL
-0xd20c2a74 __blk_rq_map_sg vmlinux EXPORT_SYMBOL
-0xdd8c9691 blk_bio_list_merge vmlinux EXPORT_SYMBOL_GPL
-0xcd480daf blk_mq_sched_try_merge vmlinux EXPORT_SYMBOL_GPL
-0x49122a7d blk_abort_request vmlinux EXPORT_SYMBOL_GPL
-0x0dbacf56 __blkdev_issue_discard vmlinux EXPORT_SYMBOL
-0xebebfda7 blkdev_issue_discard vmlinux EXPORT_SYMBOL
-0xf029929d __blkdev_issue_zeroout vmlinux EXPORT_SYMBOL
-0x23eedc20 blkdev_issue_zeroout vmlinux EXPORT_SYMBOL
-0x3c132b07 blkdev_issue_secure_erase vmlinux EXPORT_SYMBOL
-0x2e97faf5 blk_freeze_queue_start vmlinux EXPORT_SYMBOL_GPL
-0x26f8cd5c blk_mq_freeze_queue_wait vmlinux EXPORT_SYMBOL_GPL
-0x5eb7f1dc blk_mq_freeze_queue_wait_timeout vmlinux EXPORT_SYMBOL_GPL
-0x2c9cff13 blk_mq_freeze_queue vmlinux EXPORT_SYMBOL_GPL
-0x5d5a3eb4 blk_mq_unfreeze_queue vmlinux EXPORT_SYMBOL_GPL
-0x51025e2d blk_mq_quiesce_queue_nowait vmlinux EXPORT_SYMBOL_GPL
-0xc0070bfb blk_mq_wait_quiesce_done vmlinux EXPORT_SYMBOL_GPL
-0x029c571d blk_mq_quiesce_queue vmlinux EXPORT_SYMBOL_GPL
-0x4a5fa797 blk_mq_unquiesce_queue vmlinux EXPORT_SYMBOL_GPL
-0x925a1e4d blk_mq_quiesce_tagset vmlinux EXPORT_SYMBOL_GPL
-0xee8bd453 blk_mq_unquiesce_tagset vmlinux EXPORT_SYMBOL_GPL
-0x55989cf5 blk_rq_init vmlinux EXPORT_SYMBOL
-0x18ddc779 blk_mq_alloc_request vmlinux EXPORT_SYMBOL
-0x6aebab4d blk_mq_alloc_request_hctx vmlinux EXPORT_SYMBOL_GPL
-0x77d60312 blk_mq_free_request vmlinux EXPORT_SYMBOL_GPL
-0xdded5c8f blk_dump_rq_flags vmlinux EXPORT_SYMBOL
-0xf10b9981 blk_update_request vmlinux EXPORT_SYMBOL_GPL
-0x274b35d3 __blk_mq_end_request vmlinux EXPORT_SYMBOL
-0xb149d04d blk_mq_end_request vmlinux EXPORT_SYMBOL
-0xc26fd031 blk_mq_end_request_batch vmlinux EXPORT_SYMBOL_GPL
-0x5dd2f7b8 blk_mq_complete_request_remote vmlinux EXPORT_SYMBOL_GPL
-0x9554eea7 blk_mq_complete_request vmlinux EXPORT_SYMBOL
-0xe46158d2 blk_mq_start_request vmlinux EXPORT_SYMBOL
-0x5c5ce152 blk_execute_rq_nowait vmlinux EXPORT_SYMBOL_GPL
-0xe1876cdd blk_rq_is_poll vmlinux EXPORT_SYMBOL_GPL
-0x9d6669d0 blk_execute_rq vmlinux EXPORT_SYMBOL
-0xdb5a62ba blk_mq_requeue_request vmlinux EXPORT_SYMBOL
-0x2317d6ef blk_mq_kick_requeue_list vmlinux EXPORT_SYMBOL
-0x45923c87 blk_mq_delay_kick_requeue_list vmlinux EXPORT_SYMBOL
-0xec9e9de0 blk_mq_queue_inflight vmlinux EXPORT_SYMBOL_GPL
-0x37546734 blk_mq_flush_busy_ctxs vmlinux EXPORT_SYMBOL_GPL
-0x0d2a76cb blk_mq_delay_run_hw_queue vmlinux EXPORT_SYMBOL
-0x69a39fe3 blk_mq_run_hw_queue vmlinux EXPORT_SYMBOL
-0x024cb54f blk_mq_run_hw_queues vmlinux EXPORT_SYMBOL
-0x47f85d4a blk_mq_delay_run_hw_queues vmlinux EXPORT_SYMBOL
-0xd733188d blk_mq_stop_hw_queue vmlinux EXPORT_SYMBOL
-0x5a55dfc6 blk_mq_stop_hw_queues vmlinux EXPORT_SYMBOL
-0xfe16fb57 blk_mq_start_hw_queue vmlinux EXPORT_SYMBOL
-0x3c7ac1ef blk_mq_start_hw_queues vmlinux EXPORT_SYMBOL
-0x0939c5a5 blk_mq_start_stopped_hw_queue vmlinux EXPORT_SYMBOL_GPL
-0x9d93cbb0 blk_mq_start_stopped_hw_queues vmlinux EXPORT_SYMBOL
-0xad5d64b4 blk_insert_cloned_request vmlinux EXPORT_SYMBOL_GPL
-0xa97c5550 blk_rq_unprep_clone vmlinux EXPORT_SYMBOL_GPL
-0x1a882504 blk_rq_prep_clone vmlinux EXPORT_SYMBOL_GPL
-0x8766be7b blk_steal_bios vmlinux EXPORT_SYMBOL_GPL
-0x025320f7 blk_mq_update_fair_tag_sharing vmlinux EXPORT_SYMBOL_GPL
-0x1b1cfc2f blk_mq_init_queue vmlinux EXPORT_SYMBOL
-0x478b5afb blk_mq_destroy_queue vmlinux EXPORT_SYMBOL
-0x42b098b6 __blk_mq_alloc_disk vmlinux EXPORT_SYMBOL
-0xeb706171 blk_mq_alloc_disk_for_queue vmlinux EXPORT_SYMBOL
-0x9a892000 blk_mq_init_allocated_queue vmlinux EXPORT_SYMBOL
-0x46e093ec blk_mq_alloc_tag_set vmlinux EXPORT_SYMBOL
-0x6bef58c9 blk_mq_alloc_sq_tag_set vmlinux EXPORT_SYMBOL_GPL
-0x39202a92 blk_mq_free_tag_set vmlinux EXPORT_SYMBOL
-0x057323bb blk_mq_update_nr_hw_queues vmlinux EXPORT_SYMBOL_GPL
-0xa0948b44 blk_rq_poll vmlinux EXPORT_SYMBOL_GPL
-0xfd6b8b21 blk_mq_rq_cpu vmlinux EXPORT_SYMBOL
-0x1ef16b84 blk_mq_tagset_busy_iter vmlinux EXPORT_SYMBOL
-0xc90a3480 blk_mq_tagset_wait_completed_request vmlinux EXPORT_SYMBOL
-0xcd66f0e9 blk_mq_unique_tag vmlinux EXPORT_SYMBOL
-0x0bfcf739 blk_stat_disable_accounting vmlinux EXPORT_SYMBOL_GPL
-0x318b8e1a blk_stat_enable_accounting vmlinux EXPORT_SYMBOL_GPL
-0xb2fa093e blk_mq_map_queues vmlinux EXPORT_SYMBOL_GPL
-0x2fc5563c blk_mq_sched_mark_restart_hctx vmlinux EXPORT_SYMBOL_GPL
-0xfb7d355c blk_mq_sched_try_insert_merge vmlinux EXPORT_SYMBOL_GPL
-0xf7fc8067 blkdev_compat_ptr_ioctl vmlinux EXPORT_SYMBOL
-0x471ad6d6 set_capacity vmlinux EXPORT_SYMBOL
-0x2c211bea set_capacity_and_notify vmlinux EXPORT_SYMBOL_GPL
-0x720a27a7 __register_blkdev vmlinux EXPORT_SYMBOL
-0xb5a459dc unregister_blkdev vmlinux EXPORT_SYMBOL
-0x0b6b3a59 disk_uevent vmlinux EXPORT_SYMBOL_GPL
-0x897d17bb device_add_disk vmlinux EXPORT_SYMBOL
-0x4bd2099b blk_mark_disk_dead vmlinux EXPORT_SYMBOL_GPL
-0xaff47a7b del_gendisk vmlinux EXPORT_SYMBOL
-0x7c8e5f1f invalidate_disk vmlinux EXPORT_SYMBOL
-0x35572cdf __blk_alloc_disk vmlinux EXPORT_SYMBOL
-0x8ca8bcb2 put_disk vmlinux EXPORT_SYMBOL
-0x21ca6d98 set_disk_ro vmlinux EXPORT_SYMBOL
-0x9fadf3ea __get_task_ioprio vmlinux EXPORT_SYMBOL_GPL
-0xcdedad7a badblocks_check vmlinux EXPORT_SYMBOL_GPL
-0xa49a9390 badblocks_set vmlinux EXPORT_SYMBOL_GPL
-0x17d1fdd3 badblocks_clear vmlinux EXPORT_SYMBOL_GPL
-0xc4b77aff ack_all_badblocks vmlinux EXPORT_SYMBOL_GPL
-0xb9e37a24 badblocks_show vmlinux EXPORT_SYMBOL_GPL
-0x6557f267 badblocks_store vmlinux EXPORT_SYMBOL_GPL
-0xf736482e badblocks_init vmlinux EXPORT_SYMBOL_GPL
-0x3bfe4bd6 devm_init_badblocks vmlinux EXPORT_SYMBOL_GPL
-0x9f9c4d75 badblocks_exit vmlinux EXPORT_SYMBOL_GPL
-0xe07a15f4 bdev_disk_changed vmlinux EXPORT_SYMBOL_GPL
-0x4ed52d6b disk_check_media_change vmlinux EXPORT_SYMBOL
-0x3dedf64a disk_force_media_change vmlinux EXPORT_SYMBOL_GPL
-0xe8b26c41 disk_alloc_independent_access_ranges vmlinux EXPORT_SYMBOL_GPL
-0xc4f30257 disk_set_independent_access_ranges vmlinux EXPORT_SYMBOL_GPL
-0x41b9a6e6 bsg_unregister_queue vmlinux EXPORT_SYMBOL_GPL
-0x53d59053 bsg_register_queue vmlinux EXPORT_SYMBOL_GPL
-0xca16b38c bsg_job_put vmlinux EXPORT_SYMBOL_GPL
-0x0f2ebe8a bsg_job_get vmlinux EXPORT_SYMBOL_GPL
-0x6c0a075e bsg_job_done vmlinux EXPORT_SYMBOL_GPL
-0xd8dbfada bsg_remove_queue vmlinux EXPORT_SYMBOL_GPL
-0xc7a7cf67 bsg_setup_queue vmlinux EXPORT_SYMBOL_GPL
-0x1d9a0c33 blkcg_root vmlinux EXPORT_SYMBOL_GPL
-0x51e6e6a5 blkcg_root_css vmlinux EXPORT_SYMBOL_GPL
-0x1af6cd6b blkcg_punt_bio_submit vmlinux EXPORT_SYMBOL_GPL
-0xd8f479a3 bio_blkcg_css vmlinux EXPORT_SYMBOL_GPL
-0xa0e1e64a blkcg_print_blkgs vmlinux EXPORT_SYMBOL_GPL
-0xe514ea02 __blkg_prfill_u64 vmlinux EXPORT_SYMBOL_GPL
-0x4a60f83f blkg_conf_init vmlinux EXPORT_SYMBOL_GPL
-0x56aacf1e blkg_conf_prep vmlinux EXPORT_SYMBOL_GPL
-0x57ad8a2f blkg_conf_exit vmlinux EXPORT_SYMBOL_GPL
-0xc580720c io_cgrp_subsys vmlinux EXPORT_SYMBOL_GPL
-0xfc705680 blkcg_activate_policy vmlinux EXPORT_SYMBOL_GPL
-0xa1336a0d blkcg_deactivate_policy vmlinux EXPORT_SYMBOL_GPL
-0x718777eb blkcg_policy_register vmlinux EXPORT_SYMBOL_GPL
-0x45b70a21 blkcg_policy_unregister vmlinux EXPORT_SYMBOL_GPL
-0x9d34a173 bio_associate_blkg_from_css vmlinux EXPORT_SYMBOL_GPL
-0x6fcbefb3 bio_associate_blkg vmlinux EXPORT_SYMBOL_GPL
-0xffef6253 bio_clone_blkg_association vmlinux EXPORT_SYMBOL_GPL
-0xba6abe36 blkg_rwstat_init vmlinux EXPORT_SYMBOL_GPL
-0x138e1b56 blkg_rwstat_exit vmlinux EXPORT_SYMBOL_GPL
-0xdb24d1be __blkg_prfill_rwstat vmlinux EXPORT_SYMBOL_GPL
-0xbe7c824c blkg_prfill_rwstat vmlinux EXPORT_SYMBOL_GPL
-0x73a3c20e blkg_rwstat_recursive_sum vmlinux EXPORT_SYMBOL_GPL
-0xf42584e8 bio_integrity_alloc vmlinux EXPORT_SYMBOL
-0xba2d0572 bio_integrity_add_page vmlinux EXPORT_SYMBOL
-0x879549c2 bio_integrity_prep vmlinux EXPORT_SYMBOL
-0xc055e72a bio_integrity_trim vmlinux EXPORT_SYMBOL
-0x7053d3d6 bioset_integrity_create vmlinux EXPORT_SYMBOL
-0x367300c9 blk_rq_count_integrity_sg vmlinux EXPORT_SYMBOL
-0xe6255b32 blk_rq_map_integrity_sg vmlinux EXPORT_SYMBOL
-0xd691887f blk_integrity_compare vmlinux EXPORT_SYMBOL
-0x54b580fe blk_integrity_register vmlinux EXPORT_SYMBOL
-0x230bebf8 blk_integrity_unregister vmlinux EXPORT_SYMBOL
-0x7842faa5 blk_mq_pci_map_queues vmlinux EXPORT_SYMBOL_GPL
-0x30c16ffe blk_mq_virtio_map_queues vmlinux EXPORT_SYMBOL_GPL
-0x44cf8cf0 blk_zone_cond_str vmlinux EXPORT_SYMBOL_GPL
-0x961b18ed blk_req_needs_zone_write_lock vmlinux EXPORT_SYMBOL_GPL
-0x0b1df19d blk_req_zone_write_trylock vmlinux EXPORT_SYMBOL_GPL
-0xf23f6d68 __blk_req_zone_write_lock vmlinux EXPORT_SYMBOL_GPL
-0xf7ac8426 __blk_req_zone_write_unlock vmlinux EXPORT_SYMBOL_GPL
-0x4e6c2de4 bdev_nr_zones vmlinux EXPORT_SYMBOL_GPL
-0x129490cf blkdev_report_zones vmlinux EXPORT_SYMBOL_GPL
-0xa083e86e blkdev_zone_mgmt vmlinux EXPORT_SYMBOL_GPL
-0x746e3fd6 blk_revalidate_disk_zones vmlinux EXPORT_SYMBOL_GPL
-0xfb0fed11 wbt_enable_default vmlinux EXPORT_SYMBOL_GPL
-0x24d827a3 wbt_disable_default vmlinux EXPORT_SYMBOL_GPL
-0x9010dd2b __blk_mq_debugfs_rq_show vmlinux EXPORT_SYMBOL_GPL
-0x5a93faf2 blk_mq_debugfs_rq_show vmlinux EXPORT_SYMBOL_GPL
-0x77df172b blk_pm_runtime_init vmlinux EXPORT_SYMBOL
-0x61fb1ff5 blk_pre_runtime_suspend vmlinux EXPORT_SYMBOL
-0xe351e16b blk_post_runtime_suspend vmlinux EXPORT_SYMBOL
-0xff41a57e blk_pre_runtime_resume vmlinux EXPORT_SYMBOL
-0xcb617405 blk_post_runtime_resume vmlinux EXPORT_SYMBOL
-0x703584fb blk_set_runtime_active vmlinux EXPORT_SYMBOL
-0xb168a2be bd_link_disk_holder vmlinux EXPORT_SYMBOL_GPL
-0x9b06b930 bd_unlink_disk_holder vmlinux EXPORT_SYMBOL_GPL
-0x410dac7d __io_uring_cmd_do_in_task vmlinux EXPORT_SYMBOL_GPL
-0x3a3d3cf5 io_uring_cmd_do_in_task_lazy vmlinux EXPORT_SYMBOL_GPL
-0x2dea0cf5 io_uring_cmd_done vmlinux EXPORT_SYMBOL_GPL
-0x81815537 io_uring_cmd_import_fixed vmlinux EXPORT_SYMBOL_GPL
-0x2e203b70 io_uring_cmd_sock vmlinux EXPORT_SYMBOL_GPL
-0xd9b85ef6 lockref_get vmlinux EXPORT_SYMBOL
-0x3ad5cda3 lockref_get_not_zero vmlinux EXPORT_SYMBOL
-0x0f37ca89 lockref_put_not_zero vmlinux EXPORT_SYMBOL
-0xb0c5e247 lockref_put_return vmlinux EXPORT_SYMBOL
-0x66af1fd1 lockref_put_or_lock vmlinux EXPORT_SYMBOL
-0x5ff9eb0e lockref_mark_dead vmlinux EXPORT_SYMBOL
-0xff87cd18 lockref_get_not_dead vmlinux EXPORT_SYMBOL
-0xb6936ffe _bcd2bin vmlinux EXPORT_SYMBOL
-0x80ca5026 _bin2bcd vmlinux EXPORT_SYMBOL
-0x6f4a59e4 sort_r vmlinux EXPORT_SYMBOL
-0xb7c0f443 sort vmlinux EXPORT_SYMBOL
-0x44e9a829 match_token vmlinux EXPORT_SYMBOL
-0x4e3567f7 match_int vmlinux EXPORT_SYMBOL
-0xeb9eef52 match_uint vmlinux EXPORT_SYMBOL
-0xfba7ddd2 match_u64 vmlinux EXPORT_SYMBOL
-0x815b5dd4 match_octal vmlinux EXPORT_SYMBOL
-0xad0413d4 match_hex vmlinux EXPORT_SYMBOL
-0x58b73bc7 match_wildcard vmlinux EXPORT_SYMBOL
-0x3539f11b match_strlcpy vmlinux EXPORT_SYMBOL
-0xacf4d843 match_strdup vmlinux EXPORT_SYMBOL
-0xbb0ab47b debug_locks vmlinux EXPORT_SYMBOL_GPL
-0x97de2b83 debug_locks_silent vmlinux EXPORT_SYMBOL_GPL
-0xc575c737 debug_locks_off vmlinux EXPORT_SYMBOL_GPL
-0x1a9a433c prandom_u32_state vmlinux EXPORT_SYMBOL
-0xd36e3d59 prandom_bytes_state vmlinux EXPORT_SYMBOL
-0x3283e6b0 prandom_seed_full_state vmlinux EXPORT_SYMBOL
-0x587b0954 kvasprintf vmlinux EXPORT_SYMBOL
-0x1632bc21 kvasprintf_const vmlinux EXPORT_SYMBOL
-0xfb384d37 kasprintf vmlinux EXPORT_SYMBOL
-0x06d11488 __bitmap_equal vmlinux EXPORT_SYMBOL
-0x7c173634 __bitmap_complement vmlinux EXPORT_SYMBOL
-0xaad0ae78 __bitmap_shift_right vmlinux EXPORT_SYMBOL
-0x3b644591 __bitmap_shift_left vmlinux EXPORT_SYMBOL
-0x6d7c7dcc bitmap_cut vmlinux EXPORT_SYMBOL
-0xeca957d1 __bitmap_and vmlinux EXPORT_SYMBOL
-0xa084749a __bitmap_or vmlinux EXPORT_SYMBOL
-0xf6fc8791 __bitmap_xor vmlinux EXPORT_SYMBOL
-0xf390f6f1 __bitmap_andnot vmlinux EXPORT_SYMBOL
-0x18345b8e __bitmap_replace vmlinux EXPORT_SYMBOL
-0x48d27375 __bitmap_intersects vmlinux EXPORT_SYMBOL
-0x3221df67 __bitmap_subset vmlinux EXPORT_SYMBOL
-0x21ea5251 __bitmap_weight vmlinux EXPORT_SYMBOL
-0x6972e413 __bitmap_weight_and vmlinux EXPORT_SYMBOL
-0x615911d7 __bitmap_set vmlinux EXPORT_SYMBOL
-0x922f45a6 __bitmap_clear vmlinux EXPORT_SYMBOL
-0x64127b67 bitmap_find_next_zero_area_off vmlinux EXPORT_SYMBOL
-0x86fb9b05 bitmap_parse_user vmlinux EXPORT_SYMBOL
-0xf474c21c bitmap_print_to_pagebuf vmlinux EXPORT_SYMBOL
-0x1e6adaa0 bitmap_print_bitmask_to_buf vmlinux EXPORT_SYMBOL
-0xe909997a bitmap_print_list_to_buf vmlinux EXPORT_SYMBOL
-0x1b015d25 bitmap_parselist vmlinux EXPORT_SYMBOL
-0x0634100a bitmap_parselist_user vmlinux EXPORT_SYMBOL
-0xb97220ff bitmap_parse vmlinux EXPORT_SYMBOL
-0xa976957d bitmap_remap vmlinux EXPORT_SYMBOL
-0xeea9dbaf bitmap_bitremap vmlinux EXPORT_SYMBOL
-0x63a7c28c bitmap_find_free_region vmlinux EXPORT_SYMBOL
-0x574c2e74 bitmap_release_region vmlinux EXPORT_SYMBOL
-0xdac4913a bitmap_allocate_region vmlinux EXPORT_SYMBOL
-0x020dbf27 bitmap_alloc vmlinux EXPORT_SYMBOL
-0x2688ec10 bitmap_zalloc vmlinux EXPORT_SYMBOL
-0x862c8035 bitmap_alloc_node vmlinux EXPORT_SYMBOL
-0x84a0ca4d bitmap_zalloc_node vmlinux EXPORT_SYMBOL
-0xca21ebd3 bitmap_free vmlinux EXPORT_SYMBOL
-0x48c99f43 devm_bitmap_alloc vmlinux EXPORT_SYMBOL_GPL
-0x060986d0 devm_bitmap_zalloc vmlinux EXPORT_SYMBOL_GPL
-0xf8d07858 bitmap_from_arr32 vmlinux EXPORT_SYMBOL
-0x4ec54e78 bitmap_to_arr32 vmlinux EXPORT_SYMBOL
-0xfbe215e4 sg_next vmlinux EXPORT_SYMBOL
-0xdf9734a7 sg_nents vmlinux EXPORT_SYMBOL
-0xbac8aeea sg_nents_for_len vmlinux EXPORT_SYMBOL
-0x450639ab sg_last vmlinux EXPORT_SYMBOL
-0x2cf0c910 sg_init_table vmlinux EXPORT_SYMBOL
-0x43babd19 sg_init_one vmlinux EXPORT_SYMBOL
-0xa0f10085 __sg_free_table vmlinux EXPORT_SYMBOL
-0xf07b07f6 sg_free_append_table vmlinux EXPORT_SYMBOL
-0xc8c85086 sg_free_table vmlinux EXPORT_SYMBOL
-0xb306ec50 __sg_alloc_table vmlinux EXPORT_SYMBOL
-0xb3f985a8 sg_alloc_table vmlinux EXPORT_SYMBOL
-0xc8eb214b sg_alloc_append_table_from_pages vmlinux EXPORT_SYMBOL
-0x03e615ab sg_alloc_table_from_pages_segment vmlinux EXPORT_SYMBOL
-0xc2cb862e sgl_alloc_order vmlinux EXPORT_SYMBOL
-0x5e934fc7 sgl_alloc vmlinux EXPORT_SYMBOL
-0x5bcea5f1 sgl_free_n_order vmlinux EXPORT_SYMBOL
-0x891dbb8f sgl_free_order vmlinux EXPORT_SYMBOL
-0x7f62eaa4 sgl_free vmlinux EXPORT_SYMBOL
-0x0562dc30 __sg_page_iter_start vmlinux EXPORT_SYMBOL
-0x7ef4bddc __sg_page_iter_next vmlinux EXPORT_SYMBOL
-0xe3ad3046 __sg_page_iter_dma_next vmlinux EXPORT_SYMBOL
-0x31999c43 sg_miter_start vmlinux EXPORT_SYMBOL
-0x153a6e4a sg_miter_skip vmlinux EXPORT_SYMBOL
-0xe192a531 sg_miter_next vmlinux EXPORT_SYMBOL
-0x394dc6df sg_miter_stop vmlinux EXPORT_SYMBOL
-0x6eecfaf4 sg_copy_buffer vmlinux EXPORT_SYMBOL
-0xdcbeba1d sg_copy_from_buffer vmlinux EXPORT_SYMBOL
-0x016f123e sg_copy_to_buffer vmlinux EXPORT_SYMBOL
-0xfe1c9ea5 sg_pcopy_from_buffer vmlinux EXPORT_SYMBOL
-0x54b23e67 sg_pcopy_to_buffer vmlinux EXPORT_SYMBOL
-0xb49601a1 sg_zero_buffer vmlinux EXPORT_SYMBOL
-0x87cbf642 extract_iter_to_sg vmlinux EXPORT_SYMBOL_GPL
-0xe091c977 list_sort vmlinux EXPORT_SYMBOL
-0x8df9dd10 guid_null vmlinux EXPORT_SYMBOL
-0x6dcf857f uuid_null vmlinux EXPORT_SYMBOL
-0xa681fe88 generate_random_uuid vmlinux EXPORT_SYMBOL
-0xaeac049a generate_random_guid vmlinux EXPORT_SYMBOL
-0x6c3f70e0 guid_gen vmlinux EXPORT_SYMBOL_GPL
-0x69e683de uuid_gen vmlinux EXPORT_SYMBOL_GPL
-0x8caf9305 uuid_is_valid vmlinux EXPORT_SYMBOL
-0xb89b6e6b guid_parse vmlinux EXPORT_SYMBOL
-0xb67fec0e uuid_parse vmlinux EXPORT_SYMBOL
-0xe13b00b2 fault_in_iov_iter_readable vmlinux EXPORT_SYMBOL
-0xe1e2a064 fault_in_iov_iter_writeable vmlinux EXPORT_SYMBOL
-0xcc6b7e07 iov_iter_init vmlinux EXPORT_SYMBOL
-0xbc1bc098 _copy_to_iter vmlinux EXPORT_SYMBOL
-0x628ce28c _copy_mc_to_iter vmlinux EXPORT_SYMBOL_GPL
-0xd7a9514d _copy_from_iter vmlinux EXPORT_SYMBOL
-0xd81b416d _copy_from_iter_nocache vmlinux EXPORT_SYMBOL
-0xf4a66381 _copy_from_iter_flushcache vmlinux EXPORT_SYMBOL_GPL
-0x982624aa copy_page_to_iter vmlinux EXPORT_SYMBOL
-0x0ade9a24 copy_page_to_iter_nofault vmlinux EXPORT_SYMBOL
-0x80244e20 copy_page_from_iter vmlinux EXPORT_SYMBOL
-0x8fcae141 iov_iter_zero vmlinux EXPORT_SYMBOL
-0xad187084 copy_page_from_iter_atomic vmlinux EXPORT_SYMBOL
-0x91de08ff iov_iter_advance vmlinux EXPORT_SYMBOL
-0x44a2f5d4 iov_iter_revert vmlinux EXPORT_SYMBOL
-0xc7dc92d9 iov_iter_single_seg_count vmlinux EXPORT_SYMBOL
-0xaca135da iov_iter_kvec vmlinux EXPORT_SYMBOL
-0xa427b8e7 iov_iter_bvec vmlinux EXPORT_SYMBOL
-0xadb159b0 iov_iter_xarray vmlinux EXPORT_SYMBOL
-0xfc899e2d iov_iter_discard vmlinux EXPORT_SYMBOL
-0x1a33bae8 iov_iter_is_aligned vmlinux EXPORT_SYMBOL_GPL
-0x2384c160 iov_iter_alignment vmlinux EXPORT_SYMBOL
-0x5a0d00e5 iov_iter_gap_alignment vmlinux EXPORT_SYMBOL
-0x7e014dd7 iov_iter_get_pages2 vmlinux EXPORT_SYMBOL
-0x35835954 iov_iter_get_pages_alloc2 vmlinux EXPORT_SYMBOL
-0xb3582a8e csum_and_copy_from_iter vmlinux EXPORT_SYMBOL
-0xca8d41d9 csum_and_copy_to_iter vmlinux EXPORT_SYMBOL
-0x153ed7e3 hash_and_copy_to_iter vmlinux EXPORT_SYMBOL
-0xf5dfdaea iov_iter_npages vmlinux EXPORT_SYMBOL
-0x30f6a460 dup_iter vmlinux EXPORT_SYMBOL
-0xb06d0ac6 import_iovec vmlinux EXPORT_SYMBOL
-0xaa22e343 import_single_range vmlinux EXPORT_SYMBOL
-0xe98121a9 import_ubuf vmlinux EXPORT_SYMBOL_GPL
-0x09ca9101 iov_iter_extract_pages vmlinux EXPORT_SYMBOL_GPL
-0xc4777aa9 __ctzsi2 vmlinux EXPORT_SYMBOL
-0x919c58f3 __clzsi2 vmlinux EXPORT_SYMBOL
-0x776ca93a __clzdi2 vmlinux EXPORT_SYMBOL
-0x54cfacd5 __ctzdi2 vmlinux EXPORT_SYMBOL
-0x1057a279 bsearch vmlinux EXPORT_SYMBOL
-0x8810754a _find_first_bit vmlinux EXPORT_SYMBOL
-0xb6cb556a _find_first_and_bit vmlinux EXPORT_SYMBOL
-0x7b37d4a7 _find_first_zero_bit vmlinux EXPORT_SYMBOL
-0x53a1e8d9 _find_next_bit vmlinux EXPORT_SYMBOL
-0x3eccbe2c __find_nth_bit vmlinux EXPORT_SYMBOL
-0xd8b6d96f __find_nth_and_bit vmlinux EXPORT_SYMBOL
-0x8d33e672 __find_nth_andnot_bit vmlinux EXPORT_SYMBOL
-0x5897a680 __find_nth_and_andnot_bit vmlinux EXPORT_SYMBOL
-0xafaa6031 _find_next_and_bit vmlinux EXPORT_SYMBOL
-0xca17ac01 _find_next_andnot_bit vmlinux EXPORT_SYMBOL
-0x66edfc78 _find_next_or_bit vmlinux EXPORT_SYMBOL
-0xdf521442 _find_next_zero_bit vmlinux EXPORT_SYMBOL
-0x9ae47436 _find_last_bit vmlinux EXPORT_SYMBOL
-0xb14fc46a find_next_clump8 vmlinux EXPORT_SYMBOL
-0xc7a1840e llist_add_batch vmlinux EXPORT_SYMBOL_GPL
-0xb9d025c9 llist_del_first vmlinux EXPORT_SYMBOL_GPL
-0x0ddb1cd7 llist_reverse_order vmlinux EXPORT_SYMBOL_GPL
-0x3fe2ccbe memweight vmlinux EXPORT_SYMBOL
-0x139f2189 __kfifo_alloc vmlinux EXPORT_SYMBOL
-0xdb760f52 __kfifo_free vmlinux EXPORT_SYMBOL
-0xbd462b55 __kfifo_init vmlinux EXPORT_SYMBOL
-0xf23fcb99 __kfifo_in vmlinux EXPORT_SYMBOL
-0x281823c5 __kfifo_out_peek vmlinux EXPORT_SYMBOL
-0x13d0adf7 __kfifo_out vmlinux EXPORT_SYMBOL
-0x30a80826 __kfifo_from_user vmlinux EXPORT_SYMBOL
-0x4578f528 __kfifo_to_user vmlinux EXPORT_SYMBOL
-0x296b8bbf __kfifo_dma_in_prepare vmlinux EXPORT_SYMBOL
-0x84914079 __kfifo_dma_out_prepare vmlinux EXPORT_SYMBOL
-0xc6cb465a __kfifo_max_r vmlinux EXPORT_SYMBOL
-0x7846af3e __kfifo_len_r vmlinux EXPORT_SYMBOL
-0x3955fcf6 __kfifo_in_r vmlinux EXPORT_SYMBOL
-0x9829fc11 __kfifo_out_peek_r vmlinux EXPORT_SYMBOL
-0x33fcf44a __kfifo_out_r vmlinux EXPORT_SYMBOL
-0xce4e47b6 __kfifo_skip_r vmlinux EXPORT_SYMBOL
-0xfeebc7c4 __kfifo_from_user_r vmlinux EXPORT_SYMBOL
-0x2484adc3 __kfifo_to_user_r vmlinux EXPORT_SYMBOL
-0xe1317694 __kfifo_dma_in_prepare_r vmlinux EXPORT_SYMBOL
-0x773fa409 __kfifo_dma_in_finish_r vmlinux EXPORT_SYMBOL
-0x1548d970 __kfifo_dma_out_prepare_r vmlinux EXPORT_SYMBOL
-0x399ad043 __kfifo_dma_out_finish_r vmlinux EXPORT_SYMBOL
-0x81a7f541 percpu_ref_init vmlinux EXPORT_SYMBOL_GPL
-0x37bf7be3 percpu_ref_exit vmlinux EXPORT_SYMBOL_GPL
-0x769cefb5 percpu_ref_switch_to_atomic vmlinux EXPORT_SYMBOL_GPL
-0xf782fb07 percpu_ref_switch_to_atomic_sync vmlinux EXPORT_SYMBOL_GPL
-0x7283161b percpu_ref_switch_to_percpu vmlinux EXPORT_SYMBOL_GPL
-0x1ed4d2eb percpu_ref_kill_and_confirm vmlinux EXPORT_SYMBOL_GPL
-0xc91fdf58 percpu_ref_is_zero vmlinux EXPORT_SYMBOL_GPL
-0xd7293ffc percpu_ref_reinit vmlinux EXPORT_SYMBOL_GPL
-0x3a24fb2f percpu_ref_resurrect vmlinux EXPORT_SYMBOL_GPL
-0x42ed4380 rhashtable_insert_slow vmlinux EXPORT_SYMBOL_GPL
-0x73170e98 rhashtable_walk_enter vmlinux EXPORT_SYMBOL_GPL
-0x30fa83e0 rhashtable_walk_exit vmlinux EXPORT_SYMBOL_GPL
-0x7a940d58 rhashtable_walk_start_check vmlinux EXPORT_SYMBOL_GPL
-0xa8abd3d3 rhashtable_walk_next vmlinux EXPORT_SYMBOL_GPL
-0x11446bab rhashtable_walk_peek vmlinux EXPORT_SYMBOL_GPL
-0xe42e974b rhashtable_walk_stop vmlinux EXPORT_SYMBOL_GPL
-0x554a471f rhashtable_init vmlinux EXPORT_SYMBOL_GPL
-0xb805064f rhltable_init vmlinux EXPORT_SYMBOL_GPL
-0x5aa99c8b rhashtable_free_and_destroy vmlinux EXPORT_SYMBOL_GPL
-0x29c602c4 rhashtable_destroy vmlinux EXPORT_SYMBOL_GPL
-0xd0d156e9 __rht_bucket_nested vmlinux EXPORT_SYMBOL_GPL
-0xb7f990e9 rht_bucket_nested vmlinux EXPORT_SYMBOL_GPL
-0x98c9446d rht_bucket_nested_insert vmlinux EXPORT_SYMBOL_GPL
-0x479803b9 base64_encode vmlinux EXPORT_SYMBOL_GPL
-0x72ae1839 base64_decode vmlinux EXPORT_SYMBOL_GPL
-0x18e60984 __do_once_start vmlinux EXPORT_SYMBOL
-0x60b2f53c __do_once_done vmlinux EXPORT_SYMBOL
-0xbafa632e __do_once_sleepable_start vmlinux EXPORT_SYMBOL
-0x1812d381 __do_once_sleepable_done vmlinux EXPORT_SYMBOL
-0x0296695f refcount_warn_saturate vmlinux EXPORT_SYMBOL
-0xc6f3b3fc refcount_dec_if_one vmlinux EXPORT_SYMBOL
-0x47c20f8a refcount_dec_not_one vmlinux EXPORT_SYMBOL
-0x99f7371c refcount_dec_and_mutex_lock vmlinux EXPORT_SYMBOL
-0x5e06bc5c refcount_dec_and_lock vmlinux EXPORT_SYMBOL
-0xafb864c1 refcount_dec_and_lock_irqsave vmlinux EXPORT_SYMBOL
-0x33338211 rcuref_get_slowpath vmlinux EXPORT_SYMBOL_GPL
-0xd0686cd4 rcuref_put_slowpath vmlinux EXPORT_SYMBOL_GPL
-0x13c49cc2 _copy_from_user vmlinux EXPORT_SYMBOL
-0x6b10bee1 _copy_to_user vmlinux EXPORT_SYMBOL
-0x0bfc1d1a check_zeroed_user vmlinux EXPORT_SYMBOL
-0x2ec6bba0 errseq_set vmlinux EXPORT_SYMBOL
-0x8b910be2 errseq_sample vmlinux EXPORT_SYMBOL
-0x769f6e64 errseq_check vmlinux EXPORT_SYMBOL
-0x21bdb523 errseq_check_and_advance vmlinux EXPORT_SYMBOL
-0xe8fbf4fa __alloc_bucket_spinlocks vmlinux EXPORT_SYMBOL
-0x08162c74 free_bucket_spinlocks vmlinux EXPORT_SYMBOL
-0x50f91491 __genradix_ptr vmlinux EXPORT_SYMBOL
-0x33736a1d __genradix_ptr_alloc vmlinux EXPORT_SYMBOL
-0xe21f18ac __genradix_iter_peek vmlinux EXPORT_SYMBOL
-0xf5a20ed2 __genradix_prealloc vmlinux EXPORT_SYMBOL
-0x506dff1a __genradix_free vmlinux EXPORT_SYMBOL
-0x48a91171 string_get_size vmlinux EXPORT_SYMBOL
-0x9c9aa3b9 parse_int_array_user vmlinux EXPORT_SYMBOL
-0x64bbc288 string_unescape vmlinux EXPORT_SYMBOL
-0x656c1a0e string_escape_mem vmlinux EXPORT_SYMBOL
-0xc8ddd5b5 kstrdup_quotable vmlinux EXPORT_SYMBOL_GPL
-0xa27f07f7 kstrdup_quotable_cmdline vmlinux EXPORT_SYMBOL_GPL
-0xd9fdd54a kstrdup_quotable_file vmlinux EXPORT_SYMBOL_GPL
-0x94a90ea8 kstrdup_and_replace vmlinux EXPORT_SYMBOL_GPL
-0x28310bcd kasprintf_strarray vmlinux EXPORT_SYMBOL_GPL
-0x248e1473 kfree_strarray vmlinux EXPORT_SYMBOL_GPL
-0x7f4b7d5f devm_kasprintf_strarray vmlinux EXPORT_SYMBOL_GPL
-0xfbb8a761 strscpy_pad vmlinux EXPORT_SYMBOL
-0xb71589f0 skip_spaces vmlinux EXPORT_SYMBOL
-0x77bc13a0 strim vmlinux EXPORT_SYMBOL
-0x222e7ce2 sysfs_streq vmlinux EXPORT_SYMBOL
-0x81188c30 match_string vmlinux EXPORT_SYMBOL
-0x169938c1 __sysfs_match_string vmlinux EXPORT_SYMBOL
-0x7410aba2 strreplace vmlinux EXPORT_SYMBOL
-0x697ed5f0 memcpy_and_pad vmlinux EXPORT_SYMBOL
-0x5092e84e __read_overflow2_field vmlinux EXPORT_SYMBOL
-0x3402dc8b __write_overflow_field vmlinux EXPORT_SYMBOL
-0xcbd4898c fortify_panic vmlinux EXPORT_SYMBOL
-0x7129e5f8 hex_asc vmlinux EXPORT_SYMBOL
-0x8d73278e hex_asc_upper vmlinux EXPORT_SYMBOL
-0xab6d5b3b hex_to_bin vmlinux EXPORT_SYMBOL
-0x50cf7585 hex2bin vmlinux EXPORT_SYMBOL
-0xd45cc6ca bin2hex vmlinux EXPORT_SYMBOL
-0xfe916dc6 hex_dump_to_buffer vmlinux EXPORT_SYMBOL
-0x167c5967 print_hex_dump vmlinux EXPORT_SYMBOL
-0x5c3c7387 kstrtoull vmlinux EXPORT_SYMBOL
-0x3854774b kstrtoll vmlinux EXPORT_SYMBOL
-0x0668b595 _kstrtoul vmlinux EXPORT_SYMBOL
-0xaa19e4aa _kstrtol vmlinux EXPORT_SYMBOL
-0x3b6c41ea kstrtouint vmlinux EXPORT_SYMBOL
-0x8c8569cb kstrtoint vmlinux EXPORT_SYMBOL
-0x4af6ddf0 kstrtou16 vmlinux EXPORT_SYMBOL
-0xe0419ac4 kstrtos16 vmlinux EXPORT_SYMBOL
-0x6a6e05bf kstrtou8 vmlinux EXPORT_SYMBOL
-0x7429e20c kstrtos8 vmlinux EXPORT_SYMBOL
-0x124bad4d kstrtobool vmlinux EXPORT_SYMBOL
-0x0248efd3 kstrtobool_from_user vmlinux EXPORT_SYMBOL
-0x7d74d522 kstrtoull_from_user vmlinux EXPORT_SYMBOL
-0xc58d5a90 kstrtoll_from_user vmlinux EXPORT_SYMBOL
-0xf7d31de9 kstrtoul_from_user vmlinux EXPORT_SYMBOL
-0x2505bf18 kstrtol_from_user vmlinux EXPORT_SYMBOL
-0x47cfd825 kstrtouint_from_user vmlinux EXPORT_SYMBOL
-0xf9ca2eb4 kstrtoint_from_user vmlinux EXPORT_SYMBOL
-0x0474edef kstrtou16_from_user vmlinux EXPORT_SYMBOL
-0xb23027c1 kstrtos16_from_user vmlinux EXPORT_SYMBOL
-0xdf256037 kstrtou8_from_user vmlinux EXPORT_SYMBOL
-0xb3f49446 kstrtos8_from_user vmlinux EXPORT_SYMBOL
-0xc16be39d iter_div_u64_rem vmlinux EXPORT_SYMBOL
-0xea124bd1 gcd vmlinux EXPORT_SYMBOL_GPL
-0xf54bd49b lcm vmlinux EXPORT_SYMBOL_GPL
-0x74b5ea68 lcm_not_zero vmlinux EXPORT_SYMBOL_GPL
-0x5f2b1d95 intlog2 vmlinux EXPORT_SYMBOL
-0x08733236 intlog10 vmlinux EXPORT_SYMBOL
-0x1af267f8 int_pow vmlinux EXPORT_SYMBOL_GPL
-0xb678366f int_sqrt vmlinux EXPORT_SYMBOL
-0xa965ca81 reciprocal_value vmlinux EXPORT_SYMBOL
-0xdc49c198 reciprocal_value_adv vmlinux EXPORT_SYMBOL
-0xb0a0da0c rational_best_approximation vmlinux EXPORT_SYMBOL
-0x5a44f8cb __crypto_memneq vmlinux EXPORT_SYMBOL
-0xa3f12f69 __crypto_xor vmlinux EXPORT_SYMBOL_GPL
-0x11e30762 chacha_block_generic vmlinux EXPORT_SYMBOL
-0xaaa4b9bc hchacha_block_generic vmlinux EXPORT_SYMBOL
-0xd9d952d1 crypto_aes_sbox vmlinux EXPORT_SYMBOL
-0xa84ce9e0 crypto_aes_inv_sbox vmlinux EXPORT_SYMBOL
-0x558b281d aes_expandkey vmlinux EXPORT_SYMBOL
-0x77e9eb37 aes_encrypt vmlinux EXPORT_SYMBOL
-0x78a16f48 aes_decrypt vmlinux EXPORT_SYMBOL
-0x7a1bcd59 gf128mul_x8_ble vmlinux EXPORT_SYMBOL
-0x9e13f6f6 gf128mul_lle vmlinux EXPORT_SYMBOL
-0x1068004b gf128mul_bbe vmlinux EXPORT_SYMBOL
-0x3755f990 gf128mul_init_64k_bbe vmlinux EXPORT_SYMBOL
-0xd60736ec gf128mul_free_64k vmlinux EXPORT_SYMBOL
-0x5e373fb4 gf128mul_64k_bbe vmlinux EXPORT_SYMBOL
-0x83581089 gf128mul_init_4k_lle vmlinux EXPORT_SYMBOL
-0x9b2560b9 gf128mul_init_4k_bbe vmlinux EXPORT_SYMBOL
-0x5a4d313e gf128mul_4k_lle vmlinux EXPORT_SYMBOL
-0xd70d35a1 gf128mul_4k_bbe vmlinux EXPORT_SYMBOL
-0xa3cefaa0 blake2s_update vmlinux EXPORT_SYMBOL
-0xadae6df8 blake2s_final vmlinux EXPORT_SYMBOL
-0x755f4ba3 blake2s_compress_generic vmlinux EXPORT_SYMBOL
-0x5e0ccb9f sha1_transform vmlinux EXPORT_SYMBOL
-0x50624917 sha1_init vmlinux EXPORT_SYMBOL
-0x7b5b8f31 sha256_update vmlinux EXPORT_SYMBOL
-0x61e272c9 sha256_final vmlinux EXPORT_SYMBOL
-0xa3fea172 sha224_final vmlinux EXPORT_SYMBOL
-0xe39b2ea5 sha256 vmlinux EXPORT_SYMBOL
-0x9eebdde7 mpi_point_new vmlinux EXPORT_SYMBOL_GPL
-0xfe1a7a7b mpi_point_release vmlinux EXPORT_SYMBOL_GPL
-0x6bcdedc0 mpi_point_init vmlinux EXPORT_SYMBOL_GPL
-0x8a83fb45 mpi_point_free_parts vmlinux EXPORT_SYMBOL_GPL
-0x95843030 mpi_ec_init vmlinux EXPORT_SYMBOL_GPL
-0xf3797506 mpi_ec_deinit vmlinux EXPORT_SYMBOL_GPL
-0x291876f3 mpi_ec_get_affine vmlinux EXPORT_SYMBOL_GPL
-0x8ff60436 mpi_ec_add_points vmlinux EXPORT_SYMBOL_GPL
-0x5fa625ed mpi_ec_mul_point vmlinux EXPORT_SYMBOL_GPL
-0x57f576b9 mpi_ec_curve_point vmlinux EXPORT_SYMBOL_GPL
-0xceb1f126 mpi_read_raw_data vmlinux EXPORT_SYMBOL_GPL
-0x0aeae7e3 mpi_key_length vmlinux EXPORT_SYMBOL_GPL
-0x3e7080cb mpi_read_from_buffer vmlinux EXPORT_SYMBOL_GPL
-0x69cf0632 mpi_fromstr vmlinux EXPORT_SYMBOL_GPL
-0x91b774a1 mpi_scanval vmlinux EXPORT_SYMBOL_GPL
-0x3bf17755 mpi_read_buffer vmlinux EXPORT_SYMBOL_GPL
-0x04c4f603 mpi_get_buffer vmlinux EXPORT_SYMBOL_GPL
-0xae01217a mpi_write_to_sgl vmlinux EXPORT_SYMBOL_GPL
-0xc3997d9d mpi_read_raw_from_sgl vmlinux EXPORT_SYMBOL_GPL
-0x6c205008 mpi_print vmlinux EXPORT_SYMBOL_GPL
-0x6531a37f mpi_add vmlinux EXPORT_SYMBOL_GPL
-0x7656410c mpi_sub vmlinux EXPORT_SYMBOL_GPL
-0xb6410433 mpi_addm vmlinux EXPORT_SYMBOL_GPL
-0x59f32720 mpi_subm vmlinux EXPORT_SYMBOL_GPL
-0x4efcf021 mpi_normalize vmlinux EXPORT_SYMBOL_GPL
-0xdbf7cb70 mpi_get_nbits vmlinux EXPORT_SYMBOL_GPL
-0xea018bbb mpi_test_bit vmlinux EXPORT_SYMBOL_GPL
-0x1f38a4f6 mpi_set_highbit vmlinux EXPORT_SYMBOL_GPL
-0x436d817f mpi_clear_bit vmlinux EXPORT_SYMBOL_GPL
-0x6e353c26 mpi_rshift vmlinux EXPORT_SYMBOL_GPL
-0x9bece81b mpi_cmp_ui vmlinux EXPORT_SYMBOL_GPL
-0xae7c231d mpi_cmp vmlinux EXPORT_SYMBOL_GPL
-0x4401e6c2 mpi_cmpabs vmlinux EXPORT_SYMBOL_GPL
-0xff7e33bf mpi_sub_ui vmlinux EXPORT_SYMBOL_GPL
-0x1dfa5dbd mpi_invm vmlinux EXPORT_SYMBOL_GPL
-0xb561c490 mpi_mul vmlinux EXPORT_SYMBOL_GPL
-0x481f9b7d mpi_mulm vmlinux EXPORT_SYMBOL_GPL
-0x9fe939e1 mpi_powm vmlinux EXPORT_SYMBOL_GPL
-0x2421097b mpi_const vmlinux EXPORT_SYMBOL_GPL
-0x98503a63 mpi_alloc vmlinux EXPORT_SYMBOL_GPL
-0xd1481de7 mpi_clear vmlinux EXPORT_SYMBOL_GPL
-0x80d5e57a mpi_free vmlinux EXPORT_SYMBOL_GPL
-0x38e1fde7 mpi_set vmlinux EXPORT_SYMBOL_GPL
-0x3450ad94 mpi_set_ui vmlinux EXPORT_SYMBOL_GPL
-0x0b19b445 ioread8 vmlinux EXPORT_SYMBOL
-0x842c8e9d ioread16 vmlinux EXPORT_SYMBOL
-0xa71d2e2c ioread16be vmlinux EXPORT_SYMBOL
-0xa78af5f3 ioread32 vmlinux EXPORT_SYMBOL
-0x9bb4e317 ioread32be vmlinux EXPORT_SYMBOL
-0xfe052363 ioread64_lo_hi vmlinux EXPORT_SYMBOL
-0x5f99383a ioread64_hi_lo vmlinux EXPORT_SYMBOL
-0xbd393ca3 ioread64be_lo_hi vmlinux EXPORT_SYMBOL
-0x1ca527fa ioread64be_hi_lo vmlinux EXPORT_SYMBOL
-0x848d372e iowrite8 vmlinux EXPORT_SYMBOL
-0x06a86bc1 iowrite16 vmlinux EXPORT_SYMBOL
-0x26f8f0b8 iowrite16be vmlinux EXPORT_SYMBOL
-0x4a453f53 iowrite32 vmlinux EXPORT_SYMBOL
-0xe419bc99 iowrite32be vmlinux EXPORT_SYMBOL
-0xd21c5139 iowrite64_lo_hi vmlinux EXPORT_SYMBOL
-0x0228925f iowrite64_hi_lo vmlinux EXPORT_SYMBOL
-0x16286538 iowrite64be_lo_hi vmlinux EXPORT_SYMBOL
-0xc61ca65e iowrite64be_hi_lo vmlinux EXPORT_SYMBOL
-0xfbab1bb1 ioread8_rep vmlinux EXPORT_SYMBOL
-0x5fc67252 ioread16_rep vmlinux EXPORT_SYMBOL
-0x6cc09945 ioread32_rep vmlinux EXPORT_SYMBOL
-0xa4b94fea iowrite8_rep vmlinux EXPORT_SYMBOL
-0x8cc79cab iowrite16_rep vmlinux EXPORT_SYMBOL
-0xbfc177bc iowrite32_rep vmlinux EXPORT_SYMBOL
-0x594bf15b ioport_map vmlinux EXPORT_SYMBOL
-0xfc39e32f ioport_unmap vmlinux EXPORT_SYMBOL
-0xacc1972b pci_iounmap vmlinux EXPORT_SYMBOL
-0xfb652c59 pci_iomap_range vmlinux EXPORT_SYMBOL
-0xf2e51cbf pci_iomap_wc_range vmlinux EXPORT_SYMBOL_GPL
-0xe8160cb0 pci_iomap vmlinux EXPORT_SYMBOL
-0x14dbac55 pci_iomap_wc vmlinux EXPORT_SYMBOL_GPL
-0x9cf37c44 __iowrite32_copy vmlinux EXPORT_SYMBOL_GPL
-0x3801776b __ioread32_copy vmlinux EXPORT_SYMBOL_GPL
-0x73c2554f __iowrite64_copy vmlinux EXPORT_SYMBOL_GPL
-0xb956d1ee devm_ioremap vmlinux EXPORT_SYMBOL
-0xf9911cc4 devm_ioremap_uc vmlinux EXPORT_SYMBOL_GPL
-0x6f2d438b devm_ioremap_wc vmlinux EXPORT_SYMBOL
-0x2258f8b2 devm_iounmap vmlinux EXPORT_SYMBOL
-0x6b58fcb5 devm_ioremap_resource vmlinux EXPORT_SYMBOL
-0x0473f0ee devm_of_iomap vmlinux EXPORT_SYMBOL
-0x170d709f devm_ioport_map vmlinux EXPORT_SYMBOL
-0x0e9f56ac devm_ioport_unmap vmlinux EXPORT_SYMBOL
-0x07b01164 pcim_iomap_table vmlinux EXPORT_SYMBOL
-0x6bee265f pcim_iomap vmlinux EXPORT_SYMBOL
-0xeb7da1c0 pcim_iounmap vmlinux EXPORT_SYMBOL
-0xe3eab22d pcim_iomap_regions vmlinux EXPORT_SYMBOL
-0x7e29546f pcim_iomap_regions_request_all vmlinux EXPORT_SYMBOL
-0x5e6d81c7 pcim_iounmap_regions vmlinux EXPORT_SYMBOL
-0x00211cbc devm_arch_phys_wc_add vmlinux EXPORT_SYMBOL
-0x004c2f7b devm_arch_io_reserve_memtype_wc vmlinux EXPORT_SYMBOL
-0x2a303d4d check_signature vmlinux EXPORT_SYMBOL
-0xf331236f btree_geo32 vmlinux EXPORT_SYMBOL_GPL
-0xa3a04602 btree_geo64 vmlinux EXPORT_SYMBOL_GPL
-0x1c80d27d btree_geo128 vmlinux EXPORT_SYMBOL_GPL
-0x19e81304 btree_alloc vmlinux EXPORT_SYMBOL_GPL
-0x95bc9078 btree_free vmlinux EXPORT_SYMBOL_GPL
-0x24cba015 btree_init_mempool vmlinux EXPORT_SYMBOL_GPL
-0x1851e2e1 btree_init vmlinux EXPORT_SYMBOL_GPL
-0xee980b12 btree_destroy vmlinux EXPORT_SYMBOL_GPL
-0x58126d38 btree_last vmlinux EXPORT_SYMBOL_GPL
-0xc11bd3b2 btree_lookup vmlinux EXPORT_SYMBOL_GPL
-0xdfb8a151 btree_update vmlinux EXPORT_SYMBOL_GPL
-0x49d5a7de btree_get_prev vmlinux EXPORT_SYMBOL_GPL
-0xf90f08d2 btree_insert vmlinux EXPORT_SYMBOL_GPL
-0x413c60c6 btree_remove vmlinux EXPORT_SYMBOL_GPL
-0xf13c06d1 btree_merge vmlinux EXPORT_SYMBOL_GPL
-0x920cc389 visitorl vmlinux EXPORT_SYMBOL_GPL
-0xc9641b48 visitor32 vmlinux EXPORT_SYMBOL_GPL
-0x54215db5 visitor64 vmlinux EXPORT_SYMBOL_GPL
-0x75133f6e visitor128 vmlinux EXPORT_SYMBOL_GPL
-0x8cb3c360 btree_visitor vmlinux EXPORT_SYMBOL_GPL
-0x36e1a46d btree_grim_visitor vmlinux EXPORT_SYMBOL_GPL
-0xdab5a1eb interval_tree_insert vmlinux EXPORT_SYMBOL_GPL
-0x09b53e14 interval_tree_remove vmlinux EXPORT_SYMBOL_GPL
-0xa44a1307 interval_tree_iter_first vmlinux EXPORT_SYMBOL_GPL
-0xd96babb4 interval_tree_iter_next vmlinux EXPORT_SYMBOL_GPL
-0xc1e6986e interval_tree_span_iter_first vmlinux EXPORT_SYMBOL_GPL
-0x7429297b interval_tree_span_iter_next vmlinux EXPORT_SYMBOL_GPL
-0x76517f03 interval_tree_span_iter_advance vmlinux EXPORT_SYMBOL_GPL
-0x7696f8c7 __list_add_valid_or_report vmlinux EXPORT_SYMBOL
-0x950eb34e __list_del_entry_valid_or_report vmlinux EXPORT_SYMBOL
-0x78041b8f byte_rev_table vmlinux EXPORT_SYMBOL_GPL
-0x7f03b6a9 crc_ccitt_table vmlinux EXPORT_SYMBOL
-0x44469a76 crc_ccitt_false_table vmlinux EXPORT_SYMBOL
-0x52ecbc75 crc_ccitt vmlinux EXPORT_SYMBOL
-0x0cc4b4b6 crc_ccitt_false vmlinux EXPORT_SYMBOL
-0x146289b7 crc16_table vmlinux EXPORT_SYMBOL
-0xbd6841d4 crc16 vmlinux EXPORT_SYMBOL
-0x97a57333 crc_t10dif_update vmlinux EXPORT_SYMBOL
-0xc666a132 crc_t10dif vmlinux EXPORT_SYMBOL
-0x69dd3b5b crc32_le vmlinux EXPORT_SYMBOL
-0xba1008c8 __crc32c_le vmlinux EXPORT_SYMBOL
-0x4aea463f crc32_le_shift vmlinux EXPORT_SYMBOL
-0x7d5e1008 __crc32c_le_shift vmlinux EXPORT_SYMBOL
-0x4df02057 crc32_be vmlinux EXPORT_SYMBOL
-0xbe5a24e9 xxh32_copy_state vmlinux EXPORT_SYMBOL
-0xd5b3d0d5 xxh64_copy_state vmlinux EXPORT_SYMBOL
-0x8888f1fe xxh32 vmlinux EXPORT_SYMBOL
-0xb2f35c6a xxh64 vmlinux EXPORT_SYMBOL
-0x6673f96d xxh32_reset vmlinux EXPORT_SYMBOL
-0x658ce1a8 xxh64_reset vmlinux EXPORT_SYMBOL
-0x45535485 xxh32_update vmlinux EXPORT_SYMBOL
-0x4a96a8eb xxh32_digest vmlinux EXPORT_SYMBOL
-0x3f0eabd2 xxh64_update vmlinux EXPORT_SYMBOL
-0xe32ab4d8 xxh64_digest vmlinux EXPORT_SYMBOL
-0xced0f4d4 gen_pool_create vmlinux EXPORT_SYMBOL
-0xbefa51a3 gen_pool_add_owner vmlinux EXPORT_SYMBOL
-0x7d0ba682 gen_pool_virt_to_phys vmlinux EXPORT_SYMBOL
-0x6c224cda gen_pool_destroy vmlinux EXPORT_SYMBOL
-0x2b593aa8 gen_pool_alloc_algo_owner vmlinux EXPORT_SYMBOL
-0x486075c8 gen_pool_dma_alloc vmlinux EXPORT_SYMBOL
-0x4de995ec gen_pool_dma_alloc_algo vmlinux EXPORT_SYMBOL
-0xada31e57 gen_pool_dma_alloc_align vmlinux EXPORT_SYMBOL
-0xee7d7deb gen_pool_dma_zalloc vmlinux EXPORT_SYMBOL
-0x94bb7ec3 gen_pool_dma_zalloc_algo vmlinux EXPORT_SYMBOL
-0x3d210724 gen_pool_dma_zalloc_align vmlinux EXPORT_SYMBOL
-0x060ba97c gen_pool_free_owner vmlinux EXPORT_SYMBOL
-0x5ef6a672 gen_pool_for_each_chunk vmlinux EXPORT_SYMBOL
-0x1f557414 gen_pool_has_addr vmlinux EXPORT_SYMBOL
-0xd0d3f0a4 gen_pool_avail vmlinux EXPORT_SYMBOL_GPL
-0x2464da17 gen_pool_size vmlinux EXPORT_SYMBOL_GPL
-0x96e5d30f gen_pool_set_algo vmlinux EXPORT_SYMBOL
-0x881c4413 gen_pool_first_fit vmlinux EXPORT_SYMBOL
-0x5e855e56 gen_pool_first_fit_align vmlinux EXPORT_SYMBOL
-0x57900416 gen_pool_fixed_alloc vmlinux EXPORT_SYMBOL
-0x3f4bd846 gen_pool_first_fit_order_align vmlinux EXPORT_SYMBOL
-0xb737b185 gen_pool_best_fit vmlinux EXPORT_SYMBOL
-0xfbaf62e3 gen_pool_get vmlinux EXPORT_SYMBOL_GPL
-0xba9ce3c6 devm_gen_pool_create vmlinux EXPORT_SYMBOL
-0xce5ac24f zlib_inflate_workspacesize vmlinux EXPORT_SYMBOL
-0x581f98da zlib_inflate vmlinux EXPORT_SYMBOL
-0x35a88f28 zlib_inflateInit2 vmlinux EXPORT_SYMBOL
-0x107e5878 zlib_inflateEnd vmlinux EXPORT_SYMBOL
-0xbb0540aa zlib_inflateReset vmlinux EXPORT_SYMBOL
-0x424d3620 zlib_inflateIncomp vmlinux EXPORT_SYMBOL
-0x65408378 zlib_inflate_blob vmlinux EXPORT_SYMBOL
-0xe9f7149c zlib_deflate_workspacesize vmlinux EXPORT_SYMBOL
-0xea6f9a36 zlib_deflate_dfltcc_enabled vmlinux EXPORT_SYMBOL
-0xf2c43f3f zlib_deflate vmlinux EXPORT_SYMBOL
-0x5a0b73d0 zlib_deflateInit2 vmlinux EXPORT_SYMBOL
-0xc890c008 zlib_deflateEnd vmlinux EXPORT_SYMBOL
-0x6aeefac4 zlib_deflateReset vmlinux EXPORT_SYMBOL
-0x787c882b lzo1x_1_compress vmlinux EXPORT_SYMBOL_GPL
-0x79f697e4 lzorle1x_1_compress vmlinux EXPORT_SYMBOL_GPL
-0x04df8fbc lzo1x_decompress_safe vmlinux EXPORT_SYMBOL_GPL
-0xc7c1107a LZ4_decompress_safe vmlinux EXPORT_SYMBOL
-0x15bed7a5 LZ4_decompress_safe_partial vmlinux EXPORT_SYMBOL
-0x4c416eb9 LZ4_decompress_fast vmlinux EXPORT_SYMBOL
-0x3b321462 LZ4_setStreamDecode vmlinux EXPORT_SYMBOL
-0x8a47043d LZ4_decompress_safe_continue vmlinux EXPORT_SYMBOL
-0x389617b0 LZ4_decompress_fast_continue vmlinux EXPORT_SYMBOL
-0x8b0088d1 LZ4_decompress_safe_usingDict vmlinux EXPORT_SYMBOL
-0xb78debe3 LZ4_decompress_fast_usingDict vmlinux EXPORT_SYMBOL
-0x4f20d80b zstd_min_clevel vmlinux EXPORT_SYMBOL
-0x665e2513 zstd_max_clevel vmlinux EXPORT_SYMBOL
-0xb80b4a18 zstd_compress_bound vmlinux EXPORT_SYMBOL
-0x6315c42c zstd_get_params vmlinux EXPORT_SYMBOL
-0xbe6a8c96 zstd_cctx_workspace_bound vmlinux EXPORT_SYMBOL
-0x0a84b15d zstd_init_cctx vmlinux EXPORT_SYMBOL
-0xf2628676 zstd_compress_cctx vmlinux EXPORT_SYMBOL
-0x9d26675e zstd_cstream_workspace_bound vmlinux EXPORT_SYMBOL
-0xc078d22c zstd_init_cstream vmlinux EXPORT_SYMBOL
-0x39d95ca4 zstd_reset_cstream vmlinux EXPORT_SYMBOL
-0xffc4f200 zstd_compress_stream vmlinux EXPORT_SYMBOL
-0xdad1fc3f zstd_flush_stream vmlinux EXPORT_SYMBOL
-0x0d333b64 zstd_end_stream vmlinux EXPORT_SYMBOL
-0xafc6c68e zstd_is_error vmlinux EXPORT_SYMBOL
-0x608d0267 zstd_get_error_code vmlinux EXPORT_SYMBOL
-0xe9dc12a4 zstd_get_error_name vmlinux EXPORT_SYMBOL
-0x8c30bf67 zstd_dctx_workspace_bound vmlinux EXPORT_SYMBOL
-0x3ae34aeb zstd_init_dctx vmlinux EXPORT_SYMBOL
-0xca1648d4 zstd_decompress_dctx vmlinux EXPORT_SYMBOL
-0x3f34644d zstd_dstream_workspace_bound vmlinux EXPORT_SYMBOL
-0x3cbb940b zstd_init_dstream vmlinux EXPORT_SYMBOL
-0xf1a65f7b zstd_reset_dstream vmlinux EXPORT_SYMBOL
-0xdfc12ef1 zstd_decompress_stream vmlinux EXPORT_SYMBOL
-0xf8d2bc2c zstd_find_frame_compressed_size vmlinux EXPORT_SYMBOL
-0x46451cee zstd_get_frame_header vmlinux EXPORT_SYMBOL
-0xe58eb9d7 FSE_readNCount vmlinux EXPORT_SYMBOL_GPL
-0xb55139f6 HUF_readStats vmlinux EXPORT_SYMBOL_GPL
-0x20a4e01a HUF_readStats_wksp vmlinux EXPORT_SYMBOL_GPL
-0xc6250576 ZSTD_isError vmlinux EXPORT_SYMBOL_GPL
-0xca500464 ZSTD_getErrorName vmlinux EXPORT_SYMBOL_GPL
-0x97e19906 ZSTD_getErrorCode vmlinux EXPORT_SYMBOL_GPL
-0x9bdf9714 ZSTD_customMalloc vmlinux EXPORT_SYMBOL_GPL
-0x1a82368d ZSTD_customCalloc vmlinux EXPORT_SYMBOL_GPL
-0x1c7169dc ZSTD_customFree vmlinux EXPORT_SYMBOL_GPL
-0x52d717da xz_dec_init vmlinux EXPORT_SYMBOL
-0x81db6ebb xz_dec_reset vmlinux EXPORT_SYMBOL
-0x6e5b8651 xz_dec_run vmlinux EXPORT_SYMBOL
-0x65dccf13 xz_dec_end vmlinux EXPORT_SYMBOL
-0xd5eec5b8 textsearch_register vmlinux EXPORT_SYMBOL
-0x05017e1d textsearch_unregister vmlinux EXPORT_SYMBOL
-0xa35a6de2 textsearch_find_continuous vmlinux EXPORT_SYMBOL
-0x9c2f9b89 textsearch_prepare vmlinux EXPORT_SYMBOL
-0x60f0772c textsearch_destroy vmlinux EXPORT_SYMBOL
-0xe15e7d5a percpu_counter_set vmlinux EXPORT_SYMBOL
-0x60a235cd percpu_counter_add_batch vmlinux EXPORT_SYMBOL
-0x397d07d4 percpu_counter_sync vmlinux EXPORT_SYMBOL
-0x67fb6722 __percpu_counter_sum vmlinux EXPORT_SYMBOL
-0x44f4ec55 __percpu_counter_init_many vmlinux EXPORT_SYMBOL
-0x348a64d7 percpu_counter_destroy_many vmlinux EXPORT_SYMBOL
-0x05240ee7 percpu_counter_batch vmlinux EXPORT_SYMBOL
-0x48d86cb4 __percpu_counter_compare vmlinux EXPORT_SYMBOL
-0xac1d3719 param_set_dyndbg_classes vmlinux EXPORT_SYMBOL
-0xe1b7109a param_get_dyndbg_classes vmlinux EXPORT_SYMBOL
-0xbc68792c param_ops_dyndbg_classes vmlinux EXPORT_SYMBOL
-0x2cf56265 __dynamic_pr_debug vmlinux EXPORT_SYMBOL
-0x9c0fc944 __dynamic_dev_dbg vmlinux EXPORT_SYMBOL
-0x1355c0e7 __dynamic_netdev_dbg vmlinux EXPORT_SYMBOL
-0x076239be __dynamic_ibdev_dbg vmlinux EXPORT_SYMBOL
-0xa2ff6e3a __nla_validate vmlinux EXPORT_SYMBOL
-0xafe88cb3 nla_policy_len vmlinux EXPORT_SYMBOL
-0xb2d93b8a __nla_parse vmlinux EXPORT_SYMBOL
-0xcd279169 nla_find vmlinux EXPORT_SYMBOL
-0x84823cf3 nla_strscpy vmlinux EXPORT_SYMBOL
-0xc0ff12fb nla_strdup vmlinux EXPORT_SYMBOL
-0xf1db1704 nla_memcpy vmlinux EXPORT_SYMBOL
-0x652ce9aa nla_memcmp vmlinux EXPORT_SYMBOL
-0xedbaee5e nla_strcmp vmlinux EXPORT_SYMBOL
-0x67294832 __nla_reserve vmlinux EXPORT_SYMBOL
-0x1cb76d42 __nla_reserve_64bit vmlinux EXPORT_SYMBOL
-0x47ee35da __nla_reserve_nohdr vmlinux EXPORT_SYMBOL
-0x3406c755 nla_reserve vmlinux EXPORT_SYMBOL
-0x51ed0c72 nla_reserve_64bit vmlinux EXPORT_SYMBOL
-0x4e743330 nla_reserve_nohdr vmlinux EXPORT_SYMBOL
-0x3a8160a8 __nla_put vmlinux EXPORT_SYMBOL
-0x37bcece6 __nla_put_64bit vmlinux EXPORT_SYMBOL
-0xca534527 __nla_put_nohdr vmlinux EXPORT_SYMBOL
-0x75e6b5c1 nla_put vmlinux EXPORT_SYMBOL
-0xce5f2d59 nla_put_64bit vmlinux EXPORT_SYMBOL
-0x8534904e nla_put_nohdr vmlinux EXPORT_SYMBOL
-0x2def6eb0 nla_append vmlinux EXPORT_SYMBOL
-0x7919b383 alloc_cpu_rmap vmlinux EXPORT_SYMBOL
-0x4da278d9 cpu_rmap_put vmlinux EXPORT_SYMBOL
-0xa54b9063 cpu_rmap_add vmlinux EXPORT_SYMBOL
-0xe613df67 cpu_rmap_update vmlinux EXPORT_SYMBOL
-0xd4afea5d free_irq_cpu_rmap vmlinux EXPORT_SYMBOL
-0x6f41a639 irq_cpu_rmap_remove vmlinux EXPORT_SYMBOL
-0x81c51d19 irq_cpu_rmap_add vmlinux EXPORT_SYMBOL
-0xa00aca2a dql_completed vmlinux EXPORT_SYMBOL
-0x4ea25709 dql_reset vmlinux EXPORT_SYMBOL
-0xab67a0ac dql_init vmlinux EXPORT_SYMBOL
-0x5009c71d glob_match vmlinux EXPORT_SYMBOL
-0x4ace7236 dim_on_top vmlinux EXPORT_SYMBOL
-0x3044e43a dim_turn vmlinux EXPORT_SYMBOL
-0xf31c9fe6 dim_park_on_top vmlinux EXPORT_SYMBOL
-0xee82c80f dim_park_tired vmlinux EXPORT_SYMBOL
-0xb058ca07 dim_calc_stats vmlinux EXPORT_SYMBOL
-0x99d472b1 net_dim_get_rx_moderation vmlinux EXPORT_SYMBOL
-0x8ac3334b net_dim_get_def_rx_moderation vmlinux EXPORT_SYMBOL
-0x258d2f76 net_dim_get_tx_moderation vmlinux EXPORT_SYMBOL
-0x7cfe368d net_dim_get_def_tx_moderation vmlinux EXPORT_SYMBOL
-0xbac005c4 net_dim vmlinux EXPORT_SYMBOL
-0xbe1a7801 rdma_dim vmlinux EXPORT_SYMBOL
-0x2317c413 digsig_verify vmlinux EXPORT_SYMBOL_GPL
-0x8522d6bc strncpy_from_user vmlinux EXPORT_SYMBOL
-0xd91f6ab6 strnlen_user vmlinux EXPORT_SYMBOL
-0x652032cb mac_pton vmlinux EXPORT_SYMBOL
-0xa56e1a52 sg_free_table_chained vmlinux EXPORT_SYMBOL_GPL
-0x9e229c49 sg_alloc_table_chained vmlinux EXPORT_SYMBOL_GPL
-0x213a738d memregion_alloc vmlinux EXPORT_SYMBOL
-0xf2f53617 memregion_free vmlinux EXPORT_SYMBOL
-0x554ae3a4 irq_poll_sched vmlinux EXPORT_SYMBOL
-0xd7d280ad irq_poll_complete vmlinux EXPORT_SYMBOL
-0x7f7f7bb4 irq_poll_disable vmlinux EXPORT_SYMBOL
-0xb633f115 irq_poll_enable vmlinux EXPORT_SYMBOL
-0xab3697e4 irq_poll_init vmlinux EXPORT_SYMBOL
-0x10d9f317 stack_depot_init vmlinux EXPORT_SYMBOL_GPL
-0x6d7832b7 __stack_depot_save vmlinux EXPORT_SYMBOL_GPL
-0x913ebd32 stack_depot_save vmlinux EXPORT_SYMBOL_GPL
-0x051a0bc1 stack_depot_fetch vmlinux EXPORT_SYMBOL_GPL
-0x1e53f827 stack_depot_print vmlinux EXPORT_SYMBOL_GPL
-0xa5d1f4b8 stack_depot_snprint vmlinux EXPORT_SYMBOL_GPL
-0x9df995fb stack_depot_set_extra_bits vmlinux EXPORT_SYMBOL
-0x4977c498 stack_depot_get_extra_bits vmlinux EXPORT_SYMBOL
-0x13ce87e8 asn1_ber_decoder vmlinux EXPORT_SYMBOL_GPL
-0xc7e64fc2 asn1_encode_integer vmlinux EXPORT_SYMBOL_GPL
-0xf05a52fe asn1_encode_oid vmlinux EXPORT_SYMBOL_GPL
-0x7ad02a41 asn1_encode_tag vmlinux EXPORT_SYMBOL_GPL
-0xa4c00324 asn1_encode_octet_string vmlinux EXPORT_SYMBOL_GPL
-0x8180cede asn1_encode_sequence vmlinux EXPORT_SYMBOL_GPL
-0x91ea8726 asn1_encode_boolean vmlinux EXPORT_SYMBOL_GPL
-0x2d4daef5 find_font vmlinux EXPORT_SYMBOL
-0xd8b61304 get_default_font vmlinux EXPORT_SYMBOL
-0xa01d3df6 font_vga_8x16 vmlinux EXPORT_SYMBOL
-0xd77e9a38 look_up_OID vmlinux EXPORT_SYMBOL_GPL
-0x9775ae2a parse_OID vmlinux EXPORT_SYMBOL_GPL
-0xfc201b66 sprint_oid vmlinux EXPORT_SYMBOL_GPL
-0xc95ac2fb sprint_OID vmlinux EXPORT_SYMBOL_GPL
-0x06bd88b5 ucs2_strnlen vmlinux EXPORT_SYMBOL
-0x702946da ucs2_strlen vmlinux EXPORT_SYMBOL
-0xd1363cc1 ucs2_strsize vmlinux EXPORT_SYMBOL
-0x9d61e994 ucs2_strncmp vmlinux EXPORT_SYMBOL
-0x465e24ff ucs2_utf8size vmlinux EXPORT_SYMBOL
-0x4336fcca ucs2_as_utf8 vmlinux EXPORT_SYMBOL
-0xca682c2f sbitmap_init_node vmlinux EXPORT_SYMBOL_GPL
-0x02727e0b sbitmap_resize vmlinux EXPORT_SYMBOL_GPL
-0x265e747e sbitmap_get vmlinux EXPORT_SYMBOL_GPL
-0x3de20a3a sbitmap_get_shallow vmlinux EXPORT_SYMBOL_GPL
-0x7658f4d4 sbitmap_any_bit_set vmlinux EXPORT_SYMBOL_GPL
-0xfd64d9b1 sbitmap_weight vmlinux EXPORT_SYMBOL_GPL
-0x9f7acf7f sbitmap_show vmlinux EXPORT_SYMBOL_GPL
-0x66e7edc1 sbitmap_bitmap_show vmlinux EXPORT_SYMBOL_GPL
-0xa4243476 sbitmap_queue_init_node vmlinux EXPORT_SYMBOL_GPL
-0xfb7e26de sbitmap_queue_recalculate_wake_batch vmlinux EXPORT_SYMBOL_GPL
-0x02797429 sbitmap_queue_resize vmlinux EXPORT_SYMBOL_GPL
-0xd20a8216 __sbitmap_queue_get vmlinux EXPORT_SYMBOL_GPL
-0xf3c97032 sbitmap_queue_get_shallow vmlinux EXPORT_SYMBOL_GPL
-0xd4680e70 sbitmap_queue_min_shallow_depth vmlinux EXPORT_SYMBOL_GPL
-0x1f3efd99 sbitmap_queue_wake_up vmlinux EXPORT_SYMBOL_GPL
-0x22a0f028 sbitmap_queue_clear vmlinux EXPORT_SYMBOL_GPL
-0xef3a3d1e sbitmap_queue_wake_all vmlinux EXPORT_SYMBOL_GPL
-0xc3ee8499 sbitmap_queue_show vmlinux EXPORT_SYMBOL_GPL
-0x9014bdef sbitmap_add_wait_queue vmlinux EXPORT_SYMBOL_GPL
-0x57351b4d sbitmap_del_wait_queue vmlinux EXPORT_SYMBOL_GPL
-0xdb5c8b6a sbitmap_prepare_to_wait vmlinux EXPORT_SYMBOL_GPL
-0x28391d44 sbitmap_finish_wait vmlinux EXPORT_SYMBOL_GPL
-0xe01a7c54 group_cpus_evenly vmlinux EXPORT_SYMBOL_GPL
-0x739f17eb pldmfw_op_pci_match_record vmlinux EXPORT_SYMBOL
-0x63bc29d5 pldmfw_flash_image vmlinux EXPORT_SYMBOL
-0x20ba4f3e rdmsr_on_cpu vmlinux EXPORT_SYMBOL
-0x5f56663b rdmsrl_on_cpu vmlinux EXPORT_SYMBOL
-0x023d1b90 wrmsr_on_cpu vmlinux EXPORT_SYMBOL
-0x16301b34 wrmsrl_on_cpu vmlinux EXPORT_SYMBOL
-0xf05c32ad rdmsr_on_cpus vmlinux EXPORT_SYMBOL
-0xf4a565fd wrmsr_on_cpus vmlinux EXPORT_SYMBOL
-0xf80be44e rdmsr_safe_on_cpu vmlinux EXPORT_SYMBOL
-0x804af87c wrmsr_safe_on_cpu vmlinux EXPORT_SYMBOL
-0x6851664e wrmsrl_safe_on_cpu vmlinux EXPORT_SYMBOL
-0xa5e55057 rdmsrl_safe_on_cpu vmlinux EXPORT_SYMBOL
-0x3a2d1dfa rdmsr_safe_regs_on_cpu vmlinux EXPORT_SYMBOL
-0xb9e276cf wrmsr_safe_regs_on_cpu vmlinux EXPORT_SYMBOL
-0xb219d56c wbinvd_on_cpu vmlinux EXPORT_SYMBOL
-0x8f2703b7 wbinvd_on_all_cpus vmlinux EXPORT_SYMBOL
-0xf5a5c84c msrs_alloc vmlinux EXPORT_SYMBOL
-0x3441445f msrs_free vmlinux EXPORT_SYMBOL
-0x25db1577 do_trace_write_msr vmlinux EXPORT_SYMBOL
-0xa6f07f59 __tracepoint_write_msr vmlinux EXPORT_SYMBOL
-0xe2e28fc0 __traceiter_write_msr vmlinux EXPORT_SYMBOL
-0x8910ab95 __SCK__tp_func_write_msr vmlinux EXPORT_SYMBOL
-0x7530bb0c __SCT__tp_func_write_msr vmlinux EXPORT_SYMBOL
-0x39e3c030 do_trace_read_msr vmlinux EXPORT_SYMBOL
-0x74e760cc __tracepoint_read_msr vmlinux EXPORT_SYMBOL
-0xe1bee700 __traceiter_read_msr vmlinux EXPORT_SYMBOL
-0xfb4f2bf0 __SCK__tp_func_read_msr vmlinux EXPORT_SYMBOL
-0x9ced41ad __SCT__tp_func_read_msr vmlinux EXPORT_SYMBOL
-0xc6910aa0 do_trace_rdpmc vmlinux EXPORT_SYMBOL
-0xb4aafe5b __tracepoint_rdpmc vmlinux EXPORT_SYMBOL
-0xb02df2d6 __traceiter_rdpmc vmlinux EXPORT_SYMBOL
-0x1c760198 __SCK__tp_func_rdpmc vmlinux EXPORT_SYMBOL
-0xd933f209 __SCT__tp_func_rdpmc vmlinux EXPORT_SYMBOL
-0x4cd5bc5e rdmsr_safe_regs vmlinux EXPORT_SYMBOL
-0xa836ba02 wrmsr_safe_regs vmlinux EXPORT_SYMBOL
-0x74c134b9 __sw_hweight32 vmlinux EXPORT_SYMBOL
-0x9f46ced8 __sw_hweight64 vmlinux EXPORT_SYMBOL
-0x7d628444 memcpy_fromio vmlinux EXPORT_SYMBOL
-0xb9e7429c memcpy_toio vmlinux EXPORT_SYMBOL
-0xa4191c0b memset_io vmlinux EXPORT_SYMBOL
-0x7d829503 pinctrl_dev_get_name vmlinux EXPORT_SYMBOL_GPL
-0x9166dd35 pinctrl_dev_get_devname vmlinux EXPORT_SYMBOL_GPL
-0xbe755fca pinctrl_dev_get_drvdata vmlinux EXPORT_SYMBOL_GPL
-0x47eadc45 pin_get_name vmlinux EXPORT_SYMBOL_GPL
-0xa284d6ea pinctrl_add_gpio_range vmlinux EXPORT_SYMBOL_GPL
-0xf2c43397 pinctrl_add_gpio_ranges vmlinux EXPORT_SYMBOL_GPL
-0x99ce01a8 pinctrl_find_and_add_gpio_range vmlinux EXPORT_SYMBOL_GPL
-0xe9aad498 pinctrl_get_group_pins vmlinux EXPORT_SYMBOL_GPL
-0x2a0bab2a pinctrl_find_gpio_range_from_pin_nolock vmlinux EXPORT_SYMBOL_GPL
-0x3b55826e pinctrl_find_gpio_range_from_pin vmlinux EXPORT_SYMBOL_GPL
-0x093c52f1 pinctrl_remove_gpio_range vmlinux EXPORT_SYMBOL_GPL
-0xfab53ed9 pinctrl_gpio_can_use_line vmlinux EXPORT_SYMBOL_GPL
-0x6d0ae550 pinctrl_gpio_request vmlinux EXPORT_SYMBOL_GPL
-0x28ab4fb9 pinctrl_gpio_free vmlinux EXPORT_SYMBOL_GPL
-0x1bc5eebe pinctrl_gpio_direction_input vmlinux EXPORT_SYMBOL_GPL
-0x1b8822d8 pinctrl_gpio_direction_output vmlinux EXPORT_SYMBOL_GPL
-0x9b92d16e pinctrl_gpio_set_config vmlinux EXPORT_SYMBOL_GPL
-0x77d36d94 pinctrl_get vmlinux EXPORT_SYMBOL_GPL
-0x50288a1b pinctrl_put vmlinux EXPORT_SYMBOL_GPL
-0x459dc9db pinctrl_lookup_state vmlinux EXPORT_SYMBOL_GPL
-0xb51109ad pinctrl_select_state vmlinux EXPORT_SYMBOL_GPL
-0xb6d7fb29 devm_pinctrl_get vmlinux EXPORT_SYMBOL_GPL
-0xfaa4f28f devm_pinctrl_put vmlinux EXPORT_SYMBOL_GPL
-0x7ad1ded1 pinctrl_register_mappings vmlinux EXPORT_SYMBOL_GPL
-0x82226c53 pinctrl_unregister_mappings vmlinux EXPORT_SYMBOL_GPL
-0x374b714e pinctrl_force_sleep vmlinux EXPORT_SYMBOL_GPL
-0x15548a3a pinctrl_force_default vmlinux EXPORT_SYMBOL_GPL
-0x703c4970 pinctrl_select_default_state vmlinux EXPORT_SYMBOL_GPL
-0x7010275f pinctrl_pm_select_default_state vmlinux EXPORT_SYMBOL_GPL
-0x46f8f6cc pinctrl_pm_select_sleep_state vmlinux EXPORT_SYMBOL_GPL
-0xaab20b0c pinctrl_pm_select_idle_state vmlinux EXPORT_SYMBOL_GPL
-0xaa0149cc pinctrl_enable vmlinux EXPORT_SYMBOL_GPL
-0x12a916c3 pinctrl_register vmlinux EXPORT_SYMBOL_GPL
-0x5fdc2b22 pinctrl_register_and_init vmlinux EXPORT_SYMBOL_GPL
-0x0dff8eca pinctrl_unregister vmlinux EXPORT_SYMBOL_GPL
-0x0d35905c devm_pinctrl_register vmlinux EXPORT_SYMBOL_GPL
-0xa3aa03df devm_pinctrl_register_and_init vmlinux EXPORT_SYMBOL_GPL
-0xd7022e4b devm_pinctrl_unregister vmlinux EXPORT_SYMBOL_GPL
-0xd38d6cda pinctrl_utils_reserve_map vmlinux EXPORT_SYMBOL_GPL
-0x6a3747bb pinctrl_utils_add_map_mux vmlinux EXPORT_SYMBOL_GPL
-0x2b20a438 pinctrl_utils_add_map_configs vmlinux EXPORT_SYMBOL_GPL
-0x8e912be8 pinctrl_utils_add_config vmlinux EXPORT_SYMBOL_GPL
-0x863e2004 pinctrl_utils_free_map vmlinux EXPORT_SYMBOL_GPL
-0xea2abbb8 pinconf_generic_dump_config vmlinux EXPORT_SYMBOL_GPL
-0x6786326a intel_get_community vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0x99b0bde6 intel_get_groups_count vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0xa2868312 intel_get_group_name vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0x9adab3a0 intel_get_group_pins vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0x791ea67b intel_get_functions_count vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0xc2865c16 intel_get_function_name vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0xc2e3deb4 intel_get_function_groups vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0x7961e6ae intel_pinctrl_probe_by_hid vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0xdfbfaf9d intel_pinctrl_probe_by_uid vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0x046fc4d5 intel_pinctrl_get_soc_data vmlinux EXPORT_SYMBOL_GPL PINCTRL_INTEL
-0x56c035d0 intel_pinctrl_suspend_noirq vmlinux EXPORT_SYMBOL_GPL
-0xc64d02bb intel_pinctrl_resume_noirq vmlinux EXPORT_SYMBOL_GPL
-0x468ae32d gpio_to_desc vmlinux EXPORT_SYMBOL_GPL
-0x7bb0d9c6 gpiochip_get_desc vmlinux EXPORT_SYMBOL_GPL
-0xf239c3db desc_to_gpio vmlinux EXPORT_SYMBOL_GPL
-0x600e0953 gpiod_to_chip vmlinux EXPORT_SYMBOL_GPL
-0x934ec94f gpiod_get_direction vmlinux EXPORT_SYMBOL_GPL
-0xe26ea1ae gpiochip_line_is_valid vmlinux EXPORT_SYMBOL_GPL
-0x5c3c3315 gpiochip_get_data vmlinux EXPORT_SYMBOL_GPL
-0xf98fe591 gpiochip_get_ngpios vmlinux EXPORT_SYMBOL_GPL
-0x62dae1a5 gpiochip_add_data_with_key vmlinux EXPORT_SYMBOL_GPL
-0xb75cc08f gpiochip_remove vmlinux EXPORT_SYMBOL_GPL
-0xda1c360d gpiochip_find vmlinux EXPORT_SYMBOL_GPL
-0x9376af2f gpio_device_find vmlinux EXPORT_SYMBOL_GPL
-0xd03a606c gpio_device_get vmlinux EXPORT_SYMBOL_GPL
-0x560ca78c gpio_device_put vmlinux EXPORT_SYMBOL_GPL
-0xaf4485ba gpiochip_irqchip_irq_valid vmlinux EXPORT_SYMBOL_GPL
-0x972e31b5 gpiochip_populate_parent_fwspec_twocell vmlinux EXPORT_SYMBOL_GPL
-0x528fbc44 gpiochip_populate_parent_fwspec_fourcell vmlinux EXPORT_SYMBOL_GPL
-0x9a971401 gpiochip_irq_map vmlinux EXPORT_SYMBOL_GPL
-0x980e671d gpiochip_irq_unmap vmlinux EXPORT_SYMBOL_GPL
-0x98fbe67d gpiochip_irq_domain_activate vmlinux EXPORT_SYMBOL_GPL
-0xe7995540 gpiochip_irq_domain_deactivate vmlinux EXPORT_SYMBOL_GPL
-0x6005e336 gpiochip_irq_reqres vmlinux EXPORT_SYMBOL
-0x0a40a988 gpiochip_irq_relres vmlinux EXPORT_SYMBOL
-0x0d601b06 gpiochip_irqchip_add_domain vmlinux EXPORT_SYMBOL_GPL
-0xb45c6738 gpiochip_generic_request vmlinux EXPORT_SYMBOL_GPL
-0x90a91dee gpiochip_generic_free vmlinux EXPORT_SYMBOL_GPL
-0xa6c059bc gpiochip_generic_config vmlinux EXPORT_SYMBOL_GPL
-0xd405f3b2 gpiochip_add_pingroup_range vmlinux EXPORT_SYMBOL_GPL
-0x6ad0d624 gpiochip_add_pin_range vmlinux EXPORT_SYMBOL_GPL
-0xdd01303d gpiochip_remove_pin_ranges vmlinux EXPORT_SYMBOL_GPL
-0x3d7a3507 gpiochip_is_requested vmlinux EXPORT_SYMBOL_GPL
-0xbf7161e1 gpiochip_request_own_desc vmlinux EXPORT_SYMBOL_GPL
-0xd684d18e gpiochip_free_own_desc vmlinux EXPORT_SYMBOL_GPL
-0x7a19ca07 gpiod_direction_input vmlinux EXPORT_SYMBOL_GPL
-0x1b101db1 gpiod_direction_output_raw vmlinux EXPORT_SYMBOL_GPL
-0x1219d3f7 gpiod_direction_output vmlinux EXPORT_SYMBOL_GPL
-0xc7af6966 gpiod_enable_hw_timestamp_ns vmlinux EXPORT_SYMBOL_GPL
-0x14840881 gpiod_disable_hw_timestamp_ns vmlinux EXPORT_SYMBOL_GPL
-0x82eb9b15 gpiod_set_config vmlinux EXPORT_SYMBOL_GPL
-0x3bb35d1a gpiod_set_debounce vmlinux EXPORT_SYMBOL_GPL
-0x52af3af1 gpiod_set_transitory vmlinux EXPORT_SYMBOL_GPL
-0x45801239 gpiod_is_active_low vmlinux EXPORT_SYMBOL_GPL
-0xae5ebe32 gpiod_toggle_active_low vmlinux EXPORT_SYMBOL_GPL
-0x75d2527b gpiod_get_raw_value vmlinux EXPORT_SYMBOL_GPL
-0x92885122 gpiod_get_value vmlinux EXPORT_SYMBOL_GPL
-0xe4854ace gpiod_get_raw_array_value vmlinux EXPORT_SYMBOL_GPL
-0x20c4d78a gpiod_get_array_value vmlinux EXPORT_SYMBOL_GPL
-0xc8cc9bb5 gpiod_set_raw_value vmlinux EXPORT_SYMBOL_GPL
-0x5185bf0c gpiod_set_value vmlinux EXPORT_SYMBOL_GPL
-0xc5767c53 gpiod_set_raw_array_value vmlinux EXPORT_SYMBOL_GPL
-0x97a82795 gpiod_set_array_value vmlinux EXPORT_SYMBOL_GPL
-0xd69251f8 gpiod_cansleep vmlinux EXPORT_SYMBOL_GPL
-0x67c307bd gpiod_set_consumer_name vmlinux EXPORT_SYMBOL_GPL
-0x597321b8 gpiod_to_irq vmlinux EXPORT_SYMBOL_GPL
-0x974256f3 gpiochip_lock_as_irq vmlinux EXPORT_SYMBOL_GPL
-0x70339f34 gpiochip_unlock_as_irq vmlinux EXPORT_SYMBOL_GPL
-0xb84e2a2a gpiochip_disable_irq vmlinux EXPORT_SYMBOL_GPL
-0x6380f50a gpiochip_enable_irq vmlinux EXPORT_SYMBOL_GPL
-0x7d118cd2 gpiochip_line_is_irq vmlinux EXPORT_SYMBOL_GPL
-0x31651c94 gpiochip_reqres_irq vmlinux EXPORT_SYMBOL_GPL
-0x7771ab66 gpiochip_relres_irq vmlinux EXPORT_SYMBOL_GPL
-0x15b5c411 gpiochip_line_is_open_drain vmlinux EXPORT_SYMBOL_GPL
-0xd9c129af gpiochip_line_is_open_source vmlinux EXPORT_SYMBOL_GPL
-0xf1675623 gpiochip_line_is_persistent vmlinux EXPORT_SYMBOL_GPL
-0x0f96e3f2 gpiod_get_raw_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0xd30c8eff gpiod_get_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0x34c58381 gpiod_get_raw_array_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0x6b3b52c5 gpiod_get_array_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0x607e3287 gpiod_set_raw_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0x127f5fcc gpiod_set_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0xd5db8ac5 gpiod_set_raw_array_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0xacf0ce73 gpiod_set_array_value_cansleep vmlinux EXPORT_SYMBOL_GPL
-0x38aa1397 gpiod_add_lookup_table vmlinux EXPORT_SYMBOL_GPL
-0xff81487d gpiod_remove_lookup_table vmlinux EXPORT_SYMBOL_GPL
-0x1fe6e504 gpiod_add_hogs vmlinux EXPORT_SYMBOL_GPL
-0x36898d6f gpiod_remove_hogs vmlinux EXPORT_SYMBOL_GPL
-0xc09cdf4d fwnode_gpiod_get_index vmlinux EXPORT_SYMBOL_GPL
-0xcbceda8f gpiod_count vmlinux EXPORT_SYMBOL_GPL
-0xa3401c73 gpiod_get vmlinux EXPORT_SYMBOL_GPL
-0x410da261 gpiod_get_optional vmlinux EXPORT_SYMBOL_GPL
-0xa5492e2d gpiod_get_index vmlinux EXPORT_SYMBOL_GPL
-0x2b5d344b gpiod_get_index_optional vmlinux EXPORT_SYMBOL_GPL
-0x8a2f29bb gpiod_get_array vmlinux EXPORT_SYMBOL_GPL
-0xd26236da gpiod_get_array_optional vmlinux EXPORT_SYMBOL_GPL
-0x97c4304c gpiod_put vmlinux EXPORT_SYMBOL_GPL
-0x9bc96b7f gpiod_put_array vmlinux EXPORT_SYMBOL_GPL
-0x8d4a9ded devm_gpiod_get vmlinux EXPORT_SYMBOL_GPL
-0x451d8581 devm_gpiod_get_optional vmlinux EXPORT_SYMBOL_GPL
-0x38396775 devm_gpiod_get_index vmlinux EXPORT_SYMBOL_GPL
-0x7cbdb178 devm_fwnode_gpiod_get_index vmlinux EXPORT_SYMBOL_GPL
-0x9995db55 devm_gpiod_get_index_optional vmlinux EXPORT_SYMBOL_GPL
-0xfca3634e devm_gpiod_get_array vmlinux EXPORT_SYMBOL_GPL
-0x24930070 devm_gpiod_get_array_optional vmlinux EXPORT_SYMBOL_GPL
-0xf130c74c devm_gpiod_put vmlinux EXPORT_SYMBOL_GPL
-0xfe3719ea devm_gpiod_unhinge vmlinux EXPORT_SYMBOL_GPL
-0x8d64a11e devm_gpiod_put_array vmlinux EXPORT_SYMBOL_GPL
-0x237b9afb devm_gpio_request vmlinux EXPORT_SYMBOL_GPL
-0x8fbbc9d5 devm_gpio_request_one vmlinux EXPORT_SYMBOL_GPL
-0x0608a8a1 devm_gpiochip_add_data_with_key vmlinux EXPORT_SYMBOL_GPL
-0xfe990052 gpio_free vmlinux EXPORT_SYMBOL_GPL
-0x403f9529 gpio_request_one vmlinux EXPORT_SYMBOL_GPL
-0x47229b5c gpio_request vmlinux EXPORT_SYMBOL_GPL
-0x9ba2bb2b gpio_request_array vmlinux EXPORT_SYMBOL_GPL
-0xb0d1656c gpio_free_array vmlinux EXPORT_SYMBOL_GPL
-0x60dc1d78 acpi_get_and_request_gpiod vmlinux EXPORT_SYMBOL_GPL
-0xc4d5e0e8 acpi_gpio_get_irq_resource vmlinux EXPORT_SYMBOL_GPL
-0xf63f003a acpi_gpio_get_io_resource vmlinux EXPORT_SYMBOL_GPL
-0xb13bfe0b acpi_gpiochip_request_interrupts vmlinux EXPORT_SYMBOL_GPL
-0x5b6e3a13 acpi_gpiochip_free_interrupts vmlinux EXPORT_SYMBOL_GPL
-0x460f01e8 acpi_dev_add_driver_gpios vmlinux EXPORT_SYMBOL_GPL
-0x9b5f4e45 acpi_dev_remove_driver_gpios vmlinux EXPORT_SYMBOL_GPL
-0xe0446834 devm_acpi_dev_add_driver_gpios vmlinux EXPORT_SYMBOL_GPL
-0xc5eb9a31 acpi_dev_gpio_irq_wake_get_by vmlinux EXPORT_SYMBOL_GPL
-0xc6154847 of_pwm_xlate_with_flags vmlinux EXPORT_SYMBOL_GPL
-0xf6a20dcd of_pwm_single_xlate vmlinux EXPORT_SYMBOL_GPL
-0x38293c68 pwm_set_chip_data vmlinux EXPORT_SYMBOL_GPL
-0x78683151 pwm_get_chip_data vmlinux EXPORT_SYMBOL_GPL
-0x6f8c2ce7 pwmchip_add vmlinux EXPORT_SYMBOL_GPL
-0x0e02c54f pwmchip_remove vmlinux EXPORT_SYMBOL_GPL
-0x4ca727e4 devm_pwmchip_add vmlinux EXPORT_SYMBOL_GPL
-0x786ebc6a pwm_request_from_chip vmlinux EXPORT_SYMBOL_GPL
-0xb0f70dd6 pwm_apply_state vmlinux EXPORT_SYMBOL_GPL
-0xd7b8b85e pwm_capture vmlinux EXPORT_SYMBOL_GPL
-0xf622cc75 pwm_adjust_config vmlinux EXPORT_SYMBOL_GPL
-0xaa9c6bc5 pwm_get vmlinux EXPORT_SYMBOL_GPL
-0xdd810317 pwm_put vmlinux EXPORT_SYMBOL_GPL
-0xbe2c46aa devm_pwm_get vmlinux EXPORT_SYMBOL_GPL
-0x7aeafdf2 devm_fwnode_pwm_get vmlinux EXPORT_SYMBOL_GPL
-0x6d7ed6cf pci_bus_read_config_byte vmlinux EXPORT_SYMBOL
-0x88d07b9e pci_bus_read_config_word vmlinux EXPORT_SYMBOL
-0x2c0544cb pci_bus_read_config_dword vmlinux EXPORT_SYMBOL
-0x2caede94 pci_bus_write_config_byte vmlinux EXPORT_SYMBOL
-0xab7d7705 pci_bus_write_config_word vmlinux EXPORT_SYMBOL
-0x77ff2835 pci_bus_write_config_dword vmlinux EXPORT_SYMBOL
-0x3e519b27 pci_generic_config_read vmlinux EXPORT_SYMBOL_GPL
-0x8d0496b5 pci_generic_config_write vmlinux EXPORT_SYMBOL_GPL
-0x38b16eb6 pci_generic_config_read32 vmlinux EXPORT_SYMBOL_GPL
-0x76b5358b pci_generic_config_write32 vmlinux EXPORT_SYMBOL_GPL
-0x26d104d8 pci_bus_set_ops vmlinux EXPORT_SYMBOL
-0x875a9999 pci_user_read_config_byte vmlinux EXPORT_SYMBOL_GPL
-0x6dc26c38 pci_user_read_config_word vmlinux EXPORT_SYMBOL_GPL
-0xe1573706 pci_user_read_config_dword vmlinux EXPORT_SYMBOL_GPL
-0x330b7145 pci_user_write_config_byte vmlinux EXPORT_SYMBOL_GPL
-0xd5bd2617 pci_user_write_config_word vmlinux EXPORT_SYMBOL_GPL
-0x53ff1fb3 pci_user_write_config_dword vmlinux EXPORT_SYMBOL_GPL
-0xcd6104f7 pci_cfg_access_lock vmlinux EXPORT_SYMBOL_GPL
-0xea3693d6 pci_cfg_access_trylock vmlinux EXPORT_SYMBOL_GPL
-0x09819649 pci_cfg_access_unlock vmlinux EXPORT_SYMBOL_GPL
-0x837db109 pcie_capability_read_word vmlinux EXPORT_SYMBOL
-0xb06788e1 pcie_capability_read_dword vmlinux EXPORT_SYMBOL
-0x9879b445 pcie_capability_write_word vmlinux EXPORT_SYMBOL
-0xd6d7ebf9 pcie_capability_write_dword vmlinux EXPORT_SYMBOL
-0xed3661eb pcie_capability_clear_and_set_word_unlocked vmlinux EXPORT_SYMBOL
-0xf2c10200 pcie_capability_clear_and_set_word_locked vmlinux EXPORT_SYMBOL
-0x5b0a0692 pcie_capability_clear_and_set_dword vmlinux EXPORT_SYMBOL
-0xee6a5b75 pci_read_config_byte vmlinux EXPORT_SYMBOL
-0xd992d08d pci_read_config_word vmlinux EXPORT_SYMBOL
-0x9a303672 pci_read_config_dword vmlinux EXPORT_SYMBOL
-0xc5794ced pci_write_config_byte vmlinux EXPORT_SYMBOL
-0xe76a8cdc pci_write_config_word vmlinux EXPORT_SYMBOL
-0xf800737d pci_write_config_dword vmlinux EXPORT_SYMBOL
-0x218e600b pci_add_resource_offset vmlinux EXPORT_SYMBOL
-0x27cdca93 pci_add_resource vmlinux EXPORT_SYMBOL
-0x38a71b7e pci_free_resource_list vmlinux EXPORT_SYMBOL
-0x84c7c1cd pci_bus_resource_n vmlinux EXPORT_SYMBOL_GPL
-0xf5356a4f devm_request_pci_bus_resources vmlinux EXPORT_SYMBOL_GPL
-0xe0a4cfce pci_bus_alloc_resource vmlinux EXPORT_SYMBOL
-0xedd4bb6b pci_bus_add_device vmlinux EXPORT_SYMBOL_GPL
-0x63140f28 pci_bus_add_devices vmlinux EXPORT_SYMBOL
-0xb12505bb pci_walk_bus vmlinux EXPORT_SYMBOL_GPL
-0xb97c03ee pci_walk_bus_locked vmlinux EXPORT_SYMBOL_GPL
-0x55c6850e pci_bus_get vmlinux EXPORT_SYMBOL
-0x8fe4455c pci_bus_put vmlinux EXPORT_SYMBOL
-0x082c3213 pci_root_buses vmlinux EXPORT_SYMBOL
-0x78df6bd7 no_pci_devices vmlinux EXPORT_SYMBOL
-0xe32de506 pci_alloc_host_bridge vmlinux EXPORT_SYMBOL
-0x83d0d4b8 devm_pci_alloc_host_bridge vmlinux EXPORT_SYMBOL
-0x9266857e pci_free_host_bridge vmlinux EXPORT_SYMBOL
-0xe4b064f9 pcie_link_speed vmlinux EXPORT_SYMBOL_GPL
-0xb1fc1782 pci_speed_string vmlinux EXPORT_SYMBOL_GPL
-0x9d527333 pcie_update_link_speed vmlinux EXPORT_SYMBOL_GPL
-0x33203361 pci_add_new_bus vmlinux EXPORT_SYMBOL
-0xc89d7a11 pci_scan_bridge vmlinux EXPORT_SYMBOL
-0x809e1470 pcie_relaxed_ordering_enabled vmlinux EXPORT_SYMBOL
-0x395b416d pci_alloc_dev vmlinux EXPORT_SYMBOL
-0x6a6150c2 pci_bus_read_dev_vendor_id vmlinux EXPORT_SYMBOL
-0x86349844 pci_scan_single_device vmlinux EXPORT_SYMBOL
-0xc49f2f2c pci_scan_slot vmlinux EXPORT_SYMBOL
-0xd83993b5 pcie_bus_configure_settings vmlinux EXPORT_SYMBOL_GPL
-0x800375f9 pci_scan_child_bus vmlinux EXPORT_SYMBOL_GPL
-0x955edf52 pci_create_root_bus vmlinux EXPORT_SYMBOL_GPL
-0x0b42c611 pci_host_probe vmlinux EXPORT_SYMBOL_GPL
-0x5128f317 pci_scan_root_bus_bridge vmlinux EXPORT_SYMBOL
-0x17112dce pci_scan_root_bus vmlinux EXPORT_SYMBOL
-0xd36bdd23 pci_scan_bus vmlinux EXPORT_SYMBOL
-0x33b96e50 pci_rescan_bus vmlinux EXPORT_SYMBOL_GPL
-0xddbeeecc pci_lock_rescan_remove vmlinux EXPORT_SYMBOL_GPL
-0x5790e7a0 pci_unlock_rescan_remove vmlinux EXPORT_SYMBOL_GPL
-0x9b1bf2b1 pci_hp_add_bridge vmlinux EXPORT_SYMBOL_GPL
-0xa8560baa pci_find_host_bridge vmlinux EXPORT_SYMBOL_GPL
-0x8e4997cd pci_set_host_bridge_release vmlinux EXPORT_SYMBOL_GPL
-0xa385336c pcibios_resource_to_bus vmlinux EXPORT_SYMBOL
-0x00a5d0bc pcibios_bus_to_resource vmlinux EXPORT_SYMBOL
-0x73bfbdf4 pci_remove_bus vmlinux EXPORT_SYMBOL
-0x22c8b8d0 pci_stop_and_remove_bus_device vmlinux EXPORT_SYMBOL
-0x6acb1a83 pci_stop_and_remove_bus_device_locked vmlinux EXPORT_SYMBOL_GPL
-0x7468274f pci_stop_root_bus vmlinux EXPORT_SYMBOL_GPL
-0xc57a917a pci_remove_root_bus vmlinux EXPORT_SYMBOL_GPL
-0x1ebf6c2a pci_power_names vmlinux EXPORT_SYMBOL_GPL
-0xdc14eda7 pci_pci_problems vmlinux EXPORT_SYMBOL
-0x75e9c735 pci_ats_disabled vmlinux EXPORT_SYMBOL_GPL
-0x19dc362c pci_bus_max_busnr vmlinux EXPORT_SYMBOL_GPL
-0x65ff6b92 pci_status_get_and_clear_errors vmlinux EXPORT_SYMBOL_GPL
-0xec88cbd0 pci_ioremap_bar vmlinux EXPORT_SYMBOL_GPL
-0xc2ee62fe pci_ioremap_wc_bar vmlinux EXPORT_SYMBOL_GPL
-0x4b03d072 pci_find_next_capability vmlinux EXPORT_SYMBOL_GPL
-0x00e23f29 pci_find_capability vmlinux EXPORT_SYMBOL
-0x72580cb1 pci_bus_find_capability vmlinux EXPORT_SYMBOL
-0x4ad5facb pci_find_next_ext_capability vmlinux EXPORT_SYMBOL_GPL
-0x7c811730 pci_find_ext_capability vmlinux EXPORT_SYMBOL_GPL
-0xc7884048 pci_get_dsn vmlinux EXPORT_SYMBOL_GPL
-0xa02c4a8b pci_find_next_ht_capability vmlinux EXPORT_SYMBOL_GPL
-0xd07c7942 pci_find_ht_capability vmlinux EXPORT_SYMBOL_GPL
-0x07da7a10 pci_find_vsec_capability vmlinux EXPORT_SYMBOL_GPL
-0x584ea277 pci_find_dvsec_capability vmlinux EXPORT_SYMBOL_GPL
-0x85d2d96c pci_find_parent_resource vmlinux EXPORT_SYMBOL
-0x6fdb71de pci_find_resource vmlinux EXPORT_SYMBOL
-0xeb7109f2 pci_platform_power_transition vmlinux EXPORT_SYMBOL_GPL
-0xeeb7da40 pci_set_power_state vmlinux EXPORT_SYMBOL
-0xd3d39bd9 pci_set_power_state_locked vmlinux EXPORT_SYMBOL
-0x45823fc7 pci_save_state vmlinux EXPORT_SYMBOL
-0x12f00123 pci_restore_state vmlinux EXPORT_SYMBOL
-0x3ab0075a pci_store_saved_state vmlinux EXPORT_SYMBOL_GPL
-0xca2f37ae pci_load_saved_state vmlinux EXPORT_SYMBOL_GPL
-0x11ffa9d0 pci_load_and_free_saved_state vmlinux EXPORT_SYMBOL_GPL
-0x35b317e0 pci_reenable_device vmlinux EXPORT_SYMBOL
-0xae95da6e pci_enable_device_io vmlinux EXPORT_SYMBOL
-0x8ef194da pci_enable_device_mem vmlinux EXPORT_SYMBOL
-0x66158cb2 pci_enable_device vmlinux EXPORT_SYMBOL
-0x02bdfd04 pcim_enable_device vmlinux EXPORT_SYMBOL
-0x2664ba2c pcim_pin_device vmlinux EXPORT_SYMBOL
-0x7d043cf7 pci_disable_device vmlinux EXPORT_SYMBOL
-0x51536565 pci_set_pcie_reset_state vmlinux EXPORT_SYMBOL_GPL
-0x5b0fa3ff pci_pme_capable vmlinux EXPORT_SYMBOL
-0x45571707 pci_pme_active vmlinux EXPORT_SYMBOL
-0xb3fdb3e9 pci_enable_wake vmlinux EXPORT_SYMBOL
-0x7c88966a pci_wake_from_d3 vmlinux EXPORT_SYMBOL
-0x7e912c6d pci_prepare_to_sleep vmlinux EXPORT_SYMBOL
-0xade5e0de pci_back_from_sleep vmlinux EXPORT_SYMBOL
-0x59f2ba1e pci_dev_run_wake vmlinux EXPORT_SYMBOL_GPL
-0xa79d3de2 pci_choose_state vmlinux EXPORT_SYMBOL
-0xccd37643 pci_d3cold_enable vmlinux EXPORT_SYMBOL_GPL
-0x1a727e08 pci_d3cold_disable vmlinux EXPORT_SYMBOL_GPL
-0xc23b4235 pci_rebar_get_possible_sizes vmlinux EXPORT_SYMBOL
-0x1e1f2b24 pci_enable_atomic_ops_to_root vmlinux EXPORT_SYMBOL
-0x05ec0ebe pci_common_swizzle vmlinux EXPORT_SYMBOL_GPL
-0xcb20ae7d pci_release_region vmlinux EXPORT_SYMBOL
-0xe9d2707b pci_request_region vmlinux EXPORT_SYMBOL
-0xbfb13873 pci_release_selected_regions vmlinux EXPORT_SYMBOL
-0x1ec3abf8 pci_request_selected_regions vmlinux EXPORT_SYMBOL
-0x93935e49 pci_request_selected_regions_exclusive vmlinux EXPORT_SYMBOL
-0xfeba3c61 pci_release_regions vmlinux EXPORT_SYMBOL
-0x8ee94977 pci_request_regions vmlinux EXPORT_SYMBOL
-0xd693fd31 pci_request_regions_exclusive vmlinux EXPORT_SYMBOL
-0xf05fbf09 pci_pio_to_address vmlinux EXPORT_SYMBOL_GPL
-0x0aaccc92 pci_remap_iospace vmlinux EXPORT_SYMBOL
-0x07f57478 pci_unmap_iospace vmlinux EXPORT_SYMBOL
-0x877b75ec devm_pci_remap_iospace vmlinux EXPORT_SYMBOL
-0x282600c6 devm_pci_remap_cfgspace vmlinux EXPORT_SYMBOL
-0xacfa04af devm_pci_remap_cfg_resource vmlinux EXPORT_SYMBOL
-0x671b0360 pci_set_master vmlinux EXPORT_SYMBOL
-0x327d4064 pci_clear_master vmlinux EXPORT_SYMBOL
-0x721f4d77 pci_set_cacheline_size vmlinux EXPORT_SYMBOL_GPL
-0x87d1b6c7 pci_set_mwi vmlinux EXPORT_SYMBOL
-0x4b0cf9d8 pcim_set_mwi vmlinux EXPORT_SYMBOL
-0xc92b3774 pci_try_set_mwi vmlinux EXPORT_SYMBOL
-0xfc00d802 pci_clear_mwi vmlinux EXPORT_SYMBOL
-0x07e47644 pci_intx vmlinux EXPORT_SYMBOL_GPL
-0xede7e580 pci_check_and_mask_intx vmlinux EXPORT_SYMBOL_GPL
-0x8365fd6a pci_check_and_unmask_intx vmlinux EXPORT_SYMBOL_GPL
-0x898c1984 pci_wait_for_pending_transaction vmlinux EXPORT_SYMBOL
-0x55ae77c7 pcie_flr vmlinux EXPORT_SYMBOL_GPL
-0x40939782 pcie_reset_flr vmlinux EXPORT_SYMBOL_GPL
-0xe18dd8a3 pci_bridge_secondary_bus_reset vmlinux EXPORT_SYMBOL_GPL
-0xea06ef46 pci_dev_lock vmlinux EXPORT_SYMBOL_GPL
-0x5fa3b1ba pci_dev_trylock vmlinux EXPORT_SYMBOL_GPL
-0xe723a3aa pci_dev_unlock vmlinux EXPORT_SYMBOL_GPL
-0x78a6dc9b __pci_reset_function_locked vmlinux EXPORT_SYMBOL_GPL
-0x790e43c9 pci_reset_function vmlinux EXPORT_SYMBOL_GPL
-0xd9cb2dd8 pci_reset_function_locked vmlinux EXPORT_SYMBOL_GPL
-0x27720a83 pci_try_reset_function vmlinux EXPORT_SYMBOL_GPL
-0xf2f3306c pci_probe_reset_slot vmlinux EXPORT_SYMBOL_GPL
-0x6c2cc261 pci_probe_reset_bus vmlinux EXPORT_SYMBOL_GPL
-0x48ad129a pci_reset_bus vmlinux EXPORT_SYMBOL_GPL
-0xf32bd3f3 pcix_get_max_mmrbc vmlinux EXPORT_SYMBOL
-0xc4d47ec7 pcix_get_mmrbc vmlinux EXPORT_SYMBOL
-0xcb2f88f6 pcix_set_mmrbc vmlinux EXPORT_SYMBOL
-0x96697c85 pcie_get_readrq vmlinux EXPORT_SYMBOL
-0x5080b59e pcie_set_readrq vmlinux EXPORT_SYMBOL
-0x85808995 pcie_get_mps vmlinux EXPORT_SYMBOL
-0x3b7873f7 pcie_set_mps vmlinux EXPORT_SYMBOL
-0xcf5aefc4 pcie_bandwidth_available vmlinux EXPORT_SYMBOL
-0xc88e2a98 pcie_get_speed_cap vmlinux EXPORT_SYMBOL
-0x0870ef70 pcie_get_width_cap vmlinux EXPORT_SYMBOL
-0xe685327b pcie_print_link_status vmlinux EXPORT_SYMBOL
-0x3d56865a pci_select_bars vmlinux EXPORT_SYMBOL
-0x55b4197f pci_pr3_present vmlinux EXPORT_SYMBOL_GPL
-0xffe5aff9 pci_device_is_present vmlinux EXPORT_SYMBOL_GPL
-0xc5eaef68 pci_ignore_hotplug vmlinux EXPORT_SYMBOL_GPL
-0x27a742c9 pci_fixup_cardbus vmlinux EXPORT_SYMBOL
-0x367a60f6 pci_add_dynid vmlinux EXPORT_SYMBOL_GPL
-0xf14250df pci_match_id vmlinux EXPORT_SYMBOL
-0x7b076e02 __pci_register_driver vmlinux EXPORT_SYMBOL
-0xef70f46d pci_unregister_driver vmlinux EXPORT_SYMBOL
-0x897c25ce pci_dev_driver vmlinux EXPORT_SYMBOL
-0x642e21bb pci_dev_get vmlinux EXPORT_SYMBOL
-0xaad4207b pci_dev_put vmlinux EXPORT_SYMBOL
-0xc068b3c6 pci_bus_type vmlinux EXPORT_SYMBOL
-0x30fdfa8f pci_find_bus vmlinux EXPORT_SYMBOL
-0xf1ba3bb6 pci_find_next_bus vmlinux EXPORT_SYMBOL
-0xa06823b9 pci_get_slot vmlinux EXPORT_SYMBOL
-0x285a7b2d pci_get_domain_bus_and_slot vmlinux EXPORT_SYMBOL
-0xdae87c2e pci_get_subsys vmlinux EXPORT_SYMBOL
-0x1c489819 pci_get_device vmlinux EXPORT_SYMBOL
-0x10fd0465 pci_get_class vmlinux EXPORT_SYMBOL
-0x7483dc59 pci_dev_present vmlinux EXPORT_SYMBOL
-0x6620db02 pci_enable_rom vmlinux EXPORT_SYMBOL_GPL
-0x67abda3d pci_disable_rom vmlinux EXPORT_SYMBOL_GPL
-0x348f09d9 pci_map_rom vmlinux EXPORT_SYMBOL
-0xa9b60a93 pci_unmap_rom vmlinux EXPORT_SYMBOL
-0x9b83a71c pci_claim_resource vmlinux EXPORT_SYMBOL
-0xcc139f6e pci_assign_resource vmlinux EXPORT_SYMBOL
-0x29f2f5b2 pci_release_resource vmlinux EXPORT_SYMBOL
-0x0ec7e1cb pci_resize_resource vmlinux EXPORT_SYMBOL
-0x8133e85f pci_request_irq vmlinux EXPORT_SYMBOL
-0x5883a3d7 pci_free_irq vmlinux EXPORT_SYMBOL
-0xd7b5859c pci_vpd_alloc vmlinux EXPORT_SYMBOL_GPL
-0x0c88c1c3 pci_vpd_find_id_string vmlinux EXPORT_SYMBOL_GPL
-0x522884da pci_read_vpd vmlinux EXPORT_SYMBOL
-0x2079b416 pci_read_vpd_any vmlinux EXPORT_SYMBOL
-0xd4188c67 pci_write_vpd vmlinux EXPORT_SYMBOL
-0x82540629 pci_write_vpd_any vmlinux EXPORT_SYMBOL
-0xdc43bdc6 pci_vpd_find_ro_info_keyword vmlinux EXPORT_SYMBOL_GPL
-0x7265f2b0 pci_vpd_check_csum vmlinux EXPORT_SYMBOL_GPL
-0x52b1e3c7 pci_flags vmlinux EXPORT_SYMBOL_GPL
-0x14b329b0 pci_setup_cardbus vmlinux EXPORT_SYMBOL
-0x1a815e44 pci_bus_size_bridges vmlinux EXPORT_SYMBOL
-0x5617e027 pci_bus_assign_resources vmlinux EXPORT_SYMBOL
-0xcadc7c89 pci_bus_claim_resources vmlinux EXPORT_SYMBOL
-0xd19e66f7 pci_assign_unassigned_bridge_resources vmlinux EXPORT_SYMBOL_GPL
-0x263a2e43 pci_assign_unassigned_bus_resources vmlinux EXPORT_SYMBOL_GPL
-0x0d635e16 pci_enable_msi vmlinux EXPORT_SYMBOL
-0xac2bb831 pci_disable_msi vmlinux EXPORT_SYMBOL
-0x0b9963dd pci_msix_vec_count vmlinux EXPORT_SYMBOL
-0x40104e11 pci_enable_msix_range vmlinux EXPORT_SYMBOL
-0x4a543a4c pci_msix_can_alloc_dyn vmlinux EXPORT_SYMBOL_GPL
-0xf4fa519c pci_msix_alloc_irq_at vmlinux EXPORT_SYMBOL_GPL
-0x4ea7945c pci_msix_free_irq vmlinux EXPORT_SYMBOL_GPL
-0x37685990 pci_disable_msix vmlinux EXPORT_SYMBOL
-0x2ee780a4 pci_alloc_irq_vectors vmlinux EXPORT_SYMBOL
-0xeeace137 pci_alloc_irq_vectors_affinity vmlinux EXPORT_SYMBOL
-0x59bd3e2a pci_irq_vector vmlinux EXPORT_SYMBOL
-0xc0f9cf14 pci_irq_get_affinity vmlinux EXPORT_SYMBOL
-0x2e720bcd pci_ims_alloc_irq vmlinux EXPORT_SYMBOL_GPL
-0x95ae60ce pci_ims_free_irq vmlinux EXPORT_SYMBOL_GPL
-0x3bf4ac21 pci_free_irq_vectors vmlinux EXPORT_SYMBOL
-0xdb59d737 pci_restore_msi_state vmlinux EXPORT_SYMBOL_GPL
-0x453c8403 pci_msi_enabled vmlinux EXPORT_SYMBOL
-0x210e645a pci_msi_mask_irq vmlinux EXPORT_SYMBOL_GPL
-0x7fe13100 pci_msi_unmask_irq vmlinux EXPORT_SYMBOL_GPL
-0xf2c53d53 pci_write_msi_msg vmlinux EXPORT_SYMBOL_GPL
-0x2034af58 pci_msi_vec_count vmlinux EXPORT_SYMBOL
-0x36f2ed31 msi_desc_to_pci_dev vmlinux EXPORT_SYMBOL
-0x05932e56 pci_msi_create_irq_domain vmlinux EXPORT_SYMBOL_GPL
-0x2287be5c pci_create_ims_domain vmlinux EXPORT_SYMBOL_GPL
-0x7a998b55 pcie_port_find_device vmlinux EXPORT_SYMBOL_GPL
-0xc03e8a97 pci_disable_link_state_locked vmlinux EXPORT_SYMBOL
-0x5b5e8bc5 pci_disable_link_state vmlinux EXPORT_SYMBOL
-0xcd270551 pci_enable_link_state vmlinux EXPORT_SYMBOL
-0x93ea91d6 pci_enable_link_state_locked vmlinux EXPORT_SYMBOL
-0xe36f25e7 pcie_aspm_enabled vmlinux EXPORT_SYMBOL_GPL
-0xb1c8689c pcie_aer_is_native vmlinux EXPORT_SYMBOL_GPL CXL
-0x687c92d6 pci_aer_clear_nonfatal_status vmlinux EXPORT_SYMBOL_GPL
-0x110106c1 cper_severity_to_aer vmlinux EXPORT_SYMBOL_GPL
-0xc592d1e8 pci_print_aer vmlinux EXPORT_SYMBOL_GPL CXL
-0xfa349688 aer_recover_queue vmlinux EXPORT_SYMBOL_GPL
-0x8a74bc7b pci_slots_kset vmlinux EXPORT_SYMBOL_GPL
-0x971d5953 pci_create_slot vmlinux EXPORT_SYMBOL_GPL
-0x82b3c407 pci_destroy_slot vmlinux EXPORT_SYMBOL_GPL
-0x3df719a1 pci_hp_create_module_link vmlinux EXPORT_SYMBOL_GPL
-0x377589e2 pci_hp_remove_module_link vmlinux EXPORT_SYMBOL_GPL
-0xa9f8753a pci_acpi_set_companion_lookup_hook vmlinux EXPORT_SYMBOL_GPL
-0x7e7a47c9 pci_acpi_clear_companion_lookup_hook vmlinux EXPORT_SYMBOL_GPL
-0xc729aa0a pci_fixup_device vmlinux EXPORT_SYMBOL
-0xc6cba79a __pci_hp_register vmlinux EXPORT_SYMBOL_GPL
-0x60b51cb2 __pci_hp_initialize vmlinux EXPORT_SYMBOL_GPL
-0xbd5f5f88 pci_hp_add vmlinux EXPORT_SYMBOL_GPL
-0x9c1fed54 pci_hp_deregister vmlinux EXPORT_SYMBOL_GPL
-0x984857de pci_hp_del vmlinux EXPORT_SYMBOL_GPL
-0xf4dbcb12 pci_hp_destroy vmlinux EXPORT_SYMBOL_GPL
-0x2dc1e1f0 acpi_get_hp_hw_control_from_firmware vmlinux EXPORT_SYMBOL
-0x97fa16cb acpi_pci_check_ejectable vmlinux EXPORT_SYMBOL_GPL
-0xf0696401 acpi_pci_detect_ejectable vmlinux EXPORT_SYMBOL_GPL
-0x89d31abe acpiphp_register_attention vmlinux EXPORT_SYMBOL_GPL
-0xc6044cb4 acpiphp_unregister_attention vmlinux EXPORT_SYMBOL_GPL
-0xaa0efb4a pci_ats_supported vmlinux EXPORT_SYMBOL_GPL
-0xc39af3fc pci_enable_ats vmlinux EXPORT_SYMBOL_GPL
-0xc7668fc1 pci_disable_ats vmlinux EXPORT_SYMBOL_GPL
-0x318e8a00 pci_disable_pri vmlinux EXPORT_SYMBOL_GPL
-0xdeeb8897 pci_pri_supported vmlinux EXPORT_SYMBOL_GPL
-0xd481f2dc pci_enable_pasid vmlinux EXPORT_SYMBOL_GPL
-0x5812b58b pci_disable_pasid vmlinux EXPORT_SYMBOL_GPL
-0x8c354b41 pci_pasid_features vmlinux EXPORT_SYMBOL_GPL
-0xd6393d71 pci_max_pasids vmlinux EXPORT_SYMBOL_GPL
-0xf4e75827 pci_iov_virtfn_devfn vmlinux EXPORT_SYMBOL_GPL
-0xf49389d2 pci_iov_vf_id vmlinux EXPORT_SYMBOL_GPL
-0x2e2442fe pci_iov_get_pf_drvdata vmlinux EXPORT_SYMBOL_GPL
-0x4adec108 pci_enable_sriov vmlinux EXPORT_SYMBOL_GPL
-0x817abc93 pci_disable_sriov vmlinux EXPORT_SYMBOL_GPL
-0xe68dc2d7 pci_num_vf vmlinux EXPORT_SYMBOL_GPL
-0x7c8a842d pci_vfs_assigned vmlinux EXPORT_SYMBOL_GPL
-0xbc7bb0bd pci_sriov_set_totalvfs vmlinux EXPORT_SYMBOL_GPL
-0x14466b2b pci_sriov_get_totalvfs vmlinux EXPORT_SYMBOL_GPL
-0x50940063 pci_sriov_configure_simple vmlinux EXPORT_SYMBOL_GPL
-0xffd8a95a vga_default_device vmlinux EXPORT_SYMBOL_GPL
-0xa5c32b9c vga_remove_vgacon vmlinux EXPORT_SYMBOL
-0xa9b25c2e vga_get vmlinux EXPORT_SYMBOL
-0xb73d75b6 vga_put vmlinux EXPORT_SYMBOL
-0x67ce82f7 vga_set_legacy_decoding vmlinux EXPORT_SYMBOL
-0xa492be99 vga_client_register vmlinux EXPORT_SYMBOL
-0x730a37ff pci_doe vmlinux EXPORT_SYMBOL_GPL
-0x6420d168 pci_find_doe_mailbox vmlinux EXPORT_SYMBOL_GPL
-0x4fe20ec7 devm_aperture_acquire_for_platform_device vmlinux EXPORT_SYMBOL
-0xee0118df aperture_remove_conflicting_devices vmlinux EXPORT_SYMBOL
-0xba5330ab __aperture_remove_legacy_vga_devices vmlinux EXPORT_SYMBOL
-0xee80bb40 aperture_remove_conflicting_pci_devices vmlinux EXPORT_SYMBOL
-0x46bd5d6e video_get_options vmlinux EXPORT_SYMBOL
-0xea7daa08 __video_get_options vmlinux EXPORT_SYMBOL
-0xd642f3f6 video_firmware_drivers_only vmlinux EXPORT_SYMBOL
-0x4eb2b066 hdmi_avi_infoframe_init vmlinux EXPORT_SYMBOL
-0x4ae90d8e hdmi_avi_infoframe_check vmlinux EXPORT_SYMBOL
-0x23dc7f6c hdmi_avi_infoframe_pack_only vmlinux EXPORT_SYMBOL
-0x8dafaf22 hdmi_avi_infoframe_pack vmlinux EXPORT_SYMBOL
-0x2d4c773a hdmi_spd_infoframe_init vmlinux EXPORT_SYMBOL
-0xfcd1819a hdmi_spd_infoframe_check vmlinux EXPORT_SYMBOL
-0xd2e2a9d0 hdmi_spd_infoframe_pack_only vmlinux EXPORT_SYMBOL
-0x0fab1ab0 hdmi_spd_infoframe_pack vmlinux EXPORT_SYMBOL
-0xb14ab1ef hdmi_audio_infoframe_init vmlinux EXPORT_SYMBOL
-0xc839afed hdmi_audio_infoframe_check vmlinux EXPORT_SYMBOL
-0x04863e28 hdmi_audio_infoframe_pack_only vmlinux EXPORT_SYMBOL
-0x29e1e204 hdmi_audio_infoframe_pack vmlinux EXPORT_SYMBOL
-0x7e0b255f hdmi_audio_infoframe_pack_for_dp vmlinux EXPORT_SYMBOL
-0x6749d53f hdmi_vendor_infoframe_init vmlinux EXPORT_SYMBOL
-0x275f3d49 hdmi_vendor_infoframe_check vmlinux EXPORT_SYMBOL
-0x9258c776 hdmi_vendor_infoframe_pack_only vmlinux EXPORT_SYMBOL
-0x526eef2c hdmi_vendor_infoframe_pack vmlinux EXPORT_SYMBOL
-0x0ea593f6 hdmi_drm_infoframe_init vmlinux EXPORT_SYMBOL
-0xa0ebd437 hdmi_drm_infoframe_check vmlinux EXPORT_SYMBOL
-0x5a290250 hdmi_drm_infoframe_pack_only vmlinux EXPORT_SYMBOL
-0xe4bc2c2f hdmi_drm_infoframe_pack vmlinux EXPORT_SYMBOL
-0x717d1f96 hdmi_infoframe_check vmlinux EXPORT_SYMBOL
-0x333bfca1 hdmi_infoframe_pack_only vmlinux EXPORT_SYMBOL
-0xa6457c89 hdmi_infoframe_pack vmlinux EXPORT_SYMBOL
-0x7730839b hdmi_infoframe_log vmlinux EXPORT_SYMBOL
-0xb9478d90 hdmi_drm_infoframe_unpack_only vmlinux EXPORT_SYMBOL
-0xdb1edee6 hdmi_infoframe_unpack vmlinux EXPORT_SYMBOL
-0x23899f86 dummy_con vmlinux EXPORT_SYMBOL_GPL
-0xb255697a vga_con vmlinux EXPORT_SYMBOL
-0x950ee7d1 fb_find_logo vmlinux EXPORT_SYMBOL_GPL
-0x90ad45ec backlight_device_set_brightness vmlinux EXPORT_SYMBOL
-0xffcae579 backlight_force_update vmlinux EXPORT_SYMBOL
-0x3758c7ce backlight_device_register vmlinux EXPORT_SYMBOL
-0x20048ce9 backlight_device_get_by_type vmlinux EXPORT_SYMBOL
-0x1455f8ad backlight_device_get_by_name vmlinux EXPORT_SYMBOL
-0x13590b9b backlight_device_unregister vmlinux EXPORT_SYMBOL
-0xdc512134 backlight_register_notifier vmlinux EXPORT_SYMBOL
-0x9939eba0 backlight_unregister_notifier vmlinux EXPORT_SYMBOL
-0xdb7d4057 devm_backlight_device_register vmlinux EXPORT_SYMBOL
-0xe92611a2 devm_backlight_device_unregister vmlinux EXPORT_SYMBOL
-0x395a7653 devm_of_find_backlight vmlinux EXPORT_SYMBOL
-0x80d68d3e fb_register_client vmlinux EXPORT_SYMBOL
-0xb12cbacb fb_unregister_client vmlinux EXPORT_SYMBOL
-0x9fce80db fb_notifier_call_chain vmlinux EXPORT_SYMBOL_GPL
-0xd2cf33fc framebuffer_alloc vmlinux EXPORT_SYMBOL
-0x51ba6e37 framebuffer_release vmlinux EXPORT_SYMBOL
-0x6513a3fa fb_get_color_depth vmlinux EXPORT_SYMBOL
-0x61ea189b fb_pad_aligned_buffer vmlinux EXPORT_SYMBOL
-0x42f1b900 fb_pad_unaligned_buffer vmlinux EXPORT_SYMBOL
-0xc6b5772d fb_get_buffer_offset vmlinux EXPORT_SYMBOL
-0x391afbe8 fb_prepare_logo vmlinux EXPORT_SYMBOL
-0xa4e549fc fb_show_logo vmlinux EXPORT_SYMBOL
-0xd31f8adc fb_pan_display vmlinux EXPORT_SYMBOL
-0x3c998994 fb_set_var vmlinux EXPORT_SYMBOL
-0x3907a8a8 fb_blank vmlinux EXPORT_SYMBOL
-0x3dd7362a register_framebuffer vmlinux EXPORT_SYMBOL
-0xaeac86c1 unregister_framebuffer vmlinux EXPORT_SYMBOL
-0x1bb19cbb fb_set_suspend vmlinux EXPORT_SYMBOL
-0xae1d2c5e fb_modesetting_disabled vmlinux EXPORT_SYMBOL
-0x07a890c8 fb_alloc_cmap vmlinux EXPORT_SYMBOL
-0x098b71c6 fb_dealloc_cmap vmlinux EXPORT_SYMBOL
-0x1dd571e6 fb_copy_cmap vmlinux EXPORT_SYMBOL
-0xc0212320 fb_set_cmap vmlinux EXPORT_SYMBOL
-0xff6878cf fb_default_cmap vmlinux EXPORT_SYMBOL
-0xf195c682 fb_invert_cmaps vmlinux EXPORT_SYMBOL
-0xc9561772 fb_destroy_modelist vmlinux EXPORT_SYMBOL_GPL
-0xfdcc8a0e fb_find_best_display vmlinux EXPORT_SYMBOL
-0x12f6f69c fb_videomode_to_var vmlinux EXPORT_SYMBOL
-0x96c17136 fb_var_to_videomode vmlinux EXPORT_SYMBOL
-0xd406d266 fb_mode_is_equal vmlinux EXPORT_SYMBOL
-0xee58e970 fb_add_videomode vmlinux EXPORT_SYMBOL
-0xdef7c893 fb_match_mode vmlinux EXPORT_SYMBOL
-0xce4cdb8e fb_find_best_mode vmlinux EXPORT_SYMBOL
-0x20d65e40 fb_find_nearest_mode vmlinux EXPORT_SYMBOL
-0x50a4698c fb_videomode_to_modelist vmlinux EXPORT_SYMBOL
-0xac2580d9 fb_find_mode vmlinux EXPORT_SYMBOL
-0xf93fd09c fb_find_mode_cvt vmlinux EXPORT_SYMBOL
-0xab781570 fb_get_options vmlinux EXPORT_SYMBOL
-0x4f1eb2e2 fb_io_read vmlinux EXPORT_SYMBOL
-0xf6ea84a1 fb_io_write vmlinux EXPORT_SYMBOL
-0xe4a6ad07 fb_firmware_edid vmlinux EXPORT_SYMBOL
-0x4351577a fb_parse_edid vmlinux EXPORT_SYMBOL
-0x0397edd5 fb_edid_to_monspecs vmlinux EXPORT_SYMBOL
-0x232df475 fb_get_mode vmlinux EXPORT_SYMBOL
-0x7a11caa6 fb_validate_mode vmlinux EXPORT_SYMBOL
-0xc07b0863 fb_destroy_modedb vmlinux EXPORT_SYMBOL
-0xd243413c fb_deferred_io_fsync vmlinux EXPORT_SYMBOL_GPL
-0xcd7fb5e5 fb_deferred_io_mmap vmlinux EXPORT_SYMBOL_GPL
-0x69856e7d fb_deferred_io_init vmlinux EXPORT_SYMBOL_GPL
-0x99c13920 fb_deferred_io_open vmlinux EXPORT_SYMBOL_GPL
-0x89c5633e fb_deferred_io_release vmlinux EXPORT_SYMBOL_GPL
-0x8e2c98a7 fb_deferred_io_cleanup vmlinux EXPORT_SYMBOL_GPL
-0xbdce11e1 fbcon_update_vcs vmlinux EXPORT_SYMBOL
-0x6a784b8a fbcon_modechange_possible vmlinux EXPORT_SYMBOL_GPL
-0x1e164e3b cfb_fillrect vmlinux EXPORT_SYMBOL
-0x9528efd2 cfb_copyarea vmlinux EXPORT_SYMBOL
-0xcb2af3d3 cfb_imageblit vmlinux EXPORT_SYMBOL
-0xa7e2e630 sys_fillrect vmlinux EXPORT_SYMBOL
-0x2cdc47d9 sys_copyarea vmlinux EXPORT_SYMBOL
-0x65a61e1f sys_imageblit vmlinux EXPORT_SYMBOL
-0xeb8aacf4 fb_sys_read vmlinux EXPORT_SYMBOL_GPL
-0x2db7413c fb_sys_write vmlinux EXPORT_SYMBOL_GPL
-0xa89a1cf1 ipmi_dmi_get_slave_addr vmlinux EXPORT_SYMBOL
-0xff05aedb ipmi_platform_add vmlinux EXPORT_SYMBOL
-0xa6af1390 acpi_table_parse_cedt vmlinux EXPORT_SYMBOL_GPL ACPI
-0xfe9ebbbb acpi_osi_is_win8 vmlinux EXPORT_SYMBOL
-0xed00c4fb acpi_os_printf vmlinux EXPORT_SYMBOL
-0x8353dfff acpi_os_get_iomem vmlinux EXPORT_SYMBOL_GPL
-0x603d0d51 acpi_os_map_iomem vmlinux EXPORT_SYMBOL_GPL
-0xcfd30d71 acpi_os_map_memory vmlinux EXPORT_SYMBOL_GPL
-0x6b3ae022 acpi_os_unmap_iomem vmlinux EXPORT_SYMBOL_GPL
-0x34331f04 acpi_os_unmap_memory vmlinux EXPORT_SYMBOL_GPL
-0x61073e4a acpi_os_map_generic_address vmlinux EXPORT_SYMBOL
-0xed55f929 acpi_os_unmap_generic_address vmlinux EXPORT_SYMBOL
-0xb654ef65 acpi_os_read_port vmlinux EXPORT_SYMBOL
-0xbe49252c acpi_os_write_port vmlinux EXPORT_SYMBOL
-0x72438d5b acpi_register_debugger vmlinux EXPORT_SYMBOL
-0xbb1bac24 acpi_unregister_debugger vmlinux EXPORT_SYMBOL
-0xd70f62b6 acpi_os_execute vmlinux EXPORT_SYMBOL
-0x27810361 acpi_os_wait_events_complete vmlinux EXPORT_SYMBOL
-0xdf3da228 acpi_hotplug_schedule vmlinux EXPORT_SYMBOL_GPL
-0xfdcb4ed3 acpi_os_get_line vmlinux EXPORT_SYMBOL
-0xeab6f4c4 acpi_check_resource_conflict vmlinux EXPORT_SYMBOL
-0x3ada9e06 acpi_check_region vmlinux EXPORT_SYMBOL
-0xf4b754fd acpi_resources_are_enforced vmlinux EXPORT_SYMBOL
-0x5f93525c acpi_extract_package vmlinux EXPORT_SYMBOL
-0x735e6a81 acpi_evaluate_integer vmlinux EXPORT_SYMBOL
-0x6f5ab52f acpi_get_local_address vmlinux EXPORT_SYMBOL
-0x89e1ec9d acpi_get_subsystem_id vmlinux EXPORT_SYMBOL_GPL
-0x3ad7a5d5 acpi_evaluate_reference vmlinux EXPORT_SYMBOL
-0x1d1abdf0 acpi_get_physical_device_location vmlinux EXPORT_SYMBOL
-0xc42dcb99 acpi_evaluate_ost vmlinux EXPORT_SYMBOL
-0xd8df08ac acpi_handle_printk vmlinux EXPORT_SYMBOL
-0x39b12223 __acpi_handle_debug vmlinux EXPORT_SYMBOL
-0x426452a3 acpi_evaluation_failure_warn vmlinux EXPORT_SYMBOL_GPL
-0x509b64ea acpi_has_method vmlinux EXPORT_SYMBOL
-0xb4043948 acpi_execute_simple_method vmlinux EXPORT_SYMBOL
-0x4b6df007 acpi_evaluate_reg vmlinux EXPORT_SYMBOL
-0xae5a04bb acpi_evaluate_dsm vmlinux EXPORT_SYMBOL
-0xdd18a993 acpi_check_dsm vmlinux EXPORT_SYMBOL
-0xf2d7cfd8 acpi_dev_hid_uid_match vmlinux EXPORT_SYMBOL
-0xc60eff80 acpi_dev_uid_to_integer vmlinux EXPORT_SYMBOL
-0x141271bf acpi_dev_found vmlinux EXPORT_SYMBOL
-0xb4577003 acpi_dev_present vmlinux EXPORT_SYMBOL
-0xe6c56b06 acpi_dev_get_next_match_dev vmlinux EXPORT_SYMBOL
-0xb9aeab79 acpi_dev_get_first_match_dev vmlinux EXPORT_SYMBOL
-0x5aa70984 acpi_reduced_hardware vmlinux EXPORT_SYMBOL_GPL
-0x32e6f1a0 acpi_video_backlight_string vmlinux EXPORT_SYMBOL
-0x2234ca51 acpi_match_platform_list vmlinux EXPORT_SYMBOL
-0x7b6f9536 acpi_register_wakeup_handler vmlinux EXPORT_SYMBOL_GPL
-0x8a45a555 acpi_unregister_wakeup_handler vmlinux EXPORT_SYMBOL_GPL
-0xec788566 acpi_target_system_state vmlinux EXPORT_SYMBOL_GPL
-0x6b11fdf2 acpi_device_uevent_modalias vmlinux EXPORT_SYMBOL_GPL
-0x161f1501 acpi_device_modalias vmlinux EXPORT_SYMBOL_GPL
-0xeb16caf6 acpi_device_set_power vmlinux EXPORT_SYMBOL
-0xcb733bf2 acpi_bus_set_power vmlinux EXPORT_SYMBOL
-0x42e334ee acpi_device_fix_up_power vmlinux EXPORT_SYMBOL_GPL
-0xc5ef4a0a acpi_device_fix_up_power_extended vmlinux EXPORT_SYMBOL_GPL
-0x3466a117 acpi_device_fix_up_power_children vmlinux EXPORT_SYMBOL_GPL
-0xad40da53 acpi_device_update_power vmlinux EXPORT_SYMBOL_GPL
-0xfc3b4246 acpi_bus_update_power vmlinux EXPORT_SYMBOL_GPL
-0xaae8ab0e acpi_bus_power_manageable vmlinux EXPORT_SYMBOL
-0x902a28a0 acpi_pm_wakeup_event vmlinux EXPORT_SYMBOL_GPL
-0x8b989cf9 acpi_bus_can_wakeup vmlinux EXPORT_SYMBOL
-0x6f32e4e5 acpi_pm_device_sleep_state vmlinux EXPORT_SYMBOL
-0xcd7db065 acpi_pm_set_device_wakeup vmlinux EXPORT_SYMBOL_GPL
-0x222814d6 acpi_dev_suspend vmlinux EXPORT_SYMBOL_GPL
-0x25165f7e acpi_dev_resume vmlinux EXPORT_SYMBOL_GPL
-0x1d4be611 acpi_subsys_runtime_suspend vmlinux EXPORT_SYMBOL_GPL
-0x4012642a acpi_subsys_runtime_resume vmlinux EXPORT_SYMBOL_GPL
-0x04977509 acpi_subsys_prepare vmlinux EXPORT_SYMBOL_GPL
-0xbcac9bc9 acpi_subsys_complete vmlinux EXPORT_SYMBOL_GPL
-0xe111640d acpi_subsys_suspend vmlinux EXPORT_SYMBOL_GPL
-0x2e092613 acpi_subsys_suspend_late vmlinux EXPORT_SYMBOL_GPL
-0x826f0c37 acpi_subsys_suspend_noirq vmlinux EXPORT_SYMBOL_GPL
-0x668a1232 acpi_subsys_freeze vmlinux EXPORT_SYMBOL_GPL
-0x11310e19 acpi_subsys_restore_early vmlinux EXPORT_SYMBOL_GPL
-0x7242550d acpi_subsys_poweroff vmlinux EXPORT_SYMBOL_GPL
-0xdec02d75 acpi_dev_pm_attach vmlinux EXPORT_SYMBOL_GPL
-0xddeace63 acpi_storage_d3 vmlinux EXPORT_SYMBOL_GPL
-0x7a52a39d acpi_dev_state_d0 vmlinux EXPORT_SYMBOL_GPL
-0x77456e0a acpi_root_dir vmlinux EXPORT_SYMBOL
-0xf04429b4 acpi_bus_get_status_handle vmlinux EXPORT_SYMBOL_GPL
-0x6b858955 acpi_bus_get_status vmlinux EXPORT_SYMBOL
-0x271cba95 acpi_bus_private_data_handler vmlinux EXPORT_SYMBOL
-0xe6f83837 acpi_bus_attach_private_data vmlinux EXPORT_SYMBOL_GPL
-0x6c389761 acpi_bus_get_private_data vmlinux EXPORT_SYMBOL_GPL
-0x4a420d09 acpi_bus_detach_private_data vmlinux EXPORT_SYMBOL_GPL
-0x0b26b8c8 acpi_run_osc vmlinux EXPORT_SYMBOL
-0x16516798 osc_pc_lpi_support_confirmed vmlinux EXPORT_SYMBOL_GPL
-0x7f9b1879 osc_cpc_flexible_adr_space_confirmed vmlinux EXPORT_SYMBOL_GPL
-0x7129a6f4 osc_sb_native_usb4_support_confirmed vmlinux EXPORT_SYMBOL_GPL
-0xd7269c64 osc_sb_native_usb4_control vmlinux EXPORT_SYMBOL_GPL
-0xdef75aba acpi_dev_install_notify_handler vmlinux EXPORT_SYMBOL_GPL
-0x6bc02033 acpi_dev_remove_notify_handler vmlinux EXPORT_SYMBOL_GPL
-0x19046b3e acpi_get_first_physical_node vmlinux EXPORT_SYMBOL_GPL
-0x4fbbc309 acpi_set_modalias vmlinux EXPORT_SYMBOL_GPL
-0x6f0037b8 acpi_match_acpi_device vmlinux EXPORT_SYMBOL_GPL
-0xc4e0f2fa acpi_match_device vmlinux EXPORT_SYMBOL_GPL
-0x466da96a acpi_device_get_match_data vmlinux EXPORT_SYMBOL_GPL
-0xdadb1eec acpi_match_device_ids vmlinux EXPORT_SYMBOL
-0x95f5079b acpi_driver_match_device vmlinux EXPORT_SYMBOL_GPL
-0x6ac20f85 acpi_bus_register_driver vmlinux EXPORT_SYMBOL
-0xb533d5ea acpi_bus_unregister_driver vmlinux EXPORT_SYMBOL
-0x93d298ff acpi_bus_for_each_dev vmlinux EXPORT_SYMBOL_GPL
-0xdc1b982c acpi_dev_for_each_child vmlinux EXPORT_SYMBOL_GPL
-0x8fb9ea6d acpi_kobj vmlinux EXPORT_SYMBOL_GPL
-0x67b39768 register_acpi_bus_type vmlinux EXPORT_SYMBOL_GPL
-0xe1eedcda unregister_acpi_bus_type vmlinux EXPORT_SYMBOL_GPL
-0xee875e16 acpi_find_child_device vmlinux EXPORT_SYMBOL_GPL
-0xeae4a7e7 acpi_find_child_by_adr vmlinux EXPORT_SYMBOL_GPL
-0x81c40853 acpi_bind_one vmlinux EXPORT_SYMBOL_GPL
-0x9c621bd2 acpi_unbind_one vmlinux EXPORT_SYMBOL_GPL
-0x4828e77b acpi_scan_lock_acquire vmlinux EXPORT_SYMBOL_GPL
-0x400a024b acpi_scan_lock_release vmlinux EXPORT_SYMBOL_GPL
-0x235bca56 acpi_initialize_hp_context vmlinux EXPORT_SYMBOL_GPL
-0x9db9d88e acpi_bus_trim vmlinux EXPORT_SYMBOL_GPL
-0x0dd0060e acpi_fetch_acpi_dev vmlinux EXPORT_SYMBOL_GPL
-0x0bde6190 acpi_get_acpi_dev vmlinux EXPORT_SYMBOL_GPL
-0x89e340cf acpi_bus_get_ejd vmlinux EXPORT_SYMBOL_GPL
-0x2f384db3 acpi_is_video_device vmlinux EXPORT_SYMBOL
-0x31b0f3c1 acpi_device_hid vmlinux EXPORT_SYMBOL
-0xfb55dc50 acpi_dma_configure_id vmlinux EXPORT_SYMBOL_GPL
-0x6a448e6a acpi_dev_clear_dependencies vmlinux EXPORT_SYMBOL_GPL
-0x1674ffe8 acpi_dev_ready_for_enumeration vmlinux EXPORT_SYMBOL_GPL
-0x05ca8067 acpi_dev_get_next_consumer_dev vmlinux EXPORT_SYMBOL_GPL
-0x49b163b8 acpi_bus_scan vmlinux EXPORT_SYMBOL
-0x167d7113 acpi_bus_register_early_device vmlinux EXPORT_SYMBOL_GPL
-0x564f7608 acpi_reconfig_notifier_register vmlinux EXPORT_SYMBOL
-0xe07e5f44 acpi_reconfig_notifier_unregister vmlinux EXPORT_SYMBOL
-0x52213722 acpi_dev_resource_memory vmlinux EXPORT_SYMBOL_GPL
-0x71207451 acpi_dev_resource_io vmlinux EXPORT_SYMBOL_GPL
-0xd3901d33 acpi_dev_resource_address_space vmlinux EXPORT_SYMBOL_GPL
-0x193282ae acpi_dev_resource_ext_address_space vmlinux EXPORT_SYMBOL_GPL
-0x6e914514 acpi_dev_irq_flags vmlinux EXPORT_SYMBOL_GPL
-0xd09911a6 acpi_dev_get_irq_type vmlinux EXPORT_SYMBOL_GPL
-0x13b9e193 acpi_dev_resource_interrupt vmlinux EXPORT_SYMBOL_GPL
-0xdc6699cb acpi_dev_free_resource_list vmlinux EXPORT_SYMBOL_GPL
-0x7f72e077 acpi_dev_get_resources vmlinux EXPORT_SYMBOL_GPL
-0x6b285188 acpi_dev_get_dma_resources vmlinux EXPORT_SYMBOL_GPL
-0xe3944740 acpi_dev_get_memory_resources vmlinux EXPORT_SYMBOL_GPL
-0x4c5f348e acpi_dev_filter_resource_type vmlinux EXPORT_SYMBOL_GPL
-0xc6ac2d30 processors vmlinux EXPORT_SYMBOL
-0xc2a3e570 errata vmlinux EXPORT_SYMBOL_GPL
-0x7a655f68 acpi_processor_claim_cst_control vmlinux EXPORT_SYMBOL_GPL
-0xb6c5e614 acpi_processor_evaluate_cst vmlinux EXPORT_SYMBOL_GPL
-0x99430ba2 acpi_get_phys_id vmlinux EXPORT_SYMBOL_GPL
-0x86700220 acpi_get_cpuid vmlinux EXPORT_SYMBOL_GPL
-0x1a1fdd88 first_ec vmlinux EXPORT_SYMBOL
-0xfc4152fc ec_read vmlinux EXPORT_SYMBOL
-0xc708f1fe ec_write vmlinux EXPORT_SYMBOL
-0xaa00fdc0 ec_transaction vmlinux EXPORT_SYMBOL
-0x45081703 ec_get_handle vmlinux EXPORT_SYMBOL
-0x6ee30d7e acpi_ec_add_query_handler vmlinux EXPORT_SYMBOL_GPL
-0xe8440c90 acpi_ec_remove_query_handler vmlinux EXPORT_SYMBOL_GPL
-0x6bdef35c acpi_ec_mark_gpe_for_wake vmlinux EXPORT_SYMBOL_GPL
-0xc4d3df55 is_dock_device vmlinux EXPORT_SYMBOL_GPL
-0x843d70ef acpi_is_root_bridge vmlinux EXPORT_SYMBOL_GPL
-0xd335f5f7 acpi_pci_find_root vmlinux EXPORT_SYMBOL_GPL
-0x9e614d7c acpi_get_pci_dev vmlinux EXPORT_SYMBOL_GPL
-0x7fbd6cdf acpi_create_platform_device vmlinux EXPORT_SYMBOL_GPL
-0x60686e17 acpi_is_pnp_device vmlinux EXPORT_SYMBOL_GPL
-0x7df9f5a7 acpi_notifier_call_chain vmlinux EXPORT_SYMBOL
-0x973fa82e register_acpi_notifier vmlinux EXPORT_SYMBOL
-0x7023bea8 unregister_acpi_notifier vmlinux EXPORT_SYMBOL
-0x74754435 acpi_bus_generate_netlink_event vmlinux EXPORT_SYMBOL
-0x3f19d6c0 acpi_dev_get_property vmlinux EXPORT_SYMBOL_GPL
-0x5439cbc2 __acpi_node_get_property_reference vmlinux EXPORT_SYMBOL_GPL
-0x5b420cf6 acpi_device_fwnode_ops vmlinux EXPORT_SYMBOL_GPL
-0x3d78e8f2 acpi_data_fwnode_ops vmlinux EXPORT_SYMBOL_GPL
-0x6acfb21e is_acpi_device_node vmlinux EXPORT_SYMBOL
-0xf378b093 is_acpi_data_node vmlinux EXPORT_SYMBOL
-0x46c61de3 acpi_install_cmos_rtc_space_handler vmlinux EXPORT_SYMBOL_GPL
-0x3a9e8610 acpi_remove_cmos_rtc_space_handler vmlinux EXPORT_SYMBOL_GPL
-0xc8e96f65 acpi_quirk_skip_serdev_enumeration vmlinux EXPORT_SYMBOL_GPL
-0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery vmlinux EXPORT_SYMBOL_GPL
-0xd6ed25f0 acpi_register_lps0_dev vmlinux EXPORT_SYMBOL_GPL
-0xd4670eb8 acpi_unregister_lps0_dev vmlinux EXPORT_SYMBOL_GPL
-0x67f1f141 acpi_debugfs_dir vmlinux EXPORT_SYMBOL_GPL
-0xdaa06dc1 acpi_lpat_raw_to_temp vmlinux EXPORT_SYMBOL_GPL
-0x47d0eea2 acpi_lpat_temp_to_raw vmlinux EXPORT_SYMBOL_GPL
-0xdb63a944 acpi_lpat_get_conversion_table vmlinux EXPORT_SYMBOL_GPL
-0x7de65a03 acpi_lpat_free_conversion_table vmlinux EXPORT_SYMBOL_GPL
-0x0ad137d3 lpit_read_residency_count_address vmlinux EXPORT_SYMBOL_GPL
-0x827e61f8 acpi_has_watchdog vmlinux EXPORT_SYMBOL_GPL
-0x1038b96f adxl_get_component_names vmlinux EXPORT_SYMBOL_GPL
-0x791748c8 adxl_decode vmlinux EXPORT_SYMBOL_GPL
-0x170ddf79 acpi_install_notify_handler vmlinux EXPORT_SYMBOL
-0x1c58427f acpi_remove_notify_handler vmlinux EXPORT_SYMBOL
-0xf1848ee2 acpi_install_sci_handler vmlinux EXPORT_SYMBOL
-0xe70877d4 acpi_remove_sci_handler vmlinux EXPORT_SYMBOL
-0x9176145b acpi_install_global_event_handler vmlinux EXPORT_SYMBOL
-0x3b029f48 acpi_install_fixed_event_handler vmlinux EXPORT_SYMBOL
-0x4055a920 acpi_remove_fixed_event_handler vmlinux EXPORT_SYMBOL
-0xb97f7045 acpi_install_gpe_handler vmlinux EXPORT_SYMBOL
-0x8f80bf11 acpi_install_gpe_raw_handler vmlinux EXPORT_SYMBOL
-0x9d099a39 acpi_remove_gpe_handler vmlinux EXPORT_SYMBOL
-0xc9f34c1d acpi_acquire_global_lock vmlinux EXPORT_SYMBOL
-0xa805ecfc acpi_release_global_lock vmlinux EXPORT_SYMBOL
-0xe4d80bf4 acpi_enable vmlinux EXPORT_SYMBOL
-0x547e3344 acpi_disable vmlinux EXPORT_SYMBOL
-0x44902cff acpi_enable_event vmlinux EXPORT_SYMBOL
-0x2177bd71 acpi_disable_event vmlinux EXPORT_SYMBOL
-0x17be68ca acpi_clear_event vmlinux EXPORT_SYMBOL
-0xf60ab926 acpi_get_event_status vmlinux EXPORT_SYMBOL
-0xdf8d781f acpi_update_all_gpes vmlinux EXPORT_SYMBOL
-0x1344d7e6 acpi_enable_gpe vmlinux EXPORT_SYMBOL
-0xa4faf62a acpi_disable_gpe vmlinux EXPORT_SYMBOL
-0xbe0110e7 acpi_set_gpe vmlinux EXPORT_SYMBOL
-0x8a6c7139 acpi_mask_gpe vmlinux EXPORT_SYMBOL
-0xda1ddef1 acpi_mark_gpe_for_wake vmlinux EXPORT_SYMBOL
-0x8db22efe acpi_setup_gpe_for_wake vmlinux EXPORT_SYMBOL
-0xb3863a67 acpi_set_gpe_wake_mask vmlinux EXPORT_SYMBOL
-0xa507125e acpi_clear_gpe vmlinux EXPORT_SYMBOL
-0x663182c9 acpi_get_gpe_status vmlinux EXPORT_SYMBOL
-0x6ea7575d acpi_dispatch_gpe vmlinux EXPORT_SYMBOL
-0x19df99b9 acpi_finish_gpe vmlinux EXPORT_SYMBOL
-0x767dce4b acpi_disable_all_gpes vmlinux EXPORT_SYMBOL
-0x02c656b6 acpi_enable_all_runtime_gpes vmlinux EXPORT_SYMBOL
-0xc1365323 acpi_enable_all_wakeup_gpes vmlinux EXPORT_SYMBOL
-0xed34ebbc acpi_any_gpe_status_set vmlinux EXPORT_SYMBOL
-0x9625695d acpi_install_gpe_block vmlinux EXPORT_SYMBOL
-0xf79ca3bb acpi_remove_gpe_block vmlinux EXPORT_SYMBOL
-0x33fd9da4 acpi_get_gpe_device vmlinux EXPORT_SYMBOL
-0xdbcf041a acpi_install_address_space_handler vmlinux EXPORT_SYMBOL
-0x14a64a87 acpi_install_address_space_handler_no_reg vmlinux EXPORT_SYMBOL
-0x092e26bf acpi_remove_address_space_handler vmlinux EXPORT_SYMBOL
-0x95a07bb5 acpi_execute_reg_methods vmlinux EXPORT_SYMBOL
-0x2bd60ab9 acpi_reset vmlinux EXPORT_SYMBOL
-0x67c13ea0 acpi_read vmlinux EXPORT_SYMBOL
-0x7bb50b88 acpi_write vmlinux EXPORT_SYMBOL
-0x54175c5f acpi_read_bit_register vmlinux EXPORT_SYMBOL
-0xd846c315 acpi_write_bit_register vmlinux EXPORT_SYMBOL
-0x130afd75 acpi_get_sleep_type_data vmlinux EXPORT_SYMBOL
-0x3324ef3b acpi_set_firmware_waking_vector vmlinux EXPORT_SYMBOL
-0x3489859f acpi_enter_sleep_state_s4bios vmlinux EXPORT_SYMBOL
-0x0484c6c4 acpi_enter_sleep_state_prep vmlinux EXPORT_SYMBOL
-0x5cfb26a0 acpi_enter_sleep_state vmlinux EXPORT_SYMBOL
-0xd2ea49b8 acpi_leave_sleep_state_prep vmlinux EXPORT_SYMBOL
-0xd643239a acpi_leave_sleep_state vmlinux EXPORT_SYMBOL
-0x3aff3200 acpi_evaluate_object_typed vmlinux EXPORT_SYMBOL
-0xd92deb6b acpi_evaluate_object vmlinux EXPORT_SYMBOL
-0xec2b8a42 acpi_walk_namespace vmlinux EXPORT_SYMBOL
-0xeb7f6046 acpi_get_devices vmlinux EXPORT_SYMBOL
-0xcd01b8e6 acpi_attach_data vmlinux EXPORT_SYMBOL
-0x1e0cd7fe acpi_detach_data vmlinux EXPORT_SYMBOL
-0xefee932c acpi_get_data_full vmlinux EXPORT_SYMBOL
-0xc14dc168 acpi_get_data vmlinux EXPORT_SYMBOL
-0x5322663e acpi_get_handle vmlinux EXPORT_SYMBOL
-0xaebd12f0 acpi_get_name vmlinux EXPORT_SYMBOL
-0x72f14ff7 acpi_get_object_info vmlinux EXPORT_SYMBOL
-0x6be1c1f8 acpi_install_method vmlinux EXPORT_SYMBOL
-0x42578e80 acpi_get_type vmlinux EXPORT_SYMBOL
-0x7d12d76d acpi_get_parent vmlinux EXPORT_SYMBOL
-0x75871f5e acpi_get_next_object vmlinux EXPORT_SYMBOL
-0x81d6c28b acpi_buffer_to_resource vmlinux EXPORT_SYMBOL
-0xce76c257 acpi_get_irq_routing_table vmlinux EXPORT_SYMBOL
-0x3b9144c9 acpi_get_current_resources vmlinux EXPORT_SYMBOL
-0xd5346bfc acpi_get_possible_resources vmlinux EXPORT_SYMBOL
-0x4f55166f acpi_set_current_resources vmlinux EXPORT_SYMBOL
-0xc93e8461 acpi_get_event_resources vmlinux EXPORT_SYMBOL
-0x5ac01b95 acpi_resource_to_address64 vmlinux EXPORT_SYMBOL
-0x6f41a428 acpi_get_vendor_resource vmlinux EXPORT_SYMBOL
-0x7fde1fbc acpi_walk_resource_buffer vmlinux EXPORT_SYMBOL
-0x2e0a637d acpi_walk_resources vmlinux EXPORT_SYMBOL
-0xb920db49 acpi_tb_install_and_load_table vmlinux EXPORT_SYMBOL
-0xe85f2123 acpi_tb_unload_table vmlinux EXPORT_SYMBOL
-0x6dd17e7b acpi_get_table_header vmlinux EXPORT_SYMBOL
-0x16cdc340 acpi_get_table vmlinux EXPORT_SYMBOL
-0x92b99a33 acpi_put_table vmlinux EXPORT_SYMBOL
-0xfbe8ee28 acpi_get_table_by_index vmlinux EXPORT_SYMBOL
-0xf29403e5 acpi_install_table_handler vmlinux EXPORT_SYMBOL
-0xa2326c49 acpi_remove_table_handler vmlinux EXPORT_SYMBOL
-0x4715a909 acpi_load_table vmlinux EXPORT_SYMBOL
-0x9b72478f acpi_unload_parent_table vmlinux EXPORT_SYMBOL
-0xf7da6e6f acpi_unload_table vmlinux EXPORT_SYMBOL
-0xcd8ce890 acpi_format_exception vmlinux EXPORT_SYMBOL
-0xacea8173 acpi_debug_print vmlinux EXPORT_SYMBOL
-0x92a51e56 acpi_debug_print_raw vmlinux EXPORT_SYMBOL
-0x354b4a1e acpi_ut_trace vmlinux EXPORT_SYMBOL
-0x8bd577d0 acpi_ut_exit vmlinux EXPORT_SYMBOL
-0xb32a5973 acpi_ut_status_exit vmlinux EXPORT_SYMBOL
-0xddcbe1f3 acpi_ut_value_exit vmlinux EXPORT_SYMBOL
-0xeb31aee8 acpi_trace_point vmlinux EXPORT_SYMBOL
-0x9f4f2aa3 acpi_gbl_FADT vmlinux EXPORT_SYMBOL
-0xddad7952 acpi_dbg_level vmlinux EXPORT_SYMBOL
-0xa40ff01b acpi_dbg_layer vmlinux EXPORT_SYMBOL
-0xd194ddf9 acpi_gpe_count vmlinux EXPORT_SYMBOL
-0xb2bcb088 acpi_current_gpe_count vmlinux EXPORT_SYMBOL
-0x093712e5 acpi_purge_cached_objects vmlinux EXPORT_SYMBOL
-0xd0b74705 acpi_install_interface vmlinux EXPORT_SYMBOL
-0xf43d2caa acpi_remove_interface vmlinux EXPORT_SYMBOL
-0x9e2737f0 acpi_install_interface_handler vmlinux EXPORT_SYMBOL
-0xe082e88d acpi_check_address_range vmlinux EXPORT_SYMBOL
-0x433cabfb acpi_decode_pld_buffer vmlinux EXPORT_SYMBOL
-0x377d8004 acpi_error vmlinux EXPORT_SYMBOL
-0xcad1aca8 acpi_exception vmlinux EXPORT_SYMBOL
-0xefcea2e7 acpi_warning vmlinux EXPORT_SYMBOL
-0x4d2c7133 acpi_info vmlinux EXPORT_SYMBOL
-0x8c9e338f acpi_bios_error vmlinux EXPORT_SYMBOL
-0xaa341905 acpi_bios_exception vmlinux EXPORT_SYMBOL
-0x65d1bab2 acpi_bios_warning vmlinux EXPORT_SYMBOL
-0x5027bde2 acpi_acquire_mutex vmlinux EXPORT_SYMBOL
-0x515083bf acpi_release_mutex vmlinux EXPORT_SYMBOL
-0xa3e4f871 acpi_initialize_debugger vmlinux EXPORT_SYMBOL
-0x34f89363 acpi_terminate_debugger vmlinux EXPORT_SYMBOL
-0xfdb6576f acpi_set_debugger_thread_id vmlinux EXPORT_SYMBOL
-0x48193639 acpi_lid_open vmlinux EXPORT_SYMBOL
-0xbc2031de acpi_processor_get_bios_limit vmlinux EXPORT_SYMBOL
-0x057ed2be acpi_processor_get_performance_info vmlinux EXPORT_SYMBOL_GPL
-0x9bda3b86 acpi_processor_notify_smm vmlinux EXPORT_SYMBOL
-0x34a1f7e3 acpi_processor_get_psd vmlinux EXPORT_SYMBOL
-0xf1a68107 acpi_processor_preregister_performance vmlinux EXPORT_SYMBOL
-0xe787698f acpi_processor_register_performance vmlinux EXPORT_SYMBOL
-0x4c07a7e0 acpi_processor_unregister_performance vmlinux EXPORT_SYMBOL
-0x1cd8438b pxm_to_node vmlinux EXPORT_SYMBOL
-0xfa297415 acpi_map_pxm_to_node vmlinux EXPORT_SYMBOL
-0xecfd68ef acpi_get_node vmlinux EXPORT_SYMBOL
-0x7d74f766 battery_hook_unregister vmlinux EXPORT_SYMBOL_GPL
-0x1bc680d5 battery_hook_register vmlinux EXPORT_SYMBOL_GPL
-0x6c655913 register_acpi_hed_notifier vmlinux EXPORT_SYMBOL_GPL
-0x2f64415f unregister_acpi_hed_notifier vmlinux EXPORT_SYMBOL_GPL
-0x8faa800d acpi_cpc_valid vmlinux EXPORT_SYMBOL_GPL
-0x70fbae4d cppc_allow_fast_switch vmlinux EXPORT_SYMBOL_GPL
-0x75fadcef acpi_get_psd_map vmlinux EXPORT_SYMBOL_GPL
-0xec907552 acpi_cppc_processor_probe vmlinux EXPORT_SYMBOL_GPL
-0x8dba795b acpi_cppc_processor_exit vmlinux EXPORT_SYMBOL_GPL
-0x2817f7fd cppc_get_desired_perf vmlinux EXPORT_SYMBOL_GPL
-0xc74c07ce cppc_get_epp_perf vmlinux EXPORT_SYMBOL_GPL
-0xe70221d7 cppc_get_perf_caps vmlinux EXPORT_SYMBOL_GPL
-0x8b4149e4 cppc_perf_ctrs_in_pcc vmlinux EXPORT_SYMBOL_GPL
-0xd46af5ef cppc_get_perf_ctrs vmlinux EXPORT_SYMBOL_GPL
-0xa4bf2e41 cppc_set_epp_perf vmlinux EXPORT_SYMBOL_GPL
-0x3352823d cppc_get_auto_sel_caps vmlinux EXPORT_SYMBOL_GPL
-0x08e2b333 cppc_set_auto_sel vmlinux EXPORT_SYMBOL_GPL
-0xb87f40fe cppc_set_enable vmlinux EXPORT_SYMBOL_GPL
-0xa3a36c73 cppc_set_perf vmlinux EXPORT_SYMBOL_GPL
-0xcde26600 cppc_get_transition_latency vmlinux EXPORT_SYMBOL_GPL
-0xa8e6933a qdf2400_e44_present vmlinux EXPORT_SYMBOL
-0xdc7df67f apei_exec_ctx_init vmlinux EXPORT_SYMBOL_GPL
-0x500c768c apei_exec_read_register vmlinux EXPORT_SYMBOL_GPL
-0x1cb7c983 apei_exec_read_register_value vmlinux EXPORT_SYMBOL_GPL
-0x90c8498c apei_exec_write_register vmlinux EXPORT_SYMBOL_GPL
-0x574609c5 apei_exec_write_register_value vmlinux EXPORT_SYMBOL_GPL
-0x012e730e apei_exec_noop vmlinux EXPORT_SYMBOL_GPL
-0xbec66c3a __apei_exec_run vmlinux EXPORT_SYMBOL_GPL
-0x8e6fa8b5 apei_exec_pre_map_gars vmlinux EXPORT_SYMBOL_GPL
-0xfe0e7cd3 apei_exec_post_unmap_gars vmlinux EXPORT_SYMBOL_GPL
-0x74457e56 apei_resources_fini vmlinux EXPORT_SYMBOL_GPL
-0x0b52e502 apei_resources_add vmlinux EXPORT_SYMBOL_GPL
-0x17614bf3 apei_resources_sub vmlinux EXPORT_SYMBOL_GPL
-0xef1f6e23 apei_resources_request vmlinux EXPORT_SYMBOL_GPL
-0x0e13cb4d apei_resources_release vmlinux EXPORT_SYMBOL_GPL
-0x30e1ec25 apei_map_generic_address vmlinux EXPORT_SYMBOL_GPL
-0xfeeecd05 apei_read vmlinux EXPORT_SYMBOL_GPL
-0x5d17148b apei_write vmlinux EXPORT_SYMBOL_GPL
-0x058f9366 apei_exec_collect_resources vmlinux EXPORT_SYMBOL_GPL
-0xf6557bce apei_get_debugfs_dir vmlinux EXPORT_SYMBOL_GPL
-0x5a229368 arch_apei_enable_cmcff vmlinux EXPORT_SYMBOL_GPL
-0x3c819c45 arch_apei_report_mem_error vmlinux EXPORT_SYMBOL_GPL
-0x3ea5196d apei_osc_setup vmlinux EXPORT_SYMBOL_GPL
-0xc2de27ca hest_disable vmlinux EXPORT_SYMBOL_GPL
-0xfd7243c7 erst_disable vmlinux EXPORT_SYMBOL_GPL
-0xd426dbc4 erst_get_record_count vmlinux EXPORT_SYMBOL_GPL
-0xe10cd6ad erst_get_record_id_begin vmlinux EXPORT_SYMBOL_GPL
-0x7fa96509 erst_get_record_id_next vmlinux EXPORT_SYMBOL_GPL
-0xa156a1f2 erst_get_record_id_end vmlinux EXPORT_SYMBOL_GPL
-0x9fbfebab erst_write vmlinux EXPORT_SYMBOL_GPL
-0x3750d770 erst_read vmlinux EXPORT_SYMBOL_GPL
-0x24413343 erst_read_record vmlinux EXPORT_SYMBOL_GPL
-0x17e01f11 erst_clear vmlinux EXPORT_SYMBOL_GPL
-0x8f603067 ghes_estatus_pool_region_free vmlinux EXPORT_SYMBOL_GPL
-0x41bce49a ghes_register_vendor_record_notifier vmlinux EXPORT_SYMBOL_GPL
-0x486dedc3 ghes_unregister_vendor_record_notifier vmlinux EXPORT_SYMBOL_GPL
-0x670b339c ghes_get_devices vmlinux EXPORT_SYMBOL_GPL
-0x65525c38 ghes_register_report_chain vmlinux EXPORT_SYMBOL_GPL
-0x062b89c4 ghes_unregister_report_chain vmlinux EXPORT_SYMBOL_GPL
-0x6c1375a7 intel_pmic_install_opregion_handler vmlinux EXPORT_SYMBOL_GPL
-0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element vmlinux EXPORT_SYMBOL_GPL
-0xee7eb9e1 pnp_platform_devices vmlinux EXPORT_SYMBOL
-0xe54b6339 pnp_request_card_device vmlinux EXPORT_SYMBOL
-0x79896f2b pnp_release_card_device vmlinux EXPORT_SYMBOL
-0xe54a2950 pnp_register_card_driver vmlinux EXPORT_SYMBOL
-0x6bd09d38 pnp_unregister_card_driver vmlinux EXPORT_SYMBOL
-0xe7bfe859 pnp_device_attach vmlinux EXPORT_SYMBOL
-0x5e5945b2 pnp_device_detach vmlinux EXPORT_SYMBOL
-0x677b45a3 pnp_register_driver vmlinux EXPORT_SYMBOL
-0xacdac7b2 pnp_unregister_driver vmlinux EXPORT_SYMBOL
-0xb058531a pnp_get_resource vmlinux EXPORT_SYMBOL
-0x1de04453 pnp_possible_config vmlinux EXPORT_SYMBOL
-0xe40976c0 pnp_range_reserved vmlinux EXPORT_SYMBOL
-0xca9495e6 pnp_start_dev vmlinux EXPORT_SYMBOL
-0xbdc66a57 pnp_stop_dev vmlinux EXPORT_SYMBOL
-0x496b3146 pnp_activate_dev vmlinux EXPORT_SYMBOL
-0x2a32c997 pnp_disable_dev vmlinux EXPORT_SYMBOL
-0x943ab144 pnp_is_active vmlinux EXPORT_SYMBOL
-0xb186381d pnpacpi_protocol vmlinux EXPORT_SYMBOL
-0x52c4100f devm_clk_get vmlinux EXPORT_SYMBOL
-0xea1db92b devm_clk_get_prepared vmlinux EXPORT_SYMBOL_GPL
-0x27edd678 devm_clk_get_enabled vmlinux EXPORT_SYMBOL_GPL
-0xd3b67d2b devm_clk_get_optional vmlinux EXPORT_SYMBOL
-0xd0f5d991 devm_clk_get_optional_prepared vmlinux EXPORT_SYMBOL_GPL
-0x7adca219 devm_clk_get_optional_enabled vmlinux EXPORT_SYMBOL_GPL
-0x2e5313aa devm_clk_bulk_get vmlinux EXPORT_SYMBOL_GPL
-0xa69d9e51 devm_clk_bulk_get_optional vmlinux EXPORT_SYMBOL_GPL
-0xd666b267 devm_clk_bulk_get_all vmlinux EXPORT_SYMBOL_GPL
-0xcc93ac21 devm_clk_put vmlinux EXPORT_SYMBOL
-0xc3a85ce5 devm_get_clk_from_child vmlinux EXPORT_SYMBOL
-0xef29fcdd clk_bulk_put vmlinux EXPORT_SYMBOL_GPL
-0x0d425492 clk_bulk_get vmlinux EXPORT_SYMBOL
-0xf7521921 clk_bulk_get_optional vmlinux EXPORT_SYMBOL_GPL
-0xa8caa845 clk_bulk_put_all vmlinux EXPORT_SYMBOL
-0xd7cea432 clk_bulk_get_all vmlinux EXPORT_SYMBOL
-0x63c08029 clk_bulk_unprepare vmlinux EXPORT_SYMBOL_GPL
-0xead5c8e5 clk_bulk_prepare vmlinux EXPORT_SYMBOL_GPL
-0x479f7d4b clk_bulk_disable vmlinux EXPORT_SYMBOL_GPL
-0xc7a7e770 clk_bulk_enable vmlinux EXPORT_SYMBOL_GPL
-0xec4d9e3a clk_get_sys vmlinux EXPORT_SYMBOL
-0xc7a0b444 clk_get vmlinux EXPORT_SYMBOL
-0x2e1ca751 clk_put vmlinux EXPORT_SYMBOL
-0x037d61bd clkdev_add vmlinux EXPORT_SYMBOL
-0x87b210d0 clkdev_create vmlinux EXPORT_SYMBOL_GPL
-0x128a7397 clkdev_hw_create vmlinux EXPORT_SYMBOL_GPL
-0x4157bf2a clk_add_alias vmlinux EXPORT_SYMBOL
-0x32654d43 clkdev_drop vmlinux EXPORT_SYMBOL
-0xc9822234 clk_register_clkdev vmlinux EXPORT_SYMBOL
-0x555209da clk_hw_register_clkdev vmlinux EXPORT_SYMBOL
-0x2514f0f0 devm_clk_hw_register_clkdev vmlinux EXPORT_SYMBOL
-0xc569d8ce __clk_get_name vmlinux EXPORT_SYMBOL_GPL
-0x691739a2 clk_hw_get_name vmlinux EXPORT_SYMBOL_GPL
-0x161b8a20 __clk_get_hw vmlinux EXPORT_SYMBOL_GPL
-0x75c20fec clk_hw_get_num_parents vmlinux EXPORT_SYMBOL_GPL
-0xefb7f0e1 clk_hw_get_parent vmlinux EXPORT_SYMBOL_GPL
-0xf2e84434 clk_hw_get_parent_by_index vmlinux EXPORT_SYMBOL_GPL
-0x27775588 clk_hw_get_rate vmlinux EXPORT_SYMBOL_GPL
-0x5f06bf29 clk_hw_get_flags vmlinux EXPORT_SYMBOL_GPL
-0x64bc99e6 clk_hw_is_prepared vmlinux EXPORT_SYMBOL_GPL
-0x2510d6f0 clk_hw_rate_is_protected vmlinux EXPORT_SYMBOL_GPL
-0xe6abc376 clk_hw_is_enabled vmlinux EXPORT_SYMBOL_GPL
-0xc6a4a872 __clk_is_enabled vmlinux EXPORT_SYMBOL_GPL
-0x715f9c30 clk_mux_determine_rate_flags vmlinux EXPORT_SYMBOL_GPL
-0xa96acfb3 clk_hw_get_rate_range vmlinux EXPORT_SYMBOL_GPL
-0xa1e92323 clk_hw_set_rate_range vmlinux EXPORT_SYMBOL_GPL
-0x5cb31878 __clk_mux_determine_rate vmlinux EXPORT_SYMBOL_GPL
-0xb030ff77 __clk_mux_determine_rate_closest vmlinux EXPORT_SYMBOL_GPL
-0xf9ef9870 clk_hw_determine_rate_no_reparent vmlinux EXPORT_SYMBOL_GPL
-0xacb4d88c clk_rate_exclusive_put vmlinux EXPORT_SYMBOL_GPL
-0x6257dda7 clk_rate_exclusive_get vmlinux EXPORT_SYMBOL_GPL
-0xb077e70a clk_unprepare vmlinux EXPORT_SYMBOL_GPL
-0x7c9a7371 clk_prepare vmlinux EXPORT_SYMBOL_GPL
-0xb6e6d99d clk_disable vmlinux EXPORT_SYMBOL_GPL
-0x0820d351 clk_gate_restore_context vmlinux EXPORT_SYMBOL_GPL
-0xa531471e clk_save_context vmlinux EXPORT_SYMBOL_GPL
-0x6259d291 clk_restore_context vmlinux EXPORT_SYMBOL_GPL
-0x815588a6 clk_enable vmlinux EXPORT_SYMBOL_GPL
-0x5eae5408 clk_is_enabled_when_prepared vmlinux EXPORT_SYMBOL_GPL
-0x1b22a8f9 clk_hw_init_rate_request vmlinux EXPORT_SYMBOL_GPL
-0xb982a28b clk_hw_forward_rate_request vmlinux EXPORT_SYMBOL_GPL
-0x3f849c47 __clk_determine_rate vmlinux EXPORT_SYMBOL_GPL
-0x04c2bacc clk_hw_round_rate vmlinux EXPORT_SYMBOL_GPL
-0x43f81957 clk_round_rate vmlinux EXPORT_SYMBOL_GPL
-0x21a563da clk_get_accuracy vmlinux EXPORT_SYMBOL_GPL
-0x556e4390 clk_get_rate vmlinux EXPORT_SYMBOL_GPL
-0xd28456bd clk_hw_get_parent_index vmlinux EXPORT_SYMBOL_GPL
-0x76d9b876 clk_set_rate vmlinux EXPORT_SYMBOL_GPL
-0xc5604800 clk_set_rate_exclusive vmlinux EXPORT_SYMBOL_GPL
-0x38e5bc5a clk_set_rate_range vmlinux EXPORT_SYMBOL_GPL
-0x25379e73 clk_set_min_rate vmlinux EXPORT_SYMBOL_GPL
-0xe0b1c103 clk_set_max_rate vmlinux EXPORT_SYMBOL_GPL
-0x63150e06 clk_get_parent vmlinux EXPORT_SYMBOL_GPL
-0xc9ceea06 clk_has_parent vmlinux EXPORT_SYMBOL_GPL
-0x6d73c9db clk_hw_set_parent vmlinux EXPORT_SYMBOL_GPL
-0x2396c7f0 clk_set_parent vmlinux EXPORT_SYMBOL_GPL
-0xb7329c06 clk_set_phase vmlinux EXPORT_SYMBOL_GPL
-0x1c5ff742 clk_get_phase vmlinux EXPORT_SYMBOL_GPL
-0x665e92a0 clk_set_duty_cycle vmlinux EXPORT_SYMBOL_GPL
-0x4100a662 clk_get_scaled_duty_cycle vmlinux EXPORT_SYMBOL_GPL
-0x8b149c36 clk_is_match vmlinux EXPORT_SYMBOL_GPL
-0x94261916 clk_hw_get_clk vmlinux EXPORT_SYMBOL
-0x428a14f0 clk_register vmlinux EXPORT_SYMBOL_GPL
-0xe1692088 clk_hw_register vmlinux EXPORT_SYMBOL_GPL
-0x033b11da of_clk_hw_register vmlinux EXPORT_SYMBOL_GPL
-0x7757b51a clk_unregister vmlinux EXPORT_SYMBOL_GPL
-0x20c998f2 clk_hw_unregister vmlinux EXPORT_SYMBOL_GPL
-0xa153b22b devm_clk_register vmlinux EXPORT_SYMBOL_GPL
-0x55b95da2 devm_clk_hw_register vmlinux EXPORT_SYMBOL_GPL
-0xbbf9a949 devm_clk_hw_get_clk vmlinux EXPORT_SYMBOL_GPL
-0x60091316 clk_notifier_register vmlinux EXPORT_SYMBOL_GPL
-0x719e17ff clk_notifier_unregister vmlinux EXPORT_SYMBOL_GPL
-0xed4caa14 devm_clk_notifier_register vmlinux EXPORT_SYMBOL_GPL
-0xd2780326 divider_recalc_rate vmlinux EXPORT_SYMBOL_GPL
-0xd302621b divider_determine_rate vmlinux EXPORT_SYMBOL_GPL
-0xeea76283 divider_ro_determine_rate vmlinux EXPORT_SYMBOL_GPL
-0x8046712e divider_round_rate_parent vmlinux EXPORT_SYMBOL_GPL
-0xf1f245ed divider_ro_round_rate_parent vmlinux EXPORT_SYMBOL_GPL
-0x5e798ffb divider_get_val vmlinux EXPORT_SYMBOL_GPL
-0x08a32d46 clk_divider_ops vmlinux EXPORT_SYMBOL_GPL
-0xbce12556 clk_divider_ro_ops vmlinux EXPORT_SYMBOL_GPL
-0xd963cd8e __clk_hw_register_divider vmlinux EXPORT_SYMBOL_GPL
-0xcbbe1cbc clk_register_divider_table vmlinux EXPORT_SYMBOL_GPL
-0xff291ecf clk_unregister_divider vmlinux EXPORT_SYMBOL_GPL
-0xa9017069 clk_hw_unregister_divider vmlinux EXPORT_SYMBOL_GPL
-0x6d22418e __devm_clk_hw_register_divider vmlinux EXPORT_SYMBOL_GPL
-0xe452f954 clk_fixed_factor_ops vmlinux EXPORT_SYMBOL_GPL
-0x8a4914a6 devm_clk_hw_register_fixed_factor_index vmlinux EXPORT_SYMBOL_GPL
-0x0945ff41 devm_clk_hw_register_fixed_factor_parent_hw vmlinux EXPORT_SYMBOL_GPL
-0x76d32f82 clk_hw_register_fixed_factor_parent_hw vmlinux EXPORT_SYMBOL_GPL
-0x0d6998ae clk_hw_register_fixed_factor vmlinux EXPORT_SYMBOL_GPL
-0xa5de2e04 clk_register_fixed_factor vmlinux EXPORT_SYMBOL_GPL
-0x45558f56 clk_unregister_fixed_factor vmlinux EXPORT_SYMBOL_GPL
-0x9ad55b99 clk_hw_unregister_fixed_factor vmlinux EXPORT_SYMBOL_GPL
-0x6a830621 devm_clk_hw_register_fixed_factor vmlinux EXPORT_SYMBOL_GPL
-0xc6569014 clk_fixed_rate_ops vmlinux EXPORT_SYMBOL_GPL
-0x30f215c1 __clk_hw_register_fixed_rate vmlinux EXPORT_SYMBOL_GPL
-0xb1e6cff5 clk_register_fixed_rate vmlinux EXPORT_SYMBOL_GPL
-0x52252316 clk_unregister_fixed_rate vmlinux EXPORT_SYMBOL_GPL
-0x336636bb clk_hw_unregister_fixed_rate vmlinux EXPORT_SYMBOL_GPL
-0x01b8ad58 clk_gate_is_enabled vmlinux EXPORT_SYMBOL_GPL
-0x0d09285a clk_gate_ops vmlinux EXPORT_SYMBOL_GPL
-0xb02e48d4 __clk_hw_register_gate vmlinux EXPORT_SYMBOL_GPL
-0xe141c648 clk_register_gate vmlinux EXPORT_SYMBOL_GPL
-0x8506baa8 clk_unregister_gate vmlinux EXPORT_SYMBOL_GPL
-0x2dbcf545 clk_hw_unregister_gate vmlinux EXPORT_SYMBOL_GPL
-0xb741938c __devm_clk_hw_register_gate vmlinux EXPORT_SYMBOL_GPL
-0xaab9c421 clk_multiplier_ops vmlinux EXPORT_SYMBOL_GPL
-0x985ffb5f clk_mux_val_to_index vmlinux EXPORT_SYMBOL_GPL
-0xa21f2ce7 clk_mux_index_to_val vmlinux EXPORT_SYMBOL_GPL
-0xcb349fa4 clk_mux_ops vmlinux EXPORT_SYMBOL_GPL
-0xae1feb86 clk_mux_ro_ops vmlinux EXPORT_SYMBOL_GPL
-0x2b0f5228 __clk_hw_register_mux vmlinux EXPORT_SYMBOL_GPL
-0x1cf94b97 __devm_clk_hw_register_mux vmlinux EXPORT_SYMBOL_GPL
-0xa94c6e05 clk_register_mux_table vmlinux EXPORT_SYMBOL_GPL
-0x47de0dc7 clk_unregister_mux vmlinux EXPORT_SYMBOL_GPL
-0xde39c6b8 clk_hw_unregister_mux vmlinux EXPORT_SYMBOL_GPL
-0x35bfd83e clk_hw_register_composite vmlinux EXPORT_SYMBOL_GPL
-0xde92705e clk_register_composite vmlinux EXPORT_SYMBOL_GPL
-0xe9a5f58e clk_hw_unregister_composite vmlinux EXPORT_SYMBOL_GPL
-0x2673d7b9 clk_fractional_divider_ops vmlinux EXPORT_SYMBOL_GPL
-0x686e238e clk_hw_register_fractional_divider vmlinux EXPORT_SYMBOL_GPL
-0x2258d3cb clk_register_fractional_divider vmlinux EXPORT_SYMBOL_GPL
-0x19b5df10 dma_sync_wait vmlinux EXPORT_SYMBOL
-0xb73ed65d dma_find_channel vmlinux EXPORT_SYMBOL
-0x0acf7679 dma_issue_pending_all vmlinux EXPORT_SYMBOL
-0xa8b7a09b dma_get_slave_caps vmlinux EXPORT_SYMBOL_GPL
-0xa3a4a4c4 dma_get_slave_channel vmlinux EXPORT_SYMBOL_GPL
-0x414f9398 dma_get_any_slave_channel vmlinux EXPORT_SYMBOL_GPL
-0x92455d8d __dma_request_channel vmlinux EXPORT_SYMBOL_GPL
-0xab40f4b0 dma_request_chan vmlinux EXPORT_SYMBOL_GPL
-0xeab14618 dma_request_chan_by_mask vmlinux EXPORT_SYMBOL_GPL
-0xf6bc808d dma_release_channel vmlinux EXPORT_SYMBOL_GPL
-0x923b1276 dmaengine_get vmlinux EXPORT_SYMBOL
-0x57575f08 dmaengine_put vmlinux EXPORT_SYMBOL
-0xe49c85b4 dma_async_device_channel_register vmlinux EXPORT_SYMBOL_GPL
-0x05389694 dma_async_device_channel_unregister vmlinux EXPORT_SYMBOL_GPL
-0x909744d0 dma_async_device_register vmlinux EXPORT_SYMBOL
-0xa488d1a1 dma_async_device_unregister vmlinux EXPORT_SYMBOL
-0x37b7e614 dmaenginem_async_device_register vmlinux EXPORT_SYMBOL
-0x0cd7b417 dmaengine_unmap_put vmlinux EXPORT_SYMBOL_GPL
-0xd5123658 dmaengine_get_unmap_data vmlinux EXPORT_SYMBOL
-0x67d63168 dma_async_tx_descriptor_init vmlinux EXPORT_SYMBOL
-0x31c68d73 dmaengine_desc_attach_metadata vmlinux EXPORT_SYMBOL_GPL
-0xe26b3c65 dmaengine_desc_get_metadata_ptr vmlinux EXPORT_SYMBOL_GPL
-0x745375a8 dmaengine_desc_set_metadata_len vmlinux EXPORT_SYMBOL_GPL
-0x4858dcb2 dma_wait_for_async_tx vmlinux EXPORT_SYMBOL_GPL
-0x8927eb21 dma_run_dependencies vmlinux EXPORT_SYMBOL_GPL
-0x3b39d3c0 vchan_tx_submit vmlinux EXPORT_SYMBOL_GPL
-0x6c8a798f vchan_tx_desc_free vmlinux EXPORT_SYMBOL_GPL
-0xaf9417da vchan_find_desc vmlinux EXPORT_SYMBOL_GPL
-0x9290f1c0 vchan_dma_desc_free_list vmlinux EXPORT_SYMBOL_GPL
-0xb63edfd1 vchan_init vmlinux EXPORT_SYMBOL_GPL
-0xea797bc5 acpi_dma_controller_register vmlinux EXPORT_SYMBOL_GPL
-0xbdd42b9c acpi_dma_controller_free vmlinux EXPORT_SYMBOL_GPL
-0x1918fddf devm_acpi_dma_controller_register vmlinux EXPORT_SYMBOL_GPL
-0x179807fe devm_acpi_dma_controller_free vmlinux EXPORT_SYMBOL_GPL
-0x86464ad6 acpi_dma_request_slave_chan_by_index vmlinux EXPORT_SYMBOL_GPL
-0xd7c8247e acpi_dma_request_slave_chan_by_name vmlinux EXPORT_SYMBOL_GPL
-0xe87a546a acpi_dma_simple_xlate vmlinux EXPORT_SYMBOL_GPL
-0x67019d4c dw_dma_filter vmlinux EXPORT_SYMBOL_GPL
-0xa84ec6d9 do_dw_dma_disable vmlinux EXPORT_SYMBOL_GPL
-0xc4e5f027 do_dw_dma_enable vmlinux EXPORT_SYMBOL_GPL
-0xea7089ba dw_dma_probe vmlinux EXPORT_SYMBOL_GPL
-0xd74d1272 dw_dma_remove vmlinux EXPORT_SYMBOL_GPL
-0x86aa5c81 idma32_dma_probe vmlinux EXPORT_SYMBOL_GPL
-0x7a6cc84d idma32_dma_remove vmlinux EXPORT_SYMBOL_GPL
-0xa926e4b3 dw_dma_acpi_controller_register vmlinux EXPORT_SYMBOL_GPL
-0xd486f52e dw_dma_acpi_controller_free vmlinux EXPORT_SYMBOL_GPL
-0x35dbcc7d hsu_dma_get_status vmlinux EXPORT_SYMBOL_GPL
-0x4d741361 hsu_dma_do_irq vmlinux EXPORT_SYMBOL_GPL
-0x25adc458 hsu_dma_probe vmlinux EXPORT_SYMBOL_GPL
-0x6b45c573 hsu_dma_remove vmlinux EXPORT_SYMBOL_GPL
-0x97bacb85 virtio_check_driver_offered_feature vmlinux EXPORT_SYMBOL_GPL
-0x34af7556 virtio_config_changed vmlinux EXPORT_SYMBOL_GPL
-0xa3eb38d3 virtio_add_status vmlinux EXPORT_SYMBOL_GPL
-0xc54af7b2 virtio_reset_device vmlinux EXPORT_SYMBOL_GPL
-0xbe0ab11a register_virtio_driver vmlinux EXPORT_SYMBOL_GPL
-0xc25b6a51 unregister_virtio_driver vmlinux EXPORT_SYMBOL_GPL
-0xf0cd1fd1 register_virtio_device vmlinux EXPORT_SYMBOL_GPL
-0x14cc144a is_virtio_device vmlinux EXPORT_SYMBOL_GPL
-0x11980786 unregister_virtio_device vmlinux EXPORT_SYMBOL_GPL
-0xc49408fe virtio_device_freeze vmlinux EXPORT_SYMBOL_GPL
-0xf5e8c1c0 virtio_device_restore vmlinux EXPORT_SYMBOL_GPL
-0xf6486a9d virtio_max_dma_size vmlinux EXPORT_SYMBOL_GPL
-0xfa43a47a virtqueue_add_sgs vmlinux EXPORT_SYMBOL_GPL
-0x01d3065f virtqueue_add_outbuf vmlinux EXPORT_SYMBOL_GPL
-0xabbacfa1 virtqueue_add_inbuf vmlinux EXPORT_SYMBOL_GPL
-0x490b8ce4 virtqueue_add_inbuf_ctx vmlinux EXPORT_SYMBOL_GPL
-0x7acb1da2 virtqueue_dma_dev vmlinux EXPORT_SYMBOL_GPL
-0x11f4b879 virtqueue_kick_prepare vmlinux EXPORT_SYMBOL_GPL
-0x96333d20 virtqueue_notify vmlinux EXPORT_SYMBOL_GPL
-0x591703d5 virtqueue_kick vmlinux EXPORT_SYMBOL_GPL
-0xafb15676 virtqueue_get_buf_ctx vmlinux EXPORT_SYMBOL_GPL
-0xa2b92306 virtqueue_get_buf vmlinux EXPORT_SYMBOL_GPL
-0x5aafbfb7 virtqueue_disable_cb vmlinux EXPORT_SYMBOL_GPL
-0x4a5d34f5 virtqueue_enable_cb_prepare vmlinux EXPORT_SYMBOL_GPL
-0xae13f85d virtqueue_poll vmlinux EXPORT_SYMBOL_GPL
-0x489e585e virtqueue_enable_cb vmlinux EXPORT_SYMBOL_GPL
-0xa08df5a1 virtqueue_enable_cb_delayed vmlinux EXPORT_SYMBOL_GPL
-0xa2e5a188 virtqueue_detach_unused_buf vmlinux EXPORT_SYMBOL_GPL
-0xff05fa13 vring_interrupt vmlinux EXPORT_SYMBOL_GPL
-0xf1d4298b vring_create_virtqueue vmlinux EXPORT_SYMBOL_GPL
-0x9f738757 vring_create_virtqueue_dma vmlinux EXPORT_SYMBOL_GPL
-0xfacb0215 virtqueue_resize vmlinux EXPORT_SYMBOL_GPL
-0xd87e4527 virtqueue_set_dma_premapped vmlinux EXPORT_SYMBOL_GPL
-0x140b59d7 virtqueue_reset vmlinux EXPORT_SYMBOL_GPL
-0x00b1bc14 vring_new_virtqueue vmlinux EXPORT_SYMBOL_GPL
-0x5bd7a96e vring_del_virtqueue vmlinux EXPORT_SYMBOL_GPL
-0xc42d1ca0 vring_notification_data vmlinux EXPORT_SYMBOL_GPL
-0xce21a202 vring_transport_features vmlinux EXPORT_SYMBOL_GPL
-0x065568b1 virtqueue_get_vring_size vmlinux EXPORT_SYMBOL_GPL
-0x204b5200 __virtqueue_break vmlinux EXPORT_SYMBOL_GPL
-0xd6fbc8cc __virtqueue_unbreak vmlinux EXPORT_SYMBOL_GPL
-0x07a722f1 virtqueue_is_broken vmlinux EXPORT_SYMBOL_GPL
-0x6789dc43 virtio_break_device vmlinux EXPORT_SYMBOL_GPL
-0xafadf1f7 __virtio_unbreak_device vmlinux EXPORT_SYMBOL_GPL
-0xaf5a9ff9 virtqueue_get_desc_addr vmlinux EXPORT_SYMBOL_GPL
-0x166fe0d4 virtqueue_get_avail_addr vmlinux EXPORT_SYMBOL_GPL
-0x1dedf7e9 virtqueue_get_used_addr vmlinux EXPORT_SYMBOL_GPL
-0xf2cb35df virtqueue_get_vring vmlinux EXPORT_SYMBOL_GPL
-0xd1cf5db2 virtqueue_dma_map_single_attrs vmlinux EXPORT_SYMBOL_GPL
-0xd74fb614 virtqueue_dma_unmap_single_attrs vmlinux EXPORT_SYMBOL_GPL
-0xfb6b3964 virtqueue_dma_mapping_error vmlinux EXPORT_SYMBOL_GPL
-0x9b77e42a virtqueue_dma_need_sync vmlinux EXPORT_SYMBOL_GPL
-0x43cda435 virtqueue_dma_sync_single_range_for_cpu vmlinux EXPORT_SYMBOL_GPL
-0x9abc857c virtqueue_dma_sync_single_range_for_device vmlinux EXPORT_SYMBOL_GPL
-0x80f63aa8 virtio_require_restricted_mem_acc vmlinux EXPORT_SYMBOL_GPL
-0x73cb3e7e virtio_check_mem_acc_cb vmlinux EXPORT_SYMBOL_GPL
-0x94f545fe vp_modern_probe vmlinux EXPORT_SYMBOL_GPL
-0x2e642987 vp_modern_remove vmlinux EXPORT_SYMBOL_GPL
-0xbd4ee59b vp_modern_get_features vmlinux EXPORT_SYMBOL_GPL
-0xeee0f415 vp_modern_get_driver_features vmlinux EXPORT_SYMBOL_GPL
-0x1f74bc88 vp_modern_set_features vmlinux EXPORT_SYMBOL_GPL
-0x8080edfd vp_modern_generation vmlinux EXPORT_SYMBOL_GPL
-0xed88b662 vp_modern_get_status vmlinux EXPORT_SYMBOL_GPL
-0xca47a5d2 vp_modern_set_status vmlinux EXPORT_SYMBOL_GPL
-0x6dcc3559 vp_modern_get_queue_reset vmlinux EXPORT_SYMBOL_GPL
-0x9f869edd vp_modern_set_queue_reset vmlinux EXPORT_SYMBOL_GPL
-0x5a410c49 vp_modern_queue_vector vmlinux EXPORT_SYMBOL_GPL
-0x0fe27a7d vp_modern_config_vector vmlinux EXPORT_SYMBOL_GPL
-0xe9ba5108 vp_modern_queue_address vmlinux EXPORT_SYMBOL_GPL
-0xfab04e60 vp_modern_set_queue_enable vmlinux EXPORT_SYMBOL_GPL
-0xa959f7cb vp_modern_get_queue_enable vmlinux EXPORT_SYMBOL_GPL
-0x9edf26ca vp_modern_set_queue_size vmlinux EXPORT_SYMBOL_GPL
-0xdd3135b9 vp_modern_get_queue_size vmlinux EXPORT_SYMBOL_GPL
-0xda2bb0ea vp_modern_get_num_queues vmlinux EXPORT_SYMBOL_GPL
-0x9ba585a3 vp_modern_map_vq_notify vmlinux EXPORT_SYMBOL_GPL
-0xb957b3ad vp_legacy_probe vmlinux EXPORT_SYMBOL_GPL
-0xa5ff800f vp_legacy_remove vmlinux EXPORT_SYMBOL_GPL
-0xfa683ddc vp_legacy_get_features vmlinux EXPORT_SYMBOL_GPL
-0xa70d3445 vp_legacy_get_driver_features vmlinux EXPORT_SYMBOL_GPL
-0x92c9e276 vp_legacy_set_features vmlinux EXPORT_SYMBOL_GPL
-0x8c3d983a vp_legacy_get_status vmlinux EXPORT_SYMBOL_GPL
-0x39bce004 vp_legacy_set_status vmlinux EXPORT_SYMBOL_GPL
-0xf1fddb7d vp_legacy_queue_vector vmlinux EXPORT_SYMBOL_GPL
-0xfb51dac6 vp_legacy_config_vector vmlinux EXPORT_SYMBOL_GPL
-0x7f3169be vp_legacy_set_queue_address vmlinux EXPORT_SYMBOL_GPL
-0xf5faf147 vp_legacy_get_queue_enable vmlinux EXPORT_SYMBOL_GPL
-0xb919a540 vp_legacy_get_queue_size vmlinux EXPORT_SYMBOL_GPL
-0xf27d0a7b gnttab_grant_foreign_access_ref vmlinux EXPORT_SYMBOL_GPL
-0x57719632 gnttab_grant_foreign_access vmlinux EXPORT_SYMBOL_GPL
-0x7defc870 gnttab_end_foreign_access_ref vmlinux EXPORT_SYMBOL_GPL
-0x049e5156 gnttab_try_end_foreign_access vmlinux EXPORT_SYMBOL_GPL
-0xa300f295 gnttab_end_foreign_access vmlinux EXPORT_SYMBOL_GPL
-0x204f2c5c gnttab_free_grant_reference vmlinux EXPORT_SYMBOL_GPL
-0x93d1d424 gnttab_free_grant_references vmlinux EXPORT_SYMBOL_GPL
-0xb85042e5 gnttab_free_grant_reference_seq vmlinux EXPORT_SYMBOL_GPL
-0xd27f215d gnttab_alloc_grant_references vmlinux EXPORT_SYMBOL_GPL
-0x02495b8f gnttab_alloc_grant_reference_seq vmlinux EXPORT_SYMBOL_GPL
-0xc6def34b gnttab_empty_grant_references vmlinux EXPORT_SYMBOL_GPL
-0x31dca4d8 gnttab_claim_grant_reference vmlinux EXPORT_SYMBOL_GPL
-0x8c484409 gnttab_release_grant_reference vmlinux EXPORT_SYMBOL_GPL
-0x76e85b92 gnttab_request_free_callback vmlinux EXPORT_SYMBOL_GPL
-0x2b0fe000 gnttab_cancel_free_callback vmlinux EXPORT_SYMBOL_GPL
-0x891a5a7f gnttab_max_grant_frames vmlinux EXPORT_SYMBOL_GPL
-0xb5a83e35 gnttab_setup_auto_xlat_frames vmlinux EXPORT_SYMBOL_GPL
-0xfc254d15 gnttab_free_auto_xlat_frames vmlinux EXPORT_SYMBOL_GPL
-0xab7e475c gnttab_pages_set_private vmlinux EXPORT_SYMBOL_GPL
-0xc36807a7 gnttab_alloc_pages vmlinux EXPORT_SYMBOL_GPL
-0x866ca6a3 gnttab_page_cache_init vmlinux EXPORT_SYMBOL_GPL
-0x29cd78ee gnttab_page_cache_get vmlinux EXPORT_SYMBOL_GPL
-0x2cbb0ca5 gnttab_page_cache_put vmlinux EXPORT_SYMBOL_GPL
-0xfc746b3c gnttab_page_cache_shrink vmlinux EXPORT_SYMBOL_GPL
-0x0348020a gnttab_pages_clear_private vmlinux EXPORT_SYMBOL_GPL
-0x25c2501f gnttab_free_pages vmlinux EXPORT_SYMBOL_GPL
-0xecba68e3 gnttab_batch_map vmlinux EXPORT_SYMBOL_GPL
-0x7444e1a3 gnttab_batch_copy vmlinux EXPORT_SYMBOL_GPL
-0xa52d09b9 gnttab_foreach_grant_in_range vmlinux EXPORT_SYMBOL_GPL
-0x34fda062 gnttab_map_refs vmlinux EXPORT_SYMBOL_GPL
-0x2625f62c gnttab_unmap_refs vmlinux EXPORT_SYMBOL_GPL
-0x91adf6f7 gnttab_unmap_refs_async vmlinux EXPORT_SYMBOL_GPL
-0x8c17c972 gnttab_unmap_refs_sync vmlinux EXPORT_SYMBOL_GPL
-0x138aff76 gnttab_init vmlinux EXPORT_SYMBOL_GPL
-0x4b931968 xen_features vmlinux EXPORT_SYMBOL_GPL
-0x44e1e9aa balloon_stats vmlinux EXPORT_SYMBOL_GPL
-0x6739a503 balloon_set_new_target vmlinux EXPORT_SYMBOL_GPL
-0x33ae503f xen_alloc_ballooned_pages vmlinux EXPORT_SYMBOL
-0x307c402f xen_free_ballooned_pages vmlinux EXPORT_SYMBOL
-0xf7c3f273 xen_resume_notifier_register vmlinux EXPORT_SYMBOL_GPL
-0xc66019cc xen_resume_notifier_unregister vmlinux EXPORT_SYMBOL_GPL
-0x943fc708 xen_setup_shutdown_event vmlinux EXPORT_SYMBOL_GPL
-0x4b56ce05 xenmem_reservation_increase vmlinux EXPORT_SYMBOL_GPL
-0x176adf76 xenmem_reservation_decrease vmlinux EXPORT_SYMBOL_GPL
-0xa2af54b3 irq_from_evtchn vmlinux EXPORT_SYMBOL_GPL
-0x86623fd7 notify_remote_via_irq vmlinux EXPORT_SYMBOL_GPL
-0x0ea5cbce xen_irq_lateeoi vmlinux EXPORT_SYMBOL_GPL
-0x5026585c xen_irq_from_gsi vmlinux EXPORT_SYMBOL_GPL
-0xa452f2a4 xen_pirq_from_irq vmlinux EXPORT_SYMBOL_GPL
-0x16f15139 bind_evtchn_to_irq vmlinux EXPORT_SYMBOL_GPL
-0x327a2687 bind_evtchn_to_irq_lateeoi vmlinux EXPORT_SYMBOL_GPL
-0x68400527 bind_interdomain_evtchn_to_irq_lateeoi vmlinux EXPORT_SYMBOL_GPL
-0x0e007edf xen_evtchn_nr_channels vmlinux EXPORT_SYMBOL_GPL
-0x34eab46d bind_evtchn_to_irqhandler vmlinux EXPORT_SYMBOL_GPL
-0xf7866b4f bind_evtchn_to_irqhandler_lateeoi vmlinux EXPORT_SYMBOL_GPL
-0x57a91590 bind_interdomain_evtchn_to_irqhandler_lateeoi vmlinux EXPORT_SYMBOL_GPL
-0x7b90d1a9 bind_virq_to_irqhandler vmlinux EXPORT_SYMBOL_GPL
-0x7712771a unbind_from_irqhandler vmlinux EXPORT_SYMBOL_GPL
-0x6b0dc565 xen_set_irq_priority vmlinux EXPORT_SYMBOL_GPL
-0x6da9ca52 evtchn_make_refcounted vmlinux EXPORT_SYMBOL_GPL
-0xcaf1d958 evtchn_get vmlinux EXPORT_SYMBOL_GPL
-0x14ec4fdb evtchn_put vmlinux EXPORT_SYMBOL_GPL
-0x0f640f8d xen_evtchn_do_upcall vmlinux EXPORT_SYMBOL_GPL
-0x8cda8029 xen_clear_irq_pending vmlinux EXPORT_SYMBOL
-0x642eb5c6 xen_poll_irq_timeout vmlinux EXPORT_SYMBOL
-0x870e16b7 xen_test_irq_shared vmlinux EXPORT_SYMBOL_GPL
-0xd0458ccb xenbus_strstate vmlinux EXPORT_SYMBOL_GPL
-0x6e36a90c xenbus_watch_path vmlinux EXPORT_SYMBOL_GPL
-0x54c20e67 xenbus_watch_pathfmt vmlinux EXPORT_SYMBOL_GPL
-0xe3106682 xenbus_switch_state vmlinux EXPORT_SYMBOL_GPL
-0x6aa8f6bf xenbus_frontend_closed vmlinux EXPORT_SYMBOL_GPL
-0x800acdc7 xenbus_dev_error vmlinux EXPORT_SYMBOL_GPL
-0xaa40de2e xenbus_dev_fatal vmlinux EXPORT_SYMBOL_GPL
-0xedad2f1b xenbus_setup_ring vmlinux EXPORT_SYMBOL_GPL
-0x9b651e51 xenbus_teardown_ring vmlinux EXPORT_SYMBOL_GPL
-0x8eb17129 xenbus_alloc_evtchn vmlinux EXPORT_SYMBOL_GPL
-0x5cf8064e xenbus_free_evtchn vmlinux EXPORT_SYMBOL_GPL
-0x228d6a3a xenbus_map_ring_valloc vmlinux EXPORT_SYMBOL_GPL
-0x9a5dd73b xenbus_unmap_ring_vfree vmlinux EXPORT_SYMBOL_GPL
-0xd72feba2 xenbus_read_driver_state vmlinux EXPORT_SYMBOL_GPL
-0xa52bedf6 xenbus_dev_request_and_reply vmlinux EXPORT_SYMBOL
-0xce0a4020 xenbus_directory vmlinux EXPORT_SYMBOL_GPL
-0xc7c23ff0 xenbus_exists vmlinux EXPORT_SYMBOL_GPL
-0xecd8f23d xenbus_read vmlinux EXPORT_SYMBOL_GPL
-0x37914025 xenbus_write vmlinux EXPORT_SYMBOL_GPL
-0x9194e18f xenbus_mkdir vmlinux EXPORT_SYMBOL_GPL
-0xde9ab8c7 xenbus_rm vmlinux EXPORT_SYMBOL_GPL
-0x52431348 xenbus_transaction_start vmlinux EXPORT_SYMBOL_GPL
-0x732852fe xenbus_transaction_end vmlinux EXPORT_SYMBOL_GPL
-0x6502d9c2 xenbus_scanf vmlinux EXPORT_SYMBOL_GPL
-0xc6572a90 xenbus_read_unsigned vmlinux EXPORT_SYMBOL_GPL
-0x6aa2a877 xenbus_printf vmlinux EXPORT_SYMBOL_GPL
-0x1cb9a1c8 xenbus_gather vmlinux EXPORT_SYMBOL_GPL
-0xbb0b25d2 register_xenbus_watch vmlinux EXPORT_SYMBOL_GPL
-0x5cab9945 unregister_xenbus_watch vmlinux EXPORT_SYMBOL_GPL
-0x5187ac4b xen_store_evtchn vmlinux EXPORT_SYMBOL_GPL
-0x9fe131f1 xen_store_interface vmlinux EXPORT_SYMBOL_GPL
-0xa11216be xen_store_domain_type vmlinux EXPORT_SYMBOL_GPL
-0xf90bb8f7 xenbus_match vmlinux EXPORT_SYMBOL_GPL
-0x04dbc896 xenbus_read_otherend_details vmlinux EXPORT_SYMBOL_GPL
-0xb0e8e671 xenbus_otherend_changed vmlinux EXPORT_SYMBOL_GPL
-0x52ea9dba xenbus_dev_probe vmlinux EXPORT_SYMBOL_GPL
-0x7d790ac0 xenbus_dev_remove vmlinux EXPORT_SYMBOL_GPL
-0x686efad4 xenbus_register_driver_common vmlinux EXPORT_SYMBOL_GPL
-0xe4bbe664 xenbus_unregister_driver vmlinux EXPORT_SYMBOL_GPL
-0xaa1383e0 xenbus_dev_groups vmlinux EXPORT_SYMBOL_GPL
-0xc4d34993 xenbus_probe_node vmlinux EXPORT_SYMBOL_GPL
-0xf16d582a xenbus_probe_devices vmlinux EXPORT_SYMBOL_GPL
-0xd1cc5e37 xenbus_dev_changed vmlinux EXPORT_SYMBOL_GPL
-0xa65313c8 xenbus_dev_suspend vmlinux EXPORT_SYMBOL_GPL
-0x246898fb xenbus_dev_resume vmlinux EXPORT_SYMBOL_GPL
-0x00ed0d01 xenbus_dev_cancel vmlinux EXPORT_SYMBOL_GPL
-0xb02ac411 register_xenstore_notifier vmlinux EXPORT_SYMBOL_GPL
-0xf32bdc5d unregister_xenstore_notifier vmlinux EXPORT_SYMBOL_GPL
-0x6aad9152 xen_set_callback_via vmlinux EXPORT_SYMBOL_GPL
-0x3f46d6b7 xen_xenbus_fops vmlinux EXPORT_SYMBOL_GPL
-0x7a008a1c __xenbus_register_frontend vmlinux EXPORT_SYMBOL_GPL
-0x4bc8727f xen_balloon_init vmlinux EXPORT_SYMBOL_GPL
-0xb7e9d687 xen_xlate_remap_gfn_array vmlinux EXPORT_SYMBOL_GPL
-0x68078af9 xen_xlate_unmap_gfn_range vmlinux EXPORT_SYMBOL_GPL
-0xbbc3e467 xen_remap_vma_range vmlinux EXPORT_SYMBOL_GPL
-0x72265744 reset_controller_register vmlinux EXPORT_SYMBOL_GPL
-0x7a86f9d9 reset_controller_unregister vmlinux EXPORT_SYMBOL_GPL
-0x4bc920e0 devm_reset_controller_register vmlinux EXPORT_SYMBOL_GPL
-0x0312b3b0 reset_controller_add_lookup vmlinux EXPORT_SYMBOL_GPL
-0x24f39c39 reset_control_reset vmlinux EXPORT_SYMBOL_GPL
-0x3f491f49 reset_control_bulk_reset vmlinux EXPORT_SYMBOL_GPL
-0x5d2bc42a reset_control_rearm vmlinux EXPORT_SYMBOL_GPL
-0x6c4b6684 reset_control_assert vmlinux EXPORT_SYMBOL_GPL
-0xff1666f3 reset_control_bulk_assert vmlinux EXPORT_SYMBOL_GPL
-0xb2210d64 reset_control_deassert vmlinux EXPORT_SYMBOL_GPL
-0xe700d767 reset_control_bulk_deassert vmlinux EXPORT_SYMBOL_GPL
-0x8c743fb6 reset_control_status vmlinux EXPORT_SYMBOL_GPL
-0xc8594d3d reset_control_acquire vmlinux EXPORT_SYMBOL_GPL
-0x0207a6c6 reset_control_bulk_acquire vmlinux EXPORT_SYMBOL_GPL
-0x1e0670c6 reset_control_release vmlinux EXPORT_SYMBOL_GPL
-0xf4cd9f8f reset_control_bulk_release vmlinux EXPORT_SYMBOL_GPL
-0x55176c28 __of_reset_control_get vmlinux EXPORT_SYMBOL_GPL
-0xf681357d __reset_control_get vmlinux EXPORT_SYMBOL_GPL
-0xf2784eba __reset_control_bulk_get vmlinux EXPORT_SYMBOL_GPL
-0x40f0683e reset_control_put vmlinux EXPORT_SYMBOL_GPL
-0xd4b9a616 reset_control_bulk_put vmlinux EXPORT_SYMBOL_GPL
-0x04e51c14 __devm_reset_control_get vmlinux EXPORT_SYMBOL_GPL
-0x4932839b __devm_reset_control_bulk_get vmlinux EXPORT_SYMBOL_GPL
-0xde754209 __device_reset vmlinux EXPORT_SYMBOL_GPL
-0xbe4220e4 of_reset_control_array_get vmlinux EXPORT_SYMBOL_GPL
-0x7a861626 devm_reset_control_array_get vmlinux EXPORT_SYMBOL_GPL
-0xab90f4d0 reset_control_get_count vmlinux EXPORT_SYMBOL_GPL
-0x67b27ec1 tty_std_termios vmlinux EXPORT_SYMBOL
-0xcdfbbafd tty_name vmlinux EXPORT_SYMBOL
-0xb11d9000 tty_dev_name_to_number vmlinux EXPORT_SYMBOL_GPL
-0xfa210a5f tty_find_polling_driver vmlinux EXPORT_SYMBOL_GPL
-0xcff075c8 tty_wakeup vmlinux EXPORT_SYMBOL_GPL
-0xc2f4ad29 tty_hangup vmlinux EXPORT_SYMBOL
-0xc198d688 tty_vhangup vmlinux EXPORT_SYMBOL
-0xe49732a6 tty_hung_up_p vmlinux EXPORT_SYMBOL
-0x8e273bd0 stop_tty vmlinux EXPORT_SYMBOL
-0xce56fd37 start_tty vmlinux EXPORT_SYMBOL
-0x5c81e69e tty_init_termios vmlinux EXPORT_SYMBOL_GPL
-0x367b2dd0 tty_standard_install vmlinux EXPORT_SYMBOL_GPL
-0xfdcd9519 tty_save_termios vmlinux EXPORT_SYMBOL_GPL
-0x1bc485a7 tty_kref_put vmlinux EXPORT_SYMBOL
-0xde39cbeb tty_kclose vmlinux EXPORT_SYMBOL_GPL
-0xafff2f50 tty_release_struct vmlinux EXPORT_SYMBOL_GPL
-0x76842ba6 tty_kopen_exclusive vmlinux EXPORT_SYMBOL_GPL
-0x5b5ee9cd tty_kopen_shared vmlinux EXPORT_SYMBOL_GPL
-0x2434e045 tty_do_resize vmlinux EXPORT_SYMBOL
-0xe606b93d tty_get_icount vmlinux EXPORT_SYMBOL_GPL
-0x3db88ad6 do_SAK vmlinux EXPORT_SYMBOL
-0x00e5553f tty_put_char vmlinux EXPORT_SYMBOL_GPL
-0x80ed0c95 tty_register_device vmlinux EXPORT_SYMBOL
-0xfa967357 tty_register_device_attr vmlinux EXPORT_SYMBOL_GPL
-0xd631834c tty_unregister_device vmlinux EXPORT_SYMBOL
-0x88e6bf21 __tty_alloc_driver vmlinux EXPORT_SYMBOL
-0xd9496878 tty_driver_kref_put vmlinux EXPORT_SYMBOL
-0x5b30243b tty_register_driver vmlinux EXPORT_SYMBOL
-0x980a5b2d tty_unregister_driver vmlinux EXPORT_SYMBOL
-0xcf6c2a77 tty_devnum vmlinux EXPORT_SYMBOL
-0x6e29a38c n_tty_inherit_ops vmlinux EXPORT_SYMBOL_GPL
-0xcb98ac0e tty_chars_in_buffer vmlinux EXPORT_SYMBOL
-0xc3a1037e tty_write_room vmlinux EXPORT_SYMBOL
-0x8716b52e tty_driver_flush_buffer vmlinux EXPORT_SYMBOL
-0x7a9479c7 tty_unthrottle vmlinux EXPORT_SYMBOL
-0x51dcdb2b tty_wait_until_sent vmlinux EXPORT_SYMBOL
-0xe816048f tty_termios_copy_hw vmlinux EXPORT_SYMBOL
-0xcd9c13a3 tty_termios_hw_change vmlinux EXPORT_SYMBOL
-0xf72a65ea tty_get_char_size vmlinux EXPORT_SYMBOL_GPL
-0x1687ec20 tty_get_frame_size vmlinux EXPORT_SYMBOL_GPL
-0x99cb195f tty_set_termios vmlinux EXPORT_SYMBOL_GPL
-0x00ef676a tty_mode_ioctl vmlinux EXPORT_SYMBOL_GPL
-0x162950c1 tty_perform_flush vmlinux EXPORT_SYMBOL_GPL
-0x1aac44a1 n_tty_ioctl_helper vmlinux EXPORT_SYMBOL
-0x9916097b tty_register_ldisc vmlinux EXPORT_SYMBOL
-0x5802a5fe tty_unregister_ldisc vmlinux EXPORT_SYMBOL
-0xeb9c79c1 tty_ldisc_ref_wait vmlinux EXPORT_SYMBOL_GPL
-0xca69f033 tty_ldisc_ref vmlinux EXPORT_SYMBOL_GPL
-0x13dedcc4 tty_ldisc_deref vmlinux EXPORT_SYMBOL_GPL
-0x9909fe08 tty_ldisc_flush vmlinux EXPORT_SYMBOL_GPL
-0x36b3d3bf tty_set_ldisc vmlinux EXPORT_SYMBOL_GPL
-0x931dc9d1 tty_buffer_lock_exclusive vmlinux EXPORT_SYMBOL_GPL
-0x23bcdad5 tty_buffer_unlock_exclusive vmlinux EXPORT_SYMBOL_GPL
-0x8037f337 tty_buffer_space_avail vmlinux EXPORT_SYMBOL_GPL
-0xde8b9599 tty_buffer_request_room vmlinux EXPORT_SYMBOL_GPL
-0x2e026e7c __tty_insert_flip_string_flags vmlinux EXPORT_SYMBOL
-0x09ad5b83 tty_prepare_flip_string vmlinux EXPORT_SYMBOL_GPL
-0x5e1ac415 tty_ldisc_receive_buf vmlinux EXPORT_SYMBOL_GPL
-0x274c695b tty_flip_buffer_push vmlinux EXPORT_SYMBOL
-0xd73ffbf8 tty_buffer_set_limit vmlinux EXPORT_SYMBOL_GPL
-0x18257c15 tty_port_default_client_ops vmlinux EXPORT_SYMBOL_GPL
-0x8ee6ee06 tty_port_init vmlinux EXPORT_SYMBOL
-0x557f64de tty_port_link_device vmlinux EXPORT_SYMBOL_GPL
-0x55d09f07 tty_port_register_device vmlinux EXPORT_SYMBOL_GPL
-0x9d0094cf tty_port_register_device_attr vmlinux EXPORT_SYMBOL_GPL
-0x0cb5ebc0 tty_port_register_device_attr_serdev vmlinux EXPORT_SYMBOL_GPL
-0x40b09e31 tty_port_register_device_serdev vmlinux EXPORT_SYMBOL_GPL
-0x9d78d03e tty_port_unregister_device vmlinux EXPORT_SYMBOL_GPL
-0xc0015843 tty_port_alloc_xmit_buf vmlinux EXPORT_SYMBOL
-0x7f740b67 tty_port_free_xmit_buf vmlinux EXPORT_SYMBOL
-0xae4c8602 tty_port_destroy vmlinux EXPORT_SYMBOL
-0x1ca260ed tty_port_put vmlinux EXPORT_SYMBOL
-0x9dedad2d tty_port_tty_get vmlinux EXPORT_SYMBOL
-0xfc140293 tty_port_tty_set vmlinux EXPORT_SYMBOL
-0xe5882768 tty_port_hangup vmlinux EXPORT_SYMBOL
-0x95a80b47 tty_port_tty_hangup vmlinux EXPORT_SYMBOL_GPL
-0xc3e22752 tty_port_tty_wakeup vmlinux EXPORT_SYMBOL_GPL
-0xfe8eaa73 tty_port_carrier_raised vmlinux EXPORT_SYMBOL
-0x2b11bbd3 tty_port_raise_dtr_rts vmlinux EXPORT_SYMBOL
-0x694e841c tty_port_lower_dtr_rts vmlinux EXPORT_SYMBOL
-0x1c41378b tty_port_block_til_ready vmlinux EXPORT_SYMBOL
-0xd8ff77db tty_port_close_start vmlinux EXPORT_SYMBOL
-0x8937b6c5 tty_port_close_end vmlinux EXPORT_SYMBOL
-0xfbe0ae91 tty_port_close vmlinux EXPORT_SYMBOL
-0x0b1f48f2 tty_port_install vmlinux EXPORT_SYMBOL_GPL
-0x6360e776 tty_port_open vmlinux EXPORT_SYMBOL
-0xea11317f tty_lock vmlinux EXPORT_SYMBOL
-0xc1f346c3 tty_unlock vmlinux EXPORT_SYMBOL
-0x0bd394d8 tty_termios_baud_rate vmlinux EXPORT_SYMBOL
-0x036cce78 tty_termios_input_baud_rate vmlinux EXPORT_SYMBOL
-0x5641485b tty_termios_encode_baud_rate vmlinux EXPORT_SYMBOL_GPL
-0x82625da8 tty_encode_baud_rate vmlinux EXPORT_SYMBOL_GPL
-0xc0d5c203 tty_check_change vmlinux EXPORT_SYMBOL
-0xe8f9515b get_current_tty vmlinux EXPORT_SYMBOL_GPL
-0xffad0be2 tty_get_pgrp vmlinux EXPORT_SYMBOL_GPL
-0x4a17ed66 sysrq_mask vmlinux EXPORT_SYMBOL_GPL
-0xc9993ea2 handle_sysrq vmlinux EXPORT_SYMBOL
-0xc1086e0c sysrq_toggle_support vmlinux EXPORT_SYMBOL_GPL
-0xe7b9867a register_sysrq_key vmlinux EXPORT_SYMBOL
-0x75c174a8 unregister_sysrq_key vmlinux EXPORT_SYMBOL
-0x5ed040b0 pm_set_vt_switch vmlinux EXPORT_SYMBOL
-0x38374815 clear_selection vmlinux EXPORT_SYMBOL_GPL
-0x7ea015db set_selection_kernel vmlinux EXPORT_SYMBOL_GPL
-0x03b48fb2 paste_selection vmlinux EXPORT_SYMBOL_GPL
-0x96554810 register_keyboard_notifier vmlinux EXPORT_SYMBOL_GPL
-0x9ed554b3 unregister_keyboard_notifier vmlinux EXPORT_SYMBOL_GPL
-0x22b325d5 kd_mksound vmlinux EXPORT_SYMBOL
-0xca454a34 vt_get_leds vmlinux EXPORT_SYMBOL_GPL
-0x7dd2414e inverse_translate vmlinux EXPORT_SYMBOL_GPL
-0x1e9bd005 con_set_default_unimap vmlinux EXPORT_SYMBOL
-0x574b7e53 con_copy_unimap vmlinux EXPORT_SYMBOL
-0x31ed166b vc_cons vmlinux EXPORT_SYMBOL
-0xf3916987 global_cursor_default vmlinux EXPORT_SYMBOL
-0xb423dba1 console_blanked vmlinux EXPORT_SYMBOL
-0x4e6e8ea7 fg_console vmlinux EXPORT_SYMBOL
-0xd25d4f74 console_blank_hook vmlinux EXPORT_SYMBOL
-0xbf041102 register_vt_notifier vmlinux EXPORT_SYMBOL_GPL
-0x55417264 unregister_vt_notifier vmlinux EXPORT_SYMBOL_GPL
-0x6b8967fe update_region vmlinux EXPORT_SYMBOL
-0x7c09c208 redraw_screen vmlinux EXPORT_SYMBOL
-0xff8b31cb vc_resize vmlinux EXPORT_SYMBOL
-0x863a276a color_table vmlinux EXPORT_SYMBOL
-0x45006cee default_red vmlinux EXPORT_SYMBOL
-0x72b9d287 default_grn vmlinux EXPORT_SYMBOL
-0x64a9c928 default_blu vmlinux EXPORT_SYMBOL
-0xd915721c do_unbind_con_driver vmlinux EXPORT_SYMBOL_GPL
-0xffc185ad con_is_bound vmlinux EXPORT_SYMBOL
-0xf64e45fd con_is_visible vmlinux EXPORT_SYMBOL
-0xe574d297 con_debug_enter vmlinux EXPORT_SYMBOL_GPL
-0x31266931 con_debug_leave vmlinux EXPORT_SYMBOL_GPL
-0xda143181 do_unregister_con_driver vmlinux EXPORT_SYMBOL_GPL
-0x2acb19d6 do_take_over_console vmlinux EXPORT_SYMBOL_GPL
-0xe0ce30ea give_up_console vmlinux EXPORT_SYMBOL
-0xe5c78a99 do_blank_screen vmlinux EXPORT_SYMBOL
-0x600683d3 do_unblank_screen vmlinux EXPORT_SYMBOL
-0xc8ac512e screen_glyph vmlinux EXPORT_SYMBOL_GPL
-0xe32d202b screen_glyph_unicode vmlinux EXPORT_SYMBOL_GPL
-0x6ef2ff87 screen_pos vmlinux EXPORT_SYMBOL_GPL
-0x097070eb vc_scrolldelta_helper vmlinux EXPORT_SYMBOL_GPL
-0xe612cd0a hvc_instantiate vmlinux EXPORT_SYMBOL_GPL
-0x9833bc0c hvc_kick vmlinux EXPORT_SYMBOL_GPL
-0xde2ac604 hvc_poll vmlinux EXPORT_SYMBOL_GPL
-0x1b296d3f __hvc_resize vmlinux EXPORT_SYMBOL_GPL
-0xdaf0bde0 hvc_alloc vmlinux EXPORT_SYMBOL_GPL
-0x2363df01 hvc_remove vmlinux EXPORT_SYMBOL_GPL
-0x93f1dce6 uart_write_wakeup vmlinux EXPORT_SYMBOL
-0xd5eeec5b uart_update_timeout vmlinux EXPORT_SYMBOL
-0xbca6ca25 uart_get_baud_rate vmlinux EXPORT_SYMBOL
-0x34c7d4a0 uart_get_divisor vmlinux EXPORT_SYMBOL
-0x1b021866 uart_xchar_out vmlinux EXPORT_SYMBOL_GPL
-0xee129adb uart_console_write vmlinux EXPORT_SYMBOL_GPL
-0xc5a5c678 uart_parse_earlycon vmlinux EXPORT_SYMBOL_GPL
-0x4f72a987 uart_parse_options vmlinux EXPORT_SYMBOL_GPL
-0xf3db0afe uart_set_options vmlinux EXPORT_SYMBOL_GPL
-0x4ccabfe9 uart_suspend_port vmlinux EXPORT_SYMBOL
-0x076749f9 uart_resume_port vmlinux EXPORT_SYMBOL
-0xdf1594f0 uart_register_driver vmlinux EXPORT_SYMBOL
-0x1265d3bd uart_unregister_driver vmlinux EXPORT_SYMBOL
-0xb20d8f09 uart_console_device vmlinux EXPORT_SYMBOL_GPL
-0x63395e02 uart_match_port vmlinux EXPORT_SYMBOL
-0x747fc829 uart_handle_dcd_change vmlinux EXPORT_SYMBOL_GPL
-0xccfc1e81 uart_handle_cts_change vmlinux EXPORT_SYMBOL_GPL
-0x752c9d1c uart_insert_char vmlinux EXPORT_SYMBOL_GPL
-0xfdde876e uart_try_toggle_sysrq vmlinux EXPORT_SYMBOL_GPL
-0x4578ae9a uart_get_rs485_mode vmlinux EXPORT_SYMBOL_GPL
-0x136b7fdb uart_add_one_port vmlinux EXPORT_SYMBOL
-0xa2718e46 uart_remove_one_port vmlinux EXPORT_SYMBOL
-0x7c066208 serial8250_get_port vmlinux EXPORT_SYMBOL_GPL
-0x9c449969 serial8250_set_isa_configurator vmlinux EXPORT_SYMBOL
-0xcc248d26 serial8250_suspend_port vmlinux EXPORT_SYMBOL
-0xc7208c3a serial8250_resume_port vmlinux EXPORT_SYMBOL
-0xb311402d serial8250_register_8250_port vmlinux EXPORT_SYMBOL
-0xcefcd99a serial8250_unregister_port vmlinux EXPORT_SYMBOL
-0x1b8c1393 serial8250_clear_and_reinit_fifos vmlinux EXPORT_SYMBOL_GPL
-0x179ee14e serial8250_rpm_get vmlinux EXPORT_SYMBOL_GPL
-0xaa4a4c4f serial8250_rpm_put vmlinux EXPORT_SYMBOL_GPL
-0xde32f944 serial8250_em485_destroy vmlinux EXPORT_SYMBOL_GPL
-0xf2ff4bc2 serial8250_em485_supported vmlinux EXPORT_SYMBOL_GPL
-0x15b008c5 serial8250_em485_config vmlinux EXPORT_SYMBOL_GPL
-0x0405913d serial8250_rpm_get_tx vmlinux EXPORT_SYMBOL_GPL
-0x9fd02fde serial8250_rpm_put_tx vmlinux EXPORT_SYMBOL_GPL
-0x6f828666 serial8250_em485_stop_tx vmlinux EXPORT_SYMBOL_GPL
-0x9fbfd5f7 serial8250_em485_start_tx vmlinux EXPORT_SYMBOL_GPL
-0xe432a596 serial8250_read_char vmlinux EXPORT_SYMBOL_GPL
-0xf6beb65c serial8250_rx_chars vmlinux EXPORT_SYMBOL_GPL
-0xbfd3c768 serial8250_tx_chars vmlinux EXPORT_SYMBOL_GPL
-0x9d5fa532 serial8250_modem_status vmlinux EXPORT_SYMBOL_GPL
-0x61fdc12c serial8250_handle_irq vmlinux EXPORT_SYMBOL_GPL
-0x6bcb556b serial8250_do_get_mctrl vmlinux EXPORT_SYMBOL_GPL
-0x88475e80 serial8250_do_set_mctrl vmlinux EXPORT_SYMBOL_GPL
-0xf092c331 serial8250_do_startup vmlinux EXPORT_SYMBOL_GPL
-0x446e3ca1 serial8250_do_shutdown vmlinux EXPORT_SYMBOL_GPL
-0xbd21205e serial8250_do_set_divisor vmlinux EXPORT_SYMBOL_GPL
-0xd6e9756b serial8250_update_uartclk vmlinux EXPORT_SYMBOL_GPL
-0x5767bdf9 serial8250_do_set_termios vmlinux EXPORT_SYMBOL
-0xc6af6d52 serial8250_do_set_ldisc vmlinux EXPORT_SYMBOL_GPL
-0xb2dd48c0 serial8250_do_pm vmlinux EXPORT_SYMBOL
-0x19cda056 serial8250_init_port vmlinux EXPORT_SYMBOL_GPL
-0xe925be30 serial8250_set_defaults vmlinux EXPORT_SYMBOL_GPL
-0x40036d91 serial8250_rx_dma_flush vmlinux EXPORT_SYMBOL_GPL
-0x349660bd serial8250_request_dma vmlinux EXPORT_SYMBOL_GPL
-0xf730e1fc serial8250_release_dma vmlinux EXPORT_SYMBOL_GPL
-0x4f838e9c dw8250_do_set_termios vmlinux EXPORT_SYMBOL_GPL
-0x2dd82915 dw8250_setup_port vmlinux EXPORT_SYMBOL_GPL
-0x2aac7729 serial8250_pci_setup_port vmlinux EXPORT_SYMBOL_GPL SERIAL_8250_PCI
-0xe044c0da pciserial_init_ports vmlinux EXPORT_SYMBOL_GPL
-0xe84f6e5c pciserial_remove_ports vmlinux EXPORT_SYMBOL_GPL
-0x31c7970f pciserial_suspend_ports vmlinux EXPORT_SYMBOL_GPL
-0xbfbc5434 pciserial_resume_ports vmlinux EXPORT_SYMBOL_GPL
-0xdfcb6c90 mctrl_gpio_set vmlinux EXPORT_SYMBOL_GPL
-0xead54924 mctrl_gpio_to_gpiod vmlinux EXPORT_SYMBOL_GPL
-0x48a3d20b mctrl_gpio_get vmlinux EXPORT_SYMBOL_GPL
-0x42f728aa mctrl_gpio_get_outputs vmlinux EXPORT_SYMBOL_GPL
-0x3af46c32 mctrl_gpio_init_noauto vmlinux EXPORT_SYMBOL_GPL
-0x1429568d mctrl_gpio_init vmlinux EXPORT_SYMBOL_GPL
-0x967a36b7 mctrl_gpio_free vmlinux EXPORT_SYMBOL_GPL
-0xebd4cc11 mctrl_gpio_enable_ms vmlinux EXPORT_SYMBOL_GPL
-0x1f449588 mctrl_gpio_disable_ms vmlinux EXPORT_SYMBOL_GPL
-0x71724493 mctrl_gpio_enable_irq_wake vmlinux EXPORT_SYMBOL_GPL
-0x7195940a mctrl_gpio_disable_irq_wake vmlinux EXPORT_SYMBOL_GPL
-0x3a4f9d28 rng_is_initialized vmlinux EXPORT_SYMBOL
-0x742578a5 wait_for_random_bytes vmlinux EXPORT_SYMBOL
-0x41ed3709 get_random_bytes vmlinux EXPORT_SYMBOL
-0x9858f364 get_random_u8 vmlinux EXPORT_SYMBOL
-0x044f0ad9 get_random_u16 vmlinux EXPORT_SYMBOL
-0xd36dc10c get_random_u32 vmlinux EXPORT_SYMBOL
-0xe3ff2c41 get_random_u64 vmlinux EXPORT_SYMBOL
-0xfba7a5f5 __get_random_u32_below vmlinux EXPORT_SYMBOL
-0xd66c8184 add_device_randomness vmlinux EXPORT_SYMBOL
-0xc64fd66a add_hwgenerator_randomness vmlinux EXPORT_SYMBOL_GPL
-0x16dfbf36 add_interrupt_randomness vmlinux EXPORT_SYMBOL_GPL
-0x3cd06035 add_input_randomness vmlinux EXPORT_SYMBOL_GPL
-0x3f2bdc08 add_disk_randomness vmlinux EXPORT_SYMBOL_GPL
-0x4db0545b misc_register vmlinux EXPORT_SYMBOL
-0x1115486e misc_deregister vmlinux EXPORT_SYMBOL
-0x3ef38dc9 arch_nvram_ops vmlinux EXPORT_SYMBOL
-0xe0c4e14d hwrng_register vmlinux EXPORT_SYMBOL_GPL
-0xd0fd7085 hwrng_unregister vmlinux EXPORT_SYMBOL_GPL
-0x36456374 devm_hwrng_register vmlinux EXPORT_SYMBOL_GPL
-0xf1f523f1 devm_hwrng_unregister vmlinux EXPORT_SYMBOL_GPL
-0x4bfd398d hwrng_msleep vmlinux EXPORT_SYMBOL_GPL
-0x5b071b7b hwrng_yield vmlinux EXPORT_SYMBOL_GPL
-0xc38d828b tpm_chip_start vmlinux EXPORT_SYMBOL_GPL
-0x92807c18 tpm_chip_stop vmlinux EXPORT_SYMBOL_GPL
-0x8f23cc80 tpm_try_get_ops vmlinux EXPORT_SYMBOL_GPL
-0xa50a3531 tpm_put_ops vmlinux EXPORT_SYMBOL_GPL
-0xbe92235b tpm_default_chip vmlinux EXPORT_SYMBOL_GPL
-0xb56c930a tpm_chip_alloc vmlinux EXPORT_SYMBOL_GPL
-0xe29e5cf8 tpmm_chip_alloc vmlinux EXPORT_SYMBOL_GPL
-0x0338c504 tpm_chip_bootstrap vmlinux EXPORT_SYMBOL_GPL
-0x278d64bf tpm_chip_register vmlinux EXPORT_SYMBOL_GPL
-0x42512dda tpm_chip_unregister vmlinux EXPORT_SYMBOL_GPL
-0x4372a78a tpm_calc_ordinal_duration vmlinux EXPORT_SYMBOL_GPL
-0xe9bf62c9 tpm_transmit_cmd vmlinux EXPORT_SYMBOL_GPL
-0x8e94b848 tpm_get_timeouts vmlinux EXPORT_SYMBOL_GPL
-0xac9c822d tpm_is_tpm2 vmlinux EXPORT_SYMBOL_GPL
-0x5d6918ca tpm_pcr_read vmlinux EXPORT_SYMBOL_GPL
-0x6cf1b0b9 tpm_pcr_extend vmlinux EXPORT_SYMBOL_GPL
-0x1aedfe82 tpm_send vmlinux EXPORT_SYMBOL_GPL
-0xbf48085a tpm_pm_suspend vmlinux EXPORT_SYMBOL_GPL
-0xef27a79d tpm_pm_resume vmlinux EXPORT_SYMBOL_GPL
-0x14e456b8 tpm_get_random vmlinux EXPORT_SYMBOL_GPL
-0x73d6b898 tpm1_getcap vmlinux EXPORT_SYMBOL_GPL
-0x02a0b4c2 tpm1_do_selftest vmlinux EXPORT_SYMBOL_GPL
-0x79c0acc6 tpm2_flush_context vmlinux EXPORT_SYMBOL_GPL
-0x17325c4f tpm2_get_tpm_pt vmlinux EXPORT_SYMBOL_GPL
-0xee53fe2d tpm2_probe vmlinux EXPORT_SYMBOL_GPL
-0x8f4496a1 tpm2_get_cc_attrs_tbl vmlinux EXPORT_SYMBOL_GPL
-0x753944a2 tpm_tis_remove vmlinux EXPORT_SYMBOL_GPL
-0x1f47aa0d tpm_tis_core_init vmlinux EXPORT_SYMBOL_GPL
-0x7505785c tpm_tis_resume vmlinux EXPORT_SYMBOL_GPL
-0x22de4931 amd_iommu_register_ga_log_notifier vmlinux EXPORT_SYMBOL
-0x27987176 amd_iommu_is_attach_deferred vmlinux EXPORT_SYMBOL_GPL
-0x48d50e79 amd_iommu_register_ppr_notifier vmlinux EXPORT_SYMBOL
-0x76fb08a7 amd_iommu_unregister_ppr_notifier vmlinux EXPORT_SYMBOL
-0xd6226bac amd_iommu_domain_direct_map vmlinux EXPORT_SYMBOL
-0x55748371 amd_iommu_domain_enable_v2 vmlinux EXPORT_SYMBOL
-0x88d33637 amd_iommu_flush_page vmlinux EXPORT_SYMBOL
-0x88ddc692 amd_iommu_flush_tlb vmlinux EXPORT_SYMBOL
-0x415275a5 amd_iommu_domain_set_gcr3 vmlinux EXPORT_SYMBOL
-0x769a65e3 amd_iommu_domain_clear_gcr3 vmlinux EXPORT_SYMBOL
-0x6b5ec055 amd_iommu_complete_ppr vmlinux EXPORT_SYMBOL
-0xaa14d377 amd_iommu_device_info vmlinux EXPORT_SYMBOL
-0xad1036a2 amd_iommu_activate_guest_mode vmlinux EXPORT_SYMBOL
-0x00a4b044 amd_iommu_deactivate_guest_mode vmlinux EXPORT_SYMBOL
-0xa38f21b9 amd_iommu_update_ga vmlinux EXPORT_SYMBOL
-0x053671d4 amd_iommu_snp_en vmlinux EXPORT_SYMBOL
-0xafd5ff2c amd_iommu_v2_supported vmlinux EXPORT_SYMBOL
-0xa9c72303 amd_iommu_pc_get_max_banks vmlinux EXPORT_SYMBOL
-0xfdfb792f amd_iommu_pc_supported vmlinux EXPORT_SYMBOL
-0xa1bedd72 amd_iommu_pc_get_max_counters vmlinux EXPORT_SYMBOL
-0x0a502c98 dmar_platform_optin vmlinux EXPORT_SYMBOL_GPL
-0x36b5497e intel_iommu_enabled vmlinux EXPORT_SYMBOL_GPL
-0x0c7a03a8 iova_bitmap_alloc vmlinux EXPORT_SYMBOL_GPL IOMMUFD
-0x680bea5b iova_bitmap_free vmlinux EXPORT_SYMBOL_GPL IOMMUFD
-0x611565b4 iova_bitmap_for_each vmlinux EXPORT_SYMBOL_GPL IOMMUFD
-0x7d2ed4c3 iova_bitmap_set vmlinux EXPORT_SYMBOL_GPL IOMMUFD
-0xe64e6253 iommu_device_register vmlinux EXPORT_SYMBOL_GPL
-0xd85d36b3 iommu_device_unregister vmlinux EXPORT_SYMBOL_GPL
-0xa18b8078 dev_iommu_priv_set vmlinux EXPORT_SYMBOL_GPL
-0x7006586e iommu_get_group_resv_regions vmlinux EXPORT_SYMBOL_GPL
-0x8d22bb58 iommu_group_alloc vmlinux EXPORT_SYMBOL_GPL
-0xd55ad93b iommu_group_get_iommudata vmlinux EXPORT_SYMBOL_GPL
-0xc66b77b1 iommu_group_set_iommudata vmlinux EXPORT_SYMBOL_GPL
-0xbcdd5b99 iommu_group_set_name vmlinux EXPORT_SYMBOL_GPL
-0x676316c4 __acpi_rmrr_device_create_direct_mappings vmlinux EXPORT_SYMBOL_GPL
-0x989dc0cf iommu_group_add_device vmlinux EXPORT_SYMBOL_GPL
-0x217b1297 iommu_group_remove_device vmlinux EXPORT_SYMBOL_GPL
-0x6421cf47 iommu_group_for_each_dev vmlinux EXPORT_SYMBOL_GPL
-0x1e6489c0 iommu_group_get vmlinux EXPORT_SYMBOL_GPL
-0x4d6d0bbc iommu_group_ref_get vmlinux EXPORT_SYMBOL_GPL
-0x89485687 iommu_group_put vmlinux EXPORT_SYMBOL_GPL
-0x6e7943ec iommu_group_id vmlinux EXPORT_SYMBOL_GPL
-0xccf92fa3 generic_device_group vmlinux EXPORT_SYMBOL_GPL
-0xa237425f generic_single_device_group vmlinux EXPORT_SYMBOL_GPL
-0x98188e3d pci_device_group vmlinux EXPORT_SYMBOL_GPL
-0xf7234a26 fsl_mc_device_group vmlinux EXPORT_SYMBOL_GPL
-0xac6cce75 iommu_present vmlinux EXPORT_SYMBOL_GPL
-0x01f7f761 device_iommu_capable vmlinux EXPORT_SYMBOL_GPL
-0x6d49c8ed iommu_group_has_isolated_msi vmlinux EXPORT_SYMBOL_GPL
-0x44fc6621 iommu_set_fault_handler vmlinux EXPORT_SYMBOL_GPL
-0x85482da0 iommu_domain_alloc vmlinux EXPORT_SYMBOL_GPL
-0x09f92e71 iommu_domain_free vmlinux EXPORT_SYMBOL_GPL
-0xda729c54 iommu_attach_device vmlinux EXPORT_SYMBOL_GPL
-0xc586eee9 iommu_detach_device vmlinux EXPORT_SYMBOL_GPL
-0x2d6538b7 iommu_get_domain_for_dev vmlinux EXPORT_SYMBOL_GPL
-0x31559cc5 iommu_attach_group vmlinux EXPORT_SYMBOL_GPL
-0xb76ddddd iommu_group_replace_domain vmlinux EXPORT_SYMBOL_GPL IOMMUFD_INTERNAL
-0x74e09ff0 iommu_detach_group vmlinux EXPORT_SYMBOL_GPL
-0x59437d0c iommu_iova_to_phys vmlinux EXPORT_SYMBOL_GPL
-0xc5ef0857 iommu_pgsize vmlinux EXPORT_SYMBOL_GPL
-0xcf0ac32d iommu_map vmlinux EXPORT_SYMBOL_GPL
-0xc412531b iommu_unmap vmlinux EXPORT_SYMBOL_GPL
-0x38f0c2dc iommu_unmap_fast vmlinux EXPORT_SYMBOL_GPL
-0xd90ca0a0 iommu_map_sg vmlinux EXPORT_SYMBOL_GPL
-0xb4bd8e2a report_iommu_fault vmlinux EXPORT_SYMBOL_GPL
-0x621468c3 iommu_enable_nesting vmlinux EXPORT_SYMBOL_GPL
-0x2e638ea0 iommu_set_pgtable_quirks vmlinux EXPORT_SYMBOL_GPL
-0xc4635947 iommu_support_dirty_log vmlinux EXPORT_SYMBOL_GPL
-0x2d33436a iommu_switch_dirty_log vmlinux EXPORT_SYMBOL_GPL
-0x8b9e1ff7 iommu_sync_dirty_log vmlinux EXPORT_SYMBOL_GPL
-0x61e977a8 iommu_clear_dirty_log vmlinux EXPORT_SYMBOL_GPL
-0x5ec47bf8 iommu_get_resv_regions vmlinux EXPORT_SYMBOL_GPL
-0xf1b78bb3 iommu_put_resv_regions vmlinux EXPORT_SYMBOL
-0x88faa98a iommu_alloc_resv_region vmlinux EXPORT_SYMBOL_GPL
-0xc3ea5305 iommu_default_passthrough vmlinux EXPORT_SYMBOL_GPL
-0x1472606b iommu_fwspec_init vmlinux EXPORT_SYMBOL_GPL
-0x32420e53 iommu_fwspec_free vmlinux EXPORT_SYMBOL_GPL
-0x9f051ca6 iommu_fwspec_add_ids vmlinux EXPORT_SYMBOL_GPL
-0xb29589a9 iommu_dev_enable_feature vmlinux EXPORT_SYMBOL_GPL
-0x398a6210 iommu_dev_disable_feature vmlinux EXPORT_SYMBOL_GPL
-0x0cc9d36c iommu_group_claim_dma_owner vmlinux EXPORT_SYMBOL_GPL
-0x57874635 iommu_device_claim_dma_owner vmlinux EXPORT_SYMBOL_GPL
-0xe3e423ac iommu_group_release_dma_owner vmlinux EXPORT_SYMBOL_GPL
-0xac8a0244 iommu_device_release_dma_owner vmlinux EXPORT_SYMBOL_GPL
-0xf5a067bf iommu_group_dma_owner_claimed vmlinux EXPORT_SYMBOL_GPL
-0xa268c6d7 iommu_attach_device_pasid vmlinux EXPORT_SYMBOL_GPL
-0x99ef543e iommu_detach_device_pasid vmlinux EXPORT_SYMBOL_GPL
-0xa9070798 iommu_get_domain_for_dev_pasid vmlinux EXPORT_SYMBOL_GPL
-0x5583f923 iommu_alloc_global_pasid vmlinux EXPORT_SYMBOL_GPL
-0xfa13f45f iommu_free_global_pasid vmlinux EXPORT_SYMBOL_GPL
-0xc803b6d1 __tracepoint_add_device_to_group vmlinux EXPORT_SYMBOL_GPL
-0x0df84db8 __traceiter_add_device_to_group vmlinux EXPORT_SYMBOL_GPL
-0x594e24df __SCK__tp_func_add_device_to_group vmlinux EXPORT_SYMBOL_GPL
-0x422e578a __SCT__tp_func_add_device_to_group vmlinux EXPORT_SYMBOL_GPL
-0xe5187839 __tracepoint_remove_device_from_group vmlinux EXPORT_SYMBOL_GPL
-0xa6041a0d __traceiter_remove_device_from_group vmlinux EXPORT_SYMBOL_GPL
-0x5d794abf __SCK__tp_func_remove_device_from_group vmlinux EXPORT_SYMBOL_GPL
-0x2b3acc3b __SCT__tp_func_remove_device_from_group vmlinux EXPORT_SYMBOL_GPL
-0xf3dbf28e __tracepoint_attach_device_to_domain vmlinux EXPORT_SYMBOL_GPL
-0x1bcb475f __traceiter_attach_device_to_domain vmlinux EXPORT_SYMBOL_GPL
-0x2f4c7bb9 __SCK__tp_func_attach_device_to_domain vmlinux EXPORT_SYMBOL_GPL
-0x2d89b1ad __SCT__tp_func_attach_device_to_domain vmlinux EXPORT_SYMBOL_GPL
-0xf2c078a2 __tracepoint_map vmlinux EXPORT_SYMBOL_GPL
-0x71c059d8 __traceiter_map vmlinux EXPORT_SYMBOL_GPL
-0xd911d617 __SCK__tp_func_map vmlinux EXPORT_SYMBOL_GPL
-0xdb62dc67 __SCT__tp_func_map vmlinux EXPORT_SYMBOL_GPL
-0x2999e1f6 __tracepoint_unmap vmlinux EXPORT_SYMBOL_GPL
-0xd3ec851c __traceiter_unmap vmlinux EXPORT_SYMBOL_GPL
-0x81451e35 __SCK__tp_func_unmap vmlinux EXPORT_SYMBOL_GPL
-0x39ded14f __SCT__tp_func_unmap vmlinux EXPORT_SYMBOL_GPL
-0x21155d5e __tracepoint_io_page_fault vmlinux EXPORT_SYMBOL_GPL
-0x97938290 __traceiter_io_page_fault vmlinux EXPORT_SYMBOL_GPL
-0x62a15fb9 __SCK__tp_func_io_page_fault vmlinux EXPORT_SYMBOL_GPL
-0x8335ca43 __SCT__tp_func_io_page_fault vmlinux EXPORT_SYMBOL_GPL
-0x018b41ae iommu_device_sysfs_add vmlinux EXPORT_SYMBOL_GPL
-0x74f08918 iommu_device_sysfs_remove vmlinux EXPORT_SYMBOL_GPL
-0x62ab64f4 iommu_get_msi_cookie vmlinux EXPORT_SYMBOL
-0x7a37f787 iommu_dma_get_resv_regions vmlinux EXPORT_SYMBOL
-0x367317d0 iova_reserve_domain_addr vmlinux EXPORT_SYMBOL_GPL
-0x776b1875 iommu_setup_dma_ops vmlinux EXPORT_SYMBOL_GPL
-0x070c153d alloc_io_pgtable_ops vmlinux EXPORT_SYMBOL_GPL
-0x535ad4fa free_io_pgtable_ops vmlinux EXPORT_SYMBOL_GPL
-0x4043757f init_iova_domain vmlinux EXPORT_SYMBOL_GPL
-0xd27eeb4b alloc_iova vmlinux EXPORT_SYMBOL_GPL
-0x79f1aa44 find_iova vmlinux EXPORT_SYMBOL_GPL
-0xdf1be5e1 __free_iova vmlinux EXPORT_SYMBOL_GPL
-0x2e9ec24d free_iova vmlinux EXPORT_SYMBOL_GPL
-0x36ac17ab alloc_iova_fast vmlinux EXPORT_SYMBOL_GPL
-0xd138c08a free_iova_fast vmlinux EXPORT_SYMBOL_GPL
-0x311c6da4 put_iova_domain vmlinux EXPORT_SYMBOL_GPL
-0xdead2e78 reserve_iova vmlinux EXPORT_SYMBOL_GPL
-0x8f0b781d iova_domain_init_rcaches vmlinux EXPORT_SYMBOL_GPL
-0x438d8df2 iova_cache_get vmlinux EXPORT_SYMBOL_GPL
-0xc7061ef3 iova_cache_put vmlinux EXPORT_SYMBOL_GPL
-0x2e2df7f4 irq_remapping_cap vmlinux EXPORT_SYMBOL_GPL
-0x9b73ac5b iommu_sva_bind_device vmlinux EXPORT_SYMBOL_GPL
-0xf139ae40 iommu_sva_unbind_device vmlinux EXPORT_SYMBOL_GPL
-0x3a581b7a iommu_sva_get_pasid vmlinux EXPORT_SYMBOL_GPL
-0xf9edd5c4 iopf_free_group vmlinux EXPORT_SYMBOL_GPL
-0xb3fe073e iommu_report_device_fault vmlinux EXPORT_SYMBOL_GPL
-0xe5a8e671 iopf_queue_flush_dev vmlinux EXPORT_SYMBOL_GPL
-0xb1c2b572 iopf_group_response vmlinux EXPORT_SYMBOL_GPL
-0x38a421c0 iopf_queue_discard_partial vmlinux EXPORT_SYMBOL_GPL
-0x67e3536b iopf_queue_add_device vmlinux EXPORT_SYMBOL_GPL
-0x1142a005 iopf_queue_remove_device vmlinux EXPORT_SYMBOL_GPL
-0x1221e02f iopf_queue_alloc vmlinux EXPORT_SYMBOL_GPL
-0xbce347b5 iopf_queue_free vmlinux EXPORT_SYMBOL_GPL
-0x2e439142 drm_get_panel_orientation_quirk vmlinux EXPORT_SYMBOL
-0xf58ef074 of_find_mipi_dsi_device_by_node vmlinux EXPORT_SYMBOL
-0xbe08210b mipi_dsi_device_register_full vmlinux EXPORT_SYMBOL
-0xbed6355e mipi_dsi_device_unregister vmlinux EXPORT_SYMBOL
-0x89202b08 devm_mipi_dsi_device_register_full vmlinux EXPORT_SYMBOL_GPL
-0x9a89622a of_find_mipi_dsi_host_by_node vmlinux EXPORT_SYMBOL
-0x009c00be mipi_dsi_host_register vmlinux EXPORT_SYMBOL
-0x30bd9c7d mipi_dsi_host_unregister vmlinux EXPORT_SYMBOL
-0xe137a5a1 mipi_dsi_attach vmlinux EXPORT_SYMBOL
-0xae1dbf8b mipi_dsi_detach vmlinux EXPORT_SYMBOL
-0x63a3123f devm_mipi_dsi_attach vmlinux EXPORT_SYMBOL_GPL
-0x238b099f mipi_dsi_packet_format_is_short vmlinux EXPORT_SYMBOL
-0xadbeed61 mipi_dsi_packet_format_is_long vmlinux EXPORT_SYMBOL
-0x23daa989 mipi_dsi_create_packet vmlinux EXPORT_SYMBOL
-0x8eaf837b mipi_dsi_shutdown_peripheral vmlinux EXPORT_SYMBOL
-0x822b6d39 mipi_dsi_turn_on_peripheral vmlinux EXPORT_SYMBOL
-0x30c211b1 mipi_dsi_set_maximum_return_packet_size vmlinux EXPORT_SYMBOL
-0x29ff1153 mipi_dsi_compression_mode vmlinux EXPORT_SYMBOL
-0x4b5d9192 mipi_dsi_picture_parameter_set vmlinux EXPORT_SYMBOL
-0x17ce27b1 mipi_dsi_generic_write vmlinux EXPORT_SYMBOL
-0x459409c1 mipi_dsi_generic_read vmlinux EXPORT_SYMBOL
-0x8455e890 mipi_dsi_dcs_write_buffer vmlinux EXPORT_SYMBOL
-0xae29b19c mipi_dsi_dcs_write vmlinux EXPORT_SYMBOL
-0xfb892332 mipi_dsi_dcs_read vmlinux EXPORT_SYMBOL
-0xef0feaa7 mipi_dsi_dcs_nop vmlinux EXPORT_SYMBOL
-0x4fc96a0c mipi_dsi_dcs_soft_reset vmlinux EXPORT_SYMBOL
-0x007bd2ac mipi_dsi_dcs_get_power_mode vmlinux EXPORT_SYMBOL
-0x86c09404 mipi_dsi_dcs_get_pixel_format vmlinux EXPORT_SYMBOL
-0xe8380934 mipi_dsi_dcs_enter_sleep_mode vmlinux EXPORT_SYMBOL
-0x6975b0f3 mipi_dsi_dcs_exit_sleep_mode vmlinux EXPORT_SYMBOL
-0x96a8bb32 mipi_dsi_dcs_set_display_off vmlinux EXPORT_SYMBOL
-0xdaab3f05 mipi_dsi_dcs_set_display_on vmlinux EXPORT_SYMBOL
-0x76fa6668 mipi_dsi_dcs_set_column_address vmlinux EXPORT_SYMBOL
-0x64c6b9d6 mipi_dsi_dcs_set_page_address vmlinux EXPORT_SYMBOL
-0x6911d82d mipi_dsi_dcs_set_tear_off vmlinux EXPORT_SYMBOL
-0x54c247f5 mipi_dsi_dcs_set_tear_on vmlinux EXPORT_SYMBOL
-0xaad25341 mipi_dsi_dcs_set_pixel_format vmlinux EXPORT_SYMBOL
-0x4537522b mipi_dsi_dcs_set_tear_scanline vmlinux EXPORT_SYMBOL
-0x794bd18c mipi_dsi_dcs_set_display_brightness vmlinux EXPORT_SYMBOL
-0xba0107fc mipi_dsi_dcs_get_display_brightness vmlinux EXPORT_SYMBOL
-0xefc9686a mipi_dsi_dcs_set_display_brightness_large vmlinux EXPORT_SYMBOL
-0xde14fb30 mipi_dsi_dcs_get_display_brightness_large vmlinux EXPORT_SYMBOL
-0xf21b115f mipi_dsi_driver_register_full vmlinux EXPORT_SYMBOL
-0x887c9cce mipi_dsi_driver_unregister vmlinux EXPORT_SYMBOL
-0x1a39d18b vga_switcheroo_register_handler vmlinux EXPORT_SYMBOL
-0x8eaf2a5f vga_switcheroo_unregister_handler vmlinux EXPORT_SYMBOL
-0xbb8e169a vga_switcheroo_handler_flags vmlinux EXPORT_SYMBOL
-0xe58c8d47 vga_switcheroo_register_client vmlinux EXPORT_SYMBOL
-0x3d2b7d85 vga_switcheroo_register_audio_client vmlinux EXPORT_SYMBOL
-0x1ba17a87 vga_switcheroo_client_probe_defer vmlinux EXPORT_SYMBOL
-0x2c876627 vga_switcheroo_get_client_state vmlinux EXPORT_SYMBOL
-0x6b19aff6 vga_switcheroo_unregister_client vmlinux EXPORT_SYMBOL
-0x63562a09 vga_switcheroo_client_fb_set vmlinux EXPORT_SYMBOL
-0xeb852dec vga_switcheroo_lock_ddc vmlinux EXPORT_SYMBOL
-0x79ae39bf vga_switcheroo_unlock_ddc vmlinux EXPORT_SYMBOL
-0x1a63af34 vga_switcheroo_process_delayed_switch vmlinux EXPORT_SYMBOL
-0x75c7cf3c vga_switcheroo_init_domain_pm_ops vmlinux EXPORT_SYMBOL
-0x7562e35a vga_switcheroo_fini_domain_pm_ops vmlinux EXPORT_SYMBOL
-0x62ac4f4e cn_netlink_send_mult vmlinux EXPORT_SYMBOL_GPL
-0xe8bc40c5 cn_netlink_send vmlinux EXPORT_SYMBOL_GPL
-0xc5a79c8f cn_add_callback vmlinux EXPORT_SYMBOL_GPL
-0x07483e13 cn_del_callback vmlinux EXPORT_SYMBOL_GPL
-0x18c334bc component_compare_of vmlinux EXPORT_SYMBOL_GPL
-0x192ce242 component_release_of vmlinux EXPORT_SYMBOL_GPL
-0x8f1e69f7 component_compare_dev vmlinux EXPORT_SYMBOL_GPL
-0x9e6b022c component_compare_dev_name vmlinux EXPORT_SYMBOL_GPL
-0x2a7b6e62 component_match_add_release vmlinux EXPORT_SYMBOL
-0xdb06b489 component_match_add_typed vmlinux EXPORT_SYMBOL
-0x6138d4d8 component_master_add_with_match vmlinux EXPORT_SYMBOL_GPL
-0xde5247c9 component_master_del vmlinux EXPORT_SYMBOL_GPL
-0x8d76ba8a component_unbind_all vmlinux EXPORT_SYMBOL_GPL
-0x040609f1 component_bind_all vmlinux EXPORT_SYMBOL_GPL
-0xb84bc7ad component_add_typed vmlinux EXPORT_SYMBOL_GPL
-0x41a45878 component_add vmlinux EXPORT_SYMBOL_GPL
-0x16e92c40 component_del vmlinux EXPORT_SYMBOL_GPL
-0xf5de4f5e fw_devlink_purge_absent_suppliers vmlinux EXPORT_SYMBOL_GPL
-0x29a1491b device_link_wait_removal vmlinux EXPORT_SYMBOL_GPL
-0xf2a6390e device_link_add vmlinux EXPORT_SYMBOL_GPL
-0xcf03edad device_link_del vmlinux EXPORT_SYMBOL_GPL
-0x0d514c52 device_link_remove vmlinux EXPORT_SYMBOL_GPL
-0xe1a54254 dev_driver_string vmlinux EXPORT_SYMBOL
-0xdb57b1f3 device_store_ulong vmlinux EXPORT_SYMBOL_GPL
-0x6a57f2a1 device_show_ulong vmlinux EXPORT_SYMBOL_GPL
-0x0d88daf9 device_store_int vmlinux EXPORT_SYMBOL_GPL
-0xfcec9881 device_show_int vmlinux EXPORT_SYMBOL_GPL
-0xcb445cd4 device_store_bool vmlinux EXPORT_SYMBOL_GPL
-0xb599e102 device_show_bool vmlinux EXPORT_SYMBOL_GPL
-0x448338e6 device_add_groups vmlinux EXPORT_SYMBOL_GPL
-0x1058c708 device_remove_groups vmlinux EXPORT_SYMBOL_GPL
-0x9638e639 devm_device_add_group vmlinux EXPORT_SYMBOL_GPL
-0x9fe10430 devm_device_add_groups vmlinux EXPORT_SYMBOL_GPL
-0x4a475fa3 device_create_file vmlinux EXPORT_SYMBOL_GPL
-0x9ba20946 device_remove_file vmlinux EXPORT_SYMBOL_GPL
-0x2f3d6f4d device_remove_file_self vmlinux EXPORT_SYMBOL_GPL
-0x5b0b4e81 device_create_bin_file vmlinux EXPORT_SYMBOL_GPL
-0xb7ea7e38 device_remove_bin_file vmlinux EXPORT_SYMBOL_GPL
-0xd76f0885 device_initialize vmlinux EXPORT_SYMBOL_GPL
-0x50299057 dev_set_name vmlinux EXPORT_SYMBOL_GPL
-0xe9923823 device_add vmlinux EXPORT_SYMBOL_GPL
-0xee80b27f device_register vmlinux EXPORT_SYMBOL_GPL
-0x9b3c0242 get_device vmlinux EXPORT_SYMBOL_GPL
-0x029438f4 put_device vmlinux EXPORT_SYMBOL_GPL
-0x4c7c38ad kill_device vmlinux EXPORT_SYMBOL_GPL
-0xb0edf021 device_del vmlinux EXPORT_SYMBOL_GPL
-0x302f1392 device_unregister vmlinux EXPORT_SYMBOL_GPL
-0xbd4b7b20 device_for_each_child vmlinux EXPORT_SYMBOL_GPL
-0x65f3b566 device_for_each_child_reverse vmlinux EXPORT_SYMBOL_GPL
-0xec6f71ee device_find_child vmlinux EXPORT_SYMBOL_GPL
-0x5b9c3b97 device_find_child_by_name vmlinux EXPORT_SYMBOL_GPL
-0x671ef352 device_find_any_child vmlinux EXPORT_SYMBOL_GPL
-0x4f3230e9 __root_device_register vmlinux EXPORT_SYMBOL_GPL
-0xab645cf9 root_device_unregister vmlinux EXPORT_SYMBOL_GPL
-0xd6543710 device_create vmlinux EXPORT_SYMBOL_GPL
-0xf70def3b device_create_with_groups vmlinux EXPORT_SYMBOL_GPL
-0x503901c7 device_destroy vmlinux EXPORT_SYMBOL_GPL
-0x18681c95 device_rename vmlinux EXPORT_SYMBOL_GPL
-0xa997aea9 device_move vmlinux EXPORT_SYMBOL_GPL
-0x564ee75f device_change_owner vmlinux EXPORT_SYMBOL_GPL
-0xa37f314b dev_vprintk_emit vmlinux EXPORT_SYMBOL
-0x0d23d132 dev_printk_emit vmlinux EXPORT_SYMBOL
-0xeb8226e5 _dev_printk vmlinux EXPORT_SYMBOL
-0x4321fdde _dev_emerg vmlinux EXPORT_SYMBOL
-0x864b8d80 _dev_alert vmlinux EXPORT_SYMBOL
-0x5df1d22e _dev_crit vmlinux EXPORT_SYMBOL
-0x745b9d1a _dev_err vmlinux EXPORT_SYMBOL
-0xbef002b7 _dev_warn vmlinux EXPORT_SYMBOL
-0xc4a5f1f7 _dev_notice vmlinux EXPORT_SYMBOL
-0xf2e2d8e1 _dev_info vmlinux EXPORT_SYMBOL
-0xe0d392d7 dev_err_probe vmlinux EXPORT_SYMBOL_GPL
-0xdc48c838 set_primary_fwnode vmlinux EXPORT_SYMBOL_GPL
-0x9cf3e7a5 set_secondary_fwnode vmlinux EXPORT_SYMBOL_GPL
-0xe3bd373a device_set_of_node_from_dev vmlinux EXPORT_SYMBOL_GPL
-0x6fb8cca8 device_set_node vmlinux EXPORT_SYMBOL_GPL
-0xb612614e device_match_name vmlinux EXPORT_SYMBOL_GPL
-0xf239bebf device_match_of_node vmlinux EXPORT_SYMBOL_GPL
-0x4142bb76 device_match_fwnode vmlinux EXPORT_SYMBOL_GPL
-0xd59544f6 device_match_devt vmlinux EXPORT_SYMBOL_GPL
-0x327b1a87 device_match_acpi_dev vmlinux EXPORT_SYMBOL
-0xd90e70e9 device_match_acpi_handle vmlinux EXPORT_SYMBOL
-0x66ad2610 device_match_any vmlinux EXPORT_SYMBOL_GPL
-0x9832f3e6 bus_create_file vmlinux EXPORT_SYMBOL_GPL
-0x0ccc9b25 bus_remove_file vmlinux EXPORT_SYMBOL_GPL
-0x19ac3364 bus_for_each_dev vmlinux EXPORT_SYMBOL_GPL
-0x6fdd4d3d bus_find_device vmlinux EXPORT_SYMBOL_GPL
-0x02d9fdf3 bus_for_each_drv vmlinux EXPORT_SYMBOL_GPL
-0x2dd0ab48 bus_rescan_devices vmlinux EXPORT_SYMBOL_GPL
-0x1fcf8791 device_reprobe vmlinux EXPORT_SYMBOL_GPL
-0x4c91289b bus_register vmlinux EXPORT_SYMBOL_GPL
-0x4d46216d bus_unregister vmlinux EXPORT_SYMBOL_GPL
-0x06bb2b47 bus_register_notifier vmlinux EXPORT_SYMBOL_GPL
-0xb0c67f34 bus_unregister_notifier vmlinux EXPORT_SYMBOL_GPL
-0xc8210143 bus_get_kset vmlinux EXPORT_SYMBOL_GPL
-0xcc1a59a1 bus_sort_breadthfirst vmlinux EXPORT_SYMBOL_GPL
-0x2e50ebfb subsys_interface_register vmlinux EXPORT_SYMBOL_GPL
-0x18f64931 subsys_interface_unregister vmlinux EXPORT_SYMBOL_GPL
-0xa0d4835c subsys_system_register vmlinux EXPORT_SYMBOL_GPL
-0xf43aa4ce subsys_virtual_register vmlinux EXPORT_SYMBOL_GPL
-0xe409d18b driver_find vmlinux EXPORT_SYMBOL_GPL
-0x04545cdd bus_get_dev_root vmlinux EXPORT_SYMBOL_GPL
-0xd5349948 driver_deferred_probe_check_state vmlinux EXPORT_SYMBOL_GPL
-0x9c1a19ad device_bind_driver vmlinux EXPORT_SYMBOL_GPL
-0x4484a5a4 wait_for_device_probe vmlinux EXPORT_SYMBOL_GPL
-0x6b8e24f2 device_attach vmlinux EXPORT_SYMBOL_GPL
-0xc193c9a5 device_driver_attach vmlinux EXPORT_SYMBOL_GPL
-0x9a9bf2f7 driver_attach vmlinux EXPORT_SYMBOL_GPL
-0xf1422872 device_release_driver vmlinux EXPORT_SYMBOL_GPL
-0xb9c425de register_syscore_ops vmlinux EXPORT_SYMBOL_GPL
-0xfa1eb910 unregister_syscore_ops vmlinux EXPORT_SYMBOL_GPL
-0xdc97af2e syscore_suspend vmlinux EXPORT_SYMBOL_GPL
-0xe4309905 syscore_resume vmlinux EXPORT_SYMBOL_GPL
-0x373a8dda driver_set_override vmlinux EXPORT_SYMBOL_GPL
-0xad3765ef driver_for_each_device vmlinux EXPORT_SYMBOL_GPL
-0x19f634a1 driver_find_device vmlinux EXPORT_SYMBOL_GPL
-0x5e3fcc46 driver_create_file vmlinux EXPORT_SYMBOL_GPL
-0xd0c11b36 driver_remove_file vmlinux EXPORT_SYMBOL_GPL
-0x3eed2feb driver_register vmlinux EXPORT_SYMBOL_GPL
-0x8e5993fb driver_unregister vmlinux EXPORT_SYMBOL_GPL
-0x42eb4d3f class_create_file_ns vmlinux EXPORT_SYMBOL_GPL
-0x34bf1e55 class_remove_file_ns vmlinux EXPORT_SYMBOL_GPL
-0x362152ee class_register vmlinux EXPORT_SYMBOL_GPL
-0xd25035b0 class_unregister vmlinux EXPORT_SYMBOL_GPL
-0x80f8ed3c class_create vmlinux EXPORT_SYMBOL_GPL
-0x99f5657a class_destroy vmlinux EXPORT_SYMBOL_GPL
-0x7868d80d class_dev_iter_init vmlinux EXPORT_SYMBOL_GPL
-0xf95be23a class_dev_iter_next vmlinux EXPORT_SYMBOL_GPL
-0x12420e33 class_dev_iter_exit vmlinux EXPORT_SYMBOL_GPL
-0xd2588a64 class_for_each_device vmlinux EXPORT_SYMBOL_GPL
-0xd15ddc5e class_find_device vmlinux EXPORT_SYMBOL_GPL
-0xea8bca37 class_interface_register vmlinux EXPORT_SYMBOL_GPL
-0x53e5c03c class_interface_unregister vmlinux EXPORT_SYMBOL_GPL
-0x2a7ae06a show_class_attr_string vmlinux EXPORT_SYMBOL_GPL
-0x32c3cb4e class_compat_register vmlinux EXPORT_SYMBOL_GPL
-0xe5883bd9 class_compat_unregister vmlinux EXPORT_SYMBOL_GPL
-0x805908cb class_compat_create_link vmlinux EXPORT_SYMBOL_GPL
-0x4f268497 class_compat_remove_link vmlinux EXPORT_SYMBOL_GPL
-0xda393bfb class_is_registered vmlinux EXPORT_SYMBOL_GPL
-0x5fb39d65 platform_bus vmlinux EXPORT_SYMBOL_GPL
-0x2077e1cd platform_get_resource vmlinux EXPORT_SYMBOL_GPL
-0xcaca5d2e platform_get_mem_or_io vmlinux EXPORT_SYMBOL_GPL
-0x4ef09b72 devm_platform_get_and_ioremap_resource vmlinux EXPORT_SYMBOL_GPL
-0x16449796 devm_platform_ioremap_resource vmlinux EXPORT_SYMBOL_GPL
-0x91c99120 devm_platform_ioremap_resource_byname vmlinux EXPORT_SYMBOL_GPL
-0x7fe31941 platform_get_irq_optional vmlinux EXPORT_SYMBOL_GPL
-0x3af1c63f platform_get_irq vmlinux EXPORT_SYMBOL_GPL
-0x31fcc43d platform_irq_count vmlinux EXPORT_SYMBOL_GPL
-0x1745b041 devm_platform_get_irqs_affinity vmlinux EXPORT_SYMBOL_GPL
-0xe8458d7a platform_get_resource_byname vmlinux EXPORT_SYMBOL_GPL
-0xb6eb4b2d platform_get_irq_byname vmlinux EXPORT_SYMBOL_GPL
-0x4e703f6c platform_get_irq_byname_optional vmlinux EXPORT_SYMBOL_GPL
-0x3837f931 platform_add_devices vmlinux EXPORT_SYMBOL_GPL
-0x471f2029 platform_device_put vmlinux EXPORT_SYMBOL_GPL
-0x3512f713 platform_device_alloc vmlinux EXPORT_SYMBOL_GPL
-0x68173193 platform_device_add_resources vmlinux EXPORT_SYMBOL_GPL
-0x0f3ba713 platform_device_add_data vmlinux EXPORT_SYMBOL_GPL
-0xc39c8010 platform_device_add vmlinux EXPORT_SYMBOL_GPL
-0xc21b342f platform_device_del vmlinux EXPORT_SYMBOL_GPL
-0x1bf44498 platform_device_register vmlinux EXPORT_SYMBOL_GPL
-0x809e9aa2 platform_device_unregister vmlinux EXPORT_SYMBOL_GPL
-0xf211024a platform_device_register_full vmlinux EXPORT_SYMBOL_GPL
-0xa60f578f __platform_driver_register vmlinux EXPORT_SYMBOL_GPL
-0x526eaac6 platform_driver_unregister vmlinux EXPORT_SYMBOL_GPL
-0x7375021d __platform_driver_probe vmlinux EXPORT_SYMBOL_GPL
-0xfbe246a5 __platform_create_bundle vmlinux EXPORT_SYMBOL_GPL
-0xc302261e __platform_register_drivers vmlinux EXPORT_SYMBOL_GPL
-0x92c22939 platform_unregister_drivers vmlinux EXPORT_SYMBOL_GPL
-0x54bc147a platform_bus_type vmlinux EXPORT_SYMBOL_GPL
-0x4b1b235b platform_find_device_by_driver vmlinux EXPORT_SYMBOL_GPL
-0x509eaed1 cpu_subsys vmlinux EXPORT_SYMBOL_GPL
-0x21f12a34 get_cpu_device vmlinux EXPORT_SYMBOL_GPL
-0x288f1484 cpu_device_create vmlinux EXPORT_SYMBOL_GPL
-0x2ebe3135 cpu_is_hotpluggable vmlinux EXPORT_SYMBOL_GPL
-0x0770136b firmware_kobj vmlinux EXPORT_SYMBOL_GPL
-0xb5edfe43 __devres_alloc_node vmlinux EXPORT_SYMBOL_GPL
-0x3505a8e0 devres_for_each_res vmlinux EXPORT_SYMBOL_GPL
-0xe93e49c3 devres_free vmlinux EXPORT_SYMBOL_GPL
-0xbfa80495 devres_add vmlinux EXPORT_SYMBOL_GPL
-0x42b2597c devres_find vmlinux EXPORT_SYMBOL_GPL
-0x967fdfdb devres_get vmlinux EXPORT_SYMBOL_GPL
-0x73fb71f7 devres_remove vmlinux EXPORT_SYMBOL_GPL
-0x7a9b1f9a devres_destroy vmlinux EXPORT_SYMBOL_GPL
-0x75cd8683 devres_release vmlinux EXPORT_SYMBOL_GPL
-0x8aaa0b00 devres_open_group vmlinux EXPORT_SYMBOL_GPL
-0x4319cb28 devres_close_group vmlinux EXPORT_SYMBOL_GPL
-0x02d03018 devres_remove_group vmlinux EXPORT_SYMBOL_GPL
-0xb0104269 devres_release_group vmlinux EXPORT_SYMBOL_GPL
-0x50042d37 __devm_add_action vmlinux EXPORT_SYMBOL_GPL
-0x7ad4b4d4 devm_remove_action vmlinux EXPORT_SYMBOL_GPL
-0xe35d2e42 devm_release_action vmlinux EXPORT_SYMBOL_GPL
-0xe1f3237d devm_kmalloc vmlinux EXPORT_SYMBOL_GPL
-0xe7fe81c3 devm_krealloc vmlinux EXPORT_SYMBOL_GPL
-0x92d3eb2d devm_kstrdup vmlinux EXPORT_SYMBOL_GPL
-0x3e2281d6 devm_kstrdup_const vmlinux EXPORT_SYMBOL_GPL
-0x6c8fdce0 devm_kvasprintf vmlinux EXPORT_SYMBOL
-0xa3f651ba devm_kasprintf vmlinux EXPORT_SYMBOL_GPL
-0x2b6224ea devm_kfree vmlinux EXPORT_SYMBOL_GPL
-0x98c9f4db devm_kmemdup vmlinux EXPORT_SYMBOL_GPL
-0x016a9f2c devm_get_free_pages vmlinux EXPORT_SYMBOL_GPL
-0x636e3994 devm_free_pages vmlinux EXPORT_SYMBOL_GPL
-0x357c8fc1 __devm_alloc_percpu vmlinux EXPORT_SYMBOL_GPL
-0xc2de3630 devm_free_percpu vmlinux EXPORT_SYMBOL_GPL
-0x8e8c8a89 attribute_container_classdev_to_container vmlinux EXPORT_SYMBOL_GPL
-0x0d8ff45a attribute_container_register vmlinux EXPORT_SYMBOL_GPL
-0xc4c61b05 attribute_container_unregister vmlinux EXPORT_SYMBOL_GPL
-0xce42b43b attribute_container_find_class_device vmlinux EXPORT_SYMBOL_GPL
-0xac0cff13 transport_class_register vmlinux EXPORT_SYMBOL_GPL
-0x0a6b940c transport_class_unregister vmlinux EXPORT_SYMBOL_GPL
-0x62ee89d7 anon_transport_class_register vmlinux EXPORT_SYMBOL_GPL
-0xe375411a anon_transport_class_unregister vmlinux EXPORT_SYMBOL_GPL
-0xed5959ee transport_setup_device vmlinux EXPORT_SYMBOL_GPL
-0x370da405 transport_add_device vmlinux EXPORT_SYMBOL_GPL
-0x5809aa96 transport_configure_device vmlinux EXPORT_SYMBOL_GPL
-0x4ad83058 transport_remove_device vmlinux EXPORT_SYMBOL_GPL
-0x1c6d18e1 transport_destroy_device vmlinux EXPORT_SYMBOL_GPL
-0x6de9e7d6 __dev_fwnode vmlinux EXPORT_SYMBOL_GPL
-0x2dfa5a41 __dev_fwnode_const vmlinux EXPORT_SYMBOL_GPL
-0x644288e7 device_property_present vmlinux EXPORT_SYMBOL_GPL
-0xbd24c8fa fwnode_property_present vmlinux EXPORT_SYMBOL_GPL
-0x720a9d5c device_property_read_u8_array vmlinux EXPORT_SYMBOL_GPL
-0x6f4dba69 device_property_read_u16_array vmlinux EXPORT_SYMBOL_GPL
-0x17d325e9 device_property_read_u32_array vmlinux EXPORT_SYMBOL_GPL
-0xf61e1f67 device_property_read_u64_array vmlinux EXPORT_SYMBOL_GPL
-0x70f2e0e0 device_property_read_string_array vmlinux EXPORT_SYMBOL_GPL
-0x8b9dd561 device_property_read_string vmlinux EXPORT_SYMBOL_GPL
-0x91240e07 device_property_match_string vmlinux EXPORT_SYMBOL_GPL
-0xe79f9c9b fwnode_property_read_u8_array vmlinux EXPORT_SYMBOL_GPL
-0x1a2954b2 fwnode_property_read_u16_array vmlinux EXPORT_SYMBOL_GPL
-0x02590b3d fwnode_property_read_u32_array vmlinux EXPORT_SYMBOL_GPL
-0xb1aaac4d fwnode_property_read_u64_array vmlinux EXPORT_SYMBOL_GPL
-0x13d902ac fwnode_property_read_string_array vmlinux EXPORT_SYMBOL_GPL
-0x8707d08e fwnode_property_read_string vmlinux EXPORT_SYMBOL_GPL
-0x00119cc4 fwnode_property_match_string vmlinux EXPORT_SYMBOL_GPL
-0x3a6724af fwnode_property_get_reference_args vmlinux EXPORT_SYMBOL_GPL
-0xfed91ca3 fwnode_find_reference vmlinux EXPORT_SYMBOL_GPL
-0x18c60f07 fwnode_get_name vmlinux EXPORT_SYMBOL_GPL
-0x24b840f4 fwnode_get_parent vmlinux EXPORT_SYMBOL_GPL
-0x184bebd5 fwnode_get_next_parent vmlinux EXPORT_SYMBOL_GPL
-0xf05b25c9 fwnode_count_parents vmlinux EXPORT_SYMBOL_GPL
-0x77c3195f fwnode_get_nth_parent vmlinux EXPORT_SYMBOL_GPL
-0x6ca83e08 fwnode_get_next_child_node vmlinux EXPORT_SYMBOL_GPL
-0x667867da fwnode_get_next_available_child_node vmlinux EXPORT_SYMBOL_GPL
-0xc3dfeab3 device_get_next_child_node vmlinux EXPORT_SYMBOL_GPL
-0x18581534 fwnode_get_named_child_node vmlinux EXPORT_SYMBOL_GPL
-0x646cf56d device_get_named_child_node vmlinux EXPORT_SYMBOL_GPL
-0x0218024f fwnode_handle_get vmlinux EXPORT_SYMBOL_GPL
-0x132e2100 fwnode_handle_put vmlinux EXPORT_SYMBOL_GPL
-0xf2cf9cdd fwnode_device_is_available vmlinux EXPORT_SYMBOL_GPL
-0xd7e801ac device_get_child_node_count vmlinux EXPORT_SYMBOL_GPL
-0x49ab6387 device_dma_supported vmlinux EXPORT_SYMBOL_GPL
-0xb730f570 device_get_dma_attr vmlinux EXPORT_SYMBOL_GPL
-0xfee888c6 fwnode_get_phy_mode vmlinux EXPORT_SYMBOL_GPL
-0xec775e12 device_get_phy_mode vmlinux EXPORT_SYMBOL_GPL
-0xea47618f fwnode_iomap vmlinux EXPORT_SYMBOL
-0xf7f41fe3 fwnode_irq_get vmlinux EXPORT_SYMBOL
-0x8b387559 fwnode_irq_get_byname vmlinux EXPORT_SYMBOL
-0x18b35496 fwnode_graph_get_next_endpoint vmlinux EXPORT_SYMBOL_GPL
-0x4215b138 fwnode_graph_get_port_parent vmlinux EXPORT_SYMBOL_GPL
-0x5de572ca fwnode_graph_get_remote_port_parent vmlinux EXPORT_SYMBOL_GPL
-0x7df166cc fwnode_graph_get_remote_port vmlinux EXPORT_SYMBOL_GPL
-0xafcbceb1 fwnode_graph_get_remote_endpoint vmlinux EXPORT_SYMBOL_GPL
-0x722f78ab fwnode_graph_get_endpoint_by_id vmlinux EXPORT_SYMBOL_GPL
-0xee5a16fb fwnode_graph_get_endpoint_count vmlinux EXPORT_SYMBOL_GPL
-0x6ed2b505 fwnode_graph_parse_endpoint vmlinux EXPORT_SYMBOL
-0x98b40bd7 device_get_match_data vmlinux EXPORT_SYMBOL_GPL
-0x493b9b58 fwnode_connection_find_match vmlinux EXPORT_SYMBOL_GPL
-0xa800dbc5 fwnode_connection_find_matches vmlinux EXPORT_SYMBOL_GPL
-0x1d2e0816 is_software_node vmlinux EXPORT_SYMBOL_GPL
-0x78d24eeb to_software_node vmlinux EXPORT_SYMBOL_GPL
-0x48cdb9a0 software_node_fwnode vmlinux EXPORT_SYMBOL_GPL
-0x53c089f5 property_entries_dup vmlinux EXPORT_SYMBOL_GPL
-0x01a0cb78 property_entries_free vmlinux EXPORT_SYMBOL_GPL
-0xda8e1302 software_node_find_by_name vmlinux EXPORT_SYMBOL_GPL
-0x7a9e4c23 software_node_register_node_group vmlinux EXPORT_SYMBOL_GPL
-0x8fc12788 software_node_unregister_node_group vmlinux EXPORT_SYMBOL_GPL
-0xb48f0638 software_node_register vmlinux EXPORT_SYMBOL_GPL
-0x0cbe3ee2 software_node_unregister vmlinux EXPORT_SYMBOL_GPL
-0x26488ea9 fwnode_create_software_node vmlinux EXPORT_SYMBOL_GPL
-0xcb3b4a30 fwnode_remove_software_node vmlinux EXPORT_SYMBOL_GPL
-0xde65c976 device_add_software_node vmlinux EXPORT_SYMBOL_GPL
-0x6d4597d6 device_remove_software_node vmlinux EXPORT_SYMBOL_GPL
-0x72fb17b9 device_create_managed_software_node vmlinux EXPORT_SYMBOL_GPL
-0x60a8c60c auxiliary_device_init vmlinux EXPORT_SYMBOL_GPL
-0x9dc0ba07 __auxiliary_device_add vmlinux EXPORT_SYMBOL_GPL
-0xfb5d3110 auxiliary_find_device vmlinux EXPORT_SYMBOL_GPL
-0x73387d5d __auxiliary_driver_register vmlinux EXPORT_SYMBOL_GPL
-0x1c569188 auxiliary_driver_unregister vmlinux EXPORT_SYMBOL_GPL
-0xfb6eedf9 power_group_name vmlinux EXPORT_SYMBOL_GPL
-0x930ca594 pm_generic_runtime_suspend vmlinux EXPORT_SYMBOL_GPL
-0xee1dceeb pm_generic_runtime_resume vmlinux EXPORT_SYMBOL_GPL
-0xb0e0969c pm_generic_suspend_noirq vmlinux EXPORT_SYMBOL_GPL
-0x147444f9 pm_generic_suspend_late vmlinux EXPORT_SYMBOL_GPL
-0xc876db84 pm_generic_suspend vmlinux EXPORT_SYMBOL_GPL
-0x76c7ee5e pm_generic_freeze_noirq vmlinux EXPORT_SYMBOL_GPL
-0x3fd534c3 pm_generic_freeze_late vmlinux EXPORT_SYMBOL_GPL
-0x185dd343 pm_generic_freeze vmlinux EXPORT_SYMBOL_GPL
-0x37dd15de pm_generic_poweroff_noirq vmlinux EXPORT_SYMBOL_GPL
-0x2154d468 pm_generic_poweroff_late vmlinux EXPORT_SYMBOL_GPL
-0x7b695561 pm_generic_poweroff vmlinux EXPORT_SYMBOL_GPL
-0x6ff3d921 pm_generic_thaw_noirq vmlinux EXPORT_SYMBOL_GPL
-0x1be8385e pm_generic_thaw_early vmlinux EXPORT_SYMBOL_GPL
-0x571641c7 pm_generic_thaw vmlinux EXPORT_SYMBOL_GPL
-0xda8c5085 pm_generic_resume_noirq vmlinux EXPORT_SYMBOL_GPL
-0xae97b1fa pm_generic_resume_early vmlinux EXPORT_SYMBOL_GPL
-0x4acdc354 pm_generic_resume vmlinux EXPORT_SYMBOL_GPL
-0x3fe9533c pm_generic_restore_noirq vmlinux EXPORT_SYMBOL_GPL
-0x4bf2b243 pm_generic_restore_early vmlinux EXPORT_SYMBOL_GPL
-0x9e47394c pm_generic_restore vmlinux EXPORT_SYMBOL_GPL
-0xf546aaac dev_pm_get_subsys_data vmlinux EXPORT_SYMBOL_GPL
-0xf268c534 dev_pm_put_subsys_data vmlinux EXPORT_SYMBOL_GPL
-0x09b3ea0d dev_pm_domain_attach vmlinux EXPORT_SYMBOL_GPL
-0x69e87b29 dev_pm_domain_attach_by_id vmlinux EXPORT_SYMBOL_GPL
-0xa2352005 dev_pm_domain_attach_by_name vmlinux EXPORT_SYMBOL_GPL
-0xb4bd3366 dev_pm_domain_detach vmlinux EXPORT_SYMBOL_GPL
-0x6368712a dev_pm_domain_start vmlinux EXPORT_SYMBOL_GPL
-0x4ee58abd dev_pm_domain_set vmlinux EXPORT_SYMBOL_GPL
-0x434c2138 dev_pm_qos_flags vmlinux EXPORT_SYMBOL_GPL
-0x1750ee29 dev_pm_qos_add_request vmlinux EXPORT_SYMBOL_GPL
-0x9a63c5fd dev_pm_qos_update_request vmlinux EXPORT_SYMBOL_GPL
-0x7d9f65e5 dev_pm_qos_remove_request vmlinux EXPORT_SYMBOL_GPL
-0x229f19f0 dev_pm_qos_add_notifier vmlinux EXPORT_SYMBOL_GPL
-0x7f64e31e dev_pm_qos_remove_notifier vmlinux EXPORT_SYMBOL_GPL
-0xd6f006fa dev_pm_qos_add_ancestor_request vmlinux EXPORT_SYMBOL_GPL
-0xd72163b4 dev_pm_qos_expose_latency_limit vmlinux EXPORT_SYMBOL_GPL
-0xd9b20867 dev_pm_qos_hide_latency_limit vmlinux EXPORT_SYMBOL_GPL
-0xb241102e dev_pm_qos_expose_flags vmlinux EXPORT_SYMBOL_GPL
-0xe9859fa4 dev_pm_qos_hide_flags vmlinux EXPORT_SYMBOL_GPL
-0xfafe2b56 dev_pm_qos_update_user_latency_tolerance vmlinux EXPORT_SYMBOL_GPL
-0x74419dd2 dev_pm_qos_expose_latency_tolerance vmlinux EXPORT_SYMBOL_GPL
-0x0048e3cf dev_pm_qos_hide_latency_tolerance vmlinux EXPORT_SYMBOL_GPL
-0x87090b7a pm_runtime_suspended_time vmlinux EXPORT_SYMBOL_GPL
-0x5d25b15d pm_runtime_autosuspend_expiration vmlinux EXPORT_SYMBOL_GPL
-0x99157515 pm_runtime_set_memalloc_noio vmlinux EXPORT_SYMBOL_GPL
-0x5398d972 pm_schedule_suspend vmlinux EXPORT_SYMBOL_GPL
-0xebc636d5 __pm_runtime_idle vmlinux EXPORT_SYMBOL_GPL
-0x02cc15f3 __pm_runtime_suspend vmlinux EXPORT_SYMBOL_GPL
-0xdca087a1 __pm_runtime_resume vmlinux EXPORT_SYMBOL_GPL
-0x167946fa pm_runtime_get_if_active vmlinux EXPORT_SYMBOL_GPL
-0x1d49820c __pm_runtime_set_status vmlinux EXPORT_SYMBOL_GPL
-0xdce8dee8 pm_runtime_barrier vmlinux EXPORT_SYMBOL_GPL
-0x304d840a __pm_runtime_disable vmlinux EXPORT_SYMBOL_GPL
-0x61ab21ad pm_runtime_enable vmlinux EXPORT_SYMBOL_GPL
-0xe2bb624d devm_pm_runtime_enable vmlinux EXPORT_SYMBOL_GPL
-0x61bdbad2 pm_runtime_forbid vmlinux EXPORT_SYMBOL_GPL
-0xc25a10c9 pm_runtime_allow vmlinux EXPORT_SYMBOL_GPL
-0x02afc35b pm_runtime_no_callbacks vmlinux EXPORT_SYMBOL_GPL
-0xa6e88d79 pm_runtime_irq_safe vmlinux EXPORT_SYMBOL_GPL
-0xf5d6a27a pm_runtime_set_autosuspend_delay vmlinux EXPORT_SYMBOL_GPL
-0xb797f3ec __pm_runtime_use_autosuspend vmlinux EXPORT_SYMBOL_GPL
-0x95fa951c pm_runtime_force_suspend vmlinux EXPORT_SYMBOL_GPL
-0x62c8dfe0 pm_runtime_force_resume vmlinux EXPORT_SYMBOL_GPL
-0x3bc11117 dev_pm_set_wake_irq vmlinux EXPORT_SYMBOL_GPL
-0xfb85a4f2 dev_pm_clear_wake_irq vmlinux EXPORT_SYMBOL_GPL
-0xc170ca61 dev_pm_set_dedicated_wake_irq vmlinux EXPORT_SYMBOL_GPL
-0xc7efadd2 dev_pm_set_dedicated_wake_irq_reverse vmlinux EXPORT_SYMBOL_GPL
-0xb1bed25d dpm_resume_start vmlinux EXPORT_SYMBOL_GPL
-0x3d388324 dpm_resume_end vmlinux EXPORT_SYMBOL_GPL
-0xa6b21ef2 dpm_suspend_end vmlinux EXPORT_SYMBOL_GPL
-0xe862c4b7 dpm_suspend_start vmlinux EXPORT_SYMBOL_GPL
-0x2c5abc7c __suspend_report_result vmlinux EXPORT_SYMBOL_GPL
-0x975a39f3 device_pm_wait_for_dev vmlinux EXPORT_SYMBOL_GPL
-0x9bb052ee dpm_for_each_dev vmlinux EXPORT_SYMBOL_GPL
-0x7f0552c0 wakeup_source_create vmlinux EXPORT_SYMBOL_GPL
-0x3c4d777c wakeup_source_destroy vmlinux EXPORT_SYMBOL_GPL
-0x3c8c4466 wakeup_source_add vmlinux EXPORT_SYMBOL_GPL
-0x14cbbdad wakeup_source_remove vmlinux EXPORT_SYMBOL_GPL
-0x6aef9a59 wakeup_source_register vmlinux EXPORT_SYMBOL_GPL
-0x26c6b2ee wakeup_source_unregister vmlinux EXPORT_SYMBOL_GPL
-0xc2692173 wakeup_sources_read_lock vmlinux EXPORT_SYMBOL_GPL
-0x24ad11db wakeup_sources_read_unlock vmlinux EXPORT_SYMBOL_GPL
-0xcc0250e6 wakeup_sources_walk_start vmlinux EXPORT_SYMBOL_GPL
-0xf7ed67ca wakeup_sources_walk_next vmlinux EXPORT_SYMBOL_GPL
-0xd221b588 device_wakeup_enable vmlinux EXPORT_SYMBOL_GPL
-0xb6e4d8c2 device_wakeup_disable vmlinux EXPORT_SYMBOL_GPL
-0x9ed88596 device_set_wakeup_capable vmlinux EXPORT_SYMBOL_GPL
-0x4fd99c66 device_set_wakeup_enable vmlinux EXPORT_SYMBOL_GPL
-0x1bfc5e08 __pm_stay_awake vmlinux EXPORT_SYMBOL_GPL
-0x6357df68 pm_stay_awake vmlinux EXPORT_SYMBOL_GPL
-0x1fc82b2d __pm_relax vmlinux EXPORT_SYMBOL_GPL
-0x9199de5d pm_relax vmlinux EXPORT_SYMBOL_GPL
-0xd64e8454 pm_wakeup_ws_event vmlinux EXPORT_SYMBOL_GPL
-0x061a45d1 pm_wakeup_dev_event vmlinux EXPORT_SYMBOL_GPL
-0x4065d168 pm_print_active_wakeup_sources vmlinux EXPORT_SYMBOL_GPL
-0x2bdf5ab0 pm_wakeup_pending vmlinux EXPORT_SYMBOL_GPL
-0x8c0215f2 pm_system_wakeup vmlinux EXPORT_SYMBOL_GPL
-0xc1fec319 dev_pm_genpd_set_performance_state vmlinux EXPORT_SYMBOL_GPL
-0x58178b6d dev_pm_genpd_set_next_wakeup vmlinux EXPORT_SYMBOL_GPL
-0xb417ddc9 dev_pm_genpd_get_next_hrtimer vmlinux EXPORT_SYMBOL_GPL
-0xbca025f5 dev_pm_genpd_synced_poweroff vmlinux EXPORT_SYMBOL_GPL
-0x4613afb3 dev_pm_genpd_suspend vmlinux EXPORT_SYMBOL_GPL
-0xe4106852 dev_pm_genpd_resume vmlinux EXPORT_SYMBOL_GPL
-0xe0989bc4 pm_genpd_add_device vmlinux EXPORT_SYMBOL_GPL
-0xd02054fa pm_genpd_remove_device vmlinux EXPORT_SYMBOL_GPL
-0xcdb27edc dev_pm_genpd_add_notifier vmlinux EXPORT_SYMBOL_GPL
-0xe7cbb08f dev_pm_genpd_remove_notifier vmlinux EXPORT_SYMBOL_GPL
-0xb023e6de pm_genpd_add_subdomain vmlinux EXPORT_SYMBOL_GPL
-0xc101df84 pm_genpd_remove_subdomain vmlinux EXPORT_SYMBOL_GPL
-0xdaced5d9 pm_genpd_init vmlinux EXPORT_SYMBOL_GPL
-0xc7d656ba pm_genpd_remove vmlinux EXPORT_SYMBOL_GPL
-0x04bacc7e pm_clk_add vmlinux EXPORT_SYMBOL_GPL
-0xc8558a37 pm_clk_add_clk vmlinux EXPORT_SYMBOL_GPL
-0xe4dd5917 of_pm_clk_add_clk vmlinux EXPORT_SYMBOL_GPL
-0x4640afd6 of_pm_clk_add_clks vmlinux EXPORT_SYMBOL_GPL
-0xad2b4077 pm_clk_remove vmlinux EXPORT_SYMBOL_GPL
-0xf2138b44 pm_clk_remove_clk vmlinux EXPORT_SYMBOL_GPL
-0xcf0f3a06 pm_clk_init vmlinux EXPORT_SYMBOL_GPL
-0x780c6e6d pm_clk_create vmlinux EXPORT_SYMBOL_GPL
-0xe30d63d6 pm_clk_destroy vmlinux EXPORT_SYMBOL_GPL
-0x4bc4986a devm_pm_clk_create vmlinux EXPORT_SYMBOL_GPL
-0x1a825a13 pm_clk_suspend vmlinux EXPORT_SYMBOL_GPL
-0xb12605c9 pm_clk_resume vmlinux EXPORT_SYMBOL_GPL
-0xbdf6c403 pm_clk_runtime_suspend vmlinux EXPORT_SYMBOL_GPL
-0xa29e742d pm_clk_runtime_resume vmlinux EXPORT_SYMBOL_GPL
-0xf2be44b5 pm_clk_add_notifier vmlinux EXPORT_SYMBOL_GPL
-0xf736e68c request_firmware vmlinux EXPORT_SYMBOL
-0x876a3f46 firmware_request_nowarn vmlinux EXPORT_SYMBOL_GPL
-0xe8bc0ad4 request_firmware_direct vmlinux EXPORT_SYMBOL_GPL
-0xe19703a9 firmware_request_platform vmlinux EXPORT_SYMBOL_GPL
-0xb7d0e2c3 firmware_request_cache vmlinux EXPORT_SYMBOL_GPL
-0xafc83ac6 request_firmware_into_buf vmlinux EXPORT_SYMBOL
-0x47038dd2 request_partial_firmware_into_buf vmlinux EXPORT_SYMBOL
-0xc6d09aa9 release_firmware vmlinux EXPORT_SYMBOL
-0xdddc8825 request_firmware_nowait vmlinux EXPORT_SYMBOL
-0xfd5f9d6d firmware_upload_register vmlinux EXPORT_SYMBOL_GPL
-0x6822de1a firmware_upload_unregister vmlinux EXPORT_SYMBOL_GPL
-0x3dce036c firmware_request_builtin vmlinux EXPORT_SYMBOL_GPL TEST_FIRMWARE
-0x0a770832 register_memory_notifier vmlinux EXPORT_SYMBOL
-0x26e298e0 unregister_memory_notifier vmlinux EXPORT_SYMBOL
-0xfcc1edd3 memory_block_size_bytes vmlinux EXPORT_SYMBOL_GPL
-0xe8c0065d memory_group_register_static vmlinux EXPORT_SYMBOL_GPL
-0x9436e405 memory_group_register_dynamic vmlinux EXPORT_SYMBOL_GPL
-0x12ee1173 memory_group_unregister vmlinux EXPORT_SYMBOL_GPL
-0x1d449a60 hypervisor_kobj vmlinux EXPORT_SYMBOL_GPL
-0x0465a073 regmap_reg_in_ranges vmlinux EXPORT_SYMBOL_GPL
-0xe09a9ecc regmap_check_range_table vmlinux EXPORT_SYMBOL_GPL
-0x3a9db816 regmap_attach_dev vmlinux EXPORT_SYMBOL_GPL
-0xebc2fc00 regmap_get_val_endian vmlinux EXPORT_SYMBOL_GPL
-0xb9491a52 __regmap_init vmlinux EXPORT_SYMBOL_GPL
-0x964b09cd __devm_regmap_init vmlinux EXPORT_SYMBOL_GPL
-0x888539cc devm_regmap_field_alloc vmlinux EXPORT_SYMBOL_GPL
-0xb19a6f88 regmap_field_bulk_alloc vmlinux EXPORT_SYMBOL_GPL
-0x4273b599 devm_regmap_field_bulk_alloc vmlinux EXPORT_SYMBOL_GPL
-0x1191b8fe regmap_field_bulk_free vmlinux EXPORT_SYMBOL_GPL
-0x210a156e devm_regmap_field_bulk_free vmlinux EXPORT_SYMBOL_GPL
-0x198dddcf devm_regmap_field_free vmlinux EXPORT_SYMBOL_GPL
-0xba98f583 regmap_field_alloc vmlinux EXPORT_SYMBOL_GPL
-0xb5ac3e23 regmap_field_free vmlinux EXPORT_SYMBOL_GPL
-0x0b5b3c5d regmap_reinit_cache vmlinux EXPORT_SYMBOL_GPL
-0xc060652f regmap_exit vmlinux EXPORT_SYMBOL_GPL
-0x5758a7a7 dev_get_regmap vmlinux EXPORT_SYMBOL_GPL
-0xf5a41dec regmap_get_device vmlinux EXPORT_SYMBOL_GPL
-0x0206fd2e regmap_can_raw_write vmlinux EXPORT_SYMBOL_GPL
-0xc8045863 regmap_get_raw_read_max vmlinux EXPORT_SYMBOL_GPL
-0xf7378b30 regmap_get_raw_write_max vmlinux EXPORT_SYMBOL_GPL
-0x2942ca81 regmap_write vmlinux EXPORT_SYMBOL_GPL
-0x2e26da0c regmap_write_async vmlinux EXPORT_SYMBOL_GPL
-0x75312b3e regmap_raw_write vmlinux EXPORT_SYMBOL_GPL
-0x45bf3f41 regmap_noinc_write vmlinux EXPORT_SYMBOL_GPL
-0xb9896bf0 regmap_field_update_bits_base vmlinux EXPORT_SYMBOL_GPL
-0x0a8ac343 regmap_field_test_bits vmlinux EXPORT_SYMBOL_GPL
-0x08db17a5 regmap_fields_update_bits_base vmlinux EXPORT_SYMBOL_GPL
-0x45dac5ce regmap_bulk_write vmlinux EXPORT_SYMBOL_GPL
-0x019a606b regmap_multi_reg_write vmlinux EXPORT_SYMBOL_GPL
-0x1b7f7df1 regmap_multi_reg_write_bypassed vmlinux EXPORT_SYMBOL_GPL
-0x7c8b1920 regmap_raw_write_async vmlinux EXPORT_SYMBOL_GPL
-0xfd25da06 regmap_read vmlinux EXPORT_SYMBOL_GPL
-0x2cc0dd4b regmap_raw_read vmlinux EXPORT_SYMBOL_GPL
-0x02d736d8 regmap_noinc_read vmlinux EXPORT_SYMBOL_GPL
-0x39eee67b regmap_field_read vmlinux EXPORT_SYMBOL_GPL
-0x5dc46ad6 regmap_fields_read vmlinux EXPORT_SYMBOL_GPL
-0x127d92be regmap_bulk_read vmlinux EXPORT_SYMBOL_GPL
-0x32f8b0ab regmap_update_bits_base vmlinux EXPORT_SYMBOL_GPL
-0xc05c3bf9 regmap_test_bits vmlinux EXPORT_SYMBOL_GPL
-0x6260f4b4 regmap_async_complete_cb vmlinux EXPORT_SYMBOL_GPL
-0x75c27c6b regmap_async_complete vmlinux EXPORT_SYMBOL_GPL
-0xd75c7b87 regmap_register_patch vmlinux EXPORT_SYMBOL_GPL
-0xd4ad6341 regmap_get_val_bytes vmlinux EXPORT_SYMBOL_GPL
-0x47cc4a0a regmap_get_max_register vmlinux EXPORT_SYMBOL_GPL
-0x8c7050cb regmap_get_reg_stride vmlinux EXPORT_SYMBOL_GPL
-0x4bad8ec8 regmap_might_sleep vmlinux EXPORT_SYMBOL_GPL
-0x9e627ab4 regmap_parse_val vmlinux EXPORT_SYMBOL_GPL
-0x1262ce39 regcache_sync vmlinux EXPORT_SYMBOL_GPL
-0xcd1fc3f2 regcache_sync_region vmlinux EXPORT_SYMBOL_GPL
-0x842b73d5 regcache_drop_region vmlinux EXPORT_SYMBOL_GPL
-0xe1faa17f regcache_cache_only vmlinux EXPORT_SYMBOL_GPL
-0x14d3892c regcache_mark_dirty vmlinux EXPORT_SYMBOL_GPL
-0x358945d2 regcache_cache_bypass vmlinux EXPORT_SYMBOL_GPL
-0x9ae23bcb regcache_reg_cached vmlinux EXPORT_SYMBOL_GPL
-0xa1eaf51d dev_coredumpv vmlinux EXPORT_SYMBOL_GPL
-0xa1c8a521 dev_coredumpm vmlinux EXPORT_SYMBOL_GPL
-0xdac2d1c3 dev_coredumpsg vmlinux EXPORT_SYMBOL_GPL
-0xf552d474 platform_msi_create_irq_domain vmlinux EXPORT_SYMBOL_GPL
-0x08c9144f platform_msi_domain_alloc_irqs vmlinux EXPORT_SYMBOL_GPL
-0xeda73738 platform_msi_domain_free_irqs vmlinux EXPORT_SYMBOL_GPL
-0x3b752ce3 mfd_add_devices vmlinux EXPORT_SYMBOL
-0x21bc342a mfd_remove_devices_late vmlinux EXPORT_SYMBOL
-0xb5f528e4 mfd_remove_devices vmlinux EXPORT_SYMBOL
-0x1abdea34 devm_mfd_add_devices vmlinux EXPORT_SYMBOL
-0xea766634 intel_lpss_probe vmlinux EXPORT_SYMBOL_GPL
-0xd0d887de intel_lpss_remove vmlinux EXPORT_SYMBOL_GPL
-0x19c8e26c intel_lpss_prepare vmlinux EXPORT_SYMBOL_GPL
-0xcdb41b92 intel_lpss_suspend vmlinux EXPORT_SYMBOL_GPL
-0xc5808144 intel_lpss_resume vmlinux EXPORT_SYMBOL_GPL
-0xd84d35bd dax_read_lock vmlinux EXPORT_SYMBOL_GPL
-0x8eee3399 dax_read_unlock vmlinux EXPORT_SYMBOL_GPL
-0xf0a66577 dax_add_host vmlinux EXPORT_SYMBOL_GPL
-0xb48bf9ae dax_remove_host vmlinux EXPORT_SYMBOL_GPL
-0xd9a33a9f fs_dax_get_by_bdev vmlinux EXPORT_SYMBOL_GPL
-0x4fb5da55 fs_put_dax vmlinux EXPORT_SYMBOL_GPL
-0x2d609547 dax_direct_access vmlinux EXPORT_SYMBOL_GPL
-0xec5668f6 dax_zero_page_range vmlinux EXPORT_SYMBOL_GPL
-0x4a625f74 dax_recovery_write vmlinux EXPORT_SYMBOL_GPL
-0x99a03078 dax_holder_notify_failure vmlinux EXPORT_SYMBOL_GPL
-0x64f36620 dax_flush vmlinux EXPORT_SYMBOL_GPL
-0x08135613 dax_write_cache vmlinux EXPORT_SYMBOL_GPL
-0x138e0957 dax_write_cache_enabled vmlinux EXPORT_SYMBOL_GPL
-0x2a976d1c dax_synchronous vmlinux EXPORT_SYMBOL_GPL
-0x330f6116 set_dax_synchronous vmlinux EXPORT_SYMBOL_GPL
-0x9d8bb00e set_dax_nocache vmlinux EXPORT_SYMBOL_GPL
-0x9e9c4f24 set_dax_nomc vmlinux EXPORT_SYMBOL_GPL
-0x3f84bcd7 dax_alive vmlinux EXPORT_SYMBOL_GPL
-0xfad9c827 kill_dax vmlinux EXPORT_SYMBOL_GPL
-0xd0db0f12 run_dax vmlinux EXPORT_SYMBOL_GPL
-0x5fd32812 alloc_dax vmlinux EXPORT_SYMBOL_GPL
-0x07242d92 put_dax vmlinux EXPORT_SYMBOL_GPL
-0x858e2628 dax_holder vmlinux EXPORT_SYMBOL_GPL
-0x726c6e54 inode_dax vmlinux EXPORT_SYMBOL_GPL
-0x8b14ca6a dax_inode vmlinux EXPORT_SYMBOL_GPL
-0x5f6f1e9e dax_get_private vmlinux EXPORT_SYMBOL_GPL
-0x5ae77d54 static_dev_dax vmlinux EXPORT_SYMBOL_GPL
-0x925f4148 kill_dev_dax vmlinux EXPORT_SYMBOL_GPL
-0xaaf586fa alloc_dax_region vmlinux EXPORT_SYMBOL_GPL
-0xf8112cc4 devm_create_dev_dax vmlinux EXPORT_SYMBOL_GPL
-0x5074078e __dax_driver_register vmlinux EXPORT_SYMBOL_GPL
-0xd13b969a dax_driver_unregister vmlinux EXPORT_SYMBOL_GPL
-0x56db4a2d walk_hmem_resources vmlinux EXPORT_SYMBOL_GPL
-0x9b1ae8f3 dma_buf_export vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xc19fd07b dma_buf_fd vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xcc140019 dma_buf_get vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x547f0eb6 dma_buf_put vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x12e8bd5e dma_buf_dynamic_attach vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x25ca13a4 dma_buf_attach vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x2a0cfa35 dma_buf_detach vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xb8e3bc5e dma_buf_pin vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x4876598b dma_buf_unpin vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x5a96a3c7 dma_buf_map_attachment vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xea1a68b4 dma_buf_map_attachment_unlocked vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xf0de4170 dma_buf_unmap_attachment vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x0c52eb84 dma_buf_unmap_attachment_unlocked vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x4184b3e3 dma_buf_move_notify vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xf3af6971 dma_buf_begin_cpu_access vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xdb551d1b dma_buf_end_cpu_access vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x734dc42e dma_buf_mmap vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xf4b05f68 dma_buf_vmap vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xb60ec8cc dma_buf_vmap_unlocked vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xd852cfcf dma_buf_vunmap vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0xfd1ae16b dma_buf_vunmap_unlocked vmlinux EXPORT_SYMBOL_GPL DMA_BUF
-0x8fd08cd9 __tracepoint_dma_fence_emit vmlinux EXPORT_SYMBOL
-0x666c14c0 __traceiter_dma_fence_emit vmlinux EXPORT_SYMBOL
-0xb1fd4f00 __SCK__tp_func_dma_fence_emit vmlinux EXPORT_SYMBOL
-0xa796679d __SCT__tp_func_dma_fence_emit vmlinux EXPORT_SYMBOL
-0x444e1a3b __tracepoint_dma_fence_enable_signal vmlinux EXPORT_SYMBOL
-0x0deb72fc __traceiter_dma_fence_enable_signal vmlinux EXPORT_SYMBOL
-0x98d9930c __SCK__tp_func_dma_fence_enable_signal vmlinux EXPORT_SYMBOL
-0xb2601486 __SCT__tp_func_dma_fence_enable_signal vmlinux EXPORT_SYMBOL
-0xa76a4106 __tracepoint_dma_fence_signaled vmlinux EXPORT_SYMBOL
-0xc1cb419c __traceiter_dma_fence_signaled vmlinux EXPORT_SYMBOL
-0x8e94d848 __SCK__tp_func_dma_fence_signaled vmlinux EXPORT_SYMBOL
-0x192ea14f __SCT__tp_func_dma_fence_signaled vmlinux EXPORT_SYMBOL
-0x3da092b8 dma_fence_get_stub vmlinux EXPORT_SYMBOL
-0xba00daa2 dma_fence_allocate_private_stub vmlinux EXPORT_SYMBOL
-0x14605535 dma_fence_context_alloc vmlinux EXPORT_SYMBOL
-0xe17568e3 dma_fence_signal_timestamp_locked vmlinux EXPORT_SYMBOL
-0x3daae96c dma_fence_signal_timestamp vmlinux EXPORT_SYMBOL
-0x60bbb124 dma_fence_signal_locked vmlinux EXPORT_SYMBOL
-0xaacf03c1 dma_fence_signal vmlinux EXPORT_SYMBOL
-0x64d11af1 dma_fence_wait_timeout vmlinux EXPORT_SYMBOL
-0xe123f3d9 dma_fence_release vmlinux EXPORT_SYMBOL
-0xbbda18c4 dma_fence_free vmlinux EXPORT_SYMBOL
-0x7c2d03a6 dma_fence_enable_sw_signaling vmlinux EXPORT_SYMBOL
-0x628c0f8f dma_fence_add_callback vmlinux EXPORT_SYMBOL
-0x4909a790 dma_fence_get_status vmlinux EXPORT_SYMBOL
-0x70daa11e dma_fence_remove_callback vmlinux EXPORT_SYMBOL
-0x197d5b60 dma_fence_default_wait vmlinux EXPORT_SYMBOL
-0x74dd9e0b dma_fence_wait_any_timeout vmlinux EXPORT_SYMBOL
-0xccaf994e dma_fence_set_deadline vmlinux EXPORT_SYMBOL
-0x2b575b58 dma_fence_describe vmlinux EXPORT_SYMBOL
-0xdeb99119 dma_fence_init vmlinux EXPORT_SYMBOL
-0x8a833583 dma_fence_array_ops vmlinux EXPORT_SYMBOL
-0x9935c980 dma_fence_array_create vmlinux EXPORT_SYMBOL
-0x87c8c92f dma_fence_match_context vmlinux EXPORT_SYMBOL
-0x0da37acd dma_fence_array_first vmlinux EXPORT_SYMBOL
-0x71fb6892 dma_fence_array_next vmlinux EXPORT_SYMBOL
-0x98555a05 dma_fence_chain_walk vmlinux EXPORT_SYMBOL
-0x0bb5dd4a dma_fence_chain_find_seqno vmlinux EXPORT_SYMBOL
-0x689067dd dma_fence_chain_ops vmlinux EXPORT_SYMBOL
-0xbf6773cc dma_fence_chain_init vmlinux EXPORT_SYMBOL
-0x8c8d2374 dma_fence_unwrap_first vmlinux EXPORT_SYMBOL_GPL
-0xd87cb8eb dma_fence_unwrap_next vmlinux EXPORT_SYMBOL_GPL
-0xe436e90c __dma_fence_unwrap_merge vmlinux EXPORT_SYMBOL_GPL
-0xcc328a5c reservation_ww_class vmlinux EXPORT_SYMBOL
-0xf56048de dma_resv_init vmlinux EXPORT_SYMBOL
-0xc225f66d dma_resv_fini vmlinux EXPORT_SYMBOL
-0x292b3d2e dma_resv_reserve_fences vmlinux EXPORT_SYMBOL
-0xed73cfab dma_resv_add_fence vmlinux EXPORT_SYMBOL
-0x4c3b08bf dma_resv_replace_fences vmlinux EXPORT_SYMBOL
-0x0e37a2fd dma_resv_iter_first_unlocked vmlinux EXPORT_SYMBOL
-0x3e97d38b dma_resv_iter_next_unlocked vmlinux EXPORT_SYMBOL
-0xc1b277f7 dma_resv_iter_first vmlinux EXPORT_SYMBOL_GPL
-0x65af2d0b dma_resv_iter_next vmlinux EXPORT_SYMBOL_GPL
-0x66e3d771 dma_resv_copy_fences vmlinux EXPORT_SYMBOL
-0xc573b9a8 dma_resv_get_fences vmlinux EXPORT_SYMBOL_GPL
-0xdd2a30ae dma_resv_get_singleton vmlinux EXPORT_SYMBOL_GPL
-0xe39902c4 dma_resv_wait_timeout vmlinux EXPORT_SYMBOL_GPL
-0xe24960f6 dma_resv_set_deadline vmlinux EXPORT_SYMBOL_GPL
-0x37d3fc2d dma_resv_test_signaled vmlinux EXPORT_SYMBOL_GPL
-0x81a737e2 dma_resv_describe vmlinux EXPORT_SYMBOL_GPL
-0x33bc41d4 sync_file_create vmlinux EXPORT_SYMBOL
-0x7155bcf8 sync_file_get_fence vmlinux EXPORT_SYMBOL
-0x055c6ee3 cxl_mem_active_inc vmlinux EXPORT_SYMBOL_GPL CXL
-0x33e2aa93 cxl_mem_active_dec vmlinux EXPORT_SYMBOL_GPL CXL
-0xaf3dd7dc scsi_logging_level vmlinux EXPORT_SYMBOL
-0xeaa1d6e6 scsi_change_queue_depth vmlinux EXPORT_SYMBOL
-0xd58b9cd6 scsi_track_queue_full vmlinux EXPORT_SYMBOL
-0x301a7c58 scsi_get_vpd_page vmlinux EXPORT_SYMBOL_GPL
-0x3d63cf56 scsi_report_opcode vmlinux EXPORT_SYMBOL
-0x2fa1999a scsi_device_get vmlinux EXPORT_SYMBOL
-0x24ccb9ff scsi_device_put vmlinux EXPORT_SYMBOL
-0x6e26b78b __scsi_iterate_devices vmlinux EXPORT_SYMBOL
-0x6e210606 starget_for_each_device vmlinux EXPORT_SYMBOL
-0x8b1d72c6 __starget_for_each_device vmlinux EXPORT_SYMBOL
-0x2b03a0e5 __scsi_device_lookup_by_target vmlinux EXPORT_SYMBOL
-0x5fe3578a scsi_device_lookup_by_target vmlinux EXPORT_SYMBOL
-0xd44c863b __scsi_device_lookup vmlinux EXPORT_SYMBOL
-0xb4c4893a scsi_device_lookup vmlinux EXPORT_SYMBOL
-0x67f5b154 scsi_remove_host vmlinux EXPORT_SYMBOL
-0x8204aebd scsi_add_host_with_dma vmlinux EXPORT_SYMBOL
-0x8eca1a1f scsi_host_alloc vmlinux EXPORT_SYMBOL
-0x76bb640a scsi_host_lookup vmlinux EXPORT_SYMBOL
-0xc0fe7225 scsi_host_get vmlinux EXPORT_SYMBOL
-0xa35c6a7d scsi_host_busy vmlinux EXPORT_SYMBOL
-0x92a84dd8 scsi_host_put vmlinux EXPORT_SYMBOL
-0x20192cf0 scsi_is_host_device vmlinux EXPORT_SYMBOL
-0x0b64129b scsi_queue_work vmlinux EXPORT_SYMBOL_GPL
-0x99ed5afa scsi_flush_work vmlinux EXPORT_SYMBOL_GPL
-0x37b2dd9a scsi_host_complete_all_commands vmlinux EXPORT_SYMBOL_GPL
-0xe458c918 scsi_host_busy_iter vmlinux EXPORT_SYMBOL_GPL
-0xcdf997b5 scsi_set_medium_removal vmlinux EXPORT_SYMBOL
-0xeda2e038 scsi_cmd_allowed vmlinux EXPORT_SYMBOL
-0x5ec4aee6 put_sg_io_hdr vmlinux EXPORT_SYMBOL
-0x1de4ccb2 get_sg_io_hdr vmlinux EXPORT_SYMBOL
-0x24040eea scsi_ioctl vmlinux EXPORT_SYMBOL
-0xdb457c5e scsi_ioctl_block_when_processing_errors vmlinux EXPORT_SYMBOL_GPL
-0x589d970a scsi_bios_ptable vmlinux EXPORT_SYMBOL
-0x8c44afda scsi_partsize vmlinux EXPORT_SYMBOL
-0x3141ffce scsicam_bios_param vmlinux EXPORT_SYMBOL
-0xaed0cf74 scsi_schedule_eh vmlinux EXPORT_SYMBOL_GPL
-0x3a384bbf scsi_block_when_processing_errors vmlinux EXPORT_SYMBOL
-0x290e4fff scsi_check_sense vmlinux EXPORT_SYMBOL_GPL
-0xd61f310e scsi_eh_prep_cmnd vmlinux EXPORT_SYMBOL
-0x7768bd01 scsi_eh_restore_cmnd vmlinux EXPORT_SYMBOL
-0x0576295c scsi_eh_finish_cmd vmlinux EXPORT_SYMBOL
-0x26c90ea4 scsi_eh_get_sense vmlinux EXPORT_SYMBOL_GPL
-0xfdbef39e scsi_eh_ready_devs vmlinux EXPORT_SYMBOL_GPL
-0xf811e69d scsi_eh_flush_done_q vmlinux EXPORT_SYMBOL
-0xeac4313b scsi_report_bus_reset vmlinux EXPORT_SYMBOL
-0xab807493 scsi_report_device_reset vmlinux EXPORT_SYMBOL
-0xbe00fea2 scsi_command_normalize_sense vmlinux EXPORT_SYMBOL
-0xdd849d51 scsi_get_sense_info_fld vmlinux EXPORT_SYMBOL
-0xc619adbd scsi_execute_cmd vmlinux EXPORT_SYMBOL
-0x8b008680 scsi_free_sgtables vmlinux EXPORT_SYMBOL_GPL
-0x984cefd5 scsi_alloc_sgtables vmlinux EXPORT_SYMBOL
-0xc2d828d9 scsi_alloc_request vmlinux EXPORT_SYMBOL_GPL
-0x26154c7c scsi_done vmlinux EXPORT_SYMBOL
-0x114bd6cf scsi_done_direct vmlinux EXPORT_SYMBOL
-0x8532aecf __scsi_init_queue vmlinux EXPORT_SYMBOL_GPL
-0x9a533a4b scsi_device_from_queue vmlinux EXPORT_SYMBOL_GPL
-0xd1ceae31 scsi_block_requests vmlinux EXPORT_SYMBOL
-0x8328066a scsi_unblock_requests vmlinux EXPORT_SYMBOL
-0x8fc5d42f scsi_mode_select vmlinux EXPORT_SYMBOL_GPL
-0x4c41203d scsi_mode_sense vmlinux EXPORT_SYMBOL
-0xe6c17f45 scsi_test_unit_ready vmlinux EXPORT_SYMBOL
-0x1eeb8433 scsi_device_set_state vmlinux EXPORT_SYMBOL
-0x1e10cb4d sdev_evt_send vmlinux EXPORT_SYMBOL_GPL
-0x13ed8784 sdev_evt_alloc vmlinux EXPORT_SYMBOL_GPL
-0x5dfd4a01 sdev_evt_send_simple vmlinux EXPORT_SYMBOL_GPL
-0x3d9020b6 scsi_device_quiesce vmlinux EXPORT_SYMBOL
-0x411560cb scsi_device_resume vmlinux EXPORT_SYMBOL
-0x153ccdf7 scsi_target_quiesce vmlinux EXPORT_SYMBOL
-0x98cd729a scsi_target_resume vmlinux EXPORT_SYMBOL
-0x9bb23859 scsi_internal_device_block_nowait vmlinux EXPORT_SYMBOL_GPL
-0x5d682d06 scsi_internal_device_unblock_nowait vmlinux EXPORT_SYMBOL_GPL
-0xe8512546 scsi_block_targets vmlinux EXPORT_SYMBOL_GPL
-0x8d7f85cb scsi_target_unblock vmlinux EXPORT_SYMBOL_GPL
-0xc622e7cc scsi_host_block vmlinux EXPORT_SYMBOL_GPL
-0x03dca5bc scsi_host_unblock vmlinux EXPORT_SYMBOL_GPL
-0xae66472b scsi_kmap_atomic_sg vmlinux EXPORT_SYMBOL
-0x56c8799d scsi_kunmap_atomic_sg vmlinux EXPORT_SYMBOL
-0x8ffc0dcb sdev_disable_disk_events vmlinux EXPORT_SYMBOL
-0x7d1a4cc5 sdev_enable_disk_events vmlinux EXPORT_SYMBOL
-0x1ed6452f scsi_vpd_lun_id vmlinux EXPORT_SYMBOL
-0xb673ff53 scsi_vpd_tpg_id vmlinux EXPORT_SYMBOL
-0x6d07e162 scsi_build_sense vmlinux EXPORT_SYMBOL_GPL
-0x96cd2b04 scsi_sense_key_string vmlinux EXPORT_SYMBOL
-0xd8a994eb scsi_extd_sense_format vmlinux EXPORT_SYMBOL
-0xb3d2c76d scsi_hostbyte_string vmlinux EXPORT_SYMBOL
-0xd1d87e92 scsi_mlreturn_string vmlinux EXPORT_SYMBOL
-0x94e0c5ca scsi_dma_map vmlinux EXPORT_SYMBOL
-0xb5c18e0e scsi_dma_unmap vmlinux EXPORT_SYMBOL
-0x6a783b4b scsi_is_target_device vmlinux EXPORT_SYMBOL
-0x27756bc8 scsi_sanitize_inquiry_string vmlinux EXPORT_SYMBOL
-0x724c81ce __scsi_add_device vmlinux EXPORT_SYMBOL
-0x4e749c44 scsi_add_device vmlinux EXPORT_SYMBOL
-0xe97f4ce6 scsi_resume_device vmlinux EXPORT_SYMBOL
-0xdbf12768 scsi_rescan_device vmlinux EXPORT_SYMBOL
-0x389edc02 scsi_scan_target vmlinux EXPORT_SYMBOL
-0x745fa55a scsi_scan_host vmlinux EXPORT_SYMBOL
-0x2d0697a6 scsi_remove_device vmlinux EXPORT_SYMBOL
-0x4ba8b5ac scsi_remove_target vmlinux EXPORT_SYMBOL
-0x1741bae6 scsi_register_driver vmlinux EXPORT_SYMBOL
-0xa90fd3f8 scsi_register_interface vmlinux EXPORT_SYMBOL
-0x8a1ef27b scsi_is_sdev_device vmlinux EXPORT_SYMBOL
-0x2733eaf7 scsi_dev_info_list_add_keyed vmlinux EXPORT_SYMBOL
-0xccfd2ebc scsi_dev_info_list_del_keyed vmlinux EXPORT_SYMBOL
-0x406e06a8 scsi_get_device_flags_keyed vmlinux EXPORT_SYMBOL
-0x204c5067 scsi_dev_info_add_list vmlinux EXPORT_SYMBOL
-0x97bdfa60 scsi_dev_info_remove_list vmlinux EXPORT_SYMBOL
-0x78be2aa6 scsi_nl_sock vmlinux EXPORT_SYMBOL_GPL
-0x438eb05c scsi_template_proc_dir vmlinux EXPORT_SYMBOL_GPL
-0xf86a5a28 sdev_prefix_printk vmlinux EXPORT_SYMBOL
-0xfc185ab8 scmd_printk vmlinux EXPORT_SYMBOL
-0x93022ba6 __scsi_format_command vmlinux EXPORT_SYMBOL
-0xfc202856 scsi_print_command vmlinux EXPORT_SYMBOL
-0x1a5afd2c scsi_print_sense_hdr vmlinux EXPORT_SYMBOL
-0xb49502ef __scsi_print_sense vmlinux EXPORT_SYMBOL
-0xfdd69796 scsi_print_sense vmlinux EXPORT_SYMBOL
-0x0f2494bc scsi_print_result vmlinux EXPORT_SYMBOL
-0x5c4018ce scsi_autopm_get_device vmlinux EXPORT_SYMBOL_GPL
-0xcbf30d8a scsi_autopm_put_device vmlinux EXPORT_SYMBOL_GPL
-0xb95fcaf8 scsi_register_device_handler vmlinux EXPORT_SYMBOL_GPL
-0x508a4a29 scsi_unregister_device_handler vmlinux EXPORT_SYMBOL_GPL
-0xcb240f2b scsi_dh_activate vmlinux EXPORT_SYMBOL_GPL
-0xf169e1db scsi_dh_set_params vmlinux EXPORT_SYMBOL_GPL
-0x71bd011c scsi_dh_attach vmlinux EXPORT_SYMBOL_GPL
-0x21748a3a scsi_dh_attached_handler_name vmlinux EXPORT_SYMBOL_GPL
-0x0334da4e scsi_command_size_tbl vmlinux EXPORT_SYMBOL
-0x72ea7b2d scsi_device_type vmlinux EXPORT_SYMBOL
-0x74bf2e01 scsi_pr_type_to_block vmlinux EXPORT_SYMBOL_GPL
-0x3c6785b7 block_pr_type_to_scsi vmlinux EXPORT_SYMBOL_GPL
-0xea3c8e4e scsilun_to_int vmlinux EXPORT_SYMBOL
-0x5ed90adc int_to_scsilun vmlinux EXPORT_SYMBOL
-0xfbad3cf0 scsi_normalize_sense vmlinux EXPORT_SYMBOL
-0x10d9f885 scsi_sense_desc_find vmlinux EXPORT_SYMBOL
-0x8112b3d2 scsi_build_sense_buffer vmlinux EXPORT_SYMBOL
-0x818416e1 scsi_set_sense_information vmlinux EXPORT_SYMBOL
-0x3ab7b1cc scsi_set_sense_field_pointer vmlinux EXPORT_SYMBOL
-0x4c41c175 __tracepoint_spi_transfer_start vmlinux EXPORT_SYMBOL
-0xffdfd5d3 __traceiter_spi_transfer_start vmlinux EXPORT_SYMBOL
-0x4fd9ba17 __SCK__tp_func_spi_transfer_start vmlinux EXPORT_SYMBOL
-0x5fe13529 __SCT__tp_func_spi_transfer_start vmlinux EXPORT_SYMBOL
-0x73158142 __tracepoint_spi_transfer_stop vmlinux EXPORT_SYMBOL
-0xd19d5282 __traceiter_spi_transfer_stop vmlinux EXPORT_SYMBOL
-0x5d8cefc0 __SCK__tp_func_spi_transfer_stop vmlinux EXPORT_SYMBOL
-0x9ef0eee7 __SCT__tp_func_spi_transfer_stop vmlinux EXPORT_SYMBOL
-0xbe608795 spi_get_device_id vmlinux EXPORT_SYMBOL_GPL
-0x84f074aa spi_get_device_match_data vmlinux EXPORT_SYMBOL_GPL
-0xe1f2c577 spi_bus_type vmlinux EXPORT_SYMBOL_GPL
-0xa3f6a042 __spi_register_driver vmlinux EXPORT_SYMBOL_GPL
-0x4f24cee4 spi_alloc_device vmlinux EXPORT_SYMBOL_GPL
-0x1c9e4989 spi_add_device vmlinux EXPORT_SYMBOL_GPL
-0x594a94a2 spi_new_device vmlinux EXPORT_SYMBOL_GPL
-0x05fd211e spi_unregister_device vmlinux EXPORT_SYMBOL_GPL
-0x01a20dfe spi_delay_to_ns vmlinux EXPORT_SYMBOL_GPL
-0x829f9253 spi_delay_exec vmlinux EXPORT_SYMBOL_GPL
-0x051a8a71 spi_transfer_cs_change_delay_exec vmlinux EXPORT_SYMBOL_GPL
-0x260e5fbf spi_finalize_current_transfer vmlinux EXPORT_SYMBOL_GPL
-0xb366832a spi_take_timestamp_pre vmlinux EXPORT_SYMBOL_GPL
-0x2cdfd9f9 spi_take_timestamp_post vmlinux EXPORT_SYMBOL_GPL
-0xe8f9814e spi_get_next_queued_message vmlinux EXPORT_SYMBOL_GPL
-0x3714f701 spi_finalize_current_message vmlinux EXPORT_SYMBOL_GPL
-0xd873967e spi_new_ancillary_device vmlinux EXPORT_SYMBOL_GPL
-0xd3243d18 acpi_spi_count_resources vmlinux EXPORT_SYMBOL_GPL
-0x8a671a3d acpi_spi_device_alloc vmlinux EXPORT_SYMBOL_GPL
-0xb58ae457 __spi_alloc_controller vmlinux EXPORT_SYMBOL_GPL
-0xef8e9b8c __devm_spi_alloc_controller vmlinux EXPORT_SYMBOL_GPL
-0x5cb28fbf spi_register_controller vmlinux EXPORT_SYMBOL_GPL
-0xe60d3881 devm_spi_register_controller vmlinux EXPORT_SYMBOL_GPL
-0x46088f5c spi_unregister_controller vmlinux EXPORT_SYMBOL_GPL
-0x91cdbaa6 spi_controller_suspend vmlinux EXPORT_SYMBOL_GPL
-0xa5cf6758 spi_controller_resume vmlinux EXPORT_SYMBOL_GPL
-0x1466e210 spi_split_transfers_maxsize vmlinux EXPORT_SYMBOL_GPL
-0x6402b2ce spi_split_transfers_maxwords vmlinux EXPORT_SYMBOL_GPL
-0xfa4cb631 spi_setup vmlinux EXPORT_SYMBOL_GPL
-0x7a2ce156 spi_async vmlinux EXPORT_SYMBOL_GPL
-0x0c89a28d spi_sync vmlinux EXPORT_SYMBOL_GPL
-0x2dec4310 spi_sync_locked vmlinux EXPORT_SYMBOL_GPL
-0xb44e6627 spi_bus_lock vmlinux EXPORT_SYMBOL_GPL
-0x471bfea5 spi_bus_unlock vmlinux EXPORT_SYMBOL_GPL
-0xaf00508f spi_write_then_read vmlinux EXPORT_SYMBOL_GPL
-0x9307b6e1 spi_controller_dma_map_mem_op_data vmlinux EXPORT_SYMBOL_GPL
-0xa48356c7 spi_controller_dma_unmap_mem_op_data vmlinux EXPORT_SYMBOL_GPL
-0x262950ff spi_mem_default_supports_op vmlinux EXPORT_SYMBOL_GPL
-0xbf1d7d37 spi_mem_supports_op vmlinux EXPORT_SYMBOL_GPL
-0xe046e29d spi_mem_exec_op vmlinux EXPORT_SYMBOL_GPL
-0x128d864e spi_mem_get_name vmlinux EXPORT_SYMBOL_GPL
-0xc6fee975 spi_mem_adjust_op_size vmlinux EXPORT_SYMBOL_GPL
-0xf997f1ba spi_mem_dirmap_create vmlinux EXPORT_SYMBOL_GPL
-0x37dde242 spi_mem_dirmap_destroy vmlinux EXPORT_SYMBOL_GPL
-0xd908985c devm_spi_mem_dirmap_create vmlinux EXPORT_SYMBOL_GPL
-0xa0406c80 devm_spi_mem_dirmap_destroy vmlinux EXPORT_SYMBOL_GPL
-0x38bcb7d7 spi_mem_dirmap_read vmlinux EXPORT_SYMBOL_GPL
-0x4ab7351a spi_mem_dirmap_write vmlinux EXPORT_SYMBOL_GPL
-0xa5b48428 spi_mem_poll_status vmlinux EXPORT_SYMBOL_GPL
-0x59ee77f3 spi_mem_driver_register_with_owner vmlinux EXPORT_SYMBOL_GPL
-0x1e084854 spi_mem_driver_unregister vmlinux EXPORT_SYMBOL_GPL
-0x1c2f3623 blackhole_netdev vmlinux EXPORT_SYMBOL
-0xad099529 dev_lstats_read vmlinux EXPORT_SYMBOL
-0xa36b617f mdiobus_setup_mdiodev_from_board_info vmlinux EXPORT_SYMBOL
-0x58acf24b mdiobus_register_board_info vmlinux EXPORT_SYMBOL
-0xa96dee51 phylib_stubs vmlinux EXPORT_SYMBOL_GPL
-0xa4a744a8 devm_mdiobus_alloc_size vmlinux EXPORT_SYMBOL
-0x7bba5670 __devm_mdiobus_register vmlinux EXPORT_SYMBOL
-0x3867d61d phy_print_status vmlinux EXPORT_SYMBOL
-0xc0e688cf phy_get_rate_matching vmlinux EXPORT_SYMBOL_GPL
-0xa5d9151c phy_restart_aneg vmlinux EXPORT_SYMBOL_GPL
-0x69456e79 phy_aneg_done vmlinux EXPORT_SYMBOL
-0xf44f852a phy_check_valid vmlinux EXPORT_SYMBOL
-0x5178ccc7 phy_ethtool_ksettings_get vmlinux EXPORT_SYMBOL
-0x69a3a6bd phy_mii_ioctl vmlinux EXPORT_SYMBOL
-0x13e07433 phy_do_ioctl vmlinux EXPORT_SYMBOL
-0x63ee8176 phy_do_ioctl_running vmlinux EXPORT_SYMBOL
-0x792ccde5 phy_queue_state_machine vmlinux EXPORT_SYMBOL
-0x10919a64 phy_trigger_machine vmlinux EXPORT_SYMBOL
-0xd4fcf538 phy_ethtool_get_strings vmlinux EXPORT_SYMBOL
-0x046e68a0 phy_ethtool_get_sset_count vmlinux EXPORT_SYMBOL
-0xed8de04e phy_ethtool_get_stats vmlinux EXPORT_SYMBOL
-0xbe94a5c1 phy_start_cable_test vmlinux EXPORT_SYMBOL
-0x7cfa5436 phy_start_cable_test_tdr vmlinux EXPORT_SYMBOL
-0xe79b33b0 phy_config_aneg vmlinux EXPORT_SYMBOL
-0x612692c7 phy_start_aneg vmlinux EXPORT_SYMBOL
-0x748cb44f phy_ethtool_ksettings_set vmlinux EXPORT_SYMBOL
-0xeab0b515 phy_speed_down vmlinux EXPORT_SYMBOL_GPL
-0x768628d3 phy_speed_up vmlinux EXPORT_SYMBOL_GPL
-0xeaa4ed80 phy_start_machine vmlinux EXPORT_SYMBOL_GPL
-0x353c54f2 phy_error vmlinux EXPORT_SYMBOL
-0x62ac77bc phy_request_interrupt vmlinux EXPORT_SYMBOL
-0x6deadbbe phy_free_interrupt vmlinux EXPORT_SYMBOL
-0x0d7eb0b5 phy_stop vmlinux EXPORT_SYMBOL
-0x9c145b83 phy_start vmlinux EXPORT_SYMBOL
-0xc23d29e5 phy_mac_interrupt vmlinux EXPORT_SYMBOL
-0x36780fa8 phy_init_eee vmlinux EXPORT_SYMBOL
-0x1bb03035 phy_get_eee_err vmlinux EXPORT_SYMBOL
-0x62ccf6c3 phy_ethtool_get_eee vmlinux EXPORT_SYMBOL
-0x02184a34 phy_ethtool_set_eee vmlinux EXPORT_SYMBOL
-0x0d76a38b phy_ethtool_set_wol vmlinux EXPORT_SYMBOL
-0xf886c9d1 phy_ethtool_get_wol vmlinux EXPORT_SYMBOL
-0x7b0d3f61 phy_ethtool_get_link_ksettings vmlinux EXPORT_SYMBOL
-0x4863a0c7 phy_ethtool_set_link_ksettings vmlinux EXPORT_SYMBOL
-0x3a5455e4 phy_ethtool_nway_reset vmlinux EXPORT_SYMBOL
-0xef1bfe27 genphy_c45_pma_resume vmlinux EXPORT_SYMBOL_GPL
-0x2ef9ae34 genphy_c45_pma_suspend vmlinux EXPORT_SYMBOL_GPL
-0x664f9626 genphy_c45_pma_baset1_setup_master_slave vmlinux EXPORT_SYMBOL_GPL
-0x85e1b14d genphy_c45_pma_setup_forced vmlinux EXPORT_SYMBOL_GPL
-0x80409c8d genphy_c45_an_config_aneg vmlinux EXPORT_SYMBOL_GPL
-0xc3be84da genphy_c45_an_disable_aneg vmlinux EXPORT_SYMBOL_GPL
-0x7d890e65 genphy_c45_restart_aneg vmlinux EXPORT_SYMBOL_GPL
-0x58e9984f genphy_c45_check_and_restart_aneg vmlinux EXPORT_SYMBOL_GPL
-0x63d9c076 genphy_c45_aneg_done vmlinux EXPORT_SYMBOL_GPL
-0x4ccfb388 genphy_c45_read_link vmlinux EXPORT_SYMBOL_GPL
-0xa23eedad genphy_c45_read_lpa vmlinux EXPORT_SYMBOL_GPL
-0x48b62b73 genphy_c45_pma_baset1_read_master_slave vmlinux EXPORT_SYMBOL_GPL
-0xc4bb9c78 genphy_c45_read_pma vmlinux EXPORT_SYMBOL_GPL
-0x418c0944 genphy_c45_read_mdix vmlinux EXPORT_SYMBOL_GPL
-0x32548e49 genphy_c45_read_eee_abilities vmlinux EXPORT_SYMBOL_GPL
-0x1bd21fd3 genphy_c45_pma_baset1_read_abilities vmlinux EXPORT_SYMBOL_GPL
-0x1a590cea genphy_c45_pma_read_abilities vmlinux EXPORT_SYMBOL_GPL
-0x925290ec genphy_c45_baset1_read_status vmlinux EXPORT_SYMBOL_GPL
-0xd837c51e genphy_c45_read_status vmlinux EXPORT_SYMBOL_GPL
-0xe87a72b0 genphy_c45_config_aneg vmlinux EXPORT_SYMBOL_GPL
-0x3beb0675 gen10g_config_aneg vmlinux EXPORT_SYMBOL_GPL
-0x0cfaf391 genphy_c45_loopback vmlinux EXPORT_SYMBOL_GPL
-0xc9ca3581 genphy_c45_fast_retrain vmlinux EXPORT_SYMBOL_GPL
-0xb3b298aa genphy_c45_plca_get_cfg vmlinux EXPORT_SYMBOL_GPL
-0x68235a99 genphy_c45_plca_set_cfg vmlinux EXPORT_SYMBOL_GPL
-0x536bdc90 genphy_c45_plca_get_status vmlinux EXPORT_SYMBOL_GPL
-0x87456c94 genphy_c45_eee_is_active vmlinux EXPORT_SYMBOL
-0x87930ddf genphy_c45_ethtool_get_eee vmlinux EXPORT_SYMBOL
-0x8cb42108 genphy_c45_ethtool_set_eee vmlinux EXPORT_SYMBOL
-0xe4b818c3 phy_speed_to_str vmlinux EXPORT_SYMBOL_GPL
-0x538d073d phy_duplex_to_str vmlinux EXPORT_SYMBOL_GPL
-0x59edfeb8 phy_rate_matching_to_str vmlinux EXPORT_SYMBOL_GPL
-0xfcfaa56d phy_interface_num_ports vmlinux EXPORT_SYMBOL_GPL
-0x06209f49 phy_lookup_setting vmlinux EXPORT_SYMBOL_GPL
-0xacc5b0ac phy_set_max_speed vmlinux EXPORT_SYMBOL
-0xa776788a phy_resolve_aneg_pause vmlinux EXPORT_SYMBOL_GPL
-0x9762edc5 phy_resolve_aneg_linkmode vmlinux EXPORT_SYMBOL_GPL
-0x67f73c6d phy_check_downshift vmlinux EXPORT_SYMBOL_GPL
-0x4faed310 __phy_read_mmd vmlinux EXPORT_SYMBOL
-0xa5ffd0e7 phy_read_mmd vmlinux EXPORT_SYMBOL
-0xb562703a __phy_write_mmd vmlinux EXPORT_SYMBOL
-0x2e9e41e4 phy_write_mmd vmlinux EXPORT_SYMBOL
-0x9288919f phy_modify_changed vmlinux EXPORT_SYMBOL_GPL
-0xf8563e30 __phy_modify vmlinux EXPORT_SYMBOL_GPL
-0x02dec904 phy_modify vmlinux EXPORT_SYMBOL_GPL
-0xdc8be7da __phy_modify_mmd_changed vmlinux EXPORT_SYMBOL_GPL
-0x5a56889e phy_modify_mmd_changed vmlinux EXPORT_SYMBOL_GPL
-0xbdb70b9d __phy_modify_mmd vmlinux EXPORT_SYMBOL_GPL
-0x6ee87c74 phy_modify_mmd vmlinux EXPORT_SYMBOL_GPL
-0x29672502 phy_save_page vmlinux EXPORT_SYMBOL_GPL
-0x91b73840 phy_select_page vmlinux EXPORT_SYMBOL_GPL
-0x81a86792 phy_restore_page vmlinux EXPORT_SYMBOL_GPL
-0xfa53aaf1 phy_read_paged vmlinux EXPORT_SYMBOL
-0xb2e440bb phy_write_paged vmlinux EXPORT_SYMBOL
-0x3a270ac3 phy_modify_paged_changed vmlinux EXPORT_SYMBOL
-0x6be8bdfe phy_modify_paged vmlinux EXPORT_SYMBOL
-0x23c3b778 phy_basic_features vmlinux EXPORT_SYMBOL_GPL
-0xda10e1e2 phy_basic_t1_features vmlinux EXPORT_SYMBOL_GPL
-0x03473884 phy_basic_t1s_p2mp_features vmlinux EXPORT_SYMBOL_GPL
-0x8696808c phy_gbit_features vmlinux EXPORT_SYMBOL_GPL
-0x9b16e4ee phy_gbit_fibre_features vmlinux EXPORT_SYMBOL_GPL
-0xd9e61980 phy_gbit_all_ports_features vmlinux EXPORT_SYMBOL_GPL
-0x3542e347 phy_10gbit_features vmlinux EXPORT_SYMBOL_GPL
-0x3be200ce phy_10gbit_fec_features vmlinux EXPORT_SYMBOL_GPL
-0x690f585e phy_basic_ports_array vmlinux EXPORT_SYMBOL_GPL
-0xe628bb9f phy_fibre_port_array vmlinux EXPORT_SYMBOL_GPL
-0x7ac722bd phy_all_ports_features_array vmlinux EXPORT_SYMBOL_GPL
-0x7073c04f phy_10_100_features_array vmlinux EXPORT_SYMBOL_GPL
-0x7de39e07 phy_basic_t1_features_array vmlinux EXPORT_SYMBOL_GPL
-0x2eca6a19 phy_basic_t1s_p2mp_features_array vmlinux EXPORT_SYMBOL_GPL
-0x61f67c92 phy_gbit_features_array vmlinux EXPORT_SYMBOL_GPL
-0xeedd987e phy_10gbit_features_array vmlinux EXPORT_SYMBOL_GPL
-0x24235223 phy_10gbit_full_features vmlinux EXPORT_SYMBOL_GPL
-0x30110a29 phy_eee_cap1_features vmlinux EXPORT_SYMBOL_GPL
-0x698dd4c4 phy_device_free vmlinux EXPORT_SYMBOL
-0x447b24c4 phy_register_fixup vmlinux EXPORT_SYMBOL
-0xa19ce1fe phy_register_fixup_for_uid vmlinux EXPORT_SYMBOL
-0xb351d6a2 phy_register_fixup_for_id vmlinux EXPORT_SYMBOL
-0xc633d82d phy_unregister_fixup vmlinux EXPORT_SYMBOL
-0xd738ca1b phy_unregister_fixup_for_uid vmlinux EXPORT_SYMBOL
-0x3efe1703 phy_unregister_fixup_for_id vmlinux EXPORT_SYMBOL
-0xc75de5c2 phy_device_create vmlinux EXPORT_SYMBOL
-0xcdd05de4 fwnode_get_phy_id vmlinux EXPORT_SYMBOL
-0xe3d06b42 get_phy_device vmlinux EXPORT_SYMBOL
-0xc6d7295e phy_device_register vmlinux EXPORT_SYMBOL
-0x66f17db5 phy_device_remove vmlinux EXPORT_SYMBOL
-0x5306de5e phy_get_c45_ids vmlinux EXPORT_SYMBOL
-0xc85b9c69 phy_find_first vmlinux EXPORT_SYMBOL
-0xefbc95e3 phy_connect_direct vmlinux EXPORT_SYMBOL
-0x858aac15 phy_connect vmlinux EXPORT_SYMBOL
-0x77b423af phy_disconnect vmlinux EXPORT_SYMBOL
-0x3ea07ad7 phy_init_hw vmlinux EXPORT_SYMBOL
-0xab2b257c phy_attached_info vmlinux EXPORT_SYMBOL
-0x67921046 phy_attached_info_irq vmlinux EXPORT_SYMBOL
-0x7eedcfd9 phy_attached_print vmlinux EXPORT_SYMBOL
-0x394a1e11 phy_sfp_attach vmlinux EXPORT_SYMBOL
-0xb6acaa13 phy_sfp_detach vmlinux EXPORT_SYMBOL
-0x1e1bdfc7 phy_sfp_probe vmlinux EXPORT_SYMBOL
-0x693986c9 phy_attach_direct vmlinux EXPORT_SYMBOL
-0x4e0d5645 phy_attach vmlinux EXPORT_SYMBOL
-0x887c64f9 phy_driver_is_genphy vmlinux EXPORT_SYMBOL_GPL
-0xa493bbbc phy_driver_is_genphy_10g vmlinux EXPORT_SYMBOL_GPL
-0x275373eb phy_package_join vmlinux EXPORT_SYMBOL_GPL
-0x1144d8eb phy_package_leave vmlinux EXPORT_SYMBOL_GPL
-0x3096c069 devm_phy_package_join vmlinux EXPORT_SYMBOL_GPL
-0xa53e09a3 phy_detach vmlinux EXPORT_SYMBOL
-0xc6c5e39f phy_suspend vmlinux EXPORT_SYMBOL
-0x34e850a9 __phy_resume vmlinux EXPORT_SYMBOL
-0xc813c42b phy_resume vmlinux EXPORT_SYMBOL
-0x782fd371 phy_loopback vmlinux EXPORT_SYMBOL
-0xcc4d2dd0 phy_reset_after_clk_enable vmlinux EXPORT_SYMBOL
-0x52c5cac0 genphy_config_eee_advert vmlinux EXPORT_SYMBOL
-0x2341e8fc genphy_setup_forced vmlinux EXPORT_SYMBOL
-0xd9aa4ecb genphy_read_master_slave vmlinux EXPORT_SYMBOL
-0x26fdfb38 genphy_restart_aneg vmlinux EXPORT_SYMBOL
-0x9f7cb5d6 genphy_check_and_restart_aneg vmlinux EXPORT_SYMBOL
-0x2f86df2f __genphy_config_aneg vmlinux EXPORT_SYMBOL
-0x2b2099b2 genphy_c37_config_aneg vmlinux EXPORT_SYMBOL
-0x85c9c612 genphy_aneg_done vmlinux EXPORT_SYMBOL
-0xf1217a75 genphy_update_link vmlinux EXPORT_SYMBOL
-0x64ab6481 genphy_read_lpa vmlinux EXPORT_SYMBOL
-0x3a2c101c genphy_read_status_fixed vmlinux EXPORT_SYMBOL
-0x88ddea0f genphy_read_status vmlinux EXPORT_SYMBOL
-0xdbaa38e9 genphy_c37_read_status vmlinux EXPORT_SYMBOL
-0xfc0a12ad genphy_soft_reset vmlinux EXPORT_SYMBOL
-0x39a1764a genphy_handle_interrupt_no_ack vmlinux EXPORT_SYMBOL
-0xe75b37a2 genphy_read_abilities vmlinux EXPORT_SYMBOL
-0x02ba8516 genphy_read_mmd_unsupported vmlinux EXPORT_SYMBOL
-0x6e5789f0 genphy_write_mmd_unsupported vmlinux EXPORT_SYMBOL
-0x41d1e7b0 genphy_suspend vmlinux EXPORT_SYMBOL
-0xd4b439ba genphy_resume vmlinux EXPORT_SYMBOL
-0x37b7ab97 genphy_loopback vmlinux EXPORT_SYMBOL
-0x3776d541 phy_remove_link_mode vmlinux EXPORT_SYMBOL
-0x6b9fa2c1 phy_advertise_supported vmlinux EXPORT_SYMBOL
-0x31963032 phy_support_sym_pause vmlinux EXPORT_SYMBOL
-0x23a38610 phy_support_asym_pause vmlinux EXPORT_SYMBOL
-0xb1319b5a phy_set_sym_pause vmlinux EXPORT_SYMBOL
-0x35f0dd0c phy_set_asym_pause vmlinux EXPORT_SYMBOL
-0x93c63ed1 phy_validate_pause vmlinux EXPORT_SYMBOL
-0x7686efa0 phy_get_pause vmlinux EXPORT_SYMBOL
-0xbf36af87 phy_get_internal_delay vmlinux EXPORT_SYMBOL
-0x9bb46eb4 fwnode_mdio_find_device vmlinux EXPORT_SYMBOL
-0xb1e55035 fwnode_phy_find_device vmlinux EXPORT_SYMBOL
-0xb2407ab6 device_phy_find_device vmlinux EXPORT_SYMBOL_GPL
-0xdd274a3e fwnode_get_phy_node vmlinux EXPORT_SYMBOL_GPL
-0x7852c6b2 phy_driver_register vmlinux EXPORT_SYMBOL
-0x41f7276b phy_drivers_register vmlinux EXPORT_SYMBOL
-0xea6b2f68 phy_driver_unregister vmlinux EXPORT_SYMBOL
-0xa420779d phy_drivers_unregister vmlinux EXPORT_SYMBOL
-0xd59a1587 linkmode_resolve_pause vmlinux EXPORT_SYMBOL_GPL
-0xf4689d50 linkmode_set_pause vmlinux EXPORT_SYMBOL_GPL
-0xfdc1fcc0 mdiobus_register_device vmlinux EXPORT_SYMBOL
-0x34679c15 mdiobus_unregister_device vmlinux EXPORT_SYMBOL
-0xda710c5a mdiobus_get_phy vmlinux EXPORT_SYMBOL
-0x236b588c mdiobus_is_registered_device vmlinux EXPORT_SYMBOL
-0x4dd7bd19 mdiobus_alloc_size vmlinux EXPORT_SYMBOL
-0x31802c4b mdio_find_bus vmlinux EXPORT_SYMBOL
-0x48503f1d mdiobus_scan_c22 vmlinux EXPORT_SYMBOL
-0xb254bb93 __mdiobus_register vmlinux EXPORT_SYMBOL
-0x0a7d9a39 mdiobus_unregister vmlinux EXPORT_SYMBOL
-0x5e5a444c mdiobus_free vmlinux EXPORT_SYMBOL
-0x01f902ca __mdiobus_read vmlinux EXPORT_SYMBOL
-0x74bbdd78 __mdiobus_write vmlinux EXPORT_SYMBOL
-0xf3d0d765 __mdiobus_modify_changed vmlinux EXPORT_SYMBOL_GPL
-0x3a041ab9 __mdiobus_c45_read vmlinux EXPORT_SYMBOL
-0xad2467ae __mdiobus_c45_write vmlinux EXPORT_SYMBOL
-0xf9fccc61 mdiobus_read_nested vmlinux EXPORT_SYMBOL
-0xe45a0aae mdiobus_read vmlinux EXPORT_SYMBOL
-0x2c8a7574 mdiobus_c45_read vmlinux EXPORT_SYMBOL
-0xff288404 mdiobus_c45_read_nested vmlinux EXPORT_SYMBOL
-0x27e7054b mdiobus_write_nested vmlinux EXPORT_SYMBOL
-0x313763af mdiobus_write vmlinux EXPORT_SYMBOL
-0x82e822da mdiobus_c45_write vmlinux EXPORT_SYMBOL
-0x658639c4 mdiobus_c45_write_nested vmlinux EXPORT_SYMBOL
-0x7c31a2a1 __mdiobus_modify vmlinux EXPORT_SYMBOL_GPL
-0xea4918f3 mdiobus_modify vmlinux EXPORT_SYMBOL_GPL
-0x9acb8320 mdiobus_c45_modify vmlinux EXPORT_SYMBOL_GPL
-0xd9e16e2c mdiobus_modify_changed vmlinux EXPORT_SYMBOL_GPL
-0xb44dd69d mdiobus_c45_modify_changed vmlinux EXPORT_SYMBOL_GPL
-0x34e0500a mdio_bus_type vmlinux EXPORT_SYMBOL
-0xfab30dc0 mdio_bus_exit vmlinux EXPORT_SYMBOL_GPL
-0x9db96c08 mdio_device_free vmlinux EXPORT_SYMBOL
-0xab5e73c5 mdio_device_create vmlinux EXPORT_SYMBOL
-0xbd8e0b8f mdio_device_register vmlinux EXPORT_SYMBOL
-0xae71e5f5 mdio_device_remove vmlinux EXPORT_SYMBOL
-0x0824b8e1 mdio_device_reset vmlinux EXPORT_SYMBOL
-0x27319f74 mdio_driver_register vmlinux EXPORT_SYMBOL
-0x1986e208 mdio_driver_unregister vmlinux EXPORT_SYMBOL
-0xe4e48b12 swphy_validate_state vmlinux EXPORT_SYMBOL_GPL
-0x18e4f8aa swphy_read_reg vmlinux EXPORT_SYMBOL_GPL
-0xceb3024e phy_led_trigger_change_speed vmlinux EXPORT_SYMBOL_GPL
-0xfe729173 phy_led_triggers_register vmlinux EXPORT_SYMBOL_GPL
-0x8b80c932 phy_led_triggers_unregister vmlinux EXPORT_SYMBOL_GPL
-0x14670253 register_mii_tstamp_controller vmlinux EXPORT_SYMBOL
-0x59e5d81b unregister_mii_tstamp_controller vmlinux EXPORT_SYMBOL
-0x5d10c8f0 register_mii_timestamper vmlinux EXPORT_SYMBOL
-0xebd4bdf0 unregister_mii_timestamper vmlinux EXPORT_SYMBOL
-0xa4031b7f sfp_parse_port vmlinux EXPORT_SYMBOL_GPL
-0x076356e7 sfp_may_have_phy vmlinux EXPORT_SYMBOL_GPL
-0x7847c621 sfp_parse_support vmlinux EXPORT_SYMBOL_GPL
-0x5b777264 sfp_select_interface vmlinux EXPORT_SYMBOL_GPL
-0x77e75be3 sfp_bus_put vmlinux EXPORT_SYMBOL_GPL
-0x5879a27d sfp_get_module_info vmlinux EXPORT_SYMBOL_GPL
-0x8ac1407b sfp_get_module_eeprom vmlinux EXPORT_SYMBOL_GPL
-0x316941c1 sfp_get_module_eeprom_by_page vmlinux EXPORT_SYMBOL_GPL
-0xccf52bc9 sfp_upstream_start vmlinux EXPORT_SYMBOL_GPL
-0x8a62b81b sfp_upstream_stop vmlinux EXPORT_SYMBOL_GPL
-0xf1124ecd sfp_upstream_set_signal_rate vmlinux EXPORT_SYMBOL_GPL
-0x6510b6e0 sfp_bus_find_fwnode vmlinux EXPORT_SYMBOL_GPL
-0xe1b86db4 sfp_bus_add_upstream vmlinux EXPORT_SYMBOL_GPL
-0xf0910075 sfp_bus_del_upstream vmlinux EXPORT_SYMBOL_GPL
-0x60edbce5 sfp_add_phy vmlinux EXPORT_SYMBOL_GPL
-0x6129fb93 sfp_remove_phy vmlinux EXPORT_SYMBOL_GPL
-0x66b97421 sfp_link_up vmlinux EXPORT_SYMBOL_GPL
-0x6b413c9b sfp_link_down vmlinux EXPORT_SYMBOL_GPL
-0x648f59a9 sfp_module_insert vmlinux EXPORT_SYMBOL_GPL
-0x58def6ca sfp_module_remove vmlinux EXPORT_SYMBOL_GPL
-0xda320d31 sfp_module_start vmlinux EXPORT_SYMBOL_GPL
-0x419e7efd sfp_module_stop vmlinux EXPORT_SYMBOL_GPL
-0x5e93ecff sfp_register_socket vmlinux EXPORT_SYMBOL_GPL
-0xb6787346 sfp_unregister_socket vmlinux EXPORT_SYMBOL_GPL
-0xda46cb93 fixed_phy_change_carrier vmlinux EXPORT_SYMBOL_GPL
-0xdaaac4ba fixed_phy_set_link_update vmlinux EXPORT_SYMBOL_GPL
-0x92d31cfb fixed_phy_add vmlinux EXPORT_SYMBOL_GPL
-0x2ead4363 fixed_phy_register vmlinux EXPORT_SYMBOL_GPL
-0x0f21e130 fixed_phy_register_with_gpiod vmlinux EXPORT_SYMBOL_GPL
-0x5b36711f fixed_phy_unregister vmlinux EXPORT_SYMBOL_GPL
-0xb80cf23e __acpi_mdiobus_register vmlinux EXPORT_SYMBOL
-0x092c0fdc fwnode_mdiobus_phy_device_register vmlinux EXPORT_SYMBOL
-0x46631fb9 fwnode_mdiobus_register_phy vmlinux EXPORT_SYMBOL
-0xf44a7dea cavium_ptp_get vmlinux EXPORT_SYMBOL
-0x913f8fdf cavium_ptp_put vmlinux EXPORT_SYMBOL
-0xcf97f3bd dead_socket vmlinux EXPORT_SYMBOL
-0x212db8d2 pcmcia_socket_list vmlinux EXPORT_SYMBOL
-0xf942709b pcmcia_socket_list_rwsem vmlinux EXPORT_SYMBOL
-0x020e0723 pcmcia_get_socket vmlinux EXPORT_SYMBOL
-0x24262a1a pcmcia_put_socket vmlinux EXPORT_SYMBOL
-0xbbef2884 pcmcia_register_socket vmlinux EXPORT_SYMBOL
-0x821f61f3 pcmcia_unregister_socket vmlinux EXPORT_SYMBOL
-0xc43e00f3 pcmcia_get_socket_by_nr vmlinux EXPORT_SYMBOL
-0x2cace5e4 pcmcia_parse_events vmlinux EXPORT_SYMBOL
-0x54e359e3 pcmcia_parse_uevents vmlinux EXPORT_SYMBOL
-0xf80e1d36 pccard_register_pcmcia vmlinux EXPORT_SYMBOL
-0x13f58a92 pcmcia_reset_card vmlinux EXPORT_SYMBOL
-0xb8d68980 pcmcia_socket_class vmlinux EXPORT_SYMBOL
-0x79913abf pccard_static_ops vmlinux EXPORT_SYMBOL
-0x1a146ec3 usb_ep_type_string vmlinux EXPORT_SYMBOL_GPL
-0x2f0d9053 usb_otg_state_string vmlinux EXPORT_SYMBOL_GPL
-0x77ae495d usb_speed_string vmlinux EXPORT_SYMBOL_GPL
-0xa3814556 usb_get_maximum_speed vmlinux EXPORT_SYMBOL_GPL
-0x1bf033d5 usb_get_maximum_ssp_rate vmlinux EXPORT_SYMBOL_GPL
-0x4de17ab3 usb_state_string vmlinux EXPORT_SYMBOL_GPL
-0x03220ada usb_get_dr_mode vmlinux EXPORT_SYMBOL_GPL
-0x6c5c257f usb_get_role_switch_default_mode vmlinux EXPORT_SYMBOL_GPL
-0x00d4c500 usb_decode_interval vmlinux EXPORT_SYMBOL_GPL
-0xa0d78ec5 usb_debug_root vmlinux EXPORT_SYMBOL_GPL
-0x4531624f usb_decode_ctrl vmlinux EXPORT_SYMBOL_GPL
-0x282cdabc usb_led_activity vmlinux EXPORT_SYMBOL_GPL
-0x19a304ba usb_disabled vmlinux EXPORT_SYMBOL_GPL
-0x93c7edeb usb_find_common_endpoints vmlinux EXPORT_SYMBOL_GPL
-0x1e9c590a usb_find_common_endpoints_reverse vmlinux EXPORT_SYMBOL_GPL
-0x2d7c8612 usb_check_bulk_endpoints vmlinux EXPORT_SYMBOL_GPL
-0xf158efd3 usb_check_int_endpoints vmlinux EXPORT_SYMBOL_GPL
-0x337c7116 usb_find_alt_setting vmlinux EXPORT_SYMBOL_GPL
-0x3a669ca4 usb_ifnum_to_if vmlinux EXPORT_SYMBOL_GPL
-0x10788448 usb_altnum_to_altsetting vmlinux EXPORT_SYMBOL_GPL
-0x76cc6ee8 usb_find_interface vmlinux EXPORT_SYMBOL_GPL
-0x8734dba7 usb_for_each_dev vmlinux EXPORT_SYMBOL_GPL
-0xd3815714 usb_alloc_dev vmlinux EXPORT_SYMBOL_GPL
-0x0e657b06 usb_get_dev vmlinux EXPORT_SYMBOL_GPL
-0x710cd326 usb_put_dev vmlinux EXPORT_SYMBOL_GPL
-0x34c1fc34 usb_get_intf vmlinux EXPORT_SYMBOL_GPL
-0x429f7de4 usb_put_intf vmlinux EXPORT_SYMBOL_GPL
-0x4ced9e5f usb_intf_get_dma_device vmlinux EXPORT_SYMBOL_GPL
-0x6f496b4b usb_lock_device_for_reset vmlinux EXPORT_SYMBOL_GPL
-0xb029c99b usb_get_current_frame_number vmlinux EXPORT_SYMBOL_GPL
-0xd36760ef __usb_get_extra_descriptor vmlinux EXPORT_SYMBOL_GPL
-0xa985f044 usb_alloc_coherent vmlinux EXPORT_SYMBOL_GPL
-0x4e6797c4 usb_free_coherent vmlinux EXPORT_SYMBOL_GPL
-0xbc9b8588 ehci_cf_port_reset_rwsem vmlinux EXPORT_SYMBOL_GPL
-0x9a061ae6 usb_wakeup_notification vmlinux EXPORT_SYMBOL_GPL
-0x03a2ded5 usb_hub_clear_tt_buffer vmlinux EXPORT_SYMBOL_GPL
-0xe149e9b0 usb_hub_claim_port vmlinux EXPORT_SYMBOL_GPL
-0x293361a7 usb_hub_release_port vmlinux EXPORT_SYMBOL_GPL
-0x51b98b16 usb_set_device_state vmlinux EXPORT_SYMBOL_GPL
-0x70778980 usb_disable_ltm vmlinux EXPORT_SYMBOL_GPL
-0xe866b1ea usb_enable_ltm vmlinux EXPORT_SYMBOL_GPL
-0x7df71179 usb_wakeup_enabled_descendants vmlinux EXPORT_SYMBOL_GPL
-0x48767e7e usb_root_hub_lost_power vmlinux EXPORT_SYMBOL_GPL
-0x0610f8f2 usb_disable_lpm vmlinux EXPORT_SYMBOL_GPL
-0x99179794 usb_unlocked_disable_lpm vmlinux EXPORT_SYMBOL_GPL
-0x9e01c098 usb_enable_lpm vmlinux EXPORT_SYMBOL_GPL
-0xda83b857 usb_unlocked_enable_lpm vmlinux EXPORT_SYMBOL_GPL
-0xa50a2bf7 usb_ep0_reinit vmlinux EXPORT_SYMBOL_GPL
-0xb01b8d30 usb_reset_device vmlinux EXPORT_SYMBOL_GPL
-0xd1ccdad1 usb_queue_reset_device vmlinux EXPORT_SYMBOL_GPL
-0x62cae3e8 usb_hub_find_child vmlinux EXPORT_SYMBOL_GPL
-0xc17515d7 usb_hcds_loaded vmlinux EXPORT_SYMBOL_GPL
-0x790be0b9 usb_bus_idr vmlinux EXPORT_SYMBOL_GPL
-0xae0ecf40 usb_bus_idr_lock vmlinux EXPORT_SYMBOL_GPL
-0x43f17bc9 usb_hcd_poll_rh_status vmlinux EXPORT_SYMBOL_GPL
-0xd737b9f6 usb_hcd_start_port_resume vmlinux EXPORT_SYMBOL_GPL
-0xc1cd00db usb_hcd_end_port_resume vmlinux EXPORT_SYMBOL_GPL
-0x7e64181d usb_calc_bus_time vmlinux EXPORT_SYMBOL_GPL
-0x866764d3 usb_hcd_link_urb_to_ep vmlinux EXPORT_SYMBOL_GPL
-0xb4667c00 usb_hcd_check_unlink_urb vmlinux EXPORT_SYMBOL_GPL
-0x2c0e8ae4 usb_hcd_unlink_urb_from_ep vmlinux EXPORT_SYMBOL_GPL
-0x1ca95fbc usb_hcd_unmap_urb_setup_for_dma vmlinux EXPORT_SYMBOL_GPL
-0x58718253 usb_hcd_unmap_urb_for_dma vmlinux EXPORT_SYMBOL_GPL
-0x7e53d895 usb_hcd_map_urb_for_dma vmlinux EXPORT_SYMBOL_GPL
-0x940e12e7 usb_hcd_giveback_urb vmlinux EXPORT_SYMBOL_GPL
-0x70d717fb usb_alloc_streams vmlinux EXPORT_SYMBOL_GPL
-0xd5582e43 usb_free_streams vmlinux EXPORT_SYMBOL_GPL
-0xf71cb2c0 usb_hcd_resume_root_hub vmlinux EXPORT_SYMBOL_GPL
-0x70cf032f usb_hcd_irq vmlinux EXPORT_SYMBOL_GPL
-0x875e4ee9 usb_hc_died vmlinux EXPORT_SYMBOL_GPL
-0x28c117cd __usb_create_hcd vmlinux EXPORT_SYMBOL_GPL
-0x75ca8a17 usb_create_shared_hcd vmlinux EXPORT_SYMBOL_GPL
-0x66450e2e usb_create_hcd vmlinux EXPORT_SYMBOL_GPL
-0x94556545 usb_get_hcd vmlinux EXPORT_SYMBOL_GPL
-0xa202ecd0 usb_put_hcd vmlinux EXPORT_SYMBOL_GPL
-0x1f70af48 usb_hcd_is_primary_hcd vmlinux EXPORT_SYMBOL_GPL
-0x147896c8 usb_add_hcd vmlinux EXPORT_SYMBOL_GPL
-0xb31b6524 usb_remove_hcd vmlinux EXPORT_SYMBOL_GPL
-0xf6ce2d6e usb_hcd_platform_shutdown vmlinux EXPORT_SYMBOL_GPL
-0xe706db6b usb_hcd_setup_local_mem vmlinux EXPORT_SYMBOL_GPL
-0x98689f49 usb_mon_register vmlinux EXPORT_SYMBOL_GPL
-0xfed11ed1 usb_mon_deregister vmlinux EXPORT_SYMBOL_GPL
-0x7d5b175b usb_init_urb vmlinux EXPORT_SYMBOL_GPL
-0x5b52a266 usb_alloc_urb vmlinux EXPORT_SYMBOL_GPL
-0x3a45eb30 usb_free_urb vmlinux EXPORT_SYMBOL_GPL
-0xa8ce6b63 usb_get_urb vmlinux EXPORT_SYMBOL_GPL
-0x83523024 usb_anchor_urb vmlinux EXPORT_SYMBOL_GPL
-0x63b22d86 usb_unanchor_urb vmlinux EXPORT_SYMBOL_GPL
-0xb981c473 usb_pipe_type_check vmlinux EXPORT_SYMBOL_GPL
-0x7759f017 usb_urb_ep_type_check vmlinux EXPORT_SYMBOL_GPL
-0xba72ee8b usb_submit_urb vmlinux EXPORT_SYMBOL_GPL
-0xf6cf9d46 usb_unlink_urb vmlinux EXPORT_SYMBOL_GPL
-0xd40bc15c usb_kill_urb vmlinux EXPORT_SYMBOL_GPL
-0xf512efa3 usb_poison_urb vmlinux EXPORT_SYMBOL_GPL
-0xdbed2a15 usb_unpoison_urb vmlinux EXPORT_SYMBOL_GPL
-0x74a17fd0 usb_block_urb vmlinux EXPORT_SYMBOL_GPL
-0x962c8ae1 usb_kill_anchored_urbs vmlinux EXPORT_SYMBOL_GPL
-0x842f046d usb_poison_anchored_urbs vmlinux EXPORT_SYMBOL_GPL
-0x86b13d2a usb_unpoison_anchored_urbs vmlinux EXPORT_SYMBOL_GPL
-0x933f75e0 usb_unlink_anchored_urbs vmlinux EXPORT_SYMBOL_GPL
-0x79bc842c usb_anchor_suspend_wakeups vmlinux EXPORT_SYMBOL_GPL
-0x40267068 usb_anchor_resume_wakeups vmlinux EXPORT_SYMBOL_GPL
-0x407af304 usb_wait_anchor_empty_timeout vmlinux EXPORT_SYMBOL_GPL
-0x7d88ce6f usb_get_from_anchor vmlinux EXPORT_SYMBOL_GPL
-0x807766ea usb_scuttle_anchored_urbs vmlinux EXPORT_SYMBOL_GPL
-0x7e8d8619 usb_anchor_empty vmlinux EXPORT_SYMBOL_GPL
-0x5fa35f72 usb_control_msg vmlinux EXPORT_SYMBOL_GPL
-0x57e01990 usb_control_msg_send vmlinux EXPORT_SYMBOL_GPL
-0xf9b6cd21 usb_control_msg_recv vmlinux EXPORT_SYMBOL_GPL
-0x034fb5c0 usb_interrupt_msg vmlinux EXPORT_SYMBOL_GPL
-0x183e8e2a usb_bulk_msg vmlinux EXPORT_SYMBOL_GPL
-0x14cf9fd9 usb_sg_init vmlinux EXPORT_SYMBOL_GPL
-0x03443982 usb_sg_wait vmlinux EXPORT_SYMBOL_GPL
-0x39533444 usb_sg_cancel vmlinux EXPORT_SYMBOL_GPL
-0xe619e25c usb_get_descriptor vmlinux EXPORT_SYMBOL_GPL
-0x0bf7546a usb_string vmlinux EXPORT_SYMBOL_GPL
-0x49eaad33 usb_cache_string vmlinux EXPORT_SYMBOL_GPL
-0xa61bf290 usb_get_status vmlinux EXPORT_SYMBOL_GPL
-0x381d9747 usb_clear_halt vmlinux EXPORT_SYMBOL_GPL
-0x2b36a1d1 usb_reset_endpoint vmlinux EXPORT_SYMBOL_GPL
-0x53426e07 usb_set_interface vmlinux EXPORT_SYMBOL_GPL
-0xa97d37da usb_reset_configuration vmlinux EXPORT_SYMBOL_GPL
-0x6f260115 usb_set_wireless_status vmlinux EXPORT_SYMBOL_GPL
-0x8d6bbd27 usb_set_configuration vmlinux EXPORT_SYMBOL_GPL
-0x9a68b341 usb_driver_set_configuration vmlinux EXPORT_SYMBOL_GPL
-0xe595ee0a cdc_parse_cdc_header vmlinux EXPORT_SYMBOL
-0xf843a1e8 usb_store_new_id vmlinux EXPORT_SYMBOL_GPL
-0xc17e9946 usb_show_dynids vmlinux EXPORT_SYMBOL_GPL
-0x86f77363 usb_driver_claim_interface vmlinux EXPORT_SYMBOL_GPL
-0x97f2aca0 usb_driver_release_interface vmlinux EXPORT_SYMBOL_GPL
-0x7b373a79 usb_match_one_id vmlinux EXPORT_SYMBOL_GPL
-0xc72d41ce usb_match_id vmlinux EXPORT_SYMBOL_GPL
-0xaa53d877 usb_device_match_id vmlinux EXPORT_SYMBOL_GPL
-0xf8a4ce0f usb_register_device_driver vmlinux EXPORT_SYMBOL_GPL
-0x2804beea usb_deregister_device_driver vmlinux EXPORT_SYMBOL_GPL
-0xfd21b07c usb_register_driver vmlinux EXPORT_SYMBOL_GPL
-0x74ba47ee usb_deregister vmlinux EXPORT_SYMBOL_GPL
-0xf6e75110 usb_enable_autosuspend vmlinux EXPORT_SYMBOL_GPL
-0xbe977cb3 usb_disable_autosuspend vmlinux EXPORT_SYMBOL_GPL
-0x5fdcce96 usb_autopm_put_interface vmlinux EXPORT_SYMBOL_GPL
-0x6fd05c5d usb_autopm_put_interface_async vmlinux EXPORT_SYMBOL_GPL
-0xe46c9146 usb_autopm_put_interface_no_suspend vmlinux EXPORT_SYMBOL_GPL
-0x392386f7 usb_autopm_get_interface vmlinux EXPORT_SYMBOL_GPL
-0x56a42249 usb_autopm_get_interface_async vmlinux EXPORT_SYMBOL_GPL
-0xb7f6d48d usb_autopm_get_interface_no_resume vmlinux EXPORT_SYMBOL_GPL
-0x16cb3c74 usb_register_dev vmlinux EXPORT_SYMBOL_GPL
-0x9cd8a7b6 usb_deregister_dev vmlinux EXPORT_SYMBOL_GPL
-0x89bbafc6 usb_register_notify vmlinux EXPORT_SYMBOL_GPL
-0x811dc334 usb_unregister_notify vmlinux EXPORT_SYMBOL_GPL
-0x3dd60db5 usb_choose_configuration vmlinux EXPORT_SYMBOL_GPL
-0xe80d732a usb_phy_roothub_alloc vmlinux EXPORT_SYMBOL_GPL
-0xc93ee1e7 usb_phy_roothub_init vmlinux EXPORT_SYMBOL_GPL
-0xe39d0794 usb_phy_roothub_exit vmlinux EXPORT_SYMBOL_GPL
-0x5bdae35b usb_phy_roothub_set_mode vmlinux EXPORT_SYMBOL_GPL
-0x851e6003 usb_phy_roothub_calibrate vmlinux EXPORT_SYMBOL_GPL
-0x9c803020 usb_phy_roothub_power_on vmlinux EXPORT_SYMBOL_GPL
-0x8c89e3b8 usb_phy_roothub_power_off vmlinux EXPORT_SYMBOL_GPL
-0xb45b1c64 usb_phy_roothub_suspend vmlinux EXPORT_SYMBOL_GPL
-0x6e30f30f usb_phy_roothub_resume vmlinux EXPORT_SYMBOL_GPL
-0x75c468ac usb_hcd_pci_probe vmlinux EXPORT_SYMBOL_GPL
-0xf9ddaad2 usb_hcd_pci_remove vmlinux EXPORT_SYMBOL_GPL
-0x38fbb7ac usb_hcd_pci_shutdown vmlinux EXPORT_SYMBOL_GPL
-0x3ee95c70 usb_hcd_pci_pm_ops vmlinux EXPORT_SYMBOL_GPL
-0xe9c1bd66 usb_acpi_power_manageable vmlinux EXPORT_SYMBOL_GPL
-0x41e09aad usb_acpi_port_lpm_incapable vmlinux EXPORT_SYMBOL_GPL
-0x644bd011 usb_acpi_set_power_state vmlinux EXPORT_SYMBOL_GPL
-0xefb96a31 sb800_prefetch vmlinux EXPORT_SYMBOL_GPL
-0xf72edaf3 usb_hcd_amd_remote_wakeup_quirk vmlinux EXPORT_SYMBOL_GPL
-0x033832c7 usb_amd_hang_symptom_quirk vmlinux EXPORT_SYMBOL_GPL
-0xd87fc0a0 usb_amd_prefetch_quirk vmlinux EXPORT_SYMBOL_GPL
-0xaf4014ff usb_amd_quirk_pll_check vmlinux EXPORT_SYMBOL_GPL
-0xdc825d6c usb_amd_quirk_pll_disable vmlinux EXPORT_SYMBOL_GPL
-0xd9a36ee0 usb_asmedia_modifyflowcontrol vmlinux EXPORT_SYMBOL_GPL
-0x10ecc52c usb_amd_quirk_pll_enable vmlinux EXPORT_SYMBOL_GPL
-0xb9b9df41 usb_amd_dev_put vmlinux EXPORT_SYMBOL_GPL
-0x760703ad usb_amd_pt_check_port vmlinux EXPORT_SYMBOL_GPL
-0x09d93092 uhci_reset_hc vmlinux EXPORT_SYMBOL_GPL
-0xef576c6b uhci_check_and_reset_hc vmlinux EXPORT_SYMBOL_GPL
-0xd03c680e usb_enable_intel_xhci_ports vmlinux EXPORT_SYMBOL_GPL
-0xa01ecb01 usb_disable_xhci_ports vmlinux EXPORT_SYMBOL_GPL
-0x8fb2e71f ehci_handshake vmlinux EXPORT_SYMBOL_GPL
-0xf3ead717 ehci_reset vmlinux EXPORT_SYMBOL_GPL
-0xa542641a ehci_adjust_port_wakeup_flags vmlinux EXPORT_SYMBOL_GPL
-0xff374ba6 ehci_hub_control vmlinux EXPORT_SYMBOL_GPL
-0x2d0da843 ehci_setup vmlinux EXPORT_SYMBOL_GPL
-0x59e11a60 ehci_suspend vmlinux EXPORT_SYMBOL_GPL
-0xb6791fca ehci_resume vmlinux EXPORT_SYMBOL_GPL
-0xe7cc25eb ehci_init_driver vmlinux EXPORT_SYMBOL_GPL
-0x79426b33 ohci_hub_status_data vmlinux EXPORT_SYMBOL_GPL
-0xc19157b1 ohci_hub_control vmlinux EXPORT_SYMBOL_GPL
-0x3b5e3b85 ohci_setup vmlinux EXPORT_SYMBOL_GPL
-0xb65cb492 ohci_restart vmlinux EXPORT_SYMBOL_GPL
-0x8fdcb79e ohci_suspend vmlinux EXPORT_SYMBOL_GPL
-0xc408de30 ohci_resume vmlinux EXPORT_SYMBOL_GPL
-0x06987c32 ohci_init_driver vmlinux EXPORT_SYMBOL_GPL
-0x5f1afa12 xhci_run vmlinux EXPORT_SYMBOL_GPL
-0x70543562 xhci_stop vmlinux EXPORT_SYMBOL_GPL
-0xdb4a293c xhci_shutdown vmlinux EXPORT_SYMBOL_GPL
-0xbf4967e5 xhci_suspend vmlinux EXPORT_SYMBOL_GPL
-0x650bde71 xhci_resume vmlinux EXPORT_SYMBOL_GPL
-0x57d4050a xhci_get_endpoint_index vmlinux EXPORT_SYMBOL_GPL
-0xcd0f5eee xhci_drop_endpoint vmlinux EXPORT_SYMBOL_GPL
-0xc774547c xhci_add_endpoint vmlinux EXPORT_SYMBOL_GPL
-0xc1634b34 xhci_check_bandwidth vmlinux EXPORT_SYMBOL_GPL
-0x6d2124a2 xhci_reset_bandwidth vmlinux EXPORT_SYMBOL_GPL
-0xa4c0319d xhci_update_hub_device vmlinux EXPORT_SYMBOL_GPL
-0x4f91e889 xhci_gen_setup vmlinux EXPORT_SYMBOL_GPL
-0x526859ea xhci_init_driver vmlinux EXPORT_SYMBOL_GPL
-0x3bb9b95b xhci_get_ep_ctx vmlinux EXPORT_SYMBOL_GPL
-0x66418120 xhci_ext_cap_init vmlinux EXPORT_SYMBOL_GPL
-0x88fac4e8 xhci_msi_irq vmlinux EXPORT_SYMBOL_GPL
-0x1cdd0605 xhci_port_state_to_neutral vmlinux EXPORT_SYMBOL_GPL
-0x1eaeb605 xhci_find_slot_id_by_port vmlinux EXPORT_SYMBOL_GPL
-0xdb2b7614 xhci_hub_control vmlinux EXPORT_SYMBOL_GPL
-0xa69e7e93 xhci_dbg_trace vmlinux EXPORT_SYMBOL_GPL
-0x9d670477 __tracepoint_xhci_dbg_quirks vmlinux EXPORT_SYMBOL_GPL
-0x4c549b36 __traceiter_xhci_dbg_quirks vmlinux EXPORT_SYMBOL_GPL
-0x9643f5ac __SCK__tp_func_xhci_dbg_quirks vmlinux EXPORT_SYMBOL_GPL
-0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks vmlinux EXPORT_SYMBOL_GPL
-0xa628c5e2 __tracepoint_xhci_dbg_init vmlinux EXPORT_SYMBOL_GPL
-0xa2402218 __traceiter_xhci_dbg_init vmlinux EXPORT_SYMBOL_GPL
-0x87b87a3b __SCK__tp_func_xhci_dbg_init vmlinux EXPORT_SYMBOL_GPL
-0x8a5c1029 __SCT__tp_func_xhci_dbg_init vmlinux EXPORT_SYMBOL_GPL
-0xdf1882af dbgp_reset_prep vmlinux EXPORT_SYMBOL_GPL
-0x6527a231 dbgp_external_startup vmlinux EXPORT_SYMBOL_GPL
-0xd5474690 usb_role_switch_set_role vmlinux EXPORT_SYMBOL_GPL
-0xff42c374 usb_role_switch_get_role vmlinux EXPORT_SYMBOL_GPL
-0x6a2e8054 usb_role_switch_get vmlinux EXPORT_SYMBOL_GPL
-0x5fd4c46f fwnode_usb_role_switch_get vmlinux EXPORT_SYMBOL_GPL
-0xc9fd634a usb_role_switch_put vmlinux EXPORT_SYMBOL_GPL
-0xbd50bc14 usb_role_switch_find_by_fwnode vmlinux EXPORT_SYMBOL_GPL
-0x39aa4888 usb_role_string vmlinux EXPORT_SYMBOL_GPL
-0x93fd7d88 usb_role_switch_register vmlinux EXPORT_SYMBOL_GPL
-0x2882d40e usb_role_switch_unregister vmlinux EXPORT_SYMBOL_GPL
-0x51a348cc usb_role_switch_set_drvdata vmlinux EXPORT_SYMBOL_GPL
-0x1690b503 usb_role_switch_get_drvdata vmlinux EXPORT_SYMBOL_GPL
-0x368706cd serio_rescan vmlinux EXPORT_SYMBOL
-0x22f4ab3d serio_reconnect vmlinux EXPORT_SYMBOL
-0xece5ed28 __serio_register_port vmlinux EXPORT_SYMBOL
-0x88bf9e59 serio_unregister_port vmlinux EXPORT_SYMBOL
-0x07a55423 serio_unregister_child_port vmlinux EXPORT_SYMBOL
-0xcdb140d6 __serio_register_driver vmlinux EXPORT_SYMBOL
-0x67da43e1 serio_unregister_driver vmlinux EXPORT_SYMBOL
-0x13b3f9d4 serio_open vmlinux EXPORT_SYMBOL
-0xc8e05093 serio_close vmlinux EXPORT_SYMBOL
-0x5066a226 serio_interrupt vmlinux EXPORT_SYMBOL
-0xe96ffd9e serio_bus vmlinux EXPORT_SYMBOL
-0x17f341a0 i8042_lock_chip vmlinux EXPORT_SYMBOL
-0x1b8b95ad i8042_unlock_chip vmlinux EXPORT_SYMBOL
-0xafc671a0 i8042_install_filter vmlinux EXPORT_SYMBOL
-0x1d6e0085 i8042_remove_filter vmlinux EXPORT_SYMBOL
-0x4fdee897 i8042_command vmlinux EXPORT_SYMBOL
-0x466dcd13 ps2_sendbyte vmlinux EXPORT_SYMBOL
-0xb0e6192e ps2_begin_command vmlinux EXPORT_SYMBOL
-0x880d248f ps2_end_command vmlinux EXPORT_SYMBOL
-0xca0f934a ps2_drain vmlinux EXPORT_SYMBOL
-0x213e4965 ps2_is_keyboard_id vmlinux EXPORT_SYMBOL
-0xacec4e88 __ps2_command vmlinux EXPORT_SYMBOL
-0xea6c6cfd ps2_command vmlinux EXPORT_SYMBOL
-0x8152ad24 ps2_sliced_command vmlinux EXPORT_SYMBOL
-0xdbbf658f ps2_init vmlinux EXPORT_SYMBOL
-0x579d52e6 ps2_interrupt vmlinux EXPORT_SYMBOL
-0x434262bd input_event vmlinux EXPORT_SYMBOL
-0x44c6bd7b input_inject_event vmlinux EXPORT_SYMBOL
-0xbf3306df input_alloc_absinfo vmlinux EXPORT_SYMBOL
-0xb103b3ae input_set_abs_params vmlinux EXPORT_SYMBOL
-0x3e9838bc input_copy_abs vmlinux EXPORT_SYMBOL
-0xd85fe719 input_grab_device vmlinux EXPORT_SYMBOL
-0x76d72205 input_release_device vmlinux EXPORT_SYMBOL
-0xfc675738 input_open_device vmlinux EXPORT_SYMBOL
-0x0cd17f11 input_flush_device vmlinux EXPORT_SYMBOL
-0x1a0a0785 input_close_device vmlinux EXPORT_SYMBOL
-0x2c256e1f input_scancode_to_scalar vmlinux EXPORT_SYMBOL
-0x3071fd38 input_get_keycode vmlinux EXPORT_SYMBOL
-0xa9dbe4d9 input_set_keycode vmlinux EXPORT_SYMBOL
-0xac4da920 input_match_device_id vmlinux EXPORT_SYMBOL
-0xd62ae74a input_reset_device vmlinux EXPORT_SYMBOL
-0x4e51a9d8 input_class vmlinux EXPORT_SYMBOL_GPL
-0xb1b0e53a input_allocate_device vmlinux EXPORT_SYMBOL
-0xdbca8d2f devm_input_allocate_device vmlinux EXPORT_SYMBOL
-0x5e77af36 input_free_device vmlinux EXPORT_SYMBOL
-0x56559f6c input_set_timestamp vmlinux EXPORT_SYMBOL
-0x7e047c18 input_get_timestamp vmlinux EXPORT_SYMBOL
-0xc56dbb4d input_set_capability vmlinux EXPORT_SYMBOL
-0x855d272b input_enable_softrepeat vmlinux EXPORT_SYMBOL
-0x470b44da input_device_enabled vmlinux EXPORT_SYMBOL_GPL
-0x2d1cd63e input_register_device vmlinux EXPORT_SYMBOL
-0x16e68177 input_unregister_device vmlinux EXPORT_SYMBOL
-0xebd016f0 input_register_handler vmlinux EXPORT_SYMBOL
-0x6c0802ed input_unregister_handler vmlinux EXPORT_SYMBOL
-0xb69a1e05 input_handler_for_each_handle vmlinux EXPORT_SYMBOL
-0x5bfc58f9 input_register_handle vmlinux EXPORT_SYMBOL
-0xf2589226 input_unregister_handle vmlinux EXPORT_SYMBOL
-0xc0ff21c1 input_get_new_minor vmlinux EXPORT_SYMBOL
-0x5cf53ce2 input_free_minor vmlinux EXPORT_SYMBOL
-0xe233762a input_event_from_user vmlinux EXPORT_SYMBOL_GPL
-0xf7455c16 input_event_to_user vmlinux EXPORT_SYMBOL_GPL
-0x59b2adbf input_ff_effect_from_user vmlinux EXPORT_SYMBOL_GPL
-0x14d0978e input_mt_init_slots vmlinux EXPORT_SYMBOL
-0x4ebb88c7 input_mt_destroy_slots vmlinux EXPORT_SYMBOL
-0xdbb12575 input_mt_report_slot_state vmlinux EXPORT_SYMBOL
-0xcc2e2b1d input_mt_report_finger_count vmlinux EXPORT_SYMBOL
-0x47bbe3c8 input_mt_report_pointer_emulation vmlinux EXPORT_SYMBOL
-0x32017959 input_mt_drop_unused vmlinux EXPORT_SYMBOL
-0xf5f21f94 input_mt_sync_frame vmlinux EXPORT_SYMBOL
-0xa544bb98 input_mt_assign_slots vmlinux EXPORT_SYMBOL
-0x03ca5157 input_mt_get_slot_by_key vmlinux EXPORT_SYMBOL
-0x359a052a input_setup_polling vmlinux EXPORT_SYMBOL
-0x1e91b30a input_set_poll_interval vmlinux EXPORT_SYMBOL
-0x04706bc7 input_set_min_poll_interval vmlinux EXPORT_SYMBOL
-0x289cb25a input_set_max_poll_interval vmlinux EXPORT_SYMBOL
-0x94daba58 input_get_poll_interval vmlinux EXPORT_SYMBOL
-0xa9713e35 input_ff_upload vmlinux EXPORT_SYMBOL_GPL
-0xeda48f5b input_ff_erase vmlinux EXPORT_SYMBOL_GPL
-0xb975271f input_ff_flush vmlinux EXPORT_SYMBOL_GPL
-0x4321865d input_ff_event vmlinux EXPORT_SYMBOL_GPL
-0xb168a22f input_ff_create vmlinux EXPORT_SYMBOL_GPL
-0xcd46abd6 input_ff_destroy vmlinux EXPORT_SYMBOL_GPL
-0x98a2506b touchscreen_parse_properties vmlinux EXPORT_SYMBOL
-0xcf9b558d touchscreen_set_mt_pos vmlinux EXPORT_SYMBOL
-0x5f0b3792 touchscreen_report_pos vmlinux EXPORT_SYMBOL
-0xfe19dc28 vivaldi_function_row_physmap_show vmlinux EXPORT_SYMBOL_GPL
-0x6971447a rtc_month_days vmlinux EXPORT_SYMBOL
-0x4859b8bb rtc_year_days vmlinux EXPORT_SYMBOL
-0x356461c8 rtc_time64_to_tm vmlinux EXPORT_SYMBOL
-0x5838f6c9 rtc_valid_tm vmlinux EXPORT_SYMBOL
-0x4f2250ba rtc_tm_to_time64 vmlinux EXPORT_SYMBOL
-0x23412816 rtc_tm_to_ktime vmlinux EXPORT_SYMBOL_GPL
-0xe4c2c66c rtc_ktime_to_tm vmlinux EXPORT_SYMBOL_GPL
-0x4879e0d7 devm_rtc_allocate_device vmlinux EXPORT_SYMBOL_GPL
-0x518df072 __devm_rtc_register_device vmlinux EXPORT_SYMBOL_GPL
-0x78829233 devm_rtc_device_register vmlinux EXPORT_SYMBOL_GPL
-0x3d129ef7 rtc_read_time vmlinux EXPORT_SYMBOL_GPL
-0x51e588ef rtc_set_time vmlinux EXPORT_SYMBOL_GPL
-0x03ba1de2 rtc_read_alarm vmlinux EXPORT_SYMBOL_GPL
-0x2ece3d2e rtc_set_alarm vmlinux EXPORT_SYMBOL_GPL
-0xf999885a rtc_initialize_alarm vmlinux EXPORT_SYMBOL_GPL
-0xe56c67f1 rtc_alarm_irq_enable vmlinux EXPORT_SYMBOL_GPL
-0x310b1b6b rtc_update_irq_enable vmlinux EXPORT_SYMBOL_GPL
-0x5293e417 rtc_update_irq vmlinux EXPORT_SYMBOL_GPL
-0xfa4ae064 rtc_class_open vmlinux EXPORT_SYMBOL_GPL
-0x10fbaaf5 rtc_class_close vmlinux EXPORT_SYMBOL_GPL
-0x38160964 devm_rtc_nvmem_register vmlinux EXPORT_SYMBOL_GPL
-0xf6e45f73 rtc_add_groups vmlinux EXPORT_SYMBOL
-0x1e9bc82d rtc_add_group vmlinux EXPORT_SYMBOL
-0xb718cc93 mc146818_avoid_UIP vmlinux EXPORT_SYMBOL_GPL
-0x6c7b435f mc146818_does_rtc_work vmlinux EXPORT_SYMBOL_GPL
-0x7982b39c mc146818_get_time vmlinux EXPORT_SYMBOL_GPL
-0x70c6d827 mc146818_set_time vmlinux EXPORT_SYMBOL_GPL
-0x696340a5 __i2c_board_lock vmlinux EXPORT_SYMBOL_GPL
-0x0343bdf1 __i2c_board_list vmlinux EXPORT_SYMBOL_GPL
-0x50e7193a __i2c_first_dynamic_bus_num vmlinux EXPORT_SYMBOL_GPL
-0x550f3e05 i2c_freq_mode_string vmlinux EXPORT_SYMBOL_GPL
-0x5ffe4440 i2c_match_id vmlinux EXPORT_SYMBOL_GPL
-0x0d5073e6 i2c_get_match_data vmlinux EXPORT_SYMBOL
-0x6fa54e2a i2c_generic_scl_recovery vmlinux EXPORT_SYMBOL_GPL
-0x399f240b i2c_recover_bus vmlinux EXPORT_SYMBOL_GPL
-0xb3335462 i2c_bus_type vmlinux EXPORT_SYMBOL_GPL
-0xeeea4506 i2c_client_type vmlinux EXPORT_SYMBOL_GPL
-0x701af71c i2c_verify_client vmlinux EXPORT_SYMBOL
-0xe765e504 i2c_new_client_device vmlinux EXPORT_SYMBOL_GPL
-0x5f17e414 i2c_unregister_device vmlinux EXPORT_SYMBOL_GPL
-0x5cd43a43 i2c_find_device_by_fwnode vmlinux EXPORT_SYMBOL
-0x3cde2bc6 i2c_new_dummy_device vmlinux EXPORT_SYMBOL_GPL
-0x1b94ff04 devm_i2c_new_dummy_device vmlinux EXPORT_SYMBOL_GPL
-0xb83683d3 i2c_new_ancillary_device vmlinux EXPORT_SYMBOL_GPL
-0xabff97a5 i2c_adapter_depth vmlinux EXPORT_SYMBOL_GPL
-0x4570ed7a i2c_adapter_type vmlinux EXPORT_SYMBOL_GPL
-0x86baec5d i2c_verify_adapter vmlinux EXPORT_SYMBOL
-0x6eac42a7 i2c_handle_smbus_host_notify vmlinux EXPORT_SYMBOL_GPL
-0xee7a41ec i2c_add_adapter vmlinux EXPORT_SYMBOL
-0x5b474dce i2c_add_numbered_adapter vmlinux EXPORT_SYMBOL_GPL
-0x7b8866fb i2c_del_adapter vmlinux EXPORT_SYMBOL
-0x53e2d990 devm_i2c_add_adapter vmlinux EXPORT_SYMBOL_GPL
-0xbaaeae19 i2c_find_adapter_by_fwnode vmlinux EXPORT_SYMBOL
-0x4c91ce5e i2c_get_adapter_by_fwnode vmlinux EXPORT_SYMBOL
-0xdf20441b i2c_parse_fw_timings vmlinux EXPORT_SYMBOL_GPL
-0x4947d424 i2c_for_each_dev vmlinux EXPORT_SYMBOL_GPL
-0xe776e028 i2c_register_driver vmlinux EXPORT_SYMBOL
-0x6673d387 i2c_del_driver vmlinux EXPORT_SYMBOL
-0xb63727b6 i2c_clients_command vmlinux EXPORT_SYMBOL
-0xb184801d __i2c_transfer vmlinux EXPORT_SYMBOL
-0x9ffe34dc i2c_transfer vmlinux EXPORT_SYMBOL
-0x561b50bb i2c_transfer_buffer_flags vmlinux EXPORT_SYMBOL
-0xd53ae4e6 i2c_get_device_id vmlinux EXPORT_SYMBOL_GPL
-0x8c82b61c i2c_client_get_device_id vmlinux EXPORT_SYMBOL_GPL
-0xf6236e85 i2c_probe_func_quick_read vmlinux EXPORT_SYMBOL_GPL
-0x4e06389a i2c_new_scanned_device vmlinux EXPORT_SYMBOL_GPL
-0x6f823bdb i2c_get_adapter vmlinux EXPORT_SYMBOL
-0xe8920133 i2c_put_adapter vmlinux EXPORT_SYMBOL
-0x42041512 i2c_get_dma_safe_msg_buf vmlinux EXPORT_SYMBOL_GPL
-0x4dae16e4 i2c_put_dma_safe_msg_buf vmlinux EXPORT_SYMBOL_GPL
-0xfa2e5f32 i2c_smbus_pec vmlinux EXPORT_SYMBOL
-0x0705a709 i2c_smbus_read_byte vmlinux EXPORT_SYMBOL
-0xc603fd98 i2c_smbus_write_byte vmlinux EXPORT_SYMBOL
-0x202d56f6 i2c_smbus_read_byte_data vmlinux EXPORT_SYMBOL
-0x26903762 i2c_smbus_write_byte_data vmlinux EXPORT_SYMBOL
-0x0944fb09 i2c_smbus_read_word_data vmlinux EXPORT_SYMBOL
-0xf14680ff i2c_smbus_write_word_data vmlinux EXPORT_SYMBOL
-0xc0c893a2 i2c_smbus_read_block_data vmlinux EXPORT_SYMBOL
-0x31a5bb69 i2c_smbus_write_block_data vmlinux EXPORT_SYMBOL
-0x7439867c i2c_smbus_read_i2c_block_data vmlinux EXPORT_SYMBOL
-0x729375f0 i2c_smbus_write_i2c_block_data vmlinux EXPORT_SYMBOL
-0x9e9a0ee7 i2c_smbus_xfer vmlinux EXPORT_SYMBOL
-0xd9f59a08 __i2c_smbus_xfer vmlinux EXPORT_SYMBOL
-0x40cdd943 i2c_smbus_read_i2c_block_data_or_emulated vmlinux EXPORT_SYMBOL
-0xed686dcc i2c_new_smbus_alert_device vmlinux EXPORT_SYMBOL_GPL
-0x7f8839d6 i2c_acpi_get_i2c_resource vmlinux EXPORT_SYMBOL_GPL
-0xeddcd4a4 i2c_acpi_client_count vmlinux EXPORT_SYMBOL_GPL
-0x4e1a8c10 i2c_acpi_find_bus_speed vmlinux EXPORT_SYMBOL_GPL
-0x92cb58e8 i2c_acpi_find_adapter_by_handle vmlinux EXPORT_SYMBOL_GPL
-0x8bea4b9c i2c_acpi_new_device_by_fwnode vmlinux EXPORT_SYMBOL_GPL
-0x46eb171a i2c_acpi_waive_d0_probe vmlinux EXPORT_SYMBOL_GPL
-0x49a1355b pps_lookup_dev vmlinux EXPORT_SYMBOL
-0x3aed4525 pps_register_source vmlinux EXPORT_SYMBOL
-0xea7b900f pps_unregister_source vmlinux EXPORT_SYMBOL
-0x31847664 pps_event vmlinux EXPORT_SYMBOL
-0x2afd2fb9 ptp_clock_register vmlinux EXPORT_SYMBOL
-0x17c930a0 ptp_clock_unregister vmlinux EXPORT_SYMBOL
-0xe65adaee ptp_clock_event vmlinux EXPORT_SYMBOL
-0x93defaa9 ptp_clock_index vmlinux EXPORT_SYMBOL
-0x5bf62296 ptp_find_pin vmlinux EXPORT_SYMBOL
-0x8346e923 ptp_find_pin_unlocked vmlinux EXPORT_SYMBOL
-0x8c761096 ptp_schedule_worker vmlinux EXPORT_SYMBOL
-0x02c552d6 ptp_cancel_worker_sync vmlinux EXPORT_SYMBOL
-0xacddd806 ptp_get_vclocks_index vmlinux EXPORT_SYMBOL
-0xcc411ed1 ptp_convert_timestamp vmlinux EXPORT_SYMBOL
-0xfb150be8 power_supply_class vmlinux EXPORT_SYMBOL_GPL
-0x5624f826 power_supply_notifier vmlinux EXPORT_SYMBOL_GPL
-0x1156db94 power_supply_changed vmlinux EXPORT_SYMBOL_GPL
-0x4ce6004e power_supply_am_i_supplied vmlinux EXPORT_SYMBOL_GPL
-0x2c208607 power_supply_is_system_supplied vmlinux EXPORT_SYMBOL_GPL
-0x396f4067 power_supply_get_property_from_supplier vmlinux EXPORT_SYMBOL_GPL
-0x1e0631cc power_supply_set_battery_charged vmlinux EXPORT_SYMBOL_GPL
-0xd4c8b4ff power_supply_get_by_name vmlinux EXPORT_SYMBOL_GPL
-0xbd21affe power_supply_put vmlinux EXPORT_SYMBOL_GPL
-0x760b452b power_supply_get_battery_info vmlinux EXPORT_SYMBOL_GPL
-0x1b0e29de power_supply_put_battery_info vmlinux EXPORT_SYMBOL_GPL
-0xdf558314 power_supply_battery_info_properties vmlinux EXPORT_SYMBOL_GPL
-0xb1dfecea power_supply_battery_info_properties_size vmlinux EXPORT_SYMBOL_GPL
-0x3b03208d power_supply_battery_info_has_prop vmlinux EXPORT_SYMBOL_GPL
-0x4e6fc9b0 power_supply_battery_info_get_prop vmlinux EXPORT_SYMBOL_GPL
-0x2b6150fb power_supply_temp2resist_simple vmlinux EXPORT_SYMBOL_GPL
-0x60ae0922 power_supply_vbat2ri vmlinux EXPORT_SYMBOL_GPL
-0x8d908ebf power_supply_get_maintenance_charging_setting vmlinux EXPORT_SYMBOL_GPL
-0x5cad8fc3 power_supply_ocv2cap_simple vmlinux EXPORT_SYMBOL_GPL
-0x02c5c501 power_supply_find_ocv2cap_table vmlinux EXPORT_SYMBOL_GPL
-0x380dde36 power_supply_batinfo_ocv2cap vmlinux EXPORT_SYMBOL_GPL
-0xfaaf8621 power_supply_battery_bti_in_range vmlinux EXPORT_SYMBOL_GPL
-0x4f9e7bdd power_supply_get_property vmlinux EXPORT_SYMBOL_GPL
-0x23b406c3 power_supply_set_property vmlinux EXPORT_SYMBOL_GPL
-0xab6a7c55 power_supply_property_is_writeable vmlinux EXPORT_SYMBOL_GPL
-0xf0a5eb03 power_supply_external_power_changed vmlinux EXPORT_SYMBOL_GPL
-0x527470d8 power_supply_powers vmlinux EXPORT_SYMBOL_GPL
-0x136209db power_supply_reg_notifier vmlinux EXPORT_SYMBOL_GPL
-0x6b81c38b power_supply_unreg_notifier vmlinux EXPORT_SYMBOL_GPL
-0x8f7c733e power_supply_register vmlinux EXPORT_SYMBOL_GPL
-0xa9295138 power_supply_register_no_ws vmlinux EXPORT_SYMBOL_GPL
-0x2f6092cf devm_power_supply_register vmlinux EXPORT_SYMBOL_GPL
-0xa1e4c0ac devm_power_supply_register_no_ws vmlinux EXPORT_SYMBOL_GPL
-0x5fffee08 power_supply_unregister vmlinux EXPORT_SYMBOL_GPL
-0xad003412 power_supply_get_drvdata vmlinux EXPORT_SYMBOL_GPL
-0x3bf94ffd power_supply_charge_behaviour_show vmlinux EXPORT_SYMBOL_GPL
-0xed2c5bcf power_supply_charge_behaviour_parse vmlinux EXPORT_SYMBOL_GPL
-0x2ed43986 hwmon_notify_event vmlinux EXPORT_SYMBOL_GPL
-0x6ea5c66f hwmon_device_register_with_groups vmlinux EXPORT_SYMBOL_GPL
-0x5e4c01e3 hwmon_device_register_with_info vmlinux EXPORT_SYMBOL_GPL
-0x054ad09f hwmon_device_register_for_thermal vmlinux EXPORT_SYMBOL_GPL HWMON_THERMAL
-0x5d69dc8b hwmon_device_register vmlinux EXPORT_SYMBOL_GPL
-0xec5266bb hwmon_device_unregister vmlinux EXPORT_SYMBOL_GPL
-0x8aadb236 devm_hwmon_device_register_with_groups vmlinux EXPORT_SYMBOL_GPL
-0x16b38be5 devm_hwmon_device_register_with_info vmlinux EXPORT_SYMBOL_GPL
-0xfa2318fa devm_hwmon_device_unregister vmlinux EXPORT_SYMBOL_GPL
-0xa95b5c77 hwmon_sanitize_name vmlinux EXPORT_SYMBOL_GPL
-0x24f54711 devm_hwmon_sanitize_name vmlinux EXPORT_SYMBOL_GPL
-0x3cf3675e thermal_zone_device_critical vmlinux EXPORT_SYMBOL
-0x60ac248d thermal_zone_device_enable vmlinux EXPORT_SYMBOL_GPL
-0x3bf5d8da thermal_zone_device_disable vmlinux EXPORT_SYMBOL_GPL
-0xf7042923 thermal_zone_device_update vmlinux EXPORT_SYMBOL_GPL
-0xaff0793f thermal_zone_device_exec vmlinux EXPORT_SYMBOL_GPL
-0x9ac29796 thermal_zone_bind_cooling_device vmlinux EXPORT_SYMBOL_GPL
-0xb32e228c thermal_zone_unbind_cooling_device vmlinux EXPORT_SYMBOL_GPL
-0x28fc7d7d thermal_cooling_device_register vmlinux EXPORT_SYMBOL_GPL
-0x2309a6bd thermal_of_cooling_device_register vmlinux EXPORT_SYMBOL_GPL
-0x1d307d77 devm_thermal_of_cooling_device_register vmlinux EXPORT_SYMBOL_GPL
-0xb4af5ca0 thermal_cooling_device_update vmlinux EXPORT_SYMBOL_GPL
-0x41f02544 thermal_cooling_device_unregister vmlinux EXPORT_SYMBOL_GPL
-0x8135f3b8 thermal_zone_get_crit_temp vmlinux EXPORT_SYMBOL_GPL
-0x0345b7c9 thermal_zone_device_register_with_trips vmlinux EXPORT_SYMBOL_GPL
-0xe104ecbe thermal_tripless_zone_device_register vmlinux EXPORT_SYMBOL_GPL
-0xfbf4e5e6 thermal_zone_device_priv vmlinux EXPORT_SYMBOL_GPL
-0xd9fadd74 thermal_zone_device_type vmlinux EXPORT_SYMBOL_GPL
-0x7e1d617f thermal_zone_device_id vmlinux EXPORT_SYMBOL_GPL
-0xf680840d thermal_zone_device vmlinux EXPORT_SYMBOL_GPL
-0x2d430aab thermal_zone_device_unregister vmlinux EXPORT_SYMBOL_GPL
-0x689f4842 thermal_zone_get_zone_by_name vmlinux EXPORT_SYMBOL_GPL
-0x4e7fae70 for_each_thermal_trip vmlinux EXPORT_SYMBOL_GPL
-0xe25e6b8a thermal_zone_get_num_trips vmlinux EXPORT_SYMBOL_GPL
-0xfb3dff18 __thermal_zone_get_trip vmlinux EXPORT_SYMBOL_GPL
-0x429434cc thermal_zone_get_trip vmlinux EXPORT_SYMBOL_GPL
-0x6cae4944 get_thermal_instance vmlinux EXPORT_SYMBOL
-0xb289d595 thermal_zone_get_temp vmlinux EXPORT_SYMBOL_GPL
-0x397db6cc thermal_zone_get_slope vmlinux EXPORT_SYMBOL_GPL
-0x05e8558e thermal_zone_get_offset vmlinux EXPORT_SYMBOL_GPL
-0xf81dce70 thermal_genl_cpu_capability_event vmlinux EXPORT_SYMBOL_GPL
-0xff683986 thermal_add_hwmon_sysfs vmlinux EXPORT_SYMBOL_GPL
-0xe832b5e8 thermal_remove_hwmon_sysfs vmlinux EXPORT_SYMBOL_GPL
-0x83db8a6a devm_thermal_add_hwmon_sysfs vmlinux EXPORT_SYMBOL_GPL
-0x33fdcf70 thermal_acpi_active_trip_temp vmlinux EXPORT_SYMBOL_GPL
-0xa47d6620 thermal_acpi_passive_trip_temp vmlinux EXPORT_SYMBOL_GPL
-0xfe16f3f9 thermal_acpi_hot_trip_temp vmlinux EXPORT_SYMBOL_GPL
-0x7ec1dc2f thermal_acpi_critical_trip_temp vmlinux EXPORT_SYMBOL_GPL
-0xa1186518 intel_tcc_get_tjmax vmlinux EXPORT_SYMBOL_GPL INTEL_TCC
-0x8c32aa7b intel_tcc_get_offset vmlinux EXPORT_SYMBOL_GPL INTEL_TCC
-0x1936331f intel_tcc_set_offset vmlinux EXPORT_SYMBOL_GPL INTEL_TCC
-0xdb0da161 intel_tcc_get_temp vmlinux EXPORT_SYMBOL_GPL INTEL_TCC
-0x3a08475f platform_thermal_notify vmlinux EXPORT_SYMBOL
-0x90de0452 platform_thermal_package_notify vmlinux EXPORT_SYMBOL_GPL
-0x8a7cb9c4 platform_thermal_package_rate_control vmlinux EXPORT_SYMBOL_GPL
-0xf5f214b9 thermal_clear_package_intr_status vmlinux EXPORT_SYMBOL_GPL
-0x136e32c7 watchdog_init_timeout vmlinux EXPORT_SYMBOL_GPL
-0xcc8ebdca watchdog_set_restart_priority vmlinux EXPORT_SYMBOL_GPL
-0xecddcee5 watchdog_register_device vmlinux EXPORT_SYMBOL_GPL
-0x9df68392 watchdog_unregister_device vmlinux EXPORT_SYMBOL_GPL
-0xf7e887a6 devm_watchdog_register_device vmlinux EXPORT_SYMBOL_GPL
-0xc1309afb watchdog_set_last_hw_keepalive vmlinux EXPORT_SYMBOL_GPL
-0xc50b7f0f md_cluster_ops vmlinux EXPORT_SYMBOL
-0xe6e6b684 md_new_event vmlinux EXPORT_SYMBOL_GPL
-0x1fe23ba6 md_handle_request vmlinux EXPORT_SYMBOL
-0x32c45426 mddev_suspend vmlinux EXPORT_SYMBOL_GPL
-0x0a4a10de mddev_resume vmlinux EXPORT_SYMBOL_GPL
-0xaff8d34b md_flush_request vmlinux EXPORT_SYMBOL
-0x4381b496 mddev_init vmlinux EXPORT_SYMBOL_GPL
-0x6b9068ec mddev_destroy vmlinux EXPORT_SYMBOL_GPL
-0xad94c858 mddev_unlock vmlinux EXPORT_SYMBOL_GPL
-0x45ae9327 md_find_rdev_nr_rcu vmlinux EXPORT_SYMBOL_GPL
-0xaa2e65f6 md_find_rdev_rcu vmlinux EXPORT_SYMBOL_GPL
-0x4d217f2c md_rdev_clear vmlinux EXPORT_SYMBOL_GPL
-0x7b761b3b sync_page_io vmlinux EXPORT_SYMBOL_GPL
-0xdd813877 md_check_no_bitmap vmlinux EXPORT_SYMBOL
-0x005b519a md_integrity_register vmlinux EXPORT_SYMBOL
-0xcb9a0f73 md_integrity_add_rdev vmlinux EXPORT_SYMBOL
-0xe2c15c61 md_update_sb vmlinux EXPORT_SYMBOL
-0x53bb15ad md_rdev_init vmlinux EXPORT_SYMBOL_GPL
-0xde5b41a9 md_run vmlinux EXPORT_SYMBOL_GPL
-0x62fa840b md_start vmlinux EXPORT_SYMBOL_GPL
-0x113fa404 md_stop_writes vmlinux EXPORT_SYMBOL_GPL
-0x4194ce67 md_stop vmlinux EXPORT_SYMBOL_GPL
-0x80714f62 md_set_array_sectors vmlinux EXPORT_SYMBOL
-0xd9b4fc51 md_wakeup_thread vmlinux EXPORT_SYMBOL
-0x014a6bb9 md_register_thread vmlinux EXPORT_SYMBOL
-0x838a622f md_unregister_thread vmlinux EXPORT_SYMBOL
-0xed765b3f md_error vmlinux EXPORT_SYMBOL
-0xc2b11b57 register_md_personality vmlinux EXPORT_SYMBOL
-0x79bc8e2e unregister_md_personality vmlinux EXPORT_SYMBOL
-0xe2115f05 register_md_cluster_operations vmlinux EXPORT_SYMBOL
-0x15bafe29 unregister_md_cluster_operations vmlinux EXPORT_SYMBOL
-0xc6cea5a2 md_done_sync vmlinux EXPORT_SYMBOL
-0x8d7aaf89 md_write_start vmlinux EXPORT_SYMBOL
-0xe4e5b6ce md_write_inc vmlinux EXPORT_SYMBOL
-0x57e5e59f md_write_end vmlinux EXPORT_SYMBOL
-0x8c36bf05 md_submit_discard_bio vmlinux EXPORT_SYMBOL_GPL
-0x768b4619 md_account_bio vmlinux EXPORT_SYMBOL_GPL
-0x96cea6f9 md_allow_write vmlinux EXPORT_SYMBOL_GPL
-0xa6e2f6d2 md_do_sync vmlinux EXPORT_SYMBOL_GPL
-0x1ae26b34 md_check_recovery vmlinux EXPORT_SYMBOL
-0x14945a33 md_reap_sync_thread vmlinux EXPORT_SYMBOL
-0x83d5b483 md_wait_for_blocked_rdev vmlinux EXPORT_SYMBOL
-0xbe49cb99 md_finish_reshape vmlinux EXPORT_SYMBOL
-0x6747b11d rdev_set_badblocks vmlinux EXPORT_SYMBOL_GPL
-0xea69f3a7 rdev_clear_badblocks vmlinux EXPORT_SYMBOL_GPL
-0x8593a959 md_reload_sb vmlinux EXPORT_SYMBOL
-0xbc60c81b md_bitmap_update_sb vmlinux EXPORT_SYMBOL
-0xb7d4a4fc md_bitmap_unplug vmlinux EXPORT_SYMBOL
-0x946f6a0b md_bitmap_unplug_async vmlinux EXPORT_SYMBOL
-0x00069439 md_bitmap_startwrite vmlinux EXPORT_SYMBOL
-0xaff95a4b md_bitmap_endwrite vmlinux EXPORT_SYMBOL
-0x0d59a035 md_bitmap_start_sync vmlinux EXPORT_SYMBOL
-0x39c6b99a md_bitmap_end_sync vmlinux EXPORT_SYMBOL
-0x73cd4049 md_bitmap_close_sync vmlinux EXPORT_SYMBOL
-0x080a3ede md_bitmap_cond_end_sync vmlinux EXPORT_SYMBOL
-0x89cc435f md_bitmap_sync_with_cluster vmlinux EXPORT_SYMBOL
-0x509e6617 md_bitmap_free vmlinux EXPORT_SYMBOL
-0xdf6233bd md_bitmap_load vmlinux EXPORT_SYMBOL_GPL
-0xb4a2042c get_bitmap_from_slot vmlinux EXPORT_SYMBOL
-0x7ba20478 md_bitmap_copy_from_slot vmlinux EXPORT_SYMBOL_GPL
-0x20fa6189 md_bitmap_resize vmlinux EXPORT_SYMBOL_GPL
-0x244088a3 dm_kobject_release vmlinux EXPORT_SYMBOL
-0xb51fbd64 edac_op_state vmlinux EXPORT_SYMBOL_GPL
-0x2c8dd6b8 edac_mem_types vmlinux EXPORT_SYMBOL_GPL
-0x99d3491b edac_mc_alloc vmlinux EXPORT_SYMBOL_GPL
-0x7b1cd069 edac_mc_free vmlinux EXPORT_SYMBOL_GPL
-0xefeafcf1 edac_has_mcs vmlinux EXPORT_SYMBOL_GPL
-0x0ccdb17a find_mci_by_dev vmlinux EXPORT_SYMBOL_GPL
-0x662f829e edac_mc_find vmlinux EXPORT_SYMBOL
-0x5ab09745 edac_get_owner vmlinux EXPORT_SYMBOL_GPL
-0x16508a73 edac_mc_add_mc_with_groups vmlinux EXPORT_SYMBOL_GPL
-0xdc426524 edac_mc_del_mc vmlinux EXPORT_SYMBOL_GPL
-0x83a8a360 edac_mc_find_csrow_by_page vmlinux EXPORT_SYMBOL_GPL
-0xc0dcb59e edac_layer_name vmlinux EXPORT_SYMBOL_GPL
-0xdeffa0a7 edac_raw_mc_handle_error vmlinux EXPORT_SYMBOL_GPL
-0xdba992d4 edac_mc_handle_error vmlinux EXPORT_SYMBOL_GPL
-0xe4070632 edac_device_alloc_ctl_info vmlinux EXPORT_SYMBOL_GPL
-0xc0b6a529 edac_device_free_ctl_info vmlinux EXPORT_SYMBOL_GPL
-0x6e3ff83a edac_device_alloc_index vmlinux EXPORT_SYMBOL_GPL
-0x9ce83aae edac_device_add_device vmlinux EXPORT_SYMBOL_GPL
-0x05a32998 edac_device_del_device vmlinux EXPORT_SYMBOL_GPL
-0xd2845695 edac_device_handle_ce_count vmlinux EXPORT_SYMBOL_GPL
-0xd6a0d0c4 edac_device_handle_ue_count vmlinux EXPORT_SYMBOL_GPL
-0x1b78a765 edac_get_sysfs_subsys vmlinux EXPORT_SYMBOL_GPL
-0xe4f50ecb edac_queue_work vmlinux EXPORT_SYMBOL_GPL
-0x5b3e7e7c edac_mod_work vmlinux EXPORT_SYMBOL_GPL
-0x9a035608 edac_stop_work vmlinux EXPORT_SYMBOL_GPL
-0xbd38d007 edac_pci_alloc_ctl_info vmlinux EXPORT_SYMBOL_GPL
-0x1ef9cac7 edac_pci_free_ctl_info vmlinux EXPORT_SYMBOL_GPL
-0x0c32ff8a edac_pci_alloc_index vmlinux EXPORT_SYMBOL_GPL
-0xec14f77a edac_pci_add_device vmlinux EXPORT_SYMBOL_GPL
-0x666d4926 edac_pci_del_device vmlinux EXPORT_SYMBOL_GPL
-0x4f8292df edac_pci_create_generic_ctl vmlinux EXPORT_SYMBOL_GPL
-0x5d1b9c2a edac_pci_release_generic_ctl vmlinux EXPORT_SYMBOL_GPL
-0xbd5b18a9 edac_pci_handle_pe vmlinux EXPORT_SYMBOL_GPL
-0x1b6098b5 edac_pci_handle_npe vmlinux EXPORT_SYMBOL_GPL
-0x47aad3b9 have_governor_per_policy vmlinux EXPORT_SYMBOL_GPL
-0x621d7372 get_governor_parent_kobj vmlinux EXPORT_SYMBOL_GPL
-0x9fe899b7 get_cpu_idle_time vmlinux EXPORT_SYMBOL_GPL
-0x13b23bc0 cpufreq_generic_init vmlinux EXPORT_SYMBOL_GPL
-0xf11ce245 cpufreq_cpu_get_raw vmlinux EXPORT_SYMBOL_GPL
-0xba2b7f64 cpufreq_generic_get vmlinux EXPORT_SYMBOL_GPL
-0xdeadd9ed cpufreq_cpu_get vmlinux EXPORT_SYMBOL_GPL
-0x10b2a001 cpufreq_cpu_put vmlinux EXPORT_SYMBOL_GPL
-0x1743f554 cpufreq_freq_transition_begin vmlinux EXPORT_SYMBOL_GPL
-0xe3c75eb5 cpufreq_freq_transition_end vmlinux EXPORT_SYMBOL_GPL
-0xf20316a5 cpufreq_enable_fast_switch vmlinux EXPORT_SYMBOL_GPL
-0xf2f35c58 cpufreq_disable_fast_switch vmlinux EXPORT_SYMBOL_GPL
-0x59000cb6 cpufreq_driver_resolve_freq vmlinux EXPORT_SYMBOL_GPL
-0x1c9e3373 cpufreq_policy_transition_delay_us vmlinux EXPORT_SYMBOL_GPL
-0xbc60dc37 cpufreq_show_cpus vmlinux EXPORT_SYMBOL_GPL
-0x8ef8fc8a refresh_frequency_limits vmlinux EXPORT_SYMBOL
-0x7c46233a cpufreq_quick_get vmlinux EXPORT_SYMBOL
-0x33f0768c cpufreq_quick_get_max vmlinux EXPORT_SYMBOL
-0x4462d35e cpufreq_get_hw_max_freq vmlinux EXPORT_SYMBOL
-0x9305f8e6 cpufreq_get vmlinux EXPORT_SYMBOL
-0xd77892de cpufreq_generic_suspend vmlinux EXPORT_SYMBOL
-0x7cd6f042 cpufreq_get_current_driver vmlinux EXPORT_SYMBOL_GPL
-0x553b49a4 cpufreq_get_driver_data vmlinux EXPORT_SYMBOL_GPL
-0x65d9e877 cpufreq_register_notifier vmlinux EXPORT_SYMBOL
-0x6214aef2 cpufreq_unregister_notifier vmlinux EXPORT_SYMBOL
-0xd04cb429 cpufreq_driver_fast_switch vmlinux EXPORT_SYMBOL_GPL
-0x8bb6c802 __cpufreq_driver_target vmlinux EXPORT_SYMBOL_GPL
-0x65ccf99c cpufreq_driver_target vmlinux EXPORT_SYMBOL_GPL
-0x35760c26 cpufreq_register_governor vmlinux EXPORT_SYMBOL_GPL
-0x77d1897f cpufreq_unregister_governor vmlinux EXPORT_SYMBOL_GPL
-0x930b4633 cpufreq_get_policy vmlinux EXPORT_SYMBOL
-0xc37f9c6e cpufreq_update_policy vmlinux EXPORT_SYMBOL
-0x816a41ca cpufreq_update_limits vmlinux EXPORT_SYMBOL_GPL
-0xf30a5502 cpufreq_enable_boost_support vmlinux EXPORT_SYMBOL_GPL
-0x1c5541bd cpufreq_boost_enabled vmlinux EXPORT_SYMBOL_GPL
-0xd87bbff9 cpufreq_register_driver vmlinux EXPORT_SYMBOL_GPL
-0xa1ae5d89 cpufreq_unregister_driver vmlinux EXPORT_SYMBOL_GPL
-0x67530d54 policy_has_boost_freq vmlinux EXPORT_SYMBOL_GPL
-0xec774acb cpufreq_frequency_table_verify vmlinux EXPORT_SYMBOL_GPL
-0xc289e46d cpufreq_generic_frequency_table_verify vmlinux EXPORT_SYMBOL_GPL
-0xf6c5c2c6 cpufreq_table_index_unsorted vmlinux EXPORT_SYMBOL_GPL
-0x99e87301 cpufreq_frequency_table_get_index vmlinux EXPORT_SYMBOL_GPL
-0x7ed4c55d cpufreq_freq_attr_scaling_available_freqs vmlinux EXPORT_SYMBOL_GPL
-0xb9057a84 cpufreq_freq_attr_scaling_boost_freqs vmlinux EXPORT_SYMBOL_GPL
-0x532931c9 cpufreq_generic_attr vmlinux EXPORT_SYMBOL_GPL
-0xfeccd129 od_register_powersave_bias_handler vmlinux EXPORT_SYMBOL_GPL
-0x0626da5f od_unregister_powersave_bias_handler vmlinux EXPORT_SYMBOL_GPL
-0xab9b3766 sampling_rate_store vmlinux EXPORT_SYMBOL_GPL
-0x652842ba gov_update_cpu_data vmlinux EXPORT_SYMBOL_GPL
-0xaad1f1bb dbs_update vmlinux EXPORT_SYMBOL_GPL
-0x98305661 cpufreq_dbs_governor_init vmlinux EXPORT_SYMBOL_GPL
-0x95bb51ae cpufreq_dbs_governor_exit vmlinux EXPORT_SYMBOL_GPL
-0x368b45bc cpufreq_dbs_governor_start vmlinux EXPORT_SYMBOL_GPL
-0x793cb7b6 cpufreq_dbs_governor_stop vmlinux EXPORT_SYMBOL_GPL
-0x4be587e6 cpufreq_dbs_governor_limits vmlinux EXPORT_SYMBOL_GPL
-0x94debc57 governor_sysfs_ops vmlinux EXPORT_SYMBOL_GPL
-0x924c5146 gov_attr_set_init vmlinux EXPORT_SYMBOL_GPL
-0x2695dc08 gov_attr_set_get vmlinux EXPORT_SYMBOL_GPL
-0xb63a5d62 gov_attr_set_put vmlinux EXPORT_SYMBOL_GPL
-0xf553318d cpuidle_pause_and_lock vmlinux EXPORT_SYMBOL_GPL
-0xcabe04de cpuidle_resume_and_unlock vmlinux EXPORT_SYMBOL_GPL
-0xb6357e53 cpuidle_enable_device vmlinux EXPORT_SYMBOL_GPL
-0xc1743430 cpuidle_disable_device vmlinux EXPORT_SYMBOL_GPL
-0xaf852873 cpuidle_register_device vmlinux EXPORT_SYMBOL_GPL
-0x13fab921 cpuidle_unregister_device vmlinux EXPORT_SYMBOL_GPL
-0x26e7d188 cpuidle_unregister vmlinux EXPORT_SYMBOL_GPL
-0xcd69c437 cpuidle_register vmlinux EXPORT_SYMBOL_GPL
-0xb5aa7599 cpuidle_register_driver vmlinux EXPORT_SYMBOL_GPL
-0xf7ad37b6 cpuidle_unregister_driver vmlinux EXPORT_SYMBOL_GPL
-0xf82b4ef8 cpuidle_get_driver vmlinux EXPORT_SYMBOL_GPL
-0xa55af032 cpuidle_get_cpu_driver vmlinux EXPORT_SYMBOL_GPL
-0x4f8546af cpuidle_poll_state_init vmlinux EXPORT_SYMBOL_GPL
-0xd92f0791 leds_list_lock vmlinux EXPORT_SYMBOL_GPL
-0x24eb7e32 leds_list vmlinux EXPORT_SYMBOL_GPL
-0x5cc77c45 led_colors vmlinux EXPORT_SYMBOL_GPL
-0x90908d2f led_init_core vmlinux EXPORT_SYMBOL_GPL
-0x3207e348 led_blink_set vmlinux EXPORT_SYMBOL_GPL
-0x7f040a6c led_blink_set_oneshot vmlinux EXPORT_SYMBOL_GPL
-0xf8340e47 led_blink_set_nosleep vmlinux EXPORT_SYMBOL_GPL
-0xbf646d85 led_stop_software_blink vmlinux EXPORT_SYMBOL_GPL
-0x3934e4af led_set_brightness vmlinux EXPORT_SYMBOL_GPL
-0x6f1e87ba led_set_brightness_nopm vmlinux EXPORT_SYMBOL_GPL
-0x491ff825 led_set_brightness_nosleep vmlinux EXPORT_SYMBOL_GPL
-0xcdd7eb9e led_set_brightness_sync vmlinux EXPORT_SYMBOL_GPL
-0x9f795b39 led_update_brightness vmlinux EXPORT_SYMBOL_GPL
-0xfa7ec4d6 led_get_default_pattern vmlinux EXPORT_SYMBOL_GPL
-0x566a1e67 led_sysfs_disable vmlinux EXPORT_SYMBOL_GPL
-0x9ffb05fa led_sysfs_enable vmlinux EXPORT_SYMBOL_GPL
-0xcfd84174 led_compose_name vmlinux EXPORT_SYMBOL_GPL
-0xe6970e21 led_init_default_state_get vmlinux EXPORT_SYMBOL_GPL
-0x5c79e733 led_classdev_suspend vmlinux EXPORT_SYMBOL_GPL
-0xf5d5b588 led_classdev_resume vmlinux EXPORT_SYMBOL_GPL
-0xea549c69 of_led_get vmlinux EXPORT_SYMBOL_GPL
-0x8809db49 led_put vmlinux EXPORT_SYMBOL_GPL
-0xf0c0ed20 devm_of_led_get vmlinux EXPORT_SYMBOL_GPL
-0xf967c0e3 led_get vmlinux EXPORT_SYMBOL_GPL
-0xfe07e560 devm_led_get vmlinux EXPORT_SYMBOL_GPL
-0x973fbee4 led_add_lookup vmlinux EXPORT_SYMBOL_GPL
-0x93335116 led_remove_lookup vmlinux EXPORT_SYMBOL_GPL
-0xcf5a7d73 devm_of_led_get_optional vmlinux EXPORT_SYMBOL_GPL
-0x758fe07e led_classdev_register_ext vmlinux EXPORT_SYMBOL_GPL
-0x93fd514b led_classdev_unregister vmlinux EXPORT_SYMBOL_GPL
-0x3123c34e devm_led_classdev_register_ext vmlinux EXPORT_SYMBOL_GPL
-0xa767678f devm_led_classdev_unregister vmlinux EXPORT_SYMBOL_GPL
-0xb9affcd9 led_trigger_write vmlinux EXPORT_SYMBOL_GPL
-0x13eb6d79 led_trigger_read vmlinux EXPORT_SYMBOL_GPL
-0x6e78756e led_trigger_set vmlinux EXPORT_SYMBOL_GPL
-0xa669be13 led_trigger_remove vmlinux EXPORT_SYMBOL_GPL
-0xeab725d8 led_trigger_set_default vmlinux EXPORT_SYMBOL_GPL
-0x1466f7d4 led_trigger_rename_static vmlinux EXPORT_SYMBOL_GPL
-0xd9968849 led_trigger_register vmlinux EXPORT_SYMBOL_GPL
-0xf8e4f8da led_trigger_unregister vmlinux EXPORT_SYMBOL_GPL
-0x5199558b devm_led_trigger_register vmlinux EXPORT_SYMBOL_GPL
-0x460c7eb0 led_trigger_event vmlinux EXPORT_SYMBOL_GPL
-0x91141bb3 led_trigger_blink vmlinux EXPORT_SYMBOL_GPL
-0xbdfda509 led_trigger_blink_oneshot vmlinux EXPORT_SYMBOL_GPL
-0x639afba2 led_trigger_register_simple vmlinux EXPORT_SYMBOL_GPL
-0x1dc1bb65 led_trigger_unregister_simple vmlinux EXPORT_SYMBOL_GPL
-0x03815f35 ledtrig_disk_activity vmlinux EXPORT_SYMBOL
-0xfe8bbe64 dmi_kobj vmlinux EXPORT_SYMBOL_GPL
-0xdc02eb39 dmi_available vmlinux EXPORT_SYMBOL_GPL
-0xd4835ef8 dmi_check_system vmlinux EXPORT_SYMBOL
-0x050877b9 dmi_first_match vmlinux EXPORT_SYMBOL
-0x81e6b37f dmi_get_system_info vmlinux EXPORT_SYMBOL
-0xe13cd8a7 dmi_name_in_vendors vmlinux EXPORT_SYMBOL
-0x6add5c9a dmi_find_device vmlinux EXPORT_SYMBOL
-0x37db8f19 dmi_get_date vmlinux EXPORT_SYMBOL
-0x2d912bca dmi_get_bios_year vmlinux EXPORT_SYMBOL
-0x7c983a5d dmi_walk vmlinux EXPORT_SYMBOL_GPL
-0x78ddb76b dmi_match vmlinux EXPORT_SYMBOL_GPL
-0x0f7ca236 dmi_memdev_name vmlinux EXPORT_SYMBOL_GPL
-0x95ef1ccc dmi_memdev_size vmlinux EXPORT_SYMBOL_GPL
-0xd8d68ab1 dmi_memdev_type vmlinux EXPORT_SYMBOL_GPL
-0x1d94a218 dmi_memdev_handle vmlinux EXPORT_SYMBOL_GPL
-0xb26066fe ibft_phys_addr vmlinux EXPORT_SYMBOL_GPL
-0x923e42aa sysfb_disable vmlinux EXPORT_SYMBOL_GPL
-0x2daa66e4 efi vmlinux EXPORT_SYMBOL
-0xdceb5362 efi_status_to_err vmlinux EXPORT_SYMBOL_GPL
-0xb256be16 efivar_is_available vmlinux EXPORT_SYMBOL_GPL
-0x3d8769f7 efivars_register vmlinux EXPORT_SYMBOL_GPL
-0xf2872fdc efivars_unregister vmlinux EXPORT_SYMBOL_GPL
-0x1fa48995 efivar_supports_writes vmlinux EXPORT_SYMBOL_GPL
-0x2303b915 efivar_lock vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0x02cfcd2e efivar_trylock vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0xc961bff7 efivar_unlock vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0x5a3c9dbb efivar_get_variable vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0xa336852c efivar_get_next_variable vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0xefc77711 efivar_set_variable_locked vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0x11940489 efivar_set_variable vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0xee5240dc efivar_query_variable_info vmlinux EXPORT_SYMBOL_GPL EFIVAR
-0xe9e8faeb efi_tpm_final_log_size vmlinux EXPORT_SYMBOL
-0x58276f93 cper_next_record_id vmlinux EXPORT_SYMBOL_GPL
-0xf6c71a25 cper_severity_str vmlinux EXPORT_SYMBOL_GPL
-0x63ea80b3 cper_mem_err_type_str vmlinux EXPORT_SYMBOL_GPL
-0x5c070f62 cper_mem_err_status_str vmlinux EXPORT_SYMBOL_GPL
-0x9ca6e11f cper_mem_err_location vmlinux EXPORT_SYMBOL_GPL
-0x3abdc17a cper_dimm_err_location vmlinux EXPORT_SYMBOL_GPL
-0xdf31898f cper_mem_err_pack vmlinux EXPORT_SYMBOL_GPL
-0xe4248980 cper_estatus_print vmlinux EXPORT_SYMBOL_GPL
-0x1234ffa1 cper_estatus_check_header vmlinux EXPORT_SYMBOL_GPL
-0x86c43a8c cper_estatus_check vmlinux EXPORT_SYMBOL_GPL
-0x75943e25 i8253_lock vmlinux EXPORT_SYMBOL
-0x20899467 hv_stimer0_isr vmlinux EXPORT_SYMBOL_GPL
-0x65704d22 hv_stimer_cleanup vmlinux EXPORT_SYMBOL_GPL
-0xd8d065dd hv_stimer_alloc vmlinux EXPORT_SYMBOL_GPL
-0xb75041d1 hv_stimer_legacy_init vmlinux EXPORT_SYMBOL_GPL
-0xcb8a461c hv_stimer_legacy_cleanup vmlinux EXPORT_SYMBOL_GPL
-0xba01ec83 hv_stimer_global_cleanup vmlinux EXPORT_SYMBOL_GPL
-0x4b332df8 hv_get_tsc_pfn vmlinux EXPORT_SYMBOL_GPL
-0x46a6c9ef hv_get_tsc_page vmlinux EXPORT_SYMBOL_GPL
-0xe72e22f4 hid_register_report vmlinux EXPORT_SYMBOL_GPL
-0x82d264b5 hid_parse_report vmlinux EXPORT_SYMBOL_GPL
-0xab4d5b88 hid_validate_values vmlinux EXPORT_SYMBOL_GPL
-0x49e4ebfa hid_setup_resolution_multiplier vmlinux EXPORT_SYMBOL_GPL
-0xa5084d2d hid_open_report vmlinux EXPORT_SYMBOL_GPL
-0x8b13a8b8 hid_snto32 vmlinux EXPORT_SYMBOL_GPL
-0x8a1f6002 hid_field_extract vmlinux EXPORT_SYMBOL_GPL
-0x9a2da5d4 hid_output_report vmlinux EXPORT_SYMBOL_GPL
-0xf118445e hid_alloc_report_buf vmlinux EXPORT_SYMBOL_GPL
-0xce492136 hid_set_field vmlinux EXPORT_SYMBOL_GPL
-0xbbadeb56 __hid_request vmlinux EXPORT_SYMBOL_GPL
-0xcb37423e hid_report_raw_event vmlinux EXPORT_SYMBOL_GPL
-0x1ab436ef hid_input_report vmlinux EXPORT_SYMBOL_GPL
-0x06eebc0e hid_match_id vmlinux EXPORT_SYMBOL_GPL
-0x159ca3e1 hid_connect vmlinux EXPORT_SYMBOL_GPL
-0xb45a7507 hid_disconnect vmlinux EXPORT_SYMBOL_GPL
-0xdd280724 hid_hw_start vmlinux EXPORT_SYMBOL_GPL
-0x168eb890 hid_hw_stop vmlinux EXPORT_SYMBOL_GPL
-0x718a2f1f hid_hw_open vmlinux EXPORT_SYMBOL_GPL
-0xd36232f0 hid_hw_close vmlinux EXPORT_SYMBOL_GPL
-0x0a193d61 hid_hw_request vmlinux EXPORT_SYMBOL_GPL
-0x2efb86b7 hid_hw_raw_request vmlinux EXPORT_SYMBOL_GPL
-0x75a076b1 hid_hw_output_report vmlinux EXPORT_SYMBOL_GPL
-0x30fe4354 hid_driver_suspend vmlinux EXPORT_SYMBOL_GPL
-0x2aa481d2 hid_driver_reset_resume vmlinux EXPORT_SYMBOL_GPL
-0x497cfa05 hid_driver_resume vmlinux EXPORT_SYMBOL_GPL
-0x99d4ef89 hid_match_device vmlinux EXPORT_SYMBOL_GPL
-0xead2e491 hid_compare_device_paths vmlinux EXPORT_SYMBOL_GPL
-0x36ac9161 hid_bus_type vmlinux EXPORT_SYMBOL
-0x140fe286 hid_add_device vmlinux EXPORT_SYMBOL_GPL
-0x01c6919f hid_allocate_device vmlinux EXPORT_SYMBOL_GPL
-0xddd539f8 hid_destroy_device vmlinux EXPORT_SYMBOL_GPL
-0xf65fa393 __hid_register_driver vmlinux EXPORT_SYMBOL_GPL
-0xdffa5ad5 hid_unregister_driver vmlinux EXPORT_SYMBOL_GPL
-0x374a6712 hid_check_keys_pressed vmlinux EXPORT_SYMBOL_GPL
-0x64ce0b7a hidinput_calc_abs_res vmlinux EXPORT_SYMBOL_GPL
-0x708df060 hidinput_report_event vmlinux EXPORT_SYMBOL_GPL
-0xdeb4a063 hidinput_get_led_field vmlinux EXPORT_SYMBOL_GPL
-0x03a00513 hidinput_count_leds vmlinux EXPORT_SYMBOL_GPL
-0x4799ed35 hidinput_connect vmlinux EXPORT_SYMBOL_GPL
-0xd51f16b7 hidinput_disconnect vmlinux EXPORT_SYMBOL_GPL
-0x9963bba6 hid_ignore vmlinux EXPORT_SYMBOL_GPL
-0xfa355613 hid_quirks_init vmlinux EXPORT_SYMBOL_GPL
-0x19d52f1f hid_quirks_exit vmlinux EXPORT_SYMBOL_GPL
-0xfda828c1 hid_lookup_quirk vmlinux EXPORT_SYMBOL_GPL
-0x95ce67ef hid_resolv_usage vmlinux EXPORT_SYMBOL_GPL
-0x973f29a4 hid_dump_field vmlinux EXPORT_SYMBOL_GPL
-0x19e73c69 hid_dump_device vmlinux EXPORT_SYMBOL_GPL
-0x552f8c8b hid_debug_event vmlinux EXPORT_SYMBOL_GPL
-0x08cdfe54 hid_dump_report vmlinux EXPORT_SYMBOL_GPL
-0x50ef778e hid_dump_input vmlinux EXPORT_SYMBOL_GPL
-0x333bed22 hidraw_report_event vmlinux EXPORT_SYMBOL_GPL
-0x4f723a0b hidraw_connect vmlinux EXPORT_SYMBOL_GPL
-0x1374c36b hidraw_disconnect vmlinux EXPORT_SYMBOL_GPL
-0x636d9ae7 sensor_hub_register_callback vmlinux EXPORT_SYMBOL_GPL
-0xe6102400 sensor_hub_remove_callback vmlinux EXPORT_SYMBOL_GPL
-0xd589611f sensor_hub_set_feature vmlinux EXPORT_SYMBOL_GPL
-0xae19ef87 sensor_hub_get_feature vmlinux EXPORT_SYMBOL_GPL
-0x95326a6d sensor_hub_input_attr_get_raw_value vmlinux EXPORT_SYMBOL_GPL
-0x817d64c5 hid_sensor_get_usage_index vmlinux EXPORT_SYMBOL_GPL
-0xa96336b2 sensor_hub_input_get_attribute_info vmlinux EXPORT_SYMBOL_GPL
-0xb5740754 sensor_hub_device_open vmlinux EXPORT_SYMBOL_GPL
-0x472c4728 sensor_hub_device_close vmlinux EXPORT_SYMBOL_GPL
-0xa0b11b44 hid_is_usb vmlinux EXPORT_SYMBOL_GPL
-0x414134af hiddev_hid_event vmlinux EXPORT_SYMBOL_GPL
-0x98886746 p2sb_bar vmlinux EXPORT_SYMBOL_GPL
-0x658ee7aa mbox_chan_received_data vmlinux EXPORT_SYMBOL_GPL
-0x3be86668 mbox_chan_txdone vmlinux EXPORT_SYMBOL_GPL
-0xea6da60c mbox_client_txdone vmlinux EXPORT_SYMBOL_GPL
-0x3200d593 mbox_client_peek_data vmlinux EXPORT_SYMBOL_GPL
-0x304b8f2d mbox_send_message vmlinux EXPORT_SYMBOL_GPL
-0x92148466 mbox_flush vmlinux EXPORT_SYMBOL_GPL
-0x77a30300 mbox_bind_client vmlinux EXPORT_SYMBOL_GPL
-0x520b11f5 mbox_request_channel vmlinux EXPORT_SYMBOL_GPL
-0xb2223bf5 mbox_request_channel_byname vmlinux EXPORT_SYMBOL_GPL
-0x6f38bf88 mbox_free_channel vmlinux EXPORT_SYMBOL_GPL
-0x6e36d972 mbox_controller_register vmlinux EXPORT_SYMBOL_GPL
-0x24222ce1 mbox_controller_unregister vmlinux EXPORT_SYMBOL_GPL
-0x6c3ad605 devm_mbox_controller_register vmlinux EXPORT_SYMBOL_GPL
-0x239ea7f3 devm_mbox_controller_unregister vmlinux EXPORT_SYMBOL_GPL
-0x39e58b8f pcc_mbox_request_channel vmlinux EXPORT_SYMBOL_GPL
-0xceed8ef0 pcc_mbox_free_channel vmlinux EXPORT_SYMBOL_GPL
-0x74b9b8d4 __hwspin_trylock vmlinux EXPORT_SYMBOL_GPL
-0xffd26ac1 __hwspin_lock_timeout vmlinux EXPORT_SYMBOL_GPL
-0x23c8f52b __hwspin_unlock vmlinux EXPORT_SYMBOL_GPL
-0x8e81315a of_hwspin_lock_get_id vmlinux EXPORT_SYMBOL_GPL
-0x85192950 of_hwspin_lock_get_id_byname vmlinux EXPORT_SYMBOL_GPL
-0x6733085c hwspin_lock_register vmlinux EXPORT_SYMBOL_GPL
-0x29eab842 hwspin_lock_unregister vmlinux EXPORT_SYMBOL_GPL
-0xa4685cdb devm_hwspin_lock_unregister vmlinux EXPORT_SYMBOL_GPL
-0xb94d11c7 devm_hwspin_lock_register vmlinux EXPORT_SYMBOL_GPL
-0x41d25c70 hwspin_lock_get_id vmlinux EXPORT_SYMBOL_GPL
-0x91e1d033 hwspin_lock_request vmlinux EXPORT_SYMBOL_GPL
-0x303b32d7 hwspin_lock_request_specific vmlinux EXPORT_SYMBOL_GPL
-0x9ad05e7f hwspin_lock_free vmlinux EXPORT_SYMBOL_GPL
-0x8eaafa72 devm_hwspin_lock_free vmlinux EXPORT_SYMBOL_GPL
-0xc7dac2cc devm_hwspin_lock_request vmlinux EXPORT_SYMBOL_GPL
-0xf0e689ff devm_hwspin_lock_request_specific vmlinux EXPORT_SYMBOL_GPL
-0x4c8adfe1 hv_root_partition vmlinux EXPORT_SYMBOL_GPL
-0x4475dcaf hv_nested vmlinux EXPORT_SYMBOL_GPL
-0xdfb62b1b ms_hyperv vmlinux EXPORT_SYMBOL_GPL
-0x3fae6ab0 hv_vp_index vmlinux EXPORT_SYMBOL_GPL
-0xb9c16f51 hv_max_vp_index vmlinux EXPORT_SYMBOL_GPL
-0x3c0e8050 hyperv_pcpu_input_arg vmlinux EXPORT_SYMBOL_GPL
-0x92b8c78b hyperv_pcpu_output_arg vmlinux EXPORT_SYMBOL_GPL
-0x8e9bd4a3 hv_alloc_hyperv_page vmlinux EXPORT_SYMBOL_GPL
-0x27df3105 hv_alloc_hyperv_zeroed_page vmlinux EXPORT_SYMBOL_GPL
-0x2ffedb6b hv_free_hyperv_page vmlinux EXPORT_SYMBOL_GPL
-0x0a52c511 hv_query_ext_cap vmlinux EXPORT_SYMBOL_GPL
-0x130bf701 hv_setup_dma_ops vmlinux EXPORT_SYMBOL_GPL
-0xa2f7487f hv_is_hibernation_supported vmlinux EXPORT_SYMBOL_GPL
-0x0ec096b0 hv_read_reference_counter vmlinux EXPORT_SYMBOL_GPL
-0xbdb2217d hv_is_isolation_supported vmlinux EXPORT_SYMBOL_GPL
-0xc3876c1a hv_isolation_type_snp vmlinux EXPORT_SYMBOL_GPL
-0xee006366 hv_isolation_type_tdx vmlinux EXPORT_SYMBOL_GPL
-0xa96e8b4e hv_setup_vmbus_handler vmlinux EXPORT_SYMBOL_GPL
-0x6be3a96b hv_remove_vmbus_handler vmlinux EXPORT_SYMBOL_GPL
-0xab1e0e93 hv_setup_kexec_handler vmlinux EXPORT_SYMBOL_GPL
-0x31128b8e hv_remove_kexec_handler vmlinux EXPORT_SYMBOL_GPL
-0x7d0e1d95 hv_setup_crash_handler vmlinux EXPORT_SYMBOL_GPL
-0xc25b8971 hv_remove_crash_handler vmlinux EXPORT_SYMBOL_GPL
-0x6b7a4335 hyperv_cleanup vmlinux EXPORT_SYMBOL_GPL
-0x8b89f01c hv_ghcb_hypercall vmlinux EXPORT_SYMBOL_GPL
-0x2c86a755 hv_tdx_hypercall vmlinux EXPORT_SYMBOL_GPL
-0x8fd4e8b9 powercap_register_zone vmlinux EXPORT_SYMBOL_GPL
-0x32a7e9c1 powercap_unregister_zone vmlinux EXPORT_SYMBOL_GPL
-0x0e1a2788 powercap_register_control_type vmlinux EXPORT_SYMBOL_GPL
-0xcad2e98c powercap_unregister_control_type vmlinux EXPORT_SYMBOL_GPL
-0xc18575af idle_inject_set_duration vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0xe9cbcfd0 idle_inject_get_duration vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0x95e93783 idle_inject_set_latency vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0x5b3a2cd6 idle_inject_start vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0x85c2b7eb idle_inject_stop vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0xa66c1ea7 idle_inject_register_full vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0x60b2e814 idle_inject_register vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0xf0e96547 idle_inject_unregister vmlinux EXPORT_SYMBOL_GPL IDLE_INJECT
-0x1fbfcaa4 __tracepoint_extlog_mem_event vmlinux EXPORT_SYMBOL_GPL
-0xda8369a7 __traceiter_extlog_mem_event vmlinux EXPORT_SYMBOL_GPL
-0xb093371b __SCK__tp_func_extlog_mem_event vmlinux EXPORT_SYMBOL_GPL
-0x8b47ea1d __SCT__tp_func_extlog_mem_event vmlinux EXPORT_SYMBOL_GPL
-0x7cdfefb8 __tracepoint_mc_event vmlinux EXPORT_SYMBOL_GPL
-0xb9852d11 __traceiter_mc_event vmlinux EXPORT_SYMBOL_GPL
-0x60b44931 __SCK__tp_func_mc_event vmlinux EXPORT_SYMBOL_GPL
-0xc91ee1b5 __SCT__tp_func_mc_event vmlinux EXPORT_SYMBOL_GPL
-0x751ecf37 __tracepoint_non_standard_event vmlinux EXPORT_SYMBOL_GPL
-0x59c43dc9 __traceiter_non_standard_event vmlinux EXPORT_SYMBOL_GPL
-0xd54f5ccd __SCK__tp_func_non_standard_event vmlinux EXPORT_SYMBOL_GPL
-0x0e1fc8ef __SCT__tp_func_non_standard_event vmlinux EXPORT_SYMBOL_GPL
-0xfcb39724 __tracepoint_arm_event vmlinux EXPORT_SYMBOL_GPL
-0x430d88ec __traceiter_arm_event vmlinux EXPORT_SYMBOL_GPL
-0x68cbc706 __SCK__tp_func_arm_event vmlinux EXPORT_SYMBOL_GPL
-0x9107d224 __SCT__tp_func_arm_event vmlinux EXPORT_SYMBOL_GPL
-0xcdb6adcc ras_userspace_consumers vmlinux EXPORT_SYMBOL_GPL
-0x9e55a2f8 __tracepoint_vendor_bond_check_dev_link vmlinux EXPORT_SYMBOL_GPL
-0xae58876b __traceiter_vendor_bond_check_dev_link vmlinux EXPORT_SYMBOL_GPL
-0x3b5b74d4 __SCK__tp_func_vendor_bond_check_dev_link vmlinux EXPORT_SYMBOL_GPL
-0xb88cc2aa __SCT__tp_func_vendor_bond_check_dev_link vmlinux EXPORT_SYMBOL_GPL
-0x08693bfc nvmem_add_one_cell vmlinux EXPORT_SYMBOL_GPL
-0xcb2bfe2b nvmem_register_notifier vmlinux EXPORT_SYMBOL_GPL
-0x420f3d01 nvmem_unregister_notifier vmlinux EXPORT_SYMBOL_GPL
-0x5f493879 __nvmem_layout_register vmlinux EXPORT_SYMBOL_GPL
-0x26b7d389 nvmem_layout_unregister vmlinux EXPORT_SYMBOL_GPL
-0xfda42435 nvmem_layout_get_match_data vmlinux EXPORT_SYMBOL_GPL
-0x30c178a0 nvmem_register vmlinux EXPORT_SYMBOL_GPL
-0xcc39c03e nvmem_unregister vmlinux EXPORT_SYMBOL_GPL
-0x8ff33652 devm_nvmem_register vmlinux EXPORT_SYMBOL_GPL
-0xd84f73fd nvmem_device_get vmlinux EXPORT_SYMBOL_GPL
-0xdeee345e nvmem_device_find vmlinux EXPORT_SYMBOL_GPL
-0x722ce420 devm_nvmem_device_put vmlinux EXPORT_SYMBOL_GPL
-0x8349a895 nvmem_device_put vmlinux EXPORT_SYMBOL_GPL
-0x81d31cb1 devm_nvmem_device_get vmlinux EXPORT_SYMBOL_GPL
-0xd262e51c nvmem_cell_get vmlinux EXPORT_SYMBOL_GPL
-0xcab3f07a devm_nvmem_cell_get vmlinux EXPORT_SYMBOL_GPL
-0x94291a57 devm_nvmem_cell_put vmlinux EXPORT_SYMBOL
-0x85540ebc nvmem_cell_put vmlinux EXPORT_SYMBOL_GPL
-0x99f018c4 nvmem_cell_read vmlinux EXPORT_SYMBOL_GPL
-0x202d4ed6 nvmem_cell_write vmlinux EXPORT_SYMBOL_GPL
-0x5d61919b nvmem_cell_read_u8 vmlinux EXPORT_SYMBOL_GPL
-0x7afb7108 nvmem_cell_read_u16 vmlinux EXPORT_SYMBOL_GPL
-0x5addfd1e nvmem_cell_read_u32 vmlinux EXPORT_SYMBOL_GPL
-0x4c124f59 nvmem_cell_read_u64 vmlinux EXPORT_SYMBOL_GPL
-0xb387f27c nvmem_cell_read_variable_le_u32 vmlinux EXPORT_SYMBOL_GPL
-0xa548403b nvmem_cell_read_variable_le_u64 vmlinux EXPORT_SYMBOL_GPL
-0x42487a08 nvmem_device_cell_read vmlinux EXPORT_SYMBOL_GPL
-0x46e143af nvmem_device_cell_write vmlinux EXPORT_SYMBOL_GPL
-0xc697b0f7 nvmem_device_read vmlinux EXPORT_SYMBOL_GPL
-0x3866e217 nvmem_device_write vmlinux EXPORT_SYMBOL_GPL
-0xce402739 nvmem_add_cell_table vmlinux EXPORT_SYMBOL_GPL
-0x17c49215 nvmem_del_cell_table vmlinux EXPORT_SYMBOL_GPL
-0xb73713d7 nvmem_add_cell_lookups vmlinux EXPORT_SYMBOL_GPL
-0x72d267dc nvmem_del_cell_lookups vmlinux EXPORT_SYMBOL_GPL
-0x9425bb34 nvmem_dev_name vmlinux EXPORT_SYMBOL_GPL
-0x1b744028 devm_alloc_etherdev_mqs vmlinux EXPORT_SYMBOL
-0x5eb77781 devm_register_netdev vmlinux EXPORT_SYMBOL
-0x206f6432 sock_alloc_file vmlinux EXPORT_SYMBOL
-0xecdb4327 sock_from_file vmlinux EXPORT_SYMBOL
-0xe4240426 sockfd_lookup vmlinux EXPORT_SYMBOL
-0x3c874d04 sock_alloc vmlinux EXPORT_SYMBOL
-0x250ee21d sock_release vmlinux EXPORT_SYMBOL
-0x437a0d6d __sock_tx_timestamp vmlinux EXPORT_SYMBOL
-0x4d21fd44 sock_sendmsg vmlinux EXPORT_SYMBOL
-0x682c543c kernel_sendmsg vmlinux EXPORT_SYMBOL
-0xb96101c5 kernel_sendmsg_locked vmlinux EXPORT_SYMBOL
-0x231b0c28 __sock_recv_timestamp vmlinux EXPORT_SYMBOL_GPL
-0xaad1ec25 __sock_recv_wifi_status vmlinux EXPORT_SYMBOL_GPL
-0x76a5a0e8 __sock_recv_cmsgs vmlinux EXPORT_SYMBOL_GPL
-0x68be347e sock_recvmsg vmlinux EXPORT_SYMBOL
-0x807b5948 kernel_recvmsg vmlinux EXPORT_SYMBOL
-0xd1b414ce brioctl_set vmlinux EXPORT_SYMBOL
-0x766a728c vlan_ioctl_set vmlinux EXPORT_SYMBOL
-0xf71dc727 sock_create_lite vmlinux EXPORT_SYMBOL
-0xdd064867 sock_wake_async vmlinux EXPORT_SYMBOL
-0x5582cd4e __sock_create vmlinux EXPORT_SYMBOL
-0x00f97883 sock_create vmlinux EXPORT_SYMBOL
-0xd6d14e92 sock_create_kern vmlinux EXPORT_SYMBOL
-0xec05c0ce sock_register vmlinux EXPORT_SYMBOL
-0x62737e1d sock_unregister vmlinux EXPORT_SYMBOL
-0x80816f26 get_user_ifreq vmlinux EXPORT_SYMBOL
-0x87809aeb put_user_ifreq vmlinux EXPORT_SYMBOL
-0x745e1ce5 kernel_bind vmlinux EXPORT_SYMBOL
-0xe4e828b0 kernel_listen vmlinux EXPORT_SYMBOL
-0x6df2544d kernel_accept vmlinux EXPORT_SYMBOL
-0x05edc075 kernel_connect vmlinux EXPORT_SYMBOL
-0x27f6d267 kernel_getsockname vmlinux EXPORT_SYMBOL
-0x3daf97da kernel_getpeername vmlinux EXPORT_SYMBOL
-0xcb1f1b58 kernel_sock_shutdown vmlinux EXPORT_SYMBOL
-0x980c124d kernel_sock_ip_overhead vmlinux EXPORT_SYMBOL
-0xaac19324 sk_ns_capable vmlinux EXPORT_SYMBOL
-0xda03d99f sk_capable vmlinux EXPORT_SYMBOL
-0x98016d2b sk_net_capable vmlinux EXPORT_SYMBOL
-0xfac8865f sysctl_wmem_max vmlinux EXPORT_SYMBOL
-0xb05fc310 sysctl_rmem_max vmlinux EXPORT_SYMBOL
-0xa108eb4d sysctl_optmem_max vmlinux EXPORT_SYMBOL
-0x77ecf68d memalloc_socks_key vmlinux EXPORT_SYMBOL_GPL
-0xe99aac1b sk_set_memalloc vmlinux EXPORT_SYMBOL_GPL
-0x2ce960ee sk_clear_memalloc vmlinux EXPORT_SYMBOL_GPL
-0x0d432318 __sk_backlog_rcv vmlinux EXPORT_SYMBOL
-0x720d04fd sk_error_report vmlinux EXPORT_SYMBOL
-0xedd17b31 sock_get_timeout vmlinux EXPORT_SYMBOL
-0x5bdb7603 sock_copy_user_timeval vmlinux EXPORT_SYMBOL
-0xddfbc751 __sock_queue_rcv_skb vmlinux EXPORT_SYMBOL
-0xbd79c162 sock_queue_rcv_skb_reason vmlinux EXPORT_SYMBOL
-0x7088c829 __sk_receive_skb vmlinux EXPORT_SYMBOL
-0xed069fb0 __sk_dst_check vmlinux EXPORT_SYMBOL
-0xda77a0a6 sk_dst_check vmlinux EXPORT_SYMBOL
-0x5363a7c6 sock_bindtoindex vmlinux EXPORT_SYMBOL
-0x386f15e4 sk_mc_loop vmlinux EXPORT_SYMBOL
-0x1583af54 sock_set_reuseaddr vmlinux EXPORT_SYMBOL
-0x99cecf54 sock_set_reuseport vmlinux EXPORT_SYMBOL
-0x0597f3c2 sock_no_linger vmlinux EXPORT_SYMBOL
-0x39cf8cfb sock_set_priority vmlinux EXPORT_SYMBOL
-0x6209bbdd sock_set_sndtimeo vmlinux EXPORT_SYMBOL
-0x46a4143d sock_enable_timestamps vmlinux EXPORT_SYMBOL
-0x6c30e5bc sock_set_keepalive vmlinux EXPORT_SYMBOL
-0xd2403a9c sock_set_rcvbuf vmlinux EXPORT_SYMBOL
-0x60ecf9a7 sock_set_mark vmlinux EXPORT_SYMBOL
-0x0b1deee6 sockopt_lock_sock vmlinux EXPORT_SYMBOL
-0xa0a4fa59 sockopt_release_sock vmlinux EXPORT_SYMBOL
-0xe2ff0aa6 sockopt_ns_capable vmlinux EXPORT_SYMBOL
-0x2a6a5aac sockopt_capable vmlinux EXPORT_SYMBOL
-0xd62bf093 sock_setsockopt vmlinux EXPORT_SYMBOL
-0x6c9ed29e sk_alloc vmlinux EXPORT_SYMBOL
-0xa97696a7 sk_free vmlinux EXPORT_SYMBOL
-0x4e06e556 sk_clone_lock vmlinux EXPORT_SYMBOL_GPL
-0xd2acdf11 sk_free_unlock_clone vmlinux EXPORT_SYMBOL_GPL
-0x4cd31c51 sk_setup_caps vmlinux EXPORT_SYMBOL_GPL
-0xbc2dbfb2 sock_wfree vmlinux EXPORT_SYMBOL
-0x7150d39b skb_set_owner_w vmlinux EXPORT_SYMBOL
-0x7a71c3c9 skb_orphan_partial vmlinux EXPORT_SYMBOL
-0xf729ecb6 sock_rfree vmlinux EXPORT_SYMBOL
-0x394a681b sock_efree vmlinux EXPORT_SYMBOL
-0x6ffb9a21 sock_pfree vmlinux EXPORT_SYMBOL
-0xa9d23480 sock_i_uid vmlinux EXPORT_SYMBOL
-0x644d2071 __sock_i_ino vmlinux EXPORT_SYMBOL
-0x2d0854c1 sock_i_ino vmlinux EXPORT_SYMBOL
-0x1d1c89b9 sock_wmalloc vmlinux EXPORT_SYMBOL
-0x0836f867 sock_kmalloc vmlinux EXPORT_SYMBOL
-0xa8bc7fca sock_kfree_s vmlinux EXPORT_SYMBOL
-0x5f123c4a sock_kzfree_s vmlinux EXPORT_SYMBOL
-0x17c42277 sock_alloc_send_pskb vmlinux EXPORT_SYMBOL
-0xd0cb1aeb __sock_cmsg_send vmlinux EXPORT_SYMBOL
-0x85e87fc3 sock_cmsg_send vmlinux EXPORT_SYMBOL
-0xc23b57ea skb_page_frag_refill vmlinux EXPORT_SYMBOL
-0x08a0a725 sk_page_frag_refill vmlinux EXPORT_SYMBOL
-0xb1841aed __sk_flush_backlog vmlinux EXPORT_SYMBOL_GPL
-0x7fd672d1 sk_wait_data vmlinux EXPORT_SYMBOL
-0x8ad71147 __sk_mem_schedule vmlinux EXPORT_SYMBOL
-0x6b791f51 __sk_mem_reclaim vmlinux EXPORT_SYMBOL
-0x746ad45c sk_set_peek_off vmlinux EXPORT_SYMBOL_GPL
-0xde8af025 sock_no_bind vmlinux EXPORT_SYMBOL
-0x5050fb09 sock_no_connect vmlinux EXPORT_SYMBOL
-0x2c26bdd9 sock_no_socketpair vmlinux EXPORT_SYMBOL
-0xf6d5ff4e sock_no_accept vmlinux EXPORT_SYMBOL
-0x1ddebeb5 sock_no_getname vmlinux EXPORT_SYMBOL
-0xcd8023f1 sock_no_ioctl vmlinux EXPORT_SYMBOL
-0x8f874264 sock_no_listen vmlinux EXPORT_SYMBOL
-0x98160db4 sock_no_shutdown vmlinux EXPORT_SYMBOL
-0xf3a310b7 sock_no_sendmsg vmlinux EXPORT_SYMBOL
-0xc8d347ed sock_no_sendmsg_locked vmlinux EXPORT_SYMBOL
-0x2b13c9df sock_no_recvmsg vmlinux EXPORT_SYMBOL
-0x59759880 sock_no_mmap vmlinux EXPORT_SYMBOL
-0x2224e84c sk_send_sigurg vmlinux EXPORT_SYMBOL
-0xe5cf30a9 sk_reset_timer vmlinux EXPORT_SYMBOL
-0x04adfeee sk_stop_timer vmlinux EXPORT_SYMBOL
-0xe6cabb98 sk_stop_timer_sync vmlinux EXPORT_SYMBOL
-0x085c6b80 sock_init_data_uid vmlinux EXPORT_SYMBOL
-0x84daf691 sock_init_data vmlinux EXPORT_SYMBOL
-0x69167e70 lock_sock_nested vmlinux EXPORT_SYMBOL
-0x4990e8d5 release_sock vmlinux EXPORT_SYMBOL
-0x6ac5c977 __lock_sock_fast vmlinux EXPORT_SYMBOL
-0xedaa86a6 sock_gettstamp vmlinux EXPORT_SYMBOL
-0xd3db747a sock_recv_errqueue vmlinux EXPORT_SYMBOL
-0xeb8eaa4d sock_common_getsockopt vmlinux EXPORT_SYMBOL
-0xc2df3592 sock_common_recvmsg vmlinux EXPORT_SYMBOL
-0x67373612 sock_common_setsockopt vmlinux EXPORT_SYMBOL
-0xb7ee7e48 sk_common_release vmlinux EXPORT_SYMBOL
-0x7028864c sock_prot_inuse_get vmlinux EXPORT_SYMBOL_GPL
-0x9043f5b9 sock_inuse_get vmlinux EXPORT_SYMBOL_GPL
-0xf2c8bd42 proto_register vmlinux EXPORT_SYMBOL
-0xd77c5c0c proto_unregister vmlinux EXPORT_SYMBOL
-0xf665f74f sock_load_diag_module vmlinux EXPORT_SYMBOL
-0xe590dea3 sk_busy_loop_end vmlinux EXPORT_SYMBOL
-0x1229f511 sock_bind_add vmlinux EXPORT_SYMBOL
-0xdb571dbc sock_ioctl_inout vmlinux EXPORT_SYMBOL
-0x2a7c40ce sk_ioctl vmlinux EXPORT_SYMBOL
-0xb7c6db70 sysctl_max_skb_frags vmlinux EXPORT_SYMBOL
-0xe169346b drop_reasons_by_subsys vmlinux EXPORT_SYMBOL
-0x78cc75d2 drop_reasons_register_subsys vmlinux EXPORT_SYMBOL_GPL
-0xff2d565c drop_reasons_unregister_subsys vmlinux EXPORT_SYMBOL_GPL
-0x99f9638f __napi_alloc_frag_align vmlinux EXPORT_SYMBOL
-0x91a488ac __netdev_alloc_frag_align vmlinux EXPORT_SYMBOL
-0xa6730a0b slab_build_skb vmlinux EXPORT_SYMBOL
-0xf06f3c95 build_skb vmlinux EXPORT_SYMBOL
-0x735c9437 build_skb_around vmlinux EXPORT_SYMBOL
-0xe5d9a383 napi_build_skb vmlinux EXPORT_SYMBOL
-0xffd8f7d7 __alloc_skb vmlinux EXPORT_SYMBOL
-0x4b31720c __netdev_alloc_skb vmlinux EXPORT_SYMBOL
-0xb6fe9080 __napi_alloc_skb vmlinux EXPORT_SYMBOL
-0x03799664 skb_add_rx_frag vmlinux EXPORT_SYMBOL
-0xfc37463b skb_coalesce_rx_frag vmlinux EXPORT_SYMBOL
-0x220cb23d napi_pp_put_page vmlinux EXPORT_SYMBOL
-0x48cf9a81 __kfree_skb vmlinux EXPORT_SYMBOL
-0x92470e43 kfree_skb_reason vmlinux EXPORT_SYMBOL
-0xfded6390 kfree_skb_list_reason vmlinux EXPORT_SYMBOL
-0xbb0b3b7d skb_dump vmlinux EXPORT_SYMBOL
-0x108bb058 skb_tx_error vmlinux EXPORT_SYMBOL
-0xa3815300 consume_skb vmlinux EXPORT_SYMBOL
-0xfe84c5d5 napi_consume_skb vmlinux EXPORT_SYMBOL
-0x94c7fb20 alloc_skb_for_msg vmlinux EXPORT_SYMBOL_GPL
-0xa0c08132 skb_morph vmlinux EXPORT_SYMBOL_GPL
-0x7a1d43b2 mm_account_pinned_pages vmlinux EXPORT_SYMBOL_GPL
-0xf867670c mm_unaccount_pinned_pages vmlinux EXPORT_SYMBOL_GPL
-0xec34dbac msg_zerocopy_realloc vmlinux EXPORT_SYMBOL_GPL
-0x32585f7c msg_zerocopy_callback vmlinux EXPORT_SYMBOL_GPL
-0xe8e76b33 msg_zerocopy_put_abort vmlinux EXPORT_SYMBOL_GPL
-0x1e310b16 skb_zerocopy_iter_stream vmlinux EXPORT_SYMBOL_GPL
-0x7c7c916f __skb_zcopy_downgrade_managed vmlinux EXPORT_SYMBOL_GPL
-0x95ef5b6f skb_copy_ubufs vmlinux EXPORT_SYMBOL_GPL
-0x67294607 skb_clone vmlinux EXPORT_SYMBOL
-0x6cfedaaa skb_headers_offset_update vmlinux EXPORT_SYMBOL
-0x0c31f21f skb_copy_header vmlinux EXPORT_SYMBOL
-0x7d119881 skb_copy vmlinux EXPORT_SYMBOL
-0x2cebb5fc __pskb_copy_fclone vmlinux EXPORT_SYMBOL
-0x64227e7e pskb_expand_head vmlinux EXPORT_SYMBOL
-0x3633ad40 skb_realloc_headroom vmlinux EXPORT_SYMBOL
-0x17ab4a20 skb_expand_head vmlinux EXPORT_SYMBOL
-0x33bb533c skb_copy_expand vmlinux EXPORT_SYMBOL
-0x9efb9051 __skb_pad vmlinux EXPORT_SYMBOL
-0x9690e68c pskb_put vmlinux EXPORT_SYMBOL_GPL
-0x408ceb59 skb_put vmlinux EXPORT_SYMBOL
-0x3402329d skb_push vmlinux EXPORT_SYMBOL
-0x2a7651a0 skb_pull vmlinux EXPORT_SYMBOL
-0xe9b3d68c skb_pull_data vmlinux EXPORT_SYMBOL
-0xdcccff43 skb_trim vmlinux EXPORT_SYMBOL
-0x7d058817 ___pskb_trim vmlinux EXPORT_SYMBOL
-0x13eadb5d pskb_trim_rcsum_slow vmlinux EXPORT_SYMBOL
-0x7dda6459 __pskb_pull_tail vmlinux EXPORT_SYMBOL
-0x26cacbfc skb_copy_bits vmlinux EXPORT_SYMBOL
-0x917b9d55 skb_splice_bits vmlinux EXPORT_SYMBOL_GPL
-0xe05494d3 skb_send_sock_locked vmlinux EXPORT_SYMBOL_GPL
-0xa261fe9d skb_store_bits vmlinux EXPORT_SYMBOL
-0x09e3fb30 __skb_checksum vmlinux EXPORT_SYMBOL
-0x0c4c7293 skb_checksum vmlinux EXPORT_SYMBOL
-0x28cf7b64 skb_copy_and_csum_bits vmlinux EXPORT_SYMBOL
-0x9fab4c8d __skb_checksum_complete_head vmlinux EXPORT_SYMBOL
-0x63c33281 __skb_checksum_complete vmlinux EXPORT_SYMBOL
-0x5be63c5b crc32c_csum_stub vmlinux EXPORT_SYMBOL
-0x80659eb1 skb_zerocopy_headlen vmlinux EXPORT_SYMBOL_GPL
-0x9867bc9e skb_zerocopy vmlinux EXPORT_SYMBOL_GPL
-0x9d5b1868 skb_copy_and_csum_dev vmlinux EXPORT_SYMBOL
-0x4b474434 skb_dequeue vmlinux EXPORT_SYMBOL
-0x309cb9ae skb_dequeue_tail vmlinux EXPORT_SYMBOL
-0x673a9046 skb_queue_purge_reason vmlinux EXPORT_SYMBOL
-0xb9704338 skb_errqueue_purge vmlinux EXPORT_SYMBOL
-0x0a93f636 skb_queue_head vmlinux EXPORT_SYMBOL
-0x98325a2d skb_queue_tail vmlinux EXPORT_SYMBOL
-0xa95eae55 skb_unlink vmlinux EXPORT_SYMBOL
-0xf07e3e49 skb_append vmlinux EXPORT_SYMBOL
-0xc1c9a0c7 skb_split vmlinux EXPORT_SYMBOL
-0xe1010653 skb_prepare_seq_read vmlinux EXPORT_SYMBOL
-0x9f7f6249 skb_seq_read vmlinux EXPORT_SYMBOL
-0x89a1e1a8 skb_abort_seq_read vmlinux EXPORT_SYMBOL
-0xfd225ce0 skb_find_text vmlinux EXPORT_SYMBOL
-0x3bedbdd7 skb_append_pagefrags vmlinux EXPORT_SYMBOL_GPL
-0x84329804 skb_pull_rcsum vmlinux EXPORT_SYMBOL_GPL
-0x1c1387d3 skb_segment_list vmlinux EXPORT_SYMBOL_GPL
-0xdc1f1302 skb_segment vmlinux EXPORT_SYMBOL_GPL
-0x9fbaa099 skb_to_sgvec vmlinux EXPORT_SYMBOL_GPL
-0x3edf522e skb_to_sgvec_nomark vmlinux EXPORT_SYMBOL_GPL
-0x4442e22a skb_cow_data vmlinux EXPORT_SYMBOL_GPL
-0x1df79ec1 sock_queue_err_skb vmlinux EXPORT_SYMBOL
-0x59c9a0f0 sock_dequeue_err_skb vmlinux EXPORT_SYMBOL
-0x1b31fca5 skb_clone_sk vmlinux EXPORT_SYMBOL
-0x32438f94 skb_complete_tx_timestamp vmlinux EXPORT_SYMBOL_GPL
-0xfe15c2e2 __skb_tstamp_tx vmlinux EXPORT_SYMBOL_GPL
-0x69e4d97b skb_tstamp_tx vmlinux EXPORT_SYMBOL_GPL
-0x68e5d044 skb_complete_wifi_ack vmlinux EXPORT_SYMBOL_GPL
-0x81829479 skb_partial_csum_set vmlinux EXPORT_SYMBOL_GPL
-0x362ac7ab skb_checksum_setup vmlinux EXPORT_SYMBOL
-0x4657f509 skb_checksum_trimmed vmlinux EXPORT_SYMBOL
-0x8a24cb30 __skb_warn_lro_forwarding vmlinux EXPORT_SYMBOL
-0x45bbd1b9 kfree_skb_partial vmlinux EXPORT_SYMBOL
-0x5fbdda6e skb_try_coalesce vmlinux EXPORT_SYMBOL
-0xdfa6abe9 skb_scrub_packet vmlinux EXPORT_SYMBOL_GPL
-0xed52cd5b skb_vlan_untag vmlinux EXPORT_SYMBOL
-0x61955420 skb_ensure_writable vmlinux EXPORT_SYMBOL
-0x96e0e3c1 __skb_vlan_pop vmlinux EXPORT_SYMBOL
-0x0ea75a48 skb_vlan_pop vmlinux EXPORT_SYMBOL
-0x1228b460 skb_vlan_push vmlinux EXPORT_SYMBOL
-0x76285c4a skb_eth_pop vmlinux EXPORT_SYMBOL
-0x96597ee0 skb_eth_push vmlinux EXPORT_SYMBOL
-0x3414e7cd skb_mpls_push vmlinux EXPORT_SYMBOL_GPL
-0x17e02630 skb_mpls_pop vmlinux EXPORT_SYMBOL_GPL
-0xe8377ea3 skb_mpls_update_lse vmlinux EXPORT_SYMBOL_GPL
-0x2a4d84e6 skb_mpls_dec_ttl vmlinux EXPORT_SYMBOL_GPL
-0x7883132f alloc_skb_with_frags vmlinux EXPORT_SYMBOL
-0xaa7730dd pskb_extract vmlinux EXPORT_SYMBOL
-0x641aa276 skb_condense vmlinux EXPORT_SYMBOL
-0x9ac7f9f4 skb_ext_add vmlinux EXPORT_SYMBOL
-0x77477d03 __skb_ext_del vmlinux EXPORT_SYMBOL
-0x7aa9285d __skb_ext_put vmlinux EXPORT_SYMBOL
-0x2ba69df0 skb_splice_from_iter vmlinux EXPORT_SYMBOL
-0x438ac98c __skb_wait_for_more_packets vmlinux EXPORT_SYMBOL
-0x0d53eae6 __skb_try_recv_datagram vmlinux EXPORT_SYMBOL
-0x3957af6e __skb_recv_datagram vmlinux EXPORT_SYMBOL
-0xca5d0c9d skb_recv_datagram vmlinux EXPORT_SYMBOL
-0x26dda5b4 skb_free_datagram vmlinux EXPORT_SYMBOL
-0xbed19089 __skb_free_datagram_locked vmlinux EXPORT_SYMBOL
-0x73e8540a __sk_queue_drop_skb vmlinux EXPORT_SYMBOL
-0x44b74a1c skb_kill_datagram vmlinux EXPORT_SYMBOL
-0x5b691be4 skb_copy_and_hash_datagram_iter vmlinux EXPORT_SYMBOL
-0x2e3fb0ce skb_copy_datagram_iter vmlinux EXPORT_SYMBOL
-0xeeb87a78 skb_copy_datagram_from_iter vmlinux EXPORT_SYMBOL
-0xc0f51612 __zerocopy_sg_from_iter vmlinux EXPORT_SYMBOL
-0x4b110972 zerocopy_sg_from_iter vmlinux EXPORT_SYMBOL
-0x8aa0b5e5 skb_copy_and_csum_datagram_msg vmlinux EXPORT_SYMBOL
-0x00bfcaa2 datagram_poll vmlinux EXPORT_SYMBOL
-0x442352d5 sk_stream_wait_connect vmlinux EXPORT_SYMBOL
-0xdc00230f sk_stream_wait_close vmlinux EXPORT_SYMBOL
-0xe23e7376 sk_stream_wait_memory vmlinux EXPORT_SYMBOL
-0x84c81bfb sk_stream_error vmlinux EXPORT_SYMBOL
-0xd5764114 sk_stream_kill_queues vmlinux EXPORT_SYMBOL
-0xc62dda8f __scm_destroy vmlinux EXPORT_SYMBOL
-0x10368b75 __scm_send vmlinux EXPORT_SYMBOL
-0x0b7ac7b8 put_cmsg vmlinux EXPORT_SYMBOL
-0xee88bed3 put_cmsg_scm_timestamping64 vmlinux EXPORT_SYMBOL
-0x0416da60 put_cmsg_scm_timestamping vmlinux EXPORT_SYMBOL
-0x67a2030b scm_detach_fds vmlinux EXPORT_SYMBOL
-0x25c122bc scm_fp_dup vmlinux EXPORT_SYMBOL
-0xb0238860 gnet_stats_start_copy_compat vmlinux EXPORT_SYMBOL
-0x6cd20c02 gnet_stats_start_copy vmlinux EXPORT_SYMBOL
-0x866a62b2 gnet_stats_basic_sync_init vmlinux EXPORT_SYMBOL
-0xfa042227 gnet_stats_add_basic vmlinux EXPORT_SYMBOL
-0x78d06a7e gnet_stats_copy_basic vmlinux EXPORT_SYMBOL
-0x38f0ea7b gnet_stats_copy_basic_hw vmlinux EXPORT_SYMBOL
-0x3456145a gnet_stats_copy_rate_est vmlinux EXPORT_SYMBOL
-0xfc421e79 gnet_stats_add_queue vmlinux EXPORT_SYMBOL
-0x15991b4d gnet_stats_copy_queue vmlinux EXPORT_SYMBOL
-0x984c75f1 gnet_stats_copy_app vmlinux EXPORT_SYMBOL
-0x1421b518 gnet_stats_finish_copy vmlinux EXPORT_SYMBOL
-0x5e9a01ce gen_new_estimator vmlinux EXPORT_SYMBOL
-0xded39a6b gen_kill_estimator vmlinux EXPORT_SYMBOL
-0x0f630261 gen_replace_estimator vmlinux EXPORT_SYMBOL
-0xa28cfcc0 gen_estimator_active vmlinux EXPORT_SYMBOL
-0x4df2ea84 gen_estimator_read vmlinux EXPORT_SYMBOL
-0x6d2fc5a6 net_namespace_list vmlinux EXPORT_SYMBOL_GPL
-0xe1a8d7c9 net_rwsem vmlinux EXPORT_SYMBOL_GPL
-0xd7a3db8b init_net vmlinux EXPORT_SYMBOL
-0x00565f18 pernet_ops_rwsem vmlinux EXPORT_SYMBOL_GPL
-0x238c1ee9 peernet2id_alloc vmlinux EXPORT_SYMBOL_GPL
-0x7bc2c923 peernet2id vmlinux EXPORT_SYMBOL
-0x1911cf8f get_net_ns_by_id vmlinux EXPORT_SYMBOL_GPL
-0x7e1f66bf net_ns_get_ownership vmlinux EXPORT_SYMBOL_GPL
-0xf44a904a net_ns_barrier vmlinux EXPORT_SYMBOL
-0xd00b7c14 __put_net vmlinux EXPORT_SYMBOL_GPL
-0x3af545e1 get_net_ns vmlinux EXPORT_SYMBOL_GPL
-0xafd02377 get_net_ns_by_fd vmlinux EXPORT_SYMBOL_GPL
-0x29f06f2f get_net_ns_by_pid vmlinux EXPORT_SYMBOL_GPL
-0xbba88740 register_pernet_subsys vmlinux EXPORT_SYMBOL_GPL
-0xb6256acc unregister_pernet_subsys vmlinux EXPORT_SYMBOL_GPL
-0xcaef461f register_pernet_device vmlinux EXPORT_SYMBOL_GPL
-0xc762ab93 unregister_pernet_device vmlinux EXPORT_SYMBOL_GPL
-0x41afafae secure_tcpv6_ts_off vmlinux EXPORT_SYMBOL
-0x0c25ec48 secure_tcpv6_seq vmlinux EXPORT_SYMBOL
-0x0209f3a7 secure_ipv6_port_ephemeral vmlinux EXPORT_SYMBOL
-0xb2405efc secure_tcp_seq vmlinux EXPORT_SYMBOL_GPL
-0xe3840e18 secure_ipv4_port_ephemeral vmlinux EXPORT_SYMBOL_GPL
-0x82f9219d skb_flow_dissector_init vmlinux EXPORT_SYMBOL
-0xb37014d1 __skb_flow_get_ports vmlinux EXPORT_SYMBOL
-0x3c6b4e93 skb_flow_get_icmp_tci vmlinux EXPORT_SYMBOL
-0x420289bc skb_flow_dissect_meta vmlinux EXPORT_SYMBOL
-0x31edc182 skb_flow_dissect_ct vmlinux EXPORT_SYMBOL
-0x0f51d16e skb_flow_dissect_tunnel_info vmlinux EXPORT_SYMBOL
-0x93af41a8 skb_flow_dissect_hash vmlinux EXPORT_SYMBOL
-0x33899814 __skb_flow_dissect vmlinux EXPORT_SYMBOL
-0xb43ebd7e flow_get_u32_src vmlinux EXPORT_SYMBOL
-0xce18dc55 flow_get_u32_dst vmlinux EXPORT_SYMBOL
-0x8e27dc9a flow_hash_from_keys vmlinux EXPORT_SYMBOL
-0x72a0c58a make_flow_keys_digest vmlinux EXPORT_SYMBOL
-0x1a5f8891 __skb_get_hash_symmetric vmlinux EXPORT_SYMBOL_GPL
-0xf23db3f6 __skb_get_hash vmlinux EXPORT_SYMBOL
-0xa0c4e7dc skb_get_hash_perturb vmlinux EXPORT_SYMBOL
-0xa6ec5f78 __get_hash_from_flowi6 vmlinux EXPORT_SYMBOL
-0xeff39aad flow_keys_dissector vmlinux EXPORT_SYMBOL
-0xebafb39a flow_keys_basic_dissector vmlinux EXPORT_SYMBOL
-0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net vmlinux EXPORT_SYMBOL
-0xd04c1a64 sysctl_devconf_inherit_init_net vmlinux EXPORT_SYMBOL
-0xa5976e4f dev_base_lock vmlinux EXPORT_SYMBOL
-0xe1777dd5 netdev_name_in_use vmlinux EXPORT_SYMBOL
-0x7d4d93e5 softnet_data vmlinux EXPORT_SYMBOL
-0xc9d96497 dev_add_pack vmlinux EXPORT_SYMBOL
-0xfb8ebb57 __dev_remove_pack vmlinux EXPORT_SYMBOL
-0x12c53ddd dev_remove_pack vmlinux EXPORT_SYMBOL
-0x031d51ca dev_get_iflink vmlinux EXPORT_SYMBOL
-0x55aab621 dev_fill_metadata_dst vmlinux EXPORT_SYMBOL_GPL
-0xc6a93310 dev_fill_forward_path vmlinux EXPORT_SYMBOL_GPL
-0xb4432a8f __dev_get_by_name vmlinux EXPORT_SYMBOL
-0x6093b3e1 dev_get_by_name_rcu vmlinux EXPORT_SYMBOL
-0x4221adfe dev_get_by_name vmlinux EXPORT_SYMBOL
-0x9391b03c netdev_get_by_name vmlinux EXPORT_SYMBOL
-0x88979436 __dev_get_by_index vmlinux EXPORT_SYMBOL
-0x788a8815 dev_get_by_index_rcu vmlinux EXPORT_SYMBOL
-0x3dfb25b2 dev_get_by_index vmlinux EXPORT_SYMBOL
-0x29ea8b2e netdev_get_by_index vmlinux EXPORT_SYMBOL
-0x2c5152ad dev_get_by_napi_id vmlinux EXPORT_SYMBOL
-0x936c7bba dev_getbyhwaddr_rcu vmlinux EXPORT_SYMBOL
-0xf8217c48 dev_getfirstbyhwtype vmlinux EXPORT_SYMBOL
-0xe8f2fe2b __dev_get_by_flags vmlinux EXPORT_SYMBOL
-0x62849ac7 dev_valid_name vmlinux EXPORT_SYMBOL
-0xc88e9aef dev_alloc_name vmlinux EXPORT_SYMBOL
-0xc8c975f9 dev_set_alias vmlinux EXPORT_SYMBOL
-0x96ab7ff6 netdev_features_change vmlinux EXPORT_SYMBOL
-0xf93fb235 netdev_state_change vmlinux EXPORT_SYMBOL
-0x40ab74f0 __netdev_notify_peers vmlinux EXPORT_SYMBOL
-0x28468623 netdev_notify_peers vmlinux EXPORT_SYMBOL
-0x1f222a02 dev_open vmlinux EXPORT_SYMBOL
-0x58b4645c dev_close_many vmlinux EXPORT_SYMBOL
-0x7cdd4724 dev_close vmlinux EXPORT_SYMBOL
-0xec5ec047 dev_disable_lro vmlinux EXPORT_SYMBOL
-0x3ae65f46 netdev_cmd_to_name vmlinux EXPORT_SYMBOL_GPL
-0xd2da1048 register_netdevice_notifier vmlinux EXPORT_SYMBOL
-0x9d0d6206 unregister_netdevice_notifier vmlinux EXPORT_SYMBOL
-0x91b726a4 register_netdevice_notifier_net vmlinux EXPORT_SYMBOL
-0xe7aa71eb unregister_netdevice_notifier_net vmlinux EXPORT_SYMBOL
-0xbbd622a7 register_netdevice_notifier_dev_net vmlinux EXPORT_SYMBOL
-0x7a9acf4f unregister_netdevice_notifier_dev_net vmlinux EXPORT_SYMBOL
-0x73607f35 call_netdevice_notifiers vmlinux EXPORT_SYMBOL
-0x2c3054f9 net_inc_ingress_queue vmlinux EXPORT_SYMBOL_GPL
-0x46013233 net_dec_ingress_queue vmlinux EXPORT_SYMBOL_GPL
-0x07be6905 net_inc_egress_queue vmlinux EXPORT_SYMBOL_GPL
-0x86f85114 net_dec_egress_queue vmlinux EXPORT_SYMBOL_GPL
-0x391df80a netstamp_needed_key vmlinux EXPORT_SYMBOL
-0x54e6fcdd net_enable_timestamp vmlinux EXPORT_SYMBOL
-0x199ed0cd net_disable_timestamp vmlinux EXPORT_SYMBOL
-0x0d38e469 is_skb_forwardable vmlinux EXPORT_SYMBOL_GPL
-0x60499653 __dev_forward_skb vmlinux EXPORT_SYMBOL_GPL
-0x88767bd3 dev_forward_skb vmlinux EXPORT_SYMBOL_GPL
-0x2f8887fe dev_nit_active vmlinux EXPORT_SYMBOL_GPL
-0xc91c5b04 dev_queue_xmit_nit vmlinux EXPORT_SYMBOL_GPL
-0x6f7b7ed5 netdev_txq_to_tc vmlinux EXPORT_SYMBOL
-0x639fb637 __netif_set_xps_queue vmlinux EXPORT_SYMBOL_GPL
-0xeb1d4623 netif_set_xps_queue vmlinux EXPORT_SYMBOL
-0x9806a600 netdev_reset_tc vmlinux EXPORT_SYMBOL
-0xbe39f354 netdev_set_tc_queue vmlinux EXPORT_SYMBOL
-0x95710d31 netdev_set_num_tc vmlinux EXPORT_SYMBOL
-0x616cfb4d netdev_unbind_sb_channel vmlinux EXPORT_SYMBOL
-0xf59d3492 netdev_bind_sb_channel_queue vmlinux EXPORT_SYMBOL
-0xdc8f6ad7 netdev_set_sb_channel vmlinux EXPORT_SYMBOL
-0xc23b9d9a netif_set_real_num_tx_queues vmlinux EXPORT_SYMBOL
-0x7122f3dd netif_set_real_num_rx_queues vmlinux EXPORT_SYMBOL
-0xa735f504 netif_set_real_num_queues vmlinux EXPORT_SYMBOL
-0x3060fe6f netif_set_tso_max_size vmlinux EXPORT_SYMBOL
-0x106ddfb2 netif_set_tso_max_segs vmlinux EXPORT_SYMBOL
-0x53babbb3 netif_inherit_tso_max vmlinux EXPORT_SYMBOL
-0x0274dc2b netif_get_num_default_rss_queues vmlinux EXPORT_SYMBOL
-0x15e3839f __netif_schedule vmlinux EXPORT_SYMBOL
-0xd5b4e49c netif_schedule_queue vmlinux EXPORT_SYMBOL
-0x5a94d66e netif_tx_wake_queue vmlinux EXPORT_SYMBOL
-0xf1f940af dev_kfree_skb_irq_reason vmlinux EXPORT_SYMBOL
-0xe1906d18 dev_kfree_skb_any_reason vmlinux EXPORT_SYMBOL
-0x81b68951 netif_device_detach vmlinux EXPORT_SYMBOL
-0xb612a965 netif_device_attach vmlinux EXPORT_SYMBOL
-0x404f9121 skb_checksum_help vmlinux EXPORT_SYMBOL
-0xfdafac53 netdev_rx_csum_fault vmlinux EXPORT_SYMBOL
-0x5883e1d9 passthru_features_check vmlinux EXPORT_SYMBOL
-0x7bb2c2f7 netif_skb_features vmlinux EXPORT_SYMBOL
-0x73738c4b skb_csum_hwoffload_help vmlinux EXPORT_SYMBOL
-0xba3125a4 validate_xmit_skb_list vmlinux EXPORT_SYMBOL_GPL
-0xacf12843 dev_loopback_xmit vmlinux EXPORT_SYMBOL
-0xed8c384b netdev_xmit_skip_txqueue vmlinux EXPORT_SYMBOL_GPL
-0x8d0fad27 dev_pick_tx_zero vmlinux EXPORT_SYMBOL
-0xcea94ca2 dev_pick_tx_cpu_id vmlinux EXPORT_SYMBOL
-0x26601aa9 netdev_pick_tx vmlinux EXPORT_SYMBOL
-0x94201898 __dev_queue_xmit vmlinux EXPORT_SYMBOL
-0xb3b72012 __dev_direct_xmit vmlinux EXPORT_SYMBOL
-0x9ffa3a75 netdev_max_backlog vmlinux EXPORT_SYMBOL
-0xd62ecd49 rps_sock_flow_table vmlinux EXPORT_SYMBOL
-0x56802ae8 rps_cpu_mask vmlinux EXPORT_SYMBOL
-0x8761c87b rps_needed vmlinux EXPORT_SYMBOL
-0xadd139d4 rfs_needed vmlinux EXPORT_SYMBOL
-0x693a7e7c rps_may_expire_flow vmlinux EXPORT_SYMBOL
-0x41a5f57b do_xdp_generic vmlinux EXPORT_SYMBOL_GPL
-0x7c10cabf __netif_rx vmlinux EXPORT_SYMBOL
-0xa29c458f netif_rx vmlinux EXPORT_SYMBOL
-0x9834daad br_fdb_test_addr_hook vmlinux EXPORT_SYMBOL_GPL
-0x254ac095 netdev_is_rx_handler_busy vmlinux EXPORT_SYMBOL_GPL
-0x0a1716e0 netdev_rx_handler_register vmlinux EXPORT_SYMBOL_GPL
-0xb578e291 netdev_rx_handler_unregister vmlinux EXPORT_SYMBOL_GPL
-0x7e09ffc3 netif_receive_skb_core vmlinux EXPORT_SYMBOL
-0x6fae441a netif_receive_skb vmlinux EXPORT_SYMBOL
-0x6b8bf149 netif_receive_skb_list vmlinux EXPORT_SYMBOL
-0xedad986e __napi_schedule vmlinux EXPORT_SYMBOL
-0x4b3e2aa3 napi_schedule_prep vmlinux EXPORT_SYMBOL
-0x607154d4 __napi_schedule_irqoff vmlinux EXPORT_SYMBOL
-0xb53199b3 napi_complete_done vmlinux EXPORT_SYMBOL
-0x29604158 napi_busy_loop vmlinux EXPORT_SYMBOL
-0x59b78ca0 dev_set_threaded vmlinux EXPORT_SYMBOL
-0x407f92f2 netif_napi_add_weight vmlinux EXPORT_SYMBOL
-0xcc5424df napi_disable vmlinux EXPORT_SYMBOL
-0x16590a6a napi_enable vmlinux EXPORT_SYMBOL
-0x40a56793 __netif_napi_del vmlinux EXPORT_SYMBOL
-0x2ca2fd1b netdev_has_upper_dev vmlinux EXPORT_SYMBOL
-0x0422d8b8 netdev_has_upper_dev_all_rcu vmlinux EXPORT_SYMBOL
-0xa0b43e09 netdev_has_any_upper_dev vmlinux EXPORT_SYMBOL
-0x89def0bf netdev_master_upper_dev_get vmlinux EXPORT_SYMBOL
-0xa0dad88e netdev_adjacent_get_private vmlinux EXPORT_SYMBOL
-0xe3f3fafd netdev_upper_get_next_dev_rcu vmlinux EXPORT_SYMBOL
-0x8bcd4985 netdev_walk_all_upper_dev_rcu vmlinux EXPORT_SYMBOL_GPL
-0x43153e0d netdev_lower_get_next_private vmlinux EXPORT_SYMBOL
-0x5336e90c netdev_lower_get_next_private_rcu vmlinux EXPORT_SYMBOL
-0x9b91f1c3 netdev_lower_get_next vmlinux EXPORT_SYMBOL
-0x6e0154a9 netdev_walk_all_lower_dev vmlinux EXPORT_SYMBOL_GPL
-0x54a476fd netdev_next_lower_dev_rcu vmlinux EXPORT_SYMBOL
-0x73b138af netdev_walk_all_lower_dev_rcu vmlinux EXPORT_SYMBOL_GPL
-0xe1814899 netdev_lower_get_first_private_rcu vmlinux EXPORT_SYMBOL
-0x05069504 netdev_master_upper_dev_get_rcu vmlinux EXPORT_SYMBOL
-0x8d330dc7 netdev_upper_dev_link vmlinux EXPORT_SYMBOL
-0x05dac6ff netdev_master_upper_dev_link vmlinux EXPORT_SYMBOL
-0x2f175f21 netdev_upper_dev_unlink vmlinux EXPORT_SYMBOL
-0x792a7199 netdev_adjacent_change_prepare vmlinux EXPORT_SYMBOL
-0xd3c40ab9 netdev_adjacent_change_commit vmlinux EXPORT_SYMBOL
-0x647d4e4d netdev_adjacent_change_abort vmlinux EXPORT_SYMBOL
-0x1f5dea74 netdev_bonding_info_change vmlinux EXPORT_SYMBOL
-0x0affc9b0 netdev_offload_xstats_enable vmlinux EXPORT_SYMBOL
-0xe40b96a0 netdev_offload_xstats_disable vmlinux EXPORT_SYMBOL
-0xbad1c477 netdev_offload_xstats_enabled vmlinux EXPORT_SYMBOL
-0x9e879409 netdev_offload_xstats_get vmlinux EXPORT_SYMBOL
-0x9fb41842 netdev_offload_xstats_report_delta vmlinux EXPORT_SYMBOL
-0xd2d88506 netdev_offload_xstats_report_used vmlinux EXPORT_SYMBOL
-0x10cdfbc1 netdev_offload_xstats_push_delta vmlinux EXPORT_SYMBOL
-0x8382e7b3 netdev_get_xmit_slave vmlinux EXPORT_SYMBOL
-0x7aa83e09 netdev_sk_get_lowest_dev vmlinux EXPORT_SYMBOL
-0x88bb815b netdev_lower_dev_get_private vmlinux EXPORT_SYMBOL
-0xcc379533 netdev_lower_state_changed vmlinux EXPORT_SYMBOL
-0x1431342d dev_set_promiscuity vmlinux EXPORT_SYMBOL
-0xcf522d56 dev_set_allmulti vmlinux EXPORT_SYMBOL
-0x3dafe589 dev_get_flags vmlinux EXPORT_SYMBOL
-0x2c5a63dc dev_change_flags vmlinux EXPORT_SYMBOL
-0x352e1e37 __dev_set_mtu vmlinux EXPORT_SYMBOL
-0xe5e29a4e dev_set_mtu vmlinux EXPORT_SYMBOL
-0x693b8af7 dev_pre_changeaddr_notify vmlinux EXPORT_SYMBOL
-0x406b480b dev_set_mac_address vmlinux EXPORT_SYMBOL
-0x90cdf485 dev_set_mac_address_user vmlinux EXPORT_SYMBOL
-0x35ef2f1c dev_get_mac_address vmlinux EXPORT_SYMBOL
-0xaf7b336d dev_get_port_parent_id vmlinux EXPORT_SYMBOL
-0xd324e5c5 netdev_port_same_parent_id vmlinux EXPORT_SYMBOL
-0x96bf8595 dev_xdp_prog_count vmlinux EXPORT_SYMBOL_GPL
-0xd9cf7430 netdev_update_features vmlinux EXPORT_SYMBOL
-0x2249a728 netdev_change_features vmlinux EXPORT_SYMBOL
-0xc4f886b8 netif_stacked_transfer_operstate vmlinux EXPORT_SYMBOL
-0xbb738588 netif_tx_stop_all_queues vmlinux EXPORT_SYMBOL
-0x95a44032 register_netdevice vmlinux EXPORT_SYMBOL
-0x80579c4e init_dummy_netdev vmlinux EXPORT_SYMBOL_GPL
-0x50dffe45 register_netdev vmlinux EXPORT_SYMBOL
-0x48f05139 netdev_refcnt_read vmlinux EXPORT_SYMBOL
-0xcf3b69b3 netdev_stats_to_stats64 vmlinux EXPORT_SYMBOL
-0xb53d3d5f netdev_core_stats_alloc vmlinux EXPORT_SYMBOL
-0x98ba46f6 dev_get_stats vmlinux EXPORT_SYMBOL
-0x8fa5a6ee dev_fetch_sw_netstats vmlinux EXPORT_SYMBOL_GPL
-0x1fc2e33f dev_get_tstats64 vmlinux EXPORT_SYMBOL_GPL
-0x3816b9a7 netdev_set_default_ethtool_ops vmlinux EXPORT_SYMBOL_GPL
-0xe193d21a netdev_sw_irq_coalesce_default_on vmlinux EXPORT_SYMBOL_GPL
-0xc0805bd3 alloc_netdev_mqs vmlinux EXPORT_SYMBOL
-0xe2d80a69 free_netdev vmlinux EXPORT_SYMBOL
-0x609f1c7e synchronize_net vmlinux EXPORT_SYMBOL
-0x704cce21 unregister_netdevice_queue vmlinux EXPORT_SYMBOL
-0x9fdecc31 unregister_netdevice_many vmlinux EXPORT_SYMBOL
-0xab09a22d unregister_netdev vmlinux EXPORT_SYMBOL
-0x63816bab __dev_change_net_namespace vmlinux EXPORT_SYMBOL_GPL
-0x69668826 netdev_increment_features vmlinux EXPORT_SYMBOL
-0x6fab622d netdev_printk vmlinux EXPORT_SYMBOL
-0x184e6e88 netdev_emerg vmlinux EXPORT_SYMBOL
-0x51a4c3fc netdev_alert vmlinux EXPORT_SYMBOL
-0xb334c766 netdev_crit vmlinux EXPORT_SYMBOL
-0x3d1154ac netdev_err vmlinux EXPORT_SYMBOL
-0xd281c12b netdev_warn vmlinux EXPORT_SYMBOL
-0xa41d3b81 netdev_notice vmlinux EXPORT_SYMBOL
-0xc6e651ad netdev_info vmlinux EXPORT_SYMBOL
-0x91f68ea1 __hw_addr_sync vmlinux EXPORT_SYMBOL
-0xb71ed69f __hw_addr_unsync vmlinux EXPORT_SYMBOL
-0x209927c6 __hw_addr_sync_dev vmlinux EXPORT_SYMBOL
-0xc4d39f69 __hw_addr_ref_sync_dev vmlinux EXPORT_SYMBOL
-0xfe06c4a4 __hw_addr_ref_unsync_dev vmlinux EXPORT_SYMBOL
-0x0658da93 __hw_addr_unsync_dev vmlinux EXPORT_SYMBOL
-0xf28cf0ae __hw_addr_init vmlinux EXPORT_SYMBOL
-0x410abc4c dev_addr_mod vmlinux EXPORT_SYMBOL
-0x0ec2287b dev_addr_add vmlinux EXPORT_SYMBOL
-0xb1928804 dev_addr_del vmlinux EXPORT_SYMBOL
-0xee92f352 dev_uc_add_excl vmlinux EXPORT_SYMBOL
-0xff83d561 dev_uc_add vmlinux EXPORT_SYMBOL
-0x95981f7d dev_uc_del vmlinux EXPORT_SYMBOL
-0x20e3c683 dev_uc_sync vmlinux EXPORT_SYMBOL
-0x676e2a8e dev_uc_sync_multiple vmlinux EXPORT_SYMBOL
-0x88ce39b8 dev_uc_unsync vmlinux EXPORT_SYMBOL
-0x91de6f7d dev_uc_flush vmlinux EXPORT_SYMBOL
-0xc517efbb dev_uc_init vmlinux EXPORT_SYMBOL
-0x7ef7c898 dev_mc_add_excl vmlinux EXPORT_SYMBOL
-0xffe6dbe7 dev_mc_add vmlinux EXPORT_SYMBOL
-0xdcd2284e dev_mc_add_global vmlinux EXPORT_SYMBOL
-0x95fd11fb dev_mc_del vmlinux EXPORT_SYMBOL
-0x8f7452d2 dev_mc_del_global vmlinux EXPORT_SYMBOL
-0x45ed4083 dev_mc_sync vmlinux EXPORT_SYMBOL
-0xfa3c4367 dev_mc_sync_multiple vmlinux EXPORT_SYMBOL
-0x8c157aa3 dev_mc_unsync vmlinux EXPORT_SYMBOL
-0xb8653023 dev_mc_flush vmlinux EXPORT_SYMBOL
-0xa78129c2 dev_mc_init vmlinux EXPORT_SYMBOL
-0x17687d19 dst_discard_out vmlinux EXPORT_SYMBOL
-0xccfb9e07 dst_default_metrics vmlinux EXPORT_SYMBOL
-0x45160911 dst_init vmlinux EXPORT_SYMBOL
-0xb7a1708f dst_alloc vmlinux EXPORT_SYMBOL
-0xd99f7d81 dst_destroy vmlinux EXPORT_SYMBOL
-0xc8664282 dst_dev_put vmlinux EXPORT_SYMBOL
-0x07328f9e dst_release vmlinux EXPORT_SYMBOL
-0x932725b0 dst_release_immediate vmlinux EXPORT_SYMBOL
-0xc871e490 dst_cow_metrics_generic vmlinux EXPORT_SYMBOL
-0x77501841 __dst_destroy_metrics_generic vmlinux EXPORT_SYMBOL
-0xfc36e314 dst_blackhole_update_pmtu vmlinux EXPORT_SYMBOL_GPL
-0x387b30a0 dst_blackhole_redirect vmlinux EXPORT_SYMBOL_GPL
-0x10efd8cc dst_blackhole_mtu vmlinux EXPORT_SYMBOL_GPL
-0xdc741044 metadata_dst_alloc vmlinux EXPORT_SYMBOL_GPL
-0x61078c7b metadata_dst_free vmlinux EXPORT_SYMBOL_GPL
-0x9616d12f metadata_dst_alloc_percpu vmlinux EXPORT_SYMBOL_GPL
-0x7f390c71 metadata_dst_free_percpu vmlinux EXPORT_SYMBOL_GPL
-0x4761f17c register_netevent_notifier vmlinux EXPORT_SYMBOL_GPL
-0x4fe1eddf unregister_netevent_notifier vmlinux EXPORT_SYMBOL_GPL
-0x65ccb6f0 call_netevent_notifiers vmlinux EXPORT_SYMBOL_GPL
-0x4188d439 neigh_rand_reach_time vmlinux EXPORT_SYMBOL
-0xdf86b07d neigh_changeaddr vmlinux EXPORT_SYMBOL
-0xeb6e700b neigh_carrier_down vmlinux EXPORT_SYMBOL
-0x82ee220e neigh_ifdown vmlinux EXPORT_SYMBOL
-0xfabd8135 neigh_lookup vmlinux EXPORT_SYMBOL
-0xd521f201 __neigh_create vmlinux EXPORT_SYMBOL
-0xe2defe13 __pneigh_lookup vmlinux EXPORT_SYMBOL_GPL
-0x8a77911b pneigh_lookup vmlinux EXPORT_SYMBOL
-0x8dadc892 neigh_destroy vmlinux EXPORT_SYMBOL
-0xebed1fb6 __neigh_event_send vmlinux EXPORT_SYMBOL
-0x1aa31e74 neigh_update vmlinux EXPORT_SYMBOL
-0xd1c225d1 __neigh_set_probe_once vmlinux EXPORT_SYMBOL
-0xfdff99f5 neigh_event_ns vmlinux EXPORT_SYMBOL
-0xb9c2c7f9 neigh_resolve_output vmlinux EXPORT_SYMBOL
-0x14b4ed9d neigh_connected_output vmlinux EXPORT_SYMBOL
-0xd538132a neigh_direct_output vmlinux EXPORT_SYMBOL
-0xd34e86f7 pneigh_enqueue vmlinux EXPORT_SYMBOL
-0x8be407a7 neigh_parms_alloc vmlinux EXPORT_SYMBOL
-0xf9ff6675 neigh_parms_release vmlinux EXPORT_SYMBOL
-0x5c4bf8dd neigh_table_init vmlinux EXPORT_SYMBOL
-0x00f1c507 neigh_table_clear vmlinux EXPORT_SYMBOL
-0x44b8e146 neigh_for_each vmlinux EXPORT_SYMBOL
-0xdf0cf01c __neigh_for_each_release vmlinux EXPORT_SYMBOL
-0xd37b95f4 neigh_xmit vmlinux EXPORT_SYMBOL
-0x47d11653 neigh_seq_start vmlinux EXPORT_SYMBOL
-0xa3766dc5 neigh_seq_next vmlinux EXPORT_SYMBOL
-0xabadd93e neigh_seq_stop vmlinux EXPORT_SYMBOL
-0x572684a4 neigh_app_ns vmlinux EXPORT_SYMBOL
-0x85f596a4 neigh_proc_dointvec vmlinux EXPORT_SYMBOL
-0x957c9ebf neigh_proc_dointvec_jiffies vmlinux EXPORT_SYMBOL
-0xb2a9cf10 neigh_proc_dointvec_ms_jiffies vmlinux EXPORT_SYMBOL
-0x90225e15 neigh_sysctl_register vmlinux EXPORT_SYMBOL
-0x8918b47e neigh_sysctl_unregister vmlinux EXPORT_SYMBOL
-0xc7a4fbed rtnl_lock vmlinux EXPORT_SYMBOL
-0x6b55acd0 rtnl_lock_killable vmlinux EXPORT_SYMBOL
-0xad2d8f7e rtnl_kfree_skbs vmlinux EXPORT_SYMBOL
-0x6e720ff2 rtnl_unlock vmlinux EXPORT_SYMBOL
-0xf4f14de6 rtnl_trylock vmlinux EXPORT_SYMBOL
-0x85670f1d rtnl_is_locked vmlinux EXPORT_SYMBOL
-0xa74c9877 refcount_dec_and_rtnl_lock vmlinux EXPORT_SYMBOL
-0x2001400a rtnl_register_module vmlinux EXPORT_SYMBOL_GPL
-0x07b52e38 rtnl_unregister vmlinux EXPORT_SYMBOL_GPL
-0x579e0bf5 rtnl_unregister_all vmlinux EXPORT_SYMBOL_GPL
-0x82b38aaf __rtnl_link_register vmlinux EXPORT_SYMBOL_GPL
-0x8dfe3166 rtnl_link_register vmlinux EXPORT_SYMBOL_GPL
-0x3009ad16 __rtnl_link_unregister vmlinux EXPORT_SYMBOL_GPL
-0xf71ace9e rtnl_link_unregister vmlinux EXPORT_SYMBOL_GPL
-0x8bacf084 rtnl_af_register vmlinux EXPORT_SYMBOL_GPL
-0xaaa4f607 rtnl_af_unregister vmlinux EXPORT_SYMBOL_GPL
-0x12d6fc99 rtnl_unicast vmlinux EXPORT_SYMBOL
-0x841b2bc9 rtnl_notify vmlinux EXPORT_SYMBOL
-0xca869bd7 rtnl_set_sk_err vmlinux EXPORT_SYMBOL
-0x515c1e50 rtnetlink_put_metrics vmlinux EXPORT_SYMBOL
-0x5fd46284 rtnl_put_cacheinfo vmlinux EXPORT_SYMBOL_GPL
-0x91bbadca rtnl_get_net_ns_capable vmlinux EXPORT_SYMBOL_GPL
-0x554ad94b rtnl_nla_parse_ifinfomsg vmlinux EXPORT_SYMBOL
-0xda6512fe rtnl_link_get_net vmlinux EXPORT_SYMBOL
-0xe41033b4 rtnl_delete_link vmlinux EXPORT_SYMBOL_GPL
-0xbb62b34c rtnl_configure_link vmlinux EXPORT_SYMBOL
-0xfd61b294 rtnl_create_link vmlinux EXPORT_SYMBOL
-0x8b8b8d6e ndo_dflt_fdb_add vmlinux EXPORT_SYMBOL
-0xac6bcf1e ndo_dflt_fdb_del vmlinux EXPORT_SYMBOL
-0x5de45abe ndo_dflt_fdb_dump vmlinux EXPORT_SYMBOL
-0x1c439725 ndo_dflt_bridge_getlink vmlinux EXPORT_SYMBOL_GPL
-0x2d078a7a rtnl_offload_xstats_notify vmlinux EXPORT_SYMBOL
-0xf6ebc03b net_ratelimit vmlinux EXPORT_SYMBOL
-0x1b6314fd in_aton vmlinux EXPORT_SYMBOL
-0xac5fcec0 in4_pton vmlinux EXPORT_SYMBOL
-0x609bcd98 in6_pton vmlinux EXPORT_SYMBOL
-0x396b0334 inet_pton_with_scope vmlinux EXPORT_SYMBOL
-0xaa8f1b71 inet_addr_is_any vmlinux EXPORT_SYMBOL
-0x69f95676 inet_proto_csum_replace4 vmlinux EXPORT_SYMBOL
-0xeb785d19 inet_proto_csum_replace16 vmlinux EXPORT_SYMBOL
-0x056e22c9 inet_proto_csum_replace_by_diff vmlinux EXPORT_SYMBOL
-0x50488c37 linkwatch_fire_event vmlinux EXPORT_SYMBOL
-0x6d09843f copy_bpf_fprog_from_user vmlinux EXPORT_SYMBOL_GPL
-0xdd7742d2 sk_filter_trim_cap vmlinux EXPORT_SYMBOL
-0x12d832df bpf_prog_create vmlinux EXPORT_SYMBOL_GPL
-0x81162987 bpf_prog_create_from_user vmlinux EXPORT_SYMBOL_GPL
-0xb494b3e7 bpf_prog_destroy vmlinux EXPORT_SYMBOL_GPL
-0x550cc0be sk_attach_filter vmlinux EXPORT_SYMBOL_GPL
-0xa43fd8f2 bpf_redirect_info vmlinux EXPORT_SYMBOL_GPL
-0xb9681621 xdp_do_flush vmlinux EXPORT_SYMBOL_GPL
-0x146cc88f bpf_master_redirect_enabled_key vmlinux EXPORT_SYMBOL_GPL
-0x7c0fcfcb xdp_master_redirect vmlinux EXPORT_SYMBOL_GPL
-0x7dcef625 xdp_do_redirect vmlinux EXPORT_SYMBOL_GPL
-0x2cb04faf xdp_do_redirect_frame vmlinux EXPORT_SYMBOL_GPL
-0x9355694c bpf_getorigdst_opt vmlinux EXPORT_SYMBOL
-0xef3bb8db ipv6_bpf_stub vmlinux EXPORT_SYMBOL_GPL
-0xff66bbc3 xfrm_bpf_md_dst vmlinux EXPORT_SYMBOL_GPL
-0xa041a619 nf_conn_btf_access_lock vmlinux EXPORT_SYMBOL_GPL
-0x1ef606a3 nfct_btf_struct_access vmlinux EXPORT_SYMBOL_GPL
-0xdd97250d bpf_warn_invalid_xdp_action vmlinux EXPORT_SYMBOL_GPL
-0x6ccf8013 sk_detach_filter vmlinux EXPORT_SYMBOL_GPL
-0x3dac779a bpf_sk_lookup_enabled vmlinux EXPORT_SYMBOL
-0x03b814ca bpf_dispatcher_xdp_func vmlinux EXPORT_SYMBOL
-0x6f48fa9d sock_diag_check_cookie vmlinux EXPORT_SYMBOL_GPL
-0xf178e20f sock_diag_save_cookie vmlinux EXPORT_SYMBOL_GPL
-0x9d4ebf95 sock_diag_put_meminfo vmlinux EXPORT_SYMBOL_GPL
-0x9bb8455b sock_diag_put_filterinfo vmlinux EXPORT_SYMBOL
-0x9d3f0f61 sock_diag_register_inet_compat vmlinux EXPORT_SYMBOL_GPL
-0x4618c502 sock_diag_unregister_inet_compat vmlinux EXPORT_SYMBOL_GPL
-0xb226fac7 sock_diag_register vmlinux EXPORT_SYMBOL_GPL
-0x2db26cd0 sock_diag_unregister vmlinux EXPORT_SYMBOL_GPL
-0x4b45f6e8 sock_diag_destroy vmlinux EXPORT_SYMBOL_GPL
-0x33577343 generic_hwtstamp_get_lower vmlinux EXPORT_SYMBOL
-0xdfb7ffad generic_hwtstamp_set_lower vmlinux EXPORT_SYMBOL
-0xa459fc65 dev_load vmlinux EXPORT_SYMBOL
-0x155a4e51 tso_build_hdr vmlinux EXPORT_SYMBOL
-0x8261126f tso_build_data vmlinux EXPORT_SYMBOL
-0x59d65c07 tso_start vmlinux EXPORT_SYMBOL
-0x7a55e47b reuseport_has_conns_set vmlinux EXPORT_SYMBOL
-0x1b91d8e3 reuseport_alloc vmlinux EXPORT_SYMBOL
-0x81a08ac4 reuseport_add_sock vmlinux EXPORT_SYMBOL
-0xdbbdef71 reuseport_detach_sock vmlinux EXPORT_SYMBOL
-0x46b2ffa9 reuseport_stop_listen_sock vmlinux EXPORT_SYMBOL
-0x0fb038b1 reuseport_select_sock vmlinux EXPORT_SYMBOL
-0x2eeeb971 reuseport_migrate_sock vmlinux EXPORT_SYMBOL
-0xe4a48ad6 reuseport_attach_prog vmlinux EXPORT_SYMBOL
-0x7594e14e reuseport_detach_prog vmlinux EXPORT_SYMBOL
-0x023ad003 call_fib_notifier vmlinux EXPORT_SYMBOL
-0xd42feac1 call_fib_notifiers vmlinux EXPORT_SYMBOL
-0x7ea8823e register_fib_notifier vmlinux EXPORT_SYMBOL
-0xe1bf12f5 unregister_fib_notifier vmlinux EXPORT_SYMBOL
-0x66b3489f fib_notifier_ops_register vmlinux EXPORT_SYMBOL
-0xc422aae4 fib_notifier_ops_unregister vmlinux EXPORT_SYMBOL
-0x0e5cc9d7 xdp_unreg_mem_model vmlinux EXPORT_SYMBOL_GPL
-0x9d1407cb xdp_rxq_info_unreg_mem_model vmlinux EXPORT_SYMBOL_GPL
-0x7a8dcd98 xdp_rxq_info_unreg vmlinux EXPORT_SYMBOL_GPL
-0xfa2e186b __xdp_rxq_info_reg vmlinux EXPORT_SYMBOL_GPL
-0xc004db13 xdp_rxq_info_unused vmlinux EXPORT_SYMBOL_GPL
-0x608a2229 xdp_rxq_info_is_reg vmlinux EXPORT_SYMBOL_GPL
-0x16422a6e xdp_reg_mem_model vmlinux EXPORT_SYMBOL_GPL
-0xf6cb8989 xdp_rxq_info_reg_mem_model vmlinux EXPORT_SYMBOL_GPL
-0x260f0cf7 xdp_return_frame vmlinux EXPORT_SYMBOL_GPL
-0xd334c544 xdp_return_frame_rx_napi vmlinux EXPORT_SYMBOL_GPL
-0x5cede0a7 xdp_flush_frame_bulk vmlinux EXPORT_SYMBOL_GPL
-0x24b12d5b xdp_return_frame_bulk vmlinux EXPORT_SYMBOL_GPL
-0xc8745ffe xdp_return_buff vmlinux EXPORT_SYMBOL_GPL
-0x9963120f xdp_attachment_setup vmlinux EXPORT_SYMBOL_GPL
-0x94e3c32f xdp_convert_zc_to_xdp_frame vmlinux EXPORT_SYMBOL_GPL
-0xbb7195a5 xdp_warn vmlinux EXPORT_SYMBOL_GPL
-0xd91dbd1f xdp_alloc_skb_bulk vmlinux EXPORT_SYMBOL_GPL
-0x6c67eda9 __xdp_build_skb_from_frame vmlinux EXPORT_SYMBOL_GPL
-0xf91116e3 xdp_build_skb_from_frame vmlinux EXPORT_SYMBOL_GPL
-0xf0491622 xdp_set_features_flag vmlinux EXPORT_SYMBOL_GPL
-0xd1fb1752 xdp_features_set_redirect_target vmlinux EXPORT_SYMBOL_GPL
-0x7fff7cdb xdp_features_clear_redirect_target vmlinux EXPORT_SYMBOL_GPL
-0x78237fbb flow_rule_alloc vmlinux EXPORT_SYMBOL
-0x0363756f flow_rule_match_meta vmlinux EXPORT_SYMBOL
-0x4d463499 flow_rule_match_basic vmlinux EXPORT_SYMBOL
-0x2e5e8fb4 flow_rule_match_control vmlinux EXPORT_SYMBOL
-0xa88f397f flow_rule_match_eth_addrs vmlinux EXPORT_SYMBOL
-0x6e89bf30 flow_rule_match_vlan vmlinux EXPORT_SYMBOL
-0x3f81b868 flow_rule_match_cvlan vmlinux EXPORT_SYMBOL
-0xd2fb7212 flow_rule_match_arp vmlinux EXPORT_SYMBOL
-0xba8ba71f flow_rule_match_ipv4_addrs vmlinux EXPORT_SYMBOL
-0xd8f82fc5 flow_rule_match_ipv6_addrs vmlinux EXPORT_SYMBOL
-0x39cc879d flow_rule_match_ip vmlinux EXPORT_SYMBOL
-0xbc703bfe flow_rule_match_ports vmlinux EXPORT_SYMBOL
-0xb0a174bd flow_rule_match_ports_range vmlinux EXPORT_SYMBOL
-0x18267a07 flow_rule_match_tcp vmlinux EXPORT_SYMBOL
-0xe5840241 flow_rule_match_ipsec vmlinux EXPORT_SYMBOL
-0x11fc56e1 flow_rule_match_icmp vmlinux EXPORT_SYMBOL
-0x026f36a6 flow_rule_match_mpls vmlinux EXPORT_SYMBOL
-0x5ca84447 flow_rule_match_enc_control vmlinux EXPORT_SYMBOL
-0x32735973 flow_rule_match_enc_ipv4_addrs vmlinux EXPORT_SYMBOL
-0xcd509e0c flow_rule_match_enc_ipv6_addrs vmlinux EXPORT_SYMBOL
-0x13bacabf flow_rule_match_enc_ip vmlinux EXPORT_SYMBOL
-0x13f3528c flow_rule_match_enc_ports vmlinux EXPORT_SYMBOL
-0x9e1ca10e flow_rule_match_enc_keyid vmlinux EXPORT_SYMBOL
-0x15be2b47 flow_rule_match_enc_opts vmlinux EXPORT_SYMBOL
-0x5bd4ff88 flow_action_cookie_create vmlinux EXPORT_SYMBOL
-0x63a58370 flow_action_cookie_destroy vmlinux EXPORT_SYMBOL
-0x93c51a05 flow_rule_match_ct vmlinux EXPORT_SYMBOL
-0x12b1c7a8 flow_rule_match_pppoe vmlinux EXPORT_SYMBOL
-0xd7a428c9 flow_rule_match_l2tpv3 vmlinux EXPORT_SYMBOL
-0x31979a0c flow_block_cb_alloc vmlinux EXPORT_SYMBOL
-0x1320bb6c flow_block_cb_free vmlinux EXPORT_SYMBOL
-0x0f59f72f flow_block_cb_lookup vmlinux EXPORT_SYMBOL
-0x2a1e6159 flow_block_cb_priv vmlinux EXPORT_SYMBOL
-0xfa7ba88e flow_block_cb_incref vmlinux EXPORT_SYMBOL
-0x9380cf04 flow_block_cb_decref vmlinux EXPORT_SYMBOL
-0xdfd8110c flow_block_cb_is_busy vmlinux EXPORT_SYMBOL
-0x210e9c7a flow_block_cb_setup_simple vmlinux EXPORT_SYMBOL
-0x66f46003 flow_indr_dev_register vmlinux EXPORT_SYMBOL
-0x813c653a flow_indr_dev_unregister vmlinux EXPORT_SYMBOL
-0x43f3ca86 flow_indr_block_cb_alloc vmlinux EXPORT_SYMBOL
-0x5239657a flow_indr_dev_setup_offload vmlinux EXPORT_SYMBOL
-0x7a53a06d flow_indr_dev_exists vmlinux EXPORT_SYMBOL
-0x9843191c dev_add_offload vmlinux EXPORT_SYMBOL
-0xbbdfe8c5 dev_remove_offload vmlinux EXPORT_SYMBOL
-0xec1624f4 napi_gro_flush vmlinux EXPORT_SYMBOL
-0x1e6a3d72 gro_find_receive_by_type vmlinux EXPORT_SYMBOL
-0xec54540b gro_find_complete_by_type vmlinux EXPORT_SYMBOL
-0xd51e2e8e napi_gro_receive vmlinux EXPORT_SYMBOL
-0x2a9bb095 napi_get_frags vmlinux EXPORT_SYMBOL
-0x726a057a napi_gro_frags vmlinux EXPORT_SYMBOL
-0x5931bde6 __skb_gro_checksum_complete vmlinux EXPORT_SYMBOL
-0xf85fee5e skb_eth_gso_segment vmlinux EXPORT_SYMBOL
-0x3c0d6e6e skb_mac_gso_segment vmlinux EXPORT_SYMBOL
-0xe0fb6540 __skb_gso_segment vmlinux EXPORT_SYMBOL
-0xfcec4df1 skb_gso_validate_network_len vmlinux EXPORT_SYMBOL_GPL
-0xa9c1ab3f skb_gso_validate_mac_len vmlinux EXPORT_SYMBOL_GPL
-0x788ad1dc net_ns_type_operations vmlinux EXPORT_SYMBOL_GPL
-0xcf00b016 netdev_class_create_file_ns vmlinux EXPORT_SYMBOL
-0xf86b0b2f netdev_class_remove_file_ns vmlinux EXPORT_SYMBOL
-0x1eb60473 page_pool_create vmlinux EXPORT_SYMBOL
-0x5227c022 page_pool_alloc_pages vmlinux EXPORT_SYMBOL
-0xf3176845 page_pool_put_defragged_page vmlinux EXPORT_SYMBOL
-0xa74559dd page_pool_put_page_bulk vmlinux EXPORT_SYMBOL
-0x3e4c64d2 page_pool_alloc_frag vmlinux EXPORT_SYMBOL
-0x2eafdc72 page_pool_unlink_napi vmlinux EXPORT_SYMBOL
-0xd7ad2e6c page_pool_destroy vmlinux EXPORT_SYMBOL
-0xdbce71ff page_pool_update_nid vmlinux EXPORT_SYMBOL
-0x2c1465e2 netpoll_poll_dev vmlinux EXPORT_SYMBOL
-0x07ebeadb netpoll_poll_disable vmlinux EXPORT_SYMBOL
-0x26315c23 netpoll_poll_enable vmlinux EXPORT_SYMBOL
-0xc37225a1 netpoll_send_skb vmlinux EXPORT_SYMBOL
-0xdcb44cf7 netpoll_send_udp vmlinux EXPORT_SYMBOL
-0xf877592b netpoll_print_options vmlinux EXPORT_SYMBOL
-0xe846fa52 netpoll_parse_options vmlinux EXPORT_SYMBOL
-0xa15174d6 __netpoll_setup vmlinux EXPORT_SYMBOL_GPL
-0x49bc4f95 netpoll_setup vmlinux EXPORT_SYMBOL
-0x1f703d33 __netpoll_cleanup vmlinux EXPORT_SYMBOL_GPL
-0x9803c4e8 __netpoll_free vmlinux EXPORT_SYMBOL_GPL
-0x0925b7d6 netpoll_cleanup vmlinux EXPORT_SYMBOL
-0x4f56329f fib_rule_matchall vmlinux EXPORT_SYMBOL_GPL
-0x1e23386b fib_default_rule_add vmlinux EXPORT_SYMBOL
-0x68ee1931 fib_rules_register vmlinux EXPORT_SYMBOL_GPL
-0xa444e883 fib_rules_unregister vmlinux EXPORT_SYMBOL_GPL
-0xec9b3c73 fib_rules_lookup vmlinux EXPORT_SYMBOL_GPL
-0x2ba43609 fib_rules_dump vmlinux EXPORT_SYMBOL_GPL
-0xdb6779bb fib_rules_seq_read vmlinux EXPORT_SYMBOL_GPL
-0xaf78dc0e fib_nl_newrule vmlinux EXPORT_SYMBOL_GPL
-0x5e090c48 fib_nl_delrule vmlinux EXPORT_SYMBOL_GPL
-0x80cb35d6 __tracepoint_br_fdb_add vmlinux EXPORT_SYMBOL_GPL
-0x83ff7777 __traceiter_br_fdb_add vmlinux EXPORT_SYMBOL_GPL
-0xc7cffcde __SCK__tp_func_br_fdb_add vmlinux EXPORT_SYMBOL_GPL
-0x2d44be3b __SCT__tp_func_br_fdb_add vmlinux EXPORT_SYMBOL_GPL
-0x2097a70c __tracepoint_br_fdb_external_learn_add vmlinux EXPORT_SYMBOL_GPL
-0xf8f0ad33 __traceiter_br_fdb_external_learn_add vmlinux EXPORT_SYMBOL_GPL
-0x07c0b831 __SCK__tp_func_br_fdb_external_learn_add vmlinux EXPORT_SYMBOL_GPL
-0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add vmlinux EXPORT_SYMBOL_GPL
-0x2e852fa0 __tracepoint_fdb_delete vmlinux EXPORT_SYMBOL_GPL
-0xa7839240 __traceiter_fdb_delete vmlinux EXPORT_SYMBOL_GPL
-0x6981e6a8 __SCK__tp_func_fdb_delete vmlinux EXPORT_SYMBOL_GPL
-0x733ec33e __SCT__tp_func_fdb_delete vmlinux EXPORT_SYMBOL_GPL
-0x80a0f130 __tracepoint_br_fdb_update vmlinux EXPORT_SYMBOL_GPL
-0xbc89093e __traceiter_br_fdb_update vmlinux EXPORT_SYMBOL_GPL
-0x93e608d1 __SCK__tp_func_br_fdb_update vmlinux EXPORT_SYMBOL_GPL
-0xb11cc43b __SCT__tp_func_br_fdb_update vmlinux EXPORT_SYMBOL_GPL
-0x0c535017 __tracepoint_br_mdb_full vmlinux EXPORT_SYMBOL_GPL
-0xdad122f8 __traceiter_br_mdb_full vmlinux EXPORT_SYMBOL_GPL
-0x02cfdcec __SCK__tp_func_br_mdb_full vmlinux EXPORT_SYMBOL_GPL
-0x7916343c __SCT__tp_func_br_mdb_full vmlinux EXPORT_SYMBOL_GPL
-0x291ba847 __tracepoint_neigh_update vmlinux EXPORT_SYMBOL_GPL
-0x90890cc1 __traceiter_neigh_update vmlinux EXPORT_SYMBOL_GPL
-0x037a1f5f __SCK__tp_func_neigh_update vmlinux EXPORT_SYMBOL_GPL
-0x5c0c165e __SCT__tp_func_neigh_update vmlinux EXPORT_SYMBOL_GPL
-0x64354118 __tracepoint_neigh_update_done vmlinux EXPORT_SYMBOL_GPL
-0x5178308e __traceiter_neigh_update_done vmlinux EXPORT_SYMBOL_GPL
-0x927e8647 __SCK__tp_func_neigh_update_done vmlinux EXPORT_SYMBOL_GPL
-0xe9fadf16 __SCT__tp_func_neigh_update_done vmlinux EXPORT_SYMBOL_GPL
-0x86172413 __tracepoint_neigh_timer_handler vmlinux EXPORT_SYMBOL_GPL
-0xa48b47ae __traceiter_neigh_timer_handler vmlinux EXPORT_SYMBOL_GPL
-0xbe34c4d0 __SCK__tp_func_neigh_timer_handler vmlinux EXPORT_SYMBOL_GPL
-0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler vmlinux EXPORT_SYMBOL_GPL
-0xb9822101 __tracepoint_neigh_event_send_done vmlinux EXPORT_SYMBOL_GPL
-0x13fee137 __traceiter_neigh_event_send_done vmlinux EXPORT_SYMBOL_GPL
-0xf95f7fd7 __SCK__tp_func_neigh_event_send_done vmlinux EXPORT_SYMBOL_GPL
-0xe04c78db __SCT__tp_func_neigh_event_send_done vmlinux EXPORT_SYMBOL_GPL
-0xc478b719 __tracepoint_neigh_event_send_dead vmlinux EXPORT_SYMBOL_GPL
-0x460fedbb __traceiter_neigh_event_send_dead vmlinux EXPORT_SYMBOL_GPL
-0x84a5e9cf __SCK__tp_func_neigh_event_send_dead vmlinux EXPORT_SYMBOL_GPL
-0x765f8830 __SCT__tp_func_neigh_event_send_dead vmlinux EXPORT_SYMBOL_GPL
-0x83b06d58 __tracepoint_neigh_cleanup_and_release vmlinux EXPORT_SYMBOL_GPL
-0x7a5b1d6f __traceiter_neigh_cleanup_and_release vmlinux EXPORT_SYMBOL_GPL
-0xa4e77265 __SCK__tp_func_neigh_cleanup_and_release vmlinux EXPORT_SYMBOL_GPL
-0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release vmlinux EXPORT_SYMBOL_GPL
-0xadef20f3 __tracepoint_kfree_skb vmlinux EXPORT_SYMBOL_GPL
-0x3f82da2a __traceiter_kfree_skb vmlinux EXPORT_SYMBOL_GPL
-0x1be9571d __SCK__tp_func_kfree_skb vmlinux EXPORT_SYMBOL_GPL
-0xc604ab28 __SCT__tp_func_kfree_skb vmlinux EXPORT_SYMBOL_GPL
-0xcd51a445 __tracepoint_napi_poll vmlinux EXPORT_SYMBOL_GPL
-0x3112ad19 __traceiter_napi_poll vmlinux EXPORT_SYMBOL_GPL
-0x7b57d3ab __SCK__tp_func_napi_poll vmlinux EXPORT_SYMBOL_GPL
-0xc4d022cb __SCT__tp_func_napi_poll vmlinux EXPORT_SYMBOL_GPL
-0xf92eda25 __tracepoint_tcp_send_reset vmlinux EXPORT_SYMBOL_GPL
-0xa191a9fc __traceiter_tcp_send_reset vmlinux EXPORT_SYMBOL_GPL
-0x2e304e32 __SCK__tp_func_tcp_send_reset vmlinux EXPORT_SYMBOL_GPL
-0x79daf4de __SCT__tp_func_tcp_send_reset vmlinux EXPORT_SYMBOL_GPL
-0x55f0bdaa __tracepoint_tcp_bad_csum vmlinux EXPORT_SYMBOL_GPL
-0x74dd4b30 __traceiter_tcp_bad_csum vmlinux EXPORT_SYMBOL_GPL
-0x7f910ab2 __SCK__tp_func_tcp_bad_csum vmlinux EXPORT_SYMBOL_GPL
-0xc2fb483f __SCT__tp_func_tcp_bad_csum vmlinux EXPORT_SYMBOL_GPL
-0x28b37215 __tracepoint_udp_fail_queue_rcv_skb vmlinux EXPORT_SYMBOL_GPL
-0x44dbfb3d __traceiter_udp_fail_queue_rcv_skb vmlinux EXPORT_SYMBOL_GPL
-0x4743d8aa __SCK__tp_func_udp_fail_queue_rcv_skb vmlinux EXPORT_SYMBOL_GPL
-0x58a2fcaa __SCT__tp_func_udp_fail_queue_rcv_skb vmlinux EXPORT_SYMBOL_GPL
-0x5863986d __tracepoint_sk_data_ready vmlinux EXPORT_SYMBOL_GPL
-0xec111f49 __traceiter_sk_data_ready vmlinux EXPORT_SYMBOL_GPL
-0x4b25618c __SCK__tp_func_sk_data_ready vmlinux EXPORT_SYMBOL_GPL
-0xa85bbe00 __SCT__tp_func_sk_data_ready vmlinux EXPORT_SYMBOL_GPL
-0xf3b4c9c1 net_selftest vmlinux EXPORT_SYMBOL_GPL
-0x8e6b1a9e net_selftest_get_count vmlinux EXPORT_SYMBOL_GPL
-0xc090c376 net_selftest_get_strings vmlinux EXPORT_SYMBOL_GPL
-0xb8415b85 skb_clone_tx_timestamp vmlinux EXPORT_SYMBOL_GPL
-0x65dc13c6 skb_defer_rx_timestamp vmlinux EXPORT_SYMBOL_GPL
-0x302851fb ptp_classify_raw vmlinux EXPORT_SYMBOL_GPL
-0x627114f0 ptp_parse_header vmlinux EXPORT_SYMBOL_GPL
-0x22f02688 ptp_msg_is_sync vmlinux EXPORT_SYMBOL_GPL
-0x5b99f1fb task_cls_state vmlinux EXPORT_SYMBOL_GPL
-0x3daa2540 nf_hooks_lwtunnel_enabled vmlinux EXPORT_SYMBOL_GPL
-0x86bcc6c0 lwtunnel_state_alloc vmlinux EXPORT_SYMBOL_GPL
-0x1aca638d lwtunnel_encap_add_ops vmlinux EXPORT_SYMBOL_GPL
-0xdcba28c4 lwtunnel_encap_del_ops vmlinux EXPORT_SYMBOL_GPL
-0x31768a81 lwtunnel_build_state vmlinux EXPORT_SYMBOL_GPL
-0xe9206587 lwtunnel_valid_encap_type vmlinux EXPORT_SYMBOL_GPL
-0x3d1b546a lwtunnel_valid_encap_type_attr vmlinux EXPORT_SYMBOL_GPL
-0x6bbc0e58 lwtstate_free vmlinux EXPORT_SYMBOL_GPL
-0x21d8b4af lwtunnel_fill_encap vmlinux EXPORT_SYMBOL_GPL
-0xfffea30c lwtunnel_get_encap_size vmlinux EXPORT_SYMBOL_GPL
-0xb120ca97 lwtunnel_cmp_encap vmlinux EXPORT_SYMBOL_GPL
-0xf6260800 lwtunnel_output vmlinux EXPORT_SYMBOL_GPL
-0xb6b52f27 lwtunnel_xmit vmlinux EXPORT_SYMBOL_GPL
-0xfd3d8868 lwtunnel_input vmlinux EXPORT_SYMBOL_GPL
-0xd523fa69 dst_cache_get vmlinux EXPORT_SYMBOL_GPL
-0x0cb52bb4 dst_cache_get_ip4 vmlinux EXPORT_SYMBOL_GPL
-0x05bf0062 dst_cache_set_ip4 vmlinux EXPORT_SYMBOL_GPL
-0x206c8917 dst_cache_set_ip6 vmlinux EXPORT_SYMBOL_GPL
-0x58dacb48 dst_cache_get_ip6 vmlinux EXPORT_SYMBOL_GPL
-0xae39f80e dst_cache_init vmlinux EXPORT_SYMBOL_GPL
-0xada38766 dst_cache_destroy vmlinux EXPORT_SYMBOL_GPL
-0x71b6cf94 dst_cache_reset_now vmlinux EXPORT_SYMBOL_GPL
-0xd671c458 gro_cells_receive vmlinux EXPORT_SYMBOL
-0xb9729019 gro_cells_init vmlinux EXPORT_SYMBOL
-0x9f54ead7 gro_cells_destroy vmlinux EXPORT_SYMBOL
-0x805e4f72 sk_msg_alloc vmlinux EXPORT_SYMBOL_GPL
-0x57a5677b sk_msg_clone vmlinux EXPORT_SYMBOL_GPL
-0x4ecf1865 sk_msg_return_zero vmlinux EXPORT_SYMBOL_GPL
-0xa1ce9827 sk_msg_return vmlinux EXPORT_SYMBOL_GPL
-0x25fa42f6 sk_msg_free_nocharge vmlinux EXPORT_SYMBOL_GPL
-0x321ea05a sk_msg_free vmlinux EXPORT_SYMBOL_GPL
-0x32b8bb10 sk_msg_free_partial vmlinux EXPORT_SYMBOL_GPL
-0x08368840 sk_msg_trim vmlinux EXPORT_SYMBOL_GPL
-0xb9e25f96 sk_msg_zerocopy_from_iter vmlinux EXPORT_SYMBOL_GPL
-0x9e98649b sk_msg_memcopy_from_iter vmlinux EXPORT_SYMBOL_GPL
-0xbb49b25f sk_msg_recvmsg vmlinux EXPORT_SYMBOL_GPL
-0xb0e87c7c sk_msg_is_readable vmlinux EXPORT_SYMBOL_GPL
-0x5af229e9 sk_psock_init vmlinux EXPORT_SYMBOL_GPL
-0x274b13b9 sk_psock_drop vmlinux EXPORT_SYMBOL_GPL
-0xa83393be sk_psock_msg_verdict vmlinux EXPORT_SYMBOL_GPL
-0x3b328f72 sk_psock_tls_strp_read vmlinux EXPORT_SYMBOL_GPL
-0x8d3a95dc sock_map_unhash vmlinux EXPORT_SYMBOL_GPL
-0x2280a0df sock_map_destroy vmlinux EXPORT_SYMBOL_GPL
-0x432f2161 sock_map_close vmlinux EXPORT_SYMBOL_GPL
-0x8e4eb451 bpf_sk_storage_diag_free vmlinux EXPORT_SYMBOL_GPL
-0x5d8476d3 bpf_sk_storage_diag_alloc vmlinux EXPORT_SYMBOL_GPL
-0xec3e612e bpf_sk_storage_diag_put vmlinux EXPORT_SYMBOL_GPL
-0x853f75ef eth_header vmlinux EXPORT_SYMBOL
-0x61dcd053 eth_get_headlen vmlinux EXPORT_SYMBOL
-0xd2174cd7 eth_type_trans vmlinux EXPORT_SYMBOL
-0x56a5027a eth_header_parse vmlinux EXPORT_SYMBOL
-0x39b8e471 eth_header_cache vmlinux EXPORT_SYMBOL
-0x0c98b9df eth_header_cache_update vmlinux EXPORT_SYMBOL
-0xac8d1c4e eth_header_parse_protocol vmlinux EXPORT_SYMBOL
-0x359ed58e eth_prepare_mac_addr_change vmlinux EXPORT_SYMBOL
-0xeb5fd9d4 eth_commit_mac_addr_change vmlinux EXPORT_SYMBOL
-0x3f77df36 eth_mac_addr vmlinux EXPORT_SYMBOL
-0xdd0904d1 eth_validate_addr vmlinux EXPORT_SYMBOL
-0xc31d113b ether_setup vmlinux EXPORT_SYMBOL
-0x5f5a98a6 alloc_etherdev_mqs vmlinux EXPORT_SYMBOL
-0x81533963 sysfs_format_mac vmlinux EXPORT_SYMBOL
-0xd61d31f0 eth_gro_receive vmlinux EXPORT_SYMBOL
-0xad1292ee eth_gro_complete vmlinux EXPORT_SYMBOL
-0x1e6cf729 eth_platform_get_mac_address vmlinux EXPORT_SYMBOL
-0xd92d72b3 platform_get_ethdev_address vmlinux EXPORT_SYMBOL
-0x7b74f557 fwnode_get_mac_address vmlinux EXPORT_SYMBOL
-0x4d50f234 device_get_mac_address vmlinux EXPORT_SYMBOL
-0x1a317f9b device_get_ethdev_address vmlinux EXPORT_SYMBOL
-0x3e5afe5c alloc_fcdev vmlinux EXPORT_SYMBOL
-0xd02c857b default_qdisc_ops vmlinux EXPORT_SYMBOL
-0xc09d5951 dev_trans_start vmlinux EXPORT_SYMBOL
-0xd00efdd0 netif_tx_lock vmlinux EXPORT_SYMBOL
-0x7a065d1f netif_tx_unlock vmlinux EXPORT_SYMBOL
-0x7ed5adee __netdev_watchdog_up vmlinux EXPORT_SYMBOL_GPL
-0xc0363876 netif_carrier_on vmlinux EXPORT_SYMBOL
-0x8bc16d11 netif_carrier_off vmlinux EXPORT_SYMBOL
-0xe9f030b4 netif_carrier_event vmlinux EXPORT_SYMBOL_GPL
-0x71c26aa5 noop_qdisc vmlinux EXPORT_SYMBOL
-0x50336cf9 pfifo_fast_ops vmlinux EXPORT_SYMBOL
-0xc9818858 qdisc_create_dflt vmlinux EXPORT_SYMBOL
-0x0756293a qdisc_reset vmlinux EXPORT_SYMBOL
-0x4d8c7dfa qdisc_put vmlinux EXPORT_SYMBOL
-0x445a2010 qdisc_put_unlocked vmlinux EXPORT_SYMBOL
-0xd5f4c1f0 dev_graft_qdisc vmlinux EXPORT_SYMBOL
-0x1f4cbaf4 dev_activate vmlinux EXPORT_SYMBOL
-0x75a1b82e dev_deactivate vmlinux EXPORT_SYMBOL
-0xa13b72b4 mq_change_real_num_tx vmlinux EXPORT_SYMBOL
-0xb6e36ce2 psched_ratecfg_precompute vmlinux EXPORT_SYMBOL
-0xa05b6be2 psched_ppscfg_precompute vmlinux EXPORT_SYMBOL
-0x2e0f2815 mini_qdisc_pair_swap vmlinux EXPORT_SYMBOL
-0xae3fd76f mini_qdisc_pair_block_init vmlinux EXPORT_SYMBOL
-0x432561eb mini_qdisc_pair_init vmlinux EXPORT_SYMBOL
-0xd468ccc3 sch_frag_xmit_hook vmlinux EXPORT_SYMBOL_GPL
-0xb0d28482 register_qdisc vmlinux EXPORT_SYMBOL
-0x550772f4 unregister_qdisc vmlinux EXPORT_SYMBOL
-0x660e9b93 qdisc_hash_add vmlinux EXPORT_SYMBOL
-0x71fd0998 qdisc_hash_del vmlinux EXPORT_SYMBOL
-0x2e8e9911 qdisc_get_rtab vmlinux EXPORT_SYMBOL
-0xa61ced89 qdisc_put_rtab vmlinux EXPORT_SYMBOL
-0xb94339c4 qdisc_put_stab vmlinux EXPORT_SYMBOL
-0x4f4f66b0 __qdisc_calculate_pkt_len vmlinux EXPORT_SYMBOL
-0xc9acba03 qdisc_warn_nonwc vmlinux EXPORT_SYMBOL
-0x1a0917ac qdisc_watchdog_init_clockid vmlinux EXPORT_SYMBOL
-0x4e5d7749 qdisc_watchdog_init vmlinux EXPORT_SYMBOL
-0x68b08c53 qdisc_watchdog_schedule_range_ns vmlinux EXPORT_SYMBOL
-0x52254ae6 qdisc_watchdog_cancel vmlinux EXPORT_SYMBOL
-0x7a928f7f qdisc_class_hash_grow vmlinux EXPORT_SYMBOL
-0x117093be qdisc_class_hash_init vmlinux EXPORT_SYMBOL
-0xf53d4c26 qdisc_class_hash_destroy vmlinux EXPORT_SYMBOL
-0x7b9d9306 qdisc_class_hash_insert vmlinux EXPORT_SYMBOL
-0x4c0de954 qdisc_class_hash_remove vmlinux EXPORT_SYMBOL
-0x0e5c692e qdisc_tree_reduce_backlog vmlinux EXPORT_SYMBOL
-0x22fcddd3 qdisc_offload_dump_helper vmlinux EXPORT_SYMBOL
-0x456af366 qdisc_offload_graft_helper vmlinux EXPORT_SYMBOL
-0x8a3c237a qdisc_offload_query_caps vmlinux EXPORT_SYMBOL
-0x044154c6 tc_skb_ext_tc vmlinux EXPORT_SYMBOL
-0x86dd708d tc_skb_ext_tc_enable vmlinux EXPORT_SYMBOL
-0x7dc5ffa7 tc_skb_ext_tc_disable vmlinux EXPORT_SYMBOL
-0x0ee2d788 register_tcf_proto_ops vmlinux EXPORT_SYMBOL
-0xf2991d98 unregister_tcf_proto_ops vmlinux EXPORT_SYMBOL
-0x2183808a tcf_queue_work vmlinux EXPORT_SYMBOL
-0xdd04e856 tcf_chain_get_by_act vmlinux EXPORT_SYMBOL
-0x6ef69f3b tcf_chain_put_by_act vmlinux EXPORT_SYMBOL
-0xf9932ce0 tcf_get_next_chain vmlinux EXPORT_SYMBOL
-0x4e19960b tcf_get_next_proto vmlinux EXPORT_SYMBOL
-0x0a122d8e tcf_block_netif_keep_dst vmlinux EXPORT_SYMBOL
-0x5e7e594d tcf_block_get_ext vmlinux EXPORT_SYMBOL
-0x17c4e522 tcf_block_get vmlinux EXPORT_SYMBOL
-0xd807ea12 tcf_block_put_ext vmlinux EXPORT_SYMBOL
-0x6ba821ef tcf_block_put vmlinux EXPORT_SYMBOL
-0x1fe69002 tcf_classify vmlinux EXPORT_SYMBOL
-0xe73422e9 tcf_exts_init_ex vmlinux EXPORT_SYMBOL
-0xa7c391c8 tcf_exts_destroy vmlinux EXPORT_SYMBOL
-0x50711c98 tcf_exts_validate_ex vmlinux EXPORT_SYMBOL
-0x32201ad1 tcf_exts_validate vmlinux EXPORT_SYMBOL
-0x8f342e4c tcf_exts_change vmlinux EXPORT_SYMBOL
-0xd12f0e75 tcf_exts_dump vmlinux EXPORT_SYMBOL
-0x6ee8db69 tcf_exts_terse_dump vmlinux EXPORT_SYMBOL
-0x4e4838ea tcf_exts_dump_stats vmlinux EXPORT_SYMBOL
-0x3351837a tc_setup_cb_call vmlinux EXPORT_SYMBOL
-0x794995e8 tc_setup_cb_add vmlinux EXPORT_SYMBOL
-0x2dbc8889 tc_setup_cb_replace vmlinux EXPORT_SYMBOL
-0xae3e8e04 tc_setup_cb_destroy vmlinux EXPORT_SYMBOL
-0x5b71aa03 tc_setup_cb_reoffload vmlinux EXPORT_SYMBOL
-0x626c8279 tc_cleanup_offload_action vmlinux EXPORT_SYMBOL
-0x9bef1fd9 tc_setup_offload_action vmlinux EXPORT_SYMBOL
-0x287ea9da tcf_exts_num_actions vmlinux EXPORT_SYMBOL
-0x474d28ca tcf_qevent_init vmlinux EXPORT_SYMBOL
-0x4e399bc6 tcf_qevent_destroy vmlinux EXPORT_SYMBOL
-0x1d8741ad tcf_qevent_validate_change vmlinux EXPORT_SYMBOL
-0x5009eff3 tcf_qevent_handle vmlinux EXPORT_SYMBOL
-0xece7b508 tcf_qevent_dump vmlinux EXPORT_SYMBOL
-0x22d60537 tcf_frag_xmit_count vmlinux EXPORT_SYMBOL_GPL
-0xff994355 tcf_dev_queue_xmit vmlinux EXPORT_SYMBOL_GPL
-0x9521195b tcf_action_check_ctrlact vmlinux EXPORT_SYMBOL
-0xf5e3aee7 tcf_action_set_ctrlact vmlinux EXPORT_SYMBOL
-0x66a4f8d8 tcf_action_update_hw_stats vmlinux EXPORT_SYMBOL
-0xae7f154c tcf_idr_release vmlinux EXPORT_SYMBOL
-0x0bdb8f16 tcf_generic_walker vmlinux EXPORT_SYMBOL
-0x39975ee8 tcf_idr_search vmlinux EXPORT_SYMBOL
-0xfa3b3381 tcf_idr_create vmlinux EXPORT_SYMBOL
-0xae3f0584 tcf_idr_create_from_flags vmlinux EXPORT_SYMBOL
-0x2e25d35a tcf_idr_cleanup vmlinux EXPORT_SYMBOL
-0xf3182217 tcf_idr_check_alloc vmlinux EXPORT_SYMBOL
-0xa30267fb tcf_idrinfo_destroy vmlinux EXPORT_SYMBOL
-0x107e4873 tcf_register_action vmlinux EXPORT_SYMBOL
-0x39de3575 tcf_unregister_action vmlinux EXPORT_SYMBOL
-0x14c3ed41 tcf_action_exec vmlinux EXPORT_SYMBOL
-0xced31927 tcf_action_dump_1 vmlinux EXPORT_SYMBOL
-0x0c9af39e tcf_action_update_stats vmlinux EXPORT_SYMBOL
-0x4284a23c pfifo_qdisc_ops vmlinux EXPORT_SYMBOL
-0x2303b9c1 bfifo_qdisc_ops vmlinux EXPORT_SYMBOL
-0xb2d8152c fifo_set_limit vmlinux EXPORT_SYMBOL
-0xff0c8880 fifo_create_dflt vmlinux EXPORT_SYMBOL
-0xf086340c tcf_em_register vmlinux EXPORT_SYMBOL
-0x4d33d27b tcf_em_unregister vmlinux EXPORT_SYMBOL
-0xdd72e766 tcf_em_tree_validate vmlinux EXPORT_SYMBOL
-0x9baba075 tcf_em_tree_destroy vmlinux EXPORT_SYMBOL
-0x42eb9c79 tcf_em_tree_dump vmlinux EXPORT_SYMBOL
-0xc0d535e9 __tcf_em_tree_match vmlinux EXPORT_SYMBOL
-0x01e05f54 nl_table vmlinux EXPORT_SYMBOL_GPL
-0xa731f387 nl_table_lock vmlinux EXPORT_SYMBOL_GPL
-0xe6d2458e do_trace_netlink_extack vmlinux EXPORT_SYMBOL
-0xfc63074c netlink_add_tap vmlinux EXPORT_SYMBOL_GPL
-0x81b93c53 netlink_remove_tap vmlinux EXPORT_SYMBOL_GPL
-0xaa25ec37 __netlink_ns_capable vmlinux EXPORT_SYMBOL
-0xf4883a9f netlink_ns_capable vmlinux EXPORT_SYMBOL
-0x25179e47 netlink_capable vmlinux EXPORT_SYMBOL
-0x79de7351 netlink_net_capable vmlinux EXPORT_SYMBOL
-0x06a15dcd netlink_unicast vmlinux EXPORT_SYMBOL
-0x6090cf31 netlink_has_listeners vmlinux EXPORT_SYMBOL_GPL
-0xf230d8c0 netlink_strict_get_check vmlinux EXPORT_SYMBOL_GPL
-0x52d5168d netlink_broadcast_filtered vmlinux EXPORT_SYMBOL
-0x8ff88de5 netlink_broadcast vmlinux EXPORT_SYMBOL
-0xb051f31f netlink_set_err vmlinux EXPORT_SYMBOL
-0x04ac451e __netlink_kernel_create vmlinux EXPORT_SYMBOL
-0xfdd04cb5 netlink_kernel_release vmlinux EXPORT_SYMBOL
-0xbdccf9c8 __nlmsg_put vmlinux EXPORT_SYMBOL
-0x04d34cad __netlink_dump_start vmlinux EXPORT_SYMBOL
-0x9e8edf47 netlink_ack vmlinux EXPORT_SYMBOL
-0x24d6498b netlink_rcv_skb vmlinux EXPORT_SYMBOL
-0xaa1ea3d9 nlmsg_notify vmlinux EXPORT_SYMBOL
-0xfa599bb2 netlink_register_notifier vmlinux EXPORT_SYMBOL
-0xdf54a8f7 netlink_unregister_notifier vmlinux EXPORT_SYMBOL
-0x2b9da7a4 genl_lock vmlinux EXPORT_SYMBOL
-0x2d140a58 genl_unlock vmlinux EXPORT_SYMBOL
-0x01508029 genl_register_family vmlinux EXPORT_SYMBOL
-0xda51de8a genl_unregister_family vmlinux EXPORT_SYMBOL
-0xf8676bb8 genlmsg_put vmlinux EXPORT_SYMBOL
-0xa050b650 genlmsg_multicast_allns vmlinux EXPORT_SYMBOL
-0x61501f2d genl_notify vmlinux EXPORT_SYMBOL
-0xb2a6f197 bpf_fentry_test1 vmlinux EXPORT_SYMBOL_GPL
-0x6d344367 ethtool_op_get_link vmlinux EXPORT_SYMBOL
-0xbb91ffa2 ethtool_op_get_ts_info vmlinux EXPORT_SYMBOL
-0x5cd2ddf3 ethtool_intersect_link_masks vmlinux EXPORT_SYMBOL
-0x8f996a30 ethtool_convert_legacy_u32_to_link_mode vmlinux EXPORT_SYMBOL
-0x55e31703 ethtool_convert_link_mode_to_legacy_u32 vmlinux EXPORT_SYMBOL
-0x73feb84e __ethtool_get_link_ksettings vmlinux EXPORT_SYMBOL
-0xfc71de4f ethtool_virtdev_set_link_ksettings vmlinux EXPORT_SYMBOL
-0x467df16d netdev_rss_key_fill vmlinux EXPORT_SYMBOL
-0x5338184f ethtool_sprintf vmlinux EXPORT_SYMBOL
-0x8aa6e479 ethtool_rx_flow_rule_create vmlinux EXPORT_SYMBOL
-0xc338ed46 ethtool_rx_flow_rule_destroy vmlinux EXPORT_SYMBOL
-0xf1384607 ethtool_get_phc_vclocks vmlinux EXPORT_SYMBOL
-0xf01dd102 ethtool_set_ethtool_phy_ops vmlinux EXPORT_SYMBOL_GPL
-0x88ef0ff8 ethtool_params_from_link_mode vmlinux EXPORT_SYMBOL_GPL
-0xb4d85219 ethtool_notify vmlinux EXPORT_SYMBOL
-0x48fb37dd ethnl_cable_test_alloc vmlinux EXPORT_SYMBOL_GPL
-0xf7b3b119 ethnl_cable_test_free vmlinux EXPORT_SYMBOL_GPL
-0x1a93167a ethnl_cable_test_finished vmlinux EXPORT_SYMBOL_GPL
-0x971da2e6 ethnl_cable_test_result vmlinux EXPORT_SYMBOL_GPL
-0x7d2eee9f ethnl_cable_test_fault_length vmlinux EXPORT_SYMBOL_GPL
-0xb4764eee ethnl_cable_test_amplitude vmlinux EXPORT_SYMBOL_GPL
-0x314b3f51 ethnl_cable_test_pulse vmlinux EXPORT_SYMBOL_GPL
-0xe49fed69 ethnl_cable_test_step vmlinux EXPORT_SYMBOL_GPL
-0x07b59120 ethtool_aggregate_mac_stats vmlinux EXPORT_SYMBOL
-0xed7a3373 ethtool_aggregate_phy_stats vmlinux EXPORT_SYMBOL
-0x236896fd ethtool_aggregate_ctrl_stats vmlinux EXPORT_SYMBOL
-0xf9b7145b ethtool_aggregate_pause_stats vmlinux EXPORT_SYMBOL
-0x3a5d7c92 ethtool_aggregate_rmon_stats vmlinux EXPORT_SYMBOL
-0xe34eb053 ethtool_dev_mm_supported vmlinux EXPORT_SYMBOL_GPL
-0xde70364c nf_ipv6_ops vmlinux EXPORT_SYMBOL_GPL
-0x70c52dc5 nf_skb_duplicated vmlinux EXPORT_SYMBOL_GPL
-0xd83898d5 nf_hooks_needed vmlinux EXPORT_SYMBOL
-0xeee49639 nf_hook_entries_insert_raw vmlinux EXPORT_SYMBOL_GPL
-0xcebf5f99 nf_unregister_net_hook vmlinux EXPORT_SYMBOL
-0x8fb236e3 nf_hook_entries_delete_raw vmlinux EXPORT_SYMBOL_GPL
-0xa304a362 nf_register_net_hook vmlinux EXPORT_SYMBOL
-0x9149325e nf_register_net_hooks vmlinux EXPORT_SYMBOL
-0x6b65ee66 nf_unregister_net_hooks vmlinux EXPORT_SYMBOL
-0x8c368655 nf_hook_slow vmlinux EXPORT_SYMBOL
-0x6e8472b8 nf_hook_slow_list vmlinux EXPORT_SYMBOL
-0x93d3be15 nfnl_ct_hook vmlinux EXPORT_SYMBOL_GPL
-0x706dd851 nf_ct_hook vmlinux EXPORT_SYMBOL_GPL
-0x19d4d0c9 nf_defrag_v4_hook vmlinux EXPORT_SYMBOL_GPL
-0x8e4bc1e0 nf_defrag_v6_hook vmlinux EXPORT_SYMBOL_GPL
-0x19f33626 nf_ctnetlink_has_listener vmlinux EXPORT_SYMBOL_GPL
-0x9b1ba510 nf_nat_hook vmlinux EXPORT_SYMBOL_GPL
-0x4aec2eaa nf_ct_attach vmlinux EXPORT_SYMBOL
-0xd2800691 nf_conntrack_destroy vmlinux EXPORT_SYMBOL
-0x2e7887d2 nf_ct_set_closing vmlinux EXPORT_SYMBOL_GPL
-0xb96cba7c nf_ct_get_tuple_skb vmlinux EXPORT_SYMBOL
-0x5a6cdb52 nf_ct_zone_dflt vmlinux EXPORT_SYMBOL_GPL
-0x9aaeefce sysctl_nf_log_all_netns vmlinux EXPORT_SYMBOL
-0x7472f75c nf_log_set vmlinux EXPORT_SYMBOL
-0x8b07e0ae nf_log_unset vmlinux EXPORT_SYMBOL
-0x08673f50 nf_log_register vmlinux EXPORT_SYMBOL
-0x4489d21a nf_log_unregister vmlinux EXPORT_SYMBOL
-0x716ccf68 nf_log_bind_pf vmlinux EXPORT_SYMBOL
-0xd9fc0023 nf_log_unbind_pf vmlinux EXPORT_SYMBOL
-0xd1f2eee2 nf_logger_find_get vmlinux EXPORT_SYMBOL_GPL
-0xb8cd3a7f nf_logger_put vmlinux EXPORT_SYMBOL_GPL
-0x54acc890 nf_log_packet vmlinux EXPORT_SYMBOL
-0x47cff050 nf_log_trace vmlinux EXPORT_SYMBOL
-0xcd6f2dc9 nf_log_buf_add vmlinux EXPORT_SYMBOL_GPL
-0x0d4961de nf_log_buf_open vmlinux EXPORT_SYMBOL_GPL
-0x80c68137 nf_log_buf_close vmlinux EXPORT_SYMBOL_GPL
-0xc91a148a nf_register_queue_handler vmlinux EXPORT_SYMBOL
-0xd7ea7094 nf_unregister_queue_handler vmlinux EXPORT_SYMBOL
-0xbf842f0e nf_queue_entry_free vmlinux EXPORT_SYMBOL_GPL
-0x8e6e5caa nf_queue_entry_get_refs vmlinux EXPORT_SYMBOL_GPL
-0x34649a2f nf_queue_nf_hook_drop vmlinux EXPORT_SYMBOL_GPL
-0x885745bc nf_queue vmlinux EXPORT_SYMBOL_GPL
-0x0e003618 nf_reinject vmlinux EXPORT_SYMBOL
-0x2fb32b31 nf_register_sockopt vmlinux EXPORT_SYMBOL
-0x2c8a0a87 nf_unregister_sockopt vmlinux EXPORT_SYMBOL
-0x46dfef88 nf_setsockopt vmlinux EXPORT_SYMBOL
-0x4f00bbd2 nf_getsockopt vmlinux EXPORT_SYMBOL
-0xf616d6f1 nf_ip_checksum vmlinux EXPORT_SYMBOL
-0x3d9ed7d9 nf_ip6_checksum vmlinux EXPORT_SYMBOL
-0x3cf55f8b nf_checksum vmlinux EXPORT_SYMBOL_GPL
-0x61996403 nf_checksum_partial vmlinux EXPORT_SYMBOL_GPL
-0x2e9ef15e nf_route vmlinux EXPORT_SYMBOL_GPL
-0x96d7537c nf_ip6_check_hbh_len vmlinux EXPORT_SYMBOL_GPL
-0x11ad4105 xt_register_target vmlinux EXPORT_SYMBOL
-0x907273f6 xt_unregister_target vmlinux EXPORT_SYMBOL
-0xf4da6e28 xt_register_targets vmlinux EXPORT_SYMBOL
-0xb5b8f86c xt_unregister_targets vmlinux EXPORT_SYMBOL
-0x9b81c84a xt_register_match vmlinux EXPORT_SYMBOL
-0xd440cf94 xt_unregister_match vmlinux EXPORT_SYMBOL
-0x11e6168f xt_register_matches vmlinux EXPORT_SYMBOL
-0x770a3224 xt_unregister_matches vmlinux EXPORT_SYMBOL
-0xd6d34c22 xt_find_match vmlinux EXPORT_SYMBOL
-0xe4414286 xt_request_find_match vmlinux EXPORT_SYMBOL_GPL
-0x53d83578 xt_request_find_target vmlinux EXPORT_SYMBOL_GPL
-0x7bce4603 xt_data_to_user vmlinux EXPORT_SYMBOL_GPL
-0x9a3fefe8 xt_match_to_user vmlinux EXPORT_SYMBOL_GPL
-0x98843094 xt_target_to_user vmlinux EXPORT_SYMBOL_GPL
-0xddf68fc6 xt_find_revision vmlinux EXPORT_SYMBOL_GPL
-0x48012e28 xt_check_proc_name vmlinux EXPORT_SYMBOL
-0x8ad73cfd xt_check_match vmlinux EXPORT_SYMBOL_GPL
-0x3bf9d084 xt_check_table_hooks vmlinux EXPORT_SYMBOL
-0x823edea5 xt_compat_add_offset vmlinux EXPORT_SYMBOL_GPL
-0x04e27719 xt_compat_flush_offsets vmlinux EXPORT_SYMBOL_GPL
-0xc7fae024 xt_compat_calc_jump vmlinux EXPORT_SYMBOL_GPL
-0x50873741 xt_compat_init_offsets vmlinux EXPORT_SYMBOL
-0x0a9fe06e xt_compat_match_offset vmlinux EXPORT_SYMBOL_GPL
-0xa1772458 xt_compat_match_from_user vmlinux EXPORT_SYMBOL_GPL
-0xe914a768 xt_compat_match_to_user vmlinux EXPORT_SYMBOL_GPL
-0xa25fc115 xt_compat_check_entry_offsets vmlinux EXPORT_SYMBOL
-0xd87ae60d xt_check_entry_offsets vmlinux EXPORT_SYMBOL
-0x0d7f5fcd xt_alloc_entry_offsets vmlinux EXPORT_SYMBOL
-0xfef779fa xt_find_jump_offset vmlinux EXPORT_SYMBOL
-0xd15d43b9 xt_check_target vmlinux EXPORT_SYMBOL_GPL
-0xf6abeb06 xt_copy_counters vmlinux EXPORT_SYMBOL_GPL
-0x3eefad21 xt_compat_target_offset vmlinux EXPORT_SYMBOL_GPL
-0xdf1bf174 xt_compat_target_from_user vmlinux EXPORT_SYMBOL_GPL
-0x025de105 xt_compat_target_to_user vmlinux EXPORT_SYMBOL_GPL
-0x977fd4bf xt_alloc_table_info vmlinux EXPORT_SYMBOL
-0xe204e042 xt_free_table_info vmlinux EXPORT_SYMBOL
-0xf9f81286 xt_find_table vmlinux EXPORT_SYMBOL
-0x103e9d37 xt_find_table_lock vmlinux EXPORT_SYMBOL_GPL
-0x32a576be xt_request_find_table_lock vmlinux EXPORT_SYMBOL_GPL
-0x5b94d6d0 xt_table_unlock vmlinux EXPORT_SYMBOL_GPL
-0xa7c94f1d xt_compat_lock vmlinux EXPORT_SYMBOL_GPL
-0xd1e246a2 xt_compat_unlock vmlinux EXPORT_SYMBOL_GPL
-0x807d2b2c xt_recseq vmlinux EXPORT_SYMBOL_GPL
-0xd3fcc511 xt_tee_enabled vmlinux EXPORT_SYMBOL_GPL
-0xcb3e91cc xt_counters_alloc vmlinux EXPORT_SYMBOL
-0x13bafb7b xt_replace_table vmlinux EXPORT_SYMBOL_GPL
-0xaa46fb9d xt_register_table vmlinux EXPORT_SYMBOL_GPL
-0xead28d5d xt_unregister_table vmlinux EXPORT_SYMBOL_GPL
-0xecd989f5 xt_hook_ops_alloc vmlinux EXPORT_SYMBOL_GPL
-0x0eaf15d3 xt_register_template vmlinux EXPORT_SYMBOL_GPL
-0x02e22bf7 xt_unregister_template vmlinux EXPORT_SYMBOL_GPL
-0xc7ddf51a xt_proto_init vmlinux EXPORT_SYMBOL_GPL
-0xe6130e2a xt_proto_fini vmlinux EXPORT_SYMBOL_GPL
-0x9c995c69 xt_percpu_counter_alloc vmlinux EXPORT_SYMBOL_GPL
-0xbfacb837 xt_percpu_counter_free vmlinux EXPORT_SYMBOL_GPL
-0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler vmlinux EXPORT_SYMBOL_GPL
-0x1fbd16da ip_tos2prio vmlinux EXPORT_SYMBOL
-0x7d30bbbd __ip_select_ident vmlinux EXPORT_SYMBOL
-0x25f200e3 ipv4_update_pmtu vmlinux EXPORT_SYMBOL_GPL
-0xb1b63f2f ipv4_sk_update_pmtu vmlinux EXPORT_SYMBOL_GPL
-0x21b36b71 ipv4_redirect vmlinux EXPORT_SYMBOL_GPL
-0x8ff71445 ipv4_sk_redirect vmlinux EXPORT_SYMBOL_GPL
-0x4560296f ipv4_dst_check vmlinux EXPORT_SYMBOL
-0x63626094 ipv4_mtu vmlinux EXPORT_SYMBOL
-0xc15137c3 rt_dst_alloc vmlinux EXPORT_SYMBOL
-0x99abe671 rt_dst_clone vmlinux EXPORT_SYMBOL
-0x852910bb ip_route_input_noref vmlinux EXPORT_SYMBOL
-0xe0fee3ec ip_route_output_key_hash vmlinux EXPORT_SYMBOL_GPL
-0xe9a28240 ip_route_output_flow vmlinux EXPORT_SYMBOL_GPL
-0xbf229af4 ip_route_output_tunnel vmlinux EXPORT_SYMBOL_GPL
-0x38708e25 inet_peer_base_init vmlinux EXPORT_SYMBOL_GPL
-0x6d04891d inet_getpeer vmlinux EXPORT_SYMBOL_GPL
-0x1b92e41d inet_putpeer vmlinux EXPORT_SYMBOL_GPL
-0x21e13cb3 inet_peer_xrlim_allow vmlinux EXPORT_SYMBOL
-0x1cb11044 inetpeer_invalidate_tree vmlinux EXPORT_SYMBOL
-0x9a3a8c36 inet_protos vmlinux EXPORT_SYMBOL
-0xaf8a8b49 inet_offloads vmlinux EXPORT_SYMBOL
-0x45b72051 inet_add_protocol vmlinux EXPORT_SYMBOL
-0x141e6645 inet_add_offload vmlinux EXPORT_SYMBOL
-0xf197e18c inet_del_protocol vmlinux EXPORT_SYMBOL
-0xa6544c6c inet_del_offload vmlinux EXPORT_SYMBOL
-0x41d13a89 ip_local_deliver vmlinux EXPORT_SYMBOL
-0x4d1e9383 ip_defrag vmlinux EXPORT_SYMBOL
-0xedf23e2e ip_check_defrag vmlinux EXPORT_SYMBOL
-0x1c7879cb __ip_options_compile vmlinux EXPORT_SYMBOL
-0x4d6fdd2c ip_options_compile vmlinux EXPORT_SYMBOL
-0x607dd887 ip_options_rcv_srr vmlinux EXPORT_SYMBOL
-0x5089f45f ip_send_check vmlinux EXPORT_SYMBOL
-0xb11aa4a3 ip_local_out vmlinux EXPORT_SYMBOL_GPL
-0xf44c7483 ip_build_and_send_pkt vmlinux EXPORT_SYMBOL_GPL
-0xb09df95c ip_output vmlinux EXPORT_SYMBOL
-0x176c1845 __ip_queue_xmit vmlinux EXPORT_SYMBOL
-0xf71fd6c1 ip_queue_xmit vmlinux EXPORT_SYMBOL
-0x98a162eb ip_fraglist_init vmlinux EXPORT_SYMBOL
-0x326e70eb ip_fraglist_prepare vmlinux EXPORT_SYMBOL
-0x93ca90c6 ip_frag_init vmlinux EXPORT_SYMBOL
-0xaa05c960 ip_frag_next vmlinux EXPORT_SYMBOL
-0xe37b299b ip_do_fragment vmlinux EXPORT_SYMBOL
-0x7dd5c12c ip_generic_getfrag vmlinux EXPORT_SYMBOL
-0x42742f92 ip_cmsg_recv_offset vmlinux EXPORT_SYMBOL
-0xdae3cb4a ip_icmp_error vmlinux EXPORT_SYMBOL_GPL
-0x52b9b3d5 ip_sock_set_tos vmlinux EXPORT_SYMBOL
-0x88c51dd7 ip_sock_set_freebind vmlinux EXPORT_SYMBOL
-0x56310e9f ip_sock_set_recverr vmlinux EXPORT_SYMBOL
-0x94e651b8 ip_sock_set_mtu_discover vmlinux EXPORT_SYMBOL
-0x5a73efb7 ip_sock_set_pktinfo vmlinux EXPORT_SYMBOL
-0x511f02c9 ip_setsockopt vmlinux EXPORT_SYMBOL
-0xc8d91c51 ip_getsockopt vmlinux EXPORT_SYMBOL
-0x22edc804 inet_ehashfn vmlinux EXPORT_SYMBOL_GPL
-0xcb83a0a6 inet_put_port vmlinux EXPORT_SYMBOL
-0xae66eab4 __inet_inherit_port vmlinux EXPORT_SYMBOL_GPL
-0xb1526546 inet_lookup_reuseport vmlinux EXPORT_SYMBOL_GPL
-0xa34b0e3c __inet_lookup_listener vmlinux EXPORT_SYMBOL_GPL
-0x72b2087f sock_gen_put vmlinux EXPORT_SYMBOL_GPL
-0xea4454e3 sock_edemux vmlinux EXPORT_SYMBOL
-0x72715365 __inet_lookup_established vmlinux EXPORT_SYMBOL_GPL
-0x5878c76c inet_ehash_nolisten vmlinux EXPORT_SYMBOL_GPL
-0x667ac772 __inet_hash vmlinux EXPORT_SYMBOL
-0xc8416ce2 inet_hash vmlinux EXPORT_SYMBOL_GPL
-0x4144c258 inet_unhash vmlinux EXPORT_SYMBOL_GPL
-0x508ebcd3 inet_bhash2_update_saddr vmlinux EXPORT_SYMBOL_GPL
-0x4fafba06 inet_bhash2_reset_saddr vmlinux EXPORT_SYMBOL_GPL
-0xbf89abaf inet_hash_connect vmlinux EXPORT_SYMBOL_GPL
-0x3e0a087f inet_hashinfo2_init_mod vmlinux EXPORT_SYMBOL_GPL
-0x174e6c46 inet_ehash_locks_alloc vmlinux EXPORT_SYMBOL_GPL
-0x90b022da inet_pernet_hashinfo_alloc vmlinux EXPORT_SYMBOL_GPL
-0x3491f3c7 inet_pernet_hashinfo_free vmlinux EXPORT_SYMBOL_GPL
-0x11bf4fd5 inet_twsk_put vmlinux EXPORT_SYMBOL_GPL
-0x3d524f4e inet_twsk_hashdance vmlinux EXPORT_SYMBOL_GPL
-0x3ba31ebd inet_twsk_alloc vmlinux EXPORT_SYMBOL_GPL
-0x7fe6a1d1 inet_twsk_deschedule_put vmlinux EXPORT_SYMBOL
-0x6a3d3426 __inet_twsk_schedule vmlinux EXPORT_SYMBOL_GPL
-0x2290148f inet_twsk_purge vmlinux EXPORT_SYMBOL_GPL
-0x3af84dd7 inet_rcv_saddr_equal vmlinux EXPORT_SYMBOL
-0x5ce69508 inet_get_local_port_range vmlinux EXPORT_SYMBOL
-0x82974cdb inet_sk_get_local_port_range vmlinux EXPORT_SYMBOL
-0x0dc48984 inet_csk_get_port vmlinux EXPORT_SYMBOL_GPL
-0xc3c6f188 inet_csk_accept vmlinux EXPORT_SYMBOL
-0x3da44608 inet_csk_init_xmit_timers vmlinux EXPORT_SYMBOL
-0xcf23f132 inet_csk_clear_xmit_timers vmlinux EXPORT_SYMBOL
-0x7fc92760 inet_csk_delete_keepalive_timer vmlinux EXPORT_SYMBOL
-0x3f16f79a inet_csk_reset_keepalive_timer vmlinux EXPORT_SYMBOL
-0xb0a1ef6b inet_csk_route_req vmlinux EXPORT_SYMBOL_GPL
-0x39056f9d inet_csk_route_child_sock vmlinux EXPORT_SYMBOL_GPL
-0x2c535932 inet_rtx_syn_ack vmlinux EXPORT_SYMBOL
-0xe0db1424 inet_csk_reqsk_queue_drop vmlinux EXPORT_SYMBOL
-0x415e8adc inet_csk_reqsk_queue_drop_and_put vmlinux EXPORT_SYMBOL
-0x3ae4e68d inet_csk_reqsk_queue_hash_add vmlinux EXPORT_SYMBOL_GPL
-0x2e38a9e7 inet_csk_clone_lock vmlinux EXPORT_SYMBOL_GPL
-0xd9e76cb4 inet_csk_destroy_sock vmlinux EXPORT_SYMBOL
-0x24310c2c inet_csk_prepare_forced_close vmlinux EXPORT_SYMBOL
-0xe4003838 inet_csk_listen_start vmlinux EXPORT_SYMBOL_GPL
-0x533cc457 inet_csk_reqsk_queue_add vmlinux EXPORT_SYMBOL
-0x7b3ab812 inet_csk_complete_hashdance vmlinux EXPORT_SYMBOL
-0x21e7af17 inet_csk_listen_stop vmlinux EXPORT_SYMBOL_GPL
-0xbaacce0a inet_csk_addr2sockaddr vmlinux EXPORT_SYMBOL_GPL
-0x85eba01d inet_csk_update_pmtu vmlinux EXPORT_SYMBOL_GPL
-0x478e81f8 tcp_orphan_count vmlinux EXPORT_SYMBOL_GPL
-0xa0ebd14c sysctl_tcp_mem vmlinux EXPORT_SYMBOL
-0x59b4ac3e tcp_memory_allocated vmlinux EXPORT_SYMBOL
-0x0d6a49d4 tcp_memory_per_cpu_fw_alloc vmlinux EXPORT_SYMBOL_GPL
-0x1bb51249 tcp_have_smc vmlinux EXPORT_SYMBOL
-0x9e97eb4c tcp_sockets_allocated vmlinux EXPORT_SYMBOL
-0xc2a814db tcp_memory_pressure vmlinux EXPORT_SYMBOL_GPL
-0x934f5893 tcp_enter_memory_pressure vmlinux EXPORT_SYMBOL_GPL
-0x8ae4f418 tcp_leave_memory_pressure vmlinux EXPORT_SYMBOL_GPL
-0x31f3c808 tcp_init_sock vmlinux EXPORT_SYMBOL
-0x9bb2166f tcp_poll vmlinux EXPORT_SYMBOL
-0x231f8056 tcp_ioctl vmlinux EXPORT_SYMBOL
-0xda21529a tcp_splice_read vmlinux EXPORT_SYMBOL
-0x03c3836f tcp_sendmsg_locked vmlinux EXPORT_SYMBOL_GPL
-0x805dd494 tcp_sendmsg vmlinux EXPORT_SYMBOL
-0x53ad3b10 tcp_splice_eof vmlinux EXPORT_SYMBOL_GPL
-0x1ca60282 tcp_recv_skb vmlinux EXPORT_SYMBOL
-0xd015f176 tcp_read_sock vmlinux EXPORT_SYMBOL
-0x99ce4566 tcp_read_skb vmlinux EXPORT_SYMBOL
-0x83498483 tcp_read_done vmlinux EXPORT_SYMBOL
-0x24ea51b8 tcp_peek_len vmlinux EXPORT_SYMBOL
-0x3701f39b tcp_set_rcvlowat vmlinux EXPORT_SYMBOL
-0x7b755f8e tcp_mmap vmlinux EXPORT_SYMBOL
-0x9cf6e636 tcp_recvmsg vmlinux EXPORT_SYMBOL
-0xf76478ca tcp_set_state vmlinux EXPORT_SYMBOL_GPL
-0x60820bda tcp_shutdown vmlinux EXPORT_SYMBOL
-0xfb4d6a69 tcp_close vmlinux EXPORT_SYMBOL
-0xc31b1339 tcp_disconnect vmlinux EXPORT_SYMBOL
-0x14c67e3e tcp_tx_delay_enabled vmlinux EXPORT_SYMBOL
-0x2c49702c tcp_sock_set_cork vmlinux EXPORT_SYMBOL
-0x06c8f58c tcp_sock_set_nodelay vmlinux EXPORT_SYMBOL
-0x0ff5b0c3 tcp_sock_set_quickack vmlinux EXPORT_SYMBOL
-0x9b80eb39 tcp_sock_set_syncnt vmlinux EXPORT_SYMBOL
-0x523b7a99 tcp_sock_set_user_timeout vmlinux EXPORT_SYMBOL
-0xc5994c3f tcp_sock_set_keepidle vmlinux EXPORT_SYMBOL
-0x20b025f2 tcp_sock_set_keepintvl vmlinux EXPORT_SYMBOL
-0xb853195e tcp_sock_set_keepcnt vmlinux EXPORT_SYMBOL
-0xc2ab4219 tcp_setsockopt vmlinux EXPORT_SYMBOL
-0x87d22689 tcp_get_info vmlinux EXPORT_SYMBOL_GPL
-0xffcc4ec7 tcp_bpf_bypass_getsockopt vmlinux EXPORT_SYMBOL
-0xf36ac428 tcp_getsockopt vmlinux EXPORT_SYMBOL
-0x204c19f5 tcp_alloc_md5sig_pool vmlinux EXPORT_SYMBOL
-0x251e11e7 tcp_get_md5sig_pool vmlinux EXPORT_SYMBOL
-0xa2a49602 tcp_md5_hash_skb_data vmlinux EXPORT_SYMBOL
-0x842e9e41 tcp_md5_hash_key vmlinux EXPORT_SYMBOL
-0x28ce5cfd tcp_inbound_md5_hash vmlinux EXPORT_SYMBOL
-0xcb64e109 tcp_done vmlinux EXPORT_SYMBOL_GPL
-0xa3d543d0 tcp_abort vmlinux EXPORT_SYMBOL_GPL
-0x3c797acc clean_acked_data_enable vmlinux EXPORT_SYMBOL_GPL
-0x3392d079 clean_acked_data_disable vmlinux EXPORT_SYMBOL_GPL
-0xeae0f496 clean_acked_data_flush vmlinux EXPORT_SYMBOL_GPL
-0x3f106291 tcp_initialize_rcv_mss vmlinux EXPORT_SYMBOL
-0xa287a363 tcp_enter_cwr vmlinux EXPORT_SYMBOL
-0x3390c454 tcp_simple_retransmit vmlinux EXPORT_SYMBOL
-0xfa20488d tcp_parse_mss_option vmlinux EXPORT_SYMBOL_GPL
-0x1746ede6 tcp_parse_options vmlinux EXPORT_SYMBOL
-0x469a6ec7 tcp_parse_md5sig_option vmlinux EXPORT_SYMBOL
-0xcb7240f3 tcp_rcv_established vmlinux EXPORT_SYMBOL
-0x480b43d7 tcp_rcv_state_process vmlinux EXPORT_SYMBOL
-0xc1bfe0d3 inet_reqsk_alloc vmlinux EXPORT_SYMBOL
-0x3308ec10 tcp_get_syncookie_mss vmlinux EXPORT_SYMBOL_GPL
-0xf43e073b tcp_conn_request vmlinux EXPORT_SYMBOL
-0xb50ee103 tcp_select_initial_window vmlinux EXPORT_SYMBOL
-0xa67b17bb tcp_release_cb vmlinux EXPORT_SYMBOL
-0xbfbccf86 tcp_mtu_to_mss vmlinux EXPORT_SYMBOL
-0x246ccfcd tcp_mss_to_mtu vmlinux EXPORT_SYMBOL
-0xe50aaf20 tcp_mtup_init vmlinux EXPORT_SYMBOL
-0x9daec328 tcp_sync_mss vmlinux EXPORT_SYMBOL
-0xda5b6600 tcp_make_synack vmlinux EXPORT_SYMBOL
-0xe7a2e9b5 tcp_connect vmlinux EXPORT_SYMBOL
-0x4f852581 __tcp_send_ack vmlinux EXPORT_SYMBOL_GPL
-0x62e10f74 tcp_rtx_synack vmlinux EXPORT_SYMBOL
-0xdde69ad0 tcp_syn_ack_timeout vmlinux EXPORT_SYMBOL
-0x5e477b6b tcp_set_keepalive vmlinux EXPORT_SYMBOL_GPL
-0xa70ed9dc tcp_hashinfo vmlinux EXPORT_SYMBOL
-0x1e59a5ce tcp_twsk_unique vmlinux EXPORT_SYMBOL_GPL
-0x8607ee67 tcp_v4_connect vmlinux EXPORT_SYMBOL
-0x363f6529 tcp_v4_mtu_reduced vmlinux EXPORT_SYMBOL
-0x664b18d6 tcp_req_err vmlinux EXPORT_SYMBOL
-0xdcbf98f6 tcp_ld_RTO_revert vmlinux EXPORT_SYMBOL
-0xda8c35ac tcp_v4_send_check vmlinux EXPORT_SYMBOL
-0x19968146 tcp_md5_needed vmlinux EXPORT_SYMBOL
-0xcc289756 __tcp_md5_do_lookup vmlinux EXPORT_SYMBOL
-0x45ab9326 tcp_v4_md5_lookup vmlinux EXPORT_SYMBOL
-0x381a804d tcp_md5_do_add vmlinux EXPORT_SYMBOL
-0x6a810d7a tcp_md5_key_copy vmlinux EXPORT_SYMBOL
-0xb94097e3 tcp_md5_do_del vmlinux EXPORT_SYMBOL
-0xff2de5d6 tcp_v4_md5_hash_skb vmlinux EXPORT_SYMBOL
-0xff5d83d9 tcp_v4_conn_request vmlinux EXPORT_SYMBOL
-0xef3ffda1 tcp_v4_syn_recv_sock vmlinux EXPORT_SYMBOL
-0x919f8ad6 tcp_v4_do_rcv vmlinux EXPORT_SYMBOL
-0xf1a44323 tcp_add_backlog vmlinux EXPORT_SYMBOL
-0xc2a072e2 tcp_filter vmlinux EXPORT_SYMBOL
-0xcdc1298a inet_sk_rx_dst_set vmlinux EXPORT_SYMBOL
-0xa7b732d1 ipv4_specific vmlinux EXPORT_SYMBOL
-0xd77af963 tcp_v4_destroy_sock vmlinux EXPORT_SYMBOL
-0x3cfeb903 tcp_seq_start vmlinux EXPORT_SYMBOL
-0xfb3201f1 tcp_seq_next vmlinux EXPORT_SYMBOL
-0x1df9006f tcp_seq_stop vmlinux EXPORT_SYMBOL
-0x2806f811 tcp_stream_memory_free vmlinux EXPORT_SYMBOL
-0x4aab18ef tcp_prot vmlinux EXPORT_SYMBOL
-0x9a31b994 tcp_timewait_state_process vmlinux EXPORT_SYMBOL
-0x67023e72 tcp_time_wait vmlinux EXPORT_SYMBOL
-0x17cd80fa tcp_twsk_destructor vmlinux EXPORT_SYMBOL_GPL
-0xd7a86ea4 tcp_twsk_purge vmlinux EXPORT_SYMBOL_GPL
-0xbcc8ceb3 tcp_openreq_init_rwin vmlinux EXPORT_SYMBOL
-0x2a73b7b6 tcp_ca_openreq_child vmlinux EXPORT_SYMBOL_GPL
-0xdc859a16 tcp_create_openreq_child vmlinux EXPORT_SYMBOL
-0x3804046a tcp_check_req vmlinux EXPORT_SYMBOL
-0xc656d8ec tcp_child_process vmlinux EXPORT_SYMBOL
-0x6bc12ae4 tcp_register_congestion_control vmlinux EXPORT_SYMBOL_GPL
-0x16f20200 tcp_unregister_congestion_control vmlinux EXPORT_SYMBOL_GPL
-0x1d12224b tcp_slow_start vmlinux EXPORT_SYMBOL_GPL
-0x081643ed tcp_cong_avoid_ai vmlinux EXPORT_SYMBOL_GPL
-0xa337b5a1 tcp_reno_cong_avoid vmlinux EXPORT_SYMBOL_GPL
-0x4043109f tcp_reno_ssthresh vmlinux EXPORT_SYMBOL_GPL
-0xee7b036a tcp_reno_undo_cwnd vmlinux EXPORT_SYMBOL_GPL
-0x0f41c9a2 tcp_fastopen_defer_connect vmlinux EXPORT_SYMBOL
-0xc3d118f8 tcp_rate_check_app_limited vmlinux EXPORT_SYMBOL_GPL
-0x234afaff tcp_register_ulp vmlinux EXPORT_SYMBOL_GPL
-0xf14623fc tcp_unregister_ulp vmlinux EXPORT_SYMBOL_GPL
-0x4b0c88ac tcp_gro_complete vmlinux EXPORT_SYMBOL
-0xe1417d7f tcp_plb_update_state vmlinux EXPORT_SYMBOL_GPL
-0x0b977e27 tcp_plb_check_rehash vmlinux EXPORT_SYMBOL_GPL
-0x60ee2d22 tcp_plb_update_state_upon_rto vmlinux EXPORT_SYMBOL_GPL
-0x9563f541 __ip4_datagram_connect vmlinux EXPORT_SYMBOL
-0xcb16b4d9 ip4_datagram_connect vmlinux EXPORT_SYMBOL
-0x67ccecc2 ip4_datagram_release_cb vmlinux EXPORT_SYMBOL_GPL
-0x0a8162a8 raw_v4_hashinfo vmlinux EXPORT_SYMBOL_GPL
-0x17ae07dd raw_hash_sk vmlinux EXPORT_SYMBOL_GPL
-0xb9c85828 raw_unhash_sk vmlinux EXPORT_SYMBOL_GPL
-0x65bd9cee raw_v4_match vmlinux EXPORT_SYMBOL_GPL
-0x0e9e580b raw_abort vmlinux EXPORT_SYMBOL_GPL
-0xe4593ef6 raw_seq_start vmlinux EXPORT_SYMBOL_GPL
-0xf35d74fa raw_seq_next vmlinux EXPORT_SYMBOL_GPL
-0x0774294e raw_seq_stop vmlinux EXPORT_SYMBOL_GPL
-0x95a67b07 udp_table vmlinux EXPORT_SYMBOL
-0x40973662 sysctl_udp_mem vmlinux EXPORT_SYMBOL
-0x272a8933 udp_memory_allocated vmlinux EXPORT_SYMBOL
-0xde0af24f udp_memory_per_cpu_fw_alloc vmlinux EXPORT_SYMBOL_GPL
-0xb0b36ee1 udp_lib_get_port vmlinux EXPORT_SYMBOL
-0x170f3782 __udp4_lib_lookup vmlinux EXPORT_SYMBOL_GPL
-0x53274e1a udp4_lib_lookup vmlinux EXPORT_SYMBOL_GPL
-0x3868fbbb udp_encap_needed_key vmlinux EXPORT_SYMBOL
-0xd0fabe2e udpv6_encap_needed_key vmlinux EXPORT_SYMBOL
-0x99517682 udp_encap_enable vmlinux EXPORT_SYMBOL
-0xed656e30 udp_encap_disable vmlinux EXPORT_SYMBOL
-0xeee1b18e udp_flush_pending_frames vmlinux EXPORT_SYMBOL
-0x03992cf0 udp4_hwcsum vmlinux EXPORT_SYMBOL_GPL
-0x04fe3bab udp_set_csum vmlinux EXPORT_SYMBOL
-0x3fc33f2a udp_push_pending_frames vmlinux EXPORT_SYMBOL
-0xd66e625d udp_cmsg_send vmlinux EXPORT_SYMBOL_GPL
-0xcdcba612 udp_sendmsg vmlinux EXPORT_SYMBOL
-0xf264201f udp_splice_eof vmlinux EXPORT_SYMBOL_GPL
-0x16ec0c8f udp_skb_destructor vmlinux EXPORT_SYMBOL
-0xb8c3d8f2 __udp_enqueue_schedule_skb vmlinux EXPORT_SYMBOL_GPL
-0x28424cdf udp_destruct_common vmlinux EXPORT_SYMBOL_GPL
-0x2eccdfd6 skb_consume_udp vmlinux EXPORT_SYMBOL_GPL
-0xad9a7bb7 udp_ioctl vmlinux EXPORT_SYMBOL
-0xf1281806 __skb_recv_udp vmlinux EXPORT_SYMBOL
-0xc629a2f9 udp_read_skb vmlinux EXPORT_SYMBOL
-0xf077b659 udp_pre_connect vmlinux EXPORT_SYMBOL
-0x44359fee __udp_disconnect vmlinux EXPORT_SYMBOL
-0x2549cb0b udp_disconnect vmlinux EXPORT_SYMBOL
-0x2da53646 udp_lib_unhash vmlinux EXPORT_SYMBOL
-0x2fc7a461 udp_lib_rehash vmlinux EXPORT_SYMBOL
-0xe3a34c4a udp_sk_rx_dst_set vmlinux EXPORT_SYMBOL
-0xfb558581 udp_lib_setsockopt vmlinux EXPORT_SYMBOL
-0xbe46fff0 udp_lib_getsockopt vmlinux EXPORT_SYMBOL
-0xeb7e2d7d udp_poll vmlinux EXPORT_SYMBOL
-0x6870e006 udp_abort vmlinux EXPORT_SYMBOL_GPL
-0x125337a3 udp_prot vmlinux EXPORT_SYMBOL
-0x6e1dfaed udp_seq_start vmlinux EXPORT_SYMBOL
-0xc43d5e60 udp_seq_next vmlinux EXPORT_SYMBOL
-0x05b7fee9 udp_seq_stop vmlinux EXPORT_SYMBOL
-0x788d9584 udp_seq_ops vmlinux EXPORT_SYMBOL
-0xac3201b0 udp_flow_hashrnd vmlinux EXPORT_SYMBOL
-0xd4d1983c udplite_table vmlinux EXPORT_SYMBOL
-0x9b19a144 udplite_prot vmlinux EXPORT_SYMBOL
-0xeb7e3a08 skb_udp_tunnel_segment vmlinux EXPORT_SYMBOL
-0xf9e12aa4 __udp_gso_segment vmlinux EXPORT_SYMBOL_GPL
-0x692aee71 udp_gro_receive vmlinux EXPORT_SYMBOL
-0x47178fa6 udp_gro_complete vmlinux EXPORT_SYMBOL
-0x11ca80ec arp_tbl vmlinux EXPORT_SYMBOL
-0x1ef2bf2e arp_send vmlinux EXPORT_SYMBOL
-0xbb980f20 arp_create vmlinux EXPORT_SYMBOL
-0x70103c58 arp_xmit vmlinux EXPORT_SYMBOL
-0x49045426 icmp_err_convert vmlinux EXPORT_SYMBOL
-0x39991865 icmp_global_allow vmlinux EXPORT_SYMBOL
-0x74bd73b6 __icmp_send vmlinux EXPORT_SYMBOL
-0x078b7770 icmp_ndo_send vmlinux EXPORT_SYMBOL
-0x377d4a63 icmp_build_probe vmlinux EXPORT_SYMBOL_GPL
-0x035291a4 ip_icmp_error_rfc4884 vmlinux EXPORT_SYMBOL_GPL
-0x23d3e0fd __ip_dev_find vmlinux EXPORT_SYMBOL
-0x06180ed7 in_dev_finish_destroy vmlinux EXPORT_SYMBOL
-0x8ba4dcc1 inetdev_by_index vmlinux EXPORT_SYMBOL
-0xc277c647 inet_select_addr vmlinux EXPORT_SYMBOL
-0x54ed005e inet_confirm_addr vmlinux EXPORT_SYMBOL
-0xf68285c0 register_inetaddr_notifier vmlinux EXPORT_SYMBOL
-0xfe029963 unregister_inetaddr_notifier vmlinux EXPORT_SYMBOL
-0xc32c71af register_inetaddr_validator_notifier vmlinux EXPORT_SYMBOL
-0xab63baa5 unregister_inetaddr_validator_notifier vmlinux EXPORT_SYMBOL
-0xbf6826c0 inet_sock_destruct vmlinux EXPORT_SYMBOL
-0x56af6f70 inet_listen vmlinux EXPORT_SYMBOL
-0x0444dfdd inet_release vmlinux EXPORT_SYMBOL
-0x903c78a9 inet_bind vmlinux EXPORT_SYMBOL
-0xaf1f40d9 inet_dgram_connect vmlinux EXPORT_SYMBOL
-0x13b88e83 __inet_stream_connect vmlinux EXPORT_SYMBOL
-0x1a26a84a inet_stream_connect vmlinux EXPORT_SYMBOL
-0xa5eebaf5 inet_accept vmlinux EXPORT_SYMBOL
-0x356a9a68 inet_getname vmlinux EXPORT_SYMBOL
-0x06478172 inet_send_prepare vmlinux EXPORT_SYMBOL_GPL
-0xccf90130 inet_sendmsg vmlinux EXPORT_SYMBOL
-0xe31cfbd7 inet_splice_eof vmlinux EXPORT_SYMBOL_GPL
-0xc860bc56 inet_recvmsg vmlinux EXPORT_SYMBOL
-0x2ec36756 inet_shutdown vmlinux EXPORT_SYMBOL
-0x7f4292bf inet_ioctl vmlinux EXPORT_SYMBOL
-0x4172e0d6 inet_stream_ops vmlinux EXPORT_SYMBOL
-0x4fbd6267 inet_dgram_ops vmlinux EXPORT_SYMBOL
-0x04a72f7a inet_register_protosw vmlinux EXPORT_SYMBOL
-0x1b2a5094 inet_unregister_protosw vmlinux EXPORT_SYMBOL
-0xf4d013c2 inet_sk_rebuild_header vmlinux EXPORT_SYMBOL
-0x9cfd2367 inet_sk_set_state vmlinux EXPORT_SYMBOL
-0xa2060911 inet_current_timestamp vmlinux EXPORT_SYMBOL
-0xabc68458 inet_recv_error vmlinux EXPORT_SYMBOL
-0x293fbefb inet_ctl_sock_create vmlinux EXPORT_SYMBOL_GPL
-0x9e472f5f snmp_fold_field vmlinux EXPORT_SYMBOL_GPL
-0xf1edde4d __ip_mc_inc_group vmlinux EXPORT_SYMBOL
-0x0befba5d ip_mc_inc_group vmlinux EXPORT_SYMBOL
-0x7850db4e ip_mc_check_igmp vmlinux EXPORT_SYMBOL
-0x734f5ffa __ip_mc_dec_group vmlinux EXPORT_SYMBOL
-0xf35358fb ip_mc_join_group vmlinux EXPORT_SYMBOL
-0xc70cfb21 ip_mc_leave_group vmlinux EXPORT_SYMBOL
-0x21271630 fib_new_table vmlinux EXPORT_SYMBOL_GPL
-0xabe74814 inet_addr_type_table vmlinux EXPORT_SYMBOL
-0x08f442e5 inet_addr_type vmlinux EXPORT_SYMBOL
-0x686acccb inet_dev_addr_type vmlinux EXPORT_SYMBOL
-0x460b1826 inet_addr_type_dev_table vmlinux EXPORT_SYMBOL
-0xd3b6ceb2 fib_info_nh_uses_dev vmlinux EXPORT_SYMBOL_GPL
-0xfbc6b74c ip_valid_fib_dump_req vmlinux EXPORT_SYMBOL_GPL
-0x749fba3e fib_nh_common_release vmlinux EXPORT_SYMBOL_GPL
-0x807ae382 free_fib_info vmlinux EXPORT_SYMBOL_GPL
-0x65c761dc fib_nh_common_init vmlinux EXPORT_SYMBOL_GPL
-0xc0454845 fib_nexthop_info vmlinux EXPORT_SYMBOL_GPL
-0xfa3c0d42 fib_add_nexthop vmlinux EXPORT_SYMBOL_GPL
-0xee72d83f fib_alias_hw_flags_set vmlinux EXPORT_SYMBOL_GPL
-0xde23084f fib_table_lookup vmlinux EXPORT_SYMBOL_GPL
-0xa8f6c843 ip_frag_ecn_table vmlinux EXPORT_SYMBOL
-0x448fa4e9 inet_frags_init vmlinux EXPORT_SYMBOL
-0x9e6dbb63 inet_frags_fini vmlinux EXPORT_SYMBOL
-0x125bfa2a fqdir_init vmlinux EXPORT_SYMBOL
-0x2aaefdbf fqdir_exit vmlinux EXPORT_SYMBOL
-0x0d1a8b74 inet_frag_kill vmlinux EXPORT_SYMBOL
-0x496ff51e inet_frag_rbtree_purge vmlinux EXPORT_SYMBOL
-0xde664d6b inet_frag_destroy vmlinux EXPORT_SYMBOL
-0x1aaf4c12 inet_frag_find vmlinux EXPORT_SYMBOL
-0xb49cc295 inet_frag_queue_insert vmlinux EXPORT_SYMBOL
-0xddfad9e2 inet_frag_reasm_prepare vmlinux EXPORT_SYMBOL
-0xeb257432 inet_frag_reasm_finish vmlinux EXPORT_SYMBOL
-0x55ce7ffb inet_frag_pull_head vmlinux EXPORT_SYMBOL
-0x42cea316 pingv6_ops vmlinux EXPORT_SYMBOL_GPL
-0x5d628c80 ping_hash vmlinux EXPORT_SYMBOL_GPL
-0xf9d7bfe4 ping_get_port vmlinux EXPORT_SYMBOL_GPL
-0xf8e4a705 ping_unhash vmlinux EXPORT_SYMBOL_GPL
-0x0b632f47 ping_init_sock vmlinux EXPORT_SYMBOL_GPL
-0xe313188a ping_close vmlinux EXPORT_SYMBOL_GPL
-0xc36e9397 ping_bind vmlinux EXPORT_SYMBOL_GPL
-0x94050258 ping_err vmlinux EXPORT_SYMBOL_GPL
-0x747dd087 ping_getfrag vmlinux EXPORT_SYMBOL_GPL
-0x264dd4dd ping_common_sendmsg vmlinux EXPORT_SYMBOL_GPL
-0xabb9faff ping_recvmsg vmlinux EXPORT_SYMBOL_GPL
-0xd5e6a8d4 ping_queue_rcv_skb vmlinux EXPORT_SYMBOL_GPL
-0x3df03531 ping_rcv vmlinux EXPORT_SYMBOL_GPL
-0xc8c55052 ping_prot vmlinux EXPORT_SYMBOL
-0xf13e7f51 ping_seq_start vmlinux EXPORT_SYMBOL_GPL
-0xc91aaded ping_seq_next vmlinux EXPORT_SYMBOL_GPL
-0x4a4c9fec ping_seq_stop vmlinux EXPORT_SYMBOL_GPL
-0x59295e2e iptun_encaps vmlinux EXPORT_SYMBOL
-0x54908e59 ip6tun_encaps vmlinux EXPORT_SYMBOL
-0x1e22b49b iptunnel_xmit vmlinux EXPORT_SYMBOL_GPL
-0x7f8ffcfc __iptunnel_pull_header vmlinux EXPORT_SYMBOL_GPL
-0x4f65dee0 iptunnel_metadata_reply vmlinux EXPORT_SYMBOL_GPL
-0x9bfcf84a iptunnel_handle_offloads vmlinux EXPORT_SYMBOL_GPL
-0xffcf2476 skb_tunnel_check_pmtu vmlinux EXPORT_SYMBOL
-0x66628bf3 ip_tunnel_metadata_cnt vmlinux EXPORT_SYMBOL
-0x7f7cbc64 ip_tunnel_need_metadata vmlinux EXPORT_SYMBOL_GPL
-0xc0f0458a ip_tunnel_unneed_metadata vmlinux EXPORT_SYMBOL_GPL
-0x764d3f5e ip_tunnel_parse_protocol vmlinux EXPORT_SYMBOL
-0xd7a8e64a ip_tunnel_header_ops vmlinux EXPORT_SYMBOL
-0x3e903560 ip_tunnel_netlink_encap_parms vmlinux EXPORT_SYMBOL_GPL
-0x2a2f04fa ip_tunnel_netlink_parms vmlinux EXPORT_SYMBOL_GPL
-0x24bc2717 ip_fib_metrics_init vmlinux EXPORT_SYMBOL_GPL
-0xe62824a6 rtm_getroute_parse_ip_proto vmlinux EXPORT_SYMBOL_GPL
-0xe05e2f85 nexthop_free_rcu vmlinux EXPORT_SYMBOL_GPL
-0x0857b589 nexthop_find_by_id vmlinux EXPORT_SYMBOL_GPL
-0xe6c0b883 nexthop_select_path vmlinux EXPORT_SYMBOL_GPL
-0xc5ef27c0 nexthop_for_each_fib6_nh vmlinux EXPORT_SYMBOL_GPL
-0x1d0bc3df fib6_check_nexthop vmlinux EXPORT_SYMBOL_GPL
-0xdd585e36 register_nexthop_notifier vmlinux EXPORT_SYMBOL
-0xc289fbd6 unregister_nexthop_notifier vmlinux EXPORT_SYMBOL
-0xf8441292 nexthop_set_hw_flags vmlinux EXPORT_SYMBOL
-0xb42f74d0 nexthop_bucket_set_hw_flags vmlinux EXPORT_SYMBOL
-0xe35e01d9 nexthop_res_grp_activity_update vmlinux EXPORT_SYMBOL
-0xf0299ffa udp_tunnel_nic_ops vmlinux EXPORT_SYMBOL_GPL
-0x091d3c80 fib4_rule_default vmlinux EXPORT_SYMBOL_GPL
-0x09ec6526 __fib_lookup vmlinux EXPORT_SYMBOL_GPL
-0x432929ed ipmr_rule_default vmlinux EXPORT_SYMBOL
-0x084469b6 vif_device_init vmlinux EXPORT_SYMBOL
-0x47987445 mr_table_alloc vmlinux EXPORT_SYMBOL
-0x7bb8eb46 mr_mfc_find_parent vmlinux EXPORT_SYMBOL
-0x6c4167e9 mr_mfc_find_any_parent vmlinux EXPORT_SYMBOL
-0xd691a984 mr_mfc_find_any vmlinux EXPORT_SYMBOL
-0x5cfb1e90 mr_vif_seq_idx vmlinux EXPORT_SYMBOL
-0x0c8c0f50 mr_vif_seq_next vmlinux EXPORT_SYMBOL
-0xf9595ec7 mr_mfc_seq_idx vmlinux EXPORT_SYMBOL
-0xeea744f1 mr_mfc_seq_next vmlinux EXPORT_SYMBOL
-0x3d2ec85e mr_fill_mroute vmlinux EXPORT_SYMBOL
-0x498263c1 mr_table_dump vmlinux EXPORT_SYMBOL
-0x19253a25 mr_rtm_dumproute vmlinux EXPORT_SYMBOL
-0xcd7c0578 mr_dump vmlinux EXPORT_SYMBOL
-0x7ca64a0b __cookie_v4_init_sequence vmlinux EXPORT_SYMBOL_GPL
-0x9843f501 __cookie_v4_check vmlinux EXPORT_SYMBOL_GPL
-0x9dad8e18 tcp_get_cookie_sock vmlinux EXPORT_SYMBOL
-0xe9f810f4 cookie_timestamp_decode vmlinux EXPORT_SYMBOL
-0x2cbc52d0 cookie_ecn_ok vmlinux EXPORT_SYMBOL
-0xf1694a35 cookie_tcp_reqsk_alloc vmlinux EXPORT_SYMBOL_GPL
-0xcf47416f ip_route_me_harder vmlinux EXPORT_SYMBOL
-0x53613441 nf_ip_route vmlinux EXPORT_SYMBOL_GPL
-0x576f41fe tcp_bpf_sendmsg_redir vmlinux EXPORT_SYMBOL_GPL
-0xccdfa5b8 tcp_bpf_update_proto vmlinux EXPORT_SYMBOL_GPL
-0x7ef25cad udp_bpf_update_proto vmlinux EXPORT_SYMBOL_GPL
-0xe7e6e654 xfrm4_udp_encap_rcv vmlinux EXPORT_SYMBOL
-0xe53753cc xfrm4_rcv vmlinux EXPORT_SYMBOL
-0x340ebbca xfrm4_rcv_encap vmlinux EXPORT_SYMBOL
-0x70de4a9c xfrm4_protocol_register vmlinux EXPORT_SYMBOL
-0x6ccfd40a xfrm4_protocol_deregister vmlinux EXPORT_SYMBOL
-0xb5bb8057 __xfrm_dst_lookup vmlinux EXPORT_SYMBOL
-0xfe26028f xfrm_policy_alloc vmlinux EXPORT_SYMBOL
-0x14f95152 xfrm_policy_destroy vmlinux EXPORT_SYMBOL
-0x9e35dc68 xfrm_spd_getinfo vmlinux EXPORT_SYMBOL
-0xdc29e31d xfrm_policy_hash_rebuild vmlinux EXPORT_SYMBOL
-0x58a05d07 xfrm_policy_insert vmlinux EXPORT_SYMBOL
-0x3541d0ea xfrm_policy_bysel_ctx vmlinux EXPORT_SYMBOL
-0x5cdf204d xfrm_policy_byid vmlinux EXPORT_SYMBOL
-0xfc94fa2d xfrm_policy_flush vmlinux EXPORT_SYMBOL
-0x0144a544 xfrm_dev_policy_flush vmlinux EXPORT_SYMBOL
-0xcc3978ec xfrm_policy_walk vmlinux EXPORT_SYMBOL
-0xc9df055a xfrm_policy_walk_init vmlinux EXPORT_SYMBOL
-0xdc14e0eb xfrm_policy_walk_done vmlinux EXPORT_SYMBOL
-0x8ca513a2 xfrm_policy_delete vmlinux EXPORT_SYMBOL
-0x7beb8221 xfrm_lookup_with_ifid vmlinux EXPORT_SYMBOL
-0xcffcc0a2 xfrm_lookup vmlinux EXPORT_SYMBOL
-0x1ee8e1c0 xfrm_lookup_route vmlinux EXPORT_SYMBOL
-0xc36feae3 __xfrm_decode_session vmlinux EXPORT_SYMBOL
-0x855c7d0a __xfrm_policy_check vmlinux EXPORT_SYMBOL
-0x1755401c __xfrm_route_forward vmlinux EXPORT_SYMBOL
-0x6ac2c78a xfrm_dst_ifdown vmlinux EXPORT_SYMBOL
-0x94a3b816 xfrm_policy_register_afinfo vmlinux EXPORT_SYMBOL
-0xc801fb44 xfrm_policy_unregister_afinfo vmlinux EXPORT_SYMBOL
-0xa388fed0 xfrm_if_register_cb vmlinux EXPORT_SYMBOL
-0x582b6275 xfrm_if_unregister_cb vmlinux EXPORT_SYMBOL
-0x826bf852 xfrm_audit_policy_add vmlinux EXPORT_SYMBOL_GPL
-0x8c15c15f xfrm_audit_policy_delete vmlinux EXPORT_SYMBOL_GPL
-0x5dfbf9e1 xfrm_migrate vmlinux EXPORT_SYMBOL
-0x496df910 xfrm_register_type vmlinux EXPORT_SYMBOL
-0x8f356ffc xfrm_unregister_type vmlinux EXPORT_SYMBOL
-0x6e62f4d3 xfrm_register_type_offload vmlinux EXPORT_SYMBOL
-0x2db342a4 xfrm_unregister_type_offload vmlinux EXPORT_SYMBOL
-0x13692b72 xfrm_state_free vmlinux EXPORT_SYMBOL
-0x4268bef3 xfrm_state_alloc vmlinux EXPORT_SYMBOL
-0x18ae3b17 __xfrm_state_destroy vmlinux EXPORT_SYMBOL
-0x71c6868f __xfrm_state_delete vmlinux EXPORT_SYMBOL
-0x60568687 xfrm_state_delete vmlinux EXPORT_SYMBOL
-0xb6cb9ce2 xfrm_state_flush vmlinux EXPORT_SYMBOL
-0x5a8fdfa9 xfrm_dev_state_flush vmlinux EXPORT_SYMBOL
-0x72e873d5 xfrm_sad_getinfo vmlinux EXPORT_SYMBOL
-0x0efbaa66 xfrm_stateonly_find vmlinux EXPORT_SYMBOL
-0x9df6210a xfrm_state_lookup_byspi vmlinux EXPORT_SYMBOL
-0x5f2bffed xfrm_state_insert vmlinux EXPORT_SYMBOL
-0xd652b9c8 xfrm_state_add vmlinux EXPORT_SYMBOL
-0x43e2cd2f xfrm_migrate_state_find vmlinux EXPORT_SYMBOL
-0x548ea3d8 xfrm_state_migrate vmlinux EXPORT_SYMBOL
-0x6e97b36c xfrm_state_update vmlinux EXPORT_SYMBOL
-0xcd1d328f xfrm_state_check_expire vmlinux EXPORT_SYMBOL
-0x24d4a574 xfrm_state_lookup vmlinux EXPORT_SYMBOL
-0xf8aeae60 xfrm_state_lookup_byaddr vmlinux EXPORT_SYMBOL
-0xee1529ba xfrm_find_acq vmlinux EXPORT_SYMBOL
-0xff012791 xfrm_find_acq_byseq vmlinux EXPORT_SYMBOL
-0xb01bebf9 xfrm_get_acqseq vmlinux EXPORT_SYMBOL
-0xb9694405 verify_spi_info vmlinux EXPORT_SYMBOL
-0xe8036ca6 xfrm_alloc_spi vmlinux EXPORT_SYMBOL
-0xc79124bc xfrm_state_walk vmlinux EXPORT_SYMBOL
-0x2782b393 xfrm_state_walk_init vmlinux EXPORT_SYMBOL
-0xc8e7d8be xfrm_state_walk_done vmlinux EXPORT_SYMBOL
-0xd948c947 km_policy_notify vmlinux EXPORT_SYMBOL
-0xaa298364 km_state_notify vmlinux EXPORT_SYMBOL
-0x24661289 km_state_expired vmlinux EXPORT_SYMBOL
-0x71c0889e km_query vmlinux EXPORT_SYMBOL
-0xf8a61184 km_new_mapping vmlinux EXPORT_SYMBOL
-0xd462741f km_policy_expired vmlinux EXPORT_SYMBOL
-0x830ad6d9 km_migrate vmlinux EXPORT_SYMBOL
-0x4ac4f7db km_report vmlinux EXPORT_SYMBOL
-0xdb74e05f xfrm_user_policy vmlinux EXPORT_SYMBOL
-0x16070648 xfrm_register_km vmlinux EXPORT_SYMBOL
-0xdad1c01c xfrm_unregister_km vmlinux EXPORT_SYMBOL
-0xacbe1bd6 xfrm_state_register_afinfo vmlinux EXPORT_SYMBOL
-0x3e5ae98e xfrm_state_unregister_afinfo vmlinux EXPORT_SYMBOL
-0x4fbdad1e xfrm_state_afinfo_get_rcu vmlinux EXPORT_SYMBOL_GPL
-0x659ded26 xfrm_flush_gc vmlinux EXPORT_SYMBOL
-0xa42d6587 xfrm_state_delete_tunnel vmlinux EXPORT_SYMBOL
-0x57536af9 xfrm_state_mtu vmlinux EXPORT_SYMBOL_GPL
-0x498a4442 __xfrm_init_state vmlinux EXPORT_SYMBOL
-0x4f3940dd xfrm_init_state vmlinux EXPORT_SYMBOL
-0x79ba0d63 xfrm_audit_state_add vmlinux EXPORT_SYMBOL_GPL
-0xc28e16af xfrm_audit_state_delete vmlinux EXPORT_SYMBOL_GPL
-0x486c3960 xfrm_audit_state_replay_overflow vmlinux EXPORT_SYMBOL_GPL
-0xbf96e8c0 xfrm_audit_state_replay vmlinux EXPORT_SYMBOL_GPL
-0x2fa5569d xfrm_audit_state_notfound_simple vmlinux EXPORT_SYMBOL_GPL
-0xcb0dfb3e xfrm_audit_state_notfound vmlinux EXPORT_SYMBOL_GPL
-0x2e2c1674 xfrm_audit_state_icvfail vmlinux EXPORT_SYMBOL_GPL
-0x55063ccc xfrm_input_register_afinfo vmlinux EXPORT_SYMBOL
-0x8c477100 xfrm_input_unregister_afinfo vmlinux EXPORT_SYMBOL
-0xee2eccd4 secpath_set vmlinux EXPORT_SYMBOL
-0x22ed5349 xfrm_parse_spi vmlinux EXPORT_SYMBOL
-0x11269d22 xfrm_input vmlinux EXPORT_SYMBOL
-0xdc493e7f xfrm_input_resume vmlinux EXPORT_SYMBOL
-0x2eb9d3df xfrm_trans_queue_net vmlinux EXPORT_SYMBOL
-0x2b1b34d7 xfrm_trans_queue vmlinux EXPORT_SYMBOL
-0x5b43a114 pktgen_xfrm_outer_mode_output vmlinux EXPORT_SYMBOL_GPL
-0xa8d5e317 xfrm_output_resume vmlinux EXPORT_SYMBOL_GPL
-0xf6085cbd xfrm_output vmlinux EXPORT_SYMBOL_GPL
-0xcc4eedb1 xfrm_local_error vmlinux EXPORT_SYMBOL_GPL
-0x99140007 xfrm_replay_seqhi vmlinux EXPORT_SYMBOL
-0x4364c41e xfrm_init_replay vmlinux EXPORT_SYMBOL
-0xa8bc63d1 validate_xmit_xfrm vmlinux EXPORT_SYMBOL_GPL
-0x21e73d58 xfrm_dev_state_add vmlinux EXPORT_SYMBOL_GPL
-0x9e94dd10 xfrm_dev_policy_add vmlinux EXPORT_SYMBOL_GPL
-0xb7773f93 xfrm_dev_offload_ok vmlinux EXPORT_SYMBOL_GPL
-0x4b6665c3 xfrm_dev_resume vmlinux EXPORT_SYMBOL_GPL
-0x5c699441 xfrm_aalg_get_byid vmlinux EXPORT_SYMBOL_GPL
-0x00c80741 xfrm_ealg_get_byid vmlinux EXPORT_SYMBOL_GPL
-0x72395dc1 xfrm_calg_get_byid vmlinux EXPORT_SYMBOL_GPL
-0x37a02412 xfrm_aalg_get_byname vmlinux EXPORT_SYMBOL_GPL
-0xd6f50cf7 xfrm_ealg_get_byname vmlinux EXPORT_SYMBOL_GPL
-0xaab23340 xfrm_calg_get_byname vmlinux EXPORT_SYMBOL_GPL
-0x0049ca83 xfrm_aead_get_byname vmlinux EXPORT_SYMBOL_GPL
-0xc6b1fdbe xfrm_aalg_get_byidx vmlinux EXPORT_SYMBOL_GPL
-0xb73be794 xfrm_ealg_get_byidx vmlinux EXPORT_SYMBOL_GPL
-0x28e23139 xfrm_probe_algs vmlinux EXPORT_SYMBOL_GPL
-0x0a575945 xfrm_count_pfkey_auth_supported vmlinux EXPORT_SYMBOL_GPL
-0x7a8ca627 xfrm_count_pfkey_enc_supported vmlinux EXPORT_SYMBOL_GPL
-0x4a0c7516 xfrm_msg_min vmlinux EXPORT_SYMBOL_GPL
-0xbd4d9ba8 xfrma_policy vmlinux EXPORT_SYMBOL_GPL
-0x9b87ba4b unix_peer_get vmlinux EXPORT_SYMBOL_GPL
-0xdb83d45f unix_inq_len vmlinux EXPORT_SYMBOL_GPL
-0x5ca083bd unix_outq_len vmlinux EXPORT_SYMBOL_GPL
-0x1526b301 unix_tot_inflight vmlinux EXPORT_SYMBOL
-0x648eb59d gc_inflight_list vmlinux EXPORT_SYMBOL
-0x42bed8d4 unix_gc_lock vmlinux EXPORT_SYMBOL
-0x7f72cb3c unix_get_socket vmlinux EXPORT_SYMBOL
-0xe04bdb99 unix_attach_fds vmlinux EXPORT_SYMBOL
-0xb0f646ec unix_detach_fds vmlinux EXPORT_SYMBOL
-0xa0cfc8fa unix_destruct_scm vmlinux EXPORT_SYMBOL
-0x055e27db io_uring_destruct_scm vmlinux EXPORT_SYMBOL
-0x437eb1df ipv6_mod_enabled vmlinux EXPORT_SYMBOL_GPL
-0xd172c27d inet6_sock_destruct vmlinux EXPORT_SYMBOL_GPL
-0x7f7ea52a inet6_bind vmlinux EXPORT_SYMBOL
-0x72328ffb inet6_release vmlinux EXPORT_SYMBOL
-0x9b31dd48 inet6_cleanup_sock vmlinux EXPORT_SYMBOL_GPL
-0xec6204c2 inet6_getname vmlinux EXPORT_SYMBOL
-0x0f9d5e31 inet6_ioctl vmlinux EXPORT_SYMBOL
-0x395fdd9a inet6_compat_ioctl vmlinux EXPORT_SYMBOL_GPL
-0xad05282a inet6_register_protosw vmlinux EXPORT_SYMBOL
-0xf5ea8a12 inet6_unregister_protosw vmlinux EXPORT_SYMBOL
-0x9a7467c3 inet6_sk_rebuild_header vmlinux EXPORT_SYMBOL_GPL
-0xa4e96f6f ipv6_opt_accepted vmlinux EXPORT_SYMBOL_GPL
-0x434f6aed ip6_output vmlinux EXPORT_SYMBOL
-0x3dfc0487 ip6_xmit vmlinux EXPORT_SYMBOL
-0xc9e4759c ip6_fraglist_init vmlinux EXPORT_SYMBOL
-0x2f1ad92a ip6_fraglist_prepare vmlinux EXPORT_SYMBOL
-0x3ebcb6e6 ip6_frag_init vmlinux EXPORT_SYMBOL
-0x42a1da5f ip6_frag_next vmlinux EXPORT_SYMBOL
-0x34ed9b08 ip6_dst_lookup vmlinux EXPORT_SYMBOL_GPL
-0xbc95ef9f ip6_dst_lookup_flow vmlinux EXPORT_SYMBOL_GPL
-0xf9c5f1df ip6_sk_dst_lookup_flow vmlinux EXPORT_SYMBOL_GPL
-0x32a6d73d ip6_dst_lookup_tunnel vmlinux EXPORT_SYMBOL_GPL
-0xb4aa3f46 ip6_append_data vmlinux EXPORT_SYMBOL_GPL
-0x5193812f ip6_push_pending_frames vmlinux EXPORT_SYMBOL_GPL
-0x0e928dd6 ip6_flush_pending_frames vmlinux EXPORT_SYMBOL_GPL
-0x08f8017d ip6_input vmlinux EXPORT_SYMBOL_GPL
-0xe96d824d ipv6_dev_get_saddr vmlinux EXPORT_SYMBOL
-0x96adeebe ipv6_chk_addr vmlinux EXPORT_SYMBOL
-0xba0fded2 ipv6_chk_addr_and_flags vmlinux EXPORT_SYMBOL
-0x793f7989 ipv6_chk_custom_prefix vmlinux EXPORT_SYMBOL
-0x04341b11 ipv6_chk_prefix vmlinux EXPORT_SYMBOL
-0xefc0e9ac ipv6_dev_find vmlinux EXPORT_SYMBOL
-0x235a3dd8 addrconf_prefix_rcv_add_addr vmlinux EXPORT_SYMBOL_GPL
-0x072b8832 addrconf_add_linklocal vmlinux EXPORT_SYMBOL_GPL
-0x793ef066 __tracepoint_fib6_table_lookup vmlinux EXPORT_SYMBOL_GPL
-0x6913eec3 __traceiter_fib6_table_lookup vmlinux EXPORT_SYMBOL_GPL
-0x1c5cf9f4 __SCK__tp_func_fib6_table_lookup vmlinux EXPORT_SYMBOL_GPL
-0x156e8afe __SCT__tp_func_fib6_table_lookup vmlinux EXPORT_SYMBOL_GPL
-0x5e0419d7 ip6_dst_alloc vmlinux EXPORT_SYMBOL
-0x400d68c1 ip6_route_lookup vmlinux EXPORT_SYMBOL_GPL
-0xe250d179 rt6_lookup vmlinux EXPORT_SYMBOL
-0xc35e9096 ip6_pol_route vmlinux EXPORT_SYMBOL_GPL
-0x4ee1da1c ip6_route_input_lookup vmlinux EXPORT_SYMBOL_GPL
-0x16230a1d ip6_route_output_flags vmlinux EXPORT_SYMBOL_GPL
-0x37b974fd ip6_dst_check vmlinux EXPORT_SYMBOL
-0x393fb2f2 ip6_update_pmtu vmlinux EXPORT_SYMBOL_GPL
-0x9b5ca361 ip6_sk_update_pmtu vmlinux EXPORT_SYMBOL_GPL
-0x48bbcad3 ip6_redirect vmlinux EXPORT_SYMBOL_GPL
-0xe549f778 ip6_sk_redirect vmlinux EXPORT_SYMBOL_GPL
-0xebea342b ip6_mtu vmlinux EXPORT_SYMBOL
-0xd42c8ef1 fib6_info_hw_flags_set vmlinux EXPORT_SYMBOL
-0xa709c835 fib6_info_destroy_rcu vmlinux EXPORT_SYMBOL_GPL
-0x8c89127d fib6_new_table vmlinux EXPORT_SYMBOL_GPL
-0xc5b63a24 fib6_get_table vmlinux EXPORT_SYMBOL_GPL
-0xa4f9e252 ipv6_setsockopt vmlinux EXPORT_SYMBOL
-0x7f7734f3 ipv6_getsockopt vmlinux EXPORT_SYMBOL
-0x1890efe1 nd_tbl vmlinux EXPORT_SYMBOL_GPL
-0xb64bb765 __ndisc_fill_addr_option vmlinux EXPORT_SYMBOL_GPL
-0xd17902a7 ndisc_mc_map vmlinux EXPORT_SYMBOL
-0x960b32ff ndisc_send_skb vmlinux EXPORT_SYMBOL
-0xba2e5920 ndisc_ns_create vmlinux EXPORT_SYMBOL
-0x36f5963b __udp6_lib_lookup vmlinux EXPORT_SYMBOL_GPL
-0x3675becd udp6_lib_lookup vmlinux EXPORT_SYMBOL_GPL
-0x74e5ff1a udpv6_encap_enable vmlinux EXPORT_SYMBOL
-0x20c152c3 udpv6_sendmsg vmlinux EXPORT_SYMBOL
-0x65e7f0fe udp6_seq_ops vmlinux EXPORT_SYMBOL
-0x52eddb69 raw_v6_hashinfo vmlinux EXPORT_SYMBOL_GPL
-0xa63a4575 raw_v6_match vmlinux EXPORT_SYMBOL_GPL
-0x422e59ce rawv6_mh_filter_register vmlinux EXPORT_SYMBOL
-0x1000722b rawv6_mh_filter_unregister vmlinux EXPORT_SYMBOL
-0xeaf6d46c icmp6_send vmlinux EXPORT_SYMBOL
-0xd9689dff ip6_err_gen_icmpv6_unreach vmlinux EXPORT_SYMBOL
-0xae316c11 icmpv6_err_convert vmlinux EXPORT_SYMBOL
-0xcd40a63e ipv6_sock_mc_join vmlinux EXPORT_SYMBOL
-0x36f8bb13 ipv6_sock_mc_drop vmlinux EXPORT_SYMBOL
-0x6e2c897b ipv6_dev_mc_inc vmlinux EXPORT_SYMBOL
-0x3c5fd005 ipv6_dev_mc_dec vmlinux EXPORT_SYMBOL
-0xfaa78ecd tcpv6_prot vmlinux EXPORT_SYMBOL_GPL
-0x2421597d pingv6_prot vmlinux EXPORT_SYMBOL_GPL
-0x1947ff9e ipv6_push_frag_opts vmlinux EXPORT_SYMBOL
-0xd5616fc6 ipv6_dup_options vmlinux EXPORT_SYMBOL_GPL
-0x6f6b52e9 __ipv6_fixup_options vmlinux EXPORT_SYMBOL_GPL
-0x14cbc2c0 fl6_update_dst vmlinux EXPORT_SYMBOL_GPL
-0x1f350a8f ip6_datagram_release_cb vmlinux EXPORT_SYMBOL_GPL
-0x21fe69ae __ip6_datagram_connect vmlinux EXPORT_SYMBOL_GPL
-0x925960cd ip6_datagram_connect vmlinux EXPORT_SYMBOL_GPL
-0x3751ee8e ip6_datagram_connect_v6_only vmlinux EXPORT_SYMBOL_GPL
-0xc12f3c01 ipv6_icmp_error vmlinux EXPORT_SYMBOL_GPL
-0x8c0e38f9 ipv6_recv_error vmlinux EXPORT_SYMBOL_GPL
-0x159c6f60 ip6_datagram_recv_ctl vmlinux EXPORT_SYMBOL_GPL
-0x9b6650a7 ip6_datagram_send_ctl vmlinux EXPORT_SYMBOL_GPL
-0x1b546f1f ipv6_flowlabel_exclusive vmlinux EXPORT_SYMBOL
-0xe46e0e01 __fl6_sock_lookup vmlinux EXPORT_SYMBOL_GPL
-0xde1f7f36 fl6_merge_options vmlinux EXPORT_SYMBOL_GPL
-0x403073ba inet6_csk_route_req vmlinux EXPORT_SYMBOL
-0xf0522c0f inet6_csk_addr2sockaddr vmlinux EXPORT_SYMBOL_GPL
-0x7ad252b3 inet6_csk_xmit vmlinux EXPORT_SYMBOL_GPL
-0x8f120013 inet6_csk_update_pmtu vmlinux EXPORT_SYMBOL_GPL
-0xbac0b306 ip6mr_rule_default vmlinux EXPORT_SYMBOL
-0x2bd220f8 mroute6_is_socket vmlinux EXPORT_SYMBOL
-0xf9cca955 xfrm6_rcv_spi vmlinux EXPORT_SYMBOL
-0xd3103a12 xfrm6_rcv_tnl vmlinux EXPORT_SYMBOL
-0xb4eb6fd9 xfrm6_rcv vmlinux EXPORT_SYMBOL
-0x160bb1cb xfrm6_input_addr vmlinux EXPORT_SYMBOL
-0x7254406f xfrm6_rcv_encap vmlinux EXPORT_SYMBOL
-0x570f579e xfrm6_protocol_register vmlinux EXPORT_SYMBOL
-0xbadaa36b xfrm6_protocol_deregister vmlinux EXPORT_SYMBOL
-0xa4efa47a ip6_route_me_harder vmlinux EXPORT_SYMBOL
-0x6855b7dd __nf_ip6_route vmlinux EXPORT_SYMBOL_GPL
-0xb099e000 br_ip6_fragment vmlinux EXPORT_SYMBOL_GPL
-0x812a266b fib6_rule_default vmlinux EXPORT_SYMBOL_GPL
-0x18428692 __cookie_v6_init_sequence vmlinux EXPORT_SYMBOL_GPL
-0x9f5c6dc2 __cookie_v6_check vmlinux EXPORT_SYMBOL_GPL
-0x16d61758 __fib6_flush_trees vmlinux EXPORT_SYMBOL
-0x0d542439 __ipv6_addr_type vmlinux EXPORT_SYMBOL
-0x60352082 register_inet6addr_notifier vmlinux EXPORT_SYMBOL
-0x2fe252cc unregister_inet6addr_notifier vmlinux EXPORT_SYMBOL
-0xc7856a3d inet6addr_notifier_call_chain vmlinux EXPORT_SYMBOL
-0xa77bfd29 register_inet6addr_validator_notifier vmlinux EXPORT_SYMBOL
-0x47c65bfc unregister_inet6addr_validator_notifier vmlinux EXPORT_SYMBOL
-0xd4bb4a82 inet6addr_validator_notifier_call_chain vmlinux EXPORT_SYMBOL
-0xd0adc3fd ipv6_stub vmlinux EXPORT_SYMBOL_GPL
-0x38a9f7c5 in6addr_loopback vmlinux EXPORT_SYMBOL
-0x200b2041 in6addr_any vmlinux EXPORT_SYMBOL
-0xa0436e98 in6addr_linklocal_allnodes vmlinux EXPORT_SYMBOL
-0xc9634df9 in6addr_linklocal_allrouters vmlinux EXPORT_SYMBOL
-0xc872fd85 in6addr_interfacelocal_allnodes vmlinux EXPORT_SYMBOL
-0x5f098b2a in6addr_interfacelocal_allrouters vmlinux EXPORT_SYMBOL
-0xb9e8e2cc in6addr_sitelocal_allrouters vmlinux EXPORT_SYMBOL
-0xdc10e6a0 in6_dev_finish_destroy vmlinux EXPORT_SYMBOL
-0x452ba683 ipv6_ext_hdr vmlinux EXPORT_SYMBOL
-0x4444019e ipv6_skip_exthdr vmlinux EXPORT_SYMBOL
-0x96184b11 ipv6_find_tlv vmlinux EXPORT_SYMBOL_GPL
-0x5d909e8f ipv6_find_hdr vmlinux EXPORT_SYMBOL
-0x360fadb7 udp6_csum_init vmlinux EXPORT_SYMBOL
-0x15b250ef udp6_set_csum vmlinux EXPORT_SYMBOL
-0xe2226225 icmpv6_ndo_send vmlinux EXPORT_SYMBOL
-0x7dbe860f ipv6_proxy_select_ident vmlinux EXPORT_SYMBOL_GPL
-0x06749433 ipv6_select_ident vmlinux EXPORT_SYMBOL
-0x93df2419 ip6_find_1stfragopt vmlinux EXPORT_SYMBOL
-0xb631327e ip6_dst_hoplimit vmlinux EXPORT_SYMBOL
-0x286a8162 __ip6_local_out vmlinux EXPORT_SYMBOL_GPL
-0x8a495759 ip6_local_out vmlinux EXPORT_SYMBOL_GPL
-0xea268d93 inet6_protos vmlinux EXPORT_SYMBOL
-0x0aad3fba inet6_add_protocol vmlinux EXPORT_SYMBOL
-0x64b88479 inet6_del_protocol vmlinux EXPORT_SYMBOL
-0x7778f73a inet6_offloads vmlinux EXPORT_SYMBOL
-0xb8000171 inet6_add_offload vmlinux EXPORT_SYMBOL
-0x0a4a2b58 inet6_del_offload vmlinux EXPORT_SYMBOL
-0x883b0386 inet6_ehashfn vmlinux EXPORT_SYMBOL_GPL
-0x40dcb032 __inet6_lookup_established vmlinux EXPORT_SYMBOL
-0x76df6268 inet6_lookup_reuseport vmlinux EXPORT_SYMBOL_GPL
-0x0d73c337 inet6_lookup_run_sk_lookup vmlinux EXPORT_SYMBOL_GPL
-0x2bac3a8b inet6_lookup_listener vmlinux EXPORT_SYMBOL_GPL
-0x6902a677 inet6_lookup vmlinux EXPORT_SYMBOL_GPL
-0x6e3f167d inet6_hash_connect vmlinux EXPORT_SYMBOL_GPL
-0x58487b5b inet6_hash vmlinux EXPORT_SYMBOL_GPL
-0xec8b540a ipv6_mc_check_mld vmlinux EXPORT_SYMBOL
-0xdf448d1c fanout_mutex vmlinux EXPORT_SYMBOL_GPL
-0xb9a1506d __tracepoint_devlink_hwmsg vmlinux EXPORT_SYMBOL_GPL
-0x4f2fccc4 __traceiter_devlink_hwmsg vmlinux EXPORT_SYMBOL_GPL
-0x2300d4d9 __SCK__tp_func_devlink_hwmsg vmlinux EXPORT_SYMBOL_GPL
-0xa0d81b76 __SCT__tp_func_devlink_hwmsg vmlinux EXPORT_SYMBOL_GPL
-0x4a62f4a1 __tracepoint_devlink_hwerr vmlinux EXPORT_SYMBOL_GPL
-0xd009515f __traceiter_devlink_hwerr vmlinux EXPORT_SYMBOL_GPL
-0xd0c37015 __SCK__tp_func_devlink_hwerr vmlinux EXPORT_SYMBOL_GPL
-0x892f9f04 __SCT__tp_func_devlink_hwerr vmlinux EXPORT_SYMBOL_GPL
-0x5e931046 __tracepoint_devlink_trap_report vmlinux EXPORT_SYMBOL_GPL
-0xbd793ef9 __traceiter_devlink_trap_report vmlinux EXPORT_SYMBOL_GPL
-0x9efd1431 __SCK__tp_func_devlink_trap_report vmlinux EXPORT_SYMBOL_GPL
-0xd13a94d1 __SCT__tp_func_devlink_trap_report vmlinux EXPORT_SYMBOL_GPL
-0x8fbe3075 devlink_priv vmlinux EXPORT_SYMBOL_GPL
-0x768f85e5 priv_to_devlink vmlinux EXPORT_SYMBOL_GPL
-0x30a3f3eb devlink_to_dev vmlinux EXPORT_SYMBOL_GPL
-0x54977696 devlink_net vmlinux EXPORT_SYMBOL_GPL
-0xde204ba5 devl_assert_locked vmlinux EXPORT_SYMBOL_GPL
-0x119394fb devl_lock vmlinux EXPORT_SYMBOL_GPL
-0x18273c5c devl_trylock vmlinux EXPORT_SYMBOL_GPL
-0x521c8ed3 devl_unlock vmlinux EXPORT_SYMBOL_GPL
-0x544da501 devl_register vmlinux EXPORT_SYMBOL_GPL
-0x982bf681 devlink_register vmlinux EXPORT_SYMBOL_GPL
-0xc4a66054 devl_unregister vmlinux EXPORT_SYMBOL_GPL
-0x27cca67e devlink_unregister vmlinux EXPORT_SYMBOL_GPL
-0x4761f7c0 devlink_alloc_ns vmlinux EXPORT_SYMBOL_GPL
-0x2a0c066d devlink_free vmlinux EXPORT_SYMBOL_GPL
-0x7e2034ac devlink_is_reload_failed vmlinux EXPORT_SYMBOL_GPL
-0xb7de0b8a devlink_remote_reload_actions_performed vmlinux EXPORT_SYMBOL_GPL
-0x2c66ac85 devlink_info_serial_number_put vmlinux EXPORT_SYMBOL_GPL
-0x2009e400 devlink_info_board_serial_number_put vmlinux EXPORT_SYMBOL_GPL
-0x607c4683 devlink_info_version_fixed_put vmlinux EXPORT_SYMBOL_GPL
-0x52d54fce devlink_info_version_stored_put vmlinux EXPORT_SYMBOL_GPL
-0x86871b40 devlink_info_version_stored_put_ext vmlinux EXPORT_SYMBOL_GPL
-0xb1647fc2 devlink_info_version_running_put vmlinux EXPORT_SYMBOL_GPL
-0x8c9e54d3 devlink_info_version_running_put_ext vmlinux EXPORT_SYMBOL_GPL
-0x2dd56255 devlink_flash_update_status_notify vmlinux EXPORT_SYMBOL_GPL
-0x26a7e1c1 devlink_flash_update_timeout_notify vmlinux EXPORT_SYMBOL_GPL
-0x57f07db5 devlink_port_init vmlinux EXPORT_SYMBOL_GPL
-0x430b0dca devlink_port_fini vmlinux EXPORT_SYMBOL_GPL
-0x46ec9bc8 devl_port_register_with_ops vmlinux EXPORT_SYMBOL_GPL
-0x01b6e3fc devlink_port_register_with_ops vmlinux EXPORT_SYMBOL_GPL
-0x10b3f5c8 devl_port_unregister vmlinux EXPORT_SYMBOL_GPL
-0x2da9f725 devlink_port_unregister vmlinux EXPORT_SYMBOL_GPL
-0x58a82a1b devlink_port_type_eth_set vmlinux EXPORT_SYMBOL_GPL
-0x57b1a3d7 devlink_port_type_ib_set vmlinux EXPORT_SYMBOL_GPL
-0x7119d6ab devlink_port_type_clear vmlinux EXPORT_SYMBOL_GPL
-0xb0a87061 devlink_port_attrs_set vmlinux EXPORT_SYMBOL_GPL
-0xc4777f86 devlink_port_attrs_pci_pf_set vmlinux EXPORT_SYMBOL_GPL
-0x3b432dc5 devlink_port_attrs_pci_vf_set vmlinux EXPORT_SYMBOL_GPL
-0xa8665768 devlink_port_attrs_pci_sf_set vmlinux EXPORT_SYMBOL_GPL
-0xa81e666a devlink_port_linecard_set vmlinux EXPORT_SYMBOL_GPL
-0x7d463911 devl_sb_register vmlinux EXPORT_SYMBOL_GPL
-0xb3a72888 devlink_sb_register vmlinux EXPORT_SYMBOL_GPL
-0xf2276da5 devl_sb_unregister vmlinux EXPORT_SYMBOL_GPL
-0x869111f6 devlink_sb_unregister vmlinux EXPORT_SYMBOL_GPL
-0x7cb1aea1 devlink_dpipe_header_ethernet vmlinux EXPORT_SYMBOL_GPL
-0xc0b2664d devlink_dpipe_header_ipv4 vmlinux EXPORT_SYMBOL_GPL
-0xf28404cf devlink_dpipe_header_ipv6 vmlinux EXPORT_SYMBOL_GPL
-0xfc76afc3 devlink_dpipe_match_put vmlinux EXPORT_SYMBOL_GPL
-0x736eea96 devlink_dpipe_action_put vmlinux EXPORT_SYMBOL_GPL
-0xaef68d56 devlink_dpipe_entry_ctx_prepare vmlinux EXPORT_SYMBOL_GPL
-0x418f27ac devlink_dpipe_entry_ctx_append vmlinux EXPORT_SYMBOL_GPL
-0x0c7a39f5 devlink_dpipe_entry_ctx_close vmlinux EXPORT_SYMBOL_GPL
-0xd3eaf1ed devlink_dpipe_entry_clear vmlinux EXPORT_SYMBOL_GPL
-0x59f517b8 devl_dpipe_headers_register vmlinux EXPORT_SYMBOL_GPL
-0x399b897c devl_dpipe_headers_unregister vmlinux EXPORT_SYMBOL_GPL
-0x77abcc26 devlink_dpipe_table_counter_enabled vmlinux EXPORT_SYMBOL_GPL
-0xe5b2bd16 devl_dpipe_table_register vmlinux EXPORT_SYMBOL_GPL
-0x251fa849 devl_dpipe_table_unregister vmlinux EXPORT_SYMBOL_GPL
-0x0ee5c46a devl_dpipe_table_resource_set vmlinux EXPORT_SYMBOL_GPL
-0xde300442 devl_resource_register vmlinux EXPORT_SYMBOL_GPL
-0x64e5ff1a devlink_resource_register vmlinux EXPORT_SYMBOL_GPL
-0x43a09752 devl_resources_unregister vmlinux EXPORT_SYMBOL_GPL
-0x7eba95bf devlink_resources_unregister vmlinux EXPORT_SYMBOL_GPL
-0x7c6e00d1 devl_resource_size_get vmlinux EXPORT_SYMBOL_GPL
-0x7d69dcdc devl_resource_occ_get_register vmlinux EXPORT_SYMBOL_GPL
-0x00c6edad devlink_resource_occ_get_register vmlinux EXPORT_SYMBOL_GPL
-0x724be61d devl_resource_occ_get_unregister vmlinux EXPORT_SYMBOL_GPL
-0xa6917272 devlink_resource_occ_get_unregister vmlinux EXPORT_SYMBOL_GPL
-0x168a3d5a devl_params_register vmlinux EXPORT_SYMBOL_GPL
-0x55a0e8bb devlink_params_register vmlinux EXPORT_SYMBOL_GPL
-0xb81f1ebf devl_params_unregister vmlinux EXPORT_SYMBOL_GPL
-0x26f58471 devlink_params_unregister vmlinux EXPORT_SYMBOL_GPL
-0x303644bc devl_param_driverinit_value_get vmlinux EXPORT_SYMBOL_GPL
-0x4c545579 devl_param_driverinit_value_set vmlinux EXPORT_SYMBOL_GPL
-0x8167ffad devl_param_value_changed vmlinux EXPORT_SYMBOL_GPL
-0x152f718a devl_region_create vmlinux EXPORT_SYMBOL_GPL
-0xdf813d07 devlink_region_create vmlinux EXPORT_SYMBOL_GPL
-0x649b328d devlink_port_region_create vmlinux EXPORT_SYMBOL_GPL
-0x7a3f16a2 devl_region_destroy vmlinux EXPORT_SYMBOL_GPL
-0xa410a295 devlink_region_destroy vmlinux EXPORT_SYMBOL_GPL
-0xb270ea41 devlink_region_snapshot_id_get vmlinux EXPORT_SYMBOL_GPL
-0xe064573a devlink_region_snapshot_id_put vmlinux EXPORT_SYMBOL_GPL
-0x949b5176 devlink_region_snapshot_create vmlinux EXPORT_SYMBOL_GPL
-0xe40bb23e devlink_health_reporter_priv vmlinux EXPORT_SYMBOL_GPL
-0x84200112 devl_port_health_reporter_create vmlinux EXPORT_SYMBOL_GPL
-0x237edb7a devlink_port_health_reporter_create vmlinux EXPORT_SYMBOL_GPL
-0xd4bf25cb devl_health_reporter_create vmlinux EXPORT_SYMBOL_GPL
-0x538c262a devlink_health_reporter_create vmlinux EXPORT_SYMBOL_GPL
-0x530e0f8c devl_health_reporter_destroy vmlinux EXPORT_SYMBOL_GPL
-0x850bb6db devlink_health_reporter_destroy vmlinux EXPORT_SYMBOL_GPL
-0xd4b6157e devlink_health_reporter_recovery_done vmlinux EXPORT_SYMBOL_GPL
-0x93edef07 devlink_health_report vmlinux EXPORT_SYMBOL_GPL
-0x2b4509dd devlink_health_reporter_state_update vmlinux EXPORT_SYMBOL_GPL
-0x86585a33 devlink_fmsg_obj_nest_start vmlinux EXPORT_SYMBOL_GPL
-0x663bb448 devlink_fmsg_obj_nest_end vmlinux EXPORT_SYMBOL_GPL
-0xf7bc95b0 devlink_fmsg_pair_nest_start vmlinux EXPORT_SYMBOL_GPL
-0xb10d964d devlink_fmsg_pair_nest_end vmlinux EXPORT_SYMBOL_GPL
-0xbb6a3cbd devlink_fmsg_arr_pair_nest_start vmlinux EXPORT_SYMBOL_GPL
-0xe753b68d devlink_fmsg_arr_pair_nest_end vmlinux EXPORT_SYMBOL_GPL
-0x11df0e75 devlink_fmsg_binary_pair_nest_start vmlinux EXPORT_SYMBOL_GPL
-0x5358864e devlink_fmsg_binary_pair_nest_end vmlinux EXPORT_SYMBOL_GPL
-0x16da1f88 devlink_fmsg_u32_put vmlinux EXPORT_SYMBOL_GPL
-0x176031a7 devlink_fmsg_string_put vmlinux EXPORT_SYMBOL_GPL
-0x15510a89 devlink_fmsg_binary_put vmlinux EXPORT_SYMBOL_GPL
-0xa99ef899 devlink_fmsg_bool_pair_put vmlinux EXPORT_SYMBOL_GPL
-0xcfc5108a devlink_fmsg_u8_pair_put vmlinux EXPORT_SYMBOL_GPL
-0x893abbdd devlink_fmsg_u32_pair_put vmlinux EXPORT_SYMBOL_GPL
-0xb307c909 devlink_fmsg_u64_pair_put vmlinux EXPORT_SYMBOL_GPL
-0x234cf416 devlink_fmsg_string_pair_put vmlinux EXPORT_SYMBOL_GPL
-0x3fe6c346 devlink_fmsg_binary_pair_put vmlinux EXPORT_SYMBOL_GPL
-0x3f8048d2 devl_traps_register vmlinux EXPORT_SYMBOL_GPL
-0x2c7ef952 devlink_traps_register vmlinux EXPORT_SYMBOL_GPL
-0x1205c8ce devl_traps_unregister vmlinux EXPORT_SYMBOL_GPL
-0xea22f9ad devlink_traps_unregister vmlinux EXPORT_SYMBOL_GPL
-0xf0e0c11b devlink_trap_report vmlinux EXPORT_SYMBOL_GPL
-0x84106f36 devlink_trap_ctx_priv vmlinux EXPORT_SYMBOL_GPL
-0x08acc620 devl_trap_groups_register vmlinux EXPORT_SYMBOL_GPL
-0x4e429d51 devlink_trap_groups_register vmlinux EXPORT_SYMBOL_GPL
-0xc90ff715 devl_trap_groups_unregister vmlinux EXPORT_SYMBOL_GPL
-0xff88a41a devlink_trap_groups_unregister vmlinux EXPORT_SYMBOL_GPL
-0x99c04202 devl_trap_policers_register vmlinux EXPORT_SYMBOL_GPL
-0x8cbca131 devl_trap_policers_unregister vmlinux EXPORT_SYMBOL_GPL
-0x404f37ef devl_rate_node_create vmlinux EXPORT_SYMBOL_GPL
-0x42e7321a devl_rate_leaf_create vmlinux EXPORT_SYMBOL_GPL
-0xfb06acc5 devl_rate_leaf_destroy vmlinux EXPORT_SYMBOL_GPL
-0x9a51d9ef devl_rate_nodes_destroy vmlinux EXPORT_SYMBOL_GPL
-0xc58d126d devl_linecard_create vmlinux EXPORT_SYMBOL_GPL
-0x44cd885b devl_linecard_destroy vmlinux EXPORT_SYMBOL_GPL
-0xdd0f76fe devlink_linecard_provision_set vmlinux EXPORT_SYMBOL_GPL
-0x713a7ba9 devlink_linecard_provision_clear vmlinux EXPORT_SYMBOL_GPL
-0x3266c41a devlink_linecard_provision_fail vmlinux EXPORT_SYMBOL_GPL
-0x762dd5e6 devlink_linecard_activate vmlinux EXPORT_SYMBOL_GPL
-0x98cea7c1 devlink_linecard_deactivate vmlinux EXPORT_SYMBOL_GPL
-0x0229b026 devlink_linecard_nested_dl_set vmlinux EXPORT_SYMBOL_GPL
-0x9d4bd695 strp_process vmlinux EXPORT_SYMBOL_GPL
-0x131bd8f6 strp_data_ready vmlinux EXPORT_SYMBOL_GPL
-0x43d85eeb strp_init vmlinux EXPORT_SYMBOL_GPL
-0x9b2db92e __strp_unpause vmlinux EXPORT_SYMBOL_GPL
-0x81a1070d strp_unpause vmlinux EXPORT_SYMBOL_GPL
-0x51ac3ee4 strp_done vmlinux EXPORT_SYMBOL_GPL
-0x916bbc90 strp_stop vmlinux EXPORT_SYMBOL_GPL
-0x21ba9cef strp_check_rcv vmlinux EXPORT_SYMBOL_GPL
-0xbde29d8e __vlan_find_dev_deep_rcu vmlinux EXPORT_SYMBOL
-0xeae76169 vlan_dev_real_dev vmlinux EXPORT_SYMBOL
-0xdacb6476 vlan_dev_vlan_id vmlinux EXPORT_SYMBOL
-0x07973ab2 vlan_dev_vlan_proto vmlinux EXPORT_SYMBOL
-0x63c32a61 vlan_for_each vmlinux EXPORT_SYMBOL
-0x3b9fe39d vlan_filter_push_vids vmlinux EXPORT_SYMBOL
-0x2f3f9e8f vlan_filter_drop_vids vmlinux EXPORT_SYMBOL
-0x5d977d42 vlan_vid_add vmlinux EXPORT_SYMBOL
-0x108da78f vlan_vid_del vmlinux EXPORT_SYMBOL
-0x7cfc256f vlan_vids_add_by_dev vmlinux EXPORT_SYMBOL
-0xf56298fc vlan_vids_del_by_dev vmlinux EXPORT_SYMBOL
-0x0dc11bb8 vlan_uses_dev vmlinux EXPORT_SYMBOL
-0x6cb46525 netlbl_catmap_walk vmlinux EXPORT_SYMBOL
-0x7d4b176a netlbl_catmap_setbit vmlinux EXPORT_SYMBOL
-0x9a583306 netlbl_bitmap_walk vmlinux EXPORT_SYMBOL
-0x5506b8f7 netlbl_bitmap_setbit vmlinux EXPORT_SYMBOL
-0x8005cf66 netlbl_audit_start vmlinux EXPORT_SYMBOL
-0x7d33fd5b netlbl_calipso_ops_register vmlinux EXPORT_SYMBOL
-0x2ba50236 dcbnl_ieee_notify vmlinux EXPORT_SYMBOL
-0x0c01157a dcbnl_cee_notify vmlinux EXPORT_SYMBOL
-0x651941a4 dcb_getapp vmlinux EXPORT_SYMBOL
-0xa0a1b40e dcb_setapp vmlinux EXPORT_SYMBOL
-0x86a5d5c9 dcb_ieee_getapp_mask vmlinux EXPORT_SYMBOL
-0xeb8ff45d dcb_getrewr vmlinux EXPORT_SYMBOL
-0x37ef9353 dcb_setrewr vmlinux EXPORT_SYMBOL
-0x486e3e5f dcb_delrewr vmlinux EXPORT_SYMBOL
-0xdd56ae1d dcb_ieee_setapp vmlinux EXPORT_SYMBOL
-0x36f61951 dcb_ieee_delapp vmlinux EXPORT_SYMBOL
-0xf9ba5dc7 dcb_getrewr_prio_pcp_mask_map vmlinux EXPORT_SYMBOL
-0x1eecac04 dcb_getrewr_prio_dscp_mask_map vmlinux EXPORT_SYMBOL
-0x1d2507bd dcb_ieee_getapp_prio_dscp_mask_map vmlinux EXPORT_SYMBOL
-0x57460e11 dcb_ieee_getapp_dscp_prio_mask_map vmlinux EXPORT_SYMBOL
-0xb9085c06 dcb_ieee_getapp_default_prio_mask vmlinux EXPORT_SYMBOL
-0x93b3fc74 register_dcbevent_notifier vmlinux EXPORT_SYMBOL
-0x9b33e0d7 unregister_dcbevent_notifier vmlinux EXPORT_SYMBOL
-0x646b545b register_net_sysctl_sz vmlinux EXPORT_SYMBOL_GPL
-0xb805d2b3 unregister_net_sysctl_table vmlinux EXPORT_SYMBOL_GPL
-0x32929af6 nsh_push vmlinux EXPORT_SYMBOL_GPL
-0xf4f3a73c nsh_pop vmlinux EXPORT_SYMBOL_GPL
-0x36242943 switchdev_deferred_process vmlinux EXPORT_SYMBOL_GPL
-0xce93e031 switchdev_port_attr_set vmlinux EXPORT_SYMBOL_GPL
-0x20d9cff0 switchdev_port_obj_add vmlinux EXPORT_SYMBOL_GPL
-0x52c97af0 switchdev_port_obj_del vmlinux EXPORT_SYMBOL_GPL
-0xa77115fd switchdev_port_obj_act_is_deferred vmlinux EXPORT_SYMBOL_GPL
-0xad645234 register_switchdev_notifier vmlinux EXPORT_SYMBOL_GPL
-0xe2b3207a unregister_switchdev_notifier vmlinux EXPORT_SYMBOL_GPL
-0x9deb67d5 call_switchdev_notifiers vmlinux EXPORT_SYMBOL_GPL
-0xee38ef57 register_switchdev_blocking_notifier vmlinux EXPORT_SYMBOL_GPL
-0x8677245d unregister_switchdev_blocking_notifier vmlinux EXPORT_SYMBOL_GPL
-0x5bf040ef call_switchdev_blocking_notifiers vmlinux EXPORT_SYMBOL_GPL
-0x924f65ce switchdev_handle_fdb_event_to_device vmlinux EXPORT_SYMBOL_GPL
-0x51e2855a switchdev_handle_port_obj_add vmlinux EXPORT_SYMBOL_GPL
-0x0c1ca550 switchdev_handle_port_obj_add_foreign vmlinux EXPORT_SYMBOL_GPL
-0x06a7b736 switchdev_handle_port_obj_del vmlinux EXPORT_SYMBOL_GPL
-0x5efa5e34 switchdev_handle_port_obj_del_foreign vmlinux EXPORT_SYMBOL_GPL
-0x36c3d33b switchdev_handle_port_attr_set vmlinux EXPORT_SYMBOL_GPL
-0x4e82d399 switchdev_bridge_port_offload vmlinux EXPORT_SYMBOL_GPL
-0xa991c4ec switchdev_bridge_port_unoffload vmlinux EXPORT_SYMBOL_GPL
-0xb9fe4284 switchdev_bridge_port_replay vmlinux EXPORT_SYMBOL_GPL
-0x4ee6050b l3mdev_table_lookup_register vmlinux EXPORT_SYMBOL_GPL
-0xee01c266 l3mdev_table_lookup_unregister vmlinux EXPORT_SYMBOL_GPL
-0xac4dcd5f l3mdev_ifindex_lookup_by_table_id vmlinux EXPORT_SYMBOL_GPL
-0x2a608feb l3mdev_master_ifindex_rcu vmlinux EXPORT_SYMBOL_GPL
-0x93fe6de9 l3mdev_master_upper_ifindex_by_index_rcu vmlinux EXPORT_SYMBOL_GPL
-0xb4599ca2 l3mdev_fib_table_rcu vmlinux EXPORT_SYMBOL_GPL
-0xc99e9f26 l3mdev_fib_table_by_index vmlinux EXPORT_SYMBOL_GPL
-0xf330feed l3mdev_link_scope_lookup vmlinux EXPORT_SYMBOL_GPL
-0x501041a2 l3mdev_update_flow vmlinux EXPORT_SYMBOL_GPL
-0xc52b203b xsk_set_rx_need_wakeup vmlinux EXPORT_SYMBOL
-0x793e9cb3 xsk_set_tx_need_wakeup vmlinux EXPORT_SYMBOL
-0x5791cd25 xsk_clear_rx_need_wakeup vmlinux EXPORT_SYMBOL
-0xeb8471ad xsk_clear_tx_need_wakeup vmlinux EXPORT_SYMBOL
-0x1958308e xsk_uses_need_wakeup vmlinux EXPORT_SYMBOL
-0x0fe7829e xsk_get_pool_from_qid vmlinux EXPORT_SYMBOL
-0x8af32220 xsk_tx_completed vmlinux EXPORT_SYMBOL
-0x95df7b66 xsk_tx_release vmlinux EXPORT_SYMBOL
-0xcaf1fcdc xsk_tx_peek_desc vmlinux EXPORT_SYMBOL
-0x2b455515 xsk_tx_peek_release_desc_batch vmlinux EXPORT_SYMBOL
-0xa82b2d7e xp_set_rxq_info vmlinux EXPORT_SYMBOL
-0xeb92c25f xp_dma_unmap vmlinux EXPORT_SYMBOL
-0x56134b4e xp_dma_map vmlinux EXPORT_SYMBOL
-0x95a63c72 xp_alloc vmlinux EXPORT_SYMBOL
-0x723f17a0 xp_alloc_batch vmlinux EXPORT_SYMBOL
-0x4915e71c xp_can_alloc vmlinux EXPORT_SYMBOL
-0xf18721f7 xp_free vmlinux EXPORT_SYMBOL
-0x70f99a40 xp_raw_get_data vmlinux EXPORT_SYMBOL
-0xfceda988 xp_raw_get_dma vmlinux EXPORT_SYMBOL
-0x9026ea31 xp_dma_sync_for_cpu_slow vmlinux EXPORT_SYMBOL
-0x4300a6de xp_dma_sync_for_device_slow vmlinux EXPORT_SYMBOL
-0x1e104a15 mptcp_subflow_init_cookie_req vmlinux EXPORT_SYMBOL_GPL
-0x4f07470b mptcp_subflow_reqsk_alloc vmlinux EXPORT_SYMBOL
-0xe33339df mptcp_get_reset_option vmlinux EXPORT_SYMBOL_GPL
-0xa11b61be mptcp_token_get_sock vmlinux EXPORT_SYMBOL_GPL
-0x3b642722 mptcp_token_iter_next vmlinux EXPORT_SYMBOL_GPL
-0x8a8757be mptcp_pm_get_add_addr_signal_max vmlinux EXPORT_SYMBOL_GPL
-0x207f4403 mptcp_pm_get_add_addr_accept_max vmlinux EXPORT_SYMBOL_GPL
-0xfed2afb9 mptcp_pm_get_subflows_max vmlinux EXPORT_SYMBOL_GPL
-0xca1a272b mptcp_pm_get_local_addr_max vmlinux EXPORT_SYMBOL_GPL
-0x511ff26f mptcp_diag_fill_info vmlinux EXPORT_SYMBOL_GPL
-0xeb150c2b tls_get_record_type vmlinux EXPORT_SYMBOL
-0x071f13d7 tls_alert_recv vmlinux EXPORT_SYMBOL
-0x51fa5c77 handshake_genl_put vmlinux EXPORT_SYMBOL
-0x1bfaa3af handshake_req_alloc vmlinux EXPORT_SYMBOL
-0xef37857e handshake_req_private vmlinux EXPORT_SYMBOL
-0x9e2d18a9 handshake_req_submit vmlinux EXPORT_SYMBOL
-0xdd543eb4 handshake_req_cancel vmlinux EXPORT_SYMBOL
-0xe875f6f8 tls_client_hello_anon vmlinux EXPORT_SYMBOL
-0x2c6895ec tls_client_hello_x509 vmlinux EXPORT_SYMBOL
-0x95791c14 tls_client_hello_psk vmlinux EXPORT_SYMBOL
-0x8af824f8 tls_server_hello_x509 vmlinux EXPORT_SYMBOL
-0xb99f6fb1 tls_server_hello_psk vmlinux EXPORT_SYMBOL
-0xfe14cbd4 tls_handshake_cancel vmlinux EXPORT_SYMBOL
-0xa730fe51 tls_handshake_close vmlinux EXPORT_SYMBOL
-0xfdd4216d pcibios_align_resource vmlinux EXPORT_SYMBOL
-0x34ee545f xen_pci_frontend vmlinux EXPORT_SYMBOL_GPL
-0x9b9f3648 pcibios_scan_specific_bus vmlinux EXPORT_SYMBOL_GPL
-0xa4240c9b fb_pgprotect vmlinux EXPORT_SYMBOL
-0x3b62e280 fb_is_primary_device vmlinux EXPORT_SYMBOL
-0xe0b13336 argv_free vmlinux EXPORT_SYMBOL
-0x7380dffa argv_split vmlinux EXPORT_SYMBOL
-0xb0e10781 get_option vmlinux EXPORT_SYMBOL
-0x868acba5 get_options vmlinux EXPORT_SYMBOL
-0x27864d57 memparse vmlinux EXPORT_SYMBOL
-0xa033d747 next_arg vmlinux EXPORT_SYMBOL
-0x984d9c39 cpumask_next_wrap vmlinux EXPORT_SYMBOL
-0x0e23b37f alloc_cpumask_var_node vmlinux EXPORT_SYMBOL
-0xb86f74c5 free_cpumask_var vmlinux EXPORT_SYMBOL
-0xc8a91f5b cpumask_local_spread vmlinux EXPORT_SYMBOL
-0x2a85b203 cpumask_any_and_distribute vmlinux EXPORT_SYMBOL
-0x24a11e17 cpumask_any_distribute vmlinux EXPORT_SYMBOL
-0x11089ac7 _ctype vmlinux EXPORT_SYMBOL
-0xcf4fdd4d _atomic_dec_and_lock vmlinux EXPORT_SYMBOL
-0x48c093fb _atomic_dec_and_lock_irqsave vmlinux EXPORT_SYMBOL
-0x80762048 _atomic_dec_and_raw_lock vmlinux EXPORT_SYMBOL
-0x76efc249 _atomic_dec_and_raw_lock_irqsave vmlinux EXPORT_SYMBOL
-0x270cf88f dump_stack_lvl vmlinux EXPORT_SYMBOL
-0x6b2dc060 dump_stack vmlinux EXPORT_SYMBOL
-0xd9916c3a idr_alloc_u32 vmlinux EXPORT_SYMBOL_GPL
-0xb8f11603 idr_alloc vmlinux EXPORT_SYMBOL_GPL
-0x91f44510 idr_alloc_cyclic vmlinux EXPORT_SYMBOL
-0x7665a95b idr_remove vmlinux EXPORT_SYMBOL_GPL
-0x20978fb9 idr_find vmlinux EXPORT_SYMBOL_GPL
-0x1d40b6f3 idr_for_each vmlinux EXPORT_SYMBOL
-0xcc1b882a idr_get_next_ul vmlinux EXPORT_SYMBOL
-0xc57c48a3 idr_get_next vmlinux EXPORT_SYMBOL
-0x7b82b9a1 idr_replace vmlinux EXPORT_SYMBOL
-0xe7a02573 ida_alloc_range vmlinux EXPORT_SYMBOL
-0xffb7c514 ida_free vmlinux EXPORT_SYMBOL
-0xa7d5f92e ida_destroy vmlinux EXPORT_SYMBOL
-0xda26b8ea __irq_regs vmlinux EXPORT_SYMBOL
-0xd24e9e8c klist_init vmlinux EXPORT_SYMBOL_GPL
-0xe6f52443 klist_add_head vmlinux EXPORT_SYMBOL_GPL
-0x611cfa85 klist_add_tail vmlinux EXPORT_SYMBOL_GPL
-0x8339df73 klist_add_behind vmlinux EXPORT_SYMBOL_GPL
-0x40f8bd4e klist_add_before vmlinux EXPORT_SYMBOL_GPL
-0x153b60a6 klist_del vmlinux EXPORT_SYMBOL_GPL
-0xc82c721f klist_remove vmlinux EXPORT_SYMBOL_GPL
-0x2864abc9 klist_node_attached vmlinux EXPORT_SYMBOL_GPL
-0x977be5c7 klist_iter_init_node vmlinux EXPORT_SYMBOL_GPL
-0xe3cd5fae klist_iter_init vmlinux EXPORT_SYMBOL_GPL
-0x819d72cb klist_iter_exit vmlinux EXPORT_SYMBOL_GPL
-0x798b7682 klist_prev vmlinux EXPORT_SYMBOL_GPL
-0x355bc89a klist_next vmlinux EXPORT_SYMBOL_GPL
-0x1e4f96ad kobject_get_path vmlinux EXPORT_SYMBOL_GPL
-0x941ece1b kobject_set_name vmlinux EXPORT_SYMBOL
-0xab4ed0f4 kobject_init vmlinux EXPORT_SYMBOL
-0x35878887 kobject_add vmlinux EXPORT_SYMBOL
-0x456dfc78 kobject_init_and_add vmlinux EXPORT_SYMBOL_GPL
-0x01f89d38 kobject_rename vmlinux EXPORT_SYMBOL_GPL
-0x4c04a05e kobject_move vmlinux EXPORT_SYMBOL_GPL
-0xf6f5fb14 kobject_del vmlinux EXPORT_SYMBOL
-0x08bc9216 kobject_get vmlinux EXPORT_SYMBOL
-0x64d9e16c kobject_get_unless_zero vmlinux EXPORT_SYMBOL
-0x7ec63254 kobject_put vmlinux EXPORT_SYMBOL
-0x3948a65e kobject_create_and_add vmlinux EXPORT_SYMBOL_GPL
-0x15481e2d kobj_sysfs_ops vmlinux EXPORT_SYMBOL_GPL
-0x76782999 kset_register vmlinux EXPORT_SYMBOL
-0xd5706a0b kset_unregister vmlinux EXPORT_SYMBOL
-0x3271c55c kset_find_obj vmlinux EXPORT_SYMBOL_GPL
-0x88860602 kset_create_and_add vmlinux EXPORT_SYMBOL_GPL
-0x2d2dd36f kobj_ns_grab_current vmlinux EXPORT_SYMBOL_GPL
-0xc7fa4aa9 kobj_ns_drop vmlinux EXPORT_SYMBOL_GPL
-0x5e8a58e7 kobject_uevent_env vmlinux EXPORT_SYMBOL_GPL
-0xd020172d kobject_uevent vmlinux EXPORT_SYMBOL_GPL
-0x9c6febfc add_uevent_var vmlinux EXPORT_SYMBOL_GPL
-0xd0adf5f6 mas_walk vmlinux EXPORT_SYMBOL_GPL
-0x58fdc81b mas_empty_area vmlinux EXPORT_SYMBOL_GPL
-0xbfc4b11a mas_empty_area_rev vmlinux EXPORT_SYMBOL_GPL
-0xc59bde79 mas_store vmlinux EXPORT_SYMBOL_GPL
-0xf3fa33c9 mas_store_gfp vmlinux EXPORT_SYMBOL_GPL
-0x1c0d94ab mas_store_prealloc vmlinux EXPORT_SYMBOL_GPL
-0x3bc6fd12 mas_preallocate vmlinux EXPORT_SYMBOL_GPL
-0x8881b15f mas_destroy vmlinux EXPORT_SYMBOL_GPL
-0x044a7ec8 mas_expected_entries vmlinux EXPORT_SYMBOL_GPL
-0x0745d882 mas_next vmlinux EXPORT_SYMBOL_GPL
-0xc763f404 mas_next_range vmlinux EXPORT_SYMBOL_GPL
-0x96f27dc2 mt_next vmlinux EXPORT_SYMBOL_GPL
-0x7d0064e3 mas_prev vmlinux EXPORT_SYMBOL_GPL
-0x24508867 mas_prev_range vmlinux EXPORT_SYMBOL_GPL
-0x8954867c mt_prev vmlinux EXPORT_SYMBOL_GPL
-0xfba62c18 mas_pause vmlinux EXPORT_SYMBOL_GPL
-0x87b30034 mas_find vmlinux EXPORT_SYMBOL_GPL
-0xf04d620f mas_find_range vmlinux EXPORT_SYMBOL_GPL
-0x96df4d4a mas_find_rev vmlinux EXPORT_SYMBOL_GPL
-0xbef80508 mas_find_range_rev vmlinux EXPORT_SYMBOL_GPL
-0x8c5e64c0 mas_erase vmlinux EXPORT_SYMBOL_GPL
-0x04e8f828 mtree_load vmlinux EXPORT_SYMBOL
-0xee85f95c mtree_store_range vmlinux EXPORT_SYMBOL
-0x235895e1 mtree_store vmlinux EXPORT_SYMBOL
-0x9c4f18f7 mtree_insert_range vmlinux EXPORT_SYMBOL
-0xebd1f686 mtree_insert vmlinux EXPORT_SYMBOL
-0xfd41f138 mtree_alloc_range vmlinux EXPORT_SYMBOL
-0x46dc555d mtree_alloc_rrange vmlinux EXPORT_SYMBOL
-0xe13a1e8d mtree_erase vmlinux EXPORT_SYMBOL
-0x06c0fd61 __mt_dup vmlinux EXPORT_SYMBOL
-0x8d4e4b42 mtree_dup vmlinux EXPORT_SYMBOL
-0xab6813ae __mt_destroy vmlinux EXPORT_SYMBOL_GPL
-0x768eccb4 mtree_destroy vmlinux EXPORT_SYMBOL
-0xcda17fc3 mt_find vmlinux EXPORT_SYMBOL
-0x6273b946 mt_find_after vmlinux EXPORT_SYMBOL
-0xd64ed259 __memcat_p vmlinux EXPORT_SYMBOL_GPL
-0x16cb6a90 radix_tree_preloads vmlinux EXPORT_SYMBOL_GPL
-0x32ce3777 radix_tree_preload vmlinux EXPORT_SYMBOL
-0xb22e16d5 radix_tree_maybe_preload vmlinux EXPORT_SYMBOL
-0x6fbc6a00 radix_tree_insert vmlinux EXPORT_SYMBOL
-0x41efdeaf radix_tree_lookup_slot vmlinux EXPORT_SYMBOL
-0x70ad75fb radix_tree_lookup vmlinux EXPORT_SYMBOL
-0x69049cd2 radix_tree_replace_slot vmlinux EXPORT_SYMBOL
-0x4e20bcf8 radix_tree_tag_set vmlinux EXPORT_SYMBOL
-0x89434b4b radix_tree_tag_clear vmlinux EXPORT_SYMBOL
-0xad6ba40e radix_tree_tag_get vmlinux EXPORT_SYMBOL
-0x4967e79f radix_tree_iter_resume vmlinux EXPORT_SYMBOL
-0x2c541e7b radix_tree_next_chunk vmlinux EXPORT_SYMBOL
-0x6b27729b radix_tree_gang_lookup vmlinux EXPORT_SYMBOL
-0x6185b747 radix_tree_gang_lookup_tag vmlinux EXPORT_SYMBOL
-0x9a22391e radix_tree_gang_lookup_tag_slot vmlinux EXPORT_SYMBOL
-0x6dc35b25 radix_tree_iter_delete vmlinux EXPORT_SYMBOL
-0xd2237016 radix_tree_delete_item vmlinux EXPORT_SYMBOL
-0x4e6e4b41 radix_tree_delete vmlinux EXPORT_SYMBOL
-0x6d5f5b91 radix_tree_tagged vmlinux EXPORT_SYMBOL
-0x954f099c idr_preload vmlinux EXPORT_SYMBOL
-0x8e17b3ae idr_destroy vmlinux EXPORT_SYMBOL
-0x1d24c881 ___ratelimit vmlinux EXPORT_SYMBOL
-0x551bd071 __rb_erase_color vmlinux EXPORT_SYMBOL
-0xa5526619 rb_insert_color vmlinux EXPORT_SYMBOL
-0x4d9b652b rb_erase vmlinux EXPORT_SYMBOL
-0x120b336a __rb_insert_augmented vmlinux EXPORT_SYMBOL
-0xece784c2 rb_first vmlinux EXPORT_SYMBOL
-0xdf2c2742 rb_last vmlinux EXPORT_SYMBOL
-0xca9360b5 rb_next vmlinux EXPORT_SYMBOL
-0xf82ec573 rb_prev vmlinux EXPORT_SYMBOL
-0x7fe32873 rb_replace_node vmlinux EXPORT_SYMBOL
-0x7adc0fbf rb_replace_node_rcu vmlinux EXPORT_SYMBOL
-0x4e68e9be rb_next_postorder vmlinux EXPORT_SYMBOL
-0xee91879b rb_first_postorder vmlinux EXPORT_SYMBOL
-0xe397caf5 seq_buf_printf vmlinux EXPORT_SYMBOL_GPL
-0x695776c5 seq_buf_do_printk vmlinux EXPORT_SYMBOL_GPL
-0x0e4262c6 __siphash_unaligned vmlinux EXPORT_SYMBOL
-0x3126a9e8 siphash_1u64 vmlinux EXPORT_SYMBOL
-0x12cabc89 siphash_2u64 vmlinux EXPORT_SYMBOL
-0xa0ae1e73 siphash_3u64 vmlinux EXPORT_SYMBOL
-0x0e17678a siphash_4u64 vmlinux EXPORT_SYMBOL
-0x70002fe8 siphash_1u32 vmlinux EXPORT_SYMBOL
-0x838d2bc8 siphash_3u32 vmlinux EXPORT_SYMBOL
-0xcfd884a8 __hsiphash_unaligned vmlinux EXPORT_SYMBOL
-0x6481ffe0 hsiphash_1u32 vmlinux EXPORT_SYMBOL
-0x30acfde9 hsiphash_2u32 vmlinux EXPORT_SYMBOL
-0x9e0fa5ae hsiphash_3u32 vmlinux EXPORT_SYMBOL
-0xf643d104 hsiphash_4u32 vmlinux EXPORT_SYMBOL
-0x96b29254 strncasecmp vmlinux EXPORT_SYMBOL
-0xaafdc258 strcasecmp vmlinux EXPORT_SYMBOL
-0xe914e41e strcpy vmlinux EXPORT_SYMBOL
-0x9166fada strncpy vmlinux EXPORT_SYMBOL
-0x5792f848 strlcpy vmlinux EXPORT_SYMBOL
-0xdd64e639 strscpy vmlinux EXPORT_SYMBOL
-0xf4db35bc stpcpy vmlinux EXPORT_SYMBOL
-0x061651be strcat vmlinux EXPORT_SYMBOL
-0x2e2b40d2 strncat vmlinux EXPORT_SYMBOL
-0xf9c0b663 strlcat vmlinux EXPORT_SYMBOL
-0xe2d5255a strcmp vmlinux EXPORT_SYMBOL
-0x5a921311 strncmp vmlinux EXPORT_SYMBOL
-0x349cba85 strchr vmlinux EXPORT_SYMBOL
-0xceab0311 strchrnul vmlinux EXPORT_SYMBOL
-0x9f984513 strrchr vmlinux EXPORT_SYMBOL
-0x4841bdee strnchr vmlinux EXPORT_SYMBOL
-0x754d539c strlen vmlinux EXPORT_SYMBOL
-0xa916b694 strnlen vmlinux EXPORT_SYMBOL
-0xc29bf967 strspn vmlinux EXPORT_SYMBOL
-0x1ac5d3cb strcspn vmlinux EXPORT_SYMBOL
-0x9a1dfd65 strpbrk vmlinux EXPORT_SYMBOL
-0x85df9b6c strsep vmlinux EXPORT_SYMBOL
-0x449ad0a7 memcmp vmlinux EXPORT_SYMBOL
-0x263c3152 bcmp vmlinux EXPORT_SYMBOL
-0xf812cff6 memscan vmlinux EXPORT_SYMBOL
-0x1e6d26a8 strstr vmlinux EXPORT_SYMBOL
-0xc310b981 strnstr vmlinux EXPORT_SYMBOL
-0xa07a37f0 memchr vmlinux EXPORT_SYMBOL
-0x8df92f66 memchr_inv vmlinux EXPORT_SYMBOL
-0x6181e79f timerqueue_add vmlinux EXPORT_SYMBOL_GPL
-0x5a49dbc9 timerqueue_del vmlinux EXPORT_SYMBOL_GPL
-0x3ffdacf3 timerqueue_iterate_next vmlinux EXPORT_SYMBOL_GPL
-0x56fbb130 no_hash_pointers vmlinux EXPORT_SYMBOL_GPL
-0x61b7b126 simple_strtoull vmlinux EXPORT_SYMBOL
-0x20000329 simple_strtoul vmlinux EXPORT_SYMBOL
-0x0b742fd7 simple_strtol vmlinux EXPORT_SYMBOL
-0xd7e56a4e simple_strtoll vmlinux EXPORT_SYMBOL
-0x00148653 vsnprintf vmlinux EXPORT_SYMBOL
-0xaa0c318b vscnprintf vmlinux EXPORT_SYMBOL
-0x656e4a6e snprintf vmlinux EXPORT_SYMBOL
-0x96848186 scnprintf vmlinux EXPORT_SYMBOL
-0x78b887ed vsprintf vmlinux EXPORT_SYMBOL
-0x3c3ff9fd sprintf vmlinux EXPORT_SYMBOL
-0x2484e789 vbin_printf vmlinux EXPORT_SYMBOL_GPL
-0x108a0acd bstr_printf vmlinux EXPORT_SYMBOL_GPL
-0xf955e9c5 bprintf vmlinux EXPORT_SYMBOL_GPL
-0x50d035c2 vsscanf vmlinux EXPORT_SYMBOL
-0xbcab6ee6 sscanf vmlinux EXPORT_SYMBOL
-0xb911bb58 minmax_running_max vmlinux EXPORT_SYMBOL
-0xcabba344 xas_load vmlinux EXPORT_SYMBOL_GPL
-0x4675ce81 xas_nomem vmlinux EXPORT_SYMBOL_GPL
-0x99614d13 xas_create_range vmlinux EXPORT_SYMBOL_GPL
-0x5ec6818c xas_store vmlinux EXPORT_SYMBOL_GPL
-0x64d70857 xas_get_mark vmlinux EXPORT_SYMBOL_GPL
-0x40a27e3c xas_set_mark vmlinux EXPORT_SYMBOL_GPL
-0x79781b14 xas_clear_mark vmlinux EXPORT_SYMBOL_GPL
-0x69003533 xas_init_marks vmlinux EXPORT_SYMBOL_GPL
-0x4ec9c862 xas_split_alloc vmlinux EXPORT_SYMBOL_GPL
-0xa0c8146c xas_split vmlinux EXPORT_SYMBOL_GPL
-0x66e8bbe5 xas_pause vmlinux EXPORT_SYMBOL_GPL
-0x6183af22 __xas_prev vmlinux EXPORT_SYMBOL_GPL
-0x9df1845d __xas_next vmlinux EXPORT_SYMBOL_GPL
-0xf0354f81 xas_find vmlinux EXPORT_SYMBOL_GPL
-0xc19a8d37 xas_find_marked vmlinux EXPORT_SYMBOL_GPL
-0x2c6760b9 xas_find_conflict vmlinux EXPORT_SYMBOL_GPL
-0xa85a3e6d xa_load vmlinux EXPORT_SYMBOL
-0xe02c9c92 __xa_erase vmlinux EXPORT_SYMBOL
-0x0745a981 xa_erase vmlinux EXPORT_SYMBOL
-0xca9beaa4 __xa_store vmlinux EXPORT_SYMBOL
-0x5b3e282f xa_store vmlinux EXPORT_SYMBOL
-0x0a0ebc08 __xa_cmpxchg vmlinux EXPORT_SYMBOL
-0x7dcf4135 __xa_insert vmlinux EXPORT_SYMBOL
-0xe7257ab8 xa_store_range vmlinux EXPORT_SYMBOL
-0x6242ae98 xas_get_order vmlinux EXPORT_SYMBOL_GPL
-0xa72035f9 xa_get_order vmlinux EXPORT_SYMBOL
-0x9114b616 __xa_alloc vmlinux EXPORT_SYMBOL
-0xb04a43ad __xa_alloc_cyclic vmlinux EXPORT_SYMBOL
-0xe9af7397 __xa_set_mark vmlinux EXPORT_SYMBOL
-0xb9af1d0d __xa_clear_mark vmlinux EXPORT_SYMBOL
-0x01b6865c xa_get_mark vmlinux EXPORT_SYMBOL
-0x09da0ba4 xa_set_mark vmlinux EXPORT_SYMBOL
-0x131a6146 xa_clear_mark vmlinux EXPORT_SYMBOL
-0x8fa25c24 xa_find vmlinux EXPORT_SYMBOL
-0xdf36914b xa_find_after vmlinux EXPORT_SYMBOL
-0xa853396b xa_extract vmlinux EXPORT_SYMBOL
-0x15021b4a xa_delete_node vmlinux EXPORT_SYMBOL_GPL
-0xd9491c14 xa_destroy vmlinux EXPORT_SYMBOL
-0x23b4e0d7 clear_page_rep vmlinux EXPORT_SYMBOL_GPL
-0x0925493f clear_page_orig vmlinux EXPORT_SYMBOL_GPL
-0x9084b044 clear_page_erms vmlinux EXPORT_SYMBOL_GPL
-0xabf53b48 rep_stos_alternative vmlinux EXPORT_SYMBOL
-0xbc4e24bb copy_mc_to_kernel vmlinux EXPORT_SYMBOL_GPL
-0x33b84f74 copy_page vmlinux EXPORT_SYMBOL
-0x68a12ab8 rep_movs_alternative vmlinux EXPORT_SYMBOL
-0x3b423410 __copy_user_nocache vmlinux EXPORT_SYMBOL
-0x2c2f5a09 x86_family vmlinux EXPORT_SYMBOL_GPL
-0x6340434e x86_model vmlinux EXPORT_SYMBOL_GPL
-0x4c762b5c x86_stepping vmlinux EXPORT_SYMBOL_GPL
-0xe113bbbc csum_partial vmlinux EXPORT_SYMBOL
-0x20eadeb6 ip_compute_csum vmlinux EXPORT_SYMBOL
-0x9c65b78a csum_partial_copy_nocheck vmlinux EXPORT_SYMBOL
-0xb47cca30 csum_ipv6_magic vmlinux EXPORT_SYMBOL
-0x466c14a7 __delay vmlinux EXPORT_SYMBOL
-0xeae3dfd6 __const_udelay vmlinux EXPORT_SYMBOL
-0x9e7d6bd0 __udelay vmlinux EXPORT_SYMBOL
-0xdf8c695a __ndelay vmlinux EXPORT_SYMBOL
-0x167e7f9d __get_user_1 vmlinux EXPORT_SYMBOL
-0x8f9c199c __get_user_2 vmlinux EXPORT_SYMBOL
-0x6729d3df __get_user_4 vmlinux EXPORT_SYMBOL
-0x6d334118 __get_user_8 vmlinux EXPORT_SYMBOL
-0x4b5e3a47 __get_user_nocheck_1 vmlinux EXPORT_SYMBOL
-0xd2bc5c46 __get_user_nocheck_2 vmlinux EXPORT_SYMBOL
-0x3a099605 __get_user_nocheck_4 vmlinux EXPORT_SYMBOL
-0x301304c2 __get_user_nocheck_8 vmlinux EXPORT_SYMBOL
-0xecac8407 __memcpy vmlinux EXPORT_SYMBOL
-0x69acdf38 memcpy vmlinux EXPORT_SYMBOL
-0x06052f8d __memmove vmlinux EXPORT_SYMBOL
-0xb0e602eb memmove vmlinux EXPORT_SYMBOL
-0x04c62fd7 __memset vmlinux EXPORT_SYMBOL
-0xfb578fc5 memset vmlinux EXPORT_SYMBOL
-0xc3aaf0a9 __put_user_1 vmlinux EXPORT_SYMBOL
-0xfc3d53cb __put_user_nocheck_1 vmlinux EXPORT_SYMBOL
-0x5a4896a8 __put_user_2 vmlinux EXPORT_SYMBOL
-0x65df35ca __put_user_nocheck_2 vmlinux EXPORT_SYMBOL
-0xb2fd5ceb __put_user_4 vmlinux EXPORT_SYMBOL
-0x8d6aff89 __put_user_nocheck_4 vmlinux EXPORT_SYMBOL
-0xb8e7ce2c __put_user_8 vmlinux EXPORT_SYMBOL
-0x87706d4e __put_user_nocheck_8 vmlinux EXPORT_SYMBOL
-0x65487097 __x86_indirect_thunk_rax vmlinux EXPORT_SYMBOL
-0x66cca4f9 __x86_indirect_thunk_rcx vmlinux EXPORT_SYMBOL
-0x6383b27c __x86_indirect_thunk_rdx vmlinux EXPORT_SYMBOL
-0x670ecece __x86_indirect_thunk_rbx vmlinux EXPORT_SYMBOL
-0xb2338d81 __x86_indirect_thunk_rsp vmlinux EXPORT_SYMBOL
-0xafd744c6 __x86_indirect_thunk_rbp vmlinux EXPORT_SYMBOL
-0x29332499 __x86_indirect_thunk_rsi vmlinux EXPORT_SYMBOL
-0x305a916c __x86_indirect_thunk_rdi vmlinux EXPORT_SYMBOL
-0xf90a1e85 __x86_indirect_thunk_r8 vmlinux EXPORT_SYMBOL
-0xe0112fc4 __x86_indirect_thunk_r9 vmlinux EXPORT_SYMBOL
-0x31549b2a __x86_indirect_thunk_r10 vmlinux EXPORT_SYMBOL
-0x284faa6b __x86_indirect_thunk_r11 vmlinux EXPORT_SYMBOL
-0x0362f9a8 __x86_indirect_thunk_r12 vmlinux EXPORT_SYMBOL
-0x1a79c8e9 __x86_indirect_thunk_r13 vmlinux EXPORT_SYMBOL
-0x55385e2e __x86_indirect_thunk_r14 vmlinux EXPORT_SYMBOL
-0x4c236f6f __x86_indirect_thunk_r15 vmlinux EXPORT_SYMBOL
-0x67cc9453 __x86_indirect_call_thunk_rax vmlinux EXPORT_SYMBOL
-0x6448403d __x86_indirect_call_thunk_rcx vmlinux EXPORT_SYMBOL
-0x610756b8 __x86_indirect_call_thunk_rdx vmlinux EXPORT_SYMBOL
-0x658a2a0a __x86_indirect_call_thunk_rbx vmlinux EXPORT_SYMBOL
-0xb0b76945 __x86_indirect_call_thunk_rsp vmlinux EXPORT_SYMBOL
-0xad53a002 __x86_indirect_call_thunk_rbp vmlinux EXPORT_SYMBOL
-0x2bb7c05d __x86_indirect_call_thunk_rsi vmlinux EXPORT_SYMBOL
-0x32de75a8 __x86_indirect_call_thunk_rdi vmlinux EXPORT_SYMBOL
-0x107dd046 __x86_indirect_call_thunk_r8 vmlinux EXPORT_SYMBOL
-0x0966e107 __x86_indirect_call_thunk_r9 vmlinux EXPORT_SYMBOL
-0x33d07fee __x86_indirect_call_thunk_r10 vmlinux EXPORT_SYMBOL
-0x2acb4eaf __x86_indirect_call_thunk_r11 vmlinux EXPORT_SYMBOL
-0x01e61d6c __x86_indirect_call_thunk_r12 vmlinux EXPORT_SYMBOL
-0x18fd2c2d __x86_indirect_call_thunk_r13 vmlinux EXPORT_SYMBOL
-0x57bcbaea __x86_indirect_call_thunk_r14 vmlinux EXPORT_SYMBOL
-0x4ea78bab __x86_indirect_call_thunk_r15 vmlinux EXPORT_SYMBOL
-0xba2449b3 __x86_indirect_jump_thunk_rax vmlinux EXPORT_SYMBOL
-0xb9a09ddd __x86_indirect_jump_thunk_rcx vmlinux EXPORT_SYMBOL
-0xbcef8b58 __x86_indirect_jump_thunk_rdx vmlinux EXPORT_SYMBOL
-0xb862f7ea __x86_indirect_jump_thunk_rbx vmlinux EXPORT_SYMBOL
-0x6d5fb4a5 __x86_indirect_jump_thunk_rsp vmlinux EXPORT_SYMBOL
-0x70bb7de2 __x86_indirect_jump_thunk_rbp vmlinux EXPORT_SYMBOL
-0xf65f1dbd __x86_indirect_jump_thunk_rsi vmlinux EXPORT_SYMBOL
-0xef36a848 __x86_indirect_jump_thunk_rdi vmlinux EXPORT_SYMBOL
-0xf5dcf929 __x86_indirect_jump_thunk_r8 vmlinux EXPORT_SYMBOL
-0xecc7c868 __x86_indirect_jump_thunk_r9 vmlinux EXPORT_SYMBOL
-0xee38a20e __x86_indirect_jump_thunk_r10 vmlinux EXPORT_SYMBOL
-0xf723934f __x86_indirect_jump_thunk_r11 vmlinux EXPORT_SYMBOL
-0xdc0ec08c __x86_indirect_jump_thunk_r12 vmlinux EXPORT_SYMBOL
-0xc515f1cd __x86_indirect_jump_thunk_r13 vmlinux EXPORT_SYMBOL
-0x8a54670a __x86_indirect_jump_thunk_r14 vmlinux EXPORT_SYMBOL
-0x934f564b __x86_indirect_jump_thunk_r15 vmlinux EXPORT_SYMBOL
-0xfeea58f2 srso_alias_untrain_ret vmlinux EXPORT_SYMBOL
-0x45fc19d2 retbleed_untrain_ret vmlinux EXPORT_SYMBOL
-0x177a82c3 entry_untrain_ret vmlinux EXPORT_SYMBOL
-0x5b8239ca __x86_return_thunk vmlinux EXPORT_SYMBOL
-0x0fcc1969 copy_from_user_nmi vmlinux EXPORT_SYMBOL_GPL
-0x25301bc6 arch_wb_cache_pmem vmlinux EXPORT_SYMBOL_GPL
-0x328e3354 __memcpy_flushcache vmlinux EXPORT_SYMBOL_GPL
-0x7c7bf6e0 twofish_enc_blk arch/x86/crypto/twofish-x86_64 EXPORT_SYMBOL_GPL
-0x1f491d36 twofish_dec_blk arch/x86/crypto/twofish-x86_64 EXPORT_SYMBOL_GPL
-0xe4ae7508 __twofish_enc_blk_3way arch/x86/crypto/twofish-x86_64-3way EXPORT_SYMBOL_GPL
-0xb4e98a46 twofish_dec_blk_3way arch/x86/crypto/twofish-x86_64-3way EXPORT_SYMBOL_GPL
-0x92a51c43 twofish_dec_blk_cbc_3way arch/x86/crypto/twofish-x86_64-3way EXPORT_SYMBOL_GPL
-0x194b2841 serpent_ecb_enc_8way_avx arch/x86/crypto/serpent-avx-x86_64 EXPORT_SYMBOL_GPL
-0x4140192a serpent_ecb_dec_8way_avx arch/x86/crypto/serpent-avx-x86_64 EXPORT_SYMBOL_GPL
-0x38800636 serpent_cbc_dec_8way_avx arch/x86/crypto/serpent-avx-x86_64 EXPORT_SYMBOL_GPL
-0xfe729ed6 __camellia_enc_blk arch/x86/crypto/camellia-x86_64 EXPORT_SYMBOL_GPL
-0xff09bd65 camellia_dec_blk arch/x86/crypto/camellia-x86_64 EXPORT_SYMBOL_GPL
-0x69f4ff25 __camellia_enc_blk_2way arch/x86/crypto/camellia-x86_64 EXPORT_SYMBOL_GPL
-0x0b901549 camellia_dec_blk_2way arch/x86/crypto/camellia-x86_64 EXPORT_SYMBOL_GPL
-0x8d725052 __camellia_setkey arch/x86/crypto/camellia-x86_64 EXPORT_SYMBOL_GPL
-0x8d9b761c camellia_decrypt_cbc_2way arch/x86/crypto/camellia-x86_64 EXPORT_SYMBOL_GPL
-0x2c8b5dbf camellia_ecb_enc_16way arch/x86/crypto/camellia-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0x8b44ee75 camellia_ecb_dec_16way arch/x86/crypto/camellia-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0x339c33c5 camellia_cbc_dec_16way arch/x86/crypto/camellia-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0xdd8ec6bd hchacha_block_arch arch/x86/crypto/chacha-x86_64 EXPORT_SYMBOL
-0xdc94f829 chacha_init_arch arch/x86/crypto/chacha-x86_64 EXPORT_SYMBOL
-0x220b49ab chacha_crypt_arch arch/x86/crypto/chacha-x86_64 EXPORT_SYMBOL
-0xe1df0e1b poly1305_init_arch arch/x86/crypto/poly1305-x86_64 EXPORT_SYMBOL
-0xd9ec23eb poly1305_update_arch arch/x86/crypto/poly1305-x86_64 EXPORT_SYMBOL
-0xfaeb41b2 poly1305_final_arch arch/x86/crypto/poly1305-x86_64 EXPORT_SYMBOL
-0x45e48e82 sm4_avx_ecb_encrypt arch/x86/crypto/sm4-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0x1d2415a4 sm4_avx_ecb_decrypt arch/x86/crypto/sm4-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0xc9ceb649 sm4_cbc_encrypt arch/x86/crypto/sm4-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0x5471b46d sm4_avx_cbc_decrypt arch/x86/crypto/sm4-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0x3fc67a9c sm4_cfb_encrypt arch/x86/crypto/sm4-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0x9d196390 sm4_avx_cfb_decrypt arch/x86/crypto/sm4-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0x0c3096c3 sm4_avx_ctr_crypt arch/x86/crypto/sm4-aesni-avx-x86_64 EXPORT_SYMBOL_GPL
-0xa2e59c0a zx_sm3_zero_message_hash arch/x86/crypto/sm3-zhaoxin-gmi EXPORT_SYMBOL_GPL
-0xf0d4458f zx_sm3_update arch/x86/crypto/sm3-zhaoxin-gmi EXPORT_SYMBOL
-0x18aa4c8e zx_sm3_finup arch/x86/crypto/sm3-zhaoxin-gmi EXPORT_SYMBOL
-0x7d1b7939 gmi_sm4_set_key arch/x86/crypto/sm4-zhaoxin-gmi EXPORT_SYMBOL_GPL
-0x59e640c0 halt_poll_ns arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7afe324e halt_poll_ns_grow arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5fb8848b halt_poll_ns_grow_start arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x39fd83db halt_poll_ns_shrink arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x61338cd7 kvm_debugfs_dir arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3ad5a857 vcpu_load arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xafcd94e4 vcpu_put arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1e1e6899 kvm_make_all_cpus_request arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8d0ec436 kvm_flush_remote_tlbs arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xda8cb93c kvm_destroy_vcpus arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6f736459 kvm_get_kvm arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2e7413af kvm_get_kvm_safe arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x56b8b4b0 kvm_put_kvm arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb20f2b90 kvm_put_kvm_no_destroy arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x19e34462 __kvm_set_memory_region arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x15c4a586 kvm_set_memory_region arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb17b6a69 gfn_to_memslot arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xde82b0cc kvm_is_visible_gfn arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6c8a85ad kvm_vcpu_is_visible_gfn arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x981e3866 gfn_to_hva_memslot arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4ec3ae17 gfn_to_hva arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6abfe3dc kvm_vcpu_gfn_to_hva arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x34af4f9d __gfn_to_pfn_memslot arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa496c5b6 gfn_to_pfn_prot arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4c78ca7b gfn_to_pfn_memslot arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc13494bc gfn_to_pfn_memslot_atomic arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x64436c50 kvm_vcpu_gfn_to_pfn_atomic arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf33b7cb1 gfn_to_pfn arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x86fc44e2 kvm_vcpu_gfn_to_pfn arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf7d1c3e0 gfn_to_page_many_atomic arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9f645eea gfn_to_page arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xcc94aab7 kvm_vcpu_map arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5a57bad2 kvm_vcpu_unmap arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc5404fde kvm_release_page_clean arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4e3fd1b4 kvm_release_pfn_clean arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4d000976 kvm_release_page_dirty arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7c94c99a kvm_release_pfn_dirty arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa1c4231f kvm_set_pfn_dirty arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6892e3c3 kvm_set_pfn_accessed arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xaf53f2a8 kvm_read_guest_page arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6fe065a5 kvm_vcpu_read_guest_page arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x60888ca0 kvm_read_guest arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb46ded59 kvm_vcpu_read_guest arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x26b58da5 kvm_vcpu_read_guest_atomic arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x60a581e4 kvm_write_guest_page arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x661d84bf kvm_vcpu_write_guest_page arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x945c9040 kvm_write_guest arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb3e76464 kvm_vcpu_write_guest arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5798f4ea kvm_gfn_to_hva_cache_init arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa8ec8958 kvm_write_guest_offset_cached arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x32f55e52 kvm_write_guest_cached arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2f7d13b6 kvm_read_guest_offset_cached arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3d4615f8 kvm_read_guest_cached arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2be01336 kvm_clear_guest arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8842e7c6 mark_page_dirty_in_slot arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa089a0ae mark_page_dirty arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbbb63beb kvm_vcpu_mark_page_dirty arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8240f6d9 kvm_vcpu_halt arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xe864c2dd kvm_vcpu_wake_up arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x22178987 kvm_vcpu_kick arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9f8102a1 kvm_vcpu_yield_to arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x77b3d7b9 kvm_vcpu_on_spin arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb0e1abca kvm_are_all_memslots_empty arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1f56f3ac file_is_kvm arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x485cd7f6 kvm_rebooting arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd8ba8c8a kvm_io_bus_write arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7b7bc696 kvm_io_bus_get_dev arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x97531765 kvm_get_running_vcpu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x15c2cf11 kvm_init arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x27046576 kvm_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd4e1e539 kvm_irq_has_notifier arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x56821113 kvm_gpc_check arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc0b18fc9 kvm_gpc_refresh arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x99f4c3b1 kvm_gpc_init arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xe7ac165d kvm_gpc_activate arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x400c328c kvm_gpc_deactivate arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6bc792a4 kvm_caps arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8b52dacb __SCK__kvm_x86_get_cs_db_l_bits arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x46b24166 __SCK__kvm_x86_cache_reg arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x59387ba3 __SCT__kvm_x86_cache_reg arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc96d35f4 report_ignored_msrs arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1db1c372 enable_vmware_backdoor arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb82c0987 enable_pmu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0b58a11d kvm_nr_uret_msrs arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x159b8d5e host_efer arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9cf59e7a allow_smaller_maxphyaddr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xce576a13 enable_apicv arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6c95726c host_xss arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xe54c1a0d host_arch_capabilities arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7fe19488 kvm_add_user_return_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3ab2794c kvm_find_user_return_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x053614ec kvm_set_user_return_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1f85d1ed kvm_get_apic_mode arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x709cd8cb kvm_spurious_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa1f1b3b0 kvm_deliver_exception_payload arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1770399d kvm_queue_exception arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9050eee1 kvm_requeue_exception arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3daffbfa kvm_queue_exception_p arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x10b8b8de kvm_complete_insn_gp arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x049c7ccb kvm_inject_emulated_page_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9f03c9aa kvm_queue_exception_e arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0ef2190a kvm_requeue_exception_e arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf10eb726 kvm_require_dr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8f7a533b load_pdptrs arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4da88002 kvm_post_set_cr0 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xffe0d9f7 kvm_set_cr0 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc176ffe9 kvm_lmsw arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbaab7633 kvm_load_guest_xsave_state arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x73b16cad kvm_load_host_xsave_state arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x47c5a061 kvm_emulate_xsetbv arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0d60ae48 __kvm_is_valid_cr4 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x058b99a7 kvm_post_set_cr4 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc7d8a52c kvm_set_cr4 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9b2eb93c kvm_set_cr3 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8f902041 kvm_set_cr8 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc53b9067 kvm_get_cr8 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x71028b2a kvm_update_dr7 arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x47dadbab kvm_set_dr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x79be0352 kvm_get_dr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd138fb46 kvm_emulate_rdpmc arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5f295712 kvm_valid_efer arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1d013832 kvm_enable_efer_bits arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd8c3e640 kvm_msr_allowed arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xacfafb25 kvm_get_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf3963d3d kvm_set_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0eaa1422 kvm_emulate_rdmsr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf4470c60 kvm_emulate_wrmsr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9e7df9d6 kvm_emulate_invd arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xaef754c7 kvm_handle_invalid_op arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4148da49 kvm_emulate_mwait arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf104b9e5 kvm_emulate_monitor arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6acabb51 handle_fastpath_set_msr_irqoff arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa468d17d kvm_read_l1_tsc arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6303c089 kvm_calc_nested_tsc_offset arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xef14fd98 kvm_calc_nested_tsc_multiplier arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x46106196 kvm_service_local_tlb_flush_requests arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0d3fd132 kvm_set_msr_common arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xfd03f3d4 kvm_get_msr_common arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd8b981fa kvm_mmu_gva_to_gpa_read arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xed0c72b1 kvm_mmu_gva_to_gpa_write arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x86066a83 kvm_read_guest_virt arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc88b5b7f kvm_write_guest_virt_system arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbeea3b0d handle_ud arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc1604538 kvm_emulate_wbinvd arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4e973626 kvm_inject_realmode_interrupt arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xefee3f1f __kvm_prepare_emulation_failure_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x92600a66 kvm_prepare_emulation_failure_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbb366499 kvm_skip_emulated_instruction arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xfb55e61d x86_decode_emulated_instruction arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb44a12cc kvm_emulate_instruction arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xe621543e kvm_emulate_instruction_from_buffer arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1d49ff53 kvm_fast_pio arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2ec2b5c2 kvm_x86_vendor_init arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x687b78fc kvm_x86_vendor_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x222bf6a9 kvm_emulate_halt_noskip arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xaa70138b kvm_emulate_halt arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd0f3983e kvm_emulate_ap_reset_hold arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8d5efebb kvm_apicv_activated arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb31c5282 kvm_vcpu_apicv_activated arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x06eb1dd3 kvm_emulate_hypercall arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x50eca73d __kvm_vcpu_update_apicv arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x71183ebd kvm_set_or_clear_apicv_inhibit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xadb33979 __kvm_request_immediate_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf0510211 kvm_task_switch arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xae50acf8 kvm_vcpu_reset arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc6727a3f kvm_vcpu_deliver_sipi_vector arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3f510ff5 kvm_has_noapic_vcpu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0d97d314 __x86_set_memory_region arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x43190707 kvm_get_linear_rip arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb0c4a3b5 kvm_is_linear_rip arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0bc95ad5 kvm_get_rflags arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xdad578c3 kvm_set_rflags arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x42896e09 kvm_arch_start_assignment arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x720f43fb kvm_arch_end_assignment arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x640dd8b9 kvm_arch_has_assigned_device arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x17c5f13c kvm_arch_register_noncoherent_dma arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd3a53d51 kvm_arch_unregister_noncoherent_dma arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x204aeea2 kvm_arch_has_noncoherent_dma arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd426afd4 kvm_arch_no_poll arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2d82cc24 kvm_spec_ctrl_test_value arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9d1416d2 kvm_fixup_and_inject_pf_error arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x306e61df kvm_handle_memory_failure arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x92d87cbd kvm_handle_invpcid arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6c94502a kvm_sev_es_mmio_write arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x98510fd9 kvm_sev_es_mmio_read arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2cf68761 kvm_sev_es_string_io arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbce50023 __tracepoint_kvm_entry arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf9c59908 __traceiter_kvm_entry arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9840cfa9 __SCK__tp_func_kvm_entry arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc071e99f __SCT__tp_func_kvm_entry arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa9883f01 __tracepoint_kvm_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x91e3071e __traceiter_kvm_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb8e413f2 __SCK__tp_func_kvm_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x616e6c95 __SCT__tp_func_kvm_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x09519d31 __tracepoint_kvm_fast_mmio arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x752c2b00 __traceiter_kvm_fast_mmio arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xfe35b66e __SCK__tp_func_kvm_fast_mmio arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xea5cda33 __SCT__tp_func_kvm_fast_mmio arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x41be61a8 __tracepoint_kvm_inj_virq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7f51547e __traceiter_kvm_inj_virq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x47c2633c __SCK__tp_func_kvm_inj_virq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6becaded __SCT__tp_func_kvm_inj_virq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd6ac614e __tracepoint_kvm_page_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5f300435 __traceiter_kvm_page_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2d8f4900 __SCK__tp_func_kvm_page_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7ff2a104 __SCT__tp_func_kvm_page_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x372abb93 __tracepoint_kvm_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xdc7369fe __traceiter_kvm_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5a0d1448 __SCK__tp_func_kvm_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf084b57d __SCT__tp_func_kvm_msr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6b0a3f7e __tracepoint_kvm_cr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x17f9cfe3 __traceiter_kvm_cr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x91410f6b __SCK__tp_func_kvm_cr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x778e30b9 __SCT__tp_func_kvm_cr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8e7256e7 __tracepoint_kvm_nested_vmenter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x74910627 __traceiter_kvm_nested_vmenter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x57213244 __SCK__tp_func_kvm_nested_vmenter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x74e34533 __tracepoint_kvm_nested_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x63496e9a __traceiter_kvm_nested_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf1dd3ada __SCK__tp_func_kvm_nested_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2510fc6d __SCT__tp_func_kvm_nested_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6c2d1414 __tracepoint_kvm_nested_vmexit_inject arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x114eb824 __traceiter_kvm_nested_vmexit_inject arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc4f7082a __SCK__tp_func_kvm_nested_vmexit_inject arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x792b7531 __tracepoint_kvm_nested_intr_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x912a9286 __traceiter_kvm_nested_intr_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x07b2c4c1 __SCK__tp_func_kvm_nested_intr_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc0a72291 __tracepoint_kvm_nested_vmenter_failed arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x23263c0a __traceiter_kvm_nested_vmenter_failed arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x016ee526 __SCK__tp_func_kvm_nested_vmenter_failed arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7592ea3d __tracepoint_kvm_invlpga arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x54c1e24a __traceiter_kvm_invlpga arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbf256178 __SCK__tp_func_kvm_invlpga arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4a1c261b __SCT__tp_func_kvm_invlpga arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5f3ae344 __tracepoint_kvm_skinit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb96e9aa1 __traceiter_kvm_skinit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x52732cb5 __SCK__tp_func_kvm_skinit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xe0e786a7 __SCT__tp_func_kvm_skinit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf12e6c77 __tracepoint_kvm_nested_intercepts arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa6a50230 __traceiter_kvm_nested_intercepts arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd9e3217a __SCK__tp_func_kvm_nested_intercepts arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa588ef67 __SCT__tp_func_kvm_nested_intercepts arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7743970f __tracepoint_kvm_write_tsc_offset arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5c11e105 __traceiter_kvm_write_tsc_offset arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb8b60437 __SCK__tp_func_kvm_write_tsc_offset arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8b833c9a __tracepoint_kvm_ple_window_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1412f042 __traceiter_kvm_ple_window_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa34e7197 __SCK__tp_func_kvm_ple_window_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x93a3e40e __SCT__tp_func_kvm_ple_window_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3f793a98 __tracepoint_kvm_pml_full arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc60d7d0c __traceiter_kvm_pml_full arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3905380c __SCK__tp_func_kvm_pml_full arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf2df48f3 __SCT__tp_func_kvm_pml_full arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x799a8e21 __tracepoint_kvm_pi_irte_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x45e80fdf __traceiter_kvm_pi_irte_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa0c9ea82 __SCK__tp_func_kvm_pi_irte_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x388e0e10 __SCT__tp_func_kvm_pi_irte_update arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x26d618fd __tracepoint_kvm_avic_unaccelerated_access arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc4c8703a __SCK__tp_func_kvm_avic_unaccelerated_access arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x82f0c154 __tracepoint_kvm_avic_incomplete_ipi arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3f33aaf9 __SCK__tp_func_kvm_avic_incomplete_ipi arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x87309f13 __tracepoint_kvm_avic_ga_log arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa7022320 __traceiter_kvm_avic_ga_log arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x16afd0ac __SCK__tp_func_kvm_avic_ga_log arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1d1b139a __SCT__tp_func_kvm_avic_ga_log arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc8c48f7a __tracepoint_kvm_avic_kick_vcpu_slowpath arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x664021df __SCK__tp_func_kvm_avic_kick_vcpu_slowpath arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2401ce3b __tracepoint_kvm_avic_doorbell arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc7fe55ac __traceiter_kvm_avic_doorbell arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa13fb1d2 __SCK__tp_func_kvm_avic_doorbell arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8e35057e __tracepoint_kvm_apicv_accept_irq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x3d93fb92 __traceiter_kvm_apicv_accept_irq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x41c09646 __SCK__tp_func_kvm_apicv_accept_irq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x485ec4ea __tracepoint_kvm_vmgexit_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8f3a890e __traceiter_kvm_vmgexit_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xcd60bb03 __SCK__tp_func_kvm_vmgexit_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x54a8fa09 __tracepoint_kvm_vmgexit_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7510a39a __traceiter_kvm_vmgexit_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0fe7cb5b __SCK__tp_func_kvm_vmgexit_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x48644036 __SCT__tp_func_kvm_vmgexit_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa34dad2f __tracepoint_kvm_vmgexit_msr_protocol_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa6afe454 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x49f700cc __tracepoint_kvm_vmgexit_msr_protocol_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xabe9680b __SCK__tp_func_kvm_vmgexit_msr_protocol_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xee11e981 kvm_cpu_has_injectable_intr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd52a246e kvm_cpu_has_interrupt arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x45203870 kvm_cpu_get_interrupt arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6243ac82 __kvm_apic_update_irr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc0daf988 kvm_apic_update_irr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2fd1ad91 kvm_apic_clear_irr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x736d364e kvm_lapic_find_highest_irr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x8b6a904f kvm_apic_update_ppr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x50c106dc kvm_apic_match_dest arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x40361c9d kvm_apic_set_eoi_accelerated arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x888b6db1 kvm_apic_send_ipi arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x14c1d0c4 kvm_lapic_readable_reg_mask arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa73e48b0 kvm_wait_lapic_expire arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x2fd43043 kvm_lapic_expired_hv_timer arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5d675277 kvm_lapic_set_eoi arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd862ee59 kvm_apic_write_nodecode arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd5d44e6d kvm_alloc_apic_access_page arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd4e7abcf kvm_apic_has_interrupt arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbcd13744 kvm_set_msi_irq arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x115e81e6 kvm_intr_is_single_vcpu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x87fa988f kvm_cpu_caps arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x87fec208 kvm_update_cpuid_runtime arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5d996b31 kvm_set_cpu_caps arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x19b510f3 kvm_find_cpuid_entry_index arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x41fd3109 kvm_find_cpuid_entry arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb323f25c kvm_cpuid arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x43e7bdf2 kvm_emulate_cpuid arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xd475c188 kvm_pmu_cap arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0bbe5608 kvm_pmu_trigger_event arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0833271b kvm_mtrr_get_guest_memory_type arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x91ddba4f kvm_hv_assist_page_enabled arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb1da270c kvm_hv_get_assist_page arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa7e5da44 kvm_mmu_free_roots arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x61d3dd06 kvm_mmu_free_guest_mode_roots arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5526ee3d kvm_handle_page_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xdb1a3656 kvm_mmu_new_pgd arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x78b57b8f kvm_init_shadow_npt_mmu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xa0e6caa2 kvm_init_shadow_ept_mmu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x66a70d5a kvm_init_mmu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xfd672958 kvm_mmu_reset_context arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb54e0d91 kvm_mmu_page_fault arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x22dcd3ed kvm_mmu_invalidate_addr arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6d5cab94 kvm_mmu_invlpg arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x06cdc8d1 kvm_configure_mmu arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x9567d724 kvm_page_track_register_notifier arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xc717238e kvm_page_track_unregister_notifier arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x7b38ff4b kvm_write_track_add_gfn arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x0da3aefb kvm_write_track_remove_gfn arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xfab33e4c enable_mmio_caching arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x6ada8f59 kvm_mmu_set_mmio_spte_mask arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xbd9d6dfc kvm_mmu_set_me_spte_mask arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x5bf7cde0 kvm_mmu_set_ept_masks arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xfed9e823 hv_flush_remote_tlbs_range arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb2569432 hv_flush_remote_tlbs arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0x853e9f42 hv_track_root_tdp arch/x86/kvm/kvm EXPORT_SYMBOL_GPL
-0xb968688c nfsacl_encode fs/nfs_common/nfs_acl EXPORT_SYMBOL_GPL
-0x07422af3 nfs_stream_encode_acl fs/nfs_common/nfs_acl EXPORT_SYMBOL_GPL
-0x532e7d0f nfsacl_decode fs/nfs_common/nfs_acl EXPORT_SYMBOL_GPL
-0xc6658585 nfs_stream_decode_acl fs/nfs_common/nfs_acl EXPORT_SYMBOL_GPL
-0x52446bf7 locks_start_grace fs/nfs_common/grace EXPORT_SYMBOL_GPL
-0x1fe1e1ad locks_end_grace fs/nfs_common/grace EXPORT_SYMBOL_GPL
-0xa5be9309 locks_in_grace fs/nfs_common/grace EXPORT_SYMBOL_GPL
-0x29159a49 opens_in_grace fs/nfs_common/grace EXPORT_SYMBOL_GPL
-0x850bd8af vm_handle_pte_hole fs/proc/etmem_scan EXPORT_SYMBOL_GPL
-0x4c81e490 NlsUniUpperTable fs/nls/nls_ucs2_utils EXPORT_SYMBOL_GPL
-0x9aedbfd8 NlsUniUpperRange fs/nls/nls_ucs2_utils EXPORT_SYMBOL_GPL
-0x0fd902db mb_cache_entry_create fs/mbcache EXPORT_SYMBOL
-0x8bdfc47c __mb_cache_entry_free fs/mbcache EXPORT_SYMBOL
-0xf3932313 mb_cache_entry_wait_unused fs/mbcache EXPORT_SYMBOL
-0x50b80992 mb_cache_entry_find_first fs/mbcache EXPORT_SYMBOL
-0x481814c4 mb_cache_entry_find_next fs/mbcache EXPORT_SYMBOL
-0x26897b52 mb_cache_entry_get fs/mbcache EXPORT_SYMBOL
-0x61347034 mb_cache_entry_delete_or_get fs/mbcache EXPORT_SYMBOL
-0x0a012f73 mb_cache_entry_touch fs/mbcache EXPORT_SYMBOL
-0xdd2c169b mb_cache_create fs/mbcache EXPORT_SYMBOL
-0xd5263820 mb_cache_destroy fs/mbcache EXPORT_SYMBOL
-0xcd224e1d dlm_new_lockspace fs/dlm/dlm EXPORT_SYMBOL_GPL
-0xcf9f3328 dlm_release_lockspace fs/dlm/dlm EXPORT_SYMBOL_GPL
-0x8a6c5f1b dlm_lock fs/dlm/dlm EXPORT_SYMBOL_GPL
-0x4b62826c dlm_unlock fs/dlm/dlm EXPORT_SYMBOL_GPL
-0x8fb1e141 dlm_posix_lock fs/dlm/dlm EXPORT_SYMBOL_GPL
-0xac2c85fb dlm_posix_unlock fs/dlm/dlm EXPORT_SYMBOL_GPL
-0x9e3ffd5c dlm_posix_cancel fs/dlm/dlm EXPORT_SYMBOL_GPL
-0xc59b63fe dlm_posix_get fs/dlm/dlm EXPORT_SYMBOL_GPL
-0x7505cd2e netfs_readahead fs/netfs/netfs EXPORT_SYMBOL
-0xc93a7311 netfs_read_folio fs/netfs/netfs EXPORT_SYMBOL
-0x8b150503 netfs_write_begin fs/netfs/netfs EXPORT_SYMBOL
-0x10049a79 netfs_subreq_terminated fs/netfs/netfs EXPORT_SYMBOL
-0xda4ec567 netfs_extract_user_iter fs/netfs/netfs EXPORT_SYMBOL_GPL
-0xe82797b4 netfs_stats_show fs/netfs/netfs EXPORT_SYMBOL
-0x557a775f fscache_addremove_sem fs/fscache/fscache EXPORT_SYMBOL
-0x8c2d6da7 fscache_clearance_waiters fs/fscache/fscache EXPORT_SYMBOL
-0xe9709a77 fscache_acquire_cache fs/fscache/fscache EXPORT_SYMBOL
-0x7b1c660e fscache_relinquish_cache fs/fscache/fscache EXPORT_SYMBOL
-0x4fa7b014 fscache_add_cache fs/fscache/fscache EXPORT_SYMBOL
-0xa9114f7d fscache_io_error fs/fscache/fscache EXPORT_SYMBOL
-0xd2d3c90f fscache_withdraw_cache fs/fscache/fscache EXPORT_SYMBOL
-0xe74c33d2 fscache_end_cookie_access fs/fscache/fscache EXPORT_SYMBOL
-0x411f5102 fscache_cookie_lookup_negative fs/fscache/fscache EXPORT_SYMBOL
-0x549967c3 fscache_resume_after_invalidation fs/fscache/fscache EXPORT_SYMBOL
-0x8859b49e fscache_caching_failed fs/fscache/fscache EXPORT_SYMBOL
-0xc48492f9 __fscache_acquire_cookie fs/fscache/fscache EXPORT_SYMBOL
-0x403606b5 __fscache_use_cookie fs/fscache/fscache EXPORT_SYMBOL
-0xa4a37203 __fscache_unuse_cookie fs/fscache/fscache EXPORT_SYMBOL
-0x6e8fd7b3 fscache_withdraw_cookie fs/fscache/fscache EXPORT_SYMBOL
-0x483c3311 __fscache_relinquish_cookie fs/fscache/fscache EXPORT_SYMBOL
-0xc978dea3 fscache_put_cookie fs/fscache/fscache EXPORT_SYMBOL
-0xb8a7c75f fscache_get_cookie fs/fscache/fscache EXPORT_SYMBOL
-0x67158dbe __fscache_invalidate fs/fscache/fscache EXPORT_SYMBOL
-0x87c2efa3 fscache_wait_for_operation fs/fscache/fscache EXPORT_SYMBOL
-0x8fad842d __fscache_begin_read_operation fs/fscache/fscache EXPORT_SYMBOL
-0x96378f4b __fscache_begin_write_operation fs/fscache/fscache EXPORT_SYMBOL
-0xe197eb82 fscache_dirty_folio fs/fscache/fscache EXPORT_SYMBOL
-0x49077f98 __fscache_clear_page_bits fs/fscache/fscache EXPORT_SYMBOL
-0x8895eaf6 __fscache_write_to_cache fs/fscache/fscache EXPORT_SYMBOL
-0x1b813428 __fscache_resize_cookie fs/fscache/fscache EXPORT_SYMBOL
-0x16d46f78 __tracepoint_fscache_access_cache fs/fscache/fscache EXPORT_SYMBOL
-0xae6040a5 __traceiter_fscache_access_cache fs/fscache/fscache EXPORT_SYMBOL
-0x7efe0546 __SCK__tp_func_fscache_access_cache fs/fscache/fscache EXPORT_SYMBOL
-0x7c87e02d __SCT__tp_func_fscache_access_cache fs/fscache/fscache EXPORT_SYMBOL
-0x1b76c256 __tracepoint_fscache_access_volume fs/fscache/fscache EXPORT_SYMBOL
-0x234a140d __traceiter_fscache_access_volume fs/fscache/fscache EXPORT_SYMBOL
-0xda7ff597 __SCK__tp_func_fscache_access_volume fs/fscache/fscache EXPORT_SYMBOL
-0x7b1b25da __SCT__tp_func_fscache_access_volume fs/fscache/fscache EXPORT_SYMBOL
-0x9ed5341b __tracepoint_fscache_access fs/fscache/fscache EXPORT_SYMBOL
-0xdcb87498 __traceiter_fscache_access fs/fscache/fscache EXPORT_SYMBOL
-0x74a58aec __SCK__tp_func_fscache_access fs/fscache/fscache EXPORT_SYMBOL
-0x5954d7ac __SCT__tp_func_fscache_access fs/fscache/fscache EXPORT_SYMBOL
-0xbca46908 fscache_wq fs/fscache/fscache EXPORT_SYMBOL
-0x3ec7e0b7 fscache_end_volume_access fs/fscache/fscache EXPORT_SYMBOL
-0x71d81304 __fscache_acquire_volume fs/fscache/fscache EXPORT_SYMBOL
-0x605ce4d2 __fscache_relinquish_volume fs/fscache/fscache EXPORT_SYMBOL
-0x8e2fc79a fscache_withdraw_volume fs/fscache/fscache EXPORT_SYMBOL
-0x4996bd29 fscache_n_updates fs/fscache/fscache EXPORT_SYMBOL
-0x9ffefcb2 fscache_n_read fs/fscache/fscache EXPORT_SYMBOL
-0x1a0d09e7 fscache_n_write fs/fscache/fscache EXPORT_SYMBOL
-0xcce11a60 fscache_n_no_write_space fs/fscache/fscache EXPORT_SYMBOL
-0x4404d2aa fscache_n_no_create_space fs/fscache/fscache EXPORT_SYMBOL
-0x90d447f3 fscache_n_culled fs/fscache/fscache EXPORT_SYMBOL
-0xad309651 jbd2__journal_start fs/jbd2/jbd2 EXPORT_SYMBOL
-0x55e35c6f jbd2_journal_start fs/jbd2/jbd2 EXPORT_SYMBOL
-0x757b2487 jbd2_journal_free_reserved fs/jbd2/jbd2 EXPORT_SYMBOL
-0xbf9bd688 jbd2_journal_start_reserved fs/jbd2/jbd2 EXPORT_SYMBOL
-0x87a8fadf jbd2__journal_restart fs/jbd2/jbd2 EXPORT_SYMBOL
-0x8e284923 jbd2_journal_restart fs/jbd2/jbd2 EXPORT_SYMBOL
-0x63615d14 jbd2_submit_inode_data fs/jbd2/jbd2 EXPORT_SYMBOL
-0x0947c621 jbd2_wait_inode_data fs/jbd2/jbd2 EXPORT_SYMBOL
-0xf9aaf79a jbd2_journal_extend fs/jbd2/jbd2 EXPORT_SYMBOL
-0x169d844a jbd2_journal_stop fs/jbd2/jbd2 EXPORT_SYMBOL
-0x4efde2a7 jbd2_journal_lock_updates fs/jbd2/jbd2 EXPORT_SYMBOL
-0x9532600a jbd2_journal_unlock_updates fs/jbd2/jbd2 EXPORT_SYMBOL
-0x265cdd93 jbd2_journal_get_write_access fs/jbd2/jbd2 EXPORT_SYMBOL
-0x40741850 jbd2_journal_get_create_access fs/jbd2/jbd2 EXPORT_SYMBOL
-0xac5a6d04 jbd2_journal_get_undo_access fs/jbd2/jbd2 EXPORT_SYMBOL
-0xe3e96fe0 jbd2_journal_set_triggers fs/jbd2/jbd2 EXPORT_SYMBOL
-0x3532f0f1 jbd2_journal_dirty_metadata fs/jbd2/jbd2 EXPORT_SYMBOL
-0x0a37b83d jbd2_journal_forget fs/jbd2/jbd2 EXPORT_SYMBOL
-0x74ebd25b jbd2_journal_flush fs/jbd2/jbd2 EXPORT_SYMBOL
-0x52d781f8 jbd2_journal_revoke fs/jbd2/jbd2 EXPORT_SYMBOL
-0x00772ada jbd2_journal_init_dev fs/jbd2/jbd2 EXPORT_SYMBOL
-0x9923f5a2 jbd2_journal_init_inode fs/jbd2/jbd2 EXPORT_SYMBOL
-0x7f35e3a2 jbd2_journal_check_used_features fs/jbd2/jbd2 EXPORT_SYMBOL
-0x197355a9 jbd2_journal_check_available_features fs/jbd2/jbd2 EXPORT_SYMBOL
-0x5aa8db42 jbd2_journal_set_features fs/jbd2/jbd2 EXPORT_SYMBOL
-0x851fd1d4 jbd2_journal_load fs/jbd2/jbd2 EXPORT_SYMBOL
-0x732545fc jbd2_journal_destroy fs/jbd2/jbd2 EXPORT_SYMBOL
-0x36e1e1cd jbd2_journal_abort fs/jbd2/jbd2 EXPORT_SYMBOL
-0x4e5c1a71 jbd2_journal_errno fs/jbd2/jbd2 EXPORT_SYMBOL
-0xce2f0db0 jbd2_journal_ack_err fs/jbd2/jbd2 EXPORT_SYMBOL
-0x0f4fcd0d jbd2_journal_clear_err fs/jbd2/jbd2 EXPORT_SYMBOL
-0x58e72bc7 jbd2_log_wait_commit fs/jbd2/jbd2 EXPORT_SYMBOL
-0xa97c731c jbd2_journal_start_commit fs/jbd2/jbd2 EXPORT_SYMBOL
-0xba74c59b jbd2_journal_force_commit_nested fs/jbd2/jbd2 EXPORT_SYMBOL
-0xb53f3684 jbd2_journal_wipe fs/jbd2/jbd2 EXPORT_SYMBOL
-0x802a1218 jbd2_journal_blocks_per_page fs/jbd2/jbd2 EXPORT_SYMBOL
-0x468fe1f9 jbd2_journal_invalidate_folio fs/jbd2/jbd2 EXPORT_SYMBOL
-0xb65b4d7a jbd2_journal_try_to_free_buffers fs/jbd2/jbd2 EXPORT_SYMBOL
-0x3a76185f jbd2_journal_force_commit fs/jbd2/jbd2 EXPORT_SYMBOL
-0x1647c778 jbd2_journal_inode_ranged_write fs/jbd2/jbd2 EXPORT_SYMBOL
-0x8173314b jbd2_journal_inode_ranged_wait fs/jbd2/jbd2 EXPORT_SYMBOL
-0x48cfa0bf jbd2_journal_finish_inode_data_buffers fs/jbd2/jbd2 EXPORT_SYMBOL
-0x0402de35 jbd2_journal_init_jbd_inode fs/jbd2/jbd2 EXPORT_SYMBOL
-0x03e80038 jbd2_journal_release_jbd_inode fs/jbd2/jbd2 EXPORT_SYMBOL
-0xdfceb48d jbd2_journal_begin_ordered_truncate fs/jbd2/jbd2 EXPORT_SYMBOL
-0xacd81eb3 jbd2_inode_cache fs/jbd2/jbd2 EXPORT_SYMBOL
-0xf6845766 jbd2_trans_will_send_data_barrier fs/jbd2/jbd2 EXPORT_SYMBOL
-0x37074556 jbd2_fc_begin_commit fs/jbd2/jbd2 EXPORT_SYMBOL
-0xdaf7b244 jbd2_fc_end_commit fs/jbd2/jbd2 EXPORT_SYMBOL
-0x6dbb40d0 jbd2_fc_end_commit_fallback fs/jbd2/jbd2 EXPORT_SYMBOL
-0xdb9f7ec9 jbd2_transaction_committed fs/jbd2/jbd2 EXPORT_SYMBOL
-0xd190f8b5 jbd2_complete_transaction fs/jbd2/jbd2 EXPORT_SYMBOL
-0x3fe20187 jbd2_fc_get_buf fs/jbd2/jbd2 EXPORT_SYMBOL
-0x8007867c jbd2_fc_wait_bufs fs/jbd2/jbd2 EXPORT_SYMBOL
-0xb7d828c6 jbd2_fc_release_bufs fs/jbd2/jbd2 EXPORT_SYMBOL
-0x38da5877 jbd2_journal_update_sb_errno fs/jbd2/jbd2 EXPORT_SYMBOL
-0xe71a2803 jbd2_journal_clear_features fs/jbd2/jbd2 EXPORT_SYMBOL
-0xbdcd65d4 jbd2_journal_grab_journal_head fs/jbd2/jbd2 EXPORT_SYMBOL
-0xbc773420 jbd2_journal_put_journal_head fs/jbd2/jbd2 EXPORT_SYMBOL
-0x7236bf40 fat_search_long fs/fat/fat EXPORT_SYMBOL_GPL
-0xe8bb1fad fat_get_dotdot_entry fs/fat/fat EXPORT_SYMBOL_GPL
-0x98be7a20 fat_dir_empty fs/fat/fat EXPORT_SYMBOL_GPL
-0x833b1811 fat_scan fs/fat/fat EXPORT_SYMBOL_GPL
-0x1a529ecf fat_remove_entries fs/fat/fat EXPORT_SYMBOL_GPL
-0x91e5b72b fat_alloc_new_dir fs/fat/fat EXPORT_SYMBOL_GPL
-0x0a3372bc fat_add_entries fs/fat/fat EXPORT_SYMBOL_GPL
-0x1f3c9e4b fat_free_clusters fs/fat/fat EXPORT_SYMBOL_GPL
-0xfee143ef fat_getattr fs/fat/fat EXPORT_SYMBOL_GPL
-0x12385b34 fat_setattr fs/fat/fat EXPORT_SYMBOL_GPL
-0x46490d89 fat_attach fs/fat/fat EXPORT_SYMBOL_GPL
-0x7ffb82f2 fat_detach fs/fat/fat EXPORT_SYMBOL_GPL
-0xdbf70139 fat_build_inode fs/fat/fat EXPORT_SYMBOL_GPL
-0x5bb0d1a5 fat_sync_inode fs/fat/fat EXPORT_SYMBOL_GPL
-0xc27564e9 fat_fill_super fs/fat/fat EXPORT_SYMBOL_GPL
-0x924aeaac fat_flush_inodes fs/fat/fat EXPORT_SYMBOL_GPL
-0xc1030859 __fat_fs_error fs/fat/fat EXPORT_SYMBOL_GPL
-0x51c20565 fat_time_fat2unix fs/fat/fat EXPORT_SYMBOL_GPL
-0x4d3068d9 fat_time_unix2fat fs/fat/fat EXPORT_SYMBOL_GPL
-0x895aa859 fat_truncate_time fs/fat/fat EXPORT_SYMBOL_GPL
-0xb58bbe88 fat_update_time fs/fat/fat EXPORT_SYMBOL_GPL
-0xf8518dbe register_nfs_version fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x1882a67e unregister_nfs_version fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x3cc12535 nfs_alloc_client fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x9e42d71e nfs_free_client fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xc979382d nfs_put_client fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xcc17d58b nfs_client_init_is_complete fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x420a6e33 nfs_client_init_status fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6ac365d4 nfs_wait_client_init_complete fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x7409dcf6 nfs_get_client fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x1868558e nfs_mark_client_ready fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfabb8e6a nfs_init_timeout_values fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf02b87e5 nfs_create_rpc_client fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xc90650a8 nfs_init_server_rpcclient fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf76a6517 nfs_init_client fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x24245fae nfs_probe_server fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x24394a74 nfs_server_copy_userdata fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x545820a2 nfs_server_insert_lists fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x545d2790 nfs_server_remove_lists fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x8c34e5ef nfs_alloc_server fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x5e1a9078 nfs_free_server fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6daa46ac nfs_create_server fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x82e80fe8 nfs_clone_server fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xb064800b nfs_force_lookup_revalidate fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xb6ddf428 nfs_set_verifier fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x66cd91e2 nfs_clear_verifier_delegated fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xbccbfb35 nfs_dentry_operations fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe799f2a1 nfs_lookup fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe64566a7 nfs_d_prune_case_insensitive_aliases fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe13e7b3c nfs4_dentry_operations fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x56001698 nfs_atomic_open fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0c097438 nfs_add_or_obtain fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf2e5da0c nfs_instantiate fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x4c54629b nfs_create fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x8998e2f4 nfs_mknod fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x2b1ec661 nfs_mkdir fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x00fb6aba nfs_rmdir fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xbd2d66c9 nfs_unlink fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x77bf209b nfs_symlink fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0ccd0868 nfs_link fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x4f70fa1f nfs_rename fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa28e94d3 nfs_access_zap_cache fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0cf7b532 nfs_access_get_cached fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfe923615 nfs_access_add_cache fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf8e0f0e8 nfs_access_set_mask fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x5f3d192d nfs_may_open fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x62dba265 nfs_permission fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x3f2690f2 nfs_check_flags fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x88164455 nfs_file_release fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x9e0f5185 nfs_file_llseek fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf683638c nfs_file_read fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x53f166fb nfs_file_splice_read fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6596a11c nfs_file_mmap fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x79610aa6 nfs_file_fsync fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x20c0daed nfs_file_write fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf8435566 nfs_lock fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6307cd1c nfs_flock fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x46148e39 nfs_file_operations fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x40739385 nfs_wait_bit_killable fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x7f892b65 nfs_drop_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xd5a5ece1 nfs_clear_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x4ae4811e nfs_sync_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xda499a68 nfs_check_cache_invalid fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x9a33f168 nfs_set_cache_invalid fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe537135c nfs_zap_acl_cache fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe07fdfb4 nfs_invalidate_atime fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x1a8400f3 nfs4_label_alloc fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6d82fe3e nfs_setsecurity fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xd0ff8acb nfs_fhget fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x022e0592 nfs_setattr fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa86c2f7a nfs_setattr_update_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x7658edcc nfs_getattr fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xb02ac962 nfs_get_lock_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xdbb8f1b3 nfs_put_lock_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x16accc3a nfs_close_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x420d137c alloc_nfs_open_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf7a807fa get_nfs_open_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xce98ae43 put_nfs_open_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf2ec8945 nfs_inode_attach_open_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x06d149e6 nfs_file_set_open_context fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6a68b833 nfs_revalidate_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x584b8482 nfs_inc_attr_generation_counter fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa05ca625 nfs_fattr_init fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x832e8f0b nfs_alloc_fattr fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x86cd9fd1 nfs_alloc_fattr_with_label fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x26884ff7 nfs_alloc_fhandle fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x22d795a8 _nfs_display_fhandle_hash fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfc619abd _nfs_display_fhandle fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xd64a981b nfs_refresh_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xc88c09ba nfs_post_op_update_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x10852753 nfs_post_op_update_inode_force_wcc fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xb769e8b9 nfs_alloc_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0d4eefe0 nfs_free_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x90a5530f nfsiod_workqueue fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xc3a2be67 nfs_net_id fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x94a1d384 nfs_sops fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x4a49b54b nfs_sb_active fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xd612a86b nfs_sb_deactive fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x5e771b68 nfs_client_for_each_server fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfe744fb5 nfs_statfs fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0fd277c0 nfs_show_options fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6305bd89 nfs_show_devname fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x585ec578 nfs_show_path fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x002b8c28 nfs_show_stats fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x438d9622 nfs_umount_begin fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x10962bc2 nfs_auth_info_match fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xedbb3169 nfs_try_get_tree fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe6f67ed4 nfs_reconfigure fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa03a6070 nfs_kill_super fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0294c6a2 nfs_callback_nr_threads fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x51892d61 nfs_callback_set_tcpport fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x39e05ac3 nfs_idmap_cache_timeout fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xdae9b5d7 nfs4_disable_idmapping fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x91d1fe52 max_session_slots fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xaafd4acc max_session_cb_slots fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa8e9e1ae send_implementation_id fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x42f2c81f nfs4_client_id_uniquifier fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x4cb9e001 recover_lost_locks fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xb28bec07 nfs_dreq_bytes_left fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x031994e0 nfs_pgio_current_mirror fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x604de7d1 nfs_pgheader_init fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfffc7403 nfs_async_iocounter_wait fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xb0d364c9 nfs_release_request fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x47acbc8f nfs_wait_on_request fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x4949ad7c nfs_generic_pg_test fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa80193df nfs_pgio_header_alloc fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0d6f0012 nfs_pgio_header_free fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x726325fd nfs_initiate_pgio fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xaf4c2b18 nfs_generic_pgio fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x9663ecfa nfs_pageio_resend fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x24cefd0b nfs_pageio_init_read fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x138999f9 nfs_pageio_reset_read_mds fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xc34a5e90 nfs_read_alloc_scratch fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xab647923 nfs_commitdata_alloc fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x1755577c nfs_commit_free fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe8234580 nfs_request_add_commit_list_locked fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6bd51c78 nfs_request_add_commit_list fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x07b5f838 nfs_request_remove_commit_list fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfb53cc7d nfs_init_cinfo fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfb383ba6 nfs_scan_commit_list fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6d541e5d nfs_pageio_init_write fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x9bc1dbc5 nfs_pageio_reset_write_mds fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xee97fed1 nfs_writeback_update_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa7f99d95 nfs_commitdata_release fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa078fb33 nfs_initiate_commit fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x205a4e6c nfs_init_commit fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xaea5a2fa nfs_retry_commit fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xc2d96886 nfs_commit_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe7943406 nfs_write_inode fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x0adeb75c nfs_filemap_write_and_wait_range fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x80ba8a2d nfs_wb_all fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x4286a757 nfs_path fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xe7c6028e nfs_do_submount fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xdd6d590b nfs_submount fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xb512e34d __tracepoint_nfs_fsync_enter fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x6c3aaa7d __traceiter_nfs_fsync_enter fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x5de025ba __SCK__tp_func_nfs_fsync_enter fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x7a762713 __tracepoint_nfs_fsync_exit fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x2cc9b83b __traceiter_nfs_fsync_exit fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x3064e354 __SCK__tp_func_nfs_fsync_exit fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x9d919c44 __SCT__tp_func_nfs_fsync_exit fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x672823e1 __tracepoint_nfs_xdr_status fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x34044ec9 __traceiter_nfs_xdr_status fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x2d3ae7a6 __SCK__tp_func_nfs_xdr_status fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfeb42418 __SCT__tp_func_nfs_xdr_status fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x534f389e __tracepoint_nfs_xdr_bad_filehandle fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xa82f7f15 __traceiter_nfs_xdr_bad_filehandle fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x1418ab8a __SCK__tp_func_nfs_xdr_bad_filehandle fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xcfb54d77 nfs_sysfs_link_rpc_client fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xf31015a2 nfs_sysfs_add_server fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xbaebffee nfs_fs_type fs/nfs/nfs EXPORT_SYMBOL_GPL
-0x46a7aa79 nfs4_fs_type fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xfc16b8bb nfs_fscache_open_file fs/nfs/nfs EXPORT_SYMBOL_GPL
-0xc7328da5 nfs3_set_ds_client fs/nfs/nfsv3 EXPORT_SYMBOL_GPL
-0xcf0e0068 nfs41_sequence_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xc0378f2e nfs4_sequence_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x0b8be6ff nfs4_setup_sequence fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x05e45e89 nfs4_set_rw_stateid fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x389320ef nfs4_test_session_trunk fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x0407c7e3 nfs4_proc_getdeviceinfo fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xf7801360 nfs41_maxgetdevinfo_overhead fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x6c60f71f nfs4_schedule_lease_recovery fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7e1b75f7 nfs4_schedule_migration_recovery fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x9b8280a8 nfs4_schedule_lease_moved_recovery fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x69c82488 nfs4_schedule_stateid_recovery fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xb4e34e09 nfs4_schedule_session_recovery fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xc4fd26e1 nfs_remove_bad_delegation fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x6085edbd nfs_map_string_to_numeric fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x8a4068ed nfs4_find_or_create_ds_client fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x94555a66 nfs4_set_ds_client fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7c3b7a62 nfs4_init_ds_session fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xa3134f9a __tracepoint_nfs4_pnfs_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x2c82d7ef __traceiter_nfs4_pnfs_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xeecb11f7 __SCK__tp_func_nfs4_pnfs_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x63826d35 __SCT__tp_func_nfs4_pnfs_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x2f844cae __tracepoint_nfs4_pnfs_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x407d4e95 __traceiter_nfs4_pnfs_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x1cca8915 __SCK__tp_func_nfs4_pnfs_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xadeca730 __SCT__tp_func_nfs4_pnfs_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x5d15294e __tracepoint_nfs4_pnfs_commit_ds fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x187caa70 __traceiter_nfs4_pnfs_commit_ds fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xd128b7e3 __SCK__tp_func_nfs4_pnfs_commit_ds fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xf4953649 __tracepoint_pnfs_mds_fallback_pg_init_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x16b5e288 __traceiter_pnfs_mds_fallback_pg_init_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xcaf4ce4c __SCK__tp_func_pnfs_mds_fallback_pg_init_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x300949b9 __tracepoint_pnfs_mds_fallback_pg_init_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x5ce5b7e2 __traceiter_pnfs_mds_fallback_pg_init_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x405ddcce __SCK__tp_func_pnfs_mds_fallback_pg_init_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x4556e172 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xa5fa2c84 __traceiter_pnfs_mds_fallback_pg_get_mirror_count fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x5a0984ce __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7b8562b3 __tracepoint_pnfs_mds_fallback_read_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x1e4999f3 __traceiter_pnfs_mds_fallback_read_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x39c8d46f __SCK__tp_func_pnfs_mds_fallback_read_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xe4a00256 __tracepoint_pnfs_mds_fallback_write_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x1e458649 __traceiter_pnfs_mds_fallback_write_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x6b87d11f __SCK__tp_func_pnfs_mds_fallback_write_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x686ae6f2 __tracepoint_pnfs_mds_fallback_read_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xc0cfdbc4 __traceiter_pnfs_mds_fallback_read_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x183e7385 __SCK__tp_func_pnfs_mds_fallback_read_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x495fc2ea __tracepoint_pnfs_mds_fallback_write_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x09cfde7b __traceiter_pnfs_mds_fallback_write_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x874e72e0 __SCK__tp_func_pnfs_mds_fallback_write_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x30e966dd __tracepoint_ff_layout_read_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x8b9264de __traceiter_ff_layout_read_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x98028416 __SCK__tp_func_ff_layout_read_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7e42bd3f __SCT__tp_func_ff_layout_read_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x898a2baa __tracepoint_ff_layout_write_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x53d61e7a __traceiter_ff_layout_write_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x8594db70 __SCK__tp_func_ff_layout_write_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xf32fa2b7 __SCT__tp_func_ff_layout_write_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x3c6533fa __tracepoint_ff_layout_commit_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xe6f0dfe9 __traceiter_ff_layout_commit_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x5a6f16c0 __SCK__tp_func_ff_layout_commit_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xcc21ce5c __SCT__tp_func_ff_layout_commit_error fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x68447444 pnfs_register_layoutdriver fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xf5c3d2f5 pnfs_unregister_layoutdriver fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xab95d9c3 pnfs_put_lseg fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xeb36b1b9 pnfs_destroy_layout fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xfb958c16 pnfs_generic_layout_insert_lseg fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xcd7679bd pnfs_update_layout fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xe99a0683 pnfs_error_mark_layout_for_return fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xccbf58d3 pnfs_generic_pg_check_layout fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x1f521852 pnfs_generic_pg_check_range fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x272502d3 pnfs_generic_pg_init_read fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x9990e4dc pnfs_generic_pg_init_write fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xad7d428c pnfs_generic_pg_cleanup fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x2e631622 pnfs_generic_pg_test fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xf8a14459 pnfs_write_done_resend_to_mds fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x5dafe958 pnfs_ld_write_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xb2fe16c1 pnfs_generic_pg_writepages fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x98c1a8f4 pnfs_read_done_resend_to_mds fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x5e3280cd pnfs_ld_read_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x241d54ee pnfs_read_resend_pnfs fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x98d270dd pnfs_generic_pg_readpages fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xa5822b4e pnfs_set_lo_fail fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7123ed5f pnfs_set_layoutcommit fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xe342ec01 pnfs_layoutcommit_inode fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xed549a92 pnfs_generic_sync fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x0fa8eb48 pnfs_report_layoutstat fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x054bef45 layoutstats_timer fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xed15fb41 nfs4_print_deviceid fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xc2d285e2 nfs4_find_get_deviceid fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x637a2aeb nfs4_delete_deviceid fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7dcaa86e nfs4_init_deviceid_node fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xab0fdca9 nfs4_put_deviceid_node fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x3a25f392 nfs4_mark_deviceid_available fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x2a671e7b nfs4_mark_deviceid_unavailable fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x571feff3 nfs4_test_deviceid_unavailable fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x69d3558d pnfs_generic_rw_release fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x68f44a1b pnfs_generic_prepare_to_resend_writes fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x6663429c pnfs_generic_write_commit_done fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xf999267e pnfs_generic_commit_release fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7397766a pnfs_generic_clear_request_commit fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x4f1b70e6 pnfs_alloc_commit_array fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x3cb6160f pnfs_free_commit_array fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x63ad2a09 pnfs_add_commit_array fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xce993caf pnfs_generic_ds_cinfo_release_lseg fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x284c5555 pnfs_generic_ds_cinfo_destroy fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xbc1efdca pnfs_generic_scan_commit_lists fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x2c23ae40 pnfs_generic_recover_commit_reqs fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xe319b510 pnfs_generic_search_commit_reqs fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x6a286377 pnfs_generic_commit_pagelist fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x528cb936 nfs4_pnfs_ds_put fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x7193c1da nfs4_pnfs_ds_add fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xe1c4f36f nfs4_pnfs_ds_connect fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x5e2a111b nfs4_decode_mp_ds_addr fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x1e92213a pnfs_layout_mark_request_commit fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x1e601e3f pnfs_nfs_generic_sync fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0xb15ff1d0 nfs42_proc_layouterror fs/nfs/nfsv4 EXPORT_SYMBOL_GPL
-0x4403ffd4 nfsd4_ssc_init_umount_work fs/nfsd/nfsd EXPORT_SYMBOL_GPL
-0xe6ef7f02 nlmclnt_init fs/lockd/lockd EXPORT_SYMBOL_GPL
-0xc6aa142b nlmclnt_done fs/lockd/lockd EXPORT_SYMBOL_GPL
-0x2897f703 nlmclnt_rpc_clnt fs/lockd/lockd EXPORT_SYMBOL_GPL
-0x8a5e34aa nlmclnt_proc fs/lockd/lockd EXPORT_SYMBOL_GPL
-0x17278878 nlmsvc_ops fs/lockd/lockd EXPORT_SYMBOL_GPL
-0x65940c9f lockd_up fs/lockd/lockd EXPORT_SYMBOL_GPL
-0xc3aa834a lockd_down fs/lockd/lockd EXPORT_SYMBOL_GPL
-0x747dfefa nlmsvc_unlock_all_by_sb fs/lockd/lockd EXPORT_SYMBOL_GPL
-0x9cbde0a0 nlmsvc_unlock_all_by_ip fs/lockd/lockd EXPORT_SYMBOL_GPL
-0xc4c73891 cifs_arc4_setkey fs/smb/common/cifs_arc4 EXPORT_SYMBOL_GPL
-0xabd9af6d cifs_arc4_crypt fs/smb/common/cifs_arc4 EXPORT_SYMBOL_GPL
-0x798f3830 cifs_md4_init fs/smb/common/cifs_md4 EXPORT_SYMBOL_GPL
-0xdef1096d cifs_md4_update fs/smb/common/cifs_md4 EXPORT_SYMBOL_GPL
-0xceecd9e4 cifs_md4_final fs/smb/common/cifs_md4 EXPORT_SYMBOL_GPL
-0xdd626ee3 fuse_len_args fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x7478a2be fuse_get_unique fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x2967f696 fuse_dev_fiq_ops fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x610347de fuse_request_end fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xa04b22db fuse_simple_background fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xbc09bde3 fuse_dequeue_forget fs/fuse/fuse EXPORT_SYMBOL
-0xa50c0f14 fuse_abort_conn fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x0ffd776b fuse_dev_release fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x2b08f55c fuse_dev_operations fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xb00ad130 fuse_do_open fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xeee0b09a fuse_sync_release fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x4add5fb3 fuse_direct_io fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xc1fea06a fuse_file_poll fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x07888382 fuse_conn_init fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x0e3a6f4c fuse_conn_put fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x2a243abc fuse_conn_get fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xa064b968 fuse_send_init fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x0550f7b0 fuse_free_conn fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x79715a6e fuse_dev_alloc fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xf78b5e38 fuse_dev_install fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x872138a8 fuse_dev_alloc_install fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xa836e75c fuse_dev_free fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xb1442e51 fuse_init_fs_context_submount fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xf12e5127 fuse_fill_super_common fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x9496a7de fuse_mount_remove fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xb58ba182 fuse_conn_destroy fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x904dcc7c fuse_mount_destroy fs/fuse/fuse EXPORT_SYMBOL
-0x7766298f fuse_do_ioctl fs/fuse/fuse EXPORT_SYMBOL_GPL
-0x80163452 fuse_dax_cancel_work fs/fuse/fuse EXPORT_SYMBOL_GPL
-0xf883bf93 crypto_dh_key_len crypto/dh_generic EXPORT_SYMBOL_GPL
-0x0e0c6a7d crypto_dh_encode_key crypto/dh_generic EXPORT_SYMBOL_GPL
-0xa89926dc crypto_dh_decode_key crypto/dh_generic EXPORT_SYMBOL_GPL
-0x02fcf979 blowfish_setkey crypto/blowfish_common EXPORT_SYMBOL_GPL
-0xe22b7787 __twofish_setkey crypto/twofish_common EXPORT_SYMBOL_GPL
-0x6b6e7c6e twofish_setkey crypto/twofish_common EXPORT_SYMBOL_GPL
-0xd4c9681a __serpent_setkey crypto/serpent_generic EXPORT_SYMBOL_GPL
-0x92c8943c serpent_setkey crypto/serpent_generic EXPORT_SYMBOL_GPL
-0x4eb4c55e __serpent_encrypt crypto/serpent_generic EXPORT_SYMBOL_GPL
-0xbcc074f3 __serpent_decrypt crypto/serpent_generic EXPORT_SYMBOL_GPL
-0x7931a202 crypto_sm4_fk crypto/sm4 EXPORT_SYMBOL
-0x2b098da5 crypto_sm4_ck crypto/sm4 EXPORT_SYMBOL
-0xf4fd3bd2 crypto_sm4_sbox crypto/sm4 EXPORT_SYMBOL
-0x24e254e8 sm4_expandkey crypto/sm4 EXPORT_SYMBOL_GPL
-0xfa81970e sm4_crypt_block crypto/sm4 EXPORT_SYMBOL_GPL
-0xbd3e7542 cast_s1 crypto/cast_common EXPORT_SYMBOL_GPL
-0x5609ce41 cast_s2 crypto/cast_common EXPORT_SYMBOL_GPL
-0xb9cba57f cast_s3 crypto/cast_common EXPORT_SYMBOL_GPL
-0x5b17be06 cast_s4 crypto/cast_common EXPORT_SYMBOL_GPL
-0xef81a4af __cast5_encrypt crypto/cast5_generic EXPORT_SYMBOL_GPL
-0x188d9d26 __cast5_decrypt crypto/cast5_generic EXPORT_SYMBOL_GPL
-0xdd3d9f83 cast5_setkey crypto/cast5_generic EXPORT_SYMBOL_GPL
-0xd76a5716 __cast6_setkey crypto/cast6_generic EXPORT_SYMBOL_GPL
-0x834bd79d cast6_setkey crypto/cast6_generic EXPORT_SYMBOL_GPL
-0xcfce512f __cast6_encrypt crypto/cast6_generic EXPORT_SYMBOL_GPL
-0x3dbae082 __cast6_decrypt crypto/cast6_generic EXPORT_SYMBOL_GPL
-0x2479193e crypto_authenc_extractkeys crypto/authenc EXPORT_SYMBOL_GPL
-0x8261eccb ecc_get_curve25519 crypto/ecc EXPORT_SYMBOL
-0xb10fc19e ecc_get_curve crypto/ecc EXPORT_SYMBOL
-0x8e688192 ecc_alloc_point crypto/ecc EXPORT_SYMBOL
-0x90cdc197 ecc_free_point crypto/ecc EXPORT_SYMBOL
-0x4c281912 vli_is_zero crypto/ecc EXPORT_SYMBOL
-0x932b6ff7 vli_num_bits crypto/ecc EXPORT_SYMBOL
-0x16e410ff vli_from_be64 crypto/ecc EXPORT_SYMBOL
-0xeac9b99a vli_from_le64 crypto/ecc EXPORT_SYMBOL
-0x92668805 vli_cmp crypto/ecc EXPORT_SYMBOL
-0x9f6efabd vli_sub crypto/ecc EXPORT_SYMBOL
-0x7c0fbb00 vli_mod_mult_slow crypto/ecc EXPORT_SYMBOL
-0x1a5faa3a vli_mod_inv crypto/ecc EXPORT_SYMBOL
-0xd94c8eb5 ecc_point_is_zero crypto/ecc EXPORT_SYMBOL
-0x9263b417 ecc_point_mult_shamir crypto/ecc EXPORT_SYMBOL
-0x671f7aa5 ecc_is_key_valid crypto/ecc EXPORT_SYMBOL
-0xd6315f31 ecc_gen_privkey crypto/ecc EXPORT_SYMBOL
-0xed4ae15e ecc_make_pub_key crypto/ecc EXPORT_SYMBOL
-0xde867c29 ecc_is_pubkey_valid_partial crypto/ecc EXPORT_SYMBOL
-0x188a1647 ecc_is_pubkey_valid_full crypto/ecc EXPORT_SYMBOL
-0xa76b31a2 crypto_ecdh_shared_secret crypto/ecc EXPORT_SYMBOL
-0x7475be8e crypto_ecdh_key_len crypto/ecdh_generic EXPORT_SYMBOL_GPL
-0xb230d2ec crypto_ecdh_encode_key crypto/ecdh_generic EXPORT_SYMBOL_GPL
-0x33b866ce crypto_ecdh_decode_key crypto/ecdh_generic EXPORT_SYMBOL_GPL
-0x5b6c00e6 xor_blocks crypto/xor EXPORT_SYMBOL
-0x387eae8d __async_tx_find_channel crypto/async_tx/async_tx EXPORT_SYMBOL_GPL
-0xe6f102e4 async_tx_submit crypto/async_tx/async_tx EXPORT_SYMBOL_GPL
-0xa1582af4 async_trigger_callback crypto/async_tx/async_tx EXPORT_SYMBOL_GPL
-0x9f5be0f9 async_tx_quiesce crypto/async_tx/async_tx EXPORT_SYMBOL_GPL
-0xb6dc940f async_memcpy crypto/async_tx/async_memcpy EXPORT_SYMBOL_GPL
-0xf7e7866b async_xor_offs crypto/async_tx/async_xor EXPORT_SYMBOL_GPL
-0xd4558426 async_xor crypto/async_tx/async_xor EXPORT_SYMBOL_GPL
-0x96acfa32 async_xor_val_offs crypto/async_tx/async_xor EXPORT_SYMBOL_GPL
-0x4f29f25d async_xor_val crypto/async_tx/async_xor EXPORT_SYMBOL_GPL
-0x03c1c773 async_gen_syndrome crypto/async_tx/async_pq EXPORT_SYMBOL_GPL
-0x93380409 async_syndrome_val crypto/async_tx/async_pq EXPORT_SYMBOL_GPL
-0xb8823a98 async_raid6_2data_recov crypto/async_tx/async_raid6_recov EXPORT_SYMBOL_GPL
-0x7eec3141 async_raid6_datap_recov crypto/async_tx/async_raid6_recov EXPORT_SYMBOL_GPL
-0x8d6bba20 t10_pi_type1_crc block/t10-pi EXPORT_SYMBOL
-0xbca95267 t10_pi_type1_ip block/t10-pi EXPORT_SYMBOL
-0xc0a31b2b t10_pi_type3_crc block/t10-pi EXPORT_SYMBOL
-0xc6690107 t10_pi_type3_ip block/t10-pi EXPORT_SYMBOL
-0xcf667cbd ext_pi_type1_crc64 block/t10-pi EXPORT_SYMBOL_GPL
-0x8d437bc0 ext_pi_type3_crc64 block/t10-pi EXPORT_SYMBOL_GPL
-0x7e431c15 cordic_calc_iq lib/math/cordic EXPORT_SYMBOL
-0xcec122d7 chacha_crypt_generic lib/crypto/libchacha EXPORT_SYMBOL
-0x2bb32ad1 arc4_setkey lib/crypto/libarc4 EXPORT_SYMBOL
-0xcd47fcc4 arc4_crypt lib/crypto/libarc4 EXPORT_SYMBOL
-0xa8fb743d des_expand_key lib/crypto/libdes EXPORT_SYMBOL_GPL
-0x0105b595 des_encrypt lib/crypto/libdes EXPORT_SYMBOL_GPL
-0xa6aa9857 des_decrypt lib/crypto/libdes EXPORT_SYMBOL_GPL
-0xa77b3b62 des3_ede_expand_key lib/crypto/libdes EXPORT_SYMBOL_GPL
-0x856a5ef3 des3_ede_encrypt lib/crypto/libdes EXPORT_SYMBOL_GPL
-0x574eda34 des3_ede_decrypt lib/crypto/libdes EXPORT_SYMBOL_GPL
-0xd45b9cf4 poly1305_core_setkey lib/crypto/libpoly1305 EXPORT_SYMBOL
-0x021f3700 poly1305_core_blocks lib/crypto/libpoly1305 EXPORT_SYMBOL
-0xbcb90cb3 poly1305_core_emit lib/crypto/libpoly1305 EXPORT_SYMBOL
-0x4b45fb6e poly1305_init_generic lib/crypto/libpoly1305 EXPORT_SYMBOL_GPL
-0xfa617389 poly1305_update_generic lib/crypto/libpoly1305 EXPORT_SYMBOL_GPL
-0x7f376d08 poly1305_final_generic lib/crypto/libpoly1305 EXPORT_SYMBOL_GPL
-0x6004858d LZ4_compress_fast lib/lz4/lz4_compress EXPORT_SYMBOL
-0x4f4d78c5 LZ4_compress_default lib/lz4/lz4_compress EXPORT_SYMBOL
-0x5bc92e85 LZ4_compress_destSize lib/lz4/lz4_compress EXPORT_SYMBOL
-0x749849d8 LZ4_loadDict lib/lz4/lz4_compress EXPORT_SYMBOL
-0x635ff76d LZ4_saveDict lib/lz4/lz4_compress EXPORT_SYMBOL
-0xf9eced44 LZ4_compress_fast_continue lib/lz4/lz4_compress EXPORT_SYMBOL
-0xd819a524 crc_itu_t_table lib/crc-itu-t EXPORT_SYMBOL
-0x09a34a2b crc_itu_t lib/crc-itu-t EXPORT_SYMBOL
-0xeaf3cb23 crc64_be lib/crc64 EXPORT_SYMBOL_GPL
-0xccabde6f crc64_rocksoft_generic lib/crc64 EXPORT_SYMBOL_GPL
-0x65aaf037 crc7_be_syndrome_table lib/crc7 EXPORT_SYMBOL
-0xba55d23e crc7_be lib/crc7 EXPORT_SYMBOL
-0xb15b4109 crc32c lib/libcrc32c EXPORT_SYMBOL
-0xaa8106bc crc8_populate_msb lib/crc8 EXPORT_SYMBOL
-0xc3cd034d crc8_populate_lsb lib/crc8 EXPORT_SYMBOL
-0x9c5d5b94 crc8 lib/crc8 EXPORT_SYMBOL
-0xbbe5611b crc64_rocksoft_update lib/crc64-rocksoft EXPORT_SYMBOL_GPL
-0xd6aafb42 crc64_rocksoft lib/crc64-rocksoft EXPORT_SYMBOL_GPL
-0xfd581da1 free_rs lib/reed_solomon/reed_solomon EXPORT_SYMBOL_GPL
-0xeb2f825c init_rs_gfp lib/reed_solomon/reed_solomon EXPORT_SYMBOL_GPL
-0x561835eb init_rs_non_canonical lib/reed_solomon/reed_solomon EXPORT_SYMBOL_GPL
-0x63adbf92 encode_rs8 lib/reed_solomon/reed_solomon EXPORT_SYMBOL_GPL
-0x1d29b9e1 decode_rs8 lib/reed_solomon/reed_solomon EXPORT_SYMBOL_GPL
-0xb0d904b7 raid6_empty_zero_page lib/raid6/raid6_pq EXPORT_SYMBOL
-0x804a5b70 raid6_call lib/raid6/raid6_pq EXPORT_SYMBOL_GPL
-0x1803a6ed raid6_2data_recov lib/raid6/raid6_pq EXPORT_SYMBOL_GPL
-0xe4b051cf raid6_datap_recov lib/raid6/raid6_pq EXPORT_SYMBOL_GPL
-0xd91319d6 raid6_gfmul lib/raid6/raid6_pq EXPORT_SYMBOL
-0x0b2c64a3 raid6_vgfmul lib/raid6/raid6_pq EXPORT_SYMBOL
-0x17f54263 raid6_gfexp lib/raid6/raid6_pq EXPORT_SYMBOL
-0xc8e3332b raid6_gflog lib/raid6/raid6_pq EXPORT_SYMBOL
-0x59a2712d raid6_gfinv lib/raid6/raid6_pq EXPORT_SYMBOL
-0xcc4ee841 raid6_gfexi lib/raid6/raid6_pq EXPORT_SYMBOL
-0xc3e2d892 parman_create lib/parman EXPORT_SYMBOL
-0xca39ae6a parman_destroy lib/parman EXPORT_SYMBOL
-0x0f518717 parman_prio_init lib/parman EXPORT_SYMBOL
-0xc6a3d260 parman_prio_fini lib/parman EXPORT_SYMBOL
-0x7b03d378 parman_item_add lib/parman EXPORT_SYMBOL
-0x8b7e26f5 parman_item_remove lib/parman EXPORT_SYMBOL
-0x24ca5ca9 objagg_obj_root_priv lib/objagg EXPORT_SYMBOL
-0x342aefe2 objagg_obj_delta_priv lib/objagg EXPORT_SYMBOL
-0x0363233d objagg_obj_raw lib/objagg EXPORT_SYMBOL
-0xb17ab162 objagg_obj_get lib/objagg EXPORT_SYMBOL
-0x6691f29d objagg_obj_put lib/objagg EXPORT_SYMBOL
-0x679e8cc2 objagg_create lib/objagg EXPORT_SYMBOL
-0x23865923 objagg_destroy lib/objagg EXPORT_SYMBOL
-0xdaa3ee68 objagg_stats_get lib/objagg EXPORT_SYMBOL
-0xf5511527 objagg_stats_put lib/objagg EXPORT_SYMBOL
-0xfaa9d1a8 objagg_hints_get lib/objagg EXPORT_SYMBOL
-0x3c58e78f objagg_hints_put lib/objagg EXPORT_SYMBOL
-0x352633f4 objagg_hints_stats_get lib/objagg EXPORT_SYMBOL
-0x0d1441a9 zhaoxin_pinctrl_probe_by_hid drivers/pinctrl/zhaoxin/pinctrl-zhaoxin EXPORT_SYMBOL_GPL
-0x55af5417 zhaoxin_pinctrl_probe_by_uid drivers/pinctrl/zhaoxin/pinctrl-zhaoxin EXPORT_SYMBOL_GPL
-0xa11035b3 zhaoxin_pinctrl_get_soc_data drivers/pinctrl/zhaoxin/pinctrl-zhaoxin EXPORT_SYMBOL_GPL
-0x3dff64db zhaoxin_pinctrl_suspend_noirq drivers/pinctrl/zhaoxin/pinctrl-zhaoxin EXPORT_SYMBOL_GPL
-0x9bcf606c zhaoxin_pinctrl_resume_noirq drivers/pinctrl/zhaoxin/pinctrl-zhaoxin EXPORT_SYMBOL_GPL
-0xaef1ecff bgpio_init drivers/gpio/gpio-generic EXPORT_SYMBOL_GPL
-0xc9fdbe45 pwm_lpss_byt_info drivers/pwm/pwm-lpss EXPORT_SYMBOL_GPL
-0x69d5b810 pwm_lpss_bsw_info drivers/pwm/pwm-lpss EXPORT_SYMBOL_GPL
-0x0557bedb pwm_lpss_bxt_info drivers/pwm/pwm-lpss EXPORT_SYMBOL_GPL
-0x366f3bdf pwm_lpss_tng_info drivers/pwm/pwm-lpss EXPORT_SYMBOL_GPL
-0xc517fbb1 devm_pwm_lpss_probe drivers/pwm/pwm-lpss EXPORT_SYMBOL_GPL
-0xfb921e00 hvpci_block_ops drivers/pci/controller/pci-hyperv-intf EXPORT_SYMBOL_GPL
-0x1591b2c6 hyperv_read_cfg_blk drivers/pci/controller/pci-hyperv-intf EXPORT_SYMBOL_GPL
-0xe5f73406 hyperv_write_cfg_blk drivers/pci/controller/pci-hyperv-intf EXPORT_SYMBOL_GPL
-0x221394ae hyperv_reg_block_invalidate drivers/pci/controller/pci-hyperv-intf EXPORT_SYMBOL_GPL
-0xeb916608 lcd_device_register drivers/video/backlight/lcd EXPORT_SYMBOL
-0xc4e59bcd lcd_device_unregister drivers/video/backlight/lcd EXPORT_SYMBOL
-0x3b530d8f devm_lcd_device_register drivers/video/backlight/lcd EXPORT_SYMBOL
-0x04699b76 devm_lcd_device_unregister drivers/video/backlight/lcd EXPORT_SYMBOL
-0x67369b42 ipmi_addr_src_to_str drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x5523f3ea ipmi_smi_watcher_register drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x115f37c2 ipmi_smi_watcher_unregister drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xe4f4665b ipmi_validate_addr drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x804f922a ipmi_addr_length drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xda495d2d ipmi_create_user drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x2ff25c18 ipmi_get_smi_info drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xf388b18b ipmi_destroy_user drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x89a5279a ipmi_get_version drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xfaaa4831 ipmi_set_my_address drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xec1c2a90 ipmi_get_my_address drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x03bc993e ipmi_set_my_LUN drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x74778a80 ipmi_get_my_LUN drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xfe0f2369 ipmi_get_maintenance_mode drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x12dd1e77 ipmi_set_maintenance_mode drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x50f65edf ipmi_set_gets_events drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x0705dd14 ipmi_register_for_cmd drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xd54a5050 ipmi_unregister_for_cmd drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xe98c507d ipmb_checksum drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x4c2054d7 ipmi_request_settime drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x16507255 ipmi_request_supply_msgs drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xf5531bea ipmi_poll_interface drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x3eaeddae ipmi_add_smi drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xe4330a39 ipmi_unregister_smi drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x6ca934a8 ipmi_smi_msg_received drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x230094ac ipmi_smi_watchdog_pretimeout drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xc47c403e ipmi_alloc_smi_msg drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0xc89dabe4 ipmi_free_recv_msg drivers/char/ipmi/ipmi_msghandler EXPORT_SYMBOL
-0x69f6131c acpi_video_get_levels drivers/acpi/video EXPORT_SYMBOL
-0xc4dae963 acpi_video_get_edid drivers/acpi/video EXPORT_SYMBOL
-0x8826c13b acpi_video_register drivers/acpi/video EXPORT_SYMBOL
-0x7a45377b acpi_video_unregister drivers/acpi/video EXPORT_SYMBOL
-0x45b61916 acpi_video_register_backlight drivers/acpi/video EXPORT_SYMBOL
-0x7cc484a5 acpi_video_handles_brightness_key_presses drivers/acpi/video EXPORT_SYMBOL
-0x7de7bf50 __acpi_video_get_backlight_type drivers/acpi/video EXPORT_SYMBOL
-0x67927a0d platform_profile_notify drivers/acpi/platform_profile EXPORT_SYMBOL_GPL
-0xcac33cd4 platform_profile_register drivers/acpi/platform_profile EXPORT_SYMBOL_GPL
-0xbfe36436 platform_profile_remove drivers/acpi/platform_profile EXPORT_SYMBOL_GPL
-0x06848c60 to_nfit_uuid drivers/acpi/nfit/nfit EXPORT_SYMBOL
-0xfa312a2d acpi_nfit_ctl drivers/acpi/nfit/nfit EXPORT_SYMBOL_GPL
-0x499bbf57 nfit_get_smbios_id drivers/acpi/nfit/nfit EXPORT_SYMBOL_GPL
-0xd0c0a0cd __acpi_nvdimm_notify drivers/acpi/nfit/nfit EXPORT_SYMBOL_GPL
-0x29abef2e acpi_nfit_init drivers/acpi/nfit/nfit EXPORT_SYMBOL_GPL
-0xc9e7fbc1 acpi_nfit_desc_init drivers/acpi/nfit/nfit EXPORT_SYMBOL_GPL
-0x4639bcda acpi_nfit_shutdown drivers/acpi/nfit/nfit EXPORT_SYMBOL_GPL
-0x8835170e __acpi_nfit_notify drivers/acpi/nfit/nfit EXPORT_SYMBOL_GPL
-0x4f6c2360 acpi_smbus_read drivers/acpi/sbshc EXPORT_SYMBOL_GPL
-0x96eb492d acpi_smbus_write drivers/acpi/sbshc EXPORT_SYMBOL_GPL
-0x87bd07bd acpi_smbus_register_callback drivers/acpi/sbshc EXPORT_SYMBOL_GPL
-0x1c8984c7 acpi_smbus_unregister_callback drivers/acpi/sbshc EXPORT_SYMBOL_GPL
-0x96b39a58 __idxd_driver_register drivers/dma/idxd/idxd_bus EXPORT_SYMBOL_GPL IDXD
-0xcbe69906 idxd_driver_unregister drivers/dma/idxd/idxd_bus EXPORT_SYMBOL_GPL IDXD
-0xbb8dc5a8 dsa_bus_type drivers/dma/idxd/idxd_bus EXPORT_SYMBOL_GPL IDXD
-0x93ec4848 idxd_drv drivers/dma/idxd/idxd EXPORT_SYMBOL_GPL IDXD
-0xed5ba024 idxd_dmaengine_drv drivers/dma/idxd/idxd EXPORT_SYMBOL_GPL IDXD
-0x5c7f7f05 idxd_user_drv drivers/dma/idxd/idxd EXPORT_SYMBOL_GPL IDXD
-0x7b225f2e virtio_dma_buf_export drivers/virtio/virtio_dma_buf EXPORT_SYMBOL
-0xf9e940a4 virtio_dma_buf_attach drivers/virtio/virtio_dma_buf EXPORT_SYMBOL
-0x95e60ea2 is_virtio_dma_buf drivers/virtio/virtio_dma_buf EXPORT_SYMBOL
-0x76a309d1 virtio_dma_buf_get_uuid drivers/virtio/virtio_dma_buf EXPORT_SYMBOL
-0xea82922e xen_privcmd_fops drivers/xen/xen-privcmd EXPORT_SYMBOL_GPL
-0xa34dc7f1 xen_privcmdbuf_fops drivers/xen/xen-privcmd EXPORT_SYMBOL_GPL
-0xa5715686 xen_front_pgdir_shbuf_get_dir_start drivers/xen/xen-front-pgdir-shbuf EXPORT_SYMBOL_GPL
-0xd5ce8019 xen_front_pgdir_shbuf_map drivers/xen/xen-front-pgdir-shbuf EXPORT_SYMBOL_GPL
-0xc5c14621 xen_front_pgdir_shbuf_unmap drivers/xen/xen-front-pgdir-shbuf EXPORT_SYMBOL_GPL
-0x7fe50937 xen_front_pgdir_shbuf_free drivers/xen/xen-front-pgdir-shbuf EXPORT_SYMBOL_GPL
-0x60e94b16 xen_front_pgdir_shbuf_alloc drivers/xen/xen-front-pgdir-shbuf EXPORT_SYMBOL_GPL
-0xfda9a3f1 intel_gmch_enable_gtt drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0x8823ef75 intel_gmch_gtt_insert_page drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0xe07ef363 intel_gmch_gtt_insert_sg_entries drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0x6df31390 intel_gmch_gtt_clear_range drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0xc9361155 intel_gmch_probe drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0x6797d568 intel_gmch_gtt_get drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0xe31b9301 intel_gmch_gtt_flush drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0xb2f74fb6 intel_gmch_remove drivers/char/agp/intel-gtt EXPORT_SYMBOL
-0xda0dc290 st33zp24_probe drivers/char/tpm/st33zp24/tpm_st33zp24 EXPORT_SYMBOL
-0xde13efb8 st33zp24_remove drivers/char/tpm/st33zp24/tpm_st33zp24 EXPORT_SYMBOL
-0xdf2c1145 st33zp24_pm_suspend drivers/char/tpm/st33zp24/tpm_st33zp24 EXPORT_SYMBOL
-0xedcd3b0b st33zp24_pm_resume drivers/char/tpm/st33zp24/tpm_st33zp24 EXPORT_SYMBOL
-0x856aec2a amd_iommu_bind_pasid drivers/iommu/amd/iommu_v2 EXPORT_SYMBOL
-0x4f6236d4 amd_iommu_unbind_pasid drivers/iommu/amd/iommu_v2 EXPORT_SYMBOL
-0xccea5a81 amd_iommu_init_device drivers/iommu/amd/iommu_v2 EXPORT_SYMBOL
-0x8a75ad26 amd_iommu_free_device drivers/iommu/amd/iommu_v2 EXPORT_SYMBOL
-0x2519758a amd_iommu_set_invalid_ppr_cb drivers/iommu/amd/iommu_v2 EXPORT_SYMBOL
-0x80cfa2a6 amd_iommu_set_invalidate_ctx_cb drivers/iommu/amd/iommu_v2 EXPORT_SYMBOL
-0x1ab0f118 iommufd_device_bind drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xb9921239 iommufd_ctx_has_group drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x4cef32bf iommufd_device_unbind drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x469bbaaa iommufd_device_to_ictx drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xd3189457 iommufd_device_to_id drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x0a50e767 iommufd_device_attach drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x485b76ee iommufd_device_replace drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x9b05dc0c iommufd_device_detach drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x8f53244c iommufd_access_create drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xed362568 iommufd_access_destroy drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xb493ba8e iommufd_access_detach drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xffee7024 iommufd_access_attach drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x4d86cfc5 iommufd_access_replace drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x89ace00e iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xefdf6829 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xd51a15b9 iommufd_access_rw drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xa32339f6 iommufd_ctx_get drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x04a39d9a iommufd_ctx_from_file drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xd182195a iommufd_ctx_from_fd drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0xab347f60 iommufd_ctx_put drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD
-0x6ae5ec1b iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD_VFIO
-0x0bf43ce7 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD_VFIO
-0x030abaa8 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd EXPORT_SYMBOL_GPL IOMMUFD_VFIO
-0x5dc4f405 drm_dp_dual_mode_read drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc2aff780 drm_dp_dual_mode_write drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb3817e78 drm_dp_dual_mode_detect drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xcb376783 drm_dp_dual_mode_max_tmds_clock drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x7f426b8d drm_dp_dual_mode_get_tmds_output drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc235b65c drm_dp_dual_mode_set_tmds_output drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x5407ae9e drm_dp_get_dual_mode_type_name drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x32abe01d drm_lspcon_get_mode drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x0692d7a1 drm_lspcon_set_mode drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xedcf81ce drm_dp_channel_eq_ok drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x8d701329 drm_dp_clock_recovery_ok drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc5c99a79 drm_dp_get_adjust_request_voltage drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x582f248e drm_dp_get_adjust_request_pre_emphasis drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xccf54d5e drm_dp_get_adjust_tx_ffe_preset drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xd5a95eae drm_dp_128b132b_lane_symbol_locked drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x92b9835e drm_dp_128b132b_cds_interlane_align_done drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6aacee47 drm_dp_128b132b_link_training_failed drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x38d48698 drm_dp_read_clock_recovery_delay drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x012d39fc drm_dp_read_channel_eq_delay drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x37e7e5fa drm_dp_128b132b_read_aux_rd_interval drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xdbd518c1 drm_dp_link_train_clock_recovery_delay drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xe30c590d drm_dp_link_train_channel_eq_delay drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x5a86f411 drm_dp_phy_name drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa21181a0 drm_dp_lttpr_link_train_channel_eq_delay drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x26815dbc drm_dp_link_rate_to_bw_code drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x73011db0 drm_dp_bw_code_to_link_rate drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x76f15110 drm_dp_dpcd_probe drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x558a8f81 drm_dp_dpcd_read drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6426732d drm_dp_dpcd_write drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x67aab6c0 drm_dp_dpcd_read_link_status drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x7bee36ed drm_dp_dpcd_read_phy_link_status drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc79ecffb drm_dp_downstream_is_type drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x68d8dce7 drm_dp_downstream_is_tmds drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xd270bef2 drm_dp_send_real_edid_checksum drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x53f19c95 drm_dp_read_dpcd_caps drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb75135b7 drm_dp_read_downstream_info drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x392a838b drm_dp_downstream_max_dotclock drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6b53e216 drm_dp_downstream_max_tmds_clock drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x63a477fb drm_dp_downstream_min_tmds_clock drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x23961837 drm_dp_downstream_max_bpc drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xf689ad25 drm_dp_downstream_420_passthrough drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x2fa94ef2 drm_dp_downstream_444_to_420_conversion drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x34f07809 drm_dp_downstream_mode drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa31ee7f2 drm_dp_downstream_id drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x75f5b0e9 drm_dp_downstream_debug drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xf68741fb drm_dp_subconnector_type drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6348b9b5 drm_dp_set_subconnector_property drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xf4eff993 drm_dp_read_sink_count_cap drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xf95bb5b3 drm_dp_read_sink_count drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x04100a6f drm_dp_remote_aux_init drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc88f4294 drm_dp_aux_init drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x2b5d1fa8 drm_dp_aux_register drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xf52fa79f drm_dp_aux_unregister drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa1fefe6a drm_dp_psr_setup_time drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x55fc87bc drm_dp_start_crc drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x3715465f drm_dp_stop_crc drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x34824679 drm_dp_read_desc drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x829b6048 drm_dp_dsc_sink_max_slice_count drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x56a663e9 drm_dp_dsc_sink_line_buf_depth drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa843606e drm_dp_dsc_sink_supported_input_bpcs drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xd8904536 drm_dp_read_lttpr_common_caps drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb71b2de2 drm_dp_read_lttpr_phy_caps drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xaf267620 drm_dp_lttpr_count drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x01c4bba9 drm_dp_lttpr_max_link_rate drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x1605d0ed drm_dp_lttpr_max_lane_count drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x19712476 drm_dp_get_phy_test_pattern drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x3ff833cc drm_dp_set_phy_test_pattern drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xeaccf855 drm_dp_vsc_sdp_log drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x7053fa72 drm_dp_get_pcon_max_frl_bw drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xaf676458 drm_dp_pcon_frl_prepare drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x7be2765b drm_dp_pcon_is_frl_ready drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xea55aba3 drm_dp_pcon_frl_configure_1 drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x7f8979b0 drm_dp_pcon_frl_configure_2 drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xe8f3b347 drm_dp_pcon_reset_frl_config drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x221c15fe drm_dp_pcon_frl_enable drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x720bc4dd drm_dp_pcon_hdmi_link_active drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x59c06ab7 drm_dp_pcon_hdmi_link_mode drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb54ff359 drm_dp_pcon_hdmi_frl_link_error_count drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xe5360b84 drm_dp_pcon_dsc_max_slices drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc020c0c1 drm_dp_pcon_dsc_max_slice_width drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x4603c416 drm_dp_pcon_dsc_bpp_incr drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xcffe2820 drm_dp_pcon_pps_default drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x22187254 drm_dp_pcon_pps_override_buf drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x7a3be52e drm_dp_pcon_pps_override_param drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x343e169a drm_dp_pcon_convert_rgb_to_ycbcr drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa3c007fb drm_edp_backlight_set_level drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6493864b drm_edp_backlight_enable drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x74ea2786 drm_edp_backlight_disable drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x564921a8 drm_edp_backlight_init drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xdd07fc28 drm_panel_dp_aux_backlight drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x09192c22 drm_dp_mst_get_port_malloc drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x0336fa5f drm_dp_mst_put_port_malloc drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb2f17bde drm_atomic_get_mst_payload_state drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x3ba75d1e drm_dp_mst_connector_late_register drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xcc8ed0ca drm_dp_mst_connector_early_unregister drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xaef3a3de drm_dp_send_power_updown_phy drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc12fcbba drm_dp_send_query_stream_enc_status drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x03a763c4 drm_dp_add_payload_part1 drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb82d88a4 drm_dp_remove_payload drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb0bf3126 drm_dp_add_payload_part2 drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x06b772c0 drm_dp_get_vc_payload_bw drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x7b99f193 drm_dp_read_mst_cap drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb15d22d8 drm_dp_mst_topology_mgr_set_mst drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x82adf6f8 drm_dp_mst_topology_mgr_suspend drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x10dcd61d drm_dp_mst_topology_mgr_resume drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x1b1ec9d2 drm_dp_mst_hpd_irq_handle_event drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x9c212847 drm_dp_mst_hpd_irq_send_new_request drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xd30f67c9 drm_dp_mst_detect_port drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb1516104 drm_dp_mst_edid_read drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xe4156fce drm_dp_mst_get_edid drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x4a397b00 drm_dp_atomic_find_time_slots drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x14be4a34 drm_dp_atomic_release_time_slots drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x3a852f8c drm_dp_mst_atomic_setup_commit drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x2cc516b0 drm_dp_mst_atomic_wait_for_dependencies drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x1dadec68 drm_dp_mst_root_conn_atomic_check drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xe2d18320 drm_dp_mst_update_slots drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc4628a5d drm_dp_check_act_status drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa47826e4 drm_dp_calc_pbn_mode drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6898bba3 drm_dp_mst_dump_topology drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x04c1a2fc drm_dp_mst_add_affected_dsc_crtcs drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xd0b6be50 drm_dp_mst_atomic_enable_dsc drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x12ce293a drm_dp_mst_atomic_check drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xf72f60a2 drm_dp_mst_topology_state_funcs drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x8c29d785 drm_atomic_get_mst_topology_state drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x5d520125 drm_atomic_get_old_mst_topology_state drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa176d87c drm_atomic_get_new_mst_topology_state drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xcdfcccfb drm_dp_mst_topology_mgr_init drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x40133b1a drm_dp_mst_topology_mgr_destroy drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xfa2d0e3d drm_dp_mst_dsc_aux_for_port drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x648d953b drm_dsc_dp_pps_header_init drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x1a5bf3ca drm_dsc_dp_rc_buffer_size drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x58d8fcaa drm_dsc_pps_payload_pack drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x627ba04b drm_dsc_set_const_params drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x24ada755 drm_dsc_set_rc_buf_thresh drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x79008c7e drm_dsc_setup_rc_params drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xfe12bcb9 drm_dsc_compute_rc_parameters drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xd0e95456 drm_dsc_get_bpp_int drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x95883bb4 drm_dsc_initial_scale_value drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xe2468a48 drm_dsc_flatness_det_thresh drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xfa5fda06 drm_hdcp_check_ksvs_revoked drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL_GPL
-0xc4eb6829 drm_connector_attach_content_protection_property drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xbd2d91d7 drm_hdcp_update_content_protection drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x5299c5b7 drm_hdmi_infoframe_set_hdr_metadata drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xc55ea73f drm_hdmi_avi_infoframe_colorimetry drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x2a9283fc drm_hdmi_avi_infoframe_bars drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x90f24bf5 drm_hdmi_avi_infoframe_content_type drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x5201c992 drm_scdc_read drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xf2462510 drm_scdc_write drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xffd8aabb drm_scdc_get_scrambling_status drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x8b08ff90 drm_scdc_set_scrambling drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xa9aaf87d drm_scdc_set_high_tmds_clock_ratio drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x6bc15eaa drm_dp_cec_irq drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x46767fc5 drm_dp_cec_set_edid drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xb328ae91 drm_dp_cec_unset_edid drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xeb91ea8f drm_dp_cec_register_connector drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0x3dc9c69c drm_dp_cec_unregister_connector drivers/gpu/drm/display/drm_display_helper EXPORT_SYMBOL
-0xcdd171ce devm_aperture_acquire_from_firmware drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0464ed15 drm_aperture_remove_conflicting_framebuffers drivers/gpu/drm/drm EXPORT_SYMBOL
-0x575075e5 drm_aperture_remove_conflicting_pci_framebuffers drivers/gpu/drm/drm EXPORT_SYMBOL
-0xae277372 __drm_crtc_commit_free drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe042ec20 drm_crtc_commit_wait drivers/gpu/drm/drm EXPORT_SYMBOL
-0x15b98260 drm_atomic_state_default_release drivers/gpu/drm/drm EXPORT_SYMBOL
-0x245dbc2c drm_atomic_state_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb33e8cd2 drm_atomic_state_alloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0x501ef34f drm_atomic_state_default_clear drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa266b2c9 drm_atomic_state_clear drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb9cad492 __drm_atomic_state_free drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd74734b1 drm_atomic_get_crtc_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0xdccffe5d drm_atomic_get_plane_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0xef74657a drm_atomic_private_obj_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x50ff161e drm_atomic_private_obj_fini drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa247fda2 drm_atomic_get_private_obj_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8e1e9683 drm_atomic_get_old_private_obj_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0f6fd494 drm_atomic_get_new_private_obj_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbccfcc41 drm_atomic_get_old_connector_for_encoder drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3dbe8e56 drm_atomic_get_new_connector_for_encoder drivers/gpu/drm/drm EXPORT_SYMBOL
-0x95ddeffb drm_atomic_get_old_crtc_for_encoder drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9f8f47e9 drm_atomic_get_new_crtc_for_encoder drivers/gpu/drm/drm EXPORT_SYMBOL
-0x053bfd3c drm_atomic_get_connector_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0xab633d3d drm_atomic_get_bridge_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc4d73e10 drm_atomic_get_old_bridge_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0x37641df0 drm_atomic_get_new_bridge_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb0070a14 drm_atomic_add_encoder_bridges drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe1501e05 drm_atomic_add_affected_connectors drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6d6d6e9d drm_atomic_add_affected_planes drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf3f154aa drm_atomic_check_only drivers/gpu/drm/drm EXPORT_SYMBOL
-0x50a3c41b drm_atomic_commit drivers/gpu/drm/drm EXPORT_SYMBOL
-0x571209bb drm_atomic_nonblocking_commit drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe0c15e9f __drm_atomic_helper_disable_plane drivers/gpu/drm/drm EXPORT_SYMBOL
-0x51ec2fab __drm_atomic_helper_set_config drivers/gpu/drm/drm EXPORT_SYMBOL
-0x74f32190 drm_atomic_print_new_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5b64ac12 drm_state_dump drivers/gpu/drm/drm EXPORT_SYMBOL
-0x70e1da76 drm_atomic_set_mode_for_crtc drivers/gpu/drm/drm EXPORT_SYMBOL
-0x797a882f drm_atomic_set_mode_prop_for_crtc drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb283b44a drm_atomic_set_crtc_for_plane drivers/gpu/drm/drm EXPORT_SYMBOL
-0x941977f9 drm_atomic_set_fb_for_plane drivers/gpu/drm/drm EXPORT_SYMBOL
-0x875f3e01 drm_atomic_set_crtc_for_connector drivers/gpu/drm/drm EXPORT_SYMBOL
-0xca4a2523 drm_is_current_master drivers/gpu/drm/drm EXPORT_SYMBOL
-0x960aa6ba drm_master_get drivers/gpu/drm/drm EXPORT_SYMBOL
-0x82affd02 drm_file_get_master drivers/gpu/drm/drm EXPORT_SYMBOL
-0xfb09803c drm_master_put drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8e462447 drm_master_internal_acquire drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7c5859eb drm_master_internal_release drivers/gpu/drm/drm EXPORT_SYMBOL
-0xeb7fbffa drm_plane_create_alpha_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x02a7e3c5 drm_plane_create_rotation_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xdf666902 drm_rotation_simplify drivers/gpu/drm/drm EXPORT_SYMBOL
-0xfb4a3c70 drm_plane_create_zpos_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x65cec083 drm_plane_create_zpos_immutable_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbe135115 drm_atomic_normalize_zpos drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1d4a1f64 drm_plane_create_blend_mode_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x75483d1e drm_bridge_add drivers/gpu/drm/drm EXPORT_SYMBOL
-0x288efa6f devm_drm_bridge_add drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbaee2aba drm_bridge_remove drivers/gpu/drm/drm EXPORT_SYMBOL
-0xfe6d0643 drm_bridge_attach drivers/gpu/drm/drm EXPORT_SYMBOL
-0x86300f17 drm_bridge_chain_mode_fixup drivers/gpu/drm/drm EXPORT_SYMBOL
-0x66c2e916 drm_bridge_chain_mode_valid drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb27548e9 drm_bridge_chain_mode_set drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3b7be2be drm_atomic_bridge_chain_disable drivers/gpu/drm/drm EXPORT_SYMBOL
-0x43139563 drm_atomic_bridge_chain_post_disable drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc1999412 drm_atomic_bridge_chain_pre_enable drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3b731abc drm_atomic_bridge_chain_enable drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc3211259 drm_atomic_bridge_chain_check drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7bd38e59 drm_bridge_detect drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x4fbee9a1 drm_bridge_get_modes drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x10794d8d drm_bridge_edid_read drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x2aa9367f drm_bridge_get_edid drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xb4209429 drm_bridge_hpd_enable drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xacf1f22f drm_bridge_hpd_disable drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x51734fba drm_bridge_hpd_notify drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x48b0cdd7 drm_clflush_pages drivers/gpu/drm/drm EXPORT_SYMBOL
-0x69e1bf40 drm_clflush_sg drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0a72f765 drm_clflush_virt_range drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb6127243 drm_need_swiotlb drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa38c4c94 drm_memcpy_from_wc drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe475b8be drm_client_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9c072663 drm_client_register drivers/gpu/drm/drm EXPORT_SYMBOL
-0x80c6dffd drm_client_release drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc57eec71 drm_client_dev_hotplug drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbea5bbc3 drm_client_buffer_vmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb5e1e8c1 drm_client_buffer_vunmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0x34593b68 drm_client_framebuffer_create drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe8444a86 drm_client_framebuffer_delete drivers/gpu/drm/drm EXPORT_SYMBOL
-0x427753ab drm_client_framebuffer_flush drivers/gpu/drm/drm EXPORT_SYMBOL
-0x766bcf67 drm_client_modeset_probe drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8d7e84bc drm_client_rotation drivers/gpu/drm/drm EXPORT_SYMBOL
-0x27a97303 drm_client_modeset_check drivers/gpu/drm/drm EXPORT_SYMBOL
-0x84faa13f drm_client_modeset_commit_locked drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4712bfd6 drm_client_modeset_commit drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb6988a56 drm_client_modeset_dpms drivers/gpu/drm/drm EXPORT_SYMBOL
-0xad4e902b drm_color_ctm_s31_32_to_qm_n drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe249ab24 drm_crtc_enable_color_mgmt drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbfabfb93 drm_mode_crtc_set_gamma_size drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb0233306 drm_plane_create_color_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0x79e2bd27 drm_color_lut_check drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf406e46a drm_get_connector_type_name drivers/gpu/drm/drm EXPORT_SYMBOL
-0x789cacb9 drm_connector_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x43e0dc1e drm_connector_init_with_ddc drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9af0b00d drmm_connector_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa7aa39da drm_connector_attach_edid_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6ce1628b drm_connector_attach_encoder drivers/gpu/drm/drm EXPORT_SYMBOL
-0xcecfacc7 drm_connector_has_possible_encoder drivers/gpu/drm/drm EXPORT_SYMBOL
-0x85772aca drm_connector_cleanup drivers/gpu/drm/drm EXPORT_SYMBOL
-0x19765c73 drm_connector_register drivers/gpu/drm/drm EXPORT_SYMBOL
-0x06e3c1c2 drm_connector_unregister drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0fd60df2 drm_get_connector_status_name drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc9999cfb drm_connector_list_iter_begin drivers/gpu/drm/drm EXPORT_SYMBOL
-0x27893a17 drm_connector_list_iter_next drivers/gpu/drm/drm EXPORT_SYMBOL
-0x52b215d1 drm_connector_list_iter_end drivers/gpu/drm/drm EXPORT_SYMBOL
-0x107742a9 drm_get_subpixel_order_name drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0631ffc2 drm_display_info_set_bus_formats drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf095dc96 drm_get_tv_mode_from_name drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3e66b9e1 drm_mode_create_dvi_i_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0x85b005ac drm_connector_attach_dp_subconnector_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf0a1184e drm_connector_attach_content_type_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2bee525c drm_connector_attach_tv_margin_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd1f37fa2 drm_mode_create_tv_margin_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0x679b570d drm_mode_create_tv_properties_legacy drivers/gpu/drm/drm EXPORT_SYMBOL
-0x11444b94 drm_mode_create_tv_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe5e827aa drm_mode_create_scaling_mode_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xec14d80a drm_connector_attach_vrr_capable_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb88ad770 drm_connector_attach_scaling_mode_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3ae8c0a2 drm_mode_create_aspect_ratio_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x18645905 drm_mode_create_hdmi_colorspace_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe4ae5cde drm_mode_create_dp_colorspace_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x81e48746 drm_mode_create_content_type_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0f7afe83 drm_mode_create_suggested_offset_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc8d5500f drm_connector_set_path_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xcf6de217 drm_connector_set_tile_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x146fd660 drm_connector_set_link_status_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x361679ae drm_connector_attach_max_bpc_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xae7b18ab drm_connector_attach_hdr_output_metadata_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xdc84cbf7 drm_connector_attach_colorspace_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf4813b44 drm_connector_atomic_hdr_metadata_equal drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9db3a837 drm_connector_set_vrr_capable_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x32211dd5 drm_connector_set_panel_orientation drivers/gpu/drm/drm EXPORT_SYMBOL
-0x71017522 drm_connector_set_panel_orientation_with_quirk drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5cc76d35 drm_connector_set_orientation_from_panel drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0123178f drm_connector_create_privacy_screen_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1bdf7a3f drm_connector_attach_privacy_screen_properties drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa94c3f2f drm_connector_attach_privacy_screen_provider drivers/gpu/drm/drm EXPORT_SYMBOL
-0x11cfb8c6 drm_connector_update_privacy_screen drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe442eaf2 drm_connector_oob_hotplug_event drivers/gpu/drm/drm EXPORT_SYMBOL
-0xccec54da drm_mode_put_tile_group drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4f9c138b drm_mode_get_tile_group drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1ce8075c drm_mode_create_tile_group drivers/gpu/drm/drm EXPORT_SYMBOL
-0x98b1c2c0 drm_crtc_from_index drivers/gpu/drm/drm EXPORT_SYMBOL
-0x08d6c12c drm_crtc_init_with_planes drivers/gpu/drm/drm EXPORT_SYMBOL
-0x09828077 drmm_crtc_init_with_planes drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5fd4b82d __drmm_crtc_alloc_with_planes drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3f8fa0e0 drm_crtc_cleanup drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7ccb442b drm_mode_set_config_internal drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3ef5b2a6 drm_crtc_check_viewport drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe845b2fa drm_crtc_create_scaling_filter_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5b711ecc drm_put_dev drivers/gpu/drm/drm EXPORT_SYMBOL
-0x83de7c60 drm_dev_enter drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe8a034df drm_dev_exit drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb274b9ec drm_dev_unplug drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8f3ab92d __devm_drm_dev_alloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0x75fb8ed6 drm_dev_alloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0x730a659a drm_dev_get drivers/gpu/drm/drm EXPORT_SYMBOL
-0x71de6bfd drm_dev_put drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5db3ce6e drm_dev_register drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbe134558 drm_dev_unregister drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9b9de1c1 drm_edid_header_is_valid drivers/gpu/drm/drm EXPORT_SYMBOL
-0x24993e50 drm_edid_are_equal drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd13f9985 drm_edid_block_valid drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8d72789e drm_edid_is_valid drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb3750192 drm_edid_valid drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1712e76f drm_edid_override_connector_update drivers/gpu/drm/drm EXPORT_SYMBOL
-0x007e862a drm_do_get_edid drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x4489a5e9 drm_edid_raw drivers/gpu/drm/drm EXPORT_SYMBOL
-0x79c00fa2 drm_edid_alloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb212dc3e drm_edid_dup drivers/gpu/drm/drm EXPORT_SYMBOL
-0x397c3d27 drm_edid_free drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3007ba4d drm_probe_ddc drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5d57d998 drm_get_edid drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa7226494 drm_edid_read_custom drivers/gpu/drm/drm EXPORT_SYMBOL
-0x35a68a05 drm_edid_read_ddc drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe22dfad8 drm_edid_read drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4c0495ad drm_edid_get_panel_id drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc0c471dd drm_get_edid_switcheroo drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd57e4902 drm_edid_read_switcheroo drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7edf470b drm_edid_duplicate drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb6739751 drm_mode_find_dmt drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9b285573 drm_match_cea_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0x030e7ecf drm_display_mode_from_cea_vic drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7c545285 drm_edid_get_monitor_name drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6ac01ea8 drm_edid_to_sad drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3cdc37e9 drm_edid_to_speaker_allocation drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf0b5f8a9 drm_av_sync_delay drivers/gpu/drm/drm EXPORT_SYMBOL
-0x38690d99 drm_detect_hdmi_monitor drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa248afde drm_detect_monitor_audio drivers/gpu/drm/drm EXPORT_SYMBOL
-0x65702bd6 drm_default_rgb_quant_range drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbaf2f2e7 drm_edid_connector_update drivers/gpu/drm/drm EXPORT_SYMBOL
-0x41b5ab3c drm_edid_connector_add_modes drivers/gpu/drm/drm EXPORT_SYMBOL
-0x348ee3fe drm_connector_update_edid_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9cf360fb drm_add_edid_modes drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbf92484f drm_add_modes_noedid drivers/gpu/drm/drm EXPORT_SYMBOL
-0x074bec06 drm_set_preferred_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe333a611 drm_hdmi_avi_infoframe_from_display_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0xdfe12527 drm_hdmi_avi_infoframe_quant_range drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7b04c60d drm_hdmi_vendor_infoframe_from_display_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8a07d62f drm_encoder_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2abce761 drm_encoder_cleanup drivers/gpu/drm/drm EXPORT_SYMBOL
-0xaf1d1fb5 __drmm_encoder_alloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2e84df79 drmm_encoder_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0xfbd9d7dd drm_open drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8134a04a drm_release drivers/gpu/drm/drm EXPORT_SYMBOL
-0x76e0ef2a drm_release_noglobal drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa87667b9 drm_read drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9e7757c9 drm_poll drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5e30c995 drm_event_reserve_init_locked drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd1e338c9 drm_event_reserve_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x06b0a9e9 drm_event_cancel_free drivers/gpu/drm/drm EXPORT_SYMBOL
-0x07e4e051 drm_send_event_timestamp_locked drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe24e0b70 drm_send_event_locked drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb0ca4cc3 drm_send_event drivers/gpu/drm/drm EXPORT_SYMBOL
-0x16b809c8 drm_print_memory_stats drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7d1fa4a3 drm_show_memory_stats drivers/gpu/drm/drm EXPORT_SYMBOL
-0x86ae05d8 drm_show_fdinfo drivers/gpu/drm/drm EXPORT_SYMBOL
-0x29f078d1 drm_mode_legacy_fb_format drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2945806b drm_driver_legacy_fb_format drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1b81aba9 drm_format_info drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbf33bc90 drm_get_format_info drivers/gpu/drm/drm EXPORT_SYMBOL
-0x533c4210 drm_format_info_block_width drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc385fb14 drm_format_info_block_height drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5f8bc0f2 drm_format_info_bpp drivers/gpu/drm/drm EXPORT_SYMBOL
-0x204c8d9b drm_format_info_min_pitch drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa2fa8151 drm_framebuffer_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x55683a81 drm_framebuffer_lookup drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa0607714 drm_framebuffer_unregister_private drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd2501872 drm_framebuffer_cleanup drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbabd3940 drm_framebuffer_remove drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2f2dada7 drm_framebuffer_plane_width drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0ed66f7c drm_framebuffer_plane_height drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6b1e9e62 drm_gem_object_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8acae961 drm_gem_private_object_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0130246e drm_gem_private_object_fini drivers/gpu/drm/drm EXPORT_SYMBOL
-0xecdf21d4 drm_gem_handle_delete drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7a20174e drm_gem_dumb_map_offset drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xdb97ab64 drm_gem_handle_create drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb0bf42cc drm_gem_free_mmap_offset drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa2c9f8b1 drm_gem_create_mmap_offset_size drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6bf24bc3 drm_gem_create_mmap_offset drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3d526a24 drm_gem_get_pages drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf21982ae drm_gem_put_pages drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4ffd9d73 drm_gem_objects_lookup drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe42c14ed drm_gem_object_lookup drivers/gpu/drm/drm EXPORT_SYMBOL
-0x94d79581 drm_gem_dma_resv_wait drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1d5d5eb0 drm_gem_object_release drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd680a377 drm_gem_object_free drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2bf9ab4b drm_gem_vm_open drivers/gpu/drm/drm EXPORT_SYMBOL
-0x98c775aa drm_gem_vm_close drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd289f53a drm_gem_mmap_obj drivers/gpu/drm/drm EXPORT_SYMBOL
-0x12713d7b drm_gem_mmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0x602ab7ad drm_gem_vmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0x05da1c29 drm_gem_vunmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0xdf9108dc drm_gem_vmap_unlocked drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2f480675 drm_gem_vunmap_unlocked drivers/gpu/drm/drm EXPORT_SYMBOL
-0xac6b2e74 drm_gem_lock_reservations drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6935732f drm_gem_unlock_reservations drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa956955b drm_gem_lru_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb3af36d3 drm_gem_lru_remove drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3d68a504 drm_gem_lru_move_tail_locked drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4511f791 drm_gem_lru_move_tail drivers/gpu/drm/drm EXPORT_SYMBOL
-0xca253328 drm_gem_lru_scan drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc0019931 drm_gem_evict drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc46d1b86 drm_noop drivers/gpu/drm/drm EXPORT_SYMBOL
-0x19a1c44c drm_invalid_op drivers/gpu/drm/drm EXPORT_SYMBOL
-0x175e1033 drm_ioctl_kernel drivers/gpu/drm/drm EXPORT_SYMBOL
-0x15626df0 drm_ioctl drivers/gpu/drm/drm EXPORT_SYMBOL
-0x57b6efe3 drm_ioctl_flags drivers/gpu/drm/drm EXPORT_SYMBOL
-0x326fc265 __drmm_add_action drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2bc5ce3b __drmm_add_action_or_reset drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbb5a0df8 drmm_kmalloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0xca3b0cba drmm_kstrdup drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xc5113cd0 drmm_kfree drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd96984fd __drmm_mutex_release drivers/gpu/drm/drm EXPORT_SYMBOL
-0x25daad93 __drm_mm_interval_first drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2754dad8 drm_mm_reserve_node drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb4032484 drm_mm_insert_node_in_range drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4b7ebf95 drm_mm_remove_node drivers/gpu/drm/drm EXPORT_SYMBOL
-0x59056243 drm_mm_replace_node drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2a962499 drm_mm_scan_init_with_range drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2183c08c drm_mm_scan_add_block drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5f7985a5 drm_mm_scan_remove_block drivers/gpu/drm/drm EXPORT_SYMBOL
-0xdf3f760d drm_mm_scan_color_evict drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf0517d7a drm_mm_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x57698a50 drm_mm_takedown drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0f7acb66 drm_mm_print drivers/gpu/drm/drm EXPORT_SYMBOL
-0x53e735af drm_mode_config_reset drivers/gpu/drm/drm EXPORT_SYMBOL
-0x635404ab drmm_mode_config_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4b9eb625 drm_mode_config_cleanup drivers/gpu/drm/drm EXPORT_SYMBOL
-0xeacd3450 drm_mode_object_find drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6b358e48 drm_mode_object_put drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7ec30d3d drm_mode_object_get drivers/gpu/drm/drm EXPORT_SYMBOL
-0x02fea711 drm_object_attach_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0x387bbc9e drm_object_property_set_value drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1c466277 drm_object_property_get_value drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5c6f461f drm_object_property_get_default_value drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2ed3c600 drm_mode_debug_printmodeline drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9d787373 drm_mode_create drivers/gpu/drm/drm EXPORT_SYMBOL
-0x58625dc3 drm_mode_destroy drivers/gpu/drm/drm EXPORT_SYMBOL
-0xef370680 drm_mode_probed_add drivers/gpu/drm/drm EXPORT_SYMBOL
-0x97ab6c3c drm_analog_tv_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0x238aadd6 drm_cvt_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb54cd302 drm_gtf_mode_complex drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1d232a50 drm_gtf_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4a35d30d drm_mode_set_name drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf1b5340a drm_mode_vrefresh drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4403a9c3 drm_mode_get_hv_timing drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4575a0ca drm_mode_set_crtcinfo drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9ce050be drm_mode_copy drivers/gpu/drm/drm EXPORT_SYMBOL
-0xcdb99cc9 drm_mode_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x50d1f2cf drm_mode_duplicate drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9b95c885 drm_mode_match drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0d9b4753 drm_mode_equal drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3ab87110 drm_mode_equal_no_clocks drivers/gpu/drm/drm EXPORT_SYMBOL
-0x24d124ac drm_mode_equal_no_clocks_no_stereo drivers/gpu/drm/drm EXPORT_SYMBOL
-0x73de4eb1 drm_mode_validate_driver drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd7a9cf42 drm_mode_validate_size drivers/gpu/drm/drm EXPORT_SYMBOL
-0x10ab5408 drm_mode_validate_ycbcr420 drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1442227e drm_mode_prune_invalid drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf1421d13 drm_mode_sort drivers/gpu/drm/drm EXPORT_SYMBOL
-0x34689e20 drm_connector_list_update drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2bc495c0 drm_mode_parse_command_line_for_connector drivers/gpu/drm/drm EXPORT_SYMBOL
-0x389de3c2 drm_mode_create_from_cmdline_mode drivers/gpu/drm/drm EXPORT_SYMBOL
-0xcd8593ad drm_mode_is_420_only drivers/gpu/drm/drm EXPORT_SYMBOL
-0x36917776 drm_mode_is_420_also drivers/gpu/drm/drm EXPORT_SYMBOL
-0x50cccc08 drm_mode_is_420 drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6b519712 drm_modeset_lock_all drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbeb51b5b drm_modeset_unlock_all drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4517938c drm_warn_on_modeset_not_all_locked drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf6d3e907 drm_modeset_acquire_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0ccfdb4c drm_modeset_acquire_fini drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3b52449f drm_modeset_drop_locks drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5254a397 drm_modeset_backoff drivers/gpu/drm/drm EXPORT_SYMBOL
-0x990d8ac0 drm_modeset_lock_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbdabc2b3 drm_modeset_lock drivers/gpu/drm/drm EXPORT_SYMBOL
-0x04e7d8a0 drm_modeset_lock_single_interruptible drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7cc00434 drm_modeset_unlock drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbcc1c100 drm_modeset_lock_all_ctx drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8f04fcc0 drm_universal_plane_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x59ac8f29 __drmm_universal_plane_alloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf3c85bad __drm_universal_plane_alloc drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe7c3953a drm_plane_cleanup drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3b3ecaa4 drm_plane_from_index drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa6c2979d drm_plane_force_disable drivers/gpu/drm/drm EXPORT_SYMBOL
-0x238a0cde drm_mode_plane_set_obj_prop drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3854cfef drm_any_plane_has_format drivers/gpu/drm/drm EXPORT_SYMBOL
-0x05fe6f1d drm_plane_enable_fb_damage_clips drivers/gpu/drm/drm EXPORT_SYMBOL
-0xea8442b6 drm_plane_get_damage_clips_count drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa0678cea drm_plane_get_damage_clips drivers/gpu/drm/drm EXPORT_SYMBOL
-0x53c13417 drm_plane_create_scaling_filter_property drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb4b7c07c drm_gem_dmabuf_export drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1c3ba64f drm_gem_dmabuf_release drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb450dd7b drm_gem_prime_fd_to_handle drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc9a46811 drm_gem_prime_handle_to_fd drivers/gpu/drm/drm EXPORT_SYMBOL
-0x605f3c35 drm_gem_map_attach drivers/gpu/drm/drm EXPORT_SYMBOL
-0x14de535e drm_gem_map_detach drivers/gpu/drm/drm EXPORT_SYMBOL
-0x770600a4 drm_gem_map_dma_buf drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4db255df drm_gem_unmap_dma_buf drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe3aa84f1 drm_gem_dmabuf_vmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3a206bf6 drm_gem_dmabuf_vunmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe6cde1fb drm_gem_prime_mmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2b0ec757 drm_gem_dmabuf_mmap drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa00b691e drm_prime_pages_to_sg drivers/gpu/drm/drm EXPORT_SYMBOL
-0xdad9c8b1 drm_prime_get_contiguous_size drivers/gpu/drm/drm EXPORT_SYMBOL
-0x03f75efb drm_gem_prime_export drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4e9c8913 drm_gem_prime_import_dev drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc4790c8a drm_gem_prime_import drivers/gpu/drm/drm EXPORT_SYMBOL
-0x744746cf drm_prime_sg_to_page_array drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4e2a621e drm_prime_sg_to_dma_addr_array drivers/gpu/drm/drm EXPORT_SYMBOL
-0x07698158 drm_prime_gem_destroy drivers/gpu/drm/drm EXPORT_SYMBOL
-0x69353664 __drm_debug drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3b0e5e9c __drm_puts_coredump drivers/gpu/drm/drm EXPORT_SYMBOL
-0xea00fe81 __drm_printfn_coredump drivers/gpu/drm/drm EXPORT_SYMBOL
-0x513072fe __drm_puts_seq_file drivers/gpu/drm/drm EXPORT_SYMBOL
-0xfeb953b1 __drm_printfn_seq_file drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe317082a __drm_printfn_info drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf824c7db __drm_printfn_debug drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3f405489 __drm_printfn_err drivers/gpu/drm/drm EXPORT_SYMBOL
-0x521ad6d0 drm_puts drivers/gpu/drm/drm EXPORT_SYMBOL
-0x28779e52 drm_printf drivers/gpu/drm/drm EXPORT_SYMBOL
-0x32a0cc37 drm_print_bits drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5376482d drm_dev_printk drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5562e9e1 __drm_dev_dbg drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7e3277f8 ___drm_dbg drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb11ac7a7 __drm_err drivers/gpu/drm/drm EXPORT_SYMBOL
-0x67d20610 drm_print_regset32 drivers/gpu/drm/drm EXPORT_SYMBOL
-0x467b8321 drm_property_create drivers/gpu/drm/drm EXPORT_SYMBOL
-0x35754b3f drm_property_create_enum drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4ff83f67 drm_property_create_bitmask drivers/gpu/drm/drm EXPORT_SYMBOL
-0x82206734 drm_property_create_range drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0a661855 drm_property_create_signed_range drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2aa8ceec drm_property_create_object drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd15baa51 drm_property_create_bool drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2c6bf88f drm_property_add_enum drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbf5909f7 drm_property_destroy drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbc8d46fc drm_property_create_blob drivers/gpu/drm/drm EXPORT_SYMBOL
-0x95f51ed1 drm_property_blob_put drivers/gpu/drm/drm EXPORT_SYMBOL
-0xcc8fe063 drm_property_blob_get drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1181ad34 drm_property_lookup_blob drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1b729006 drm_property_replace_global_blob drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf85c2589 drm_property_replace_blob drivers/gpu/drm/drm EXPORT_SYMBOL
-0x184bd000 drm_syncobj_find drivers/gpu/drm/drm EXPORT_SYMBOL
-0x90869355 drm_syncobj_add_point drivers/gpu/drm/drm EXPORT_SYMBOL
-0xda301798 drm_syncobj_replace_fence drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa726bb24 drm_syncobj_find_fence drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1a411479 drm_syncobj_free drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2702fb17 drm_syncobj_create drivers/gpu/drm/drm EXPORT_SYMBOL
-0x30f8a1c7 drm_syncobj_get_handle drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb7ad7741 drm_syncobj_get_fd drivers/gpu/drm/drm EXPORT_SYMBOL
-0x50674de7 drm_timeout_abs_to_jiffies drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4608170b drm_sysfs_hotplug_event drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc26b9080 drm_sysfs_connector_hotplug_event drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf2d1e756 drm_sysfs_connector_property_event drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0b4c87a9 drm_class_device_register drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x1cbb53b5 drm_class_device_unregister drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x006861bd drm_crtc_accurate_vblank_count drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4daa0bc1 drm_vblank_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1dd587c9 drm_dev_has_vblank drivers/gpu/drm/drm EXPORT_SYMBOL
-0x58e93827 drm_crtc_vblank_waitqueue drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd78bbad4 drm_calc_timestamping_constants drivers/gpu/drm/drm EXPORT_SYMBOL
-0x24be12bc drm_crtc_vblank_helper_get_vblank_timestamp_internal drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb9436b1d drm_crtc_vblank_helper_get_vblank_timestamp drivers/gpu/drm/drm EXPORT_SYMBOL
-0x14d4be78 drm_crtc_vblank_count drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc678348c drm_crtc_vblank_count_and_time drivers/gpu/drm/drm EXPORT_SYMBOL
-0x414439fa drm_crtc_next_vblank_start drivers/gpu/drm/drm EXPORT_SYMBOL
-0x51536bce drm_crtc_arm_vblank_event drivers/gpu/drm/drm EXPORT_SYMBOL
-0x61b1bfe8 drm_crtc_send_vblank_event drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd6c8431c drm_crtc_vblank_get drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc0f62555 drm_crtc_vblank_put drivers/gpu/drm/drm EXPORT_SYMBOL
-0x962aeb19 drm_wait_one_vblank drivers/gpu/drm/drm EXPORT_SYMBOL
-0xabf186b4 drm_crtc_wait_one_vblank drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2c96c901 drm_crtc_vblank_off drivers/gpu/drm/drm EXPORT_SYMBOL
-0x981f3a75 drm_crtc_vblank_reset drivers/gpu/drm/drm EXPORT_SYMBOL
-0x91375fa1 drm_crtc_set_max_vblank_count drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8ffba531 drm_crtc_vblank_on drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb9c67e16 drm_crtc_vblank_restore drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc3286cdd drm_handle_vblank drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8e5f7375 drm_crtc_handle_vblank drivers/gpu/drm/drm EXPORT_SYMBOL
-0x1d25e7b8 drm_vblank_work_schedule drivers/gpu/drm/drm EXPORT_SYMBOL
-0xefafcfde drm_vblank_work_cancel_sync drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9a5d9294 drm_vblank_work_flush drivers/gpu/drm/drm EXPORT_SYMBOL
-0x96118cfc drm_vblank_work_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3c22a4d8 drm_vma_offset_manager_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x07fb449a drm_vma_offset_manager_destroy drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc7910e38 drm_vma_offset_lookup_locked drivers/gpu/drm/drm EXPORT_SYMBOL
-0xe8a0e334 drm_vma_offset_add drivers/gpu/drm/drm EXPORT_SYMBOL
-0x4831da6e drm_vma_offset_remove drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc7d04fc5 drm_vma_node_allow drivers/gpu/drm/drm EXPORT_SYMBOL
-0x820ac5c0 drm_vma_node_allow_once drivers/gpu/drm/drm EXPORT_SYMBOL
-0x7b2e2166 drm_vma_node_revoke drivers/gpu/drm/drm EXPORT_SYMBOL
-0x24cf437a drm_vma_node_is_allowed drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2b0fe77b drm_gpuva_manager_init drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xcc5be27b drm_gpuva_manager_destroy drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x2d3a232d drm_gpuva_insert drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x3cac4276 drm_gpuva_remove drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xe5fa197d drm_gpuva_link drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xb0fa2776 drm_gpuva_unlink drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x30b96731 drm_gpuva_find_first drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x7f4524f2 drm_gpuva_find drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xbc09b1b5 drm_gpuva_find_prev drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x15947ffd drm_gpuva_find_next drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xd50f5b43 drm_gpuva_interval_empty drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x90b9f4ba drm_gpuva_map drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x942a7aa7 drm_gpuva_remap drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x257bdd35 drm_gpuva_unmap drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x2e70e203 drm_gpuva_sm_map drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x21b341ea drm_gpuva_sm_unmap drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x5bd82dc6 drm_gpuva_sm_map_ops_create drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xce0b5b39 drm_gpuva_sm_unmap_ops_create drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x16cdd918 drm_gpuva_prefetch_ops_create drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xd3b4b659 drm_gpuva_gem_unmap_ops_create drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x2ab19581 drm_gpuva_ops_free drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0xa06479de drm_writeback_connector_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0x818c0c90 drm_writeback_connector_init_with_encoder drivers/gpu/drm/drm EXPORT_SYMBOL
-0xbe8ef7cf drm_writeback_prepare_job drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5aa8ba70 drm_writeback_queue_job drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb44a5662 drm_writeback_cleanup_job drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb9b561ca drm_writeback_signal_completion drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb225b410 drm_writeback_get_out_fence drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf58fc233 drm_compat_ioctl drivers/gpu/drm/drm EXPORT_SYMBOL
-0xa6504735 drm_panel_init drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd25f187f drm_panel_add drivers/gpu/drm/drm EXPORT_SYMBOL
-0x82f29abf drm_panel_remove drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6f684ae5 drm_panel_prepare drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb1d9a318 drm_panel_unprepare drivers/gpu/drm/drm EXPORT_SYMBOL
-0xcfe2d8da drm_panel_enable drivers/gpu/drm/drm EXPORT_SYMBOL
-0xee82d552 drm_panel_disable drivers/gpu/drm/drm EXPORT_SYMBOL
-0x5c61d2d7 drm_panel_get_modes drivers/gpu/drm/drm EXPORT_SYMBOL
-0xfb4ffb3b drm_is_panel_follower drivers/gpu/drm/drm EXPORT_SYMBOL
-0xb5794e3a drm_panel_add_follower drivers/gpu/drm/drm EXPORT_SYMBOL
-0x14213649 drm_panel_remove_follower drivers/gpu/drm/drm EXPORT_SYMBOL
-0xed793848 devm_drm_panel_add_follower drivers/gpu/drm/drm EXPORT_SYMBOL
-0x402d1fec drm_panel_of_backlight drivers/gpu/drm/drm EXPORT_SYMBOL
-0xc714a356 drm_debugfs_gpuva_info drivers/gpu/drm/drm EXPORT_SYMBOL
-0x167606e5 drm_debugfs_create_files drivers/gpu/drm/drm EXPORT_SYMBOL
-0xf7cbc141 drm_debugfs_remove_files drivers/gpu/drm/drm EXPORT_SYMBOL
-0x225377b4 drm_debugfs_add_file drivers/gpu/drm/drm EXPORT_SYMBOL
-0x6301eced drm_debugfs_add_files drivers/gpu/drm/drm EXPORT_SYMBOL
-0x33e96251 drm_crtc_add_crc_entry drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
-0x31b8a5e3 __drm_set_edid_firmware_path drivers/gpu/drm/drm EXPORT_SYMBOL
-0x03c63897 __drm_get_edid_firmware_path drivers/gpu/drm/drm EXPORT_SYMBOL
-0x2f476172 drm_privacy_screen_lookup_add drivers/gpu/drm/drm EXPORT_SYMBOL
-0x0eb7f5eb drm_privacy_screen_lookup_remove drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd6392076 drm_privacy_screen_get drivers/gpu/drm/drm EXPORT_SYMBOL
-0x8e99dc2f drm_privacy_screen_put drivers/gpu/drm/drm EXPORT_SYMBOL
-0x9515836a drm_privacy_screen_set_sw_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0x65ca928a drm_privacy_screen_get_state drivers/gpu/drm/drm EXPORT_SYMBOL
-0x67fa66ab drm_privacy_screen_register_notifier drivers/gpu/drm/drm EXPORT_SYMBOL
-0xfdd570f0 drm_privacy_screen_unregister_notifier drivers/gpu/drm/drm EXPORT_SYMBOL
-0x79f1b2da drm_privacy_screen_register drivers/gpu/drm/drm EXPORT_SYMBOL
-0xec84b37d drm_privacy_screen_unregister drivers/gpu/drm/drm EXPORT_SYMBOL
-0xd872577b drm_privacy_screen_call_notifier_chain drivers/gpu/drm/drm EXPORT_SYMBOL
-0x3782ab56 drm_exec_init drivers/gpu/drm/drm_exec EXPORT_SYMBOL
-0x9c455ef2 drm_exec_fini drivers/gpu/drm/drm_exec EXPORT_SYMBOL
-0x3eb06f45 drm_exec_cleanup drivers/gpu/drm/drm_exec EXPORT_SYMBOL
-0x8a3b5f11 drm_exec_lock_obj drivers/gpu/drm/drm_exec EXPORT_SYMBOL
-0xcfe4d298 drm_exec_unlock_obj drivers/gpu/drm/drm_exec EXPORT_SYMBOL
-0x90d16012 drm_exec_prepare_obj drivers/gpu/drm/drm_exec EXPORT_SYMBOL
-0x97a39602 drm_exec_prepare_array drivers/gpu/drm/drm_exec EXPORT_SYMBOL
-0x9f44c898 drm_buddy_init drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0xfa150882 drm_buddy_fini drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0x40d76a49 drm_get_buddy drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0xbd5b3bcc drm_buddy_free_block drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0x22d53779 drm_buddy_free_list drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0xabb5a026 drm_buddy_block_trim drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0xff748b76 drm_buddy_alloc_blocks drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0xc30d71cc drm_buddy_block_print drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0x2d9e9583 drm_buddy_print drivers/gpu/drm/drm_buddy EXPORT_SYMBOL
-0x81d8bc26 drm_gem_shmem_create drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0x6ccc5781 drm_gem_shmem_free drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0x976e0efb drm_gem_shmem_put_pages drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0xfdf4a279 drm_gem_shmem_pin drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0x98836351 drm_gem_shmem_unpin drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0xa0e5e6fb drm_gem_shmem_vmap drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0xc3bfaa7b drm_gem_shmem_vunmap drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0xa440abad drm_gem_shmem_madvise drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0x3149af66 drm_gem_shmem_purge drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0x617f285e drm_gem_shmem_dumb_create drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0x474fdc16 drm_gem_shmem_vm_ops drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0xbfec7b03 drm_gem_shmem_mmap drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0xc966444a drm_gem_shmem_print_info drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL
-0x01a26078 drm_gem_shmem_get_sg_table drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0xabf90384 drm_gem_shmem_get_pages_sgt drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0xe5552ee0 drm_gem_shmem_prime_import_sg_table drivers/gpu/drm/drm_shmem_helper EXPORT_SYMBOL_GPL
-0x048a510f drm_suballoc_manager_init drivers/gpu/drm/drm_suballoc_helper EXPORT_SYMBOL
-0xdd9c3522 drm_suballoc_manager_fini drivers/gpu/drm/drm_suballoc_helper EXPORT_SYMBOL
-0x0bad1988 drm_suballoc_new drivers/gpu/drm/drm_suballoc_helper EXPORT_SYMBOL
-0x8debd4c9 drm_suballoc_free drivers/gpu/drm/drm_suballoc_helper EXPORT_SYMBOL
-0xcfea1bec drm_suballoc_dump_debug_info drivers/gpu/drm/drm_suballoc_helper EXPORT_SYMBOL
-0xdbb05d4b drm_gem_vram_create drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x8e09b0b1 drm_gem_vram_put drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x5656fb1d drm_gem_vram_offset drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0xb8f0798c drm_gem_vram_pin drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0xf84bbcf2 drm_gem_vram_unpin drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0xc8607020 drm_gem_vram_vmap drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x22cdac60 drm_gem_vram_vunmap drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0xaf8f7316 drm_gem_vram_fill_create_dumb drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x94d891ef drm_gem_vram_driver_dumb_create drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x6754c11e drm_gem_vram_plane_helper_prepare_fb drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0xd163c9cf drm_gem_vram_plane_helper_cleanup_fb drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x7dc30265 drm_gem_vram_simple_display_pipe_prepare_fb drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0xfb9c548b drm_gem_vram_simple_display_pipe_cleanup_fb drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x99e95363 drm_vram_mm_debugfs_init drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x63924d53 drmm_vram_helper_init drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0x34063258 drm_vram_helper_mode_valid drivers/gpu/drm/drm_vram_helper EXPORT_SYMBOL
-0xd98d0a70 drm_gem_ttm_print_info drivers/gpu/drm/drm_ttm_helper EXPORT_SYMBOL
-0xb1978228 drm_gem_ttm_vmap drivers/gpu/drm/drm_ttm_helper EXPORT_SYMBOL
-0x9ec9e323 drm_gem_ttm_vunmap drivers/gpu/drm/drm_ttm_helper EXPORT_SYMBOL
-0x313e9972 drm_gem_ttm_mmap drivers/gpu/drm/drm_ttm_helper EXPORT_SYMBOL
-0xdd1ca475 drm_gem_ttm_dumb_map_offset drivers/gpu/drm/drm_ttm_helper EXPORT_SYMBOL
-0xaa4e4184 drm_atomic_helper_check_modeset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xfdd75130 drm_atomic_helper_check_wb_encoder_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x1d001759 drm_atomic_helper_check_plane_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x3e6f5959 drm_atomic_helper_check_crtc_primary_plane drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xee5e3727 drm_atomic_helper_check_planes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x8286d64a drm_atomic_helper_check drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xcfce47ea drm_atomic_helper_update_legacy_modeset_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x413d4a12 drm_atomic_helper_calc_timestamping_constants drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2c8f26f4 drm_atomic_helper_commit_modeset_disables drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x29c9f88c drm_atomic_helper_commit_modeset_enables drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x45d00183 drm_atomic_helper_wait_for_fences drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x0475a833 drm_atomic_helper_wait_for_vblanks drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf6aca510 drm_atomic_helper_wait_for_flip_done drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf4b4e8b3 drm_atomic_helper_commit_tail drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb358be0b drm_atomic_helper_commit_tail_rpm drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xfe168482 drm_atomic_helper_async_check drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xcc914761 drm_atomic_helper_async_commit drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf4d2795b drm_atomic_helper_commit drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xd5de0030 drm_atomic_helper_setup_commit drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2f5b09d5 drm_atomic_helper_wait_for_dependencies drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x65983e3f drm_atomic_helper_fake_vblank drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x74b00a0f drm_atomic_helper_commit_hw_done drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x7802b01d drm_atomic_helper_commit_cleanup_done drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xaf5afb70 drm_atomic_helper_prepare_planes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb1f9ccbb drm_atomic_helper_unprepare_planes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb659e87e drm_atomic_helper_commit_planes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6feb8d00 drm_atomic_helper_commit_planes_on_crtc drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x913f11ae drm_atomic_helper_disable_planes_on_crtc drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf8f4f9fb drm_atomic_helper_cleanup_planes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe85c37eb drm_atomic_helper_swap_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x7db69cb1 drm_atomic_helper_update_plane drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xfde3025b drm_atomic_helper_disable_plane drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x096f385c drm_atomic_helper_set_config drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xc4b64540 drm_atomic_helper_disable_all drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x13c18689 drm_atomic_helper_shutdown drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf6ca8b5e drm_atomic_helper_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9c83b498 drm_atomic_helper_suspend drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x54a8d427 drm_atomic_helper_commit_duplicated_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe5b53dc5 drm_atomic_helper_resume drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x0310f7c9 drm_atomic_helper_page_flip drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x55a18342 drm_atomic_helper_page_flip_target drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xc65552c1 drm_atomic_helper_bridge_propagate_bus_fmt drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xdb362e83 __drm_atomic_helper_crtc_state_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9d47d05d __drm_atomic_helper_crtc_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xdbeeaa7d drm_atomic_helper_crtc_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x3382b8e7 __drm_atomic_helper_crtc_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xcb70fea9 drm_atomic_helper_crtc_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xfff33ae2 __drm_atomic_helper_crtc_destroy_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x06ab9506 drm_atomic_helper_crtc_destroy_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xeb90eeb2 __drm_atomic_helper_plane_state_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb71611d4 __drm_atomic_helper_plane_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xc0b71097 drm_atomic_helper_plane_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2162680e __drm_atomic_helper_plane_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa699fe72 drm_atomic_helper_plane_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x773a648d __drm_atomic_helper_plane_destroy_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9d1a0b6b drm_atomic_helper_plane_destroy_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x55e4906b __drm_atomic_helper_connector_state_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xedfcbe8b __drm_atomic_helper_connector_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe1d211db drm_atomic_helper_connector_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb5e945f1 drm_atomic_helper_connector_tv_margins_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa5c54657 drm_atomic_helper_connector_tv_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x570e93c6 drm_atomic_helper_connector_tv_check drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xced84955 __drm_atomic_helper_connector_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x1dfad566 drm_atomic_helper_connector_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x472758a5 __drm_atomic_helper_connector_destroy_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x5411d6a7 drm_atomic_helper_connector_destroy_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x8952b26d __drm_atomic_helper_private_obj_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x26765c5f __drm_atomic_helper_bridge_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x8fa5ca4d drm_atomic_helper_bridge_duplicate_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa531218e drm_atomic_helper_bridge_destroy_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x98bf4217 __drm_atomic_helper_bridge_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x40f96f19 drm_atomic_helper_bridge_reset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xd9c4da60 drm_bridge_connector_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0xd7b84a4f drm_helper_encoder_in_use drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa8e56733 drm_helper_crtc_in_use drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x3a723f23 drm_helper_disable_unused_functions drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xecfb3186 drm_crtc_helper_set_mode drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2973f17e drm_crtc_helper_atomic_check drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xde5f9e89 drm_crtc_helper_set_config drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xcd2df902 drm_helper_connector_dpms drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x8de988b2 drm_helper_resume_force_mode drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x749d1d37 drm_helper_force_disable_all drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9a833ddb drm_atomic_helper_check_plane_damage drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x1ab6726e drm_atomic_helper_dirtyfb drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x3718725e drm_atomic_helper_damage_iter_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6b5c2b06 drm_atomic_helper_damage_iter_next drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe3ec954d drm_atomic_helper_damage_merged drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x856e138f drm_i2c_encoder_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe757420b drm_i2c_encoder_destroy drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x5e800657 drm_i2c_encoder_dpms drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x82bd33ba drm_i2c_encoder_mode_fixup drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x702be0ad drm_i2c_encoder_prepare drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x5938e67b drm_i2c_encoder_commit drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xd3281c2d drm_i2c_encoder_mode_set drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe238c2ac drm_i2c_encoder_detect drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x433de131 drm_i2c_encoder_save drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6b234231 drm_i2c_encoder_restore drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xcf11a549 drm_flip_work_allocate_task drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x0874c94f drm_flip_work_queue_task drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xc2cbbc3c drm_flip_work_queue drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6aaed509 drm_flip_work_commit drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x70c8fc84 drm_flip_work_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x964e0bba drm_flip_work_cleanup drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x02d150e4 drm_fb_clip_offset drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xd0691fc2 drm_fb_memcpy drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x968d6680 drm_fb_swab drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x1ce8d7e3 drm_fb_xrgb8888_to_rgb332 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x4f670e5e drm_fb_xrgb8888_to_rgb565 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x65a0261f drm_fb_xrgb8888_to_xrgb1555 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x8817a118 drm_fb_xrgb8888_to_argb1555 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xbab4807d drm_fb_xrgb8888_to_rgba5551 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x97552f59 drm_fb_xrgb8888_to_rgb888 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb246988d drm_fb_xrgb8888_to_argb8888 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x8ee6946e drm_fb_xrgb8888_to_xrgb2101010 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xaa6eaaa5 drm_fb_xrgb8888_to_argb2101010 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x28b1c023 drm_fb_xrgb8888_to_gray8 drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x38c9b826 drm_fb_blit drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb7a80ee4 drm_fb_xrgb8888_to_mono drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x995780be drm_fb_build_fourcc_list drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x01d5f30c drm_gem_plane_helper_prepare_fb drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0x04c3cc32 __drm_gem_duplicate_shadow_plane_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xd1ef55a2 drm_gem_duplicate_shadow_plane_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x98bb5956 __drm_gem_destroy_shadow_plane_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x03f075e7 drm_gem_destroy_shadow_plane_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2aaf6a08 __drm_gem_reset_shadow_plane drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9ca01836 drm_gem_reset_shadow_plane drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x857a4a65 drm_gem_begin_shadow_fb_access drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x0a542e02 drm_gem_end_shadow_fb_access drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x92d224af drm_gem_simple_kms_begin_shadow_fb_access drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x70a7939f drm_gem_simple_kms_end_shadow_fb_access drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x7806177e drm_gem_simple_kms_reset_shadow_plane drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xca21aad5 drm_gem_simple_kms_duplicate_shadow_plane_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x850fd66f drm_gem_simple_kms_destroy_shadow_plane_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb7ccd107 drm_gem_fb_get_obj drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0xf7fdf067 drm_gem_fb_destroy drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xff35dd11 drm_gem_fb_create_handle drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xaf26394b drm_gem_fb_init_with_funcs drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0xdc009e23 drm_gem_fb_create_with_funcs drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0x6204d1aa drm_gem_fb_create drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0x4e3857c8 drm_gem_fb_create_with_dirty drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0x3aa56297 drm_gem_fb_vmap drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2748c193 drm_gem_fb_vunmap drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x1ebef3c8 drm_gem_fb_begin_cpu_access drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa7b1f7dc drm_gem_fb_end_cpu_access drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf15e4bb0 drm_gem_fb_afbc_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL_GPL
-0xebc43f17 drm_helper_move_panel_connectors_to_head drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6ad4b719 drm_helper_mode_fill_fb_struct drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xddbdbeac drm_crtc_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x68b4aa1e drm_mode_config_helper_suspend drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x1193916e drm_mode_config_helper_resume drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6c64df8b drm_plane_helper_update_primary drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x415822e1 drm_plane_helper_disable_primary drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x35fe1aec drm_plane_helper_destroy drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x29da4472 drm_plane_helper_atomic_check drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9678d019 drm_kms_helper_poll_enable drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x5ac3e6f0 drm_kms_helper_poll_reschedule drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x885403bf drm_helper_probe_detect drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x8c9e8532 drm_helper_probe_single_connector_modes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa3f1a576 drm_kms_helper_hotplug_event drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xddf11010 drm_kms_helper_connector_hotplug_event drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x5a4734d1 drm_kms_helper_is_poll_worker drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9557d82c drm_kms_helper_poll_disable drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x148f9275 drm_kms_helper_poll_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xee841452 drm_kms_helper_poll_fini drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xd7ae784e drm_connector_helper_hpd_irq_event drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe18f4ba7 drm_helper_hpd_irq_event drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x705a2cee drm_crtc_helper_mode_valid_fixed drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x10e961dc drm_connector_helper_get_modes_from_ddc drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x4ddec614 drm_connector_helper_get_modes_fixed drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xadf0c97b drm_connector_helper_get_modes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x75d55eb8 drm_connector_helper_tv_get_modes drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x871ab41a drm_rect_intersect drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x99fd20aa drm_rect_clip_scaled drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2d50570f drm_rect_calc_hscale drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x91fec1cc drm_rect_calc_vscale drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xcb2340b8 drm_rect_debug_print drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb053adda drm_rect_rotate drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6e30ba8e drm_rect_rotate_inv drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xddc02129 drm_self_refresh_helper_update_avg_times drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x475614a0 drm_self_refresh_helper_alter_state drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x1389690c drm_self_refresh_helper_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xaf1f3674 drm_self_refresh_helper_cleanup drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x679174d5 drm_simple_encoder_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x803753b9 __drmm_simple_encoder_alloc drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xb9c68ecc drm_simple_display_pipe_attach_bridge drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe8e00575 drm_simple_display_pipe_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x77bd2270 drm_bridge_is_panel drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xcfd9d78a drm_panel_bridge_add drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x0978cf68 drm_panel_bridge_add_typed drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa798e9e5 drm_panel_bridge_remove drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x90aa9ec2 drm_panel_bridge_set_orientation drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x939354c4 devm_drm_panel_bridge_add drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x74a2f8a2 devm_drm_panel_bridge_add_typed drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9c676f7f drmm_panel_bridge_add drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x3c3995c6 drm_panel_bridge_connector drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x173c19f3 drm_fbdev_generic_setup drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf81de878 drm_fb_helper_debug_enter drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x35743a65 drm_fb_helper_debug_leave drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x7ee8c1e4 drm_fb_helper_restore_fbdev_mode_unlocked drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x4b50b782 drm_fb_helper_blank drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2d5df561 drm_fb_helper_prepare drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xfd1ca5cd drm_fb_helper_unprepare drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xee200f13 drm_fb_helper_init drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x91187ff1 drm_fb_helper_alloc_info drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x430f6c3c drm_fb_helper_release_info drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6f785184 drm_fb_helper_unregister_info drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf9b8719d drm_fb_helper_fini drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x775f70b3 drm_fb_helper_damage_range drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xe43a6a00 drm_fb_helper_damage_area drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf26cedd0 drm_fb_helper_deferred_io drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xd471d3e3 drm_fb_helper_set_suspend drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x10b93412 drm_fb_helper_set_suspend_unlocked drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xf04870b3 drm_fb_helper_setcmap drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x266d4e20 drm_fb_helper_ioctl drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x6187b46e drm_fb_helper_check_var drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x10bfdcaa drm_fb_helper_set_par drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x3c40029f drm_fb_helper_pan_display drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x2dc3097d drm_fb_helper_fill_info drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x99d1bde4 drm_fb_helper_initial_config drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x9fdeecc9 drm_fb_helper_hotplug_event drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x21512bd0 drm_fb_helper_lastclose drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0xa59f32a9 drm_fb_helper_output_poll_changed drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
-0x830e7a5a ttm_tt_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x54fdf1d5 ttm_tt_fini drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xe3e433f5 ttm_sg_tt_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x4e1fa416 ttm_tt_populate drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xc6817629 ttm_kmap_iter_tt_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x69cc2943 ttm_tt_pages_limit drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xb9187811 ttm_bo_move_to_lru_tail drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x1d2550b7 ttm_bo_set_bulk_move drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x1cb97d1f ttm_bo_put drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xaf240a17 ttm_bo_eviction_valuable drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x651b994a ttm_bo_pin drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x96859a1d ttm_bo_unpin drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x0a4e3ed3 ttm_bo_mem_space drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xf54a6266 ttm_bo_validate drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xd0a078e2 ttm_bo_init_reserved drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xd0687ccf ttm_bo_init_validate drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x267cd00a ttm_bo_unmap_virtual drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x631c4aa1 ttm_bo_wait_ctx drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x1a71d30c ttm_move_memcpy drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xbc28a4b8 ttm_bo_move_memcpy drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x90791ab6 ttm_io_prot drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x00d85494 ttm_bo_kmap drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x99cb9aee ttm_bo_kunmap drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xb4abebcc ttm_bo_vmap drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x4dfdff0c ttm_bo_vunmap drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xae447282 ttm_bo_move_accel_cleanup drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x5fb5b131 ttm_bo_move_sync_cleanup drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xc3cf6950 ttm_bo_vm_reserve drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x71725633 ttm_bo_vm_fault_reserved drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xdc6e3816 ttm_bo_vm_dummy_page drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xa4c3efbb ttm_bo_vm_fault drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xf241ab58 ttm_bo_vm_open drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x67abe3e2 ttm_bo_vm_close drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x5e5d904f ttm_bo_vm_access drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x14dbb449 ttm_bo_mmap_obj drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xa019a777 ttm_eu_backoff_reservation drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x3e2e2b75 ttm_eu_reserve_buffers drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x80d0a93b ttm_eu_fence_buffer_objects drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x4f0e4c46 ttm_range_man_init_nocheck drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xf02fabfd ttm_range_man_fini_nocheck drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x23672699 ttm_lru_bulk_move_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x9323f060 ttm_lru_bulk_move_tail drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x1424b77c ttm_resource_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x19522174 ttm_resource_fini drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x11e750c1 ttm_resource_free drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xcf67ef8c ttm_resource_manager_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x5949c2c7 ttm_resource_manager_evict_all drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xa1c994fa ttm_resource_manager_usage drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x220544eb ttm_resource_manager_debug drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x6a847134 ttm_kmap_iter_iomap_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x3cac9aad ttm_resource_manager_create_debugfs drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x17b74c2b ttm_pool_alloc drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xb50179e5 ttm_pool_free drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x2682cc14 ttm_pool_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x876688f5 ttm_pool_fini drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x1619fda3 ttm_pool_debugfs drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xcccae891 ttm_glob drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xd74920bf ttm_device_swapout drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x508494c4 ttm_device_init drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x37da5130 ttm_device_fini drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0x8b75a677 ttm_device_clear_dma_mappings drivers/gpu/drm/ttm/ttm EXPORT_SYMBOL
-0xf0f10a54 drm_sched_fault drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x5113e0b9 drm_sched_suspend_timeout drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xc2c1414b drm_sched_resume_timeout drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xa426cd5f drm_sched_stop drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xc5b215e8 drm_sched_start drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x9759e394 drm_sched_resubmit_jobs drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x530c5ff7 drm_sched_job_init drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x734d1a90 drm_sched_job_arm drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xf201624e drm_sched_job_add_dependency drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x04b8a76c drm_sched_job_add_syncobj_dependency drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x8de705c4 drm_sched_job_add_resv_dependencies drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x11daadd0 drm_sched_job_add_implicit_dependencies drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x5d864353 drm_sched_job_cleanup drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xa34af696 drm_sched_pick_best drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xff0e772b drm_sched_init drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x1d74e30e drm_sched_fini drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x7d9e1ec2 drm_sched_increase_karma drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xb1e7ee68 to_drm_sched_fence drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x2580c39d drm_sched_entity_init drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xb750eb72 drm_sched_entity_modify_sched drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xea8e4769 drm_sched_entity_error drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x6a0839b4 drm_sched_entity_flush drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x56d9da11 drm_sched_entity_fini drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x06727233 drm_sched_entity_destroy drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xcc3a7eb9 drm_sched_entity_set_priority drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0x3d89c8c0 drm_sched_entity_push_job drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
-0xfae2c71e amdgpu_xcp_drm_dev_alloc drivers/gpu/drm/amd/amdxcp/amdxcp EXPORT_SYMBOL
-0x0ea5d74b amdgpu_xcp_drv_release drivers/gpu/drm/amd/amdxcp/amdxcp EXPORT_SYMBOL
-0x500858b9 i915_read_mch_val drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL
-0x08a7896d i915_gpu_raise drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL
-0x402468e9 i915_gpu_lower drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL
-0x05876c69 i915_gpu_busy drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL
-0xe7237b0b i915_gpu_turbo_disable drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL
-0x175e0fb5 intel_gvt_set_ops drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xffbf2f0b intel_gvt_clear_ops drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x132b8d42 i915_gem_object_alloc drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x60eb97e8 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x17c96db5 i915_gem_object_init drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x2d2d2f6c i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x91ec7ab1 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xcc1cd868 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x85acf775 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x9db1cc71 __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xdc31b052 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x12eed082 i915_gem_prime_export drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xd706e945 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xbf3a79a0 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x60176ac7 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xab8a8cec i915_ppgtt_create drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x54c810be i915_request_add drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x57e99488 i915_request_create drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x86bfa9da i915_request_wait drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x561cf1ac i915_reserve_fence drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x6e8fe0b3 i915_unreserve_fence drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xddec6837 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x07e12129 intel_context_create drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x589c660b __intel_context_do_pin drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x35203e7c __intel_context_do_unpin drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x7b930e42 intel_ring_begin drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x45eb448e intel_runtime_pm_get drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xd0d909ce intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x7803a6fc intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x9c3daf07 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x7829071a intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x8c021c51 shmem_pin_map drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x40674ff4 shmem_unpin_map drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x22ca0e94 __px_dma drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x38b91c5b i915_fence_ops drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0xac1ff797 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 EXPORT_SYMBOL_GPL I915_GVT
-0x756eef2e __regmap_init_i2c drivers/base/regmap/regmap-i2c EXPORT_SYMBOL_GPL
-0xc6bbff2e __devm_regmap_init_i2c drivers/base/regmap/regmap-i2c EXPORT_SYMBOL_GPL
-0x0dcee3f2 __regmap_init_spi drivers/base/regmap/regmap-spi EXPORT_SYMBOL_GPL
-0x501f4125 __devm_regmap_init_spi drivers/base/regmap/regmap-spi EXPORT_SYMBOL_GPL
-0x884deb9d eeprom_93cx6_read drivers/misc/eeprom/eeprom_93cx6 EXPORT_SYMBOL_GPL
-0xff7a0fdf eeprom_93cx6_multiread drivers/misc/eeprom/eeprom_93cx6 EXPORT_SYMBOL_GPL
-0xc9c6bb25 eeprom_93cx6_readb drivers/misc/eeprom/eeprom_93cx6 EXPORT_SYMBOL_GPL
-0x3cb83d5b eeprom_93cx6_multireadb drivers/misc/eeprom/eeprom_93cx6 EXPORT_SYMBOL_GPL
-0x63d2ff63 eeprom_93cx6_wren drivers/misc/eeprom/eeprom_93cx6 EXPORT_SYMBOL_GPL
-0x870b53e9 eeprom_93cx6_write drivers/misc/eeprom/eeprom_93cx6 EXPORT_SYMBOL_GPL
-0x84dd0e94 cb710_pci_update_config_reg drivers/misc/cb710/cb710 EXPORT_SYMBOL_GPL
-0x057af65d cb710_set_irq_handler drivers/misc/cb710/cb710 EXPORT_SYMBOL_GPL
-0xf6e1142b cb710_sg_dwiter_read_next_block drivers/misc/cb710/cb710 EXPORT_SYMBOL_GPL
-0xf2b3364f cb710_sg_dwiter_write_next_block drivers/misc/cb710/cb710 EXPORT_SYMBOL_GPL
-0xb1831bf3 lis3_dev drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0xa5e1b36d lis3lv02d_poweroff drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0xe80b59de lis3lv02d_poweron drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0x392ec7c7 lis3lv02d_joystick_enable drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0x4bd3da3b lis3lv02d_joystick_disable drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0xcb1766ae lis3lv02d_remove_fs drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0x72f95759 lis3lv02d_init_dt drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0xa1559ed2 lis3lv02d_init_device drivers/misc/lis3lv02d/lis3lv02d EXPORT_SYMBOL_GPL
-0x3a22997d rtsx_pci_start_run drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xde7cce6e rtsx_pci_write_register drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x2227457a rtsx_pci_read_register drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xc64afc57 rtsx_pci_write_phy_register drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xa6c8a635 rtsx_pci_read_phy_register drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x56bd4fdc rtsx_pci_stop_cmd drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xa3e73365 rtsx_pci_add_cmd drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x65c211de rtsx_pci_send_cmd_no_wait drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x27e2815c rtsx_pci_send_cmd drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x4cb3ad63 rtsx_pci_transfer_data drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x60235913 rtsx_pci_dma_map_sg drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xaeef3610 rtsx_pci_dma_unmap_sg drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xaa3f9139 rtsx_pci_dma_transfer drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x8dd46d85 rtsx_pci_read_ppbuf drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x25b7d310 rtsx_pci_write_ppbuf drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x10a1902b rtsx_pci_card_pull_ctl_enable drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xb4fee26b rtsx_pci_card_pull_ctl_disable drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xc490e6f6 rtsx_pci_switch_clock drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xd3970e6a rtsx_pci_card_power_on drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xb4a6750a rtsx_pci_card_power_off drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x889ea398 rtsx_pci_card_exclusive_check drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xe1794fbb rtsx_pci_switch_output_voltage drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x8aebfaf9 rtsx_pci_card_exist drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0x054fa471 rtsx_pci_complete_unfinished_transfer drivers/misc/cardreader/rtsx_pci EXPORT_SYMBOL_GPL
-0xf16c1c53 rtsx_usb_transfer_data drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x5ce88acd rtsx_usb_read_ppbuf drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0xba8b65d6 rtsx_usb_write_ppbuf drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x0682ae4c rtsx_usb_ep0_write_register drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0xd48ceebf rtsx_usb_ep0_read_register drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x4f949cf3 rtsx_usb_add_cmd drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x6bbbecd9 rtsx_usb_send_cmd drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x215e3c5f rtsx_usb_get_rsp drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x2ddec7c4 rtsx_usb_get_card_status drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x57159959 rtsx_usb_write_register drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x3749ab80 rtsx_usb_read_register drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0xac64bb30 rtsx_usb_switch_clock drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0x4606236c rtsx_usb_card_exclusive_check drivers/misc/cardreader/rtsx_usb EXPORT_SYMBOL_GPL
-0xd40c12b8 devm_pvpanic_probe drivers/misc/pvpanic/pvpanic EXPORT_SYMBOL_GPL
-0xec72cc84 tifm_alloc_adapter drivers/misc/tifm_core EXPORT_SYMBOL
-0xbfecd458 tifm_add_adapter drivers/misc/tifm_core EXPORT_SYMBOL
-0xa72dc059 tifm_remove_adapter drivers/misc/tifm_core EXPORT_SYMBOL
-0xd9929d70 tifm_free_adapter drivers/misc/tifm_core EXPORT_SYMBOL
-0x1acea301 tifm_free_device drivers/misc/tifm_core EXPORT_SYMBOL
-0x80f2d0b1 tifm_alloc_device drivers/misc/tifm_core EXPORT_SYMBOL
-0xc0e36d93 tifm_eject drivers/misc/tifm_core EXPORT_SYMBOL
-0x1ce7f9d2 tifm_has_ms_pif drivers/misc/tifm_core EXPORT_SYMBOL
-0xe878c522 tifm_map_sg drivers/misc/tifm_core EXPORT_SYMBOL
-0xd84b734d tifm_unmap_sg drivers/misc/tifm_core EXPORT_SYMBOL
-0x9be0dc4c tifm_queue_work drivers/misc/tifm_core EXPORT_SYMBOL
-0x525050dd tifm_register_driver drivers/misc/tifm_core EXPORT_SYMBOL
-0x39aa4155 tifm_unregister_driver drivers/misc/tifm_core EXPORT_SYMBOL
-0xfc4812c4 enclosure_find drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0x391a2b9a enclosure_for_each_device drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0x258ffb34 enclosure_register drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0xce183234 enclosure_unregister drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0x0a3083f5 enclosure_component_alloc drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0xf9191ca0 enclosure_component_register drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0x9193385e enclosure_add_device drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0x9b5b47a3 enclosure_remove_device drivers/misc/enclosure EXPORT_SYMBOL_GPL
-0xead4f7fe xp_max_npartitions drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0xf3b47f67 xp_partition_id drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x48e62c9f xp_region_size drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x64ba5017 xp_pa drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0xed1d3813 xp_socket_pa drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x68fa7d28 xp_remote_memcpy drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x6285dfe8 xp_cpu_to_nasid drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x68d27065 xp_expand_memprotect drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x1018eee0 xp_restrict_memprotect drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x8d146cd0 xpc_registrations drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0xe68acd6c xpc_interface drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x12333991 xpc_set_interface drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x39046c7a xpc_clear_interface drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0xc04c7267 xpc_connect drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x345c9217 xpc_disconnect drivers/misc/sgi-xp/xp EXPORT_SYMBOL_GPL
-0x8dc51bdd gru_create_message_queue drivers/misc/sgi-gru/gru EXPORT_SYMBOL_GPL
-0xeed7d505 gru_send_message_gpa drivers/misc/sgi-gru/gru EXPORT_SYMBOL_GPL
-0xd3d2bf04 gru_free_message drivers/misc/sgi-gru/gru EXPORT_SYMBOL_GPL
-0x5b8bb699 gru_get_next_message drivers/misc/sgi-gru/gru EXPORT_SYMBOL_GPL
-0xde08c325 gru_read_gpa drivers/misc/sgi-gru/gru EXPORT_SYMBOL_GPL
-0x9c7283a1 gru_copy_gpa drivers/misc/sgi-gru/gru EXPORT_SYMBOL_GPL
-0x5bafa76e altera_init drivers/misc/altera-stapl/altera-stapl EXPORT_SYMBOL
-0x90a24af4 mei_fw_status2str drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x365b7dbd mei_cancel_work drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x606ea4cb mei_reset drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x852b85a4 mei_start drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xe760bb9d mei_restart drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xd3899b83 mei_stop drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x5e20da2b mei_write_is_idle drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xc1a7c02d mei_device_init drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xcdc12e3f mei_hbm_pg drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xd8db1a67 mei_hbm_pg_resume drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x2fc61675 mei_irq_compl_handler drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xcfb95bb5 mei_irq_read_handler drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xea9d4c02 mei_irq_write_handler drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xf5152dd5 mei_cl_all_disconnect drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xf9247ab9 mei_register drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x8c81886d mei_deregister drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x467f9b54 mei_cldev_send_vtag drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x80098236 mei_cldev_recv_vtag drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x92344aa2 mei_cldev_recv_nonblock_vtag drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xf7869d2a mei_cldev_send drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xad5b97fb mei_cldev_recv drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xfd143e65 mei_cldev_recv_nonblock drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xc9c18846 mei_cldev_register_rx_cb drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xeef0aa77 mei_cldev_register_notif_cb drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xf8ba434f mei_cldev_get_drvdata drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xa063001e mei_cldev_set_drvdata drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x369874ae mei_cldev_uuid drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x359d306b mei_cldev_ver drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xbefc994f mei_cldev_enabled drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x02bc6b09 mei_cldev_dma_map drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x5cd06452 mei_cldev_dma_unmap drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0xbffcf6b9 mei_cldev_enable drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x7c66dfee mei_cldev_disable drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x0f3846c5 mei_cldev_send_gsc_command drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x443532f6 __mei_cldev_driver_register drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x13872e77 mei_cldev_driver_unregister drivers/misc/mei/mei EXPORT_SYMBOL_GPL
-0x1fc11a7b __tracepoint_mei_reg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0xc759278a __traceiter_mei_reg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0xc22a9713 __SCK__tp_func_mei_reg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0x3b0a488d __SCT__tp_func_mei_reg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0xf8354c15 __tracepoint_mei_reg_write drivers/misc/mei/mei EXPORT_SYMBOL
-0xccf3287c __traceiter_mei_reg_write drivers/misc/mei/mei EXPORT_SYMBOL
-0xbb814ef2 __SCK__tp_func_mei_reg_write drivers/misc/mei/mei EXPORT_SYMBOL
-0x0bb25295 __SCT__tp_func_mei_reg_write drivers/misc/mei/mei EXPORT_SYMBOL
-0x0bad2913 __tracepoint_mei_pci_cfg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0x0a458e1f __traceiter_mei_pci_cfg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0x593afa62 __SCK__tp_func_mei_pci_cfg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0x14dc7949 __SCT__tp_func_mei_pci_cfg_read drivers/misc/mei/mei EXPORT_SYMBOL
-0x922c6ae5 mei_me_irq_quick_handler drivers/misc/mei/mei-me EXPORT_SYMBOL_GPL
-0xd0eef98f mei_me_irq_thread_handler drivers/misc/mei/mei-me EXPORT_SYMBOL_GPL
-0x051f202c mei_me_polling_thread drivers/misc/mei/mei-me EXPORT_SYMBOL_GPL
-0x29258391 mei_me_get_cfg drivers/misc/mei/mei-me EXPORT_SYMBOL_GPL
-0x39891ae4 mei_me_dev_init drivers/misc/mei/mei-me EXPORT_SYMBOL_GPL
-0x5591b58e vmci_context_get_priv_flags drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xc403cafe vmci_is_context_owner drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xde3abc2e vmci_datagram_create_handle_priv drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x046dd187 vmci_datagram_create_handle drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x3a22fa8a vmci_datagram_destroy_handle drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xea143610 vmci_datagram_send drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xb572e830 vmci_doorbell_create drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x5e949e0a vmci_doorbell_destroy drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xbcb85f62 vmci_doorbell_notify drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x056837fb vmci_get_context_id drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x787f0fe8 vmci_register_vsock_callback drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x2449459d vmci_event_subscribe drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xe11895c1 vmci_event_unsubscribe drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x75fe065a vmci_send_datagram drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xe0cc9c92 vmci_qpair_alloc drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x612df9ae vmci_qpair_detach drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x1fd4782d vmci_qpair_get_produce_indexes drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xc04c7e84 vmci_qpair_get_consume_indexes drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x024d14bc vmci_qpair_produce_free_space drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x676bd843 vmci_qpair_consume_free_space drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xea61eefe vmci_qpair_produce_buf_ready drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x7c74d7a6 vmci_qpair_consume_buf_ready drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xe67343c1 vmci_qpair_enqueue drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x81d61eef vmci_qpair_dequeue drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x4ba5c46b vmci_qpair_peek drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xa123fd91 vmci_qpair_enquev drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0xd444ce29 vmci_qpair_dequev drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x531a165a vmci_qpair_peekv drivers/misc/vmw_vmci/vmw_vmci EXPORT_SYMBOL_GPL
-0x51c2d6c1 uacce_wake_up drivers/misc/uacce/uacce EXPORT_SYMBOL_GPL
-0x6db5c0e3 uacce_alloc drivers/misc/uacce/uacce EXPORT_SYMBOL_GPL
-0xe7b9e594 uacce_register drivers/misc/uacce/uacce EXPORT_SYMBOL_GPL
-0x22878022 uacce_remove drivers/misc/uacce/uacce EXPORT_SYMBOL_GPL
-0x68c24674 sm501_misc_control drivers/mfd/sm501 EXPORT_SYMBOL_GPL
-0xd11fc6a8 sm501_modify_reg drivers/mfd/sm501 EXPORT_SYMBOL_GPL
-0x0d9b7969 sm501_unit_power drivers/mfd/sm501 EXPORT_SYMBOL_GPL
-0xc0dedfb1 sm501_set_clock drivers/mfd/sm501 EXPORT_SYMBOL_GPL
-0x8357b2bb sm501_find_clock drivers/mfd/sm501 EXPORT_SYMBOL_GPL
-0x739daadb to_cxl_root_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xa9306092 is_endpoint_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xd6ef0c58 is_root_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x56d84567 is_switch_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xbdeef53e to_cxl_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xf2db3925 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xee9aa961 to_cxl_switch_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xf32d3996 is_cxl_port drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x725cbb09 to_cxl_port drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x90c3c57b devm_cxl_add_port drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xbfe5b229 cxl_port_to_pci_bus drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x4aaa8319 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xc4396ccf find_cxl_root drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x25e34aec devm_cxl_add_dport drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xe09d850b devm_cxl_add_rch_dport drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x4db51564 cxl_endpoint_autoremove drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x31072864 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x505c6c7f cxl_pci_find_port drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x50e1f273 cxl_mem_find_port drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xdbfc04c1 cxl_hb_modulo drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x7a3958b0 cxl_root_decoder_alloc drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x09179b6b cxl_switch_decoder_alloc drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x377893a3 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x09ca456e cxl_decoder_add_locked drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x96677b0c cxl_decoder_add drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x5acde3d2 cxl_decoder_autoremove drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x53ca4bc1 __cxl_driver_register drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x7d38efae cxl_driver_unregister drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xa0337e34 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x0a6e3a17 cxl_bus_type drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x82eaeb08 cxl_debugfs_create_dir drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x58c3a7b6 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xa93deffb is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x694e876a cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xf6c2c0f8 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x8b8db91d is_cxl_nvdimm drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xe0b33e26 to_cxl_nvdimm drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x1a26e0e7 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x20de9362 cxl_probe_component_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x76223e9c cxl_probe_device_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xf0ea3cff cxl_map_component_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xe60cc1a0 cxl_map_device_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x9a0e41d9 cxl_find_regblock_instance drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x36e7ea39 cxl_find_regblock drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x9dd5e338 cxl_count_regblock drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x467da2db cxl_map_pmu_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xdb2bc646 cxl_setup_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xe7572493 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xed102e69 cxl_trigger_poison_list drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xf2e29eec cxl_inject_poison drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x90b1f777 cxl_clear_poison drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x6916eb5e is_cxl_memdev drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xd8cfd515 set_exclusive_cxl_commands drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xcebb0aa9 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x434b55e2 devm_cxl_setup_fw_upload drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xa46a9d80 devm_cxl_add_memdev drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x6646b446 devm_cxl_sanitize_setup_notifier drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xac1cedfb cxl_internal_send_cmd drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x26e08ab1 cxl_enumerate_cmds drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x5f8806c7 cxl_mem_get_event_records drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xe095ed07 cxl_dev_state_identify drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x98247b49 cxl_mem_create_range_info drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x293693d2 cxl_set_timestamp drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x4e24819d cxl_mem_get_poison drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xba2c38e6 cxl_poison_state_init drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x2e3f8a4b cxl_memdev_state_create drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xff4d3823 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xe61ff431 cxl_await_media_ready drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xdf2fd358 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x9e6e4764 cxl_hdm_decode_init drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x3b70e225 read_cdat_data drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xeaaf5375 cxl_setup_parent_dport drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x9b139140 cxl_cor_error_detected drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xaf5dd219 cxl_error_detected drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xcccd7015 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x8102591b devm_cxl_setup_hdm drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x79f5f678 cxl_dpa_debug drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x57d99578 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xe65ebdf5 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xc33f9596 devm_cxl_pmu_add drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xb799cb74 is_cxl_region drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xd45a6f69 is_cxl_pmem_region drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xad810173 to_cxl_pmem_region drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x090164e4 to_cxl_dax_region drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0xc15aec2e cxl_add_to_region drivers/cxl/core/cxl_core EXPORT_SYMBOL_GPL CXL
-0x40e99f98 raid_class_attach drivers/scsi/raid_class EXPORT_SYMBOL
-0x62969768 raid_class_release drivers/scsi/raid_class EXPORT_SYMBOL
-0x56cfca2e spi_dv_device drivers/scsi/scsi_transport_spi EXPORT_SYMBOL
-0x8aaf514a spi_schedule_dv_device drivers/scsi/scsi_transport_spi EXPORT_SYMBOL
-0x75ad01c1 spi_display_xfer_agreement drivers/scsi/scsi_transport_spi EXPORT_SYMBOL
-0xcffa2aff spi_populate_width_msg drivers/scsi/scsi_transport_spi EXPORT_SYMBOL_GPL
-0xa0c71dac spi_populate_sync_msg drivers/scsi/scsi_transport_spi EXPORT_SYMBOL_GPL
-0x0ef06974 spi_populate_ppr_msg drivers/scsi/scsi_transport_spi EXPORT_SYMBOL_GPL
-0x7cc3165d spi_populate_tag_msg drivers/scsi/scsi_transport_spi EXPORT_SYMBOL_GPL
-0x3686ea09 spi_print_msg drivers/scsi/scsi_transport_spi EXPORT_SYMBOL
-0x17f92542 spi_attach_transport drivers/scsi/scsi_transport_spi EXPORT_SYMBOL
-0x881660ea spi_release_transport drivers/scsi/scsi_transport_spi EXPORT_SYMBOL
-0x375f8bbd fc_get_event_number drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x2161f33b fc_host_post_fc_event drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x24f2d111 fc_host_post_event drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xf1616d8c fc_host_post_vendor_event drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xb6a7243f fc_find_rport_by_wwpn drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xc312fa64 fc_host_fpin_rcv drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xebdbe128 scsi_is_fc_rport drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x65cb68b0 fc_eh_timed_out drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xfafa438e fc_attach_transport drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xe73cc01a fc_release_transport drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x38fe29e2 fc_remove_host drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xc8b84ca4 fc_remote_port_add drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x7fc5aac3 fc_remote_port_delete drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xb1f826b4 fc_remote_port_rolechg drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xb6c2a776 fc_block_rport drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x4eb1f2d2 fc_block_scsi_eh drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0xa5e37ac0 fc_eh_should_retry_cmd drivers/scsi/scsi_transport_fc EXPORT_SYMBOL_GPL
-0x9019684a fc_vport_create drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x51444a08 fc_vport_terminate drivers/scsi/scsi_transport_fc EXPORT_SYMBOL
-0x2fffe9a8 __tracepoint_iscsi_dbg_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x95765a25 __traceiter_iscsi_dbg_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x156d2847 __SCK__tp_func_iscsi_dbg_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x15dc8bab __SCT__tp_func_iscsi_dbg_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x957969ec __tracepoint_iscsi_dbg_eh drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x04a0fee2 __traceiter_iscsi_dbg_eh drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x0719a29d __SCK__tp_func_iscsi_dbg_eh drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xf7e749fb __SCT__tp_func_iscsi_dbg_eh drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x10e0a395 __tracepoint_iscsi_dbg_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x0317e24c __traceiter_iscsi_dbg_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x7ebe2055 __SCK__tp_func_iscsi_dbg_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x52575134 __SCT__tp_func_iscsi_dbg_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x1e0e9a30 __tracepoint_iscsi_dbg_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x30cd1380 __traceiter_iscsi_dbg_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x399ebb51 __SCK__tp_func_iscsi_dbg_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xb3e2016f __tracepoint_iscsi_dbg_sw_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x0c454780 __traceiter_iscsi_dbg_sw_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x866726f8 __SCK__tp_func_iscsi_dbg_sw_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xc9ce9701 iscsi_create_endpoint drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xabdca08c iscsi_destroy_endpoint drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xc4fe85b6 iscsi_put_endpoint drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x49d6664f iscsi_lookup_endpoint drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xbc071179 iscsi_get_ipaddress_state_name drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x84a005f1 iscsi_get_router_state_name drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x7a9d9a5b iscsi_create_iface drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x8e77fd0b iscsi_destroy_iface drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x96e1b9a7 iscsi_flashnode_bus_match drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x61f7462b iscsi_create_flashnode_sess drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x4e31edf4 iscsi_create_flashnode_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x979e2f74 iscsi_find_flashnode_sess drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xeb0a56d8 iscsi_find_flashnode_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x8c8d6bd6 iscsi_destroy_flashnode_sess drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x69ec564e iscsi_destroy_all_flashnode drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x7132f93a iscsi_session_chkready drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x4fa6f96c iscsi_is_session_online drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x72ee5ac6 iscsi_is_session_dev drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x22bb76a6 iscsi_host_for_each_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x8e81afba iscsi_block_scsi_eh drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xe5e168c1 iscsi_unblock_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xa589cbbc iscsi_block_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xae89b962 iscsi_alloc_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xa973fb4b iscsi_add_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x222fd34a iscsi_create_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xf9b3510d iscsi_remove_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x836193b4 iscsi_force_destroy_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xa6bc3b46 iscsi_free_session drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xfd6cc901 iscsi_alloc_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x8baa0e2b iscsi_add_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x5d69fa6b iscsi_remove_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x9d3d9ddf iscsi_put_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x29a58c5f iscsi_get_conn drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x8b293034 iscsi_recv_pdu drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xd838046c iscsi_offload_mesg drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x6f9a64d4 iscsi_conn_error_event drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x5c569823 iscsi_conn_login_event drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xce8c23fa iscsi_post_host_event drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xec8bb956 iscsi_ping_comp_event drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x22a96a61 iscsi_session_event drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x699fe53e iscsi_get_discovery_parent_name drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x481c7085 iscsi_get_port_speed_name drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x7d53d5c2 iscsi_get_port_state_name drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x18e9a06f iscsi_register_transport drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x48697ec5 iscsi_unregister_transport drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0x4d584c36 iscsi_dbg_trace drivers/scsi/scsi_transport_iscsi EXPORT_SYMBOL_GPL
-0xb7869af1 sas_remove_children drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x714281d2 sas_remove_host drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x3be5b9d7 sas_get_address drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0xdbc4891d sas_tlr_supported drivers/scsi/scsi_transport_sas EXPORT_SYMBOL_GPL
-0x946930c8 sas_disable_tlr drivers/scsi/scsi_transport_sas EXPORT_SYMBOL_GPL
-0x377d073f sas_enable_tlr drivers/scsi/scsi_transport_sas EXPORT_SYMBOL_GPL
-0xc4f072f5 sas_is_tlr_enabled drivers/scsi/scsi_transport_sas EXPORT_SYMBOL_GPL
-0x419fd459 sas_phy_alloc drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x21ab1175 sas_phy_add drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x976a2108 sas_phy_free drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x67aab4f5 sas_phy_delete drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x3884fe50 scsi_is_sas_phy drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x851bf715 sas_port_alloc drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x01cbfe26 sas_port_alloc_num drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x591e97f4 sas_port_add drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x1626440d sas_port_free drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x0e51d992 sas_port_delete drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x01237940 scsi_is_sas_port drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0xd081be14 sas_port_get_phy drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x48f50329 sas_port_add_phy drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x747e3b0c sas_port_delete_phy drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0xab048d16 sas_port_mark_backlink drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0xa06c5485 sas_read_port_mode_page drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x0d49df39 sas_end_device_alloc drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0xee47628f sas_expander_alloc drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x9b2dee78 sas_rphy_add drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x00a4f4d8 sas_rphy_free drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x6ab100b3 sas_rphy_delete drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0xb762b2c0 sas_rphy_unlink drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x0784a968 sas_rphy_remove drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x0b0698e7 scsi_is_sas_rphy drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x54d22fc0 sas_attach_transport drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x5d464c3e sas_release_transport drivers/scsi/scsi_transport_sas EXPORT_SYMBOL
-0x932b4576 sas_register_ha drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x2afe6cf5 sas_unregister_ha drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xe96ad347 sas_phy_enable drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xfb4984b3 sas_phy_reset drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x4c383bfb sas_prep_resume_ha drivers/scsi/libsas/libsas EXPORT_SYMBOL
-0xc9f5eab4 sas_resume_ha drivers/scsi/libsas/libsas EXPORT_SYMBOL
-0xab5d9f31 sas_resume_ha_no_sync drivers/scsi/libsas/libsas EXPORT_SYMBOL
-0xc711a65c sas_suspend_ha drivers/scsi/libsas/libsas EXPORT_SYMBOL
-0xb6f23346 dev_attr_phy_event_threshold drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x913d7330 sas_domain_attach_transport drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x75c33407 sas_drain_work drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x699217aa sas_notify_port_event drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xd3ce6671 sas_notify_phy_event drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xd904a099 sas_find_attached_phy_id drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x57e2c823 sas_queuecommand drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xa178bc1d sas_get_local_phy drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xd1903de0 sas_eh_abort_handler drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xf61d4430 sas_eh_device_reset_handler drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x4b6a3131 sas_eh_target_reset_handler drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x2f143f10 sas_ioctl drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x3614122a sas_target_alloc drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xa44fe266 sas_slave_configure drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x98e31190 sas_change_queue_depth drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x89baee75 sas_bios_param drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x4ba40a8d sas_execute_internal_abort_single drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x9520c04e sas_execute_internal_abort_dev drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xa7f6b984 sas_abort_task_set drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x7a34d978 sas_clear_task_set drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xc58f81a0 sas_lu_reset drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x01b238f7 sas_query_task drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xac8ce71c sas_abort_task drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x7b8fa665 sas_task_abort drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x60b29b6a sas_slave_alloc drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xb4887312 sas_target_destroy drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x01b43014 sas_request_addr drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x35fdc1fd sas_ssp_task_response drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xfe4c3679 smp_ata_check_ready_type drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x19430f45 sas_ata_schedule_reset drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0xe8701727 sas_ata_device_link_abort drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x17132759 sas_execute_ata_cmd drivers/scsi/libsas/libsas EXPORT_SYMBOL_GPL
-0x4a8e3d34 try_test_sas_gpio_gp_bit drivers/scsi/libsas/libsas EXPORT_SYMBOL
-0x1902178a srp_tmo_valid drivers/scsi/scsi_transport_srp EXPORT_SYMBOL_GPL
-0x405b6e05 srp_parse_tmo drivers/scsi/scsi_transport_srp EXPORT_SYMBOL
-0x271f0bc9 srp_start_tl_fail_timers drivers/scsi/scsi_transport_srp EXPORT_SYMBOL
-0xedfeed45 srp_reconnect_rport drivers/scsi/scsi_transport_srp EXPORT_SYMBOL
-0x2ddd51bb srp_timed_out drivers/scsi/scsi_transport_srp EXPORT_SYMBOL
-0x7f0ec1f3 srp_rport_get drivers/scsi/scsi_transport_srp EXPORT_SYMBOL
-0x7b027dd2 srp_rport_put drivers/scsi/scsi_transport_srp EXPORT_SYMBOL
-0xabf0e00c srp_rport_add drivers/scsi/scsi_transport_srp EXPORT_SYMBOL_GPL
-0x5310be90 srp_rport_del drivers/scsi/scsi_transport_srp EXPORT_SYMBOL_GPL
-0x8b4c854c srp_remove_host drivers/scsi/scsi_transport_srp EXPORT_SYMBOL_GPL
-0x8b0dd725 srp_stop_rport_timers drivers/scsi/scsi_transport_srp EXPORT_SYMBOL_GPL
-0xe86139d4 srp_attach_transport drivers/scsi/scsi_transport_srp EXPORT_SYMBOL_GPL
-0xd3d829f9 srp_release_transport drivers/scsi/scsi_transport_srp EXPORT_SYMBOL_GPL
-0xe5cf06b5 fc_lport_notifier_head drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x10500478 fc_fill_hdr drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xcf214da1 fc_fill_reply_hdr drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x74c71bb3 fc_lport_iterate drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x160c1eb1 fc_fc4_register_provider drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x4846e9af fc_fc4_deregister_provider drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xb8ed1475 fc_disc_config drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x380b0a3c fc_disc_init drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xa1bcd198 fc_cpu_mask drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xf4ed69a1 fc_seq_send drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x7f3407a7 fc_seq_start_next drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xf8abfdab fc_seq_set_resp drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x811811e0 fc_exch_done drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xad31fb5b fc_seq_els_rsp_send drivers/scsi/libfc/libfc EXPORT_SYMBOL_GPL
-0x1199a93a fc_seq_assign drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xfa4667d1 fc_seq_release drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xc45e2bc5 fc_exch_mgr_reset drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x70fa8ce3 fc_exch_seq_send drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xc561dd4d fc_exch_update_stats drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x1d617574 fc_exch_mgr_add drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x22b90986 fc_exch_mgr_del drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xa62e9fe0 fc_exch_mgr_list_clone drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x2c843a45 fc_exch_mgr_alloc drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xb2baf5f6 fc_exch_mgr_free drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x827bb1f7 fc_exch_recv drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x54847aa4 fc_exch_init drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xcfa86061 fc_elsct_send drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x10235221 fc_elsct_init drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xf50b7293 fc_frame_crc_check drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x08fdd051 _fc_frame_alloc drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xbcadf1f4 fc_frame_alloc_fill drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x803215f0 fc_get_host_port_state drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x90fe8ad7 fc_get_host_speed drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x43aad840 fc_get_host_stats drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x6f04327b fc_fabric_login drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xaa09e7ce fc_linkup drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x0a1c5f03 fc_linkdown drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x6166ede3 fc_fabric_logoff drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x29d65bac fc_lport_destroy drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x0556d72c fc_set_mfs drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xe8e1fe71 fc_lport_set_local_id drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xbcea7a58 fc_lport_recv drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x221dd831 fc_lport_reset drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x82271de9 fc_lport_logo_resp drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x0b5ccf7a fc_lport_flogi_resp drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x2d96a544 fc_lport_config drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x0137d1c7 fc_lport_init drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xfa0d87d1 fc_lport_bsg_request drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xa6a0e041 fc_rport_lookup drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x007f5231 fc_rport_create drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x9d50ed7e fc_rport_destroy drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x161010fb fc_set_rport_loss_tmo drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x7064cb1b fc_rport_login drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x43c79f97 fc_rport_logoff drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x87ca7c18 fc_rport_recv_req drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xb0ddd5a1 fc_rport_flush_queue drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x3d62a104 fc_rport_terminate_io drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xeb66e2c3 fc_queuecommand drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x7de16e68 fc_eh_abort drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x7dd2b16d fc_eh_device_reset drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0xaf35b382 fc_eh_host_reset drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x0a29822a fc_slave_alloc drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x22df85de fc_fcp_destroy drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x4f852d81 fc_fcp_init drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x5868a3a7 libfc_vport_create drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x24f2ead7 fc_vport_id_lookup drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x8888230c fc_vport_setlink drivers/scsi/libfc/libfc EXPORT_SYMBOL
-0x02929fb1 fcoe_ctlr_init drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0x18ae1ae0 fcoe_ctlr_destroy drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0x28e6ea9a fcoe_ctlr_link_up drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0x290e6b14 fcoe_ctlr_link_down drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0x7dfdfdb0 fcoe_ctlr_els_send drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0x596935e0 fcoe_ctlr_recv drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0xe6037265 fcoe_ctlr_recv_flogi drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0xc3f30cc0 fcoe_wwn_from_mac drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xb2d5ba70 fcoe_libfc_config drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x4d97dbd9 fcoe_fcf_get_selected drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0x8ff62b60 fcoe_ctlr_set_fip_mode drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0xd8128ec2 fcoe_link_speed_update drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xb01c5c0e __fcoe_get_lesb drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xee34a4bc fcoe_get_lesb drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xba9d39de fcoe_ctlr_get_lesb drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xf167cb7a fcoe_wwn_to_str drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x3ba3dcc6 fcoe_validate_vport_create drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xbe38a331 fcoe_get_wwn drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x7257cd76 fcoe_fc_crc drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x6dbc10f6 fcoe_start_io drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x97ee7a6a fcoe_clean_pending_queue drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x4bcf885f fcoe_check_wait_queue drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x2b8aaa63 fcoe_queue_timer drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xec7e2680 fcoe_get_paged_crc_eof drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x0db08b06 fcoe_transport_attach drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0xf8c84963 fcoe_transport_detach drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL
-0xe2483891 fcoe_ctlr_device_add drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x41099a01 fcoe_ctlr_device_delete drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x8db78f3f fcoe_fcf_device_delete drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0x72006864 fcoe_fcf_device_add drivers/scsi/fcoe/libfcoe EXPORT_SYMBOL_GPL
-0xce86c7d6 iscsi_conn_queue_xmit drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xb3929c29 iscsi_conn_queue_recv drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x16892b26 iscsi_update_cmdsn drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x0658bb6e iscsi_prep_data_out_pdu drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x82159cd6 iscsi_get_task drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x82ec6062 __iscsi_put_task drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xd64a4d4d iscsi_put_task drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x7454a240 iscsi_complete_scsi_task drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xb0443a11 iscsi_conn_send_pdu drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x39a71816 iscsi_itt_to_task drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x39890385 __iscsi_complete_pdu drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xca470167 iscsi_complete_pdu drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x86d22270 iscsi_verify_itt drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xd893978c iscsi_itt_to_ctask drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x8e6dcf67 iscsi_session_failure drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x72d8cb82 iscsi_conn_failure drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x40a9e152 iscsi_requeue_task drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x4ef98ee2 iscsi_queuecommand drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x23bbaf47 iscsi_target_alloc drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x39798ef9 iscsi_suspend_queue drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x0611ccc6 iscsi_suspend_tx drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xc9ce09ac iscsi_suspend_rx drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x9ff22032 iscsi_eh_cmd_timed_out drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x808902fa iscsi_conn_unbind drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xf961368a iscsi_eh_abort drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xdc37e613 iscsi_eh_device_reset drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x6657a11d iscsi_session_recovery_timedout drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x24a0a269 iscsi_eh_session_reset drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x8c4eb6ad iscsi_eh_recover_target drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x3bef2f73 iscsi_pool_init drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x8d303b1b iscsi_pool_free drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xfbe28162 iscsi_host_get_max_scsi_cmds drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x0d5e822e iscsi_host_add drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x24c58d59 iscsi_host_alloc drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x6fe71832 iscsi_host_remove drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x44721da7 iscsi_host_free drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xa6ff7cf8 iscsi_session_setup drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x04b7a9f3 iscsi_session_remove drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xef8b0aa1 iscsi_session_free drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xe2bf981b iscsi_session_teardown drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xb8aa2e02 iscsi_conn_setup drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xf3a763fc iscsi_conn_teardown drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xbf59f4a9 iscsi_conn_start drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x4b21f5c5 iscsi_conn_stop drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xf32e7ff4 iscsi_conn_bind drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x12b2ad06 iscsi_switch_str_param drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xc1b91dd0 iscsi_set_param drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x34633a79 iscsi_session_get_param drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xeab9cbd5 iscsi_conn_get_addr_param drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x8ebe931d iscsi_conn_get_param drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xe6095366 iscsi_host_get_param drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0xe054d460 iscsi_host_set_param drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
-0x8194e609 iscsi_tcp_segment_unmap drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0xa898a746 iscsi_tcp_segment_done drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x495f6460 iscsi_tcp_dgst_header drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x135b9b8d iscsi_segment_init_linear drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0xd7334923 iscsi_segment_seek_sg drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x4a3e1df0 iscsi_tcp_hdr_recv_prep drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0xcdd2140b iscsi_tcp_cleanup_task drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x34fc442a iscsi_tcp_recv_segment_is_hdr drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x79a56caf iscsi_tcp_recv_skb drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x3b20a8dd iscsi_tcp_task_init drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x0dcfcfcc iscsi_tcp_task_xmit drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x52e0af5c iscsi_tcp_conn_setup drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x8a120af7 iscsi_tcp_conn_teardown drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x0ea8ff62 iscsi_tcp_r2tpool_alloc drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x705b9471 iscsi_tcp_r2tpool_free drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x1f14e54c iscsi_tcp_set_max_r2t drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x27ddd679 iscsi_tcp_conn_get_stats drivers/scsi/libiscsi_tcp EXPORT_SYMBOL_GPL
-0x570f7d96 iscsi_boot_create_target drivers/scsi/iscsi_boot_sysfs EXPORT_SYMBOL_GPL
-0x15413f50 iscsi_boot_create_initiator drivers/scsi/iscsi_boot_sysfs EXPORT_SYMBOL_GPL
-0xb03920e0 iscsi_boot_create_ethernet drivers/scsi/iscsi_boot_sysfs EXPORT_SYMBOL_GPL
-0x88c8b1f0 iscsi_boot_create_acpitbl drivers/scsi/iscsi_boot_sysfs EXPORT_SYMBOL_GPL
-0x9a07e7b0 iscsi_boot_create_kset drivers/scsi/iscsi_boot_sysfs EXPORT_SYMBOL_GPL
-0xe8555f9e iscsi_boot_create_host_kset drivers/scsi/iscsi_boot_sysfs EXPORT_SYMBOL_GPL
-0xfebccc65 iscsi_boot_destroy_kset drivers/scsi/iscsi_boot_sysfs EXPORT_SYMBOL_GPL
-0xd97ea9d8 qlt_unreg_sess drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0xc00b480e qlt_stop_phase1 drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0x678deb8c qlt_stop_phase2 drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0x8481e9dc qlt_free_mcmd drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0xed066b32 qlt_xmit_tm_rsp drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0x122cde21 qlt_xmit_response drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0xe5192d17 qlt_rdy_to_xfer drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0x18ee6ddc qlt_abort_cmd drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0x18637fb5 qlt_free_cmd drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0xcaf07dcc qlt_lport_register drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0x075599ed qlt_lport_deregister drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0xca533128 qlt_enable_vha drivers/scsi/qla2xxx/qla2xxx EXPORT_SYMBOL
-0x49f492d8 cxgbi_device_portmap_create drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xd177ffef cxgbi_device_portmap_cleanup drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x4277fa9c cxgbi_device_register drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x15918d48 cxgbi_device_unregister drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x7fdb6004 cxgbi_device_unregister_all drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xaba5b0e2 cxgbi_device_find_by_lldev drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xba3ec231 cxgbi_device_find_by_netdev drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x8fb64651 cxgbi_device_find_by_netdev_rcu drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x7f942b96 cxgbi_hbas_remove drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xa56bfe70 cxgbi_hbas_add drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xcea5ebe2 cxgbi_sock_free_cpl_skbs drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x7c050408 cxgbi_sock_established drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x811b7b91 cxgbi_sock_closed drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x68eaa43a cxgbi_sock_fail_act_open drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x9bae4743 cxgbi_sock_act_open_req_arp_failure drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x5fc15db0 cxgbi_sock_rcv_abort_rpl drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x9b15e10a cxgbi_sock_rcv_peer_close drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x802d63d0 cxgbi_sock_rcv_close_conn_rpl drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x06e65d88 cxgbi_sock_rcv_wr_ack drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x2bf99f04 cxgbi_sock_select_mss drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x67947193 cxgbi_sock_skb_entail drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x70739cc2 cxgbi_sock_purge_wr_queue drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x822da0c8 cxgbi_sock_check_wr_invariants drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x8319f739 cxgbi_ddp_set_one_ppod drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x56e4ba59 cxgbi_ddp_ppm_setup drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x05e66395 cxgbi_parse_pdu_itt drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x1280cea9 cxgbi_conn_tx_open drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x6354b83f cxgbi_conn_pdu_ready drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xede1d6c3 cxgbi_conn_alloc_pdu drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x9b2c5561 cxgbi_conn_init_pdu drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x46cdf9ac cxgbi_conn_xmit_pdu drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xf5e6338d cxgbi_cleanup_task drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x5aabfa43 cxgbi_get_conn_stats drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x5a427aa9 cxgbi_set_conn_param drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x2944b365 cxgbi_get_ep_param drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xe206462d cxgbi_create_conn drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xde04ccfa cxgbi_bind_conn drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xda7b177e cxgbi_create_session drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x7cff6c6e cxgbi_destroy_session drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x690354eb cxgbi_set_host_param drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xf17e8e00 cxgbi_get_host_param drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x75967406 cxgbi_ep_connect drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x1c90839c cxgbi_ep_poll drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xb457ad09 cxgbi_ep_disconnect drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x5a3cbe18 cxgbi_iscsi_init drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0x33ea6d0a cxgbi_iscsi_cleanup drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xef346615 cxgbi_attr_is_visible drivers/scsi/cxgbi/libcxgbi EXPORT_SYMBOL_GPL
-0xd45434ee admin_timeout drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x813cf212 nvme_io_timeout drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x64b62862 nvme_wq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x49224181 nvme_reset_wq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xd58bbbcb nvme_delete_wq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xa06c3f50 nvme_try_sched_reset drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x3fb6d345 nvme_reset_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x94b55692 nvme_delete_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xb547a6a3 nvme_complete_rq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xa1c0ace4 nvme_complete_batch_req drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xf9bb640a nvme_host_path_error drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x6286bf43 nvme_cancel_request drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xb8afb5f3 nvme_cancel_tagset drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x2ea9f437 nvme_cancel_admin_tagset drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x70e97b71 nvme_change_ctrl_state drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x7e8adc5c nvme_wait_reset drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x9310dfc4 nvme_put_ns drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL NVME_TARGET_PASSTHRU
-0x82867b2c nvme_init_request drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xfa91d8ce nvme_fail_nonready_command drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xa29f056e __nvme_check_ready drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x6ccd91d2 nvme_cleanup_cmd drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xb2dbe8d5 nvme_setup_cmd drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xb6ed487a nvme_execute_rq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL NVME_TARGET_PASSTHRU
-0x46f40731 __nvme_submit_sync_cmd drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xbeca39d4 nvme_submit_sync_cmd drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x3e0973e2 nvme_command_effects drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL NVME_TARGET_PASSTHRU
-0xdea0de4f nvme_passthru_start drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL NVME_TARGET_PASSTHRU
-0x83ec0688 nvme_passthru_end drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL NVME_TARGET_PASSTHRU
-0xcdaabfb2 nvme_stop_keep_alive drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x529aabae nvme_set_features drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x2a3bab1f nvme_get_features drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x99417ba0 nvme_set_queue_count drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xd5adef2d nvme_disable_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xf7655e40 nvme_enable_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x154927a1 nvme_init_ctrl_finish drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x59aab629 nvme_find_get_ns drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL NVME_TARGET_PASSTHRU
-0x093c4730 nvme_remove_namespaces drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x292e2c71 nvme_complete_async_event drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xe87020eb nvme_alloc_admin_tag_set drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x87d84adc nvme_remove_admin_tag_set drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x61e11857 nvme_alloc_io_tag_set drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x608d1a82 nvme_remove_io_tag_set drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x6545a8e1 nvme_stop_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xdb979c9a nvme_start_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xa23d7edf nvme_uninit_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x8095f3c5 nvme_init_ctrl drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x8d29b059 nvme_mark_namespaces_dead drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x11911224 nvme_unfreeze drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xb474deed nvme_wait_freeze_timeout drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x266996de nvme_wait_freeze drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x41c7534d nvme_start_freeze drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x85ada180 nvme_quiesce_io_queues drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xc89c731b nvme_unquiesce_io_queues drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x651ac5de nvme_quiesce_admin_queue drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x9f7268c6 nvme_unquiesce_admin_queue drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x218fe8a1 nvme_sync_io_queues drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x9686600c nvme_sync_queues drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xfafd06e4 nvme_ctrl_from_file drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL NVME_TARGET_PASSTHRU
-0xda79e03c nvme_dev_attrs_group drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x8319f564 __tracepoint_nvme_sq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xfc07e2be __traceiter_nvme_sq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xc26a3339 __SCK__tp_func_nvme_sq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0x3bf2393a __SCT__tp_func_nvme_sq drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xaa01f8ac nvme_mpath_start_request drivers/nvme/host/nvme-core EXPORT_SYMBOL_GPL
-0xf42931fc nvmf_get_address drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x546eb823 nvmf_reg_read32 drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x797dbf6e nvmf_reg_read64 drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x11b2b639 nvmf_reg_write32 drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x1cd2b7d7 nvmf_connect_admin_queue drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x7999ead9 nvmf_connect_io_queue drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x55b9b5c4 nvmf_should_reconnect drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x79c963cb nvmf_register_transport drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x6cb135cb nvmf_unregister_transport drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x1e328d22 nvmf_set_io_queues drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x4a5bd3db nvmf_map_queues drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0x3fabbcf6 nvmf_ip_options_match drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0xdd8af66e nvmf_free_options drivers/nvme/host/nvme-fabrics EXPORT_SYMBOL_GPL
-0xee1e1085 nvme_fc_register_localport drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0x3884f8b8 nvme_fc_unregister_localport drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0x0d12e564 nvme_fc_register_remoteport drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0xfca9dc99 nvme_fc_unregister_remoteport drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0x3e33ac54 nvme_fc_rescan_remoteport drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0x8a9cf5a7 nvme_fc_set_remoteport_devloss drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0xbb0e18a6 nvme_fc_rcv_ls_req drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0xcc8a2d78 nvme_fc_io_getuuid drivers/nvme/host/nvme-fc EXPORT_SYMBOL_GPL
-0x3e0ef07a nvmet_wq drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x17cbf693 nvmet_register_transport drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0xc8800e0d nvmet_unregister_transport drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0xab396538 nvmet_req_complete drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x13777f98 nvmet_sq_destroy drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x6f421f5b nvmet_sq_init drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x2ba8200d nvmet_req_init drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x07af9769 nvmet_req_uninit drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x10309501 nvmet_check_transfer_len drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0xff9a1461 nvmet_req_alloc_sgls drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0xf031b2c9 nvmet_req_free_sgls drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x898f0a01 nvmet_ctrl_fatal_error drivers/nvme/target/nvmet EXPORT_SYMBOL_GPL
-0x334d336c nvmet_fc_register_targetport drivers/nvme/target/nvmet-fc EXPORT_SYMBOL_GPL
-0x4a013682 nvmet_fc_invalidate_host drivers/nvme/target/nvmet-fc EXPORT_SYMBOL_GPL
-0x9ef76d99 nvmet_fc_unregister_targetport drivers/nvme/target/nvmet-fc EXPORT_SYMBOL_GPL
-0x0b98123d nvmet_fc_rcv_ls_req drivers/nvme/target/nvmet-fc EXPORT_SYMBOL_GPL
-0x7bfa9497 nvmet_fc_rcv_fcp_req drivers/nvme/target/nvmet-fc EXPORT_SYMBOL_GPL
-0x6ff62dab nvmet_fc_rcv_fcp_abort drivers/nvme/target/nvmet-fc EXPORT_SYMBOL_GPL
-0xc1d15a4c phylink_set_port_modes drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x66e8b5b0 phylink_caps_to_linkmodes drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xf4cdfd25 phylink_limit_mac_speed drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xda9f4b17 phylink_get_capabilities drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x150d4bee phylink_validate_mask_caps drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x7579c29d phylink_generic_validate drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x704be9eb phylink_create drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xf3083a1d phylink_destroy drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x4278d56a phylink_expects_phy drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x55b34fad phylink_connect_phy drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x5b63ff47 phylink_of_phy_connect drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x891fbc7b phylink_fwnode_phy_connect drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x983276da phylink_disconnect_phy drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x12135396 phylink_mac_change drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x982fa253 phylink_pcs_change drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x911fcd6c phylink_start drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xdcb0a2c0 phylink_stop drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x16ca1a8a phylink_suspend drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xc0a8f4be phylink_resume drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x08213956 phylink_ethtool_get_wol drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x62104126 phylink_ethtool_set_wol drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x9616a255 phylink_ethtool_ksettings_get drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xa16449b4 phylink_ethtool_ksettings_set drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x6fa426d2 phylink_ethtool_nway_reset drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xf8fe5642 phylink_ethtool_get_pauseparam drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x15c4e3e2 phylink_ethtool_set_pauseparam drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x825c7340 phylink_get_eee_err drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xec02ebe0 phylink_init_eee drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x2c8e28ee phylink_ethtool_get_eee drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x57727285 phylink_ethtool_set_eee drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xd2ef6a40 phylink_mii_ioctl drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x59e0695d phylink_speed_down drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x5d0c4dcc phylink_speed_up drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x229419b3 phylink_resolve_c73 drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x49997567 phylink_decode_usxgmii_word drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x287c9595 phylink_mii_c22_pcs_decode_state drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xc082c799 phylink_mii_c22_pcs_get_state drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xed971769 phylink_mii_c22_pcs_encode_advertisement drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x60bfd925 phylink_mii_c22_pcs_config drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x2c386d19 phylink_mii_c22_pcs_an_restart drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0xffeba8d2 phylink_mii_c45_pcs_get_state drivers/net/phy/phylink EXPORT_SYMBOL_GPL
-0x24570247 __bcm_phy_write_exp drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x64ee7047 bcm_phy_write_exp drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xd824bed6 __bcm_phy_read_exp drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x45c2b859 bcm_phy_read_exp drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x843af273 __bcm_phy_modify_exp drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x44136ce1 bcm_phy_modify_exp drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x10aae6ee bcm54xx_auxctl_read drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x168c4399 bcm54xx_auxctl_write drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL
-0x18a21bd8 bcm_phy_write_misc drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x94288baf bcm_phy_read_misc drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xce1850f8 bcm_phy_ack_intr drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x9b03a3ce bcm_phy_config_intr drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x4ca36fa6 bcm_phy_handle_interrupt drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xcdcfa07f bcm_phy_read_shadow drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x68bee684 bcm_phy_write_shadow drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x2075e8a6 __bcm_phy_read_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xbd93ee29 bcm_phy_read_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x50407f42 __bcm_phy_write_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x10f90d42 bcm_phy_write_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x4b83e814 __bcm_phy_modify_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x8baa7686 bcm_phy_modify_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x44d340b6 bcm_phy_enable_apd drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x3b1e9e99 bcm_phy_set_eee drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xf5c1b14c bcm_phy_downshift_get drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x444a7796 bcm_phy_downshift_set drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x9a32b8c0 bcm_phy_get_sset_count drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x6a08a450 bcm_phy_get_strings drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x292d13f9 bcm_phy_get_stats drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xe26985a5 bcm_phy_r_rc_cal_reset drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x7ce73069 bcm_phy_28nm_a0b0_afe_config_init drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xe94e68ce bcm_phy_enable_jumbo drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xea74064f bcm_phy_cable_test_start drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x9473f666 bcm_phy_cable_test_get_status drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xc5d24416 bcm_phy_cable_test_start_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x0aa9a7ae bcm_phy_cable_test_get_status_rdb drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x8e03e1c6 bcm_phy_set_wol drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x25c3225a bcm_phy_get_wol drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xa0f0ddfd bcm_phy_wol_isr drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0x0d1aa6a2 bcm_phy_led_brightness_set drivers/net/phy/bcm-phy-lib EXPORT_SYMBOL_GPL
-0xe54c4503 bcm_ptp_stop drivers/net/phy/bcm-phy-ptp EXPORT_SYMBOL_GPL
-0x21582a7c bcm_ptp_config_init drivers/net/phy/bcm-phy-ptp EXPORT_SYMBOL_GPL
-0xd374cffa bcm_ptp_probe drivers/net/phy/bcm-phy-ptp EXPORT_SYMBOL_GPL
-0xbe08baba smsc_phy_config_intr drivers/net/phy/smsc EXPORT_SYMBOL_GPL
-0xa46aa5dd smsc_phy_handle_interrupt drivers/net/phy/smsc EXPORT_SYMBOL_GPL
-0xcf8cb4a8 smsc_phy_config_init drivers/net/phy/smsc EXPORT_SYMBOL_GPL
-0xd4b6886f lan87xx_read_status drivers/net/phy/smsc EXPORT_SYMBOL_GPL
-0xc62d5de9 smsc_phy_get_tunable drivers/net/phy/smsc EXPORT_SYMBOL_GPL
-0xe4e99a78 smsc_phy_set_tunable drivers/net/phy/smsc EXPORT_SYMBOL_GPL
-0x7284814d smsc_phy_probe drivers/net/phy/smsc EXPORT_SYMBOL_GPL
-0xd528e4c7 mdiobb_read_c22 drivers/net/mdio/mdio-bitbang EXPORT_SYMBOL
-0x234b5818 mdiobb_read_c45 drivers/net/mdio/mdio-bitbang EXPORT_SYMBOL
-0xf05fe231 mdiobb_write_c22 drivers/net/mdio/mdio-bitbang EXPORT_SYMBOL
-0xe2220e9b mdiobb_write_c45 drivers/net/mdio/mdio-bitbang EXPORT_SYMBOL
-0xa51c9be0 alloc_mdio_bitbang drivers/net/mdio/mdio-bitbang EXPORT_SYMBOL
-0xed96adcb free_mdio_bitbang drivers/net/mdio/mdio-bitbang EXPORT_SYMBOL
-0x721f3e92 cavium_mdiobus_read_c22 drivers/net/mdio/mdio-cavium EXPORT_SYMBOL
-0x0d862d59 cavium_mdiobus_read_c45 drivers/net/mdio/mdio-cavium EXPORT_SYMBOL
-0xf1aa5e42 cavium_mdiobus_write_c22 drivers/net/mdio/mdio-cavium EXPORT_SYMBOL
-0x0ad91843 cavium_mdiobus_write_c45 drivers/net/mdio/mdio-cavium EXPORT_SYMBOL
-0xc8da9129 mdio_i2c_alloc drivers/net/mdio/mdio-i2c EXPORT_SYMBOL_GPL
-0xded537a6 xpcs_get_an_mode drivers/net/pcs/pcs_xpcs EXPORT_SYMBOL_GPL
-0x22f5f887 xpcs_get_interfaces drivers/net/pcs/pcs_xpcs EXPORT_SYMBOL_GPL
-0xaa7b6620 xpcs_config_eee drivers/net/pcs/pcs_xpcs EXPORT_SYMBOL_GPL
-0x71306b72 xpcs_do_config drivers/net/pcs/pcs_xpcs EXPORT_SYMBOL_GPL
-0xc5b25b8b xpcs_link_up drivers/net/pcs/pcs_xpcs EXPORT_SYMBOL_GPL
-0x57fd9822 xpcs_destroy drivers/net/pcs/pcs_xpcs EXPORT_SYMBOL_GPL
-0x07b879df xpcs_create_mdiodev drivers/net/pcs/pcs_xpcs EXPORT_SYMBOL_GPL
-0x91153b38 sss_nic_set_hw_vport_state drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL_GPL
-0x8331170a sss_nic_clear_hw_qp_resource drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x26d4fb66 sss_nic_io_init drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xc70de495 sss_nic_io_deinit drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x7231252f sss_nic_deinit_qp_ctx drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL_GPL
-0x61c2d7ac sss_register_uld drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x9d20aa7b sss_unregister_uld drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x6cedfbd6 sss_chip_set_msix_attr drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xe81a6c51 sss_chip_clear_msix_resend_bit drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xf2a696fe sss_chip_reset_function drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x90c3ac23 sss_chip_set_root_ctx drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x0def5974 sss_chip_clean_root_ctx drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xbbe5a891 sss_get_mgmt_version drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xc65592c5 sss_chip_set_func_used_state drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x88baf5d7 sss_get_nic_capability drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x76c17132 sss_support_nic drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xc648a3b3 sss_support_ppa drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x10119063 sss_get_max_sq_num drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xab88c6aa sss_get_phy_port_id drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xc32814b2 sss_get_max_vf_num drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xe9ccbc41 sss_nic_intr_num drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x7d5d4139 sss_get_cos_valid_bitmap drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x3d9cbf8f sss_alloc_irq drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x9ce17c48 sss_free_irq drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x6f5c35fd sss_register_dev_event drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xbc9a1d68 sss_unregister_dev_event drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x807bc032 sss_get_dev_present_flag drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x1163bf83 sss_get_max_pf_num drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x3e6ccb96 sss_get_chip_present_state drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x29bd9cae sss_fault_event_report drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xbdca0ee1 sss_register_service_adapter drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x52ac45fd sss_unregister_service_adapter drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x934ff93f sss_get_service_adapter drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x8794fa53 sss_do_event_callback drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xc646463d sss_update_link_stats drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x195328b6 sss_alloc_ctrlq_msg_buf drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x34739624 sss_free_ctrlq_msg_buf drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xe2aa6a0d sss_ctrlq_direct_reply drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x7c5ea78d sss_ctrlq_detail_reply drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xf8bc8684 sss_register_pf_mbx_handler drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xf3b12aba sss_register_vf_mbx_handler drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x2a6e0533 sss_unregister_pf_mbx_handler drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x456aed30 sss_unregister_vf_mbx_handler drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x49bf9753 sss_mbx_send_to_pf drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x1613fd50 sss_mbx_send_to_vf drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xef4af2f4 sss_sync_mbx_send_msg drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xd3f631c1 sss_register_mgmt_msg_handler drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x9daf9bfa sss_unregister_mgmt_msg_handler drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xce7a4886 sss_alloc_db_addr drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x9351eb19 sss_free_db_addr drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x63654c38 sss_chip_set_msix_auto_mask drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x238f9584 sss_chip_set_msix_state drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x889a1e7a sss_get_global_func_id drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xc20b324c sss_get_pf_id_of_vf drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x60acf4bc sss_get_pcie_itf_id drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x0b319f35 sss_get_func_type drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x470d2001 sss_get_func_id drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x38447e44 sss_get_glb_pf_vf_offset drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x777cd1cd sss_get_ppf_id drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xa4ed458a sss_create_wq drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0xe6277f61 sss_destroy_wq drivers/net/ethernet/3snic/sssnic/nic/sssnic EXPORT_SYMBOL
-0x9b089d76 aq_xdp_locking_key drivers/net/ethernet/aquantia/atlantic/atlantic EXPORT_SYMBOL
-0x5a030b40 cnic_register_driver drivers/net/ethernet/broadcom/cnic EXPORT_SYMBOL
-0x636af174 cnic_unregister_driver drivers/net/ethernet/broadcom/cnic EXPORT_SYMBOL
-0xc7564184 bnxt_register_dev drivers/net/ethernet/broadcom/bnxt/bnxt_en EXPORT_SYMBOL
-0x44c7fba2 bnxt_unregister_dev drivers/net/ethernet/broadcom/bnxt/bnxt_en EXPORT_SYMBOL
-0x3f725357 bnxt_send_msg drivers/net/ethernet/broadcom/bnxt/bnxt_en EXPORT_SYMBOL
-0x566febe2 bnxt_register_async_events drivers/net/ethernet/broadcom/bnxt/bnxt_en EXPORT_SYMBOL
-0x4ddccb2c liquidio_set_ethtool_ops drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x82b5ac6d lio_delete_glists drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x38557525 lio_setup_glists drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x54f910a3 liquidio_set_feature drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x19cb4e69 liquidio_link_ctrl_cmd_completion drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x2c47d9ff setup_rx_oom_poll_fn drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x88de53a3 cleanup_rx_oom_poll_fn drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x400ca0af liquidio_setup_io_queues drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xa8a932d5 octeon_setup_interrupt drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x415b89be liquidio_change_mtu drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x5fb77519 lio_wait_for_clean_oq drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xb865ebdd lio_fetch_stats drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x3fd7f0c5 liquidio_get_speed drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xc9a35459 liquidio_get_fec drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x4b162fe6 octeon_delete_instr_queue drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x098dc6ad lio_wait_for_instr_fetch drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xf4fd06c3 octeon_ring_doorbell_locked drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xb625626b octeon_register_reqtype_free_fn drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xaf1846ce lio_process_iq_request_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x7ca9edda octeon_send_command drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x41694619 octeon_prepare_soft_command drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xf9a6e18e octeon_send_soft_command drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xa89cdeff octeon_setup_sc_buffer_pool drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x3e830c52 octeon_free_sc_done_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x6ed05b64 octeon_free_sc_zombie_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x11434adc octeon_free_sc_buffer_pool drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x0c7ef651 octeon_alloc_soft_command drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xb46c5b13 octeon_free_soft_command drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xd7377f56 octeon_setup_response_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x79e17762 octeon_delete_response_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x4d44ddf7 lio_process_ordered_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x6d0d28ef octeon_init_device_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xec7f00a5 lio_get_state_string drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x3ae8e4b4 octeon_free_device_mem drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x82a4cee6 octeon_allocate_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x9e5c9f6f octeon_register_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xcd004c4b octeon_deregister_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x7fa274c9 octeon_allocate_ioq_vector drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xf1f3b1e7 octeon_free_ioq_vector drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xd8f24a35 octeon_setup_instr_queues drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x95989c29 octeon_setup_output_queues drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x3e539e7c octeon_set_io_queues_off drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x7432847d octeon_init_dispatch_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x2884b668 octeon_delete_dispatch_list drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xc528527f octeon_register_dispatch_fn drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xc6abc5b1 octeon_core_drv_init drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x42610a31 octeon_get_tx_qsize drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x04e1bba7 octeon_get_rx_qsize drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xfbaa295f octeon_get_conf drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x87040852 lio_get_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x18444404 lio_pci_readq drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x244c1e11 lio_pci_writeq drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x182b6a75 octeon_mem_access_ok drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x601b53ce octeon_wait_for_ddr_init drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x3bf055be lio_enable_irq drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x5bf90ecd lio_setup_cn66xx_octeon_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xcd8cbb6e lio_setup_cn68xx_octeon_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xc1a96439 setup_cn23xx_octeon_pf_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x5eea681c cn23xx_fw_loaded drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xa6b2c651 cn23xx_tell_vf_its_macaddr_changed drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x3177ef0b cn23xx_get_vf_stats drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x5a02f587 cn23xx_vf_ask_pf_to_do_flr drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x889b3eb7 cn23xx_octeon_pfvf_handshake drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x5506276b cn23xx_setup_octeon_vf_device drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x204ee2e7 octeon_pci_read_core_mem drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x7609b5e6 octeon_pci_write_core_mem drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x40c16be5 octeon_read_device_mem64 drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x75e7b1c5 octeon_read_device_mem32 drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xef6bf1be octeon_write_device_mem32 drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x28a1d747 octeon_droq_check_hw_for_pkts drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xee54c301 octeon_delete_droq drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x6fa566df octeon_droq_process_packets drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x020e6119 octeon_unregister_droq_ops drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x003e8654 octeon_alloc_soft_command_resp drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x37a60065 octnet_send_nic_data_pkt drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0x6db1a4c3 octnet_send_nic_ctrl_pkt drivers/net/ethernet/cavium/liquidio/liquidio-core EXPORT_SYMBOL_GPL
-0xe4f382a5 cxgb4_alloc_atid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x8d0843f7 cxgb4_free_atid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x805321ce cxgb4_alloc_stid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x458f524f cxgb4_alloc_sftid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xf96db6bb cxgb4_free_stid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x904d9569 cxgb4_remove_tid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x23481bca cxgb4_create_server drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x5064d6a1 cxgb4_create_server6 drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x2cd2c82d cxgb4_remove_server drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xd69a0294 cxgb4_best_mtu drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x50ee5c07 cxgb4_best_aligned_mtu drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xc1276a6b cxgb4_port_chan drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xc7c58f56 cxgb4_port_e2cchan drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x6242d65e cxgb4_dbfifo_count drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x945c0513 cxgb4_port_viid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x5d9f95e8 cxgb4_port_idx drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x228e1b67 cxgb4_get_tcp_stats drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x2c5454ce cxgb4_iscsi_init drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xc69426d9 cxgb4_flush_eq_cache drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x4398ee7c cxgb4_sync_txq_pidx drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xb176adbf cxgb4_read_tpte drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x0d7672e5 cxgb4_read_sge_timestamp drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x382d1aeb cxgb4_bar2_sge_qregs drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x4b76169c cxgb4_create_server_filter drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x293c1b39 cxgb4_remove_server_filter drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x01f5e6be cxgb4_l2t_send drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x461e8946 cxgb4_l2t_release drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x7ec97882 cxgb4_l2t_get drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xd0ea3639 cxgb4_select_ntuple drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x666745e3 cxgb4_l2t_alloc_switching drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x00d2314c cxgb4_check_l2t_valid drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xa8db193f cxgb4_smt_release drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x3ce00450 cxgb4_smt_alloc_switching drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xb99f8a97 cxgb4_map_skb drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x7a029825 cxgb4_reclaim_completed_tx drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xec0020f6 cxgb4_write_sgl drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x765c63ff cxgb4_write_partial_sgl drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xdc303779 cxgb4_ring_tx_db drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xa9d461ea cxgb4_inline_tx_skb drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xb6257c09 cxgb4_ofld_send drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x4dedd93e cxgb4_immdata_send drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x0d021edc cxgb4_crypto_send drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x6336294b cxgb4_pktgl_to_skb drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x2c21168d cxgb4_clip_get drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xab946669 cxgb4_clip_release drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x3b1ad2d1 cxgb4_update_root_dev_clip drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x42bb4cfd t4_cleanup_clip_tbl drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xe48eaba2 cxgb4_register_uld drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x0f1a5528 cxgb4_unregister_uld drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0xdf5b4c49 cxgb4_get_srq_entry drivers/net/ethernet/chelsio/cxgb4/cxgb4 EXPORT_SYMBOL
-0x963b3384 cxgbi_ppm_ppod_release drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0x67676c99 cxgbi_ppm_ppods_reserve drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0x919c6c62 cxgbi_ppm_make_ppod_hdr drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0xf5ce28c1 cxgbi_ppm_release drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0xa0b35c59 cxgbi_ppm_init drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0x1bdaafe1 cxgbi_tagmask_set drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0x255ab30f cxgb_get_4tuple drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0xbc66eba1 cxgb_find_route drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0x4cb1fba9 cxgb_find_route6 drivers/net/ethernet/chelsio/libcxgb/libcxgb EXPORT_SYMBOL
-0x9c91b478 vnic_dev_get_res_count drivers/net/ethernet/cisco/enic/enic EXPORT_SYMBOL
-0xb023e2f2 vnic_dev_get_res drivers/net/ethernet/cisco/enic/enic EXPORT_SYMBOL
-0x7cea81bf vnic_dev_unregister drivers/net/ethernet/cisco/enic/enic EXPORT_SYMBOL
-0x27d165b0 vnic_dev_register drivers/net/ethernet/cisco/enic/enic EXPORT_SYMBOL
-0x3657edba vnic_dev_get_pdev drivers/net/ethernet/cisco/enic/enic EXPORT_SYMBOL
-0xb8515cb6 enic_api_devcmd_proxy_by_index drivers/net/ethernet/cisco/enic/enic EXPORT_SYMBOL
-0x4e2e10d2 be_roce_mcc_cmd drivers/net/ethernet/emulex/benet/be2net EXPORT_SYMBOL
-0x47a3dc82 be_roce_register_driver drivers/net/ethernet/emulex/benet/be2net EXPORT_SYMBOL
-0x6cbb9410 be_roce_unregister_driver drivers/net/ethernet/emulex/benet/be2net EXPORT_SYMBOL
-0x148499dd hinic_set_mac drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc2a63f83 hinic_del_mac drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe1d0a9f5 hinic_get_port_info drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x07c6447f hinic_get_speed drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x03ff30fd hinic_dcb_set_rq_iq_mapping drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe115e663 hinic_set_vport_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x1e8eb889 hinic_set_port_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x228ad5f7 hinic_get_fw_version drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x6dc521c9 hinic_get_dcb_state drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x529a712f hinic_get_pf_dcb_state drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc47b54e9 hinic_flush_sq_res drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb750a951 hinic_set_func_capture_en drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe93dfa01 hinic_set_link_status_follow drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x4b56368a hinic_create_qps drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x710ab631 hinic_free_qps drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x68f1eada hinic_init_qp_ctxts drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x7bb86d27 hinic_free_qp_ctxts drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb3960631 hinic_init_nic_hwdev drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x56928284 hinic_free_nic_hwdev drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x08b3e9cb hinic_enable_tx_irq drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x44cb211e hinic_rx_tx_flush drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x8518bdc3 hinic_get_sq_free_wqebbs drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x501dc1bf hinic_get_rq_free_wqebbs drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x87c0687a hinic_get_sq_local_ci drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5d9ddace hinic_get_sq_hw_ci drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5b2c113c hinic_get_sq_wqe drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc9a6976f hinic_return_sq_wqe drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xa6943929 hinic_update_sq_pi drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x31121a10 hinic_send_sq_wqe drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x32cd6e55 hinic_update_sq_local_ci drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x7862ad31 hinic_get_rq_wqe drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xfaad63e9 hinic_return_rq_wqe drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x7384872b hinic_update_rq_delta drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xf1212a2f hinic_update_rq_hw_pi drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe4c7b15e hinic_get_rq_local_ci drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x9cc63dc1 hinic_update_rq_local_ci drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb0e92fc2 hinic_free_db_addr drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xf3078e61 hinic_alloc_db_addr drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb2e09a1f hinic_free_db_phy_addr drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5f1d2c55 hinic_alloc_db_phy_addr drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xa4dff983 hinic_set_msix_state drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x0a3dcd00 wait_until_doorbell_flush_states drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5d9792cb hinic_global_func_id drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5f3d8d74 hinic_intr_num drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x8472467a hinic_pf_id_of_vf drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x26d5808a hinic_pcie_itf_id drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x53b77a80 hinic_vf_in_pf drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xdfc367f7 hinic_func_type drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x414436c5 hinic_ceq_num drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x42f9a952 hinic_dma_attr_entry_num drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2194fbbb hinic_glb_pf_vf_offset drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe1373f53 hinic_mpf_idx drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc55e9466 hinic_ppf_idx drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x191e6549 hinic_aeq_register_hw_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x49855f00 hinic_aeq_unregister_hw_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xab7b7e02 hinic_aeq_register_swe_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x4bb13331 hinic_aeq_unregister_swe_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x372ce0fe hinic_ceq_register_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x83ee922f hinic_ceq_unregister_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xccc1edbf hinic_mbox_ppf_to_vf drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xa9dbe80b hinic_register_mgmt_msg_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x75de98b8 hinic_unregister_mgmt_msg_cb drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb9589a26 hinic_api_cmd_write_nack drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb5bf65d0 hinic_api_cmd_read_ack drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe16e5014 hinic_alloc_cmd_buf drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x74643659 hinic_free_cmd_buf drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x9480d128 hinic_cmdq_direct_resp drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x589e12c6 hinic_cmdq_detail_resp drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe0d74651 hinic_cmdq_async drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x25c51cbb hinic_set_arm_bit drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x7c21a2dc hinic_get_chip_present_flag drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x0102f950 hinic_msg_to_mgmt_sync drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x72678d69 hinic_msg_to_mgmt_async drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x8f68fe5e hinic_mbox_to_vf drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xec3ceb34 hinic_cpu_to_be32 drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb98c5b60 hinic_be32_to_cpu drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2a7f16d2 hinic_set_ci_table drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x67be703a hinic_set_root_ctxt drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xfebb6207 hinic_clean_root_ctxt drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x8a416a8a hinic_func_rx_tx_flush drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xaf83bfcd hinic_get_interrupt_cfg drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xfa24dcc7 hinic_set_interrupt_cfg drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x4c3a464b hinic_misx_intr_clear_resend_bit drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe2107ecc hinic_l2nic_reset_base drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5f770644 hinic_slq_init drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xbae23b98 hinic_slq_uninit drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xcafd1a52 hinic_slq_alloc drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x1751b5bd hinic_slq_free drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xbee8b868 hinic_slq_get_addr drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x1c9e7140 hinic_slq_get_first_pageaddr drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x13f2928b hinic_func_tmr_bitmap_set drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xf4097f14 hinic_ppf_tmr_start drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x35bbb9d7 hinic_ppf_tmr_stop drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x21828bdf hinic_ppf_ext_db_init drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc6b67f14 hinic_ppf_ext_db_deinit drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x84a1e575 hinic_migrate_report drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x4eaf0c3d hinic_get_board_info drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xf3ad003f hinic_get_hw_pf_infos drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x272392d3 hinic_get_card_present_state drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x0d09d27c hinic_dev_ver_info drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x4032cf28 hinic_vector_to_eqn drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xd34ef309 hinic_alloc_irqs drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2bd6b47d hinic_free_irq drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2083abae hinic_vector_to_irq drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x902926bd hinic_alloc_ceqs drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5d87843b hinic_free_ceq drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x9c777edd hinic_intr_type drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x724f924c hinic_support_nic drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x7ab80a37 hinic_support_roce drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2ea739f2 hinic_support_fcoe drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5692cc3f hinic_support_toe drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x3149fac0 hinic_support_iwarp drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2fa0c514 hinic_support_fc drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x335cf3f7 hinic_support_fic drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb0f36a3f hinic_support_ovs drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x372308c9 hinic_support_acl drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xae10731f hinic_support_rdma drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x97f3ccb0 hinic_support_ft drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xa06c07c9 hinic_set_toe_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xb761506f hinic_get_toe_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5f5bad65 hinic_set_fcoe_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x28c9cb6c hinic_get_fcoe_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x440122ee hinic_get_stateful_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc4234790 hinic_host_oq_id_mask drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xde6075f1 hinic_host_id drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x235dd975 hinic_host_total_func drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x1ea31bb7 hinic_func_max_qnum drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe37dd406 hinic_func_max_nic_qnum drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x76441ce6 hinic_ep_id drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xf1e43985 hinic_er_id drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x47c9cce6 hinic_physical_port_id drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x822728e3 hinic_func_max_vf drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xd96e508d hinic_max_num_cos drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x7a825c16 hinic_cos_valid_bitmap drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x4d7aeca4 hinic_net_port_mode drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x3e0a4d63 hinic_get_func_mode drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xf1a532ae hinic_sm_ctr_rd32 drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x29812d00 hinic_sm_ctr_rd32_clear drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x0c0a5ebb hinic_dbg_lt_rd_16byte drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xcbef74fe hinic_dbg_lt_wr_16byte_mask drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x8233d382 hinic_api_csr_rd32 drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x99d81171 hinic_api_csr_wr32 drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xbbc50884 hinic_api_csr_rd64 drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x26cc17ed hinic_get_slave_host_enable drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x36f90813 hinic_mbox_to_host_sync drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x7d6e7cc9 hinic_set_func_nic_state drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2f36c64b hinic_register_uld drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x1638c357 hinic_unregister_uld drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xf0588047 hinic_get_chip_name_by_hwdev drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x88f8f5aa hinic_get_ppf_uld_by_pdev drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc34c2537 hinic_get_netdev_by_lld drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xee24c62f hinic_get_hwdev_by_netdev drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xc0632240 hinic_get_netdev_by_pcidev drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x83217c56 hinic_attach_nic drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xebc65e8b hinic_detach_nic drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x45c85afe hinic_attach_roce drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xbdc213b5 hinic_detach_roce drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x4eec29d2 hinic_disable_nic_rss drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xd6d8dc37 hinic_enable_nic_rss drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x0d169a01 hinic_get_pci_device_id drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xe21a056b hinic_ovs_set_vf_nic_state drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x9cb957b9 hinic_ovs_set_vf_load_state drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x2427e3ae hinic_register_micro_log drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0x5e40a9f9 hinic_unregister_micro_log drivers/net/ethernet/huawei/hinic/hinic EXPORT_SYMBOL
-0xd5142688 hinic3_get_slave_host_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb515db47 hinic3_get_slave_bitmap drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x84119735 hinic3_get_chip_present_flag drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xcd4d7089 hinic3_force_complete_all drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5c0b4c01 hinic3_register_service_adapter drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf5a72701 hinic3_unregister_service_adapter drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xca094113 hinic3_get_service_adapter drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x502c74fd hinic3_event_callback drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0826859b hinic3_stateful_init drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x05f5e7bd hinic3_stateful_deinit drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb899de1d hinic3_get_card_present_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd8fee8a2 hinic3_link_event_stats drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0ec6f228 hinic3_max_pf_num drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xc6cde8c7 hinic3_fault_event_report drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd5d8ae06 hinic3_is_slave_func drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xdfd6d92b hinic3_is_master_func drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa1ea8677 hinic3_get_dev_cap drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x71615903 hinic3_vector_to_eqn drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x20473311 hinic3_alloc_irqs drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x588c62df hinic3_free_irq drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xde8b0aa8 hinic3_alloc_ceqs drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x968c4d52 hinic3_free_ceq drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x85d26b6d hinic3_support_nic drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x2406077a hinic3_support_ppa drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x100498f8 hinic3_support_migr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x780c6ad7 hinic3_support_ipsec drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe2bbfc0c hinic3_support_roce drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xde131574 hinic3_support_fc drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xef3d25b8 hinic3_support_rdma drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x97f970c7 hinic3_support_ovs drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xfa4f23c5 hinic3_support_vbs drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0b444006 hinic3_is_guest_vmsec_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe7e0fc8b hinic3_support_toe drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa387d4f8 hinic3_get_stateful_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xabd8eb95 hinic3_get_timer_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5fb9b909 hinic3_host_oq_id_mask drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9d1ce4d4 hinic3_host_id drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x53b50296 hinic3_host_total_func drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x393bdfe1 hinic3_func_max_qnum drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x872f0f9d hinic3_func_max_nic_qnum drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd4263dbb hinic3_ep_id drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x538618d8 hinic3_er_id drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xce817df8 hinic3_physical_port_id drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5972944c hinic3_func_max_vf drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb2f3dacb hinic3_cos_valid_bitmap drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb9ed4133 hinic3_host_pf_num drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x07dd84d9 hinic3_host_pf_id_start drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa46bc956 hinic3_flexq_en drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x13881ffa hinic3_get_fake_vf_info drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x7cdd1e52 hinic3_set_interrupt_cfg drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0d3cc9fc hinic3_misx_intr_clear_resend_bit drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5d4c2c0f hinic3_func_reset drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd4e4776c hinic3_set_root_ctxt drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb155f86a hinic3_clean_root_ctxt drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x12104470 hinic3_set_ppf_flr_type drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xfcda633e hinic3_set_ppf_tbl_hotreplace_flag drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb9337657 hinic3_get_mgmt_version drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb87ae395 hinic3_get_fw_version drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x361576c1 hinic3_ppf_tmr_start drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xfe4dcb6b hinic3_ppf_tmr_stop drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x91b8d891 hinic3_func_rx_tx_flush drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5aad6e3f hinic3_get_board_info drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf96e5023 hinic3_get_hw_pf_infos drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x89157c20 hinic3_set_func_svc_used_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x1d6cb1a8 hinic3_register_uld drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf3047902 hinic3_unregister_uld drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe7254246 hinic3_attach_nic drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x67845140 hinic3_detach_nic drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9d532c9b hinic3_attach_service drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x43ec6417 hinic3_detach_service drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x368e5ad6 hinic3_set_vf_load_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb4f70832 hinic3_set_vf_service_load drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x2d7fd598 hinic3_set_vf_service_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x52d9a13f uld_dev_hold drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x806976fe uld_dev_put drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0cf25b83 hinic3_get_lld_dev_by_dev_name drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf59c26c9 hinic3_get_lld_dev_by_dev_name_unsafe drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x6435e89c hinic3_get_uld_dev drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x6d4d4a2d hinic3_get_uld_dev_unsafe drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe249097c hinic3_get_ppf_lld_dev drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x83c024c4 hinic3_get_ppf_lld_dev_unsafe drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x2b63ae36 hinic3_get_chip_name drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x57bf157c hinic3_dma_zalloc_coherent_align drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xaf105986 hinic3_dma_free_coherent_align drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4f1b259b hinic3_get_heartbeat_status drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xac9d0508 hinic3_set_host_migrate_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd11904f4 hinic3_get_host_migrate_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9e09edd1 hinic3_free_db_addr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xbeaf7f47 hinic3_alloc_db_addr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x60c726fe hinic3_free_db_phy_addr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb72f478b hinic3_alloc_db_phy_addr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa1cb7502 hinic3_set_msix_auto_mask_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0c8ea91a hinic3_set_msix_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xdfb8fece hinic3_global_func_id drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x246e2977 hinic3_intr_num drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x8310ed61 hinic3_pf_id_of_vf drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x21b72b91 hinic3_pcie_itf_id drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x18f0d256 hinic3_vf_in_pf drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9eb16542 hinic3_func_type drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0238a7e0 hinic3_ceq_num drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x18e7a0a2 hinic3_glb_pf_vf_offset drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x86220543 hinic3_ppf_idx drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4028b41e hinic3_wq_create drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x362d6892 hinic3_wq_destroy drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x925d3e44 hinic3_alloc_cmd_buf drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4726aa32 hinic3_free_cmd_buf drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf154b21c hinic3_cmdq_direct_resp drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x6540226d hinic3_cmdq_detail_resp drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa6a2b128 hinic3_cos_id_detail_resp drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xc776b13a hinic3_aeq_register_hw_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x364e1a76 hinic3_aeq_unregister_hw_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd81135bf hinic3_aeq_register_swe_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4458a39c hinic3_aeq_unregister_swe_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xefb96e17 hinic3_ceq_register_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x284b0179 hinic3_ceq_unregister_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xee2c2496 hinic3_init_single_ceq_status drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xc6c25534 hinic3_get_ceq_info drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x2c595496 hinic3_get_ceq_page_phy_addr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xffea346e hinic3_set_ceq_irq_disable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0c2e14eb hinic3_register_ppf_mbox_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5925f348 hinic3_register_pf_mbox_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xaf12f5cc hinic3_register_vf_mbox_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x20e9d244 hinic3_unregister_ppf_mbox_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xc236ed87 hinic3_unregister_pf_mbox_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xc08ca025 hinic3_unregister_vf_mbox_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9d152cff hinic3_mbox_ppf_to_host drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x7dfb3e0e hinic3_mbox_to_pf drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xec2099b8 hinic3_mbox_to_vf drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xbd8c7021 hinic3_mbox_to_vf_no_ack drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa3c8738e hinic3_register_mgmt_msg_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x603121d3 hinic3_unregister_mgmt_msg_cb drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x78e82960 hinic3_msg_to_mgmt_sync drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x20b46586 hinic3_msg_to_mgmt_no_ack drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x1e7df8e1 hinic3_msg_to_mgmt_async drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x8f4e9e54 hinic3_msg_to_mgmt_api_chain_async drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x52dd6fb5 hinic3_sm_ctr_rd64 drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x45796b50 hinic3_api_csr_rd64 drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5527219d hinic3_is_multi_bm drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf2936fb1 hinic3_is_slave_host drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x3bae42e7 hinic3_is_vm_slave_host drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x98042f72 hinic3_is_bm_slave_host drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb1e50f57 hinic3_mbox_to_host_sync drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9716d6a4 hinic3_set_func_nic_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd95d3207 hinic3_get_netdev_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x7a8c68de hinic3_get_func_vroce_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4654e228 hinic3_get_mhost_func_nic_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe766e065 hinic3_bond_set_user_bitmap drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x6439066d hinic3_bond_attach drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x37a886b3 hinic3_bond_detach drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xae8dfe20 hinic3_bond_clean_user drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x3e817187 hinic3_bond_get_uplink_id drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5f5d5201 hinic3_bond_register_service_func drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf05f1d7c hinic3_bond_unregister_service_func drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xcc13b97d hinic3_bond_get_slaves drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5ab04af3 hinic3_bond_get_netdev_by_portid drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x8e0201e7 hinic3_get_hw_bond_infos drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x489de7da hinic3_get_bond_tracker_by_name drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb4dea636 hinic3_get_netdev_by_lld drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x0facf759 hinic3_get_lld_dev_by_netdev drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xb5e0f953 hinic3_set_mac drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xff3cd4d5 hinic3_del_mac drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x8aa1cf7b hinic3_set_vport_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL_GPL
-0xd904ad1d hinic3_get_dcb_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x63f27408 hinic3_get_cos_by_pri drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe9f55c2b hinic3_get_pf_dcb_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9f8e57dd hinic3_dcb_set_rq_iq_mapping drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf9d04517 hinic3_flush_qps_res drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x021be6c3 hinic3_get_fpga_phy_port_stats drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x85df7e0a hinic3_init_nic_hwdev drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x7e39304b hinic3_free_nic_hwdev drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe6f686cf hinic3_set_func_capture_en drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xaaae6ac5 hinic3_pf_set_vf_link_state drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe3d1f7a5 hinic3_set_port_enable drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x31d8a0d0 hinic3_get_phy_port_stats drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9ae8ac6a hinic3_get_speed drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x2450d7db hinic3_create_qps drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x902d4b72 hinic3_destroy_qps drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9837dfb5 hinic3_get_nic_queue drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xaaede30f hinic3_init_qp_ctxts drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL_GPL
-0xd2b23c1f hinic3_free_qp_ctxts drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL_GPL
-0xb98c250f cqm3_bloomfilter_inc drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5ed9b030 cqm3_bloomfilter_dec drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x19c44a91 cqm3_cmd_alloc drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x45990312 cqm3_cmd_free drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x88a0a118 cqm3_send_cmd_box drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xf458bdac cqm3_lb_send_cmd_box drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe95c9474 cqm3_lb_send_cmd_box_async drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x39845090 cqm3_get_db_addr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x663eb96a cqm3_ring_hardware_db drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xc522937b cqm3_ring_direct_wqe_db drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xd6c3df3e cqm3_ring_software_db drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x13a7e85e cqm3_object_qpc_mpt_create drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe825cd00 cqm3_object_recv_queue_create drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x72e15f7f cqm3_object_share_recv_queue_add_container drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xcf7c3192 cqm3_object_srq_add_container_free drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe5ecffaa cqm3_object_share_recv_queue_create drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x84d0ef6b cqm3_object_fc_srq_create drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x340f343a cqm3_object_nonrdma_queue_create drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe250fbde cqm3_object_rdma_queue_create drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x9c36eff9 cqm3_object_rdma_table_get drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4b0a0c58 cqm3_object_delete drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xe8adf07c cqm3_object_offset_addr drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa92ae4fe cqm3_object_get drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x64a0a2de cqm3_object_put drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x5704880d cqm3_object_funcid drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xc2067e5f cqm3_object_resize_alloc_new drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xee939578 cqm3_object_resize_free_new drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x1a256b0f cqm3_object_resize_free_old drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4eb92d03 cqm3_timer_base drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x75650dac cqm3_function_timer_clear drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0xa316c43c cqm3_function_hash_buf_clear drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x4783302f cqm3_srq_used_rq_container_delete drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x1bef1b04 cqm3_service_register drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x581a4d0d cqm3_service_unregister drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x3d9049fc cqm3_fake_vf_num_set drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x6895225c cqm3_need_secure_mem drivers/net/ethernet/huawei/hinic3/hinic3 EXPORT_SYMBOL
-0x7e58e0a9 edma_param_set_debug drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0x8b7ec20d kbox_get_base_addr drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0xef9d5211 kbox_get_io_len drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0x954e0407 kbox_get_base_phy_addr drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0x04ee557a bma_intf_register_int_notifier drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0x70121a37 bma_intf_unregister_int_notifier drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0x20ebbfc0 bma_intf_register_type drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0xfb3b3378 bma_intf_unregister_type drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x626da079 bma_intf_check_edma_supported drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x6614d3c7 bma_intf_check_dma_status drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x6f18d894 bma_intf_reset_dma drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x049f2792 bma_intf_clear_dma_int drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x552b483c bma_intf_start_dma drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x3da72d15 bma_intf_int_to_bmc drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x80d0c1aa bma_intf_is_link_ok drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL
-0x0979ea82 bma_cdev_recv_msg drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0x646f6c0f bma_cdev_add_msg drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0x54afb243 bma_cdev_check_recv drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0xeb9b70d5 bma_cdev_get_wait_queue drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0xc31f4223 bma_intf_set_open_status drivers/net/ethernet/huawei/bma/edma_drv/host_edma_drv EXPORT_SYMBOL_GPL
-0xbaa35511 ixgbe_xdp_locking_key drivers/net/ethernet/intel/ixgbe/ixgbe EXPORT_SYMBOL
-0x160856b0 i40e_client_device_register drivers/net/ethernet/intel/i40e/i40e EXPORT_SYMBOL_GPL
-0x987a041c i40e_client_device_unregister drivers/net/ethernet/intel/i40e/i40e EXPORT_SYMBOL_GPL
-0xd4f4cf93 iavf_register_client drivers/net/ethernet/intel/iavf/iavf EXPORT_SYMBOL
-0xe5bc0cdd iavf_unregister_client drivers/net/ethernet/intel/iavf/iavf EXPORT_SYMBOL
-0x965ff908 ice_xdp_locking_key drivers/net/ethernet/intel/ice/ice EXPORT_SYMBOL
-0x1a45efc0 ice_add_rdma_qset drivers/net/ethernet/intel/ice/ice EXPORT_SYMBOL_GPL
-0x4adddc5b ice_del_rdma_qset drivers/net/ethernet/intel/ice/ice EXPORT_SYMBOL_GPL
-0x5ae52929 ice_rdma_request_reset drivers/net/ethernet/intel/ice/ice EXPORT_SYMBOL_GPL
-0xeb9f3128 ice_rdma_update_vsi_filter drivers/net/ethernet/intel/ice/ice EXPORT_SYMBOL_GPL
-0x308d6e25 ice_get_qos_params drivers/net/ethernet/intel/ice/ice EXPORT_SYMBOL_GPL
-0xf2a4c4e1 rnpm_set_clause73_autoneg_enable drivers/net/ethernet/mucse/rnpm/rnpm EXPORT_SYMBOL
-0xde5622fb xsc_get_link_speed drivers/net/ethernet/yunsilicon/xsc/net/xsc_eth EXPORT_SYMBOL
-0x971943d7 xsc_log_level drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x46e0c822 g_xsc_pcie_no drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x53f49c95 xsc_cmd_exec drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x7ad5eda4 xsc_pci_get_vf_info drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x2fc637ae xsc_create_map_eq drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xb23613d4 xsc_destroy_unmap_eq drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xa72ca5cd xsc_eq_init drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x32284d20 xsc_eq_cleanup drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xe6976782 xsc_start_eqs drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x5f7d588d xsc_core_eq_query drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xa145a9c6 xsc_register_interface drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x7058c395 xsc_unregister_interface drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x39494dc1 xsc_attach_device drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xdccfdbaa xsc_detach_device drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xab4a8416 xsc_register_device drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x048fdc7b xsc_unregister_device drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xfae5a060 xsc_add_dev_by_protocol drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x3f24043a xsc_remove_dev_by_protocol drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x44ea84b9 xsc_get_next_phys_dev drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xc5897ed2 xsc_debugfs_root drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x4f9c291c xsc_buf_alloc drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x34afd6cd xsc_buf_free drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x3b821b67 xsc_fill_page_array drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x8f86faba xsc_fill_page_frag_array drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x04310c68 xsc_frag_buf_alloc_node drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xdc793100 xsc_frag_buf_free drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xae2b0962 xsc_db_alloc_node drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xa5a80a10 xsc_db_alloc drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x2cf52a2e xsc_db_free drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x124379ad xsc_wq_cyc_get_size drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x5bd5306b xsc_eth_cqwq_create drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xb7af0f48 xsc_eth_wq_cyc_create drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x19795b81 xsc_eth_wq_destroy drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x945176a1 xsc_core_create_cq drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x807f65d8 xsc_core_destroy_cq drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x4bc04e51 xsc_core_query_cq drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x8e1b5865 create_resource_common drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xba29bf80 destroy_resource_common drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x87222ded xsc_core_create_qp drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x2ede6495 xsc_core_destroy_qp drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xbfc1e5fb xsc_core_qp_modify drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xd79e1d7f xsc_core_qp_query drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x89ddd021 _xsc_cmd_exec drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xd5e5f621 xsc_cmd_init drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x54b38ce6 xsc_cmd_cleanup drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x01c61429 xsc_core_access_reg drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x1b974a9a xsc_set_port_caps drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x26da4571 xsc_query_module_eeprom drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x81277ae5 xsc_core_create_mkey drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xa653245d xsc_core_destroy_mkey drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x2bc54653 xsc_core_register_mr drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xa75b2ed1 xsc_core_dereg_mr drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x3ab5f3bd xsc_core_alloc_pd drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x7b64c6e0 xsc_core_dealloc_pd drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x088d2259 xsc_core_mad_ifc drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x8305e8e0 xsc_lag_add drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x1c25b429 xsc_lag_remove drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x81c3d042 mask_cpu_by_node drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x16304f28 xsc_comp_irq_get_affinity_mask drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x57a7291c xsc_vector2eqn drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x8e47a87f xsc_query_nic_vport_min_inline drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x04358fe5 xsc_query_min_inline drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xc5cf2cb0 xsc_query_other_nic_vport_mac_address drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x47a9648c xsc_query_nic_vport_mac_address drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xddc4b655 xsc_modify_other_nic_vport_mac_address drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xbabbd2fa xsc_modify_nic_vport_mac_address drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xc19ff348 xsc_query_nic_vport_mtu drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xa4570152 xsc_modify_nic_vport_mtu drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x5c545a71 xsc_query_nic_vport_mac_list drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x6859eacc xsc_modify_nic_vport_mac_list drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x7e2549a1 xsc_query_nic_vport_vlans drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xde5f3c98 xsc_modify_nic_vport_vlans drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x3b90a915 xsc_query_nic_vport_system_image_guid drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x7c4044ca xsc_query_nic_vport_node_guid drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x6c1f0afe xsc_query_nic_vport_qkey_viol_cntr drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x867aa05e xsc_query_hca_vport_gid drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x4e062fd6 xsc_query_hca_vport_pkey drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x5894dac6 xsc_query_hca_vport_context drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xe1fc961c xsc_query_hca_vport_node_guid drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x00d58d3a xsc_query_nic_vport_promisc drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x172482b9 xsc_modify_nic_vport_promisc drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xe1e0c2ca xsc_query_vport_counter drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xa93cc85e xsc_modify_hca_vport_context drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x2bd4e557 xsc_eswitch_get_total_vports drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x418657e6 xsc_eswitch_set_vport_mac drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x0eae1e73 xsc_eswitch_get_vport_config drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x09b1e985 xsc_port_ctrl_cb_reg drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0x0fa6e9ed xsc_port_ctrl_cb_dereg drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xe1591f1d xsc_alloc_pd_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x8dfb1648 xsc_destroy_pd_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xdb24a2b9 xsc_alloc_mr_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x3cabbf26 xsc_destroy_mr_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x560bb703 xsc_alloc_cq_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x02173be2 xsc_destroy_cq_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x06c146ad xsc_alloc_qp_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0xc8edc3e6 xsc_destroy_qp_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x073422c5 xsc_alloc_pct_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x4b246c72 xsc_destroy_pct_obj drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x0275e226 xsc_close_bdf_file drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL_GPL
-0x9980f40e qpts_write_one_msg drivers/net/ethernet/yunsilicon/xsc/pci/xsc_pci EXPORT_SYMBOL
-0xdddc774a mlx4_buf_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x91be45c5 mlx4_buf_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x5465eee4 mlx4_db_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x0386cdbc mlx4_db_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf1e0f537 mlx4_alloc_hwq_res drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x86f7c691 mlx4_free_hwq_res drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x5d116f16 __mlx4_cmd drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf2646639 mlx4_alloc_cmd_mailbox drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xabf56115 mlx4_free_cmd_mailbox drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x22049905 mlx4_get_active_ports drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf57125be mlx4_slave_convert_port drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xe4dd5173 mlx4_phys_to_slave_port drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x1931bbef mlx4_phys_to_slaves_pport drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xaeff05e3 mlx4_phys_to_slaves_pport_actv drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xed367aac mlx4_set_vf_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x286e600b mlx4_set_vf_vlan drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xc88466d4 mlx4_set_vf_rate drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xeaf70253 mlx4_get_slave_default_vlan drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x5e743b6d mlx4_set_vf_spoofchk drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x346f69bf mlx4_get_vf_config drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x5bca29d8 mlx4_set_vf_link_state drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x5eeb52b5 mlx4_get_counter_stats drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x3183b50a mlx4_get_vf_stats drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x95bdb9dd mlx4_vf_smi_enabled drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf499df41 mlx4_vf_get_enable_smi_admin drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x6d3090d8 mlx4_vf_set_enable_smi_admin drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x4722bb7e mlx4_cq_modify drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xca076f7f mlx4_cq_resize drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xc50b1924 mlx4_cq_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x58adfb8a mlx4_cq_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x09e35671 mlx4_gen_pkey_eqe drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xf794edd2 mlx4_gen_guid_change_eqe drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xf8ed0701 mlx4_gen_port_state_change_eqe drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x861b760a mlx4_get_slave_port_state drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x1976bae8 set_and_calc_slave_port_state drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xef1eb8db mlx4_gen_slaves_port_mgt_ev drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x5752db8f mlx4_test_async drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x7ee661e5 mlx4_test_interrupt drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xb0167d0a mlx4_is_eq_vector_valid drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x5ede99d7 mlx4_get_eqs_per_port drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x800b018f mlx4_is_eq_shared drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xd6b33a1e mlx4_get_cpu_rmap drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x45c42cce mlx4_assign_eq drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x30cbffff mlx4_eq_get_irq drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xdddc362b mlx4_release_eq drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x804724ae mlx4_get_slave_pkey_gid_tbl_len drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x5892e8e9 mlx4_INIT_PORT drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x589ee9d6 mlx4_CLOSE_PORT drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x24556d37 mlx4_config_dev_retrieval drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf87c9769 mlx4_config_vxlan_port drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xed96fe4c mlx4_config_roce_v2_port drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x95d97401 mlx4_query_diag_counters drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x1f9fc834 mlx4_wol_read drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf8e838db mlx4_wol_write drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xb10c22b3 mlx4_ACCESS_PTYS_REG drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xfd431a54 get_phv_bit drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x088cfe45 set_phv_bit drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xa73fb55b mlx4_get_is_vlan_offload_disabled drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x4f4c028f mlx4_replace_zero_macs drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xea958fc0 mlx4_SET_PORT_PRIO2TC drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xf42e07c4 mlx4_SET_PORT_SCHEDULER drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x2c5995ea mlx4_ALLOCATE_VPP_get drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xdbf752f0 mlx4_ALLOCATE_VPP_set drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x5652438f mlx4_SET_VPORT_QOS_get drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xe82502eb mlx4_SET_VPORT_QOS_set drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xa20e9f8e mlx4_register_auxiliary_driver drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x3232a139 mlx4_unregister_auxiliary_driver drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xed38652d mlx4_register_event_notifier drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x25d697d7 mlx4_unregister_event_notifier drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xe762cd53 mlx4_get_devlink_port drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xc98e26a1 mlx4_get_parav_qkey drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x6e21083f mlx4_sync_pkey_table drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xd926a232 mlx4_put_slave_node_guid drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x432e96fc mlx4_get_slave_node_guid drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x8584839a mlx4_is_slave_active drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x7fdde0b4 mlx4_handle_eth_header_mcast_prio drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xf24b875d mlx4_queue_bond_work drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x87adbdb2 mlx4_read_clock drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x569dc6c1 mlx4_get_internal_clock_params drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x690c027f mlx4_counter_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x8297438e mlx4_counter_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x959b0377 mlx4_get_default_counter_index drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xa6edc147 mlx4_set_admin_guid drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xda92a3bb mlx4_get_admin_guid drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xd4a41438 mlx4_map_sw_to_hw_steering_mode drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xea7d46d1 mlx4_map_sw_to_hw_steering_id drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x5b9a15f1 mlx4_hw_rule_sz drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x088e47ca mlx4_flow_attach drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x1bd48f20 mlx4_flow_detach drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x4884d537 mlx4_tunnel_steer_add drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xd3d51bfa mlx4_FLOW_STEERING_IB_UC_QP_RANGE drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xde09def3 mlx4_multicast_attach drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x6b704450 mlx4_multicast_detach drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x2a01f06d mlx4_flow_steer_promisc_add drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xb8671762 mlx4_flow_steer_promisc_remove drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xedd30698 mlx4_unicast_attach drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xab9a3bd3 mlx4_unicast_detach drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xfde6539a mlx4_multicast_promisc_add drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xe6e397ed mlx4_multicast_promisc_remove drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x364d2aa8 mlx4_unicast_promisc_add drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x7ef51e07 mlx4_unicast_promisc_remove drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x0087c4ca mlx4_mtt_init drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x9169a289 mlx4_mtt_cleanup drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xff9229fb mlx4_mtt_addr drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xcbbb2e3d mlx4_mr_hw_get_mpt drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x5b5cb2a0 mlx4_mr_hw_write_mpt drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x25030e70 mlx4_mr_hw_put_mpt drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xbf814403 mlx4_mr_hw_change_pd drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x9f4ec641 mlx4_mr_hw_change_access drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xd3749309 mlx4_mr_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xd6ac9242 mlx4_mr_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x99094d45 mlx4_mr_rereg_mem_cleanup drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xa0e4ef99 mlx4_mr_rereg_mem_write drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x8c15f15d mlx4_mr_enable drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf018f9a8 mlx4_write_mtt drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xddd7a8ef mlx4_buf_write_mtt drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xe473bc58 mlx4_mw_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x8776f2ba mlx4_mw_enable drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x3053a3da mlx4_mw_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x7e721134 mlx4_SYNC_TPT drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xa6eab4b2 mlx4_pd_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x672dc9b6 mlx4_pd_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xfff02422 mlx4_xrcd_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xcbf28cbd mlx4_xrcd_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x66a038e7 mlx4_uar_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x605b5739 mlx4_uar_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x3afaec99 mlx4_bf_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x555ad253 mlx4_bf_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x40d32bc3 mlx4_find_cached_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf053e0f3 __mlx4_register_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x61cf62d6 mlx4_register_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x10a2e3b8 mlx4_get_base_qpn drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x961f950a __mlx4_unregister_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x0a67ee92 mlx4_unregister_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xecba8714 __mlx4_replace_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x116429c8 mlx4_find_cached_vlan drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xf94a274e mlx4_register_vlan drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xd269a228 mlx4_unregister_vlan drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x9489a33e mlx4_get_base_gid_ix drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x7c670541 mlx4_SET_PORT_general drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x18602579 mlx4_SET_PORT_qpn_calc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xf8bf7ea8 mlx4_SET_PORT_user_mtu drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xfe057750 mlx4_SET_PORT_user_mac drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xa5b4d611 mlx4_SET_PORT_fcs_check drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xccb75d68 mlx4_SET_PORT_VXLAN drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xb13ef36c mlx4_SET_PORT_BEACON drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x97d25fe9 mlx4_SET_MCAST_FLTR drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x5fe7bf3d mlx4_get_slave_from_roce_gid drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xc89ee2ad mlx4_get_roce_gid_from_slave drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x36deebf3 mlx4_get_module_info drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0x63b87a9f mlx4_max_tc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL
-0xf4b0999f mlx4_put_qp drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x30610feb mlx4_qp_modify drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xa3eebccb mlx4_qp_reserve_range drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xa2acd495 mlx4_qp_release_range drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x43702258 mlx4_qp_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xa8119879 mlx4_update_qp drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xc7c05ac3 mlx4_qp_remove drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xa704b783 mlx4_qp_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xc657da22 mlx4_qp_query drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xb2f70d59 mlx4_qp_to_ready drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x8bf85d42 mlx4_srq_alloc drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0xe2f62f51 mlx4_srq_free drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x142c0262 mlx4_srq_arm drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x2d8600d9 mlx4_srq_query drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x694d118b mlx4_srq_lookup drivers/net/ethernet/mellanox/mlx4/mlx4_core EXPORT_SYMBOL_GPL
-0x1940f455 mlx5_core_uplink_netdev_event_replay drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xacd505c8 mlx5_core_mp_event_replay drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xb7a486ae mlx5_is_roce_on drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7694662d mlx5_vf_get_core_dev drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x41898ceb mlx5_vf_put_core_dev drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x83397354 mlx5_cmd_out_err drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x5bf799fd mlx5_cmd_check drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x76ee8853 mlx5_cmd_do drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x8f6dfef0 mlx5_cmd_exec drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xfe068d45 mlx5_cmd_exec_polling drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xab7e8e9e mlx5_cmd_init_async_ctx drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x4ef9d230 mlx5_cmd_cleanup_async_ctx drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7a6a082b mlx5_cmd_exec_cb drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x0e03b38e mlx5_debugfs_root drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x087882b6 mlx5_debugfs_get_dev_root drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x10e3309e mlx5_qp_debugfs_init drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x2d12c0f5 mlx5_qp_debugfs_cleanup drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x994c48ad mlx5_debug_qp_add drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x8a160f42 mlx5_debug_qp_remove drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xd232a658 mlx5_core_query_vendor_id drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7c2a2ddd mlx5_eq_enable drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xc78ab22b mlx5_eq_disable drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xd781fc00 mlx5_eq_create_generic drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x97fa48fb mlx5_eq_destroy_generic drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x935fc1dd mlx5_eq_get_eqe drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x46d808ad mlx5_eq_update_ci drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x8857c210 mlx5_comp_eqn_get drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xbacd0488 mlx5_comp_vectors_max drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x97f75269 mlx5_comp_vector_get_cpu drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xefd45ac9 mlx5_eq_notifier_register drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6f06006b mlx5_eq_notifier_unregister drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x06d1bc2c mlx5_get_uars_page drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x03b47d64 mlx5_put_uars_page drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x574e7de6 mlx5_alloc_bfreg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xca1f9550 mlx5_free_bfreg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xbb3f4e54 mlx5_core_attach_mcg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xda3e5171 mlx5_core_detach_mcg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x63c0b429 mlx5_create_cq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x08afd516 mlx5_core_create_cq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xa32385c3 mlx5_core_destroy_cq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7aad4267 mlx5_core_query_cq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x659d6c3f mlx5_core_modify_cq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6879fd47 mlx5_core_modify_cq_moderation drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x865575a0 mlx5_frag_buf_alloc_node drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x71984618 mlx5_frag_buf_free drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x87895ab8 mlx5_db_alloc_node drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xee04cbab mlx5_db_free drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x81aadc6a mlx5_fill_page_frag_array_perm drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x072460c4 mlx5_fill_page_frag_array drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xb6759f12 mlx5_access_reg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xbdad25d6 mlx5_core_access_reg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xf9d5f981 mlx5_set_port_caps drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xa810a7e0 mlx5_query_port_ptys drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x813bb6b2 mlx5_query_ib_port_oper drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x457fd135 mlx5_toggle_port_link drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xf082943d mlx5_set_port_admin_status drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xb7d94db6 mlx5_query_port_admin_status drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xf09d5fe7 mlx5_set_port_mtu drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x1cd814ac mlx5_query_port_max_mtu drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x5ff73ddb mlx5_query_port_oper_mtu drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x20ad42f8 mlx5_query_module_eeprom drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x98476553 mlx5_query_module_eeprom_by_page drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x1b84d542 mlx5_query_port_vl_hw_cap drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x7eea12e8 mlx5_set_port_pause drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x2862caa6 mlx5_query_port_pause drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xacc38a54 mlx5_set_port_pfc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x2f4f58ea mlx5_query_port_pfc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x46615d78 mlx5_set_port_prio_tc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x9cc31fbb mlx5_query_port_prio_tc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x9d458880 mlx5_set_port_tc_group drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xe69703f5 mlx5_query_port_tc_group drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xb981898f mlx5_set_port_tc_bw_alloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xd1e6d58e mlx5_query_port_tc_bw_alloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x05a23e69 mlx5_modify_port_ets_rate_limit drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x94a20814 mlx5_query_port_ets_rate_limit drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x575c29db mlx5_set_port_wol drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x74a5dd5e mlx5_query_port_wol drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xcf200baf mlx5_core_create_mkey drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xace2f0ea mlx5_core_destroy_mkey drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xed9f8446 mlx5_core_query_mkey drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x403049c4 mlx5_core_create_psv drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x902a9548 mlx5_core_destroy_psv drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x9f5745a4 mlx5_core_get_terminate_scatter_list_mkey drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xab563c1d mlx5_core_alloc_pd drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x06ea0672 mlx5_core_dealloc_pd drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xcdade177 mlx5_core_alloc_transport_domain drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xf9c08ac9 mlx5_core_dealloc_transport_domain drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x5709f7a3 mlx5_core_create_rq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6b6ed625 mlx5_core_modify_rq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x0e14588a mlx5_core_destroy_rq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7a5effb5 mlx5_core_query_rq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6964380c mlx5_core_modify_sq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7854119c mlx5_core_query_sq drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x3bb83e71 mlx5_core_query_sq_state drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x4a5e15f9 mlx5_core_create_tir drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7b03a0ad mlx5_core_destroy_tir drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x08ee877b mlx5_core_create_tis drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x35cc5e4d mlx5_core_modify_tis drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x53b22f5b mlx5_core_destroy_tis drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x9fbc4675 mlx5_core_create_rqt drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x8dffe657 mlx5_core_destroy_rqt drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x57b2d7de mlx5_query_nic_vport_min_inline drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x4a6e3272 mlx5_query_min_inline drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x409cf2f5 mlx5_query_nic_vport_mac_address drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xea569b78 mlx5_query_mac_address drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xfcd08cdd mlx5_modify_nic_vport_mac_address drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xc2be0335 mlx5_query_nic_vport_mtu drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xf0f4eb0f mlx5_modify_nic_vport_mtu drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x5059daec mlx5_query_nic_vport_mac_list drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x83100d3a mlx5_modify_nic_vport_mac_list drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xf24c4439 mlx5_modify_nic_vport_vlans drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x1d92efea mlx5_query_nic_vport_system_image_guid drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x41353bd9 mlx5_query_nic_vport_node_guid drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x3ca40723 mlx5_query_nic_vport_qkey_viol_cntr drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x83307d2e mlx5_query_hca_vport_gid drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x95e9f504 mlx5_query_hca_vport_pkey drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x452f09b7 mlx5_query_hca_vport_context drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x4f95dcfb mlx5_query_hca_vport_system_image_guid drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x373ccef8 mlx5_query_hca_vport_node_guid drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xfac102da mlx5_query_nic_vport_promisc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x3376ef65 mlx5_modify_nic_vport_promisc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x7dfac8a9 mlx5_nic_vport_update_local_lb drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x825f71a2 mlx5_nic_vport_query_local_lb drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x6576c25a mlx5_nic_vport_enable_roce drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x47922ec3 mlx5_nic_vport_disable_roce drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x1fe13403 mlx5_core_query_vport_counter drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xa2c84621 mlx5_core_modify_hca_vport_context drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xa6b9bdea mlx5_nic_vport_affiliate_multiport drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x95b45c0d mlx5_nic_vport_unaffiliate_multiport drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xabb4914b mlx5_query_nic_system_image_guid drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x16d948f4 mlx5_vport_get_other_func_cap drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x6bc82c7a mlx5_sriov_blocking_notifier_unregister drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xe37addbb mlx5_sriov_blocking_notifier_register drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x3a4d3c56 mlx5_create_flow_table drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x5d843988 mlx5_flow_table_id drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xf121416c mlx5_create_lag_demux_flow_table drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xe53c2866 mlx5_create_auto_grouped_flow_table drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x00e7a5c3 mlx5_create_flow_group drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xae7d3b54 mlx5_add_flow_rules drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xdfe5d197 mlx5_del_flow_rules drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x05b616b7 mlx5_destroy_flow_table drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x99366ebb mlx5_destroy_flow_group drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x3e717151 mlx5_get_fdb_sub_ns drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xbd624e93 mlx5_get_flow_namespace drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x0b81e07f mlx5_fs_add_rx_underlay_qpn drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xfb8d881b mlx5_fs_remove_rx_underlay_qpn drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x68925bea mlx5_modify_header_alloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x99852805 mlx5_modify_header_dealloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xf7a034bb mlx5_packet_reformat_alloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xc97c9ef0 mlx5_packet_reformat_dealloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x32dc0f70 mlx5_msix_alloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x26492834 mlx5_msix_free drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xdcc8c8d2 mlx5_fc_create drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x96eb2c99 mlx5_fc_id drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6765129f mlx5_fc_destroy drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x08aaa594 mlx5_fc_query drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x4857234b mlx5_rl_is_in_range drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x61492bb7 mlx5_rl_are_equal drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x0e228e71 mlx5_rl_add_rate_raw drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x7bc49e54 mlx5_rl_remove_rate_raw drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xba99d229 mlx5_rl_add_rate drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x527e4b9b mlx5_rl_remove_rate drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xb6173a55 mlx5_cmd_create_vport_lag drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x88294db3 mlx5_cmd_destroy_vport_lag drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x25b0a487 mlx5_lag_is_roce drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xbfbe5539 mlx5_lag_is_active drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xc146d8a3 mlx5_lag_mode_is_hash drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x91bfed3e mlx5_lag_is_master drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xfb7ab03e mlx5_lag_is_sriov drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xc1a8e7b6 mlx5_lag_is_shared_fdb drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6871e197 mlx5_lag_get_roce_netdev drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x12c5ae0e mlx5_lag_get_slave_port drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x0c15f7a4 mlx5_lag_get_num_ports drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xa6283318 mlx5_lag_get_next_peer_mdev drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x16154ff8 mlx5_lag_query_cong_counters drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x3814ee93 mlx5_notifier_register drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x19882985 mlx5_notifier_unregister drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xa1a9254a mlx5_blocking_notifier_register drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x45c4d556 mlx5_blocking_notifier_unregister drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x22b79ad0 mlx5_core_reserved_gids_count drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xba6ae47c mlx5_core_roce_gid_set drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xf61d3602 mlx5_dm_sw_icm_alloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x7151ca4b mlx5_dm_sw_icm_dealloc drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0xc37e6a07 __tracepoint_mlx5_fs_add_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xb2a63fb3 __traceiter_mlx5_fs_add_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x155ee161 __SCK__tp_func_mlx5_fs_add_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6a6addc4 __tracepoint_mlx5_fs_del_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x063529f2 __traceiter_mlx5_fs_del_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xbc4a56a2 __SCK__tp_func_mlx5_fs_del_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xa2912b95 __tracepoint_mlx5_fs_add_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x01126167 __traceiter_mlx5_fs_add_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x74b1a0f3 __SCK__tp_func_mlx5_fs_add_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x0b859c56 __tracepoint_mlx5_fs_del_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x8b560b32 __traceiter_mlx5_fs_del_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xdda51730 __SCK__tp_func_mlx5_fs_del_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x61faa0b5 __tracepoint_mlx5_fs_set_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x43e4bfdd __traceiter_mlx5_fs_set_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xc5fd4453 __SCK__tp_func_mlx5_fs_set_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xf8011871 __tracepoint_mlx5_fs_del_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xca52eb54 __traceiter_mlx5_fs_del_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x5c06fc97 __SCK__tp_func_mlx5_fs_del_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xd44752a9 __tracepoint_mlx5_fs_add_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xe79294dc __traceiter_mlx5_fs_add_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x9d8a1200 __SCK__tp_func_mlx5_fs_add_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xdb622108 __SCT__tp_func_mlx5_fs_add_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x6195591f __tracepoint_mlx5_fs_del_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xf60ff42c __traceiter_mlx5_fs_del_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x285819b6 __SCK__tp_func_mlx5_fs_del_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x62dc190a __SCT__tp_func_mlx5_fs_del_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x8cfd1c72 __tracepoint_mlx5_fw drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xdce338e2 __traceiter_mlx5_fw drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x02a2e1c6 __SCK__tp_func_mlx5_fw drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xdfbc08aa __SCT__tp_func_mlx5_fw drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x9dde36ef mlx5_rsc_dump_cmd_create drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xad6815cd mlx5_rsc_dump_cmd_destroy drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x79a769ae mlx5_rsc_dump_next drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xe89a2016 mlx5_lag_is_mpesw drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x68c4c33f mlx5_eswitch_mode drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x3e9341ff mlx5_eswitch_get_encap_mode drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x0ef72087 mlx5_eswitch_get_total_vports drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL_GPL
-0x2d6fa7fe mlx5_eswitch_get_core_dev drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x8b555a44 mlx5_eswitch_add_send_to_vport_rule drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xb5b94560 mlx5_eswitch_register_vport_reps drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x4df51cf1 mlx5_eswitch_unregister_vport_reps drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x10a3cafa mlx5_eswitch_get_proto_dev drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x5081bb6c mlx5_eswitch_uplink_get_proto_dev drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x61add668 mlx5_eswitch_vport_rep drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x02a3416c mlx5_eswitch_reg_c1_loopback_enabled drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xd49d5f36 mlx5_eswitch_vport_match_metadata_enabled drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x2683b623 mlx5_eswitch_get_vport_metadata_for_match drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xd9ab2d5c mlx5_eswitch_get_vport_metadata_for_set drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xabf54fa1 mlx5_mpfs_add_mac drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xb5fb4699 mlx5_mpfs_del_mac drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x1dee2d34 mlx5_rdma_rn_get_params drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x4f80853e mlx5_fpga_sbu_conn_create drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x542f0eb8 mlx5_fpga_sbu_conn_destroy drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x3bbe861b mlx5_fpga_sbu_conn_sendmsg drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x108f6cba mlx5_fpga_mem_read drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xf8611b51 mlx5_fpga_mem_write drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0xc70107c5 mlx5_fpga_get_sbu_caps drivers/net/ethernet/mellanox/mlx5/core/mlx5_core EXPORT_SYMBOL
-0x63874d4c mlxsw_core_port_driver_priv drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x0ca34ccf mlxsw_core_max_ports drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xd21722b4 mlxsw_core_max_lag drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xbfb7df3c mlxsw_core_driver_priv drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x816ea9cf mlxsw_core_driver_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x93d0b595 mlxsw_core_driver_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x31d4ef65 mlxsw_core_bus_device_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x5cf3dd79 mlxsw_core_bus_device_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xac1074a5 mlxsw_core_skb_transmit_busy drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x32f2f969 mlxsw_core_skb_transmit drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x2e9444c4 mlxsw_core_ptp_transmitted drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x4ae54cd0 mlxsw_core_rx_listener_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xf7e47572 mlxsw_core_rx_listener_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x7e08c6e0 mlxsw_core_event_listener_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xd7a93413 mlxsw_core_event_listener_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x6ea50f43 mlxsw_core_trap_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x2b13692a mlxsw_core_trap_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x37612ffa mlxsw_core_traps_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x42697541 mlxsw_core_traps_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x090a106c mlxsw_core_trap_state_set drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x1cb8f858 mlxsw_reg_trans_query drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xdc31781e mlxsw_reg_trans_write drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x996c5d6d mlxsw_reg_trans_bulk_wait drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xd111d3e8 mlxsw_core_irq_event_handler_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x16f4221d mlxsw_core_irq_event_handler_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xbda212df mlxsw_core_irq_event_handlers_call drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xa7765e88 mlxsw_reg_query drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x8854d198 mlxsw_reg_write drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x7e7dd339 mlxsw_core_skb_receive drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xf82bdc70 mlxsw_core_lag_mapping_set drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x83fb69af mlxsw_core_lag_mapping_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x75339042 mlxsw_core_lag_mapping_clear drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x8384a5da mlxsw_core_res_valid drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x6f49e682 mlxsw_core_res_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x508923e3 mlxsw_core_port_init drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x7b0bfeec mlxsw_core_port_fini drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x23eddc68 mlxsw_core_cpu_port_init drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xff007c25 mlxsw_core_cpu_port_fini drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xe410fa26 mlxsw_core_port_netdev_link drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xea80d49b mlxsw_core_port_devlink_port_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x484489a4 mlxsw_cmd_exec drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x4f6d161b mlxsw_core_schedule_dw drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x7ca54805 mlxsw_core_schedule_work drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x19fa5852 mlxsw_core_flush_owq drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x50359cc0 mlxsw_core_kvd_sizes_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xc530eb82 mlxsw_core_resources_query drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x2c68ced3 mlxsw_core_read_frc_h drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x77d83398 mlxsw_core_read_frc_l drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x0f4a209d mlxsw_core_read_utc_sec drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x86817014 mlxsw_core_read_utc_nsec drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x94621adf mlxsw_afk_create drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x0e81c09c mlxsw_afk_destroy drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x2c53a96f mlxsw_afk_key_info_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x15801382 mlxsw_afk_key_info_put drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x3d279269 mlxsw_afk_key_info_subset drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x47041e4e mlxsw_afk_key_info_blocks_count_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x7ded8b62 mlxsw_afk_values_add_u32 drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x6bc6adb7 mlxsw_afk_values_add_buf drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x33e16dfa mlxsw_afk_encode drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xbc222a8d mlxsw_afk_clear drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x6a550c70 mlxsw_afa_create drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x9cbf026d mlxsw_afa_destroy drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x858c30d0 mlxsw_afa_block_create drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x5ff17b5c mlxsw_afa_block_destroy drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x618a30ab mlxsw_afa_block_commit drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x829e8851 mlxsw_afa_block_first_set drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x202693f0 mlxsw_afa_block_cur_set drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xdeb1dc2e mlxsw_afa_block_first_kvdl_index drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xe16986dd mlxsw_afa_block_activity_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xdc415cf1 mlxsw_afa_block_continue drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x827a2f1f mlxsw_afa_block_jump drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x43a9b87e mlxsw_afa_block_terminate drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xecab212a mlxsw_afa_cookie_lookup drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xd4f1ffac mlxsw_afa_block_append_vlan_modify drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xcaf93d5b mlxsw_afa_block_append_drop drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x07abcc0c mlxsw_afa_block_append_trap drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xb6517b2e mlxsw_afa_block_append_trap_and_forward drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xba95e074 mlxsw_afa_block_append_mirror drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x8918525c mlxsw_afa_block_append_qos_dsfield drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x39dac57e mlxsw_afa_block_append_qos_dscp drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xe6ee1b54 mlxsw_afa_block_append_qos_ecn drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x155088b6 mlxsw_afa_block_append_qos_switch_prio drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x4ba9e945 mlxsw_afa_block_append_fwd drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xd28256cf mlxsw_afa_block_append_allocated_counter drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x055b3847 mlxsw_afa_block_append_counter drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x69c561d6 mlxsw_afa_block_append_police drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x4e6b8c5f mlxsw_afa_block_append_fid_set drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x77532431 mlxsw_afa_block_append_ignore drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xd9f711ae mlxsw_afa_block_append_mcrouter drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x19a4a052 mlxsw_afa_block_append_ip drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x658de2ff mlxsw_afa_block_append_l4port drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xacc8561d mlxsw_afa_block_append_sampler drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xa25f7900 mlxsw_env_get_module_info drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x0011f076 mlxsw_env_get_module_eeprom drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xfcfca497 mlxsw_env_get_module_eeprom_by_page drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x07345d9d mlxsw_env_reset_module drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x1e93e0eb mlxsw_env_get_module_power_mode drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x5f7ffa23 mlxsw_env_set_module_power_mode drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x51b5769d mlxsw_env_module_overheat_counter_get drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x6929f2b4 mlxsw_env_module_port_map drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xb68e9fa8 mlxsw_env_module_port_unmap drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x02815b77 mlxsw_env_module_port_up drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0xed2801d4 mlxsw_env_module_port_down drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x14e17bb4 mlxsw_linecards_event_ops_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x4036254f mlxsw_linecards_event_ops_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_core EXPORT_SYMBOL
-0x734fa859 mlxsw_pci_driver_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci EXPORT_SYMBOL
-0x056ea16a mlxsw_pci_driver_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci EXPORT_SYMBOL
-0x4ea5fc31 mlxsw_i2c_driver_register drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c EXPORT_SYMBOL
-0xeedebf17 mlxsw_i2c_driver_unregister drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c EXPORT_SYMBOL
-0x358e1913 mlxfw_firmware_flash drivers/net/ethernet/mellanox/mlxfw/mlxfw EXPORT_SYMBOL
-0x72f48d15 qed_get_eth_ops drivers/net/ethernet/qlogic/qed/qed EXPORT_SYMBOL
-0x9eeeef48 qed_put_eth_ops drivers/net/ethernet/qlogic/qed/qed EXPORT_SYMBOL
-0x5efdd0e7 qed_get_fcoe_ops drivers/net/ethernet/qlogic/qed/qed EXPORT_SYMBOL
-0x992e03d0 qed_put_fcoe_ops drivers/net/ethernet/qlogic/qed/qed EXPORT_SYMBOL
-0x1f58a6d5 qed_get_iscsi_ops drivers/net/ethernet/qlogic/qed/qed EXPORT_SYMBOL
-0x4f264472 qed_put_iscsi_ops drivers/net/ethernet/qlogic/qed/qed EXPORT_SYMBOL
-0x6ea2a381 qed_get_rdma_ops drivers/net/ethernet/qlogic/qed/qed EXPORT_SYMBOL
-0xbdaee5f7 qede_rdma_register_driver drivers/net/ethernet/qlogic/qede/qede EXPORT_SYMBOL
-0xab493135 qede_rdma_unregister_driver drivers/net/ethernet/qlogic/qede/qede EXPORT_SYMBOL
-0x365d00d4 wx_phy_read_reg_mdi_c22 drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xd8a75684 wx_phy_write_reg_mdi_c22 drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xdf8d8d00 wx_phy_read_reg_mdi_c45 drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x86375cf3 wx_phy_write_reg_mdi_c45 drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x86a68626 wx_intr_enable drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xa0644855 wx_irq_disable drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x09c29122 wx_check_flash_load drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xb411379f wx_control_hw drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x19bd2d44 wx_mng_present drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xb3ac115f wx_host_interface_command drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x8e5f378b wx_read_ee_hostif drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x01e5b519 wx_read_ee_hostif_buffer drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x25eb64fe wx_init_eeprom_params drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x2391faea wx_get_mac_addr drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x8a6bfa6d wx_init_rx_addrs drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xa18a37d7 wx_mac_set_default_filter drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xc603a97d wx_flush_sw_mac_table drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xc1395f75 wx_set_mac drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x6febe24e wx_disable_rx drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xecdd97e6 wx_set_rx_mode drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x479b492d wx_change_mtu drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x73c2ec2a wx_disable_rx_queue drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x935b7792 wx_configure_rx drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x66b8209e wx_configure drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xd0e72fc0 wx_disable_pcie_master drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x73f41e47 wx_stop_adapter drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xa535355e wx_reset_misc drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x884b68e2 wx_get_pcie_msix_counts drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x2be8deaa wx_sw_init drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xb4da4873 wx_vlan_rx_add_vid drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x88a45e33 wx_vlan_rx_kill_vid drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x6071ea1f wx_fc_enable drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x1dc95df3 wx_update_stats drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xdc00fc01 wx_clear_hw_cntrs drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xe56a15b9 wx_start_hw drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x5fa331a7 wx_xmit_frame drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x46ee658b wx_napi_enable_all drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x27248b0f wx_napi_disable_all drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xa850beca wx_reset_interrupt_capability drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x80d7ba7f wx_clear_interrupt_scheme drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x87d02f9e wx_init_interrupt_scheme drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x4b3398bd wx_msix_clean_rings drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xe6be93c9 wx_free_irq drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x4e17d4fe wx_setup_isb_resources drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x0ec96be4 wx_free_isb_resources drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x54dac940 wx_misc_isb drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xfe2521be wx_configure_vectors drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x5e1d74e8 wx_clean_all_rx_rings drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x36cffcdf wx_clean_all_tx_rings drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x67a7dd58 wx_free_resources drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x41f517a8 wx_setup_resources drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x4701d36d wx_get_stats64 drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xae11a7b0 wx_set_features drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x9e17f523 wx_set_ring drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xd6b5537f wx_get_sset_count drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x762b0f65 wx_get_strings drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x2642cc83 wx_get_ethtool_stats drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xb1047c7b wx_get_mac_stats drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x9f69cb3b wx_get_pause_stats drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x6cfe17f9 wx_get_drvinfo drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x7d31f836 wx_nway_reset drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xd46e5cb4 wx_get_link_ksettings drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xc003f617 wx_set_link_ksettings drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x30fd250d wx_get_pauseparam drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x0cc758fb wx_set_pauseparam drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xcc1dd9e9 wx_get_ringparam drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xf79747fb wx_get_coalesce drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xc1381cbb wx_set_coalesce drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x217227e3 wx_get_msglevel drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x47ac77b2 wx_set_msglevel drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x399a70c1 wx_get_channels drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0xd895637b wx_set_channels drivers/net/ethernet/wangxun/libwx/libwx EXPORT_SYMBOL
-0x2eb3855d hdlc_start_xmit drivers/net/wan/hdlc EXPORT_SYMBOL
-0xe5727d07 hdlc_open drivers/net/wan/hdlc EXPORT_SYMBOL
-0xea7990e5 hdlc_close drivers/net/wan/hdlc EXPORT_SYMBOL
-0xe6de5af6 hdlc_ioctl drivers/net/wan/hdlc EXPORT_SYMBOL
-0x9fdaf450 alloc_hdlcdev drivers/net/wan/hdlc EXPORT_SYMBOL
-0x459b1e8d unregister_hdlc_device drivers/net/wan/hdlc EXPORT_SYMBOL
-0x16157750 attach_hdlc_protocol drivers/net/wan/hdlc EXPORT_SYMBOL
-0xd81cdd11 detach_hdlc_protocol drivers/net/wan/hdlc EXPORT_SYMBOL
-0x84c68a54 register_hdlc_protocol drivers/net/wan/hdlc EXPORT_SYMBOL
-0xfd365b64 unregister_hdlc_protocol drivers/net/wan/hdlc EXPORT_SYMBOL
-0x763ba5fa ath9k_hw_wait drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x63a64975 ath9k_hw_computetxtime drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xc705f3d9 ath9k_hw_init drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe2a1f6ce ar9003_get_pll_sqsum_dvc drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x9db46ac3 ath9k_hw_init_global_settings drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x4f69a3b3 ath9k_hw_deinit drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xbe5a6499 ath9k_hw_check_nav drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x261ce7dc ath9k_hw_check_alive drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x0f77dafc ath9k_hw_get_tsf_offset drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe4c46f42 ath9k_hw_reset drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x3184c427 ath9k_hw_setpower drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xae032e20 ath9k_hw_beaconinit drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xf992b30e ath9k_hw_set_sta_beacon_timers drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x4e2cd85c ath9k_hw_gpio_request_in drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x1c2ee4bd ath9k_hw_gpio_request_out drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xd9e613cf ath9k_hw_gpio_free drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x6e7d20ce ath9k_hw_gpio_get drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x09b9303b ath9k_hw_set_gpio drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x7db45549 ath9k_hw_setantenna drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x0b203fef ath9k_hw_getrxfilter drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x2f031f59 ath9k_hw_setrxfilter drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe92dea2f ath9k_hw_phy_disable drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xd4d83cfc ath9k_hw_disable drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x24936617 ath9k_hw_set_txpowerlimit drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x53009843 ath9k_hw_setopmode drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xaaac3dff ath9k_hw_setmcastfilter drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x1c674e97 ath9k_hw_write_associd drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xcd82f1d6 ath9k_hw_gettsf64 drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xd369ffad ath9k_hw_settsf64 drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x97037406 ath9k_hw_reset_tsf drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x6fc5356f ath9k_hw_set_tsfadjust drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xb8e65509 ath9k_hw_gettsf32 drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xd56ae1d5 ath_gen_timer_alloc drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x88c96026 ath9k_hw_gen_timer_start drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x07da3683 ath9k_hw_gen_timer_stop drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x32c7fbb5 ath_gen_timer_free drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xfeecfa14 ath_gen_timer_isr drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x50e9bb2a ath9k_hw_name drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x00eee489 ar9003_hw_bb_watchdog_check drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x948c473b ar9003_hw_bb_watchdog_dbg_info drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xd14292a9 ar9003_hw_disable_phy_restart drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x19e8ac9d ath9k_hw_getchan_noise drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x7d80c584 ath9k_hw_reset_calvalid drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x3f223af6 ath9k_hw_loadnf drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x8e004b6f ath9k_hw_getnf drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x1e90dd76 ath9k_hw_bstuck_nfcal drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xeab4ac15 ath9k_hw_ani_monitor drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x5ca5ae7d ath9k_hw_disable_mib_counters drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xf7bb75f4 ath9k_hw_gettxbuf drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xfe1b6a3a ath9k_hw_puttxbuf drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x385b64a4 ath9k_hw_txstart drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x7933cf08 ath9k_hw_numtxpending drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe1203d7e ath9k_hw_updatetxtriglevel drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xd2004ba4 ath9k_hw_abort_tx_dma drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x3fe683d6 ath9k_hw_stop_dma_queue drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xbace6fc3 ath9k_hw_set_txq_props drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x331eb8bd ath9k_hw_get_txq_props drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x2a2ff307 ath9k_hw_setuptxqueue drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe5644040 ath9k_hw_releasetxqueue drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xfa98b604 ath9k_hw_resettxqueue drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x22d2d15b ath9k_hw_rxprocdesc drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x00ee6986 ath9k_hw_setrxabort drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe86c81a2 ath9k_hw_putrxbuf drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x4e16e0d0 ath9k_hw_startpcureceive drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x90b5cca6 ath9k_hw_abortpcurecv drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x36b41d3c ath9k_hw_stopdmarecv drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x7aa542ba ath9k_hw_beaconq_setup drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe0cf95ce ath9k_hw_intrpend drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xb5bc0792 ath9k_hw_kill_interrupts drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x1c719435 ath9k_hw_disable_interrupts drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xa5026626 ath9k_hw_resume_interrupts drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x40bc2682 ath9k_hw_enable_interrupts drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xb5586aae ath9k_hw_set_interrupts drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xc8bc9ecf ath9k_hw_set_tx_filter drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x081e3c98 ath9k_hw_setuprxdesc drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xdcd05f52 ath9k_hw_set_rx_bufsize drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xad85896d ath9k_hw_addrxbuf_edma drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xea3a530f ath9k_hw_process_rxdesc_edma drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xa90d4093 ath9k_hw_setup_statusring drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xaa372d1c ar9003_paprd_enable drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xd6209315 ar9003_paprd_populate_single_table drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xf93ce7ea ar9003_paprd_setup_gain_table drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xccd825ac ar9003_paprd_create_curve drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x02c2e09a ar9003_paprd_init_table drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x5006add7 ar9003_paprd_is_done drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x4108c234 ar9003_is_paprd_enabled drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xb85f2c27 ath9k_hw_wow_apply_pattern drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x2509957d ath9k_hw_wow_wakeup drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x6c593d84 ath9k_hw_wow_enable drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x0905b319 ath9k_hw_init_btcoex_hw drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x5898ca10 ath9k_hw_btcoex_init_scheme drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x62babc64 ath9k_hw_btcoex_init_2wire drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xf49721ab ath9k_hw_btcoex_init_3wire drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x939ec99b ath9k_hw_btcoex_deinit drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x55276af6 ath9k_hw_btcoex_init_mci drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x4114865c ath9k_hw_btcoex_set_weight drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x2430aa81 ath9k_hw_btcoex_enable drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x3f7eee1f ath9k_hw_btcoex_disable drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x19683c33 ath9k_hw_btcoex_bt_stomp drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xacdd3837 ath9k_hw_btcoex_set_concur_txprio drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x41ef8b0a ar9003_mci_get_interrupt drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0xe91486a6 ar9003_mci_send_message drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x7ce00ac4 ar9003_mci_setup drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x3ddfeff9 ar9003_mci_cleanup drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x7d4ca9ad ar9003_mci_state drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x6304b379 ar9003_mci_get_next_gpm_offset drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x06237394 ar9003_mci_set_bt_version drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x9820c5e4 ar9003_mci_send_wlan_channels drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
-0x8d80f009 ath9k_cmn_rx_accept drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x86eab1a0 ath9k_cmn_rx_skb_postprocess drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x816daf5c ath9k_cmn_process_rate drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x6a2ff50a ath9k_cmn_process_rssi drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x26bb013a ath9k_cmn_get_hw_crypto_keytype drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x33972388 ath9k_cmn_get_channel drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xd2981357 ath9k_cmn_count_streams drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xe2605e91 ath9k_cmn_update_txpow drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xa09cefaf ath9k_cmn_init_crypto drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x114f807e ath9k_cmn_init_channels_rates drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xe9596cf4 ath9k_cmn_setup_ht_cap drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x026e0ebb ath9k_cmn_reload_chainmask drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x660dd7fa ath9k_cmn_beacon_config_sta drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x2c30074d ath9k_cmn_beacon_config_adhoc drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xd4f52e09 ath9k_cmn_beacon_config_ap drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x5a6aecbb ath9k_cmn_debug_modal_eeprom drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xadf87a1c ath9k_cmn_debug_base_eeprom drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x1a0aa030 ath9k_cmn_debug_stat_rx drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xf1359946 ath9k_cmn_debug_recv drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0x25c46bb9 ath9k_cmn_debug_phy_err drivers/net/wireless/ath/ath9k/ath9k_common EXPORT_SYMBOL
-0xb21218d4 ath10k_mac_tx_push_pending drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x145eff23 ath10k_info drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xe58ead7b ath10k_print_driver_info drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x0acf6bf0 ath10k_err drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xbc2447cf ath10k_warn drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x015e5db2 ath10k_debug_mask drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x306fca8b ath10k_core_check_dt drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xf0a71d3a ath10k_core_free_board_files drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x74fb3759 ath10k_core_fetch_board_file drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xbd603c6f ath10k_core_start_recovery drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x05aaeacc ath10k_core_napi_enable drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xf2e2a66b ath10k_core_napi_sync_disable drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x14c5d2de ath10k_core_start drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x26b3d3a7 ath10k_core_stop drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x49403ee9 ath10k_core_register drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x59fde1b4 ath10k_core_unregister drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x1f78934f ath10k_core_create drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x72b8abfe ath10k_core_destroy drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xc13f93ad ath10k_htc_notify_tx_completion drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x87af8430 ath10k_htc_tx_completion_handler drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xa506f1c9 ath10k_htc_process_trailer drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x10c4fdef ath10k_htc_rx_completion_handler drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xd8d07a70 ath10k_htt_t2h_msg_handler drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x7e6b8656 ath10k_htt_rx_pktlog_completion_handler drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x2d0a4938 ath10k_htt_rx_hl_indication drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x6799a878 ath10k_htt_txrx_compl_task drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x48190f00 ath10k_htt_hif_tx_complete drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x06e42585 ath10k_bmi_start drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xdcc1550b ath10k_bmi_read_memory drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x85a1f5e6 ath10k_coredump_get_mem_layout drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x77bffc25 ath10k_coredump_new drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x69e4eb5b ath10k_ce_send_nolock drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x546b755b __ath10k_ce_send_revert drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x7740073d ath10k_ce_send drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x68f19386 ath10k_ce_num_free_src_entries drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x4ed10e37 __ath10k_ce_rx_num_free_bufs drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x61a88afd ath10k_ce_rx_update_write_idx drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x9dacbf8b ath10k_ce_rx_post_buf drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x0e3fdd99 ath10k_ce_completed_recv_next_nolock drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x099c71f9 ath10k_ce_completed_recv_next drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x23fabb51 ath10k_ce_revoke_recv_next drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x2f8b34d0 ath10k_ce_completed_send_next_nolock drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xa74aef5e ath10k_ce_cancel_send_next drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x1174d9b4 ath10k_ce_completed_send_next drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x91ff0efa ath10k_ce_per_engine_service drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xb5afedeb ath10k_ce_per_engine_service_any drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x6e13a22b ath10k_ce_disable_interrupt drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xba19a5fb ath10k_ce_disable_interrupts drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xc804708b ath10k_ce_enable_interrupt drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xc5ca3828 ath10k_ce_enable_interrupts drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xc67a38a4 ath10k_ce_init_pipe drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x8122b1fe ath10k_ce_deinit_pipe drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0xdfbd934d ath10k_ce_free_pipe drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x966c2a90 ath10k_ce_dump_registers drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x2125937a ath10k_ce_alloc_pipe drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x6da40c18 ath10k_ce_alloc_rri drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x99424876 ath10k_ce_free_rri drivers/net/wireless/ath/ath10k/ath10k_core EXPORT_SYMBOL
-0x019d3737 ath_rxbuf_alloc drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x7d99eb6e ath_is_mybeacon drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xc856f54c ath_printk drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xb6588ba6 ath_bus_type_strings drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x4571aea8 ath_is_world_regd drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x108b188f ath_is_49ghz_allowed drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xa18f224e ath_regd_find_country_by_name drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xf30a128d ath_reg_notifier_apply drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xe8d15d9d ath_regd_init drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x0b1ab353 ath_regd_get_band_ctl drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x2369a5f6 ath_hw_setbssidmask drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x8d1b32bb ath_hw_cycle_counters_update drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x0a44345c ath_hw_get_listen_time drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xa16fc7aa ath_hw_keyreset drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x6ce32332 ath_hw_keysetmac drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xb240fb0a ath_key_config drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xe5396e0c ath_key_delete drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0x7090dcb0 dfs_pattern_detector_init drivers/net/wireless/ath/ath EXPORT_SYMBOL
-0xbfbcf2fe brcmu_pkt_buf_get_skb drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xc34528ee brcmu_pkt_buf_free_skb drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x15fa3f0f brcmu_pktq_penq drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xb240f958 brcmu_pktq_penq_head drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xc819527d brcmu_pktq_pdeq drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x3f026199 brcmu_pktq_pdeq_match drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xb972bd1a brcmu_pktq_pdeq_tail drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x92213a14 brcmu_pktq_pflush drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x2cdd2b0f brcmu_pktq_flush drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xfbe64ba5 brcmu_pktq_init drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x4c6408ed brcmu_pktq_peek_tail drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x4b27427f brcmu_pktq_mlen drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x57f5651e brcmu_pktq_mdeq drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0x1906648e brcmu_boardrev_str drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xa17c0ccf brcmu_dotrev_str drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xd6217d91 brcmu_d11_attach drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil EXPORT_SYMBOL
-0xc23db994 brcmf_set_wsec drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac EXPORT_SYMBOL_GPL BRCMFMAC
-0x81c89c7d brcmf_fil_iovar_data_set drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac EXPORT_SYMBOL_GPL BRCMFMAC
-0x4c95dd40 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac EXPORT_SYMBOL_GPL BRCMFMAC
-0xaeddefad brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac EXPORT_SYMBOL_GPL BRCMFMAC
-0xb72f05a8 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xeaa3e315 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x67b85128 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x98dcbdfd iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x9f543819 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x82dabeb6 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x341f9575 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xb9042748 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xb55f7e8d iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x1ed133da iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x0a127b43 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xa9ac5e0c iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x8568da20 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x7e84e3e1 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x7f11fd13 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xfa62b507 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x3da3be18 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x1771fe94 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xe362d170 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x85c183be iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x2fe61429 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x095ada55 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xffd6e29c __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x15f65e0e __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x0a0c07e0 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x5525f9c0 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x30524568 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x0367db3d iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x78671cd2 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x74361685 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x699bc779 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x9b887680 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x30a9cbf8 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x14280a13 iwl_trans_pcie_remove drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL
-0xd5df9015 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xd8c6bb20 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x550c8dc7 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xf27e1776 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xeb0c955d iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x13863121 iwl_fw_lookup_cmd_ver drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL
-0x443a0ac3 iwl_fw_lookup_notif_ver drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL
-0x5987fe45 iwl_fw_lookup_assert_desc drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL
-0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x05c6c8ea iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x21a3ce66 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x28e102bb iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x570da21a iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x343f3982 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x77312a9a iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x712fc741 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x1c3caefe iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x0f293a4e iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x3d7d9b4c iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x314f5e3b iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x8bf0faf6 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x7e43a8f3 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x11239fa4 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xd080ac8d iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x0aa4b74d iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x3ae16553 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x7b34007b iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x6d3e8ac5 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xf9a4237e iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x37dc0c57 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xfad18102 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x4708a8cc iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x85fa75e5 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xde2e4a88 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xd2898922 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xe026e8c1 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xbca1fa42 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x9430ed2e iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x2fb38d5b iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xa06e9c79 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x053a7e23 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xb883676e iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x877e1da2 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x4b5b29eb iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0x4afc0918 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xcf8aae0b iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi EXPORT_SYMBOL_GPL IWLWIFI
-0xa81d90aa mwifiex_queue_main_work drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xe412ab31 mwifiex_main_process drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xdbb582db mwifiex_multi_chan_resync drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xda152386 mwifiex_upload_device_dump drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x3874307a mwifiex_drv_info_dump drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x8a26a61c mwifiex_prepare_fw_dump_info drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x8190d493 mwifiex_shutdown_sw drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x9a1b2ed1 mwifiex_reinit_sw drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x005a7618 mwifiex_add_card drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xa0ff3d8d mwifiex_remove_card drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x3eeead69 _mwifiex_dbg drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x76e82e99 mwifiex_dnld_fw drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x20564d59 mwifiex_process_hs_config drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xe5a29f0b mwifiex_process_sleep_confirm_resp drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xd705533f mwifiex_init_shutdown_fw drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xd4dad9f3 mwifiex_alloc_dma_align_buf drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x20632374 mwifiex_fw_dump_event drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x746b645e mwifiex_handle_rx_packet drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x7160bbb2 mwifiex_write_data_complete drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xd736b9a1 mwifiex_deauthenticate_all drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x735b9c68 mwifiex_cancel_hs drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x5cfdd0ac mwifiex_enable_hs drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x5ca424eb mwifiex_disable_auto_ds drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x61460010 mwifiex_add_virtual_intf drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0x1f7b8258 mwifiex_del_virtual_intf drivers/net/wireless/marvell/mwifiex/mwifiex EXPORT_SYMBOL_GPL
-0xd93d7214 mt76_set_irq_mask drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x00682669 mt76_mmio_init drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x88b2b755 __mt76_poll drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x88fdb395 ____mt76_poll_msec drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xe40b66ef mt76_wcid_alloc drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x47d81213 mt76_get_min_avg_rssi drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x1ec57b4f __mt76_worker_fn drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xfa69829e __tracepoint_mac_txdone drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xacd5a7cc __traceiter_mac_txdone drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x9a173ce7 __SCK__tp_func_mac_txdone drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xbb31a266 __SCT__tp_func_mac_txdone drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x3ad873f7 __tracepoint_dev_irq drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xbda2ca82 __traceiter_dev_irq drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xacd83ec6 __SCK__tp_func_dev_irq drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xe45628cb __SCT__tp_func_dev_irq drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x7101c165 mt76_get_rxwi drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x82ea5f1e mt76_put_txwi drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x7e8a3519 mt76_put_rxwi drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x484c73bb mt76_free_pending_rxwi drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x5d20dc0a mt76_dma_wed_setup drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xeb8b8d9b mt76_dma_rx_poll drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x8c8d64de mt76_dma_attach drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x50cf1bbb mt76_dma_cleanup drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x17f568e9 mt76_rates drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xfedc108e mt76_set_stream_caps drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x3214aced mt76_alloc_phy drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xd0996229 mt76_register_phy drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xda68c017 mt76_unregister_phy drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x869b9114 mt76_create_page_pool drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x440d9544 mt76_alloc_device drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xc0858692 mt76_register_device drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x8ca90f7a mt76_unregister_device drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x2accd991 mt76_free_device drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x03444650 mt76_rx drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xa518437e mt76_has_tx_pending drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x83cec5b4 mt76_update_survey_active_time drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xe5b591f5 mt76_update_survey drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xb6ff0214 mt76_set_channel drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xe071bbe9 mt76_get_survey drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xb3a922a1 mt76_wcid_key_setup drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL
-0x327a9822 mt76_rx_signal drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL
-0x3dbde045 mt76_rx_poll_complete drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x6ebce863 __mt76_sta_remove drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x635bff58 mt76_sta_state drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x7435bc88 mt76_sta_pre_rcu_remove drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xaf1bff67 mt76_get_txpower drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x905aecc4 mt76_init_sar_power drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xe59854be mt76_get_sar_power drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xc37c5087 mt76_csa_finish drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xf1d2cf4b mt76_csa_check drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x1352754c mt76_set_tim drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x88d25b22 mt76_insert_ccmp_hdr drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xd8cb0323 mt76_get_rate drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x3255c30f mt76_sw_scan drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xab45e512 mt76_sw_scan_complete drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x77dcb433 mt76_get_antenna drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xd87d7f2b mt76_init_queue drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x5a313518 mt76_calculate_default_rate drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xab9d88b8 mt76_ethtool_worker drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xfdb5d7f0 mt76_ethtool_page_pool_stats drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x6e1b7698 mt76_phy_dfs_state drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x014f528d mt76_queues_read drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xca9aa339 mt76_seq_puts_array drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x0de19720 mt76_register_debugfs_fops drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x305f6031 mt76_get_of_eeprom drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x01248e97 mt76_eeprom_override drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x2cee4f1a mt76_get_rate_power_limits drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x76edbe91 mt76_eeprom_init drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x5bb1c5f7 mt76_tx_check_agg_ssn drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xd0ced242 mt76_tx_status_lock drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x37aef61f mt76_tx_status_unlock drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x74f7c61a mt76_tx_status_skb_done drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x63ac4617 mt76_tx_status_skb_add drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x32416495 mt76_tx_status_skb_get drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x9f9263ff mt76_tx_status_check drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xc9d33514 __mt76_tx_complete_skb drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x05579093 mt76_tx drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x4f45bc7f mt76_release_buffered_frames drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x3a51fde7 mt76_txq_schedule drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x0148e345 mt76_txq_schedule_all drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xd529ea3c mt76_tx_worker_run drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x46ddca7a mt76_stop_tx_queues drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x3cdfd6c6 mt76_wake_tx_queue drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xc6634315 mt76_ac_to_hwq drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x5bf073f4 mt76_skb_adjust_pad drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xc65aace2 mt76_queue_tx_complete drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x1c82dcea __mt76_set_tx_blocked drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x4e2f3044 mt76_token_consume drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x1d393a56 mt76_rx_token_consume drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x50540b5d mt76_token_release drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xdc533fda mt76_rx_token_release drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xf059d18d mt76_rx_aggr_start drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x0bbd935f mt76_rx_aggr_stop drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xa28d5d35 __mt76_mcu_msg_alloc drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xfc53b28c mt76_mcu_get_response drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x9b838d79 mt76_mcu_rx_event drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xe8508863 mt76_mcu_send_and_get_msg drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xbfa30b03 mt76_mcu_skb_send_and_get_msg drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x20992a84 __mt76_mcu_send_firmware drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0x73ccfe04 mt76_pci_disable_aspm drivers/net/wireless/mediatek/mt76/mt76 EXPORT_SYMBOL_GPL
-0xe47ffae5 __mt76u_vendor_request drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x7a00eb92 mt76u_vendor_request drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x4c3ead33 ___mt76u_rr drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x4cfa6120 ___mt76u_wr drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x9b56f7be mt76u_read_copy drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x919b2b99 mt76u_single_wr drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0xc01b889f mt76u_alloc_mcu_queue drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x4e0d6aa9 mt76u_stop_rx drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x9ce3d739 mt76u_resume_rx drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0xf55b3400 mt76u_stop_tx drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x58a743b5 mt76u_queues_deinit drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x09ba74cf mt76u_alloc_queues drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0xf7ade073 __mt76u_init drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x0f4e0452 mt76u_init drivers/net/wireless/mediatek/mt76/mt76-usb EXPORT_SYMBOL_GPL
-0x5bd84fd5 mt76x02_rates drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x9d459e94 mt76x02_init_device drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xace658cb mt76x02_configure_filter drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xe9398dd3 mt76x02_sta_add drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x4b8f52e2 mt76x02_sta_remove drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xca14b3f7 mt76x02_add_interface drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x8696c62f mt76x02_remove_interface drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xa4347ad1 mt76x02_ampdu_action drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x135907a0 mt76x02_set_key drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x7bca6e40 mt76x02_conf_tx drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xcb600f0c mt76x02_set_tx_ackto drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xd9f13807 mt76x02_set_coverage_class drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xc1f6abbe mt76x02_set_rts_threshold drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x438a70f0 mt76x02_sta_rate_tbl_update drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xbf0815cc mt76x02_remove_hdr_pad drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x7cc13bf5 mt76x02_sw_scan_complete drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xc58d54ed mt76x02_sta_ps drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xd6c8fe90 mt76x02_bss_info_changed drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xa36e834a mt76x02_config_mac_addr_list drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x4ef8b0b8 mt76x02_mac_reset_counters drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x2444f70a mt76x02_mac_shared_key_setup drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x0e763f43 mt76x02_mac_wcid_setup drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x0169bc30 mt76x02_mac_write_txwi drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x51a61b8d mt76x02_mac_setaddr drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x90064872 mt76x02_tx_complete_skb drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x8a6d3ad7 mt76x02_update_channel drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x80467c25 mt76x02_edcca_init drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xaff0379c mt76x02_mac_cc_reset drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x8aaa97c5 mt76x02_mcu_parse_response drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x0e30c9f1 mt76x02_mcu_msg_send drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xe15e6c17 mt76x02_mcu_function_select drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x15461fd3 mt76x02_mcu_set_radio_state drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x113325fe mt76x02_mcu_calibrate drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x69b454cf mt76x02_mcu_cleanup drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x26cf8c81 mt76x02_set_ethtool_fwver drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xbb0fa6ba mt76x02_eeprom_copy drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xf602fa8c mt76x02_get_efuse_data drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x203ecbbb mt76x02_eeprom_parse_hw_cap drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x31815d0f mt76x02_ext_pa_enabled drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xa0532adb mt76x02_get_rx_gain drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xa59ee480 mt76x02_get_lna_gain drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xce6f463e mt76x02_phy_set_rxpath drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xfdc95214 mt76x02_phy_set_txdac drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xad5d3ba8 mt76x02_get_max_rate_power drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x93c479bc mt76x02_limit_rate_power drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x75fef85d mt76x02_add_rate_power_offset drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xf90f17af mt76x02_phy_set_txpower drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x4b3ff676 mt76x02_phy_set_bw drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xd327ec57 mt76x02_phy_set_band drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xeb8ea773 mt76x02_phy_adjust_vga_gain drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xe5ad046c mt76x02_init_agc_gain drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x96c32a44 mt76x02e_init_beacon_config drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x82504c40 mt76x02_dma_init drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x02dd1e21 mt76x02_rx_poll_complete drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x91d5b9ee mt76x02_irq_handler drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x9dfc3a3e mt76x02_dma_disable drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xc20322c5 mt76x02_mac_start drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xf6472e74 mt76x02_reconfig_complete drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x93fe2883 mt76x02_tx drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x02ebc666 mt76x02_queue_rx_skb drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x37cb330a mt76x02_tx_set_txpwr_auto drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xa6743ab9 mt76x02_tx_status_data drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x5ce269f5 mt76x02_tx_prepare_skb drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xf7883ceb mt76x02_init_debugfs drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xc64d9278 mt76x02_phy_dfs_adjust_agc drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xa31391a6 mt76x02_dfs_init_params drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xcea888e2 mt76x02_mac_set_beacon drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x4dee1d15 mt76x02_resync_beacon_timer drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x22622d5a mt76x02_update_beacon_iter drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xf38052c1 mt76x02_enqueue_buffered_bc drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0xba92ed39 mt76x02_init_beacon_config drivers/net/wireless/mediatek/mt76/mt76x02-lib EXPORT_SYMBOL_GPL
-0x00f95614 mt76x02u_mcu_fw_reset drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0x2fe4eb92 mt76x02u_mcu_fw_send_data drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0xc0278290 mt76x02u_init_mcu drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0xd6e71870 mt76x02u_tx_complete_skb drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0x38d42b7c mt76x02u_mac_start drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0x4299e96e mt76x02u_tx_prepare_skb drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0x9a9e0525 mt76x02u_init_beacon_config drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0xc43eebe1 mt76x02u_exit_beacon_config drivers/net/wireless/mediatek/mt76/mt76x02-usb EXPORT_SYMBOL_GPL
-0x2e31581f mt76x0_chip_onoff drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common EXPORT_SYMBOL_GPL
-0x88f29b98 mt76x0_mac_stop drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common EXPORT_SYMBOL_GPL
-0x5fe5def6 mt76x0_init_hardware drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common EXPORT_SYMBOL_GPL
-0xfb3f1bb0 mt76x0_register_device drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common EXPORT_SYMBOL_GPL
-0x786eb341 mt76x0_set_sar_specs drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common EXPORT_SYMBOL_GPL
-0xbeec4708 mt76x0_config drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common EXPORT_SYMBOL_GPL
-0xd1a48bd6 mt76x0_phy_calibrate drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common EXPORT_SYMBOL_GPL
-0x1b530b7d mt76x2_read_rx_gain drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x97ed8236 mt76x2_get_rate_power drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0xb7ba728d mt76x2_get_power_info drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x5754eb47 mt76x2_get_temp_comp drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0xa41fb850 mt76x2_eeprom_init drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0xb5e9da37 mt76x2_mac_stop drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x4c4e9fb8 mt76x2_set_sar_specs drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0xb86febd0 mt76x2_reset_wlan drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x153f4279 mt76_write_mac_initvals drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x29dc3821 mt76x2_init_txpower drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0xa7b903e1 mt76x2_apply_gain_adj drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x6d147a35 mt76x2_phy_set_txpower_regs drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0xe2ce3b4b mt76x2_phy_set_txpower drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x39d79610 mt76x2_configure_tx_delay drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x2197ed7e mt76x2_phy_tssi_compensate drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x5552998e mt76x2_phy_update_channel_gain drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x719af339 mt76x2_mcu_set_channel drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x14fcc5db mt76x2_mcu_load_cr drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x617b8435 mt76x2_mcu_init_gain drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0xec7d8592 mt76x2_mcu_tssi_comp drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common EXPORT_SYMBOL_GPL
-0x6ddaba4d rt2x00lib_get_bssidx drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x61b9784b rt2x00lib_beacondone drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x7e5d4405 rt2x00lib_pretbtt drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xaebf6f20 rt2x00lib_dmastart drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x03b51b85 rt2x00lib_dmadone drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x6ac5e241 rt2x00lib_txdone_nomatch drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x2e3efb17 rt2x00lib_txdone drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x3379efdb rt2x00lib_txdone_noinfo drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xfd24ddcf rt2x00lib_rxdone drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xfb71ddba rt2x00lib_set_mac_address drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x5f6fc7a0 rt2x00lib_probe_dev drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xf8ff8e49 rt2x00lib_remove_dev drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xb2227859 rt2x00lib_suspend drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x3d64f724 rt2x00lib_resume drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xa6e25e4a rt2x00mac_tx drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x394fb9d8 rt2x00mac_start drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x1e23e4d0 rt2x00mac_stop drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xacf09581 rt2x00mac_reconfig_complete drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x042fc95f rt2x00mac_add_interface drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xeb693893 rt2x00mac_remove_interface drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x7636ea54 rt2x00mac_config drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xdb15eed8 rt2x00mac_configure_filter drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x00102e8c rt2x00mac_set_tim drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xd23e4b10 rt2x00mac_set_key drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x2873b005 rt2x00mac_sw_scan_start drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x5e45a85f rt2x00mac_sw_scan_complete drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x3c3c0404 rt2x00mac_get_stats drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x451385e1 rt2x00mac_bss_info_changed drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xa4879aef rt2x00mac_conf_tx drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xc76c0cfa rt2x00mac_rfkill_poll drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xba1e5b0d rt2x00mac_flush drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x0a098305 rt2x00mac_set_antenna drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x4d6ad572 rt2x00mac_get_antenna drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x53efac97 rt2x00mac_get_ringparam drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x934d3409 rt2x00mac_tx_frames_pending drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x9eff4460 rt2x00queue_map_txskb drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x0fc86f55 rt2x00queue_unmap_skb drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x1315a568 rt2x00queue_for_each_entry drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xd91f06c4 rt2x00queue_get_entry drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x6bbd4655 rt2x00queue_pause_queue drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xfc63cc97 rt2x00queue_unpause_queue drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x0765f0b9 rt2x00queue_start_queue drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xdcff7ecd rt2x00queue_stop_queue drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xa0331869 rt2x00queue_flush_queue drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x241f45c7 rt2x00queue_start_queues drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x73ac6a6c rt2x00queue_stop_queues drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0xee2bc764 rt2x00queue_flush_queues drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x33d1f3c7 rt2x00debug_dump_frame drivers/net/wireless/ralink/rt2x00/rt2x00lib EXPORT_SYMBOL_GPL
-0x98a95285 rt2x00mmio_regbusy_read drivers/net/wireless/ralink/rt2x00/rt2x00mmio EXPORT_SYMBOL_GPL
-0xec3ea0c5 rt2x00mmio_rxdone drivers/net/wireless/ralink/rt2x00/rt2x00mmio EXPORT_SYMBOL_GPL
-0xeee85876 rt2x00mmio_flush_queue drivers/net/wireless/ralink/rt2x00/rt2x00mmio EXPORT_SYMBOL_GPL
-0x3108b4e7 rt2x00mmio_initialize drivers/net/wireless/ralink/rt2x00/rt2x00mmio EXPORT_SYMBOL_GPL
-0x4206326d rt2x00mmio_uninitialize drivers/net/wireless/ralink/rt2x00/rt2x00mmio EXPORT_SYMBOL_GPL
-0x7ece58b4 rt2x00pci_probe drivers/net/wireless/ralink/rt2x00/rt2x00pci EXPORT_SYMBOL_GPL
-0xdc2a0ebe rt2x00pci_remove drivers/net/wireless/ralink/rt2x00/rt2x00pci EXPORT_SYMBOL_GPL
-0x68199bab rt2x00pci_pm_ops drivers/net/wireless/ralink/rt2x00/rt2x00pci EXPORT_SYMBOL_GPL
-0x55a626f0 rt2x00usb_vendor_request drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x1998da38 rt2x00usb_vendor_req_buff_lock drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0xffd6c256 rt2x00usb_vendor_request_buff drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x5d291b2c rt2x00usb_regbusy_read drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x338ba399 rt2x00usb_register_read_async drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x0f672b7a rt2x00usb_kick_queue drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x15fb5702 rt2x00usb_flush_queue drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x5d1f0ffb rt2x00usb_watchdog drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x40690d86 rt2x00usb_disable_radio drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x1698a881 rt2x00usb_clear_entry drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x0e45d0eb rt2x00usb_initialize drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0xc04fa4f0 rt2x00usb_uninitialize drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x0fcea9b9 rt2x00usb_probe drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x655d7eed rt2x00usb_disconnect drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x9498d747 rt2x00usb_suspend drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0x9501518d rt2x00usb_resume drivers/net/wireless/ralink/rt2x00/rt2x00usb EXPORT_SYMBOL_GPL
-0xd1288808 rt2800_mcu_request drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xa020d91c rt2800_wait_csr_ready drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x79a40566 rt2800_wait_wpdma_ready drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xdfab0708 rt2800_disable_wpdma drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xfb3ed3ea rt2800_get_txwi_rxwi_size drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x730cf090 rt2800_check_firmware drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xc8b1e362 rt2800_load_firmware drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xc2dabc46 rt2800_write_tx_data drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xb5e0d223 rt2800_process_rxwi drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x07259284 rt2800_txdone_entry drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xe93afbf2 rt2800_txdone drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xf60fa332 rt2800_txstatus_timeout drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x67a7c5cd rt2800_txstatus_pending drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x75bfa8e7 rt2800_txdone_nostatus drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x10809477 rt2800_watchdog drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x64c5b9ae rt2800_write_beacon drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xfc125caa rt2800_clear_beacon drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xc2b2ab06 rt2800_rt2x00debug drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xdfc76827 rt2800_rfkill_poll drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x005296d8 rt2800_config_shared_key drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xc5e2cfc5 rt2800_config_pairwise_key drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xaf5124d2 rt2800_sta_add drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x760c54f8 rt2800_sta_remove drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x46fa742c rt2800_pre_reset_hw drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x1d90011e rt2800_config_filter drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x58f712f5 rt2800_config_intf drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xe41a394f rt2800_config_erp drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x9d29ed3d rt2800_config_ant drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x89b6f018 rt2800_gain_calibration drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x03953a40 rt2800_vco_calibration drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xa636969c rt2800_config drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x7973a94b rt2800_link_stats drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x24de9588 rt2800_reset_tuner drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x586240c4 rt2800_link_tuner drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xb431ff36 rt2800_enable_radio drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xeda6f835 rt2800_disable_radio drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x2836a51d rt2800_efuse_detect drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x3da0bc8d rt2800_read_eeprom_efuse drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x263d3196 rt2800_probe_hw drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x11690bc1 rt2800_get_key_seq drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xc786c5b5 rt2800_set_rts_threshold drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x5017e62c rt2800_conf_tx drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x3784e213 rt2800_get_tsf drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x5589cb80 rt2800_ampdu_action drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0x9e1cd99a rt2800_get_survey drivers/net/wireless/ralink/rt2x00/rt2800lib EXPORT_SYMBOL_GPL
-0xc3d611a6 rt2800mmio_get_dma_done drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x95dde4ff rt2800mmio_get_txwi drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xa952065f rt2800mmio_write_tx_desc drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xb6dc7e7c rt2800mmio_fill_rxdone drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xb5faea76 rt2800mmio_pretbtt_tasklet drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x3cce962c rt2800mmio_tbtt_tasklet drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xc2c948e9 rt2800mmio_rxdone_tasklet drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xd88e46f6 rt2800mmio_autowake_tasklet drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xa77c0bcb rt2800mmio_txstatus_tasklet drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x5fa4db64 rt2800mmio_interrupt drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x2ee6e036 rt2800mmio_toggle_irq drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x8b034e71 rt2800mmio_start_queue drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xa9c3b991 rt2800mmio_kick_queue drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xcefc30ee rt2800mmio_flush_queue drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x693d4593 rt2800mmio_stop_queue drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x7f189f04 rt2800mmio_queue_init drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x7cfa17bb rt2800mmio_get_entry_state drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xb513d66a rt2800mmio_clear_entry drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0xd6aa7806 rt2800mmio_init_queues drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x66f98e69 rt2800mmio_init_registers drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x120b88e8 rt2800mmio_enable_radio drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x2b20deb0 rt2800mmio_probe_hw drivers/net/wireless/ralink/rt2x00/rt2800mmio EXPORT_SYMBOL_GPL
-0x97e05663 rtl_tid_to_ac drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x86ff5150 rtl_deinit_deferred_work drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xb3c2875b rtl_init_rfkill drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xc3683dc8 rtl_deinit_rfkill drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x7785b216 rtl_init_core drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x366ae5fd rtl_deinit_core drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xfbb9b8f8 rtl_init_rx_config drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xfefb01c7 rtl_mrate_idx_to_arfr_id drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x9ad44fa0 rtlwifi_rate_mapping drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x47462d40 rtl_get_tcb_desc drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x39138227 rtl_tx_mgmt_proc drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x003e386a rtl_action_proc drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xaf6e16ef rtl_is_special_data drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x5b212fd0 rtl_tx_ackqueue drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xc4ed2786 rtl_set_tx_report drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xec13281f rtl_tx_report_handler drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x96cc44a1 rtl_get_hal_edca_param drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xdb62a603 rtl_rx_ampdu_apply drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x89951f78 rtl_beacon_statistic drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x18db2f0f rtl_collect_scan_list drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x4fc54758 rtl_c2hcmd_enqueue drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x820f1a56 rtl_send_smps_action drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x8f33c548 rtl_phy_scan_operation_backup drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x2c54c395 rtl_recognize_peer drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x4e94cd48 rtl_global_var drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xaf8de470 rtl_cam_add_one_entry drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x412530bd rtl_cam_delete_one_entry drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x0f58094a rtl_cam_reset_all_entry drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xe86587dd rtl_cam_mark_invalid drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x4de69042 rtl_cam_empty_entry drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xc0325f2c rtl_cam_get_free_entry drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x5be0e147 rtl_cam_del_entry drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x54824f58 channel5g drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x0b038e24 channel5g_80m drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x1b945315 rtl_addr_delay drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xaa951b42 rtl_rfreg_delay drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x45dfb532 rtl_bb_delay drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x8ea60059 rtl_fw_cb drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xebedfe5f rtl_wowlan_fw_cb drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x45520f2a rtl_update_beacon_work_callback drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xc2ff5abd rtl_hal_pwrseqcmdparsing drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x925feb0e rtl_cmd_send_packet drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x4e2fb760 rtl_init_sw_leds drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x3ce74a9d rtl_ops drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x2921a4d4 rtl_btc_status_false drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xf4fa2a87 rtl_dm_diginit drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xbc29f8d7 efuse_read_1byte drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x01f3102b read_efuse_byte drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xd638e868 efuse_shadow_read drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xe825a15b rtl_efuse_shadow_map_update drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x2bc74d80 efuse_one_byte_read drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x43d19806 efuse_power_switch drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xa58a0fc3 rtl_get_hwinfo drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x8e5e2008 rtl_fw_block_write drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x6c14058b rtl_fw_page_write drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x2e5382f9 rtl_fill_dummy drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xcaa7d12f rtl_efuse_ops_init drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x720fc5c1 rtl_ps_enable_nic drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x93833b71 rtl_ps_disable_nic drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x63ad09ef rtl_ips_nic_on drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x800d4ab8 rtl_swlps_beacon drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x56855d2c rtl_lps_change_work_callback drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x640ae03f rtl_lps_enter drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x9f5470b8 rtl_lps_leave drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0xd641f284 rtl_p2p_info drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL_GPL
-0x30a956d7 rtl_query_rxpwrpercentage drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xed7c8cf2 rtl_evm_db_to_percentage drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x4082948d rtl_signal_scale_mapping drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0xaa8854bb rtl_process_phyinfo drivers/net/wireless/realtek/rtlwifi/rtlwifi EXPORT_SYMBOL
-0x795d8f51 rtl_pci_probe drivers/net/wireless/realtek/rtlwifi/rtl_pci EXPORT_SYMBOL
-0x7b5022c0 rtl_pci_disconnect drivers/net/wireless/realtek/rtlwifi/rtl_pci EXPORT_SYMBOL
-0xf2f9fc1c rtl_pci_suspend drivers/net/wireless/realtek/rtlwifi/rtl_pci EXPORT_SYMBOL
-0x4e7ea583 rtl_pci_resume drivers/net/wireless/realtek/rtlwifi/rtl_pci EXPORT_SYMBOL
-0xfaf48ff2 rtl_usb_probe drivers/net/wireless/realtek/rtlwifi/rtl_usb EXPORT_SYMBOL
-0x1317d7cd rtl_usb_disconnect drivers/net/wireless/realtek/rtlwifi/rtl_usb EXPORT_SYMBOL
-0x92ba7984 rtl_usb_suspend drivers/net/wireless/realtek/rtlwifi/rtl_usb EXPORT_SYMBOL
-0xda6986f1 rtl_usb_resume drivers/net/wireless/realtek/rtlwifi/rtl_usb EXPORT_SYMBOL
-0xbbbe97d6 dm_restorepowerindex drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL_GPL
-0x2be16a15 dm_writepowerindex drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL_GPL
-0xb47d41cb dm_savepowerindex drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL_GPL
-0x36c53db0 rtl92c_dm_write_dig drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x8d4c35a1 rtl92c_dm_init_edca_turbo drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x10572083 rtl92c_dm_check_txpower_tracking drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x27a1720a rtl92c_dm_init_rate_adaptive_mask drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x3b1e4853 rtl92c_dm_rf_saving drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x191107f7 rtl92c_dm_init drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x80a91386 rtl92c_dm_watchdog drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x52ce93e6 rtl92c_bt_rssi_state_change drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xfb67dd4e rtl92c_dm_bt_coexist drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xda225ee9 rtl92c_download_fw drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x6d902553 rtl92c_fill_h2c_cmd drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x38beb33b rtl92c_firmware_selfreset drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x8a340f86 rtl92c_set_fw_pwrmode_cmd drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x3fa6f88a rtl92c_set_fw_rsvdpagepkt drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xb957f90e rtl92c_set_fw_joinbss_report_cmd drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x9e1ef3fd rtl92c_set_p2p_ps_offload_cmd drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL_GPL
-0xc0e5c5f3 rtl92c_phy_query_bb_reg drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xc58c2bf5 rtl92c_phy_set_bb_reg drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x8bbf529f _rtl92c_phy_fw_rf_serial_read drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x5e6a906b _rtl92c_phy_fw_rf_serial_write drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x99fb19ae _rtl92c_phy_rf_serial_read drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xb6fb2fef _rtl92c_phy_rf_serial_write drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x58ce6e47 rtl92c_phy_rf_config drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x7cf662c3 _rtl92c_phy_bb8192c_config_parafile drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xbf883aa8 _rtl92c_store_pwrindex_diffrate_offset drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x5a508bea _rtl92c_phy_init_bb_rf_register_definition drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x0ce15132 rtl92c_phy_set_txpower_level drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x6f768d73 rtl92c_phy_update_txpower_dbm drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x491f6c3e _rtl92c_phy_dbm_to_txpwr_idx drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xffd8e6e0 _rtl92c_phy_txpwr_idx_to_dbm drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x2f680f81 rtl92c_phy_set_bw_mode drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x9335b828 rtl92c_phy_sw_chnl_callback drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xd1e8b46a rtl92c_phy_sw_chnl drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x5b81ef5d rtl8192_phy_check_is_legal_rfpath drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x33e18cbe rtl92c_phy_iq_calibrate drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x31cb234d rtl92c_phy_lc_calibrate drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xead3ccf8 rtl92c_phy_ap_calibrate drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x2cdc0ce0 rtl92c_phy_set_rfpath_switch drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xefbb4766 rtl92c_phy_set_io_cmd drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x63a064f8 rtl92c_phy_set_io drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x8d9c5b53 rtl92ce_phy_set_rf_on drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0x462fb542 _rtl92c_phy_set_rf_sleep drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
-0xaec2c2e9 rtl_btc_get_ops_pointer drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist EXPORT_SYMBOL
-0xf9852485 rtl8723_dm_init_dynamic_txpower drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x51dadb0e rtl8723_dm_init_edca_turbo drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x3bc820c7 rtl8723_dm_init_dynamic_bb_powersaving drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xd9774481 rtl8723_enable_fw_download drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xb3c1d9de rtl8723_write_fw drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xc64ba8b7 rtl8723ae_firmware_selfreset drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xfd4237bf rtl8723be_firmware_selfreset drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x159a8221 rtl8723_fw_free_to_go drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xb8448e74 rtl8723_download_fw drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x4a830ecb rtl8723_phy_query_bb_reg drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x0fd7a640 rtl8723_phy_set_bb_reg drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x3f5bf9c0 rtl8723_phy_calculate_bit_shift drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x35ca8b87 rtl8723_phy_rf_serial_read drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x63bb57c5 rtl8723_phy_rf_serial_write drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xef916250 rtl8723_phy_txpwr_idx_to_dbm drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x07a4d7b8 rtl8723_phy_init_bb_rf_reg_def drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x0de5d513 rtl8723_phy_path_a_fill_iqk_matrix drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xbe49288d rtl8723_save_adda_registers drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x53bf80f6 rtl8723_phy_save_mac_registers drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xfd27f647 rtl8723_phy_reload_adda_registers drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x36268291 rtl8723_phy_reload_mac_registers drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x7762c3ad rtl8723_phy_path_adda_on drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x5bbe6884 rtl8723_phy_mac_setting_calibration drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0xc2050101 rtl8723_phy_path_a_standby drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x73623041 rtl8723_phy_pi_mode_switch drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common EXPORT_SYMBOL_GPL
-0x32cb1352 rtl8152_get_version drivers/net/usb/r8152 EXPORT_SYMBOL_GPL
-0x6d4b2ed7 usbnet_cdc_update_filter drivers/net/usb/cdc_ether EXPORT_SYMBOL_GPL
-0x2f58e15b usbnet_generic_cdc_bind drivers/net/usb/cdc_ether EXPORT_SYMBOL_GPL
-0x6cfa0206 usbnet_ether_cdc_bind drivers/net/usb/cdc_ether EXPORT_SYMBOL_GPL
-0xd9d74f0c usbnet_cdc_unbind drivers/net/usb/cdc_ether EXPORT_SYMBOL_GPL
-0xab1dd7d9 usbnet_cdc_status drivers/net/usb/cdc_ether EXPORT_SYMBOL_GPL
-0x0f62d30d usbnet_cdc_bind drivers/net/usb/cdc_ether EXPORT_SYMBOL_GPL
-0xa107798d usbnet_cdc_zte_rx_fixup drivers/net/usb/cdc_ether EXPORT_SYMBOL_GPL
-0x82cee8d4 rndis_status drivers/net/usb/rndis_host EXPORT_SYMBOL_GPL
-0xf75db7a4 rndis_command drivers/net/usb/rndis_host EXPORT_SYMBOL_GPL
-0xda719cbd generic_rndis_bind drivers/net/usb/rndis_host EXPORT_SYMBOL_GPL
-0x0f16c60f rndis_unbind drivers/net/usb/rndis_host EXPORT_SYMBOL_GPL
-0x9f747a51 rndis_rx_fixup drivers/net/usb/rndis_host EXPORT_SYMBOL_GPL
-0x4c50904f rndis_tx_fixup drivers/net/usb/rndis_host EXPORT_SYMBOL_GPL
-0x2b43e07d usbnet_get_endpoints drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x60fa661b usbnet_get_ethernet_addr drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x3a49784d usbnet_status_start drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x253e4118 usbnet_status_stop drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xd5c725af usbnet_skb_return drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x82e90ce7 usbnet_update_max_qlen drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xf3e7eee4 usbnet_change_mtu drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xa6d9db98 usbnet_defer_kevent drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x15f815c3 usbnet_pause_rx drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x853cdb4c usbnet_resume_rx drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x97685b09 usbnet_purge_paused_rxq drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xecf1c279 usbnet_unlink_rx_urbs drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x9ae3f548 usbnet_stop drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x9e9aa42b usbnet_open drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x054975b6 usbnet_get_link_ksettings_mii drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xb98ba226 usbnet_get_link_ksettings_internal drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x14863c3c usbnet_set_link_ksettings_mii drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xbd73156f usbnet_get_link drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xbdfc78bc usbnet_nway_reset drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x21403ff5 usbnet_get_drvinfo drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x8ef01dcb usbnet_get_msglevel drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x466c6a91 usbnet_set_msglevel drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x3dcf10d4 usbnet_set_rx_mode drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xd388f781 usbnet_tx_timeout drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x4bfbf69d usbnet_start_xmit drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x5df6a65a usbnet_disconnect drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xdf658426 usbnet_probe drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xd458ec31 usbnet_suspend drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x2ae6dc7c usbnet_resume drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x2475dc17 usbnet_device_suggests_idle drivers/net/usb/usbnet EXPORT_SYMBOL
-0x704ccb0e usbnet_manage_power drivers/net/usb/usbnet EXPORT_SYMBOL
-0x38f2dded usbnet_link_change drivers/net/usb/usbnet EXPORT_SYMBOL
-0x39bc63f5 usbnet_read_cmd drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xbeff88c5 usbnet_write_cmd drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0xce2a0355 usbnet_read_cmd_nopm drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x82568e27 usbnet_write_cmd_nopm drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x3528f545 usbnet_write_cmd_async drivers/net/usb/usbnet EXPORT_SYMBOL_GPL
-0x5a749d61 cdc_ncm_change_mtu drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0x108a5c01 cdc_ncm_bind_common drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0xaf073ae7 cdc_ncm_unbind drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0xb88facfb cdc_ncm_select_altsetting drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0xfc0a2434 cdc_ncm_fill_tx_frame drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0x71703e59 cdc_ncm_tx_fixup drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0x5fd7c4b4 cdc_ncm_rx_verify_nth16 drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0x2e627947 cdc_ncm_rx_verify_nth32 drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0x94b0f16e cdc_ncm_rx_verify_ndp16 drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0x8cd8a690 cdc_ncm_rx_verify_ndp32 drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0x89f55fe7 cdc_ncm_rx_fixup drivers/net/usb/cdc_ncm EXPORT_SYMBOL_GPL
-0xc96ce2da sysctl_bond_broadcast_arp_or_nd drivers/net/bonding/bonding EXPORT_SYMBOL
-0xd8a772be ipvlan_count_rx drivers/net/ipvlan/ipvlan EXPORT_SYMBOL_GPL
-0xd14afa83 ipvlan_link_new drivers/net/ipvlan/ipvlan EXPORT_SYMBOL_GPL
-0x807991dd ipvlan_link_delete drivers/net/ipvlan/ipvlan EXPORT_SYMBOL_GPL
-0xe3af3ab8 ipvlan_link_setup drivers/net/ipvlan/ipvlan EXPORT_SYMBOL_GPL
-0x34241fe5 ipvlan_link_register drivers/net/ipvlan/ipvlan EXPORT_SYMBOL_GPL
-0xaa5d45e4 macsec_pn_wrapped drivers/net/macsec EXPORT_SYMBOL_GPL
-0x4f49c4fd macsec_get_real_dev drivers/net/macsec EXPORT_SYMBOL_GPL
-0x0563b9e1 macsec_netdev_is_offloaded drivers/net/macsec EXPORT_SYMBOL_GPL
-0xdbc65fbe macvlan_common_setup drivers/net/macvlan EXPORT_SYMBOL_GPL
-0xa9e26c0c macvlan_common_newlink drivers/net/macvlan EXPORT_SYMBOL_GPL
-0x1a3be710 macvlan_dellink drivers/net/macvlan EXPORT_SYMBOL_GPL
-0x22da1228 macvlan_link_register drivers/net/macvlan EXPORT_SYMBOL_GPL
-0x26b38f7f mii_link_ok drivers/net/mii EXPORT_SYMBOL
-0xc74ee38e mii_nway_restart drivers/net/mii EXPORT_SYMBOL
-0xbd3691cc mii_ethtool_gset drivers/net/mii EXPORT_SYMBOL
-0xf7f14f9a mii_ethtool_get_link_ksettings drivers/net/mii EXPORT_SYMBOL
-0x3d6cd58b mii_ethtool_sset drivers/net/mii EXPORT_SYMBOL
-0xa17c684c mii_ethtool_set_link_ksettings drivers/net/mii EXPORT_SYMBOL
-0x9e37993a mii_check_link drivers/net/mii EXPORT_SYMBOL
-0x785eec6f mii_check_media drivers/net/mii EXPORT_SYMBOL
-0x01759f56 mii_check_gmii_support drivers/net/mii EXPORT_SYMBOL
-0x9094fa01 generic_mii_ioctl drivers/net/mii EXPORT_SYMBOL
-0x60443957 mdio45_probe drivers/net/mdio EXPORT_SYMBOL
-0x3e17f466 mdio_set_flag drivers/net/mdio EXPORT_SYMBOL
-0x63e0fee5 mdio45_links_ok drivers/net/mdio EXPORT_SYMBOL
-0xb79a54ee mdio45_nway_restart drivers/net/mdio EXPORT_SYMBOL
-0xcdbdeca7 mdio45_ethtool_gset_npage drivers/net/mdio EXPORT_SYMBOL
-0x62eb612a mdio45_ethtool_ksettings_get_npage drivers/net/mdio EXPORT_SYMBOL
-0xdaceb7a6 mdio_mii_ioctl drivers/net/mdio EXPORT_SYMBOL
-0x4df172ab team_modeop_port_enter drivers/net/team/team EXPORT_SYMBOL
-0x5dbb274f team_modeop_port_change_dev_addr drivers/net/team/team EXPORT_SYMBOL
-0x51d740e7 team_options_register drivers/net/team/team EXPORT_SYMBOL
-0x476a82b4 team_options_unregister drivers/net/team/team EXPORT_SYMBOL
-0x4057a04b team_option_inst_set_change drivers/net/team/team EXPORT_SYMBOL
-0xf2c5fc55 team_options_change_check drivers/net/team/team EXPORT_SYMBOL
-0x2b524fe3 team_mode_register drivers/net/team/team EXPORT_SYMBOL
-0x475ce28a team_mode_unregister drivers/net/team/team EXPORT_SYMBOL
-0x4099f919 tun_ptr_free drivers/net/tun EXPORT_SYMBOL_GPL
-0x3c1b5a72 tun_get_socket drivers/net/tun EXPORT_SYMBOL_GPL
-0x478d74d5 tun_get_tx_ring drivers/net/tun EXPORT_SYMBOL_GPL
-0x78519c10 tap_del_queues drivers/net/tap EXPORT_SYMBOL_GPL
-0x153dae58 tap_handle_frame drivers/net/tap EXPORT_SYMBOL_GPL
-0x40c3e215 tap_get_minor drivers/net/tap EXPORT_SYMBOL_GPL
-0x51cd05ec tap_free_minor drivers/net/tap EXPORT_SYMBOL_GPL
-0xc16f0fd9 tap_get_socket drivers/net/tap EXPORT_SYMBOL_GPL
-0x3029aaf3 tap_get_ptr_ring drivers/net/tap EXPORT_SYMBOL_GPL
-0x644dead9 tap_queue_resize drivers/net/tap EXPORT_SYMBOL_GPL
-0x6201e605 tap_create_cdev drivers/net/tap EXPORT_SYMBOL_GPL
-0x9a0506f7 tap_destroy_cdev drivers/net/tap EXPORT_SYMBOL_GPL
-0xf3a27391 vxlan_fdb_find_uc drivers/net/vxlan/vxlan EXPORT_SYMBOL_GPL
-0xf117f240 vxlan_fdb_replay drivers/net/vxlan/vxlan EXPORT_SYMBOL_GPL
-0x949b1dea vxlan_fdb_clear_offload drivers/net/vxlan/vxlan EXPORT_SYMBOL_GPL
-0x73e57a14 vxlan_dev_create drivers/net/vxlan/vxlan EXPORT_SYMBOL_GPL
-0xe27da639 geneve_dev_create_fb drivers/net/geneve EXPORT_SYMBOL_GPL
-0x94c29c47 can_put_echo_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x49f2c4a8 can_get_echo_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xc84f9db5 can_free_echo_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x6ab17bbd alloc_can_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xc1bfea11 alloc_canfd_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xf5029caa alloc_canxl_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x6d895fd1 alloc_can_err_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x0584d070 can_dropped_invalid_skb drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x10d892eb can_get_state_str drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x01ac6c7e can_change_state drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x1909d9d6 can_bus_off drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x228ec287 alloc_candev_mqs drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x637f07cb free_candev drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xcda5eea3 can_change_mtu drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x0d4763e9 can_eth_ioctl_hwts drivers/net/can/dev/can-dev EXPORT_SYMBOL
-0x8325c8eb can_ethtool_op_get_ts_info_hwts drivers/net/can/dev/can-dev EXPORT_SYMBOL
-0x6454c756 open_candev drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xcff1240d close_candev drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x2c920819 register_candev drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x43b7d9a5 unregister_candev drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xcd5ae1a1 safe_candev_priv drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xf12d9387 can_fd_dlc2len drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x6047ede6 can_fd_len2dlc drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0x752f736c can_skb_get_frame_len drivers/net/can/dev/can-dev EXPORT_SYMBOL_GPL
-0xfd21d802 alloc_cc770dev drivers/net/can/cc770/cc770 EXPORT_SYMBOL_GPL
-0x5bb8b5e0 free_cc770dev drivers/net/can/cc770/cc770 EXPORT_SYMBOL_GPL
-0x4255c27f register_cc770dev drivers/net/can/cc770/cc770 EXPORT_SYMBOL_GPL
-0x91ebea2b unregister_cc770dev drivers/net/can/cc770/cc770 EXPORT_SYMBOL_GPL
-0xa36f2c09 alloc_c_can_dev drivers/net/can/c_can/c_can EXPORT_SYMBOL_GPL
-0xd325284d c_can_power_down drivers/net/can/c_can/c_can EXPORT_SYMBOL_GPL
-0xc1814167 c_can_power_up drivers/net/can/c_can/c_can EXPORT_SYMBOL_GPL
-0xf2c78186 free_c_can_dev drivers/net/can/c_can/c_can EXPORT_SYMBOL_GPL
-0x71f035eb register_c_can_dev drivers/net/can/c_can/c_can EXPORT_SYMBOL_GPL
-0xf75531d5 unregister_c_can_dev drivers/net/can/c_can/c_can EXPORT_SYMBOL_GPL
-0x49ebd0d2 sja1000_interrupt drivers/net/can/sja1000/sja1000 EXPORT_SYMBOL_GPL
-0x8b30358f alloc_sja1000dev drivers/net/can/sja1000/sja1000 EXPORT_SYMBOL_GPL
-0xcbd9dec9 free_sja1000dev drivers/net/can/sja1000/sja1000 EXPORT_SYMBOL_GPL
-0xf361b56e register_sja1000dev drivers/net/can/sja1000/sja1000 EXPORT_SYMBOL_GPL
-0x1803567a unregister_sja1000dev drivers/net/can/sja1000/sja1000 EXPORT_SYMBOL_GPL
-0xcb6ad1bb ppp_register_net_channel drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0x23137cc1 ppp_register_channel drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0xfce80a97 ppp_unregister_channel drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0xaa083e8d ppp_channel_index drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0xacd3c02f ppp_unit_number drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0x503e85a9 ppp_dev_name drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0xdb3de85b ppp_input drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0x706b5605 ppp_input_error drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0x7471211b ppp_output_wakeup drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0xa02f6482 ppp_register_compressor drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0x71c3a904 ppp_unregister_compressor drivers/net/ppp/ppp_generic EXPORT_SYMBOL
-0x5216337e register_pppox_proto drivers/net/ppp/pppox EXPORT_SYMBOL
-0xe0ff7a18 unregister_pppox_proto drivers/net/ppp/pppox EXPORT_SYMBOL
-0x33d15efd pppox_unbind_sock drivers/net/ppp/pppox EXPORT_SYMBOL
-0x03b0840c pppox_ioctl drivers/net/ppp/pppox EXPORT_SYMBOL
-0x8110ebef pppox_compat_ioctl drivers/net/ppp/pppox EXPORT_SYMBOL
-0x15f90688 slhc_init drivers/net/slip/slhc EXPORT_SYMBOL
-0x2a928918 slhc_free drivers/net/slip/slhc EXPORT_SYMBOL
-0x43f9ebc8 slhc_remember drivers/net/slip/slhc EXPORT_SYMBOL
-0xdcdc0040 slhc_compress drivers/net/slip/slhc EXPORT_SYMBOL
-0xf36f42a9 slhc_uncompress drivers/net/slip/slhc EXPORT_SYMBOL
-0x74b8e674 slhc_toss drivers/net/slip/slhc EXPORT_SYMBOL
-0x1485fbf7 net_failover_create drivers/net/net_failover EXPORT_SYMBOL_GPL
-0x79b98b81 net_failover_destroy drivers/net/net_failover EXPORT_SYMBOL_GPL
-0x502108d0 mpt_fwfault_debug drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x40eda3b5 mpt_raid_phys_disk_get_num_paths drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x1b9681e3 mpt_raid_phys_disk_pg1 drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xe6320887 mpt_set_taskmgmt_in_progress_flag drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x92cab295 mpt_clear_taskmgmt_in_progress_flag drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xb62eb830 mpt_halt_firmware drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x0d7f8a76 mpt_Soft_Hard_ResetHandler drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xfe02ea81 mpt_attach drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xfb6ac4cb mpt_detach drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x350f8b9f mpt_resume drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x4cfaf99a mpt_suspend drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xdd805159 ioc_list drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xeb42b567 mpt_register drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x981efe92 mpt_deregister drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xfd5be945 mpt_event_register drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xe6c1e126 mpt_event_deregister drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x62ea35e3 mpt_reset_register drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x610b257e mpt_reset_deregister drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xe7d45f5d mpt_device_driver_register drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x74a0134a mpt_device_driver_deregister drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xc9bf6779 mpt_get_msg_frame drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x6b326260 mpt_put_msg_frame drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xabb3740c mpt_put_msg_frame_hi_pri drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xa25a2e9f mpt_free_msg_frame drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x21a783b6 mpt_send_handshake_request drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x9fea79f8 mpt_verify_adapter drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x54b9c576 mpt_GetIocState drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x9f300244 mpt_print_ioc_summary drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x95e70c56 mpt_HardResetHandler drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xd785c773 mpt_config drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xc0b79355 mpt_findImVolumes drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x4ce699f8 mpt_alloc_fw_memory drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x4e7a882a mpt_free_fw_memory drivers/message/fusion/mptbase EXPORT_SYMBOL
-0xe4549481 mptbase_sas_persist_operation drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x87bd1983 mpt_raid_phys_disk_pg0 drivers/message/fusion/mptbase EXPORT_SYMBOL
-0x52818afd mptscsih_flush_running_cmds drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x11903ebd mptscsih_IssueTaskMgmt drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x9e9266aa mptscsih_taskmgmt_response_code drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x407a2df8 mptscsih_is_phys_disk drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x6ecfeb62 mptscsih_raid_id_to_num drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xffb4b0ce mptscsih_get_scsi_lookup drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x6ce38dbe mptscsih_host_attr_groups drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x903d10d7 mptscsih_remove drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x6aff6915 mptscsih_shutdown drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xacfb6d70 mptscsih_suspend drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xdeba4feb mptscsih_resume drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xa21cacad mptscsih_show_info drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xe9550c40 mptscsih_info drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x9eb4aac6 mptscsih_qcmd drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xd642263a mptscsih_slave_destroy drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x62caf1a6 mptscsih_slave_configure drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x23128161 mptscsih_abort drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x1a2f66c7 mptscsih_dev_reset drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x4fbd365e mptscsih_bus_reset drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xfea0c027 mptscsih_host_reset drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x95dc3430 mptscsih_bios_param drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xaf6eb74a mptscsih_io_done drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xbf4eaa6f mptscsih_taskmgmt_complete drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0xb431b6e2 mptscsih_scandv_complete drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x7d2a059f mptscsih_event_process drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x841487f0 mptscsih_ioc_reset drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x52798ab9 mptscsih_change_queue_depth drivers/message/fusion/mptscsih EXPORT_SYMBOL
-0x3a771e39 fw_core_add_descriptor drivers/firewire/firewire-core EXPORT_SYMBOL
-0x0bc6094c fw_core_remove_descriptor drivers/firewire/firewire-core EXPORT_SYMBOL
-0x493adf0b fw_schedule_bus_reset drivers/firewire/firewire-core EXPORT_SYMBOL
-0xf270e651 fw_card_initialize drivers/firewire/firewire-core EXPORT_SYMBOL
-0x1b140636 fw_card_add drivers/firewire/firewire-core EXPORT_SYMBOL
-0xe86fb5c7 fw_card_release drivers/firewire/firewire-core EXPORT_SYMBOL_GPL
-0x98776713 fw_core_remove_card drivers/firewire/firewire-core EXPORT_SYMBOL
-0x269b84c8 fw_card_read_cycle_time drivers/firewire/firewire-core EXPORT_SYMBOL_GPL
-0xe80e5087 fw_csr_iterator_init drivers/firewire/firewire-core EXPORT_SYMBOL
-0xe3fde125 fw_csr_iterator_next drivers/firewire/firewire-core EXPORT_SYMBOL
-0x6dc50487 fw_csr_string drivers/firewire/firewire-core EXPORT_SYMBOL
-0x8c81724c fw_bus_type drivers/firewire/firewire-core EXPORT_SYMBOL
-0x345be770 fw_device_enable_phys_dma drivers/firewire/firewire-core EXPORT_SYMBOL
-0x3c56ef91 fw_workqueue drivers/firewire/firewire-core EXPORT_SYMBOL
-0x7381ab13 fw_iso_buffer_init drivers/firewire/firewire-core EXPORT_SYMBOL
-0xba89f05e fw_iso_buffer_destroy drivers/firewire/firewire-core EXPORT_SYMBOL
-0x5d5779c6 fw_iso_context_create drivers/firewire/firewire-core EXPORT_SYMBOL
-0xd5729a49 fw_iso_context_destroy drivers/firewire/firewire-core EXPORT_SYMBOL
-0xb027518b fw_iso_context_start drivers/firewire/firewire-core EXPORT_SYMBOL
-0xfc9d814e fw_iso_context_queue drivers/firewire/firewire-core EXPORT_SYMBOL
-0x7f27d40a fw_iso_context_queue_flush drivers/firewire/firewire-core EXPORT_SYMBOL
-0xb360edaa fw_iso_context_flush_completions drivers/firewire/firewire-core EXPORT_SYMBOL
-0x6624cfab fw_iso_context_stop drivers/firewire/firewire-core EXPORT_SYMBOL
-0x36cf5bfc fw_iso_resource_manage drivers/firewire/firewire-core EXPORT_SYMBOL
-0x64966c11 fw_core_handle_bus_reset drivers/firewire/firewire-core EXPORT_SYMBOL
-0x21d8094f fw_cancel_transaction drivers/firewire/firewire-core EXPORT_SYMBOL
-0xdb7c3f42 __fw_send_request drivers/firewire/firewire-core EXPORT_SYMBOL_GPL
-0x7222046f fw_run_transaction drivers/firewire/firewire-core EXPORT_SYMBOL
-0xaedf84ce fw_high_memory_region drivers/firewire/firewire-core EXPORT_SYMBOL
-0x99989297 fw_core_add_address_handler drivers/firewire/firewire-core EXPORT_SYMBOL
-0x1c94078d fw_core_remove_address_handler drivers/firewire/firewire-core EXPORT_SYMBOL
-0x3c866d8a fw_fill_response drivers/firewire/firewire-core EXPORT_SYMBOL
-0xccdf3707 fw_send_response drivers/firewire/firewire-core EXPORT_SYMBOL
-0x2885fec5 fw_get_request_speed drivers/firewire/firewire-core EXPORT_SYMBOL
-0xabb5547d fw_request_get_timestamp drivers/firewire/firewire-core EXPORT_SYMBOL_GPL
-0xc6d6444a fw_core_handle_request drivers/firewire/firewire-core EXPORT_SYMBOL
-0x14e86b45 fw_core_handle_response drivers/firewire/firewire-core EXPORT_SYMBOL
-0x86468d44 fw_rcode_string drivers/firewire/firewire-core EXPORT_SYMBOL
-0x4f1c29bf cdrom_dummy_generic_packet drivers/cdrom/cdrom EXPORT_SYMBOL
-0xa1259dc9 register_cdrom drivers/cdrom/cdrom EXPORT_SYMBOL
-0xe0c5452d unregister_cdrom drivers/cdrom/cdrom EXPORT_SYMBOL
-0xa1183978 cdrom_get_media_event drivers/cdrom/cdrom EXPORT_SYMBOL
-0xdbf63414 cdrom_open drivers/cdrom/cdrom EXPORT_SYMBOL
-0x48ee7ce9 cdrom_release drivers/cdrom/cdrom EXPORT_SYMBOL
-0x7545f7de cdrom_number_of_slots drivers/cdrom/cdrom EXPORT_SYMBOL
-0x1e3098cc cdrom_check_events drivers/cdrom/cdrom EXPORT_SYMBOL
-0xbb24f607 init_cdrom_command drivers/cdrom/cdrom EXPORT_SYMBOL
-0x563994c5 cdrom_mode_sense drivers/cdrom/cdrom EXPORT_SYMBOL
-0xc18e5bca cdrom_mode_select drivers/cdrom/cdrom EXPORT_SYMBOL
-0x527873f8 cdrom_multisession drivers/cdrom/cdrom EXPORT_SYMBOL_GPL
-0x681fe8ba cdrom_read_tocentry drivers/cdrom/cdrom EXPORT_SYMBOL_GPL
-0xcc8cdf8f cdrom_get_last_written drivers/cdrom/cdrom EXPORT_SYMBOL
-0xdb127a7d cdrom_ioctl drivers/cdrom/cdrom EXPORT_SYMBOL
-0xdc81cde4 xhci_plat_probe drivers/usb/host/xhci-plat-hcd EXPORT_SYMBOL_GPL
-0xc711e6a0 xhci_plat_remove drivers/usb/host/xhci-plat-hcd EXPORT_SYMBOL_GPL
-0x46cbfd68 xhci_plat_pm_ops drivers/usb/host/xhci-plat-hcd EXPORT_SYMBOL_GPL
-0x8b35cfed usb_stor_host_template_init drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x4bc828e4 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xb9124f35 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x0d268b38 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xb955763f usb_stor_control_msg drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x53dd083d usb_stor_clear_halt drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x575343e9 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x20b176f0 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x31a23f72 usb_stor_bulk_srb drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x3f836428 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xef941e80 usb_stor_CB_transport drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x7a88fa7d usb_stor_Bulk_transport drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x7e434a04 usb_stor_CB_reset drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xd2e44076 usb_stor_Bulk_reset drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x26f54e18 usb_stor_suspend drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xe2a0b34d usb_stor_resume drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x5df2788b usb_stor_reset_resume drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x1aec5983 usb_stor_pre_reset drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x9c2d7654 usb_stor_post_reset drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xb77a89e2 fill_inquiry_response drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x8eddf2a0 usb_stor_adjust_quirks drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xceeed8d2 usb_stor_probe1 drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0xa8f8a12b usb_stor_probe2 drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x1eacae62 usb_stor_disconnect drivers/usb/storage/usb-storage EXPORT_SYMBOL_GPL USB_STORAGE
-0x07c84935 ezusb_fx1_set_reset drivers/usb/misc/ezusb EXPORT_SYMBOL_GPL
-0x8eab0295 ezusb_fx1_ihex_firmware_download drivers/usb/misc/ezusb EXPORT_SYMBOL_GPL
-0x47ea09ac usb_cdc_wdm_register drivers/usb/class/cdc-wdm EXPORT_SYMBOL
-0x986adff9 usb_serial_claim_interface drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0xc4b764d7 usb_serial_port_softint drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0xf94ea773 usb_serial_suspend drivers/usb/serial/usbserial EXPORT_SYMBOL
-0x93df141b usb_serial_resume drivers/usb/serial/usbserial EXPORT_SYMBOL
-0x7c75fe16 usb_serial_register_drivers drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x8e69118c usb_serial_deregister_drivers drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x38889c5a usb_serial_generic_open drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x99247c4c usb_serial_generic_close drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x2e1cde0a usb_serial_generic_write_start drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x132cdf9b usb_serial_generic_write drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x0ba56808 usb_serial_generic_chars_in_buffer drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0xc8ee6d4e usb_serial_generic_wait_until_sent drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x4232b86d usb_serial_generic_submit_read_urbs drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0xc073c93f usb_serial_generic_process_read_urb drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x134d6ae1 usb_serial_generic_read_bulk_callback drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0xd69c215c usb_serial_generic_write_bulk_callback drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x06f5bbdf usb_serial_generic_throttle drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x09f87860 usb_serial_generic_unthrottle drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x11f92e8c usb_serial_generic_tiocmiwait drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x43eabad2 usb_serial_generic_get_icount drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0xf98bb12b usb_serial_handle_dcd_change drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0x09216d1b usb_serial_generic_resume drivers/usb/serial/usbserial EXPORT_SYMBOL_GPL
-0xd27dab7e usb_wwan_dtr_rts drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x22b6365b usb_wwan_tiocmget drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x0f51725f usb_wwan_tiocmset drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x0fb5dbf5 usb_wwan_write drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0xc54ea24f usb_wwan_write_room drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x3b6585b3 usb_wwan_chars_in_buffer drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x8cda343e usb_wwan_open drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0xf3547d1c usb_wwan_close drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x7fd85172 usb_wwan_port_probe drivers/usb/serial/usb_wwan EXPORT_SYMBOL_GPL
-0xad29e0aa usb_wwan_port_remove drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x1af50d71 usb_wwan_suspend drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x5bd9dd6d usb_wwan_resume drivers/usb/serial/usb_wwan EXPORT_SYMBOL
-0x6988f7cf usbatm_usb_probe drivers/usb/atm/usbatm EXPORT_SYMBOL_GPL
-0xc3be05ca usbatm_usb_disconnect drivers/usb/atm/usbatm EXPORT_SYMBOL_GPL
-0x41dab7c6 typec_altmode_update_active drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xc598ae0c typec_altmode2port drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x354af64c typec_unregister_altmode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x889f33bc typec_partner_set_identity drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x23a87d09 typec_partner_set_pd_revision drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x52a5cb20 typec_partner_set_usb_power_delivery drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x7b39682b typec_partner_set_num_altmodes drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x9607319b typec_partner_register_altmode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xabb3ce45 typec_partner_set_svdm_version drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe4f455f2 typec_partner_usb_power_delivery_register drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x5d5b24dc typec_register_partner drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x3df23e20 typec_unregister_partner drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xae797105 typec_plug_set_num_altmodes drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xc47c2415 typec_plug_register_altmode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xdf977378 typec_register_plug drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x2eadc1c1 typec_unregister_plug drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xd4f89d15 typec_cable_get drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe2801d40 typec_cable_put drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe2cc78a9 typec_cable_is_active drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x672078a7 typec_cable_set_identity drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xf2f26d52 typec_register_cable drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x99a525fb typec_unregister_cable drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x68cf3f51 typec_port_set_usb_power_delivery drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe9d86129 typec_set_data_role drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xd15697da typec_set_pwr_role drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x720e35d4 typec_set_vconn_role drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x5a76ede0 typec_set_pwr_opmode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xf1234a8b typec_find_pwr_opmode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xa254de98 typec_find_orientation drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xeafc1eb8 typec_find_port_power_role drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x2d1e301d typec_find_power_role drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x9049491e typec_find_port_data_role drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x92fa6527 typec_set_orientation drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x123d5918 typec_get_orientation drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x353479e3 typec_set_mode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x932bea2b typec_get_negotiated_svdm_version drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xf008750e typec_get_drvdata drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x7825b23c typec_get_fw_cap drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x2a2d543c typec_port_register_altmode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xdddbba4e typec_port_register_altmodes drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x15cfbbca typec_register_port drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x678577c7 typec_unregister_port drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x59f5554c fwnode_typec_switch_get drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x86521d45 typec_switch_put drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xff2c1165 typec_switch_register drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xd2fa1286 typec_switch_set drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xdc964e56 typec_switch_unregister drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x47fd5908 typec_switch_set_drvdata drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xa31b19e5 typec_switch_get_drvdata drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe40617a2 fwnode_typec_mux_get drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xfc8df340 typec_mux_put drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x6b3d9465 typec_mux_set drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x23f355cd typec_mux_register drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x9b199a58 typec_mux_unregister drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe21a109b typec_mux_set_drvdata drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xa883436d typec_mux_get_drvdata drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x4ad49113 typec_altmode_notify drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xf9c1f949 typec_altmode_enter drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x1b6e7ee1 typec_altmode_exit drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x586a022b typec_altmode_attention drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xb3d2b372 typec_altmode_vdm drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xb1eba9e6 typec_altmode_get_partner drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x7e677d10 typec_altmode_get_plug drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x7a9bae1e typec_altmode_put_plug drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe65c92cb __typec_altmode_register_driver drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x9ad88130 typec_altmode_unregister_driver drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x784d5472 typec_match_altmode drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xdf6d14eb usb_power_delivery_register_capabilities drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xceb97c40 usb_power_delivery_unregister_capabilities drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe3cc79cd usb_power_delivery_register drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x233526e6 usb_power_delivery_unregister drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x378752ab usb_power_delivery_link_device drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x1f023744 usb_power_delivery_unlink_device drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x02038af9 fwnode_typec_retimer_get drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xe29c5417 typec_retimer_put drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x2109e657 typec_retimer_set drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xfe989212 typec_retimer_register drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x206166f3 typec_retimer_unregister drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0xf6f63549 typec_retimer_get_drvdata drivers/usb/typec/typec EXPORT_SYMBOL_GPL
-0x20ddbe73 dp_altmode_probe drivers/usb/typec/altmodes/typec_displayport EXPORT_SYMBOL_GPL
-0xa6108dde dp_altmode_remove drivers/usb/typec/altmodes/typec_displayport EXPORT_SYMBOL_GPL
-0x3b84657b tcpm_pd_transmit_complete drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xb655342c tcpm_pd_receive drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xc37b9769 tcpm_cc_change drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xceb50012 tcpm_vbus_change drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0x9e0bd753 tcpm_pd_hard_reset drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0x10ec6d2d tcpm_sink_frs drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xeb779665 tcpm_sourcing_vbus drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xd680581d tcpm_port_clean drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xda86a83d tcpm_port_is_toggling drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xea220941 tcpm_tcpc_reset drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0x113a943e tcpm_register_port drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0x76eeda4b tcpm_unregister_port drivers/usb/typec/tcpm/tcpm EXPORT_SYMBOL_GPL
-0xbe111953 tcpci_get_tcpm_port drivers/usb/typec/tcpm/tcpci EXPORT_SYMBOL_GPL
-0x6f497a3c tcpci_irq drivers/usb/typec/tcpm/tcpci EXPORT_SYMBOL_GPL
-0xfa1535e7 tcpci_register_port drivers/usb/typec/tcpm/tcpci EXPORT_SYMBOL_GPL
-0xc529e32e tcpci_unregister_port drivers/usb/typec/tcpm/tcpci EXPORT_SYMBOL_GPL
-0x17c43e3c ucsi_send_command drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0xed347288 ucsi_connector_change drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0xc399c4ce ucsi_resume drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0x27e17005 ucsi_get_drvdata drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0x1e4b1203 ucsi_set_drvdata drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0xc24b9954 ucsi_create drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0x5d4b4e25 ucsi_destroy drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0x1a2ca793 ucsi_register drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0x4a455819 ucsi_unregister drivers/usb/typec/ucsi/typec_ucsi EXPORT_SYMBOL_GPL
-0x594b7e95 input_ff_create_memless drivers/input/ff-memless EXPORT_SYMBOL_GPL
-0xd682e077 sparse_keymap_entry_from_scancode drivers/input/sparse-keymap EXPORT_SYMBOL
-0x3d09e6b8 sparse_keymap_entry_from_keycode drivers/input/sparse-keymap EXPORT_SYMBOL
-0x751dc4dd sparse_keymap_setup drivers/input/sparse-keymap EXPORT_SYMBOL
-0x6f49ca5f sparse_keymap_report_entry drivers/input/sparse-keymap EXPORT_SYMBOL
-0xcbd6c23b sparse_keymap_report_event drivers/input/sparse-keymap EXPORT_SYMBOL
-0x814b545f rmi_dbg drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x9584e508 rmi_register_transport_device drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0xde8607d8 rmi_unregister_transport_device drivers/input/rmi4/rmi_core EXPORT_SYMBOL
-0x2307e89c __rmi_register_function_handler drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x6e92ab91 rmi_unregister_function_handler drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x377c2e78 rmi_of_property_read_u32 drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x2e272f39 rmi_set_attn_data drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x5e890153 rmi_driver_suspend drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0xfcad2498 rmi_driver_resume drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x0059df7d rmi_2d_sensor_abs_process drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0xf4d6b541 rmi_2d_sensor_abs_report drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x18de2e59 rmi_2d_sensor_rel_report drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0xbf4d1256 rmi_2d_sensor_configure_input drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0x9eb60efb rmi_2d_sensor_of_probe drivers/input/rmi4/rmi_core EXPORT_SYMBOL_GPL
-0xb4ce5e3d i2c_bit_algo drivers/i2c/algos/i2c-algo-bit EXPORT_SYMBOL
-0x3137c886 i2c_bit_add_bus drivers/i2c/algos/i2c-algo-bit EXPORT_SYMBOL
-0x0dbde223 i2c_bit_add_numbered_bus drivers/i2c/algos/i2c-algo-bit EXPORT_SYMBOL
-0xfe7a00c2 i2c_pca_add_bus drivers/i2c/algos/i2c-algo-pca EXPORT_SYMBOL
-0xe2e25472 i2c_pca_add_numbered_bus drivers/i2c/algos/i2c-algo-pca EXPORT_SYMBOL
-0x89e77295 amd756_smbus drivers/i2c/busses/i2c-amd756 EXPORT_SYMBOL
-0x6e2d71cd nforce2_smbus drivers/i2c/busses/i2c-nforce2 EXPORT_SYMBOL_GPL
-0x490e52fe i2c_dw_validate_speed drivers/i2c/busses/i2c-designware-core EXPORT_SYMBOL_GPL
-0xf35bf496 i2c_dw_acpi_configure drivers/i2c/busses/i2c-designware-core EXPORT_SYMBOL_GPL
-0xd46b2535 i2c_dw_adjust_bus_speed drivers/i2c/busses/i2c-designware-core EXPORT_SYMBOL_GPL
-0xb108dca6 i2c_dw_prepare_clk drivers/i2c/busses/i2c-designware-core EXPORT_SYMBOL_GPL
-0x9b931012 i2c_dw_configure_master drivers/i2c/busses/i2c-designware-core EXPORT_SYMBOL_GPL
-0x9c0fbe9c i2c_dw_probe_master drivers/i2c/busses/i2c-designware-core EXPORT_SYMBOL_GPL
-0xc17601c5 i2c_handle_smbus_alert drivers/i2c/i2c-smbus EXPORT_SYMBOL_GPL
-0x397a035d i2c_register_spd drivers/i2c/i2c-smbus EXPORT_SYMBOL_GPL
-0x0f33384b i2c_root_adapter drivers/i2c/i2c-mux EXPORT_SYMBOL_GPL
-0xefa32fe2 i2c_mux_alloc drivers/i2c/i2c-mux EXPORT_SYMBOL_GPL
-0xcae7d2dc i2c_mux_add_adapter drivers/i2c/i2c-mux EXPORT_SYMBOL_GPL
-0x2e9628f9 i2c_mux_del_adapters drivers/i2c/i2c-mux EXPORT_SYMBOL_GPL
-0x629893a9 fc0011_attach drivers/media/tuners/fc0011 EXPORT_SYMBOL_GPL
-0x19fa9083 fc0012_attach drivers/media/tuners/fc0012 EXPORT_SYMBOL_GPL
-0x98661a03 fc0013_rc_cal_add drivers/media/tuners/fc0013 EXPORT_SYMBOL
-0x3b3169a8 fc0013_rc_cal_reset drivers/media/tuners/fc0013 EXPORT_SYMBOL
-0x84a5341a fc0013_attach drivers/media/tuners/fc0013 EXPORT_SYMBOL_GPL
-0xd66abd7e max2165_attach drivers/media/tuners/max2165 EXPORT_SYMBOL_GPL
-0x29d6b65f mc44s803_attach drivers/media/tuners/mc44s803 EXPORT_SYMBOL_GPL
-0x1e719c55 mt2060_attach drivers/media/tuners/mt2060 EXPORT_SYMBOL_GPL
-0x80e67f8c mt2063_attach drivers/media/tuners/mt2063 EXPORT_SYMBOL_GPL
-0x02e2fa4c microtune_attach drivers/media/tuners/mt20xx EXPORT_SYMBOL_GPL
-0x91befdfc mt2131_attach drivers/media/tuners/mt2131 EXPORT_SYMBOL_GPL
-0x8b36679d mt2266_attach drivers/media/tuners/mt2266 EXPORT_SYMBOL_GPL
-0xd7ef099e mxl5005s_attach drivers/media/tuners/mxl5005s EXPORT_SYMBOL_GPL
-0xd95376d7 mxl5007t_attach drivers/media/tuners/mxl5007t EXPORT_SYMBOL_GPL
-0xa69ca2ed qt1010_attach drivers/media/tuners/qt1010 EXPORT_SYMBOL_GPL
-0x40d17659 r820t_attach drivers/media/tuners/r820t EXPORT_SYMBOL_GPL
-0x3d58cfc5 simple_tuner_attach drivers/media/tuners/tuner-simple EXPORT_SYMBOL_GPL
-0x4c48939e tuners drivers/media/tuners/tuner-types EXPORT_SYMBOL
-0xc2821775 tuner_count drivers/media/tuners/tuner-types EXPORT_SYMBOL
-0xbe83f42d tda18218_attach drivers/media/tuners/tda18218 EXPORT_SYMBOL_GPL
-0x611bd535 tda18271_attach drivers/media/tuners/tda18271 EXPORT_SYMBOL_GPL
-0x83887722 tda827x_attach drivers/media/tuners/tda827x EXPORT_SYMBOL_GPL
-0x854cc7dc tda829x_attach drivers/media/tuners/tda8290 EXPORT_SYMBOL_GPL
-0x3d3860ac tda829x_probe drivers/media/tuners/tda8290 EXPORT_SYMBOL_GPL
-0x1fa57679 tda9887_attach drivers/media/tuners/tda9887 EXPORT_SYMBOL_GPL
-0x394470b6 tea5761_attach drivers/media/tuners/tea5761 EXPORT_SYMBOL_GPL
-0x44fe44d7 tea5761_autodetection drivers/media/tuners/tea5761 EXPORT_SYMBOL_GPL
-0x453aacc6 tea5767_attach drivers/media/tuners/tea5767 EXPORT_SYMBOL_GPL
-0xfaeedd37 tea5767_autodetection drivers/media/tuners/tea5767 EXPORT_SYMBOL_GPL
-0x0660a239 xc2028_attach drivers/media/tuners/xc2028 EXPORT_SYMBOL_GPL
-0x409a3adf xc4000_attach drivers/media/tuners/xc4000 EXPORT_SYMBOL_GPL
-0x3de7f13e xc5000_attach drivers/media/tuners/xc5000 EXPORT_SYMBOL_GPL
-0xfc5d3079 rc_map_get drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xb960f15c rc_map_register drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x2ed90ced rc_map_unregister drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x45a6e1f0 rc_g_keycode_from_table drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xc0b28453 rc_keyup drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x70dfd963 rc_repeat drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x82f532ad rc_keydown drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x9701b0b1 rc_keydown_notimeout drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xd8aab885 rc_allocate_device drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x05835278 rc_free_device drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xa2486e40 devm_rc_allocate_device drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x7e5f98b0 rc_register_device drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xc4fbad28 devm_rc_register_device drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xea9de86b rc_unregister_device drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x7225e76b ir_raw_event_store drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x0228e3ed ir_raw_event_store_edge drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x20ca03bc ir_raw_event_store_with_timeout drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x751892dd ir_raw_event_store_with_filter drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xae29a19a ir_raw_event_set_idle drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xc39a5c99 ir_raw_event_handle drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0xce3696f3 ir_raw_gen_manchester drivers/media/rc/rc-core EXPORT_SYMBOL
-0x2fe55cf5 ir_raw_gen_pd drivers/media/rc/rc-core EXPORT_SYMBOL
-0x7a02ee87 ir_raw_gen_pl drivers/media/rc/rc-core EXPORT_SYMBOL
-0x01098f88 ir_raw_encode_scancode drivers/media/rc/rc-core EXPORT_SYMBOL
-0xb5516017 ir_raw_encode_carrier drivers/media/rc/rc-core EXPORT_SYMBOL
-0x15025c13 ir_raw_handler_register drivers/media/rc/rc-core EXPORT_SYMBOL
-0xc86cd018 ir_raw_handler_unregister drivers/media/rc/rc-core EXPORT_SYMBOL
-0x01fa9554 lirc_scancode_event drivers/media/rc/rc-core EXPORT_SYMBOL_GPL
-0x66c0289a b2c2_flexcop_debug drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL_GPL
-0xa7a89c6f flexcop_pass_dmx_data drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xc8375583 flexcop_pass_dmx_packets drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xfca75b9b flexcop_device_kmalloc drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xdda7e547 flexcop_device_kfree drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0x5df6404d flexcop_device_initialize drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xff4c63ce flexcop_device_exit drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xd25f61d8 flexcop_i2c_request drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xf9847362 flexcop_sram_set_dest drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xf811021e flexcop_wan_set_speed drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xcfc519db flexcop_sram_ctrl drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0x9f187997 flexcop_eeprom_check_mac_addr drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xfbffd4ea flexcop_dump_reg drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0x3d957f1f flexcop_pid_feed_control drivers/media/common/b2c2/b2c2-flexcop EXPORT_SYMBOL
-0xa28d96a7 saa7146_register_extension drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0xea612428 saa7146_unregister_extension drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0xe2b60ba9 saa7146_pgtable_alloc drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0x95f2abba saa7146_pgtable_free drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0x2f6d77cc saa7146_pgtable_build_single drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0x6b76bd3f saa7146_vmalloc_build_pgtable drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0x550fe88e saa7146_vfree_destroy_pgtable drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0xd94e1bc8 saa7146_wait_for_debi_done drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0xa5b6ea35 saa7146_setgpio drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0x6966f068 saa7146_i2c_adapter_prepare drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0xe3cd9b5c saa7146_debug drivers/media/common/saa7146/saa7146 EXPORT_SYMBOL_GPL
-0x0fe8ca9c saa7146_vv_init drivers/media/common/saa7146/saa7146_vv EXPORT_SYMBOL_GPL
-0xfecc8685 saa7146_vv_release drivers/media/common/saa7146/saa7146_vv EXPORT_SYMBOL_GPL
-0xf8548f07 saa7146_register_device drivers/media/common/saa7146/saa7146_vv EXPORT_SYMBOL_GPL
-0x203d0d97 saa7146_unregister_device drivers/media/common/saa7146/saa7146_vv EXPORT_SYMBOL_GPL
-0x3069f3c3 saa7146_set_hps_source_and_sync drivers/media/common/saa7146/saa7146_vv EXPORT_SYMBOL_GPL
-0x34bf0e61 smscore_translate_msg drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x5a475adb smscore_set_board_id drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xf50389af smscore_get_board_id drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x21e36bf2 smscore_registry_getmode drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x23352fa6 smscore_register_hotplug drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x1d49ac84 smscore_unregister_hotplug drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x5373fbda smscore_register_device drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xa110ccf7 smscore_start_device drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x29fbe691 smscore_unregister_device drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xa8b8423c smscore_get_device_mode drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x2266721e smscore_onresponse drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xbbce8471 smscore_getbuffer drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xc6f73d38 smscore_putbuffer drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x52fca4e9 smscore_register_client drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xbbdb5c42 smscore_unregister_client drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x99a81ab3 smsclient_sendrequest drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x844539ae sms_get_board drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x7a192025 sms_board_event drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x4370785d sms_board_setup drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xa4dd31c8 sms_board_power drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x2468bac7 sms_board_led_feedback drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x7521790a sms_board_lna_control drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x74ee9098 sms_board_load_modules drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x37d91069 smsendian_handle_tx_message drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x45284ae9 smsendian_handle_rx_message drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0x7c576277 smsendian_handle_message_header drivers/media/common/siano/smsmdtv EXPORT_SYMBOL_GPL
-0xe7321d42 vb2_buffer_in_use drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0x12b94452 vb2_core_querybuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xef67a1a5 vb2_verify_memory_type drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0x89d42d52 vb2_core_reqbufs drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x9ef56bda vb2_core_create_bufs drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x5c350027 vb2_plane_vaddr drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x0ef5e312 vb2_plane_cookie drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x9aab71e9 vb2_buffer_done drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x58a7de78 vb2_discard_done drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x46c8d281 vb2_request_object_is_buffer drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xe240581a vb2_request_buffer_cnt drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x4df1124e vb2_core_prepare_buf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xda549bb0 vb2_core_qbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x6fea8751 vb2_wait_for_all_buffers drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xbec1fb86 vb2_core_dqbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x9193be88 vb2_core_streamon drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xcd0c2fc2 vb2_queue_error drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xf5f9bfa7 vb2_core_streamoff drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x5343bcdb vb2_core_expbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x58553d84 vb2_mmap drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x1909c83a vb2_core_queue_init drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xbaca7d95 vb2_core_queue_release drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x0cdeaf6b vb2_core_poll drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x163848d5 vb2_read drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x956ca35a vb2_write drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xc4b748e0 vb2_thread_start drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x59a59042 vb2_thread_stop drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xe20dfe0f get_vaddr_frames drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0x1b700d37 put_vaddr_frames drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0xc5e5573a frame_vector_to_pages drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0xdffb744b frame_vector_to_pfns drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0x065246b8 frame_vector_create drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0x1d5f9555 frame_vector_destroy drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL
-0x89823adf __tracepoint_vb2_buf_done drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xc9fdb919 __traceiter_vb2_buf_done drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xacfeedbd __SCK__tp_func_vb2_buf_done drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x4ed3fb1b __SCT__tp_func_vb2_buf_done drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xc0eb0100 __tracepoint_vb2_buf_queue drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x663ae833 __traceiter_vb2_buf_queue drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x63727da3 __SCK__tp_func_vb2_buf_queue drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x2b5551d5 __SCT__tp_func_vb2_buf_queue drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x94f33b19 __tracepoint_vb2_dqbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xf74f7f20 __traceiter_vb2_dqbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xc8d5dd8a __SCK__tp_func_vb2_dqbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xc7920841 __SCT__tp_func_vb2_dqbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x95ff1dce __tracepoint_vb2_qbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x8d67350f __traceiter_vb2_qbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0x00738a75 __SCK__tp_func_vb2_qbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xc54c863e __SCT__tp_func_vb2_qbuf drivers/media/common/videobuf2/videobuf2-common EXPORT_SYMBOL_GPL
-0xa2a35ac5 vb2_dma_sg_memops drivers/media/common/videobuf2/videobuf2-dma-sg EXPORT_SYMBOL_GPL
-0x1a07c55a vb2_dvb_register_bus drivers/media/common/videobuf2/videobuf2-dvb EXPORT_SYMBOL
-0x80414aaa vb2_dvb_unregister_bus drivers/media/common/videobuf2/videobuf2-dvb EXPORT_SYMBOL
-0x021f2be2 vb2_dvb_get_frontend drivers/media/common/videobuf2/videobuf2-dvb EXPORT_SYMBOL
-0x4b2bf4e0 vb2_dvb_find_frontend drivers/media/common/videobuf2/videobuf2-dvb EXPORT_SYMBOL
-0x9c3b6c96 vb2_dvb_alloc_frontend drivers/media/common/videobuf2/videobuf2-dvb EXPORT_SYMBOL
-0xe12e0a6f vb2_dvb_dealloc_frontends drivers/media/common/videobuf2/videobuf2-dvb EXPORT_SYMBOL
-0xc7c2b85f vb2_create_framevec drivers/media/common/videobuf2/videobuf2-memops EXPORT_SYMBOL
-0xccd197c7 vb2_destroy_framevec drivers/media/common/videobuf2/videobuf2-memops EXPORT_SYMBOL
-0x233a9e70 vb2_common_vm_ops drivers/media/common/videobuf2/videobuf2-memops EXPORT_SYMBOL_GPL
-0x81ef1dc1 vb2_find_buffer drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x278106f1 vb2_querybuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL
-0xdffb3a05 vb2_reqbufs drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xe9c1629e vb2_prepare_buf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x8b2d2ea3 vb2_create_bufs drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xcc18aa00 vb2_qbuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x4d062f51 vb2_dqbuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x3231551b vb2_streamon drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xe36b5b32 vb2_streamoff drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xe5d8c226 vb2_expbuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xf0b852a6 vb2_queue_init_name drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x2add2c1b vb2_queue_init drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xb59e14c3 vb2_queue_release drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x45af9fab vb2_queue_change_type drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x6bf79006 vb2_poll drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xceb92f2b vb2_ioctl_reqbufs drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x3ff98a82 vb2_ioctl_create_bufs drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x98583375 vb2_ioctl_prepare_buf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xdf439599 vb2_ioctl_querybuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xc62385f6 vb2_ioctl_qbuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x693c9693 vb2_ioctl_dqbuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xc95daccd vb2_ioctl_streamon drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xfcd77f8e vb2_ioctl_streamoff drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xa67ff64e vb2_ioctl_expbuf drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xa9c8c399 vb2_fop_mmap drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xe4e0e48e _vb2_fop_release drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x8c6e19db vb2_fop_release drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x36d9c245 vb2_fop_write drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xaf171e7d vb2_fop_read drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xa6807f48 vb2_fop_poll drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x7483dd80 vb2_video_unregister_device drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x4e6a221d vb2_ops_wait_prepare drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0xf5ed9b14 vb2_ops_wait_finish drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x84ff6996 vb2_request_validate drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x16221de8 vb2_request_queue drivers/media/common/videobuf2/videobuf2-v4l2 EXPORT_SYMBOL_GPL
-0x9271ef58 vb2_vmalloc_memops drivers/media/common/videobuf2/videobuf2-vmalloc EXPORT_SYMBOL_GPL
-0x721eec38 cypress_load_firmware drivers/media/common/cypress_firmware EXPORT_SYMBOL
-0x693e74ba ttpci_eeprom_decode_mac drivers/media/common/ttpci-eeprom EXPORT_SYMBOL
-0x2d5814a7 ttpci_eeprom_parse_mac drivers/media/common/ttpci-eeprom EXPORT_SYMBOL
-0x08c5db3e uvc_format_by_guid drivers/media/common/uvc EXPORT_SYMBOL_GPL
-0x55aa7c5f cx2341x_mpeg_ctrls drivers/media/common/cx2341x EXPORT_SYMBOL
-0x15ac1bd0 cx2341x_ctrl_query drivers/media/common/cx2341x EXPORT_SYMBOL
-0x28240e61 cx2341x_ctrl_get_menu drivers/media/common/cx2341x EXPORT_SYMBOL
-0x5b5cc43e cx2341x_ext_ctrls drivers/media/common/cx2341x EXPORT_SYMBOL
-0x7b4dd2cb cx2341x_fill_defaults drivers/media/common/cx2341x EXPORT_SYMBOL
-0xdbc5583a cx2341x_update drivers/media/common/cx2341x EXPORT_SYMBOL
-0xe1fe1432 cx2341x_log_status drivers/media/common/cx2341x EXPORT_SYMBOL
-0x56095277 cx2341x_handler_init drivers/media/common/cx2341x EXPORT_SYMBOL
-0x9d74d9e7 cx2341x_handler_set_50hz drivers/media/common/cx2341x EXPORT_SYMBOL
-0x7f6c99a2 cx2341x_handler_setup drivers/media/common/cx2341x EXPORT_SYMBOL
-0xf043bd87 cx2341x_handler_set_busy drivers/media/common/cx2341x EXPORT_SYMBOL
-0x0dbf0296 tveeprom_hauppauge_analog drivers/media/common/tveeprom EXPORT_SYMBOL
-0x6b6fe2b2 tveeprom_read drivers/media/common/tveeprom EXPORT_SYMBOL
-0x0fbabd58 ttpci_budget_debiread drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0xaada6093 ttpci_budget_debiwrite drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0xf3820464 ttpci_budget_init drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0xf3ca9501 ttpci_budget_init_hooks drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0x58b9269a ttpci_budget_deinit drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0x68ed30d7 ttpci_budget_irq10_handler drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0x9db66489 ttpci_budget_set_video_port drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0x7948c222 budget_debug drivers/media/pci/ttpci/budget-core EXPORT_SYMBOL_GPL
-0x1557c100 flexcop_dma_allocate drivers/media/pci/b2c2/b2c2-flexcop-pci EXPORT_SYMBOL
-0xb3c8412c flexcop_dma_free drivers/media/pci/b2c2/b2c2-flexcop-pci EXPORT_SYMBOL
-0xd35a323d flexcop_dma_config drivers/media/pci/b2c2/b2c2-flexcop-pci EXPORT_SYMBOL
-0xbea9475f flexcop_dma_xfer_control drivers/media/pci/b2c2/b2c2-flexcop-pci EXPORT_SYMBOL
-0x8ef621fb flexcop_dma_control_size_irq drivers/media/pci/b2c2/b2c2-flexcop-pci EXPORT_SYMBOL
-0x19c1aa62 flexcop_dma_control_timer_irq drivers/media/pci/b2c2/b2c2-flexcop-pci EXPORT_SYMBOL
-0xfdac834b flexcop_dma_config_timer drivers/media/pci/b2c2/b2c2-flexcop-pci EXPORT_SYMBOL
-0x5a8bf616 mantis_get_mac drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0xfe74fb5b mantis_gpio_set_bits drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0xc7a0d374 mantis_stream_control drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x7e7c6962 mantis_uart_init drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x720c612e mantis_uart_exit drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0xc3fc3925 mantis_dma_exit drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x41040a55 mantis_dma_init drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x70c7729f mantis_pci_init drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0xc4eb8472 mantis_pci_exit drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x485a8253 mantis_i2c_init drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0xcaa2b123 mantis_i2c_exit drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0xfc27af03 mantis_frontend_power drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0xa11479c3 mantis_frontend_soft_reset drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x9e260b7e mantis_dvb_init drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x1cde380e mantis_dvb_exit drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x5e3ea014 mantis_ca_init drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x0b49f8ce mantis_ca_exit drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x956592d8 mantis_input_init drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x0fd7703c mantis_input_exit drivers/media/pci/mantis/mantis_core EXPORT_SYMBOL_GPL
-0x5fb3a75d ddbridge_dummy_fe_qam_attach drivers/media/pci/ddbridge/ddbridge-dummy-fe EXPORT_SYMBOL_GPL
-0x02e11974 bttv_get_pcidev drivers/media/pci/bt8xx/bttv EXPORT_SYMBOL
-0x11dc4b6d bttv_gpio_enable drivers/media/pci/bt8xx/bttv EXPORT_SYMBOL
-0xbcf2d2fb bttv_read_gpio drivers/media/pci/bt8xx/bttv EXPORT_SYMBOL
-0x8ecf4acc bttv_write_gpio drivers/media/pci/bt8xx/bttv EXPORT_SYMBOL
-0xe10ecebb bttv_sub_register drivers/media/pci/bt8xx/bttv EXPORT_SYMBOL
-0xb95f469d bttv_sub_unregister drivers/media/pci/bt8xx/bttv EXPORT_SYMBOL
-0xd5d0bdef bt878_num drivers/media/pci/bt8xx/bt878 EXPORT_SYMBOL
-0xa1e034f6 bt878 drivers/media/pci/bt8xx/bt878 EXPORT_SYMBOL
-0xa72135bf bt878_start drivers/media/pci/bt8xx/bt878 EXPORT_SYMBOL
-0x78d5e45e bt878_stop drivers/media/pci/bt8xx/bt878 EXPORT_SYMBOL
-0x432f6214 bt878_device_control drivers/media/pci/bt8xx/bt878 EXPORT_SYMBOL
-0xb4eeaba7 rdc_reset_state drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0xeb30b092 dst_pio_disable drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0xc0b025ec dst_wait_dst_ready drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0x824175f9 dst_error_recovery drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0x668446d5 dst_error_bailout drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0x9cda3987 dst_comm_init drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0x937d5896 write_dst drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0xc0cf8272 read_dst drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0x43a983fd dst_check_sum drivers/media/pci/bt8xx/dst EXPORT_SYMBOL
-0x8139ffd1 dst_attach drivers/media/pci/bt8xx/dst EXPORT_SYMBOL_GPL
-0x68005f64 dst_ca_attach drivers/media/pci/bt8xx/dst_ca EXPORT_SYMBOL_GPL
-0xb58c3480 cx18_ext_init drivers/media/pci/cx18/cx18 EXPORT_SYMBOL
-0x2cdea06d cx18_reset_ir_gpio drivers/media/pci/cx18/cx18 EXPORT_SYMBOL
-0x3f0c4f2f cx18_start_v4l2_encode_stream drivers/media/pci/cx18/cx18 EXPORT_SYMBOL
-0xd7c7fd89 cx18_stop_v4l2_encode_stream drivers/media/pci/cx18/cx18 EXPORT_SYMBOL
-0xdcf99bdf cx18_claim_stream drivers/media/pci/cx18/cx18 EXPORT_SYMBOL
-0x826e8576 cx18_release_stream drivers/media/pci/cx18/cx18 EXPORT_SYMBOL
-0xe66b9812 altera_ci_irq drivers/media/pci/cx23885/altera-ci EXPORT_SYMBOL
-0xdb3faf38 altera_ci_release drivers/media/pci/cx23885/altera-ci EXPORT_SYMBOL
-0x1ab311dc altera_ci_init drivers/media/pci/cx23885/altera-ci EXPORT_SYMBOL
-0x6ff7510d altera_ci_tuner_reset drivers/media/pci/cx23885/altera-ci EXPORT_SYMBOL
-0x6141c8c5 cx88_tuner_callback drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x8d49b263 cx88_setup_xc3028 drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL_GPL
-0xe3d5dd76 cx88_risc_buffer drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0xef4b254a cx88_risc_databuffer drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x8d88137a cx88_sram_channels drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x6590678b cx88_sram_channel_setup drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x09d7982c cx88_sram_channel_dump drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x5edb7ae5 cx88_print_irqbits drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0xd00b32a1 cx88_core_irq drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x154757b3 cx88_wakeup drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x00192bea cx88_shutdown drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x0333122a cx88_reset drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x47fa7dbc cx88_set_scale drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x3605feab cx88_set_tvnorm drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0xca6b7153 cx88_vdev_init drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x4a7c7367 cx88_core_get drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x9a2afe19 cx88_core_put drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x28248e1d cx88_set_tvaudio drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0xa7856fa9 cx88_newstation drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x6ccb570a cx88_get_stereo drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x83923aaa cx88_set_stereo drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x904b8696 cx88_audio_thread drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0xa8d578f2 cx88_dsp_detect_stereo_sap drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x220b4b5b cx88_ir_start drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x8b1f7a24 cx88_ir_stop drivers/media/pci/cx88/cx88xx EXPORT_SYMBOL
-0x354ef512 cx88_video_mux drivers/media/pci/cx88/cx8800 EXPORT_SYMBOL
-0x90e04b49 cx88_querycap drivers/media/pci/cx88/cx8800 EXPORT_SYMBOL
-0x55486099 cx88_enum_input drivers/media/pci/cx88/cx8800 EXPORT_SYMBOL
-0xf3b04e63 cx88_set_freq drivers/media/pci/cx88/cx8800 EXPORT_SYMBOL
-0x59b7c199 cx8802_start_dma drivers/media/pci/cx88/cx8802 EXPORT_SYMBOL
-0x1c5a785e cx8802_buf_prepare drivers/media/pci/cx88/cx8802 EXPORT_SYMBOL
-0x4010cc82 cx8802_buf_queue drivers/media/pci/cx88/cx8802 EXPORT_SYMBOL
-0x5089cc5b cx8802_cancel_buffers drivers/media/pci/cx88/cx8802 EXPORT_SYMBOL
-0xccad315c cx8802_get_driver drivers/media/pci/cx88/cx8802 EXPORT_SYMBOL
-0xb902433f cx8802_register_driver drivers/media/pci/cx88/cx8802 EXPORT_SYMBOL
-0xdc599c3a cx8802_unregister_driver drivers/media/pci/cx88/cx8802 EXPORT_SYMBOL
-0x6b01c77d ivtv_ext_init drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0xdf015e2e ivtv_set_irq_mask drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x0c51e9ad ivtv_api drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0xe06b5a74 ivtv_vapi drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0xbbe7ae3b ivtv_vapi_result drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0xf9c928e1 ivtv_clear_irq_mask drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x14f67530 ivtv_debug drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0xa2e58144 ivtv_reset_ir_gpio drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0xca9d3fd3 ivtv_udma_setup drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x434d0f9d ivtv_udma_unmap drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x4a09985c ivtv_udma_alloc drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x7e55d36f ivtv_udma_prepare drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x3a30ee41 ivtv_init_on_first_open drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x9670f090 ivtv_firmware_check drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x35679c2e ivtv_claim_stream drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0xefd75eed ivtv_release_stream drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x4724b863 ivtv_start_v4l2_encode_stream drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x6ff2e788 ivtv_stop_v4l2_encode_stream drivers/media/pci/ivtv/ivtv EXPORT_SYMBOL
-0x04e83446 saa7134_tuner_callback drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x8f1ad46b saa7134_devlist_lock drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x1211df5d saa7134_devlist drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0xb999d8d3 saa7134_stop_streaming drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0xddb1981e saa7134_ts_register drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x0a712dc8 saa7134_ts_unregister drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x64a1f8e7 saa7134_set_gpio drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x730c4be3 saa7134_boards drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x6135bd88 saa7134_dmasound_init drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x813de393 saa7134_dmasound_exit drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0xeae51258 saa7134_pgtable_free drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0xf4a0c3c8 saa7134_pgtable_build drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x06596391 saa7134_pgtable_alloc drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x6603d6ee saa7134_set_dmabits drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x7483c143 saa7134_ts_buffer_init drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0xdc2c5c9d saa7134_ts_buffer_prepare drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x5c360561 saa7134_ts_queue_setup drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x82f13de9 saa7134_ts_start_streaming drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0xdccee3aa saa7134_ts_stop_streaming drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x39c97136 saa7134_ts_qops drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x12a40d33 saa_dsp_writel drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0x2e66f8ca saa7134_tvaudio_setmute drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL
-0xf9b86d72 saa7134_vb2_buffer_queue drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x1df1832b saa7134_enum_input drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x41c096d1 saa7134_g_input drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x59140f17 saa7134_s_input drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x310ca1d0 saa7134_querycap drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x64d9d6f5 saa7134_s_std drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0xcc3128d6 saa7134_g_std drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x52f60382 saa7134_querystd drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x692cee52 saa7134_g_tuner drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0xbeffb425 saa7134_s_tuner drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0x84e11529 saa7134_g_frequency drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0xb03b9de3 saa7134_s_frequency drivers/media/pci/saa7134/saa7134 EXPORT_SYMBOL_GPL
-0xec0bbd11 usb_cypress_load_firmware drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
-0x8b6f5395 dvb_usb_get_hexline drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
-0x7277a1ce dvb_usb_device_init drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
-0xa48f8e54 dvb_usb_device_exit drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
-0x59885706 dvb_usb_generic_rw drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
-0x2c3fd590 dvb_usb_generic_write drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
-0x3858b6d2 dvb_usb_nec_rc_key_to_event drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
-0xbb2ebc5f dibusb_streaming_ctrl drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x0e408bd9 dibusb_pid_filter drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x36b93328 dibusb_pid_filter_ctrl drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x76e5c7de dibusb_power_ctrl drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x4e679c8d dibusb2_0_streaming_ctrl drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x5e9a19ab dibusb2_0_power_ctrl drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0xf779efae dibusb_i2c_algo drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x85638f0e dibusb_read_eeprom_byte drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x93822ecb rc_map_dibusb_table drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x391e8626 dibusb_rc_query drivers/media/usb/dvb-usb/dvb-usb-dibusb-common EXPORT_SYMBOL
-0x6b693f48 dibusb_dib3000mc_frontend_attach drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common EXPORT_SYMBOL
-0xd1228221 dibusb_dib3000mc_tuner_attach drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common EXPORT_SYMBOL
-0x341530cb rc_map_af9005_table drivers/media/usb/dvb-usb/dvb-usb-af9005-remote EXPORT_SYMBOL
-0xd4e288db rc_map_af9005_table_size drivers/media/usb/dvb-usb/dvb-usb-af9005-remote EXPORT_SYMBOL
-0xf7cd0e05 af9005_rc_decode drivers/media/usb/dvb-usb/dvb-usb-af9005-remote EXPORT_SYMBOL
-0x3689a03f dvb_usbv2_probe drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x8d4b321e dvb_usbv2_disconnect drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x2bf0cf89 dvb_usbv2_suspend drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x72e7a705 dvb_usbv2_resume drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x72811fd2 dvb_usbv2_reset_resume drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x61bdf7f4 dvb_usbv2_generic_rw drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x030cb57f dvb_usbv2_generic_write drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x0ef675cf dvb_usbv2_generic_rw_locked drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x6b395acb dvb_usbv2_generic_write_locked drivers/media/usb/dvb-usb-v2/dvb_usb_v2 EXPORT_SYMBOL
-0x6d1f9dbb mxl111sf_demod_attach drivers/media/usb/dvb-usb-v2/mxl111sf-demod EXPORT_SYMBOL_GPL
-0xdd6c3531 mxl111sf_tuner_attach drivers/media/usb/dvb-usb-v2/mxl111sf-tuner EXPORT_SYMBOL_GPL
-0xc00eb037 ttusbdecfe_dvbt_attach drivers/media/usb/ttusb-dec/ttusbdecfe EXPORT_SYMBOL
-0xebc9b1fd ttusbdecfe_dvbs_attach drivers/media/usb/ttusb-dec/ttusbdecfe EXPORT_SYMBOL
-0x9670af2c gspca_debug drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0x8d7faf14 gspca_frame_add drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0x6aa19e64 gspca_dev_probe2 drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0xbe6db7dd gspca_dev_probe drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0xa1e4ff21 gspca_disconnect drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0xc02b061e gspca_suspend drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0x07f2d9eb gspca_resume drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0xdc152c28 gspca_expo_autogain drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0x49da8de2 gspca_coarse_grained_expo_autogain drivers/media/usb/gspca/gspca_main EXPORT_SYMBOL
-0x153143c1 cx231xx_get_i2c_adap drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x017ea7c7 cx231xx_tuner_callback drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0xe76516be cx231xx_register_extension drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL
-0xaf6c1b63 cx231xx_unregister_extension drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL
-0x0c1f17c2 cx231xx_send_usb_command drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x8389df2f cx231xx_set_alt_setting drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0xd6d26875 cx231xx_demod_reset drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x58ba60c8 is_fw_load drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x8ab5c797 cx231xx_set_mode drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0xc557d3cf cx231xx_uninit_isoc drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x549bc4ea cx231xx_uninit_bulk drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x9ef9c376 cx231xx_init_isoc drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x38316926 cx231xx_init_bulk drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x932be0b3 cx231xx_dev_init drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x484825b6 cx231xx_dev_uninit drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x1ae1a990 cx231xx_send_gpio_cmd drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x6805ad97 cx231xx_enable656 drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0xe1819927 cx231xx_disable656 drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0xa4589543 cx231xx_unmute_audio drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x2533672a cx231xx_enable_i2c_port_3 drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0xfa026bc1 cx231xx_capture_start drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x822993a1 cx231xx_uninit_vbi_isoc drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0xbd100bf8 cx231xx_init_vbi_isoc drivers/media/usb/cx231xx/cx231xx EXPORT_SYMBOL_GPL
-0x27238198 em28xx_read_reg drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xb049fc6a em28xx_write_regs drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xbd5b3370 em28xx_write_reg drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x0baae6d4 em28xx_write_reg_bits drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x6226cc32 em28xx_toggle_reg_bits drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x96ba9a19 em28xx_read_ac97 drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xd9ad5459 em28xx_write_ac97 drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x939d573a em28xx_audio_analog_set drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xf448dbdb em28xx_audio_setup drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x10c74f34 em28xx_find_led drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xd8ddbddf em28xx_gpio_set drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x3b683e80 em28xx_set_mode drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xee0ec695 em28xx_uninit_usb_xfer drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x83d09870 em28xx_stop_urbs drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xd941af04 em28xx_alloc_urbs drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xe7635dd5 em28xx_init_usb_xfer drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xc2f4d2b5 em28xx_register_extension drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL
-0x9335d600 em28xx_unregister_extension drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL
-0x921d7c65 em28xx_boards drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x7fc8652c em28xx_tuner_callback drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xbc93f3b2 em28xx_setup_xc3028 drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0x721f7cc7 em28xx_free_device drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xe4533ac7 em28xx_init_camera drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
-0xd3a942a6 atbm8830_attach drivers/media/dvb-frontends/atbm8830 EXPORT_SYMBOL_GPL
-0x609ca8dd au8522_writereg drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0xcf2b3346 au8522_readreg drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0x2a26d43c au8522_i2c_gate_ctrl drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0xf5ef3397 au8522_analog_i2c_gate_ctrl drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0x1a291e09 au8522_get_state drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0x189f839e au8522_release_state drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0x7c7f5156 au8522_led_ctrl drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0xd7b2db83 au8522_init drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0x94007bc8 au8522_sleep drivers/media/dvb-frontends/au8522_common EXPORT_SYMBOL
-0xadf4429a au8522_attach drivers/media/dvb-frontends/au8522_dig EXPORT_SYMBOL_GPL
-0x3db50c4f bcm3510_attach drivers/media/dvb-frontends/bcm3510 EXPORT_SYMBOL_GPL
-0x74e11bb0 cx22700_attach drivers/media/dvb-frontends/cx22700 EXPORT_SYMBOL_GPL
-0x4ebfb002 cx22702_attach drivers/media/dvb-frontends/cx22702 EXPORT_SYMBOL_GPL
-0xd0ef8c1f cx24110_attach drivers/media/dvb-frontends/cx24110 EXPORT_SYMBOL_GPL
-0x15b70e99 cx24116_attach drivers/media/dvb-frontends/cx24116 EXPORT_SYMBOL_GPL
-0x3b9f0818 cx24117_attach drivers/media/dvb-frontends/cx24117 EXPORT_SYMBOL_GPL
-0xa8957052 cx24120_attach drivers/media/dvb-frontends/cx24120 EXPORT_SYMBOL_GPL
-0x954a25ac cx24123_get_tuner_i2c_adapter drivers/media/dvb-frontends/cx24123 EXPORT_SYMBOL
-0x460e896a cx24123_attach drivers/media/dvb-frontends/cx24123 EXPORT_SYMBOL_GPL
-0x0dfc6213 cxd2820r_attach drivers/media/dvb-frontends/cxd2820r EXPORT_SYMBOL_GPL
-0x5a137109 cxd2841er_attach_s drivers/media/dvb-frontends/cxd2841er EXPORT_SYMBOL_GPL
-0xb48a61cd cxd2841er_attach_t_c drivers/media/dvb-frontends/cxd2841er EXPORT_SYMBOL_GPL
-0x72ff0558 dib3000mb_attach drivers/media/dvb-frontends/dib3000mb EXPORT_SYMBOL_GPL
-0x93bea4af dib3000mc_get_tuner_i2c_master drivers/media/dvb-frontends/dib3000mc EXPORT_SYMBOL
-0xa65c934e dib3000mc_pid_control drivers/media/dvb-frontends/dib3000mc EXPORT_SYMBOL
-0xdbb93215 dib3000mc_pid_parse drivers/media/dvb-frontends/dib3000mc EXPORT_SYMBOL
-0x1eda67a9 dib3000mc_set_config drivers/media/dvb-frontends/dib3000mc EXPORT_SYMBOL
-0xf82aa55e dib3000mc_i2c_enumeration drivers/media/dvb-frontends/dib3000mc EXPORT_SYMBOL
-0xbf86a646 dib3000mc_attach drivers/media/dvb-frontends/dib3000mc EXPORT_SYMBOL_GPL
-0x4b3d4276 dibx000_i2c_set_speed drivers/media/dvb-frontends/dibx000_common EXPORT_SYMBOL
-0xa57d0be2 dibx000_get_i2c_adapter drivers/media/dvb-frontends/dibx000_common EXPORT_SYMBOL
-0x81cfae2c dibx000_reset_i2c_master drivers/media/dvb-frontends/dibx000_common EXPORT_SYMBOL
-0xfbe214df dibx000_init_i2c_master drivers/media/dvb-frontends/dibx000_common EXPORT_SYMBOL
-0x4253d8d6 dibx000_exit_i2c_master drivers/media/dvb-frontends/dibx000_common EXPORT_SYMBOL
-0x62629d12 dib7000m_get_i2c_master drivers/media/dvb-frontends/dib7000m EXPORT_SYMBOL
-0x154882a1 dib7000m_pid_filter_ctrl drivers/media/dvb-frontends/dib7000m EXPORT_SYMBOL
-0x2015e758 dib7000m_pid_filter drivers/media/dvb-frontends/dib7000m EXPORT_SYMBOL
-0xf2052b66 dib7000m_attach drivers/media/dvb-frontends/dib7000m EXPORT_SYMBOL_GPL
-0xa3e99c92 dib7000p_attach drivers/media/dvb-frontends/dib7000p EXPORT_SYMBOL_GPL
-0xfbe5fb1d dib8000_attach drivers/media/dvb-frontends/dib8000 EXPORT_SYMBOL_GPL
-0xa0b82dd8 drx39xxj_attach drivers/media/dvb-frontends/drx39xyj/drx39xyj EXPORT_SYMBOL_GPL
-0x574aab32 drxd_attach drivers/media/dvb-frontends/drxd EXPORT_SYMBOL_GPL
-0x1cd4a24a drxk_attach drivers/media/dvb-frontends/drxk EXPORT_SYMBOL_GPL
-0x257269d4 ds3000_attach drivers/media/dvb-frontends/ds3000 EXPORT_SYMBOL_GPL
-0xd21b9f6b ec100_attach drivers/media/dvb-frontends/ec100 EXPORT_SYMBOL_GPL
-0xe58f5922 gp8psk_fe_attach drivers/media/dvb-frontends/gp8psk-fe EXPORT_SYMBOL_GPL
-0x0995c7e8 isl6405_attach drivers/media/dvb-frontends/isl6405 EXPORT_SYMBOL_GPL
-0xa98333ad isl6421_attach drivers/media/dvb-frontends/isl6421 EXPORT_SYMBOL_GPL
-0xa1e4dc44 isl6423_attach drivers/media/dvb-frontends/isl6423 EXPORT_SYMBOL_GPL
-0x8b7cf45a ix2505v_attach drivers/media/dvb-frontends/ix2505v EXPORT_SYMBOL_GPL
-0x8af37477 l64781_attach drivers/media/dvb-frontends/l64781 EXPORT_SYMBOL_GPL
-0x99569434 lg2160_attach drivers/media/dvb-frontends/lg2160 EXPORT_SYMBOL_GPL
-0x13eeb164 lgdt3305_attach drivers/media/dvb-frontends/lgdt3305 EXPORT_SYMBOL_GPL
-0x9e65a44e lgdt3306a_attach drivers/media/dvb-frontends/lgdt3306a EXPORT_SYMBOL_GPL
-0xdf99db1d lgdt330x_attach drivers/media/dvb-frontends/lgdt330x EXPORT_SYMBOL_GPL
-0xbc068779 lgs8gxx_attach drivers/media/dvb-frontends/lgs8gxx EXPORT_SYMBOL_GPL
-0x25bd438f lnbh25_attach drivers/media/dvb-frontends/lnbh25 EXPORT_SYMBOL_GPL
-0x61ed84a3 lnbh24_attach drivers/media/dvb-frontends/lnbp21 EXPORT_SYMBOL_GPL
-0x5e42441f lnbp21_attach drivers/media/dvb-frontends/lnbp21 EXPORT_SYMBOL_GPL
-0xc59a8b88 lnbp22_attach drivers/media/dvb-frontends/lnbp22 EXPORT_SYMBOL_GPL
-0xd3d2dc3e m88ds3103_get_agc_pwm drivers/media/dvb-frontends/m88ds3103 EXPORT_SYMBOL
-0x0c7e1c19 m88ds3103_attach drivers/media/dvb-frontends/m88ds3103 EXPORT_SYMBOL_GPL
-0x024011db m88rs2000_attach drivers/media/dvb-frontends/m88rs2000 EXPORT_SYMBOL_GPL
-0x8f399c0f mb86a16_attach drivers/media/dvb-frontends/mb86a16 EXPORT_SYMBOL_GPL
-0xd6505e65 mb86a20s_attach drivers/media/dvb-frontends/mb86a20s EXPORT_SYMBOL_GPL
-0xc1d23941 mt312_attach drivers/media/dvb-frontends/mt312 EXPORT_SYMBOL_GPL
-0x5d495eaa mt352_attach drivers/media/dvb-frontends/mt352 EXPORT_SYMBOL_GPL
-0x01e74244 mxl5xx_attach drivers/media/dvb-frontends/mxl5xx EXPORT_SYMBOL_GPL
-0xc6daf191 nxt200x_attach drivers/media/dvb-frontends/nxt200x EXPORT_SYMBOL_GPL
-0x90160e2e nxt6000_attach drivers/media/dvb-frontends/nxt6000 EXPORT_SYMBOL_GPL
-0x30563947 or51132_attach drivers/media/dvb-frontends/or51132 EXPORT_SYMBOL_GPL
-0x95b07541 or51211_attach drivers/media/dvb-frontends/or51211 EXPORT_SYMBOL_GPL
-0xa9f1623c dvb_pll_attach drivers/media/dvb-frontends/dvb-pll EXPORT_SYMBOL_GPL
-0xb61578fd s5h1409_attach drivers/media/dvb-frontends/s5h1409 EXPORT_SYMBOL_GPL
-0x0341675a s5h1411_attach drivers/media/dvb-frontends/s5h1411 EXPORT_SYMBOL_GPL
-0x15b26e90 s5h1420_get_tuner_i2c_adapter drivers/media/dvb-frontends/s5h1420 EXPORT_SYMBOL
-0xa570112a s5h1420_attach drivers/media/dvb-frontends/s5h1420 EXPORT_SYMBOL_GPL
-0x711ed54f s921_attach drivers/media/dvb-frontends/s921 EXPORT_SYMBOL_GPL
-0x4ff2edd2 si21xx_attach drivers/media/dvb-frontends/si21xx EXPORT_SYMBOL_GPL
-0xfb1d9961 sp887x_attach drivers/media/dvb-frontends/sp887x EXPORT_SYMBOL_GPL
-0x90a73774 stb0899_attach drivers/media/dvb-frontends/stb0899 EXPORT_SYMBOL_GPL
-0x14b4e9c0 stb6000_attach drivers/media/dvb-frontends/stb6000 EXPORT_SYMBOL_GPL
-0x205a0e8a stb6100_attach drivers/media/dvb-frontends/stb6100 EXPORT_SYMBOL_GPL
-0x6095fc86 stv0288_attach drivers/media/dvb-frontends/stv0288 EXPORT_SYMBOL_GPL
-0x5cff66c5 stv0297_attach drivers/media/dvb-frontends/stv0297 EXPORT_SYMBOL_GPL
-0xceb18813 stv0299_attach drivers/media/dvb-frontends/stv0299 EXPORT_SYMBOL_GPL
-0xc28dd5cb stv0367ter_attach drivers/media/dvb-frontends/stv0367 EXPORT_SYMBOL_GPL
-0x16316089 stv0367cab_attach drivers/media/dvb-frontends/stv0367 EXPORT_SYMBOL_GPL
-0x654533ec stv0367ddb_attach drivers/media/dvb-frontends/stv0367 EXPORT_SYMBOL_GPL
-0x26637107 stv0900_attach drivers/media/dvb-frontends/stv0900 EXPORT_SYMBOL_GPL
-0x7b3512fe stv090x_attach drivers/media/dvb-frontends/stv090x EXPORT_SYMBOL_GPL
-0x556fe827 stv0910_attach drivers/media/dvb-frontends/stv0910 EXPORT_SYMBOL_GPL
-0x538ad9ec stv6110_attach drivers/media/dvb-frontends/stv6110 EXPORT_SYMBOL_GPL
-0xac68d8b8 stv6110x_attach drivers/media/dvb-frontends/stv6110x EXPORT_SYMBOL_GPL
-0xe4cd8123 stv6111_attach drivers/media/dvb-frontends/stv6111 EXPORT_SYMBOL_GPL
-0x3e5584cc tda10021_attach drivers/media/dvb-frontends/tda10021 EXPORT_SYMBOL_GPL
-0x056a2458 tda10023_attach drivers/media/dvb-frontends/tda10023 EXPORT_SYMBOL_GPL
-0x9195edc1 tda10048_attach drivers/media/dvb-frontends/tda10048 EXPORT_SYMBOL_GPL
-0xc294ad5a tda10045_attach drivers/media/dvb-frontends/tda1004x EXPORT_SYMBOL_GPL
-0x36f77b00 tda10046_attach drivers/media/dvb-frontends/tda1004x EXPORT_SYMBOL_GPL
-0x64f585db tda10086_attach drivers/media/dvb-frontends/tda10086 EXPORT_SYMBOL_GPL
-0x30b4a3e4 tda18271c2dd_attach drivers/media/dvb-frontends/tda18271c2dd EXPORT_SYMBOL_GPL
-0x2ec7b7a6 tda665x_attach drivers/media/dvb-frontends/tda665x EXPORT_SYMBOL_GPL
-0x6b90c361 tda8083_attach drivers/media/dvb-frontends/tda8083 EXPORT_SYMBOL_GPL
-0xfc28a6fd tda8261_attach drivers/media/dvb-frontends/tda8261 EXPORT_SYMBOL_GPL
-0x349913b5 tda826x_attach drivers/media/dvb-frontends/tda826x EXPORT_SYMBOL_GPL
-0xee0e3866 ts2020_attach drivers/media/dvb-frontends/ts2020 EXPORT_SYMBOL_GPL
-0xb28e1ca5 tua6100_attach drivers/media/dvb-frontends/tua6100 EXPORT_SYMBOL_GPL
-0x091c35e3 cx24113_agc_callback drivers/media/dvb-frontends/cx24113 EXPORT_SYMBOL
-0x0c87550a cx24113_attach drivers/media/dvb-frontends/cx24113 EXPORT_SYMBOL_GPL
-0x712126d5 dib0070_ctrl_agc_filter drivers/media/dvb-frontends/dib0070 EXPORT_SYMBOL
-0xfd6de253 dib0070_get_rf_output drivers/media/dvb-frontends/dib0070 EXPORT_SYMBOL
-0xfa1f53b6 dib0070_set_rf_output drivers/media/dvb-frontends/dib0070 EXPORT_SYMBOL
-0x260ccb26 dib0070_wbd_offset drivers/media/dvb-frontends/dib0070 EXPORT_SYMBOL
-0x78ac066f dib0070_attach drivers/media/dvb-frontends/dib0070 EXPORT_SYMBOL_GPL
-0x3f3c8c38 dib0090_dcc_freq drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x1b32f79a dib0090_pwm_gain_reset drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x4da02c3a dib0090_set_dc_servo drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x7854780c dib0090_gain_control drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x30eb8e71 dib0090_get_current_gain drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x5d9f49c9 dib0090_get_wbd_target drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0xf03f4f39 dib0090_get_wbd_offset drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0xd2b2de35 dib0090_set_switch drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0xfe764728 dib0090_set_vga drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x86d498a6 dib0090_update_rframp_7090 drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0xefd4b17d dib0090_update_tuning_table_7090 drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x5ffe2fa7 dib0090_get_tune_state drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0xaa030d5b dib0090_set_tune_state drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL
-0x13a0e8f9 dib0090_register drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL_GPL
-0x238ec724 dib0090_fw_register drivers/media/dvb-frontends/dib0090 EXPORT_SYMBOL_GPL
-0x3aefa3d0 itd1000_attach drivers/media/dvb-frontends/itd1000 EXPORT_SYMBOL_GPL
-0xf0599dcf ves1820_attach drivers/media/dvb-frontends/ves1820 EXPORT_SYMBOL_GPL
-0x9e8ba007 ves1x93_attach drivers/media/dvb-frontends/ves1x93 EXPORT_SYMBOL_GPL
-0x34e74423 zl10036_attach drivers/media/dvb-frontends/zl10036 EXPORT_SYMBOL_GPL
-0xd767561c zl10039_attach drivers/media/dvb-frontends/zl10039 EXPORT_SYMBOL_GPL
-0x10522cfc zl10353_attach drivers/media/dvb-frontends/zl10353 EXPORT_SYMBOL_GPL
-0xaf6dcbd4 media_device_register_entity drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xb017d67e media_device_unregister_entity drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x8302978a media_device_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x5d8df439 media_device_cleanup drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x272b74f2 __media_device_register drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xa3540ad0 media_device_register_entity_notify drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xc9276190 media_device_unregister_entity_notify drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x4718045e media_device_unregister drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xa77fef13 media_device_pci_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x9f16a0bd __media_device_usb_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x86d833a7 media_entity_enum_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xe5ceecd6 media_entity_enum_cleanup drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x6152d067 media_entity_pads_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xf9c5931f media_graph_walk_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x0d626e7b media_graph_walk_cleanup drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x5d2d2bf5 media_graph_walk_start drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x7391a18a media_graph_walk_next drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x19bc7544 __media_pipeline_start drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x77f8ed41 media_pipeline_start drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x7ded5088 __media_pipeline_stop drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x7f53cc49 media_pipeline_stop drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x0be8a51f media_pipeline_alloc_start drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x911e39a4 __media_pipeline_pad_iter_next drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xc27d5c7d media_pipeline_entity_iter_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x65dd67e0 media_pipeline_entity_iter_cleanup drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xf790768a __media_pipeline_entity_iter_next drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xa2160c8d media_get_pad_index drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xaf0d78ea media_create_pad_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x55a1b04b media_create_pad_links drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x5b3f6111 __media_entity_remove_links drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xb12e4252 media_entity_remove_links drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xd07f7c2a __media_entity_setup_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x770b1b0d media_entity_setup_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xf5a72265 media_entity_find_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x721be491 media_pad_remote_pad_first drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xb6a98b69 media_entity_remote_pad_unique drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xf764fce2 media_pad_remote_pad_unique drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x185e7c19 media_entity_get_fwnode_pad drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x19645589 media_entity_pipeline drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x71152aef media_pad_pipeline drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x31097aec media_devnode_create drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xf4d370e4 media_devnode_remove drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x58cc8250 media_create_intf_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xec269cfd __media_remove_intf_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x4296b610 media_remove_intf_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x37bd3b0e __media_remove_intf_links drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xd8823a07 media_remove_intf_links drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x16b915be media_create_ancillary_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xe5877e08 __media_entity_next_link drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xd331b5a6 media_request_put drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xa72877a1 media_request_get_by_fd drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x00fb82e3 media_request_object_find drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x72d15611 media_request_object_put drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0xe8cd8480 media_request_object_init drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x2fa4edf4 media_request_object_bind drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x8d3494e8 media_request_object_unbind drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x2fa69c6c media_request_object_complete drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x62d991d3 media_device_usb_allocate drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x928aa676 media_device_delete drivers/media/mc/mc EXPORT_SYMBOL_GPL
-0x5b636ada v4l2_async_nf_init drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL
-0x8ea6301c v4l2_async_subdev_nf_init drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL_GPL
-0xb38e718a v4l2_async_nf_register drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL
-0x7c8ed174 v4l2_async_nf_unregister drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL
-0x4127bbd1 v4l2_async_nf_cleanup drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL_GPL
-0x1706ca89 __v4l2_async_nf_add_fwnode drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL_GPL
-0xc6ff7f6d __v4l2_async_nf_add_fwnode_remote drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL_GPL
-0xd93b61c3 __v4l2_async_nf_add_i2c drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL_GPL
-0xb1a32439 v4l2_async_subdev_endpoint_add drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL_GPL
-0x448222ad v4l2_async_connection_unique drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL_GPL
-0x28622181 v4l2_async_register_subdev drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL
-0x072efbb7 v4l2_async_unregister_subdev drivers/media/v4l2-core/v4l2-async EXPORT_SYMBOL
-0xd917ad2e v4l2_fwnode_endpoint_parse drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0x596d2243 v4l2_fwnode_endpoint_free drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0x7f345f02 v4l2_fwnode_endpoint_alloc_parse drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0xbfc54680 v4l2_fwnode_parse_link drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0x6352ed7b v4l2_fwnode_put_link drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0x612ddce5 v4l2_fwnode_connector_free drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0xcfb080bb v4l2_fwnode_connector_parse drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0xc2b127ca v4l2_fwnode_connector_add_link drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0x33c39f2c v4l2_fwnode_device_parse drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0x9c60b984 v4l2_async_register_subdev_sensor drivers/media/v4l2-core/v4l2-fwnode EXPORT_SYMBOL_GPL
-0x370cfe6e v4l2_dv_timings_presets drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x0af3d134 v4l2_valid_dv_timings drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x922ecd29 v4l2_enum_dv_timings_cap drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x3aa68d7a v4l2_find_dv_timings_cap drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0xf56238f4 v4l2_find_dv_timings_cea861_vic drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0xd034392d v4l2_match_dv_timings drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x08402862 v4l2_print_dv_timings drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0xff585440 v4l2_dv_timings_aspect_ratio drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x4839762f v4l2_calc_timeperframe drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0xa97e00eb v4l2_detect_cvt drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x01612c0b v4l2_detect_gtf drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x2bf67def v4l2_calc_aspect_ratio drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0xa22fbfeb v4l2_hdmi_rx_colorimetry drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x8f8d4341 v4l2_get_edid_phys_addr drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x0958448b v4l2_set_edid_phys_addr drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0xae575c8f v4l2_phys_addr_for_input drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x7b6ac78f v4l2_phys_addr_validate drivers/media/v4l2-core/v4l2-dv-timings EXPORT_SYMBOL_GPL
-0x1ca29c08 video_device_alloc drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xfbd721ab video_device_release drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xfb9103dd video_device_release_empty drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xe2c992ab video_devdata drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xb77b0159 v4l2_prio_init drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x3bdd0f94 v4l2_prio_change drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x2342f1ae v4l2_prio_open drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xcda04a5b v4l2_prio_close drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x8106095a v4l2_prio_max drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x16244fe5 v4l2_prio_check drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x903281c9 __video_register_device drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x5e7f7301 video_unregister_device drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x83a540a9 video_device_pipeline_start drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x2a263319 __video_device_pipeline_start drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x32ed9ad6 video_device_pipeline_stop drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xb1241efd __video_device_pipeline_stop drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xa2c7b59c video_device_pipeline_alloc_start drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xeca1c283 video_device_pipeline drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xf3251e7b v4l2_norm_to_name drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x0614dd5a v4l2_video_std_frame_period drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xe2b92059 v4l2_video_std_construct drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x3adbd595 v4l2_field_names drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x123959a1 v4l2_type_names drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xbc5671dc v4l_printk_ioctl drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xeef25934 video_ioctl2 drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x2fb8579c v4l2_device_register drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x7b045f93 v4l2_device_put drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xd715cd11 v4l2_device_set_name drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xa80eab68 v4l2_device_disconnect drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xbbd70b27 v4l2_device_unregister drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x8442ce55 v4l2_device_register_subdev drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x904bcaea __v4l2_device_register_subdev_nodes drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x1d09ee1b v4l2_device_unregister_subdev drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x18e8bd0b v4l2_fh_init drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x77bf73ea v4l2_fh_add drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xc9d3afbe v4l2_fh_open drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xa25fb1b6 v4l2_fh_del drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x149a9317 v4l2_fh_exit drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x9d1b4dcf v4l2_fh_release drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x21d78b0d v4l2_fh_is_singular drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x3cd7283b v4l2_event_dequeue drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x50fcf491 v4l2_event_queue drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x075c5706 v4l2_event_queue_fh drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x15155829 v4l2_event_pending drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x055660cc v4l2_event_wake_all drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x6acab4f0 v4l2_event_subscribe drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x14501ac0 v4l2_event_unsubscribe_all drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x8e1b5a84 v4l2_event_unsubscribe drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xa757a5d4 v4l2_event_subdev_unsubscribe drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x51148e3c v4l2_src_change_event_subscribe drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x9182d761 v4l2_src_change_event_subdev_subscribe drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x3d85fec2 v4l2_subdev_call_wrappers drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xcb569e55 v4l2_subdev_get_fwnode_pad_1_to_1 drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x6c4c2640 v4l2_subdev_link_validate_default drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x5674598b v4l2_subdev_link_validate drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x72bfb8b1 v4l2_subdev_has_pad_interdep drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xa16cdebf __v4l2_subdev_state_alloc drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xde6e37d9 __v4l2_subdev_state_free drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x4aca2dce __v4l2_subdev_init_finalize drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x6711550f v4l2_subdev_cleanup drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xc8e44c41 v4l2_subdev_get_fmt drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x05d1754a v4l2_subdev_set_routing drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xae3dd8d6 __v4l2_subdev_next_active_route drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x05f91013 v4l2_subdev_set_routing_with_fmt drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xc86897a7 v4l2_subdev_state_get_stream_format drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xed6c9ccf v4l2_subdev_state_get_stream_crop drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xb5a337db v4l2_subdev_state_get_stream_compose drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xcf754c8f v4l2_subdev_routing_find_opposite_end drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x65d7839c v4l2_subdev_state_get_opposite_stream_format drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x4894cd55 v4l2_subdev_state_xlate_streams drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x6b6b46e7 v4l2_subdev_routing_validate drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x046c8262 v4l2_subdev_enable_streams drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xccfb6c64 v4l2_subdev_disable_streams drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x1badd46d v4l2_subdev_s_stream_helper drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xba2b6bb7 v4l2_subdev_init drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x84a7e1f5 v4l2_subdev_notify_event drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x8e0b90bf v4l2_subdev_get_privacy_led drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x49ad91d5 v4l2_subdev_put_privacy_led drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x89e3897d v4l2_ctrl_query_fill drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xf5ef842e v4l_bound_align_image drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xe2822320 __v4l2_find_nearest_size drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xe493a7fc v4l2_g_parm_cap drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x062cbb9a v4l2_s_parm_cap drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x35ff98bf v4l2_format_info drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x9fef35ac v4l2_apply_frmsize_constraints drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x6e9acc41 v4l2_fill_pixfmt_mp drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xcc501597 v4l2_fill_pixfmt drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x385659f2 v4l2_get_link_freq drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xad5c3c93 v4l2_simplify_fraction drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x5074e573 v4l2_fraction_to_interval drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xf3473e44 v4l2_ctrl_type_op_equal drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x4e704b38 v4l2_ctrl_type_op_init drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xe1a9b8cb v4l2_ctrl_type_op_log drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xd4aa5969 v4l2_ctrl_type_op_validate drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xd0ad68ed v4l2_ctrl_notify drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xcbaa68d1 v4l2_ctrl_handler_init_class drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x87c6b6da v4l2_ctrl_handler_free drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x25b918a2 v4l2_ctrl_find drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x79b13845 v4l2_ctrl_new_custom drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xe63130a2 v4l2_ctrl_new_std drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x7279726a v4l2_ctrl_new_std_menu drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xe5e82e61 v4l2_ctrl_new_std_menu_items drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x7e430dd8 v4l2_ctrl_new_std_compound drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xe41cab62 v4l2_ctrl_new_int_menu drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xbef288c9 v4l2_ctrl_add_handler drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xedc4c555 v4l2_ctrl_radio_filter drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x81aaa291 v4l2_ctrl_cluster drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x07eef5f8 v4l2_ctrl_auto_cluster drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x381b4da0 v4l2_ctrl_activate drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x95ec407e __v4l2_ctrl_grab drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x85c2b240 __v4l2_ctrl_handler_setup drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x164ded74 v4l2_ctrl_handler_setup drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xb49e34d1 v4l2_ctrl_handler_log_status drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xe685cc9e v4l2_ctrl_new_fwnode_properties drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x4940556b v4l2_g_ext_ctrls drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x48706282 v4l2_try_ext_ctrls drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xec7aa82a v4l2_s_ext_ctrls drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x1d0bb3b8 v4l2_g_ctrl drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x0d77c400 v4l2_s_ctrl drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xf58f365e v4l2_ctrl_g_ctrl drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x081cf7a3 v4l2_ctrl_g_ctrl_int64 drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xce7666a7 __v4l2_ctrl_s_ctrl drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x2386c7e9 __v4l2_ctrl_s_ctrl_int64 drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x638dc692 __v4l2_ctrl_s_ctrl_string drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x9aa33a1d __v4l2_ctrl_s_ctrl_compound drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xd925c86d __v4l2_ctrl_modify_range drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x8c8945a0 __v4l2_ctrl_modify_dimensions drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xc2c1ac48 v4l2_query_ext_ctrl drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xdc67e663 v4l2_queryctrl drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xfef7e105 v4l2_querymenu drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x95cbe0c0 v4l2_ctrl_log_status drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x9e55d2e0 v4l2_ctrl_subdev_log_status drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xf50fecbc v4l2_ctrl_replace drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x082737e8 v4l2_ctrl_merge drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x38880dba v4l2_ctrl_sub_ev_ops drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x0b221549 v4l2_ctrl_subscribe_event drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x3a375279 v4l2_ctrl_subdev_subscribe_event drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xf5795c66 v4l2_ctrl_poll drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xb5807d10 v4l2_ctrl_request_hdl_find drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x7722728a v4l2_ctrl_request_hdl_ctrl_find drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xb6e63ecf v4l2_ctrl_request_complete drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xdf740cef v4l2_ctrl_request_setup drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x315de2cf v4l2_ctrl_get_menu drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xd16d9c01 v4l2_ctrl_get_int_menu drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x32d43420 v4l2_ctrl_get_name drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0x3b86cd9a v4l2_ctrl_fill drivers/media/v4l2-core/videodev EXPORT_SYMBOL
-0xd42e436b v4l2_compat_ioctl32 drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xde2fa56b v4l2_mc_create_media_graph drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xf9109869 v4l_enable_media_source drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xd88bee89 v4l_disable_media_source drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x5ff55b1a v4l_vb2q_enable_media_source drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x9298f959 v4l2_create_fwnode_links_to_pad drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x185dafb2 v4l2_create_fwnode_links drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x65f8b645 v4l2_pipeline_pm_get drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x52f5c573 v4l2_pipeline_pm_put drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x36ebd730 v4l2_pipeline_link_notify drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x18cd89d2 v4l2_spi_subdev_init drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xa42d5b1d v4l2_spi_new_subdev drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x37eebb15 __tracepoint_vb2_v4l2_buf_done drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xf09ac6d2 __traceiter_vb2_v4l2_buf_done drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xdf90d696 __SCK__tp_func_vb2_v4l2_buf_done drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xbbe4462f __tracepoint_vb2_v4l2_buf_queue drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x2d4087a1 __traceiter_vb2_v4l2_buf_queue drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xcfbdead8 __SCK__tp_func_vb2_v4l2_buf_queue drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x6d5dfe38 __tracepoint_vb2_v4l2_dqbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xf2c3bbe2 __traceiter_vb2_v4l2_dqbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xd467f585 __SCK__tp_func_vb2_v4l2_dqbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x82e55352 __tracepoint_vb2_v4l2_qbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x1cd03763 __traceiter_vb2_v4l2_qbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xde3ae724 __SCK__tp_func_vb2_v4l2_qbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xd3c3d623 v4l2_i2c_subdev_set_name drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x4d6dee87 v4l2_i2c_subdev_init drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xd09b5afe v4l2_i2c_new_subdev_board drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xef5d8258 v4l2_i2c_new_subdev drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xecf2b96d v4l2_i2c_subdev_addr drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0xf2a353ac v4l2_i2c_tuner_addrs drivers/media/v4l2-core/videodev EXPORT_SYMBOL_GPL
-0x19b3d0ec dvb_generic_open drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xda26d2bb dvb_generic_release drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xba835516 dvb_generic_ioctl drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xd7523dd0 dvb_register_device drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x352e6d62 dvb_remove_device drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x8804f5b8 dvb_device_get drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x2c1b5029 dvb_unregister_device drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xbff9bf0f dvb_create_media_graph drivers/media/dvb-core/dvb-core EXPORT_SYMBOL_GPL
-0x55b5ce93 dvb_register_adapter drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xe24b6995 dvb_unregister_adapter drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x8fdbf46c dvb_module_probe drivers/media/dvb-core/dvb-core EXPORT_SYMBOL_GPL
-0x69f8e3d8 dvb_module_release drivers/media/dvb-core/dvb-core EXPORT_SYMBOL_GPL
-0xa870d348 dvb_dmxdev_init drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x0371221d dvb_dmxdev_release drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x18acd31f dvb_dmx_swfilter_packets drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x8c54b0f8 dvb_dmx_swfilter drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x6a9f708a dvb_dmx_swfilter_204 drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xa4235824 dvb_dmx_swfilter_raw drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x54abe4ff dvb_dmx_init drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x9263a063 dvb_dmx_release drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x531787e9 dvb_ca_en50221_camchange_irq drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xd8658931 dvb_ca_en50221_camready_irq drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xebc7a92f dvb_ca_en50221_frda_irq drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xa3bd930c dvb_ca_en50221_init drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x67650d1d dvb_ca_en50221_release drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xa689b799 dvb_frontend_reinitialise drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x3b93d71a dvb_frontend_sleep_until drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xcd2ab1ae dvb_frontend_suspend drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x761d5ee4 dvb_frontend_resume drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xd2c54d51 dvb_register_frontend drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xeff12b13 dvb_unregister_frontend drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x7868c298 dvb_frontend_detach drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x36f90e47 dvb_net_release drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xf994e00a dvb_net_init drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xfb9a826f dvb_ringbuffer_flush drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xebbc2d9b dvb_ringbuffer_init drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xb3352dd2 dvb_ringbuffer_empty drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xfc6380e5 dvb_ringbuffer_free drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xe138ce6b dvb_ringbuffer_avail drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x91a6794b dvb_ringbuffer_read_user drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xfb09f39a dvb_ringbuffer_read drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x2f5cdf80 dvb_ringbuffer_write drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0xc3f679f9 dvb_ringbuffer_write_user drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
-0x8537dc2d cec_allocate_adapter drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x92107152 cec_register_adapter drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0xa164f384 cec_unregister_adapter drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x4aecc3dd cec_delete_adapter drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0xbe4de675 cec_get_edid_phys_addr drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x7566c813 cec_fill_conn_info_from_drm drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0xfd65f32d cec_queue_pin_cec_event drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x0b8d8d31 cec_queue_pin_hpd_event drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x270ae6ff cec_queue_pin_5v_event drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x4c826b67 cec_transmit_done_ts drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x98e2823b cec_transmit_attempt_done_ts drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0xa289b351 cec_transmit_msg drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x5bbe8021 cec_received_msg_ts drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x3c5f5598 cec_s_phys_addr drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x5b5472c3 cec_s_phys_addr_from_edid drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0xcb537ca3 cec_s_conn_info drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x8962fd04 cec_s_log_addrs drivers/media/cec/core/cec EXPORT_SYMBOL_GPL
-0x1aba4567 snd_tea575x_set_freq drivers/media/radio/tea575x EXPORT_SYMBOL
-0x00e6b69f snd_tea575x_enum_freq_bands drivers/media/radio/tea575x EXPORT_SYMBOL
-0x80c550c8 snd_tea575x_g_tuner drivers/media/radio/tea575x EXPORT_SYMBOL
-0x364b2eb4 snd_tea575x_s_hw_freq_seek drivers/media/radio/tea575x EXPORT_SYMBOL
-0x811d4ee9 snd_tea575x_hw_init drivers/media/radio/tea575x EXPORT_SYMBOL
-0x9d792260 snd_tea575x_init drivers/media/radio/tea575x EXPORT_SYMBOL
-0x10f88601 snd_tea575x_exit drivers/media/radio/tea575x EXPORT_SYMBOL
-0x446615bd vid_from_reg drivers/hwmon/hwmon-vid EXPORT_SYMBOL
-0x2f9e7f8e vid_which_vrm drivers/hwmon/hwmon-vid EXPORT_SYMBOL
-0xc0e3ff9c adt7x10_probe drivers/hwmon/adt7x10 EXPORT_SYMBOL_GPL
-0x73b93e96 adt7x10_dev_pm_ops drivers/hwmon/adt7x10 EXPORT_SYMBOL
-0x71620b19 nct6775_reg_is_word_sized drivers/hwmon/nct6775-core EXPORT_SYMBOL_GPL
-0xf1b49eb7 nct6775_update_device drivers/hwmon/nct6775-core EXPORT_SYMBOL_GPL
-0xd0144273 nct6775_show_alarm drivers/hwmon/nct6775-core EXPORT_SYMBOL_GPL
-0xb3f04ea8 nct6775_show_beep drivers/hwmon/nct6775-core EXPORT_SYMBOL_GPL
-0x7474be14 nct6775_store_beep drivers/hwmon/nct6775-core EXPORT_SYMBOL_GPL
-0xf6c6f8a0 nct6775_probe drivers/hwmon/nct6775-core EXPORT_SYMBOL_GPL
-0x01568393 sch56xx_read_virtual_reg drivers/hwmon/sch56xx-common EXPORT_SYMBOL
-0xaa17a737 sch56xx_write_virtual_reg drivers/hwmon/sch56xx-common EXPORT_SYMBOL
-0xb37b9b81 sch56xx_read_virtual_reg16 drivers/hwmon/sch56xx-common EXPORT_SYMBOL
-0x96ec3b26 sch56xx_read_virtual_reg12 drivers/hwmon/sch56xx-common EXPORT_SYMBOL
-0x592011f9 sch56xx_watchdog_register drivers/hwmon/sch56xx-common EXPORT_SYMBOL
-0xc460d08c pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x11aa0814 pmbus_set_update drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x73eebaa2 pmbus_set_page drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x43e51ded pmbus_write_byte drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x6dd6da66 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x41008f9f pmbus_update_fan drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0xbf4f156b pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0xea647abe pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0xb06d4ccb pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x8295d2cb pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x5601fbf8 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0xbb3dd024 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x339fb0ef pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x282f64dc pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x28dcbd70 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x2f07a925 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x55673301 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x8268b85f pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0x8e587af3 pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0xa0f6afef pmbus_unlock drivers/hwmon/pmbus/pmbus_core EXPORT_SYMBOL_GPL PMBUS
-0xb40fbd2e intel_soc_dts_iosf_interrupt_handler drivers/thermal/intel/intel_soc_dts_iosf EXPORT_SYMBOL_GPL
-0xde1f786f intel_soc_dts_iosf_init drivers/thermal/intel/intel_soc_dts_iosf EXPORT_SYMBOL_GPL
-0xef35c7d1 intel_soc_dts_iosf_exit drivers/thermal/intel/intel_soc_dts_iosf EXPORT_SYMBOL_GPL
-0x2e2a2a77 int340x_thermal_zone_add drivers/thermal/intel/int340x_thermal/int340x_thermal_zone EXPORT_SYMBOL_GPL
-0x021814f3 int340x_thermal_zone_remove drivers/thermal/intel/int340x_thermal/int340x_thermal_zone EXPORT_SYMBOL_GPL
-0x35c6641c int340x_thermal_update_trips drivers/thermal/intel/int340x_thermal/int340x_thermal_zone EXPORT_SYMBOL_GPL
-0xe573a5bf proc_thermal_add drivers/thermal/intel/int340x_thermal/processor_thermal_device EXPORT_SYMBOL_GPL
-0xd0205449 proc_thermal_remove drivers/thermal/intel/int340x_thermal/processor_thermal_device EXPORT_SYMBOL_GPL
-0xbe041d6b proc_thermal_suspend drivers/thermal/intel/int340x_thermal/processor_thermal_device EXPORT_SYMBOL_GPL
-0x6a2c638d proc_thermal_resume drivers/thermal/intel/int340x_thermal/processor_thermal_device EXPORT_SYMBOL_GPL
-0x565a071c proc_thermal_mmio_add drivers/thermal/intel/int340x_thermal/processor_thermal_device EXPORT_SYMBOL_GPL
-0x418efcd6 proc_thermal_mmio_remove drivers/thermal/intel/int340x_thermal/processor_thermal_device EXPORT_SYMBOL_GPL
-0xb9ace6d0 proc_thermal_rapl_add drivers/thermal/intel/int340x_thermal/processor_thermal_rapl EXPORT_SYMBOL_GPL
-0x098e82d4 proc_thermal_rapl_remove drivers/thermal/intel/int340x_thermal/processor_thermal_rapl EXPORT_SYMBOL_GPL
-0x09ddf798 proc_thermal_rfim_add drivers/thermal/intel/int340x_thermal/processor_thermal_rfim EXPORT_SYMBOL_GPL
-0x2e0ebcc6 proc_thermal_rfim_remove drivers/thermal/intel/int340x_thermal/processor_thermal_rfim EXPORT_SYMBOL_GPL
-0xe8b863a2 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox EXPORT_SYMBOL_GPL INT340X_THERMAL
-0x48d8afb5 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox EXPORT_SYMBOL_GPL INT340X_THERMAL
-0x06138768 proc_thermal_mbox_add drivers/thermal/intel/int340x_thermal/processor_thermal_mbox EXPORT_SYMBOL_GPL
-0x155ade8a proc_thermal_mbox_remove drivers/thermal/intel/int340x_thermal/processor_thermal_mbox EXPORT_SYMBOL_GPL
-0xf0f9fe0d acpi_parse_trt drivers/thermal/intel/int340x_thermal/acpi_thermal_rel EXPORT_SYMBOL
-0x9103c585 acpi_parse_art drivers/thermal/intel/int340x_thermal/acpi_thermal_rel EXPORT_SYMBOL
-0x1887763e acpi_thermal_rel_misc_device_add drivers/thermal/intel/int340x_thermal/acpi_thermal_rel EXPORT_SYMBOL
-0x86c998e6 acpi_thermal_rel_misc_device_remove drivers/thermal/intel/int340x_thermal/acpi_thermal_rel EXPORT_SYMBOL
-0xed2a3373 iTCO_vendorsupport drivers/watchdog/iTCO_vendor_support EXPORT_SYMBOL
-0xc8930f32 iTCO_vendor_pre_start drivers/watchdog/iTCO_vendor_support EXPORT_SYMBOL
-0x75bec08d iTCO_vendor_pre_stop drivers/watchdog/iTCO_vendor_support EXPORT_SYMBOL
-0x04e133fc iTCO_vendor_check_noreboot_on drivers/watchdog/iTCO_vendor_support EXPORT_SYMBOL
-0x5ed28926 raid5_set_cache_size drivers/md/raid456 EXPORT_SYMBOL
-0x501ebf13 r5c_journal_mode_set drivers/md/raid456 EXPORT_SYMBOL
-0x778d7ee3 __tracepoint_bcache_request_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xf953614c __traceiter_bcache_request_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xadb486a1 __SCK__tp_func_bcache_request_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xd7a7fbec __SCT__tp_func_bcache_request_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xd28e4578 __tracepoint_bcache_request_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xf8a58ca1 __traceiter_bcache_request_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x21213904 __SCK__tp_func_bcache_request_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xfce76b1e __SCT__tp_func_bcache_request_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xe408d9c6 __tracepoint_bcache_bypass_sequential drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xd48b0571 __traceiter_bcache_bypass_sequential drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0640dd68 __SCK__tp_func_bcache_bypass_sequential drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xf57f81ae __SCT__tp_func_bcache_bypass_sequential drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x7d514b35 __tracepoint_bcache_bypass_congested drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x5bd1f48d __traceiter_bcache_bypass_congested drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x8d2ff1fc __SCK__tp_func_bcache_bypass_congested drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x7f252e00 __SCT__tp_func_bcache_bypass_congested drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0ae9f8a7 __tracepoint_bcache_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x86ebda93 __traceiter_bcache_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xa37105c7 __SCK__tp_func_bcache_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xedf90bb3 __SCT__tp_func_bcache_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x7745fa08 __tracepoint_bcache_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x400e5bb3 __traceiter_bcache_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x3a5e03ad __SCK__tp_func_bcache_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x5dd80bd5 __SCT__tp_func_bcache_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x10dc8dba __tracepoint_bcache_read_retry drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x052166c9 __traceiter_bcache_read_retry drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x06d1b9a8 __SCK__tp_func_bcache_read_retry drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x787810b2 __SCT__tp_func_bcache_read_retry drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x601677d2 __tracepoint_bcache_cache_insert drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xb5a62a8c __traceiter_bcache_cache_insert drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x3956e5b9 __SCK__tp_func_bcache_cache_insert drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x752f7fa4 __SCT__tp_func_bcache_cache_insert drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x827a84a2 __tracepoint_bcache_journal_replay_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x2766fb04 __traceiter_bcache_journal_replay_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xb3f64249 __SCK__tp_func_bcache_journal_replay_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xb7e5379d __SCT__tp_func_bcache_journal_replay_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x61bd6f06 __tracepoint_bcache_journal_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x7ec0eeea __traceiter_bcache_journal_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xbb849744 __SCK__tp_func_bcache_journal_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x287090dc __SCT__tp_func_bcache_journal_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x9bcbccfe __tracepoint_bcache_journal_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x79473e48 __traceiter_bcache_journal_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xc28b5e95 __SCK__tp_func_bcache_journal_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xdb0682eb __SCT__tp_func_bcache_journal_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x68ddcf4a __tracepoint_bcache_journal_entry_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xf01bda07 __traceiter_bcache_journal_entry_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x595109a1 __SCK__tp_func_bcache_journal_entry_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x4ee33d3c __tracepoint_bcache_btree_cache_cannibalize drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xe3713de4 __traceiter_bcache_btree_cache_cannibalize drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x6cb39f7e __SCK__tp_func_bcache_btree_cache_cannibalize drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x43e93b24 __tracepoint_bcache_btree_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x8db36122 __traceiter_bcache_btree_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x55e40f36 __SCK__tp_func_bcache_btree_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xce451ad8 __SCT__tp_func_bcache_btree_read drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x03bd2851 __tracepoint_bcache_btree_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x31f1b374 __traceiter_bcache_btree_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xf012542d __SCK__tp_func_bcache_btree_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x629c9180 __SCT__tp_func_bcache_btree_write drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xd5d9eb50 __tracepoint_bcache_btree_node_alloc drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0cbd67b0 __traceiter_bcache_btree_node_alloc drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x25a75199 __SCK__tp_func_bcache_btree_node_alloc drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x5be49859 __tracepoint_bcache_btree_node_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0098f0a2 __traceiter_bcache_btree_node_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x87fd18ea __SCK__tp_func_bcache_btree_node_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xaecdfbb7 __tracepoint_bcache_btree_node_free drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x851cdeff __traceiter_bcache_btree_node_free drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xdfe47627 __SCK__tp_func_bcache_btree_node_free drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x817ad796 __SCT__tp_func_bcache_btree_node_free drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xe9748d22 __tracepoint_bcache_btree_gc_coalesce drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x1c599ebe __traceiter_bcache_btree_gc_coalesce drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0b3c898c __SCK__tp_func_bcache_btree_gc_coalesce drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x8ab0468f __tracepoint_bcache_gc_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xa609e0a0 __traceiter_bcache_gc_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x1a184a51 __SCK__tp_func_bcache_gc_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x6677ebf0 __SCT__tp_func_bcache_gc_start drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x16105741 __tracepoint_bcache_gc_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xc9ed575b __traceiter_bcache_gc_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xb0e11bdf __SCK__tp_func_bcache_gc_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xd7a376b3 __SCT__tp_func_bcache_gc_end drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xaf0bd160 __tracepoint_bcache_gc_copy drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xad6440b4 __traceiter_bcache_gc_copy drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xb81a9e6f __SCK__tp_func_bcache_gc_copy drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x36f317a4 __SCT__tp_func_bcache_gc_copy drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x9626d403 __tracepoint_bcache_gc_copy_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xec29e22a __traceiter_bcache_gc_copy_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x746ed0ad __SCK__tp_func_bcache_gc_copy_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xd30206ff __SCT__tp_func_bcache_gc_copy_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xe01cf4c3 __tracepoint_bcache_btree_insert_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xe384a686 __traceiter_bcache_btree_insert_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x10624e0a __SCK__tp_func_bcache_btree_insert_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x972aa384 __SCT__tp_func_bcache_btree_insert_key drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x3fd9ca67 __tracepoint_bcache_btree_node_split drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0b111f91 __traceiter_bcache_btree_node_split drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xcfa770ae __SCK__tp_func_bcache_btree_node_split drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x9d28d153 __SCT__tp_func_bcache_btree_node_split drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x3e7308bc __tracepoint_bcache_btree_node_compact drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0566026b __traceiter_bcache_btree_node_compact drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x0fffce57 __SCK__tp_func_bcache_btree_node_compact drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xa784e073 __SCT__tp_func_bcache_btree_node_compact drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x18438e16 __tracepoint_bcache_btree_set_root drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xb0beb9f4 __traceiter_bcache_btree_set_root drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x804b9752 __SCK__tp_func_bcache_btree_set_root drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x25cacb14 __SCT__tp_func_bcache_btree_set_root drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xad6df67b __tracepoint_bcache_invalidate drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x57fcc6dd __traceiter_bcache_invalidate drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xbb60c269 __SCK__tp_func_bcache_invalidate drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xc73e0c99 __SCT__tp_func_bcache_invalidate drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xa4a8518d __tracepoint_bcache_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x70fb7f06 __traceiter_bcache_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xb2a5659f __SCK__tp_func_bcache_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x300c8ff4 __SCT__tp_func_bcache_alloc_fail drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x499322b8 __tracepoint_bcache_writeback drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x17a83e40 __traceiter_bcache_writeback drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x28687567 __SCK__tp_func_bcache_writeback drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xfb767f16 __SCT__tp_func_bcache_writeback drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xe98ed888 __tracepoint_bcache_writeback_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x64e39418 __traceiter_bcache_writeback_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0xde676fbe __SCK__tp_func_bcache_writeback_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x4543b49b __SCT__tp_func_bcache_writeback_collision drivers/md/bcache/bcache EXPORT_SYMBOL_GPL
-0x44d06a32 dm_send_uevents drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xc31aaca8 dm_path_uevent drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xae35a128 dm_report_zones drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x6478ec3f dm_audit_log_ti drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x95649773 dm_audit_log_bio drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xb62c55d8 dm_per_bio_data drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xfbe1230e dm_bio_from_per_bio_data drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xc85f9b64 dm_bio_get_target_bio_nr drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x38f704de dm_get_reserved_bio_based_ios drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x409dbd2e dm_start_time_ns_from_clone drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xdb2be34e dm_set_target_max_io_len drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xd5410734 dm_accept_partial_bio drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x184c1663 dm_submit_bio_remap drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xfe779aba dm_get_md drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xaf1c1ca2 dm_hold drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xad8955d8 dm_device_name drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x6a5d5642 dm_put drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x398c781a dm_internal_suspend_noflush drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xeb6dfc9b dm_internal_resume drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xbdb448f2 dm_internal_suspend_fast drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x2458afff dm_internal_resume_fast drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xef646288 dm_disk drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x758e5efc dm_suspended drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x8e46d84d dm_post_suspending drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xe15b5d7f dm_noflush_suspending drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0xfed53394 dm_get_device drivers/md/dm-mod EXPORT_SYMBOL
-0xf83514ba dm_put_device drivers/md/dm-mod EXPORT_SYMBOL
-0x056bcf7b dm_read_arg drivers/md/dm-mod EXPORT_SYMBOL
-0x39c74235 dm_read_arg_group drivers/md/dm-mod EXPORT_SYMBOL
-0x7d27e504 dm_shift_arg drivers/md/dm-mod EXPORT_SYMBOL
-0x669c191b dm_consume_args drivers/md/dm-mod EXPORT_SYMBOL
-0x8464f77b dm_table_set_type drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x4a4b76c1 dm_table_event drivers/md/dm-mod EXPORT_SYMBOL
-0xa68386d0 dm_table_get_size drivers/md/dm-mod EXPORT_SYMBOL
-0x23e03506 dm_table_get_mode drivers/md/dm-mod EXPORT_SYMBOL
-0x40b9748d dm_table_get_md drivers/md/dm-mod EXPORT_SYMBOL
-0x20ac36c8 dm_table_device_name drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x904c5b2f dm_table_run_md_queue_async drivers/md/dm-mod EXPORT_SYMBOL
-0xcad7b068 dm_register_target drivers/md/dm-mod EXPORT_SYMBOL
-0xb51f8669 dm_unregister_target drivers/md/dm-mod EXPORT_SYMBOL
-0x660baee1 dm_copy_name_and_uuid drivers/md/dm-mod EXPORT_SYMBOL_GPL
-0x601f665f dm_io_client_create drivers/md/dm-mod EXPORT_SYMBOL
-0x9e4faeef dm_io_client_destroy drivers/md/dm-mod EXPORT_SYMBOL
-0xabbff361 dm_io drivers/md/dm-mod EXPORT_SYMBOL
-0x7b2e0a78 dm_kcopyd_copy drivers/md/dm-mod EXPORT_SYMBOL
-0x4e2a157e dm_kcopyd_zero drivers/md/dm-mod EXPORT_SYMBOL
-0xf1f88a0e dm_kcopyd_prepare_callback drivers/md/dm-mod EXPORT_SYMBOL
-0xf2a8efae dm_kcopyd_do_callback drivers/md/dm-mod EXPORT_SYMBOL
-0x9dd9df13 dm_kcopyd_client_create drivers/md/dm-mod EXPORT_SYMBOL
-0x154c6338 dm_kcopyd_client_destroy drivers/md/dm-mod EXPORT_SYMBOL
-0x90006be6 dm_kcopyd_client_flush drivers/md/dm-mod EXPORT_SYMBOL
-0x79a8ea8d dm_mq_kick_requeue_list drivers/md/dm-mod EXPORT_SYMBOL
-0x24772bfe dm_bufio_get drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xb04f56ab dm_bufio_read drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xc0d7df85 dm_bufio_new drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x6cdb2d56 dm_bufio_prefetch drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xe6024e59 dm_bufio_release drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x0ad0dc4f dm_bufio_mark_buffer_dirty drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xc9a3422d dm_bufio_write_dirty_buffers_async drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xa82b2066 dm_bufio_write_dirty_buffers drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xd4bddf5c dm_bufio_issue_flush drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x6aebce95 dm_bufio_issue_discard drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xcd2ba798 dm_bufio_forget drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xf241a6eb dm_bufio_forget_buffers drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x91f00abc dm_bufio_set_minimum_buffers drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x6d83826d dm_bufio_get_block_size drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xd991e3b9 dm_bufio_get_device_size drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x867e87eb dm_bufio_get_dm_io_client drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x2e0774dc dm_bufio_get_block_number drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xebcc64a4 dm_bufio_get_block_data drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x74dcd98c dm_bufio_get_aux_data drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x6d3f57bd dm_bufio_get_client drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x614338f3 dm_bufio_client_create drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xeca7949e dm_bufio_client_destroy drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x656100cc dm_bufio_client_reset drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0xed3283a4 dm_bufio_set_sector_offset drivers/md/dm-bufio EXPORT_SYMBOL_GPL
-0x753e20b2 dm_bio_prison_create drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xb70b342a dm_bio_prison_destroy drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xf78ffe6c dm_bio_prison_alloc_cell drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x61481385 dm_bio_prison_free_cell drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x476d2454 dm_cell_key_has_valid_range drivers/md/dm-bio-prison EXPORT_SYMBOL
-0x79ed7055 dm_bio_detain drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xbffc170d dm_get_cell drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x1b4643ee dm_cell_release drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x99fe13e8 dm_cell_release_no_holder drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xf9786de4 dm_cell_error drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x7416b498 dm_cell_visit_release drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x8de62f3c dm_cell_promote_or_release drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x17dd39d6 dm_deferred_set_create drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x2eb01e04 dm_deferred_set_destroy drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xca2e3a88 dm_deferred_entry_inc drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x6791a44e dm_deferred_entry_dec drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xb6d5c65d dm_deferred_set_add_work drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xd99e003d dm_bio_prison_create_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0xace9b57b dm_bio_prison_destroy_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x5d0f89ca dm_bio_prison_alloc_cell_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x2da54893 dm_bio_prison_free_cell_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x2d9bc8fd dm_cell_get_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x26c64b84 dm_cell_put_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x9e8f70b5 dm_cell_lock_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x08089865 dm_cell_quiesce_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x32f6962f dm_cell_lock_promote_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x0a9d5f49 dm_cell_unlock_v2 drivers/md/dm-bio-prison EXPORT_SYMBOL_GPL
-0x5900a577 dm_register_path_selector drivers/md/dm-multipath EXPORT_SYMBOL_GPL
-0x9eef4179 dm_unregister_path_selector drivers/md/dm-multipath EXPORT_SYMBOL_GPL
-0x7a233720 dm_snap_origin drivers/md/dm-snapshot EXPORT_SYMBOL
-0x1fb84eac dm_snap_cow drivers/md/dm-snapshot EXPORT_SYMBOL
-0xf0dcd77c dm_exception_store_type_register drivers/md/dm-snapshot EXPORT_SYMBOL
-0x562bfb07 dm_exception_store_type_unregister drivers/md/dm-snapshot EXPORT_SYMBOL
-0xed2980f2 dm_exception_store_create drivers/md/dm-snapshot EXPORT_SYMBOL
-0xe6e5c1f1 dm_exception_store_destroy drivers/md/dm-snapshot EXPORT_SYMBOL
-0xb940af6a dm_array_info_init drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x1d0d53f7 dm_array_empty drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xe0e68183 dm_array_resize drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xd017c9c7 dm_array_new drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x38d53eec dm_array_del drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x6fac2256 dm_array_get_value drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x418204e4 dm_array_set_value drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x3896f8d8 dm_array_walk drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x0d251167 dm_array_cursor_begin drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x8e057e61 dm_array_cursor_end drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x68f34c27 dm_array_cursor_next drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x87419c51 dm_array_cursor_skip drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x67c6c5b9 dm_array_cursor_get_value drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x836693c5 dm_disk_bitset_init drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x46c56110 dm_bitset_empty drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xe07a2542 dm_bitset_new drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x2842d760 dm_bitset_resize drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x07ed9022 dm_bitset_del drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xedf5036f dm_bitset_flush drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x40720a25 dm_bitset_set_bit drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x5b04d3fe dm_bitset_clear_bit drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xecc1aeba dm_bitset_test_bit drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x6bfa88c8 dm_bitset_cursor_begin drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xa99029b9 dm_bitset_cursor_end drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x94daa188 dm_bitset_cursor_next drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x51005cef dm_bitset_cursor_skip drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x32bf4f4b dm_bitset_cursor_get_value drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x5475ba9e dm_block_location drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x1e3f728d dm_block_data drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x9c539aca dm_block_manager_create drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x72289260 dm_block_manager_destroy drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x703aa099 dm_block_manager_reset drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x7612cd9c dm_bm_block_size drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x7b6b3af5 dm_bm_read_lock drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x5375ca71 dm_bm_write_lock drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x30c37cc0 dm_bm_write_lock_zero drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x48e323be dm_bm_unlock drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x3ad0f55b dm_bm_flush drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x95a52abd dm_bm_is_read_only drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x9e798e22 dm_bm_set_read_only drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x2f40da68 dm_bm_set_read_write drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x4f477261 dm_bm_checksum drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x79bdc649 dm_sm_disk_create drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x9718cffa dm_sm_disk_open drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x7b047bd9 dm_tm_create_non_blocking_clone drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x7ade1071 dm_tm_destroy drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x0054f69d dm_tm_pre_commit drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xd163cade dm_tm_commit drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x932a6ffc dm_tm_shadow_block drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x9290e07a dm_tm_read_lock drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x88295b96 dm_tm_unlock drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x87c934be dm_tm_inc drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x3ae50a4a dm_tm_inc_range drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xe781f874 dm_tm_dec drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x1ae16d40 dm_tm_dec_range drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x0211c39e dm_tm_with_runs drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x3646e38f dm_tm_issue_prefetches drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xdf3a4e7d dm_tm_create_with_sm drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x2bc1a8d9 dm_tm_open_with_sm drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xbdde4031 dm_btree_empty drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x6c600395 dm_btree_del drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xdb2c8e97 dm_btree_lookup drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x15a2bf57 dm_btree_lookup_next drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xd8682982 dm_btree_insert drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x4f2c653e dm_btree_insert_notify drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x91baa32f dm_btree_find_highest_key drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x088a5b30 dm_btree_find_lowest_key drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x109eae1f dm_btree_walk drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x01f7c2b0 dm_btree_cursor_begin drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xa0bc1801 dm_btree_cursor_end drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xf71f197e dm_btree_cursor_next drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x900896b9 dm_btree_cursor_skip drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0xf2b4509a dm_btree_cursor_get_value drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x0cf7c42f dm_btree_remove drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x563946a0 dm_btree_remove_leaves drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
-0x7fc976a6 dm_dirty_log_type_register drivers/md/dm-log EXPORT_SYMBOL
-0x654c9aa5 dm_dirty_log_type_unregister drivers/md/dm-log EXPORT_SYMBOL
-0xd3665cea dm_dirty_log_create drivers/md/dm-log EXPORT_SYMBOL
-0x72214722 dm_dirty_log_destroy drivers/md/dm-log EXPORT_SYMBOL
-0x38972f23 dm_rh_region_to_sector drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x97156731 dm_rh_bio_to_region drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xd8aa4284 dm_rh_region_context drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x7d5e1815 dm_rh_get_region_key drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xf92b8a3d dm_rh_get_region_size drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x976400db dm_region_hash_create drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x38efaf5a dm_region_hash_destroy drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xbb7fd67d dm_rh_dirty_log drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x57e16c3e dm_rh_get_state drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xed661843 dm_rh_mark_nosync drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x3a18389a dm_rh_update_states drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x3cae8947 dm_rh_inc_pending drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x5f4a6e61 dm_rh_dec drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xbe38a431 dm_rh_recovery_prepare drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x01d2f9ac dm_rh_recovery_start drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xa83588eb dm_rh_recovery_end drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xfd93482e dm_rh_recovery_in_flight drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0xa53387c7 dm_rh_flush drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x32e3e597 dm_rh_delay drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x7774620f dm_rh_stop_recovery drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x7d053fc5 dm_rh_start_recovery drivers/md/dm-region-hash EXPORT_SYMBOL_GPL
-0x9818b1e0 dm_cache_policy_register drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0xa465f716 dm_cache_policy_unregister drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x50b3c64c dm_cache_policy_create drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0xf9f3e74b dm_cache_policy_destroy drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x37ef59a5 dm_cache_policy_get_name drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x23ddc5ab dm_cache_policy_get_version drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x4becb830 dm_cache_policy_get_hint_size drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x481a0b15 btracker_create drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x5adc2807 btracker_destroy drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x65eea825 btracker_nr_writebacks_queued drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x1c852cab btracker_nr_demotions_queued drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x87bee547 btracker_queue drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0xa2365f44 btracker_issue drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0xa7eadcb5 btracker_complete drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x0efbca4c btracker_promotion_already_present drivers/md/dm-cache EXPORT_SYMBOL_GPL
-0x2adb473e mISDNisac_irq drivers/isdn/hardware/mISDN/mISDNipac EXPORT_SYMBOL
-0x32d50fa6 mISDNisac_init drivers/isdn/hardware/mISDN/mISDNipac EXPORT_SYMBOL
-0x1dee44cc mISDNipac_irq drivers/isdn/hardware/mISDN/mISDNipac EXPORT_SYMBOL
-0x42701097 mISDNipac_init drivers/isdn/hardware/mISDN/mISDNipac EXPORT_SYMBOL
-0x6b5d372b mISDNisar_irq drivers/isdn/hardware/mISDN/mISDNisar EXPORT_SYMBOL
-0x0a8a070a mISDNisar_init drivers/isdn/hardware/mISDN/mISDNisar EXPORT_SYMBOL
-0x4644eea5 isdnhdlc_out_init drivers/isdn/hardware/mISDN/isdnhdlc EXPORT_SYMBOL
-0x5b835a58 isdnhdlc_rcv_init drivers/isdn/hardware/mISDN/isdnhdlc EXPORT_SYMBOL
-0x27c58fd5 isdnhdlc_decode drivers/isdn/hardware/mISDN/isdnhdlc EXPORT_SYMBOL
-0xef4ee223 isdnhdlc_encode drivers/isdn/hardware/mISDN/isdnhdlc EXPORT_SYMBOL
-0x38e07b4c capi_ctr_handle_message drivers/isdn/capi/kernelcapi EXPORT_SYMBOL
-0x0250932d capi_ctr_ready drivers/isdn/capi/kernelcapi EXPORT_SYMBOL
-0x842e52e5 capi_ctr_down drivers/isdn/capi/kernelcapi EXPORT_SYMBOL
-0xea9243a2 attach_capi_ctr drivers/isdn/capi/kernelcapi EXPORT_SYMBOL
-0x4641465b detach_capi_ctr drivers/isdn/capi/kernelcapi EXPORT_SYMBOL
-0x53f14821 mISDN_register_device drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x70638429 mISDN_unregister_device drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x7f696b15 mISDN_register_Bprotocol drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xeb87f519 mISDN_unregister_Bprotocol drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xeac3062e mISDNDevName4ch drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x9c928457 mISDN_FsmNew drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x2348cc3c mISDN_FsmFree drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xd5145151 mISDN_FsmEvent drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x50c2230c mISDN_FsmChangeState drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xb61ad593 mISDN_FsmInitTimer drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x6a8cd362 mISDN_FsmDelTimer drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xd2bbbe92 mISDN_FsmAddTimer drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x2234566c mISDN_FsmRestartTimer drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xc3401729 mISDN_register_clock drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xe8f617eb mISDN_unregister_clock drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x26236de8 mISDN_clock_update drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xd285995f mISDN_clock_get drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xc62a8add mISDN_initdchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xf54eb1f5 mISDN_initbchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xf59ef44c mISDN_freedchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x179f741a mISDN_clear_bchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x69c52380 mISDN_freebchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x0dfb3644 mISDN_ctrl_bchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x7f02ff6d recv_Dchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x845d89b5 recv_Echannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x4d21729f recv_Bchannel drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x449b707f recv_Dchannel_skb drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x380483cc recv_Bchannel_skb drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x0c15d3bc get_next_dframe drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x0d5285f3 get_next_bframe drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x2a8161e6 queue_ch_frame drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xfc7f6e00 dchannel_senddata drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0xe058095b bchannel_senddata drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x8e5bdeb6 bchannel_get_rxbuf drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x588886a6 l1_event drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x3462bb8e create_l1 drivers/isdn/mISDN/mISDN_core EXPORT_SYMBOL
-0x93df9e4b dsp_audio_law_to_s32 drivers/isdn/mISDN/mISDN_dsp EXPORT_SYMBOL
-0xb07a21b8 dsp_audio_s16_to_law drivers/isdn/mISDN/mISDN_dsp EXPORT_SYMBOL
-0xb98308d8 mISDN_dsp_element_register drivers/isdn/mISDN/mISDN_dsp EXPORT_SYMBOL
-0x01087af0 mISDN_dsp_element_unregister drivers/isdn/mISDN/mISDN_dsp EXPORT_SYMBOL
-0x8592d892 amd_register_ecc_decoder drivers/edac/edac_mce_amd EXPORT_SYMBOL_GPL
-0x0be1a4d8 amd_unregister_ecc_decoder drivers/edac/edac_mce_amd EXPORT_SYMBOL_GPL
-0x1d34e996 pp_msgs drivers/edac/edac_mce_amd EXPORT_SYMBOL_GPL
-0x2b67f096 speedstep_get_frequency drivers/cpufreq/speedstep-lib EXPORT_SYMBOL_GPL
-0xd7ab2c0c speedstep_detect_processor drivers/cpufreq/speedstep-lib EXPORT_SYMBOL_GPL
-0x1b1f2bda speedstep_get_freqs drivers/cpufreq/speedstep-lib EXPORT_SYMBOL_GPL
-0x6ebd8be8 sdhci_dumpregs drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xaa47ee55 sdhci_enable_v4_mode drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x7b8aa336 sdhci_reset drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x3d5a63f6 sdhci_adma_write_desc drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x7b284dcd sdhci_set_data_timeout_irq drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x92097862 __sdhci_set_timeout drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x6608ff7b sdhci_switch_external_dma drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xd80d234c sdhci_calc_clk drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x49778764 sdhci_enable_clk drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x6e0d5f82 sdhci_set_clock drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xf8fb0432 sdhci_set_power_noreg drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x029e2acb sdhci_set_power drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x864fa262 sdhci_set_power_and_bus_voltage drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xea4c2126 sdhci_request drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xcfb4574b sdhci_request_atomic drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x5cab18e6 sdhci_set_bus_width drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xa38253a4 sdhci_set_uhs_signaling drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xb9793aac sdhci_set_ios drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xb75d04f7 sdhci_get_cd_nogpio drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x2e12e32d sdhci_enable_sdio_irq drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xeda37a14 sdhci_start_signal_voltage_switch drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x82ab2109 sdhci_start_tuning drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x84cba559 sdhci_end_tuning drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x431ee2ff sdhci_reset_tuning drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x9d911717 sdhci_abort_tuning drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xa5a2d14d sdhci_send_tuning drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x06c11df7 sdhci_execute_tuning drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xa26fa13f sdhci_suspend_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xd936537d sdhci_resume_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x4651291f sdhci_runtime_suspend_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x313fbb15 sdhci_runtime_resume_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x9b30aab8 sdhci_cqe_enable drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x0a815b00 sdhci_cqe_disable drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x7e3db00c sdhci_cqe_irq drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x771514dd sdhci_alloc_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xe615b104 __sdhci_read_caps drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x47fc5dcb sdhci_setup_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xc7dea4b4 sdhci_cleanup_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x8ac24559 __sdhci_add_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xfa974084 sdhci_add_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x989354c5 sdhci_remove_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0xa62e8c3b sdhci_free_host drivers/mmc/host/sdhci EXPORT_SYMBOL_GPL
-0x2d1bab97 sdhci_pltfm_clk_get_max_clock drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x32088a64 sdhci_get_property drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x6adfe0bb sdhci_pltfm_init drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x9165ec51 sdhci_pltfm_free drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0xe3e36521 sdhci_pltfm_init_and_add_host drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x9fa6607b sdhci_pltfm_remove drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x82df1d5e sdhci_pltfm_suspend drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x9c4ee4ba sdhci_pltfm_resume drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x3f4b8996 sdhci_pltfm_pmops drivers/mmc/host/sdhci-pltfm EXPORT_SYMBOL_GPL
-0x86d425ca cqhci_deactivate drivers/mmc/host/cqhci EXPORT_SYMBOL
-0xeb528342 cqhci_resume drivers/mmc/host/cqhci EXPORT_SYMBOL
-0xb9732556 cqhci_irq drivers/mmc/host/cqhci EXPORT_SYMBOL
-0x39abadec cqhci_pltfm_init drivers/mmc/host/cqhci EXPORT_SYMBOL
-0x1efedfeb cqhci_init drivers/mmc/host/cqhci EXPORT_SYMBOL
-0xb930dc79 mmc_command_done drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xae89fde7 mmc_request_done drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x56b64225 mmc_start_request drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x433790a7 mmc_wait_for_req_done drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x6c676305 mmc_cqe_start_req drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xae04ad99 mmc_cqe_request_done drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xc782ec86 mmc_cqe_post_req drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x20233473 mmc_cqe_recovery drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xc4b6b432 mmc_is_req_done drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x3faaa43b mmc_wait_for_req drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xb3ef9229 mmc_wait_for_cmd drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x1f93bdf1 mmc_set_data_timeout drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x45af9173 __mmc_claim_host drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xc230f84e mmc_release_host drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xff206e21 mmc_get_card drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xee92f6c1 mmc_put_card drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x4e99a3e4 mmc_detect_change drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xd73bc48a mmc_erase drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x380aca45 mmc_can_erase drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x4503f109 mmc_can_trim drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xa854585b mmc_can_discard drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xecde6e4d mmc_can_secure_erase_trim drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xb8dddb11 mmc_erase_group_aligned drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x1f6c6c55 mmc_calc_max_discard drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xda75c89e mmc_card_is_blockaddr drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x238c61dd mmc_set_blocklen drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x139e5789 mmc_hw_reset drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xb0b5e718 mmc_sw_reset drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x1833482c mmc_detect_card_removed drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x7c313d3d mmc_card_alternative_gpt_sector drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xb82a0634 mmc_register_driver drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x5659f20c mmc_unregister_driver drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x57de99aa mmc_retune_pause drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x4a491022 mmc_retune_unpause drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xaeb1d9aa mmc_retune_timer_stop drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x61dc42b0 mmc_retune_release drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x59a98412 mmc_of_parse_clk_phase drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x3f5ad600 mmc_of_parse drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xc8facbf8 mmc_of_parse_voltage drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x852a516e mmc_alloc_host drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x98887a99 devm_mmc_alloc_host drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x67d52448 mmc_add_host drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x297909d4 mmc_remove_host drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x84074158 mmc_free_host drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x359c129e __mmc_send_status drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xeda9c356 mmc_send_status drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xb6397e86 mmc_get_ext_csd drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x47722b56 __mmc_poll_for_busy drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x9b8ad145 mmc_poll_for_busy drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xdffdf436 mmc_prepare_busy_cmd drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x38fa768d mmc_switch drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x7b3c7c93 mmc_send_tuning drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x7b7444f9 mmc_send_abort_tuning drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x0f4c44d9 mmc_run_bkops drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xc3ea46b6 mmc_cmdq_enable drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xe0dffc92 mmc_cmdq_disable drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x0958dd7b mmc_sanitize drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xf2a60ea7 mmc_app_cmd drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x5e503bdb mmc_sd_switch drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x04aec5d4 sdio_register_driver drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xe0bf674d sdio_unregister_driver drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x7fcb78f3 sdio_claim_host drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xc181d5f6 sdio_release_host drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xb5608644 sdio_enable_func drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x20ac68b3 sdio_disable_func drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x7474f2f2 sdio_set_block_size drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xc3d2165a sdio_align_size drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x92b1b65a sdio_readb drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x08d7656e sdio_writeb drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xd0cfefe9 sdio_writeb_readb drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xe9ccee24 sdio_memcpy_fromio drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x40bbd52f sdio_memcpy_toio drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x97dbc4b5 sdio_readsb drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x5c55e0ac sdio_writesb drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xc5544610 sdio_readw drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x0b6c26e2 sdio_writew drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xf5935786 sdio_readl drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x908534a2 sdio_writel drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x4856071f sdio_f0_readb drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x7cc32623 sdio_f0_writeb drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xd4dc8442 sdio_get_host_pm_caps drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xc836ca71 sdio_set_host_pm_flags drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x11ad18fb sdio_retune_crc_disable drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xf19bd7f2 sdio_retune_crc_enable drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x9fe88f65 sdio_retune_hold_now drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x7c236df0 sdio_retune_release drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xe2a879df sdio_signal_irq drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0xd3ae5ff1 sdio_claim_irq drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x0e2bb5fb sdio_release_irq drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x55829413 mmc_gpio_set_cd_irq drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x4f5f1c00 mmc_gpio_get_ro drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xf2072ce0 mmc_gpio_get_cd drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x9bb86d2b mmc_gpiod_request_cd_irq drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xd0477f34 mmc_gpio_set_cd_wake drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x470c133d mmc_gpio_set_cd_isr drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x72ee1b0f mmc_gpiod_request_cd drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xdeec7539 mmc_can_gpio_cd drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xe456b75b mmc_gpiod_request_ro drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0x58736389 mmc_can_gpio_ro drivers/mmc/core/mmc_core EXPORT_SYMBOL
-0xe7f1effc mmc_regulator_get_supply drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x642869fc mmc_regulator_enable_vqmmc drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x1afd0a35 mmc_regulator_disable_vqmmc drivers/mmc/core/mmc_core EXPORT_SYMBOL_GPL
-0x749e05f2 ledtrig_flash_ctrl drivers/leds/trigger/ledtrig-camera EXPORT_SYMBOL_GPL
-0x7903e46e ledtrig_torch_ctrl drivers/leds/trigger/ledtrig-camera EXPORT_SYMBOL_GPL
-0xce593c22 ledtrig_audio_get drivers/leds/trigger/ledtrig-audio EXPORT_SYMBOL_GPL
-0x3bd45b0d ledtrig_audio_set drivers/leds/trigger/ledtrig-audio EXPORT_SYMBOL_GPL
-0x04773b60 ccp_present drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x3a1a3979 ccp_version drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x42661e0b ccp_enqueue_cmd drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0xd02e197f sev_platform_init drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x2e6a6147 psp_copy_user_blob drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x91722dce sev_platform_status drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x4073e924 sev_guest_deactivate drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x3e059f28 sev_guest_activate drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x843d6541 sev_guest_decommission drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x8fac14a2 sev_guest_df_flush drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x973023f4 sev_issue_cmd_external_user drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0xaa04056c psp_tee_process_cmd drivers/crypto/ccp/ccp EXPORT_SYMBOL
-0x47d3c97f psp_check_tee_status drivers/crypto/ccp/ccp EXPORT_SYMBOL
-0x4a937398 psp_check_platform_access_status drivers/crypto/ccp/ccp EXPORT_SYMBOL
-0x210b12e2 psp_send_platform_access_msg drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x6ea40704 psp_ring_platform_doorbell drivers/crypto/ccp/ccp EXPORT_SYMBOL_GPL
-0x910485b7 adf_cfg_dev_add drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xfc0b6b3b adf_cfg_dev_remove drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x8bc74f85 adf_cfg_add_key_value_param drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x3b92abb3 adf_cfg_section_add drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xf59cd9fb adf_cfg_get_param_value drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xbdbf09e0 adf_isr_resource_free drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x79ffaeb9 adf_isr_resource_alloc drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xc9dd5b96 adf_cfg_services drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x2cd839cb adf_get_service_enabled drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xcc3b167a adf_clean_vf_map drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x68c780fb adf_devmgr_update_class_index drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xd13386c8 adf_devmgr_add_dev drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x3bfdd662 adf_devmgr_rm_dev drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xb5d6cf5c adf_devmgr_pci_to_accel_dev drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xc5d9b367 adf_dev_in_use drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x99e029bd adf_dev_get drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x4ad0de11 adf_dev_put drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x5514e221 adf_devmgr_in_reset drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x3735159e adf_dev_started drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x305d8b5e adf_dev_down drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x716db3c4 adf_dev_up drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x67c51140 adf_dev_restart drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xe93da1d3 adf_reset_sbr drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x8b395dba adf_reset_flr drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xd3cddcff adf_err_handler drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x2d144083 adf_init_etr_data drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xf792cfa0 adf_cleanup_etr_data drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xe3e58238 adf_send_admin_init drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x717ba690 adf_init_admin_comms drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x8d7090d8 adf_exit_admin_comms drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x8e6c0b87 adf_init_arb drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x41a57158 adf_exit_arb drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x3fe59778 adf_sysfs_init drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x56f3d835 adf_gen2_get_num_accels drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x2870bcdb adf_gen2_get_num_aes drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x0086b1a8 adf_gen2_enable_error_correction drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x0b7e6c72 adf_gen2_cfg_iov_thds drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x3e707f37 adf_gen2_get_admin_info drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x2be4e269 adf_gen2_get_arb_info drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x4197351d adf_gen2_enable_ints drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xd64519f1 adf_gen2_init_hw_csr_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xdf436fad adf_gen2_get_accel_cap drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xab955d36 adf_gen2_set_ssm_wdtimer drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x5d211cfa adf_gen2_dev_config drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xc38ce64b adf_gen4_dev_config drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x3ac0db8b adf_gen4_cfg_dev_init drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xc501ac82 adf_gen4_init_hw_csr_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xc497a938 adf_gen4_get_accel_mask drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x832ee877 adf_gen4_get_num_accels drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x7039d96f adf_gen4_get_num_aes drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xf4fb1d58 adf_gen4_get_misc_bar_id drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x7e44d29c adf_gen4_get_etr_bar_id drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x6d721078 adf_gen4_get_sram_bar_id drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x057c2699 adf_gen4_get_sku drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x4c051dc4 adf_gen4_get_arb_info drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x2230d349 adf_gen4_get_admin_info drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xfc84c570 adf_gen4_get_heartbeat_clock drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xea1844a0 adf_gen4_enable_error_correction drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xdbab0cbf adf_gen4_enable_ints drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x0f08da39 adf_gen4_init_device drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x04645102 adf_gen4_set_ssm_wdtimer drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xa83a2942 adf_gen4_set_msix_default_rttable drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x7c2a3f42 adf_pfvf_comms_disabled drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x7f96fab3 adf_gen4_ring_pair_reset drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x61634bed adf_gen4_init_thd2arb_map drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x65c2a82b adf_gen4_get_ring_to_svc_map drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xb889654e adf_gen4_handle_pm_interrupt drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x7ab24d79 adf_gen4_enable_pm drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xe45f3512 adf_gen2_init_dc_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xe327f1f1 adf_gen4_init_dc_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xd2df0070 adf_gen4_init_ras_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xee78fdb5 adf_gen4_timer_start drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xcf92ebd3 adf_gen4_timer_stop drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xe9f2cc49 adf_dev_measure_clock drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x9508b85b adf_gen4_init_tl_data drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x31262cb0 adf_heartbeat_check_ctrs drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x1a4b6a7a adf_heartbeat_save_cfg_param drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xa94ff44e adf_heartbeat_dbgfs_add drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xa7b02f54 adf_heartbeat_dbgfs_rm drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x7221c893 adf_dbgfs_init drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x483bcd92 adf_dbgfs_exit drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xcbc800bf adf_disable_sriov drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xa1c789fc adf_sriov_configure drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x4e77ff4f adf_disable_pf2vf_interrupts drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xaba38e98 adf_vf_isr_resource_free drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xb7bea7b8 adf_vf_isr_resource_alloc drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x711f9a85 adf_flush_vf_wq drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xf98dfe4b adf_enable_pf2vf_comms drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xcab975e5 adf_vf2pf_notify_init drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x7ccb5dda adf_vf2pf_notify_shutdown drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x6a61aa55 adf_enable_vf2pf_comms drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0xb18bf6f3 adf_gen2_init_pf_pfvf_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x93f0f68f adf_gen2_init_vf_pfvf_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x1e7afac7 adf_gen4_init_pf_pfvf_ops drivers/crypto/intel/qat/qat_common/intel_qat EXPORT_SYMBOL_GPL CRYPTO_QAT
-0x3e4427c8 roccat_report_event drivers/hid/hid-roccat EXPORT_SYMBOL_GPL
-0xfa21b3ff roccat_connect drivers/hid/hid-roccat EXPORT_SYMBOL_GPL
-0x2f622ea1 roccat_disconnect drivers/hid/hid-roccat EXPORT_SYMBOL_GPL
-0x84da5265 roccat_common2_receive drivers/hid/hid-roccat-common EXPORT_SYMBOL_GPL
-0x6c862169 roccat_common2_send drivers/hid/hid-roccat-common EXPORT_SYMBOL_GPL
-0x4b1923d7 roccat_common2_send_with_status drivers/hid/hid-roccat-common EXPORT_SYMBOL_GPL
-0x9eda597b roccat_common2_device_init_struct drivers/hid/hid-roccat-common EXPORT_SYMBOL_GPL
-0x4eae081c roccat_common2_sysfs_read drivers/hid/hid-roccat-common EXPORT_SYMBOL_GPL
-0xf449b8a2 roccat_common2_sysfs_write drivers/hid/hid-roccat-common EXPORT_SYMBOL_GPL
-0x6cfb932d ishtp_device_init drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x31960e6e ishtp_start drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x6631af0b ishtp_send_suspend drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x89804741 ishtp_send_resume drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x13ecf87f ishtp_cl_get_tx_free_buffer_size drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x9ee8aaf8 ishtp_cl_get_tx_free_rings drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xca84bece ishtp_cl_flush_queues drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xcd72ee96 ishtp_cl_allocate drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xc98e5f88 ishtp_cl_free drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x03a79c36 ishtp_cl_link drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x4c040811 ishtp_cl_unlink drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x20ab87f4 ishtp_cl_disconnect drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x3ec824fd ishtp_cl_connect drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xc4019546 ishtp_cl_send drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xbccb6200 ishtp_get_client_data drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x5351a9c5 ishtp_set_client_data drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x2fa98118 ishtp_get_ishtp_device drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xedd688fc ishtp_set_tx_ring_size drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x26177aa7 ishtp_set_rx_ring_size drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x56edf6a2 ishtp_set_connection_state drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x6d9be1bf ishtp_cl_set_fw_client_id drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xb5cebe21 ishtp_recv drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xb9be5996 ishtp_fw_cl_by_uuid drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x22aa3571 ishtp_fw_cl_get_client drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x5f9b0501 ishtp_get_fw_client_id drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x62d7ad35 ishtp_cl_driver_register drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x3106178c ishtp_cl_driver_unregister drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x7c928d59 ishtp_register_event_cb drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xcedbae5b ishtp_get_device drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x1e0fc7f6 ishtp_put_device drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x01465bf6 ishtp_set_drvdata drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x1bc9105a ishtp_get_drvdata drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x3a61be69 ishtp_dev_to_cl_device drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x1f718d4f ishtp_bus_remove_all_clients drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xc485128d ishtp_reset_handler drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x7ffc8083 ishtp_reset_compl_handler drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xf96e41ae ishtp_device drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xae912dd8 ishtp_wait_resume drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL_GPL
-0x222846f4 ishtp_get_pci_device drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x0a5d4ab2 ishtp_trace_callback drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x1db81d45 ish_hw_reset drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x01156ad4 ishtp_cl_io_rb_recycle drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xfdf2d3ff ishtp_cl_tx_empty drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0x38b964f6 ishtp_cl_rx_get_rb drivers/hid/intel-ish-hid/intel-ishtp EXPORT_SYMBOL
-0xdfd927ba hsmp_send_message drivers/platform/x86/amd/amd_hsmp EXPORT_SYMBOL_GPL
-0xcceb2f1b intel_pmt_is_early_client_hw drivers/platform/x86/intel/pmt/pmt_class EXPORT_SYMBOL_GPL INTEL_PMT
-0x9d3cc128 intel_pmt_dev_create drivers/platform/x86/intel/pmt/pmt_class EXPORT_SYMBOL_GPL INTEL_PMT
-0x28a4c813 intel_pmt_dev_destroy drivers/platform/x86/intel/pmt/pmt_class EXPORT_SYMBOL_GPL INTEL_PMT
-0x9a5c38f2 isst_store_cmd drivers/platform/x86/intel/speed_select_if/isst_if_common EXPORT_SYMBOL_GPL
-0x861369f8 isst_resume_common drivers/platform/x86/intel/speed_select_if/isst_if_common EXPORT_SYMBOL_GPL
-0x58a8261f isst_if_mbox_cmd_invalid drivers/platform/x86/intel/speed_select_if/isst_if_common EXPORT_SYMBOL_GPL
-0x06f7821f isst_if_mbox_cmd_set_req drivers/platform/x86/intel/speed_select_if/isst_if_common EXPORT_SYMBOL_GPL
-0xa78c392b isst_if_get_pci_dev drivers/platform/x86/intel/speed_select_if/isst_if_common EXPORT_SYMBOL_GPL
-0xff01d88e isst_if_cdev_register drivers/platform/x86/intel/speed_select_if/isst_if_common EXPORT_SYMBOL_GPL
-0xe18f42a5 isst_if_cdev_unregister drivers/platform/x86/intel/speed_select_if/isst_if_common EXPORT_SYMBOL_GPL
-0x29af325e tpmi_sst_dev_add drivers/platform/x86/intel/speed_select_if/isst_tpmi_core EXPORT_SYMBOL_GPL INTEL_TPMI_SST
-0x71d72460 tpmi_sst_dev_remove drivers/platform/x86/intel/speed_select_if/isst_tpmi_core EXPORT_SYMBOL_GPL INTEL_TPMI_SST
-0xc2b1145b tpmi_sst_dev_suspend drivers/platform/x86/intel/speed_select_if/isst_tpmi_core EXPORT_SYMBOL_GPL INTEL_TPMI_SST
-0xf757ee60 tpmi_sst_dev_resume drivers/platform/x86/intel/speed_select_if/isst_tpmi_core EXPORT_SYMBOL_GPL INTEL_TPMI_SST
-0x45083054 tpmi_sst_init drivers/platform/x86/intel/speed_select_if/isst_tpmi_core EXPORT_SYMBOL_GPL INTEL_TPMI_SST
-0x98bbc7d5 tpmi_sst_exit drivers/platform/x86/intel/speed_select_if/isst_tpmi_core EXPORT_SYMBOL_GPL INTEL_TPMI_SST
-0xa6e4a5bb uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common EXPORT_SYMBOL_GPL INTEL_UNCORE_FREQUENCY
-0x42b3604b uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common EXPORT_SYMBOL_GPL INTEL_UNCORE_FREQUENCY
-0x6f1d1501 uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common EXPORT_SYMBOL_GPL INTEL_UNCORE_FREQUENCY
-0xbf3d935d uncore_freq_common_exit drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common EXPORT_SYMBOL_GPL INTEL_UNCORE_FREQUENCY
-0xa949f1f9 intel_vsec_add_aux drivers/platform/x86/intel/intel_vsec EXPORT_SYMBOL_GPL INTEL_VSEC
-0xf9b0ef36 tpmi_get_platform_data drivers/platform/x86/intel/intel_vsec_tpmi EXPORT_SYMBOL_GPL INTEL_TPMI
-0xd4b679c8 tpmi_get_resource_count drivers/platform/x86/intel/intel_vsec_tpmi EXPORT_SYMBOL_GPL INTEL_TPMI
-0xb6e6c169 tpmi_get_resource_at_index drivers/platform/x86/intel/intel_vsec_tpmi EXPORT_SYMBOL_GPL INTEL_TPMI
-0x1ce46414 tpmi_get_feature_status drivers/platform/x86/intel/intel_vsec_tpmi EXPORT_SYMBOL_GPL INTEL_TPMI
-0x293b8436 set_required_buffer_size drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0xd5bf6c16 wmi_instance_count drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0x9d86af65 wmidev_instance_count drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0x6068bedf wmi_evaluate_method drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0x8d05f20c wmidev_evaluate_method drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0xaba842fe wmi_query_block drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0x6d730018 wmidev_block_query drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0xd7752b86 wmi_set_block drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0xf18bdd75 wmi_install_notify_handler drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0x76ae31fd wmi_remove_notify_handler drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0x17b0f8ca wmi_get_event_data drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0xc9d4d6d1 wmi_has_guid drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0x065b4695 wmi_get_acpi_device_uid drivers/platform/x86/wmi EXPORT_SYMBOL_GPL
-0xf75a315d __wmi_driver_register drivers/platform/x86/wmi EXPORT_SYMBOL
-0x49422ed2 wmi_driver_unregister drivers/platform/x86/wmi EXPORT_SYMBOL
-0x61cdf799 mxm_wmi_call_mxds drivers/platform/x86/mxm-wmi EXPORT_SYMBOL_GPL
-0xe26032eb mxm_wmi_call_mxmx drivers/platform/x86/mxm-wmi EXPORT_SYMBOL_GPL
-0x232b5238 mxm_wmi_supported drivers/platform/x86/mxm-wmi EXPORT_SYMBOL_GPL
-0x57c46ceb asus_wmi_evaluate_method drivers/platform/x86/asus-wmi EXPORT_SYMBOL_GPL
-0x353c2f88 asus_wmi_register_driver drivers/platform/x86/asus-wmi EXPORT_SYMBOL_GPL
-0xe3a42f5b asus_wmi_unregister_driver drivers/platform/x86/asus-wmi EXPORT_SYMBOL_GPL
-0xd857cac7 sony_pic_camera_command drivers/platform/x86/sony-laptop EXPORT_SYMBOL
-0x46809fa9 ips_link_to_i915_driver drivers/platform/x86/intel_ips EXPORT_SYMBOL_GPL
-0x1dbc4f43 __vmbus_driver_register drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xb110db54 vmbus_driver_unregister drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x46fa9cde vmbus_allocate_mmio drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x31e2e77f vmbus_free_mmio drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xac94176f vmbus_connection drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x46a417ca vmbus_proto_version drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xe21aaa59 vmbus_set_event drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x46d1e0c4 vmbus_setevent drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xe74b7658 vmbus_free_ring drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x659cd473 vmbus_alloc_ring drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x4b2210b8 vmbus_send_tl_connect_request drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x6517af90 vmbus_send_modifychannel drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x4e199ac3 vmbus_establish_gpadl drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x523901bf vmbus_connect_ring drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x55488c25 vmbus_open drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xccb5f914 vmbus_teardown_gpadl drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x9b2561c2 vmbus_disconnect_ring drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x43c065aa vmbus_close drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x44cf7e4c vmbus_sendpacket_getid drivers/hv/hv_vmbus EXPORT_SYMBOL
-0x7011e3ac vmbus_sendpacket drivers/hv/hv_vmbus EXPORT_SYMBOL
-0x48d3f927 vmbus_sendpacket_pagebuffer drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x23681f93 vmbus_sendpacket_mpb_desc drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x8392077e vmbus_recvpacket drivers/hv/hv_vmbus EXPORT_SYMBOL
-0xa09cc307 vmbus_recvpacket_raw drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xf5d551ec vmbus_next_request_id drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x0cb221a9 __vmbus_request_addr_match drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x964355bf vmbus_request_addr_match drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x9ab6d8bb vmbus_request_addr drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x321055cb vmbus_prep_negotiate_resp drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x785bd37a vmbus_hvsock_device_unregister drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xf72b0cfc vmbus_set_sc_create_callback drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x39d3869c vmbus_set_chn_rescind_callback drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x674e657e hv_ringbuffer_get_debuginfo drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x7f9f4d99 hv_ringbuffer_spinlock_busy drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xaa4f0e80 hv_pkt_iter_first drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0x7eb0864e __hv_pkt_iter_next drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xf3452b60 hv_pkt_iter_close drivers/hv/hv_vmbus EXPORT_SYMBOL_GPL
-0xce2d85d2 rapl_remove_package_cpuslocked drivers/powercap/intel_rapl_common EXPORT_SYMBOL_GPL
-0xcd556ae6 rapl_remove_package drivers/powercap/intel_rapl_common EXPORT_SYMBOL_GPL
-0x59ff8c75 rapl_find_package_domain_cpuslocked drivers/powercap/intel_rapl_common EXPORT_SYMBOL_GPL
-0x58c0d348 rapl_find_package_domain drivers/powercap/intel_rapl_common EXPORT_SYMBOL_GPL
-0x6f236130 rapl_add_package_cpuslocked drivers/powercap/intel_rapl_common EXPORT_SYMBOL_GPL
-0x765f21b6 rapl_add_package drivers/powercap/intel_rapl_common EXPORT_SYMBOL_GPL
-0x8666537e intel_th_driver_register drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0xff23e5b7 intel_th_driver_unregister drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0xf2dea585 intel_th_output_enable drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0x1ee92dc6 intel_th_alloc drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0xbb6cf4e0 intel_th_free drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0x7dfbc941 intel_th_trace_enable drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0x2e9e6d3e intel_th_trace_switch drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0xca8612e9 intel_th_trace_disable drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0xb98c184e intel_th_set_output drivers/hwtracing/intel_th/intel_th EXPORT_SYMBOL_GPL
-0x580300d5 intel_th_msu_buffer_register drivers/hwtracing/intel_th/intel_th_msu EXPORT_SYMBOL_GPL
-0xd8b186ce intel_th_msu_buffer_unregister drivers/hwtracing/intel_th/intel_th_msu EXPORT_SYMBOL_GPL
-0x28c4b617 intel_th_msc_window_unlock drivers/hwtracing/intel_th/intel_th_msu EXPORT_SYMBOL_GPL
-0xbb331e76 __parport_register_driver drivers/parport/parport EXPORT_SYMBOL
-0x49196d89 parport_unregister_driver drivers/parport/parport EXPORT_SYMBOL
-0xd7af0731 parport_get_port drivers/parport/parport EXPORT_SYMBOL
-0xdbcccc08 parport_del_port drivers/parport/parport EXPORT_SYMBOL
-0x88ffe9e9 parport_put_port drivers/parport/parport EXPORT_SYMBOL
-0x8a82e485 parport_register_port drivers/parport/parport EXPORT_SYMBOL
-0x653dff3f parport_announce_port drivers/parport/parport EXPORT_SYMBOL
-0xb0785497 parport_remove_port drivers/parport/parport EXPORT_SYMBOL
-0x3a1a115f parport_register_dev_model drivers/parport/parport EXPORT_SYMBOL
-0x33066707 parport_unregister_device drivers/parport/parport EXPORT_SYMBOL
-0xe43b0eb9 parport_find_number drivers/parport/parport EXPORT_SYMBOL
-0x6ac143d0 parport_find_base drivers/parport/parport EXPORT_SYMBOL
-0x74b17f0c parport_claim drivers/parport/parport EXPORT_SYMBOL
-0x12146d6a parport_claim_or_block drivers/parport/parport EXPORT_SYMBOL
-0x89fd9f48 parport_release drivers/parport/parport EXPORT_SYMBOL
-0x5e3a3912 parport_irq_handler drivers/parport/parport EXPORT_SYMBOL
-0x67d1bb40 parport_negotiate drivers/parport/parport EXPORT_SYMBOL
-0xe7b8603a parport_write drivers/parport/parport EXPORT_SYMBOL
-0x7d5660f4 parport_read drivers/parport/parport EXPORT_SYMBOL
-0xb32ed5ec parport_wait_peripheral drivers/parport/parport EXPORT_SYMBOL
-0xadc8e4a3 parport_wait_event drivers/parport/parport EXPORT_SYMBOL
-0xbcbb7e5f parport_set_timeout drivers/parport/parport EXPORT_SYMBOL
-0x4d2a941b parport_ieee1284_interrupt drivers/parport/parport EXPORT_SYMBOL
-0x7995b35b parport_ieee1284_ecp_write_data drivers/parport/parport EXPORT_SYMBOL
-0xda1c4e3d parport_ieee1284_ecp_read_data drivers/parport/parport EXPORT_SYMBOL
-0xb1613019 parport_ieee1284_ecp_write_addr drivers/parport/parport EXPORT_SYMBOL
-0x85562338 parport_ieee1284_write_compat drivers/parport/parport EXPORT_SYMBOL
-0x93ad8cda parport_ieee1284_read_nibble drivers/parport/parport EXPORT_SYMBOL
-0x9745fdbd parport_ieee1284_read_byte drivers/parport/parport EXPORT_SYMBOL
-0x6b80c948 parport_ieee1284_epp_write_data drivers/parport/parport EXPORT_SYMBOL
-0xf7fbbdac parport_ieee1284_epp_read_data drivers/parport/parport EXPORT_SYMBOL
-0xa3744a0a parport_ieee1284_epp_write_addr drivers/parport/parport EXPORT_SYMBOL
-0x82c4b3df parport_ieee1284_epp_read_addr drivers/parport/parport EXPORT_SYMBOL
-0x101c36aa parport_pc_probe_port drivers/parport/parport_pc EXPORT_SYMBOL
-0x49a9f182 parport_pc_unregister_port drivers/parport/parport_pc EXPORT_SYMBOL
-0xa3194ad4 nvdimm_bus_lock drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x5e42d7a3 nvdimm_bus_unlock drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x8683724c is_nvdimm_bus_locked drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x2a58650c devm_nvdimm_memremap drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xaf076aec nd_fletcher64 drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xded21274 to_nd_desc drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x500d5904 to_nvdimm_bus_dev drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x467730fa nvdimm_bus_add_badrange drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x867a3e85 nd_integrity_init drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xd6075ea1 nd_device_notify drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xd58c3d0f nvdimm_region_notify drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xdbd498c8 nvdimm_clear_poison drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x1932eff1 to_nvdimm_bus drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x3288674a nvdimm_to_bus drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x7ada7203 nvdimm_bus_register drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x5e5d5033 nvdimm_bus_unregister drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x7d00c65b nd_synchronize drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x2e144349 nd_device_register drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x64878abc nd_device_unregister drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x0ddbaa3a __nd_driver_register drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x09132070 nvdimm_check_and_set_ro drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xb501b2df nd_cmd_dimm_desc drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xa01a8d9b nd_cmd_bus_desc drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xa958d78c nd_cmd_in_size drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x6fcb54eb nd_cmd_out_size drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x0dbe2845 to_nvdimm drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x0ba8d496 to_ndd drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xad49b72f nvdimm_name drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xb9d9cc8a nvdimm_kobj drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x1d6e6491 nvdimm_cmd_mask drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x368b26ae nvdimm_provider_data drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x1a053034 __nvdimm_create drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x5eee4b32 nvdimm_delete drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xd5345bcf nvdimm_security_setup_events drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x7984c28f nvdimm_in_overwrite drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xff5580bb nvdimm_bus_check_dimm_count drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xbe08311b register_nvdimm_pmu drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x7aefb41c unregister_nvdimm_pmu drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x2bb20541 to_nd_region drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x49dce180 nd_region_dev drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x429eefda nd_region_provider_data drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x4c4c7f82 nd_region_to_nstype drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xdca00a1b nd_region_acquire_lane drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x03f4dfb6 nd_region_release_lane drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xfcf4bbd2 nvdimm_pmem_region_create drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x2847cb5d nvdimm_volatile_region_create drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x43254902 nvdimm_region_delete drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xd8ca535a nvdimm_flush drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x68af1a26 nvdimm_has_flush drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xf82e93ea nvdimm_has_cache drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x16919b96 is_nvdimm_sync drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x192b8895 pmem_should_map_pages drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x633934c1 pmem_sector_size drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xa3be2514 nvdimm_namespace_disk_name drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xd834819f nd_dev_to_uuid drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xc14edfb4 nvdimm_namespace_capacity drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x02d6c10e nvdimm_namespace_locked drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xd2ede465 nvdimm_namespace_common_probe drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x0a7bb58d devm_namespace_enable drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x8f3d4662 devm_namespace_disable drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x11e06ee9 badrange_init drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x2e08226d badrange_add drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x82092899 badrange_forget drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x4ab010b1 nvdimm_badblocks_populate drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0x499f0ecf nd_sb_checksum drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x6ddd26cb to_nd_btt drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x49fd8943 is_nd_btt drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x95a24abe nd_btt_arena_is_valid drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x071e1af1 nd_btt_version drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x8b6bb17b nd_btt_probe drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xacd5d367 to_nd_pfn drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x843cdb0e is_nd_pfn drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x3fb33e4e nd_pfn_validate drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x723395f5 nd_pfn_probe drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x5d9909d3 nvdimm_setup_pfn drivers/nvdimm/libnvdimm EXPORT_SYMBOL_GPL
-0xd1908085 to_nd_dax drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0xf45729a5 is_nd_dax drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x97539f83 nd_dax_probe drivers/nvdimm/libnvdimm EXPORT_SYMBOL
-0x4d3d3e5c nvdimm_namespace_attach_btt drivers/nvdimm/nd_btt EXPORT_SYMBOL
-0x87f503c9 nvdimm_namespace_detach_btt drivers/nvdimm/nd_btt EXPORT_SYMBOL
-0x883863b2 sata_port_ops drivers/ata/libata EXPORT_SYMBOL_GPL
-0x404e2a59 ata_link_next drivers/ata/libata EXPORT_SYMBOL_GPL
-0x12853f2b ata_dev_next drivers/ata/libata EXPORT_SYMBOL_GPL
-0x8462cb62 atapi_cmd_type drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3a15013b ata_pack_xfermask drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc2368ea5 ata_xfer_mask2mode drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe77d5ef3 ata_xfer_mode2mask drivers/ata/libata EXPORT_SYMBOL_GPL
-0x58db1176 ata_xfer_mode2shift drivers/ata/libata EXPORT_SYMBOL_GPL
-0x6a9e90af ata_mode_string drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe59f116e ata_dev_classify drivers/ata/libata EXPORT_SYMBOL_GPL
-0xccd86806 ata_id_string drivers/ata/libata EXPORT_SYMBOL_GPL
-0xafddd545 ata_id_c_string drivers/ata/libata EXPORT_SYMBOL_GPL
-0x030cbca2 ata_id_xfermask drivers/ata/libata EXPORT_SYMBOL_GPL
-0x86149594 ata_pio_need_iordy drivers/ata/libata EXPORT_SYMBOL_GPL
-0xd41d7eaa ata_do_dev_read_id drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa4335158 ata_cable_40wire drivers/ata/libata EXPORT_SYMBOL_GPL
-0x76f12f15 ata_cable_80wire drivers/ata/libata EXPORT_SYMBOL_GPL
-0x77daaa9a ata_cable_unknown drivers/ata/libata EXPORT_SYMBOL_GPL
-0x6552dd69 ata_cable_ignore drivers/ata/libata EXPORT_SYMBOL_GPL
-0x863ba20e ata_cable_sata drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe5be2693 ata_dev_pair drivers/ata/libata EXPORT_SYMBOL_GPL
-0x47d5fe55 ata_do_set_mode drivers/ata/libata EXPORT_SYMBOL_GPL
-0x63e89fd4 ata_wait_after_reset drivers/ata/libata EXPORT_SYMBOL_GPL
-0x44ade40c ata_std_prereset drivers/ata/libata EXPORT_SYMBOL_GPL
-0x658e84ae sata_std_hardreset drivers/ata/libata EXPORT_SYMBOL_GPL
-0x8e382735 ata_std_postreset drivers/ata/libata EXPORT_SYMBOL_GPL
-0x7d6adf44 ata_dev_set_feature drivers/ata/libata EXPORT_SYMBOL_GPL
-0x5d2e5d96 ata_std_qc_defer drivers/ata/libata EXPORT_SYMBOL_GPL
-0xee154574 ata_noop_qc_prep drivers/ata/libata EXPORT_SYMBOL_GPL
-0x18cd0ae9 ata_qc_complete drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa09fc43c ata_qc_get_active drivers/ata/libata EXPORT_SYMBOL_GPL
-0x39eaa13f ata_link_online drivers/ata/libata EXPORT_SYMBOL_GPL
-0x2c49f60a ata_link_offline drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe5721eda ata_sas_port_suspend drivers/ata/libata EXPORT_SYMBOL_GPL
-0xec7f3a35 ata_sas_port_resume drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe857cb63 ata_host_suspend drivers/ata/libata EXPORT_SYMBOL_GPL
-0x12af33d8 ata_host_resume drivers/ata/libata EXPORT_SYMBOL_GPL
-0x5a6bb2e5 ata_host_put drivers/ata/libata EXPORT_SYMBOL_GPL
-0x22382300 ata_host_alloc drivers/ata/libata EXPORT_SYMBOL_GPL
-0x4a843a68 ata_host_alloc_pinfo drivers/ata/libata EXPORT_SYMBOL_GPL
-0xba25a397 ata_host_start drivers/ata/libata EXPORT_SYMBOL_GPL
-0x840ff9a2 ata_host_init drivers/ata/libata EXPORT_SYMBOL_GPL
-0x403d6620 ata_port_probe drivers/ata/libata EXPORT_SYMBOL_GPL
-0xaf5fc64b ata_host_register drivers/ata/libata EXPORT_SYMBOL_GPL
-0x0eeab993 ata_host_activate drivers/ata/libata EXPORT_SYMBOL_GPL
-0x1459a207 ata_host_detach drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb3654679 ata_pci_remove_one drivers/ata/libata EXPORT_SYMBOL_GPL
-0x01a16daf ata_pci_shutdown_one drivers/ata/libata EXPORT_SYMBOL_GPL
-0xf582139c pci_test_config_bits drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe83aa4a9 ata_pci_device_do_suspend drivers/ata/libata EXPORT_SYMBOL_GPL
-0x2af42c32 ata_pci_device_do_resume drivers/ata/libata EXPORT_SYMBOL_GPL
-0x829aec11 ata_pci_device_suspend drivers/ata/libata EXPORT_SYMBOL_GPL
-0x958fcb16 ata_pci_device_resume drivers/ata/libata EXPORT_SYMBOL_GPL
-0xee8a7456 ata_platform_remove_one drivers/ata/libata EXPORT_SYMBOL_GPL
-0xf8f3a0fb ata_ratelimit drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb7836645 ata_msleep drivers/ata/libata EXPORT_SYMBOL_GPL
-0x6064f316 ata_wait_register drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa1fa2da3 ata_dummy_port_ops drivers/ata/libata EXPORT_SYMBOL_GPL
-0x2ef5eda6 ata_dummy_port_info drivers/ata/libata EXPORT_SYMBOL_GPL
-0x4abeb03e ata_print_version drivers/ata/libata EXPORT_SYMBOL
-0x8ca98838 __tracepoint_ata_tf_load drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe5aae0cd __traceiter_ata_tf_load drivers/ata/libata EXPORT_SYMBOL_GPL
-0x864b900c __SCK__tp_func_ata_tf_load drivers/ata/libata EXPORT_SYMBOL_GPL
-0xcf2b93c8 __SCT__tp_func_ata_tf_load drivers/ata/libata EXPORT_SYMBOL_GPL
-0xce2ce3b2 __tracepoint_ata_exec_command drivers/ata/libata EXPORT_SYMBOL_GPL
-0x727acf43 __traceiter_ata_exec_command drivers/ata/libata EXPORT_SYMBOL_GPL
-0x5fa96ec0 __SCK__tp_func_ata_exec_command drivers/ata/libata EXPORT_SYMBOL_GPL
-0x46047827 __SCT__tp_func_ata_exec_command drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe67ac27c __tracepoint_ata_bmdma_setup drivers/ata/libata EXPORT_SYMBOL_GPL
-0x1d4895b2 __traceiter_ata_bmdma_setup drivers/ata/libata EXPORT_SYMBOL_GPL
-0x079b2732 __SCK__tp_func_ata_bmdma_setup drivers/ata/libata EXPORT_SYMBOL_GPL
-0x9a2851ef __SCT__tp_func_ata_bmdma_setup drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbd1e0862 __tracepoint_ata_bmdma_start drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc7c0a4c7 __traceiter_ata_bmdma_start drivers/ata/libata EXPORT_SYMBOL_GPL
-0x5cffed2c __SCK__tp_func_ata_bmdma_start drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start drivers/ata/libata EXPORT_SYMBOL_GPL
-0xff52ea45 __tracepoint_ata_bmdma_status drivers/ata/libata EXPORT_SYMBOL_GPL
-0xabe4f242 __traceiter_ata_bmdma_status drivers/ata/libata EXPORT_SYMBOL_GPL
-0x6ed76737 __SCK__tp_func_ata_bmdma_status drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc3e1021c __SCT__tp_func_ata_bmdma_status drivers/ata/libata EXPORT_SYMBOL_GPL
-0x0c5d0601 dev_attr_unload_heads drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbbb6d1cf ata_common_sdev_groups drivers/ata/libata EXPORT_SYMBOL_GPL
-0x303dbd94 ata_std_bios_param drivers/ata/libata EXPORT_SYMBOL_GPL
-0x5e9231f3 ata_scsi_unlock_native_capacity drivers/ata/libata EXPORT_SYMBOL_GPL
-0x77b3ee56 ata_sas_scsi_ioctl drivers/ata/libata EXPORT_SYMBOL_GPL
-0x4cd65675 ata_scsi_ioctl drivers/ata/libata EXPORT_SYMBOL_GPL
-0x74e563b0 ata_scsi_dma_need_drain drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc9f6e157 ata_scsi_slave_alloc drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb621301d ata_scsi_slave_config drivers/ata/libata EXPORT_SYMBOL_GPL
-0x24e17aad ata_scsi_slave_destroy drivers/ata/libata EXPORT_SYMBOL_GPL
-0x2d75d778 ata_scsi_queuecmd drivers/ata/libata EXPORT_SYMBOL_GPL
-0x0ab5adcb __ata_ehi_push_desc drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3cd31e9e ata_ehi_push_desc drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc509ae0d ata_ehi_clear_desc drivers/ata/libata EXPORT_SYMBOL_GPL
-0x5c72c0c1 ata_port_desc drivers/ata/libata EXPORT_SYMBOL_GPL
-0x7bcfcee8 ata_port_pbar_desc drivers/ata/libata EXPORT_SYMBOL_GPL
-0x2a4fea76 ata_scsi_cmd_error_handler drivers/ata/libata EXPORT_SYMBOL
-0x47b22a28 ata_scsi_port_error_handler drivers/ata/libata EXPORT_SYMBOL_GPL
-0x70a774b3 ata_port_wait_eh drivers/ata/libata EXPORT_SYMBOL_GPL
-0x029e2413 ata_std_sched_eh drivers/ata/libata EXPORT_SYMBOL_GPL
-0x301766d4 ata_std_end_eh drivers/ata/libata EXPORT_SYMBOL
-0xcbfdbf0f ata_port_schedule_eh drivers/ata/libata EXPORT_SYMBOL_GPL
-0xd7407a48 ata_link_abort drivers/ata/libata EXPORT_SYMBOL_GPL
-0x0ed042bf ata_port_abort drivers/ata/libata EXPORT_SYMBOL_GPL
-0x4197f9e0 ata_port_freeze drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb10a5eec ata_eh_freeze_port drivers/ata/libata EXPORT_SYMBOL_GPL
-0x853f0bf7 ata_dev_disable drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbd06f3a9 ata_get_cmd_name drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe00367b6 ata_std_error_handler drivers/ata/libata EXPORT_SYMBOL_GPL
-0x89f2dad2 ata_port_classify drivers/ata/libata EXPORT_SYMBOL_GPL
-0x9371ea58 sata_deb_timing_normal drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbc79eb0b sata_deb_timing_hotplug drivers/ata/libata EXPORT_SYMBOL_GPL
-0x06c98647 sata_deb_timing_long drivers/ata/libata EXPORT_SYMBOL_GPL
-0xedf564d4 sata_scr_valid drivers/ata/libata EXPORT_SYMBOL_GPL
-0x15d420f9 sata_scr_read drivers/ata/libata EXPORT_SYMBOL_GPL
-0x7ab0e7ea sata_scr_write drivers/ata/libata EXPORT_SYMBOL_GPL
-0x33d1bb0e sata_scr_write_flush drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa69eac50 ata_tf_to_fis drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3caa11e3 ata_tf_from_fis drivers/ata/libata EXPORT_SYMBOL_GPL
-0x62959db9 sata_link_debounce drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe5075e5b sata_link_resume drivers/ata/libata EXPORT_SYMBOL_GPL
-0x9f7e5475 sata_link_scr_lpm drivers/ata/libata EXPORT_SYMBOL_GPL
-0xd2bb6236 sata_set_spd drivers/ata/libata EXPORT_SYMBOL_GPL
-0x89d0bd3c sata_link_hardreset drivers/ata/libata EXPORT_SYMBOL_GPL
-0x37f8a523 ata_qc_complete_multiple drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc89f23c1 ata_slave_link_init drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc715b97d sata_lpm_ignore_phy_events drivers/ata/libata EXPORT_SYMBOL_GPL
-0x7906e1ed dev_attr_link_power_management_policy drivers/ata/libata EXPORT_SYMBOL_GPL
-0x8577ed81 dev_attr_ncq_prio_supported drivers/ata/libata EXPORT_SYMBOL_GPL
-0xfd9fc3a2 dev_attr_ncq_prio_enable drivers/ata/libata EXPORT_SYMBOL_GPL
-0x13ce5829 ata_ncq_sdev_groups drivers/ata/libata EXPORT_SYMBOL_GPL
-0xad5bbeaf dev_attr_em_message drivers/ata/libata EXPORT_SYMBOL_GPL
-0x25bc0471 dev_attr_em_message_type drivers/ata/libata EXPORT_SYMBOL_GPL
-0x03e708ca dev_attr_sw_activity drivers/ata/libata EXPORT_SYMBOL_GPL
-0xaa9a66a8 ata_change_queue_depth drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa28e0efc ata_scsi_change_queue_depth drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbf4b86e5 ata_sas_port_alloc drivers/ata/libata EXPORT_SYMBOL_GPL
-0x2638d060 ata_sas_tport_add drivers/ata/libata EXPORT_SYMBOL_GPL
-0x232490f0 ata_sas_tport_delete drivers/ata/libata EXPORT_SYMBOL_GPL
-0x161f4f43 ata_sas_slave_configure drivers/ata/libata EXPORT_SYMBOL_GPL
-0xda79c016 ata_sas_queuecmd drivers/ata/libata EXPORT_SYMBOL_GPL
-0x0e717678 sata_async_notification drivers/ata/libata EXPORT_SYMBOL_GPL
-0x7e3650f5 ata_eh_read_sense_success_ncq_log drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3e17b021 ata_eh_analyze_ncq_error drivers/ata/libata EXPORT_SYMBOL_GPL
-0x31644b06 ata_sff_port_ops drivers/ata/libata EXPORT_SYMBOL_GPL
-0x1a87c673 ata_sff_check_status drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa0971530 ata_sff_pause drivers/ata/libata EXPORT_SYMBOL_GPL
-0x80a3e437 ata_sff_dma_pause drivers/ata/libata EXPORT_SYMBOL_GPL
-0x18d9702a ata_sff_wait_ready drivers/ata/libata EXPORT_SYMBOL_GPL
-0x1c314291 ata_sff_dev_select drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe2ccef56 ata_sff_irq_on drivers/ata/libata EXPORT_SYMBOL_GPL
-0x292ce553 ata_sff_tf_load drivers/ata/libata EXPORT_SYMBOL_GPL
-0xce228ffe ata_sff_tf_read drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa1f37f77 ata_sff_exec_command drivers/ata/libata EXPORT_SYMBOL_GPL
-0x88203ab2 ata_sff_data_xfer drivers/ata/libata EXPORT_SYMBOL_GPL
-0xd8bd9649 ata_sff_data_xfer32 drivers/ata/libata EXPORT_SYMBOL_GPL
-0xdabe9986 ata_sff_hsm_move drivers/ata/libata EXPORT_SYMBOL_GPL
-0xd6a223e1 ata_sff_queue_work drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbdecc5a3 ata_sff_queue_delayed_work drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc84147fc ata_sff_queue_pio_task drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3887d906 ata_sff_qc_issue drivers/ata/libata EXPORT_SYMBOL_GPL
-0x0025d3f4 ata_sff_qc_fill_rtf drivers/ata/libata EXPORT_SYMBOL_GPL
-0x1a50b244 ata_sff_port_intr drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3a4f6a32 ata_sff_interrupt drivers/ata/libata EXPORT_SYMBOL_GPL
-0x845219f9 ata_sff_lost_interrupt drivers/ata/libata EXPORT_SYMBOL_GPL
-0x62c25c9a ata_sff_freeze drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb29ee8ca ata_sff_thaw drivers/ata/libata EXPORT_SYMBOL_GPL
-0x80d442c8 ata_sff_prereset drivers/ata/libata EXPORT_SYMBOL_GPL
-0xebe14baf ata_sff_dev_classify drivers/ata/libata EXPORT_SYMBOL_GPL
-0x05c38a02 ata_sff_wait_after_reset drivers/ata/libata EXPORT_SYMBOL_GPL
-0x241b5d95 ata_sff_softreset drivers/ata/libata EXPORT_SYMBOL_GPL
-0x1a3b0ee1 sata_sff_hardreset drivers/ata/libata EXPORT_SYMBOL_GPL
-0xfa1d0af9 ata_sff_postreset drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe9213d07 ata_sff_drain_fifo drivers/ata/libata EXPORT_SYMBOL_GPL
-0x89c93bd1 ata_sff_error_handler drivers/ata/libata EXPORT_SYMBOL_GPL
-0x73a48b4a ata_sff_std_ports drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb1d25e60 ata_pci_sff_init_host drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc5c9c8c3 ata_pci_sff_prepare_host drivers/ata/libata EXPORT_SYMBOL_GPL
-0x0b1a6e9e ata_pci_sff_activate_host drivers/ata/libata EXPORT_SYMBOL_GPL
-0x62e55cd6 ata_pci_sff_init_one drivers/ata/libata EXPORT_SYMBOL_GPL
-0x192b3cec ata_bmdma_port_ops drivers/ata/libata EXPORT_SYMBOL_GPL
-0x9530136c ata_bmdma32_port_ops drivers/ata/libata EXPORT_SYMBOL_GPL
-0xa3f3d0c7 ata_bmdma_qc_prep drivers/ata/libata EXPORT_SYMBOL_GPL
-0x7c446bca ata_bmdma_dumb_qc_prep drivers/ata/libata EXPORT_SYMBOL_GPL
-0x95364f08 ata_bmdma_qc_issue drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbe384c64 ata_bmdma_port_intr drivers/ata/libata EXPORT_SYMBOL_GPL
-0xe818b32b ata_bmdma_interrupt drivers/ata/libata EXPORT_SYMBOL_GPL
-0x16c62b89 ata_bmdma_error_handler drivers/ata/libata EXPORT_SYMBOL_GPL
-0x238a6e9e ata_bmdma_post_internal_cmd drivers/ata/libata EXPORT_SYMBOL_GPL
-0xc0203de1 ata_bmdma_irq_clear drivers/ata/libata EXPORT_SYMBOL_GPL
-0x25bb5f06 ata_bmdma_setup drivers/ata/libata EXPORT_SYMBOL_GPL
-0xffa5db8d ata_bmdma_start drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb3993855 ata_bmdma_stop drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb4f4dd91 ata_bmdma_status drivers/ata/libata EXPORT_SYMBOL_GPL
-0x58563463 ata_bmdma_port_start drivers/ata/libata EXPORT_SYMBOL_GPL
-0xaaffbb60 ata_bmdma_port_start32 drivers/ata/libata EXPORT_SYMBOL_GPL
-0xbb9afe88 ata_pci_bmdma_clear_simplex drivers/ata/libata EXPORT_SYMBOL_GPL
-0xcebd835e ata_pci_bmdma_init drivers/ata/libata EXPORT_SYMBOL_GPL
-0xdb92dc2a ata_pci_bmdma_prepare_host drivers/ata/libata EXPORT_SYMBOL_GPL
-0x4b80893d ata_pci_bmdma_init_one drivers/ata/libata EXPORT_SYMBOL_GPL
-0xdfa7ece7 sata_pmp_port_ops drivers/ata/libata EXPORT_SYMBOL_GPL
-0xb2e6283e sata_pmp_qc_defer_cmd_switch drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3b6ae6cd sata_pmp_error_handler drivers/ata/libata EXPORT_SYMBOL_GPL
-0x02cbb0e5 ata_acpi_gtm drivers/ata/libata EXPORT_SYMBOL_GPL
-0x2ced00e1 ata_acpi_stm drivers/ata/libata EXPORT_SYMBOL_GPL
-0x3281d269 ata_acpi_gtm_xfermask drivers/ata/libata EXPORT_SYMBOL_GPL
-0x8394276c ata_acpi_cbl_80wire drivers/ata/libata EXPORT_SYMBOL_GPL
-0xf6e874f5 ata_timing_merge drivers/ata/libata EXPORT_SYMBOL_GPL
-0xd2b10a05 ata_timing_find_mode drivers/ata/libata EXPORT_SYMBOL_GPL
-0x47faf4e3 ata_timing_compute drivers/ata/libata EXPORT_SYMBOL_GPL
-0xea50dad3 ahci_ignore_sss drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x35bf7695 ahci_shost_groups drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xfe808a80 ahci_sdev_groups drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x969bb066 ahci_ops drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x613c906f ahci_pmp_retry_srst_ops drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x8065e47a ahci_save_initial_config drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xff05d171 ahci_start_engine drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x9a31d67c ahci_stop_engine drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x69d403f8 ahci_start_fis_rx drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x21c2d4ea ahci_reset_controller drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xaab56b53 ahci_reset_em drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xfc2e849e ahci_init_controller drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xda9b7fd3 ahci_dev_classify drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x6623aade ahci_fill_cmd_slot drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xb8836970 ahci_kick_engine drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xf918495a ahci_check_ready drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x00e6bb6f ahci_do_softreset drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xfb4f02f6 ahci_do_hardreset drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x78a877b2 ahci_handle_port_intr drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x0c10432d ahci_qc_issue drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x7260e44f ahci_error_handler drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xa4424fa2 ahci_port_resume drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xa0922efe ahci_print_info drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x3cdd78a9 ahci_set_em_messages drivers/ata/libahci EXPORT_SYMBOL_GPL
-0x09b8dd72 ahci_host_activate drivers/ata/libahci EXPORT_SYMBOL_GPL
-0xbc03eb34 ahci_platform_ops drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0xbdad2b1b ahci_platform_enable_phys drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0xccfd76e1 ahci_platform_disable_phys drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0xfcb18758 ahci_platform_find_clk drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x860e8d36 ahci_platform_enable_clks drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0xf75ed0cc ahci_platform_disable_clks drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x6484c744 ahci_platform_deassert_rsts drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x51e1a6bf ahci_platform_assert_rsts drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0xe9946e2c ahci_platform_enable_regulators drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x032052ec ahci_platform_disable_regulators drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x13d4fce8 ahci_platform_enable_resources drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x72af056c ahci_platform_disable_resources drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x0ed84865 ahci_platform_get_resources drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x2d3f04e6 ahci_platform_init_host drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x51997e46 ahci_platform_shutdown drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x22194361 ahci_platform_suspend_host drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x9d52645f ahci_platform_resume_host drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0xa376e895 ahci_platform_suspend drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x0c1c226a ahci_platform_resume drivers/ata/libahci_platform EXPORT_SYMBOL_GPL
-0x3ee89754 target_depend_item drivers/target/target_core_mod EXPORT_SYMBOL
-0x3a177b29 target_undepend_item drivers/target/target_core_mod EXPORT_SYMBOL
-0xdc06a3dd target_register_template drivers/target/target_core_mod EXPORT_SYMBOL
-0xd0c93d67 target_unregister_template drivers/target/target_core_mod EXPORT_SYMBOL
-0xa6bd052a sbc_attrib_attrs drivers/target/target_core_mod EXPORT_SYMBOL
-0xe92fdebd passthrough_attrib_attrs drivers/target/target_core_mod EXPORT_SYMBOL
-0x8d9bb566 passthrough_pr_attrib_attrs drivers/target/target_core_mod EXPORT_SYMBOL
-0xc4ac0dab transport_lookup_cmd_lun drivers/target/target_core_mod EXPORT_SYMBOL
-0x1147643a transport_lookup_tmr_lun drivers/target/target_core_mod EXPORT_SYMBOL
-0x843d5a0c target_lun_is_rdonly drivers/target/target_core_mod EXPORT_SYMBOL
-0x0c12bcf2 target_nacl_find_deve drivers/target/target_core_mod EXPORT_SYMBOL
-0x98b15520 target_configure_unmap_from_queue drivers/target/target_core_mod EXPORT_SYMBOL
-0x48373120 target_to_linux_sector drivers/target/target_core_mod EXPORT_SYMBOL
-0x46f43c81 passthrough_parse_cdb drivers/target/target_core_mod EXPORT_SYMBOL
-0x771d4ccc transport_backend_register drivers/target/target_core_mod EXPORT_SYMBOL
-0x612474ae target_backend_unregister drivers/target/target_core_mod EXPORT_SYMBOL
-0x03d456e5 core_alua_check_nonop_delay drivers/target/target_core_mod EXPORT_SYMBOL
-0x086be45d core_tmr_alloc_req drivers/target/target_core_mod EXPORT_SYMBOL
-0xc7170e23 core_tpg_get_initiator_node_acl drivers/target/target_core_mod EXPORT_SYMBOL
-0x0fb1c984 core_allocate_nexus_loss_ua drivers/target/target_core_mod EXPORT_SYMBOL
-0x426b5d7f target_tpg_has_node_acl drivers/target/target_core_mod EXPORT_SYMBOL
-0xc69166ec core_tpg_check_initiator_node_acl drivers/target/target_core_mod EXPORT_SYMBOL
-0xa1c31349 core_tpg_set_initiator_node_queue_depth drivers/target/target_core_mod EXPORT_SYMBOL
-0xd869fc9a core_tpg_set_initiator_node_tag drivers/target/target_core_mod EXPORT_SYMBOL
-0x4e138baf core_tpg_register drivers/target/target_core_mod EXPORT_SYMBOL
-0x01f42f68 core_tpg_deregister drivers/target/target_core_mod EXPORT_SYMBOL
-0xc65e34a6 target_alloc_cmd_counter drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0x5d24150b target_free_cmd_counter drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0x5dc1ae6c transport_init_session drivers/target/target_core_mod EXPORT_SYMBOL
-0x2de9f9fc transport_alloc_session drivers/target/target_core_mod EXPORT_SYMBOL
-0xfd863edd transport_alloc_session_tags drivers/target/target_core_mod EXPORT_SYMBOL
-0xe51de0ba __transport_register_session drivers/target/target_core_mod EXPORT_SYMBOL
-0x8e80bc17 transport_register_session drivers/target/target_core_mod EXPORT_SYMBOL
-0x8eb0064c target_setup_session drivers/target/target_core_mod EXPORT_SYMBOL
-0x257d0023 target_show_dynamic_sessions drivers/target/target_core_mod EXPORT_SYMBOL
-0x500b7988 target_put_nacl drivers/target/target_core_mod EXPORT_SYMBOL
-0x7179315e transport_deregister_session_configfs drivers/target/target_core_mod EXPORT_SYMBOL
-0x07370181 transport_free_session drivers/target/target_core_mod EXPORT_SYMBOL
-0xf1799f7e transport_deregister_session drivers/target/target_core_mod EXPORT_SYMBOL
-0xa4b05b16 target_remove_session drivers/target/target_core_mod EXPORT_SYMBOL
-0x71dd5125 transport_copy_sense_to_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0x3c299f1c target_complete_cmd_with_sense drivers/target/target_core_mod EXPORT_SYMBOL
-0x1ff8b942 target_complete_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0x2ac13775 target_set_cmd_data_length drivers/target/target_core_mod EXPORT_SYMBOL
-0x27971b0c target_complete_cmd_with_length drivers/target/target_core_mod EXPORT_SYMBOL
-0xf3c2dfe0 transport_set_vpd_proto_id drivers/target/target_core_mod EXPORT_SYMBOL
-0x142072c0 transport_set_vpd_assoc drivers/target/target_core_mod EXPORT_SYMBOL
-0x3a20a9d7 transport_set_vpd_ident_type drivers/target/target_core_mod EXPORT_SYMBOL
-0x0871ffd6 transport_set_vpd_ident drivers/target/target_core_mod EXPORT_SYMBOL
-0x6ba64e40 __target_init_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0xc17d1449 target_cmd_init_cdb drivers/target/target_core_mod EXPORT_SYMBOL
-0x7bb24371 target_cmd_parse_cdb drivers/target/target_core_mod EXPORT_SYMBOL
-0x593835ed transport_handle_cdb_direct drivers/target/target_core_mod EXPORT_SYMBOL
-0x1e3471af target_init_cmd drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0xede49408 target_submit_prep drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0x504b9fbe target_submit drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0x73301d00 target_submit_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0xc9557c00 target_queue_submission drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0x4ee9e311 target_submit_tmr drivers/target/target_core_mod EXPORT_SYMBOL
-0xdcb20acc transport_generic_request_failure drivers/target/target_core_mod EXPORT_SYMBOL
-0x79b80c30 target_execute_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0x5bdb610a target_free_sgl drivers/target/target_core_mod EXPORT_SYMBOL
-0x38ebed5f transport_kmap_data_sg drivers/target/target_core_mod EXPORT_SYMBOL
-0x24c3624f transport_kunmap_data_sg drivers/target/target_core_mod EXPORT_SYMBOL
-0xaefbcacd target_alloc_sgl drivers/target/target_core_mod EXPORT_SYMBOL
-0x25e4a86a transport_generic_new_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0xaf1cc5b5 transport_generic_free_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0xc2714a6d target_get_sess_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0x2e83363d target_put_sess_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0x467cc9a2 target_show_cmd drivers/target/target_core_mod EXPORT_SYMBOL
-0x2b9b3376 target_stop_cmd_counter drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0x1715d7de target_stop_session drivers/target/target_core_mod EXPORT_SYMBOL
-0xb4489234 target_wait_for_cmds drivers/target/target_core_mod EXPORT_SYMBOL_GPL
-0xfb40c0c0 target_wait_for_sess_cmds drivers/target/target_core_mod EXPORT_SYMBOL
-0x6e423aec transport_wait_for_tasks drivers/target/target_core_mod EXPORT_SYMBOL
-0x5f4b1bab transport_send_check_condition_and_sense drivers/target/target_core_mod EXPORT_SYMBOL
-0xb38667ab target_send_busy drivers/target/target_core_mod EXPORT_SYMBOL
-0xce944b7f transport_generic_handle_tmr drivers/target/target_core_mod EXPORT_SYMBOL
-0xab1f3781 sbc_get_write_same_sectors drivers/target/target_core_mod EXPORT_SYMBOL
-0x63543e69 sbc_parse_cdb drivers/target/target_core_mod EXPORT_SYMBOL
-0x88bc4a33 sbc_get_device_type drivers/target/target_core_mod EXPORT_SYMBOL
-0xdd5bf291 sbc_dif_copy_prot drivers/target/target_core_mod EXPORT_SYMBOL
-0xd6cb740d sbc_dif_verify drivers/target/target_core_mod EXPORT_SYMBOL
-0x2711570b spc_emulate_inquiry_std drivers/target/target_core_mod EXPORT_SYMBOL
-0xf961cbdb spc_emulate_evpd_83 drivers/target/target_core_mod EXPORT_SYMBOL
-0x54fc6618 spc_emulate_report_luns drivers/target/target_core_mod EXPORT_SYMBOL
-0x2ee8ef8c spc_parse_cdb drivers/target/target_core_mod EXPORT_SYMBOL
-0xf34332f0 iscsi_find_param_from_key drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x8bc03998 iscsit_get_datain_values drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x997636a1 iscsit_increment_maxcmdsn drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x83ece11c iscsit_cause_connection_reinstatement drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x58693433 iscsit_stop_dataout_timer drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x0fd083de iscsi_change_param_sprintf drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xd2cc2565 iscsi_target_check_login_request drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xa28af164 iscsit_tmr_post_handler drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x725e57c0 iscsit_allocate_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x29e8f808 iscsit_sequence_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xc849b426 iscsit_find_cmd_from_itt drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xefff0b91 iscsit_find_cmd_from_itt_or_dump drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x025c57a2 iscsit_add_cmd_to_immediate_queue drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x330d6259 iscsit_release_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x95bd3f0f iscsit_free_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x34687d1a iscsit_queue_rsp drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x5a34135e iscsit_aborted_task drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xf13727d7 iscsit_add_reject drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x64b10f96 iscsit_reject_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xedb0f5dd iscsit_setup_scsi_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x0032b65b iscsit_set_unsolicited_dataout drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x27daa7bb iscsit_process_scsi_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x8843dd7b __iscsit_check_dataout_hdr drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xaf0e34fe iscsit_check_dataout_hdr drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x601061d2 iscsit_check_dataout_payload drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xcb605322 iscsit_setup_nop_out drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x9bfced4c iscsit_process_nop_out drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x287ade9b iscsit_handle_task_mgt_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x9591c799 iscsit_setup_text_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x461754cc iscsit_process_text_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x97099e62 iscsit_handle_logout_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x6631571f iscsit_handle_snack drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xfcd6f899 iscsit_build_datain_pdu drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x39aa1eac iscsit_build_logout_rsp drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xcd1b85d4 iscsit_build_nopin_rsp drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x92b9a02c iscsit_build_r2ts_for_cmd drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x20e44f03 iscsit_build_rsp_pdu drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x91a82525 iscsit_build_task_mgt_rsp drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x8961e982 iscsit_build_text_rsp drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x7084b546 iscsit_build_reject drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xadfeba3b iscsit_thread_check_cpumask drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x2de4249c iscsit_immediate_queue drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xa7a4b778 iscsit_response_queue drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0x1bfbe574 iscsit_logout_post_handler drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xc4135450 iscsit_register_transport drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xd87915cf iscsit_unregister_transport drivers/target/iscsi/iscsi_target_mod EXPORT_SYMBOL
-0xf214bb20 register_mtd_chip_driver drivers/mtd/chips/chipreg EXPORT_SYMBOL
-0xa1714199 unregister_mtd_chip_driver drivers/mtd/chips/chipreg EXPORT_SYMBOL
-0x156bef0f do_map_probe drivers/mtd/chips/chipreg EXPORT_SYMBOL
-0xa41fef6f map_destroy drivers/mtd/chips/chipreg EXPORT_SYMBOL
-0x50dabc2f mtd_table_mutex drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x92f705d7 __mtd_next_device drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xb7075882 mtd_check_expert_analysis_mode drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x1c10b6e3 mtd_wunit_to_pairing_info drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x40b7aaca mtd_pairing_info_to_wunit drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x07188430 mtd_pairing_groups drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x992f153a mtd_device_parse_register drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x12d695f8 mtd_device_unregister drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xa661150a register_mtd_user drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x527c9c73 unregister_mtd_user drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x732e1c1c get_mtd_device drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xca09482d __get_mtd_device drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x37cd71ad of_get_mtd_device_by_node drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x42e00b75 get_mtd_device_nm drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xf8934006 put_mtd_device drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xd798dbc6 __put_mtd_device drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x562f658f mtd_erase drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xcb60fe8b mtd_point drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xc26b8041 mtd_unpoint drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xfb1e2d14 mtd_get_unmapped_area drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xb745bbd5 mtd_read drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x86d1ed1e mtd_write drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xab0fa91a mtd_panic_write drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xbf47902c mtd_read_oob drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x635d3c29 mtd_write_oob drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x61709a0d mtd_ooblayout_ecc drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x4247e7e0 mtd_ooblayout_free drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xe0407155 mtd_ooblayout_find_eccregion drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x9641c904 mtd_ooblayout_get_eccbytes drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xe4114b14 mtd_ooblayout_set_eccbytes drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xcc174afb mtd_ooblayout_get_databytes drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xf74b659b mtd_ooblayout_set_databytes drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x78b687fc mtd_ooblayout_count_freebytes drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xb23e390d mtd_ooblayout_count_eccbytes drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x3a34e6b5 mtd_get_fact_prot_info drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x1feeea49 mtd_read_fact_prot_reg drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x67c50ee0 mtd_get_user_prot_info drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x861dbdb3 mtd_read_user_prot_reg drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xfc63effa mtd_write_user_prot_reg drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x58f3b136 mtd_lock_user_prot_reg drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x1bab0d41 mtd_erase_user_prot_reg drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x5c1e3d43 mtd_lock drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x8bc340d8 mtd_unlock drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x5f8a077b mtd_is_locked drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xd3368220 mtd_block_isreserved drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x805f9e2f mtd_block_isbad drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x519f37ab mtd_block_markbad drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xb7bec84e mtd_writev drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x99647cde mtd_kmalloc_up_to drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x4c92afba get_tree_mtd drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xab7a4bce kill_mtd_super drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x0b9ce44e mtd_concat_create drivers/mtd/mtd EXPORT_SYMBOL
-0x15b5c0a3 mtd_concat_destroy drivers/mtd/mtd EXPORT_SYMBOL
-0x17b4897a mtd_add_partition drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x7639509e mtd_del_partition drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x63dcaf28 __register_mtd_parser drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0x87b9bac9 deregister_mtd_parser drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xdd49808f mtd_get_device_size drivers/mtd/mtd EXPORT_SYMBOL_GPL
-0xd4d1b56a mtd_blktrans_cease_background drivers/mtd/mtd_blkdevs EXPORT_SYMBOL_GPL
-0xcc931923 register_mtd_blktrans drivers/mtd/mtd_blkdevs EXPORT_SYMBOL_GPL
-0x6e99e74f deregister_mtd_blktrans drivers/mtd/mtd_blkdevs EXPORT_SYMBOL_GPL
-0xe719418f add_mtd_blktrans_dev drivers/mtd/mtd_blkdevs EXPORT_SYMBOL_GPL
-0xc6d71a12 del_mtd_blktrans_dev drivers/mtd/mtd_blkdevs EXPORT_SYMBOL_GPL
-0xaa0135cb spi_nor_scan drivers/mtd/spi-nor/spi-nor EXPORT_SYMBOL_GPL
-0x81ec580e ubi_do_get_device_info drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x66011ab6 ubi_get_device_info drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0xe38ad0c1 ubi_get_volume_info drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0xbfa1f19e ubi_open_volume drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x85615924 ubi_open_volume_nm drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x462f0383 ubi_open_volume_path drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x8b86596f ubi_close_volume drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x6d391c86 ubi_leb_read drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x23f37d42 ubi_leb_read_sg drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x5e2ebc28 ubi_leb_write drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x69ea6ddf ubi_leb_change drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x2948bd5e ubi_leb_erase drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x913bd10b ubi_leb_unmap drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0xb17e38d5 ubi_leb_map drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x5a351ec4 ubi_is_mapped drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x42801d20 ubi_sync drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x38e10c1d ubi_flush drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0xf5ee9ba8 ubi_register_volume_notifier drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x85a8ee76 ubi_unregister_volume_notifier drivers/mtd/ubi/ubi EXPORT_SYMBOL_GPL
-0x26317514 uio_event_notify drivers/uio/uio EXPORT_SYMBOL_GPL
-0xa5e52efb __uio_register_device drivers/uio/uio EXPORT_SYMBOL_GPL
-0x355105d4 __devm_uio_register_device drivers/uio/uio EXPORT_SYMBOL_GPL
-0x39560183 uio_unregister_device drivers/uio/uio EXPORT_SYMBOL_GPL
-0x55909afb vfio_assign_device_set drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x48ee7465 vfio_device_set_open_count drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xb777ab62 vfio_find_device_in_devset drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xb1f52ee7 _vfio_alloc_device drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x6a9a5ce5 vfio_register_group_dev drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x8b19b53c vfio_register_emulated_iommu_dev drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xd35c561a vfio_unregister_group_dev drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xf787d7e6 vfio_mig_get_next_state drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x6e2aa0f0 vfio_combine_iova_ranges drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x328fa774 vfio_file_is_valid drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x55d51a23 vfio_file_enforced_coherent drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xd6e85f1b vfio_file_set_kvm drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x60a634c4 vfio_info_cap_add drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x19567d06 vfio_info_cap_shift drivers/vfio/vfio EXPORT_SYMBOL
-0x6c28be5a vfio_info_add_capability drivers/vfio/vfio EXPORT_SYMBOL
-0xadc044b7 vfio_set_irqs_validate_and_prepare drivers/vfio/vfio EXPORT_SYMBOL
-0xba1b479c vfio_pin_pages drivers/vfio/vfio EXPORT_SYMBOL
-0xc947bf0a vfio_unpin_pages drivers/vfio/vfio EXPORT_SYMBOL
-0x4ea41d14 vfio_dma_rw drivers/vfio/vfio EXPORT_SYMBOL
-0xebf864de vfio_file_iommu_group drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x36b6bf31 vfio_file_is_group drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xebe6631a vfio_file_has_dev drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xdaab0434 vfio_register_iommu_driver drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x40379759 vfio_unregister_iommu_driver drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x597e7160 vfio_virqfd_enable drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xcbb37161 vfio_virqfd_disable drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x8061d31e vfio_virqfd_flush_thread drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x4978913e vfio_iommufd_device_ictx drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xc5173f5d vfio_iommufd_get_dev_id drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x6f24d827 vfio_iommufd_physical_bind drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xc0d2300d vfio_iommufd_physical_unbind drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x2cf4c32f vfio_iommufd_physical_attach_ioas drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xe036bdcd vfio_iommufd_physical_detach_ioas drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x043f912f vfio_iommufd_emulated_bind drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x599dbed2 vfio_iommufd_emulated_unbind drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x539cf688 vfio_iommufd_emulated_attach_ioas drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0x3d506fe3 vfio_iommufd_emulated_detach_ioas drivers/vfio/vfio EXPORT_SYMBOL_GPL
-0xf4d17add vfio_pci_core_enable drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x7c2b5d5d vfio_pci_core_disable drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x8c92881f vfio_pci_core_close_device drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x2cca5adf vfio_pci_core_finish_enable drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0xbd1e5546 vfio_pci_core_register_dev_region drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x46dc8184 vfio_pci_core_ioctl drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0xc0df5d5c vfio_pci_core_ioctl_feature drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x19fc852c vfio_pci_core_read drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0xcfe3520b vfio_pci_core_write drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x52b070a8 vfio_pci_core_mmap drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x5086d2a7 vfio_pci_core_request drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0xdfd1879f vfio_pci_core_match drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x1ba2bfc5 vfio_pci_core_init_dev drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x28ca0d88 vfio_pci_core_release_dev drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x89260ce3 vfio_pci_core_register_device drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0xeca21d63 vfio_pci_core_unregister_device drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x33b9f478 vfio_pci_core_aer_err_detected drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0xcd14df28 vfio_pci_core_sriov_configure drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0xf67251e5 vfio_pci_core_err_handlers drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x4cf699b8 vfio_pci_core_set_params drivers/vfio/pci/vfio-pci-core EXPORT_SYMBOL_GPL
-0x67174c9f mdev_register_parent drivers/vfio/mdev/mdev EXPORT_SYMBOL
-0x237d78a8 mdev_unregister_parent drivers/vfio/mdev/mdev EXPORT_SYMBOL
-0x81c51b9f mdev_register_driver drivers/vfio/mdev/mdev EXPORT_SYMBOL
-0x484beb40 mdev_unregister_driver drivers/vfio/mdev/mdev EXPORT_SYMBOL
-0xa5714ed7 hci_uart_tx_wakeup drivers/bluetooth/hci_uart EXPORT_SYMBOL_GPL
-0x5789c128 h4_recv_buf drivers/bluetooth/hci_uart EXPORT_SYMBOL_GPL
-0x8c48be1e btintel_check_bdaddr drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x81f02dea btintel_enter_mfg drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x20106b09 btintel_exit_mfg drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x3fad60b3 btintel_set_bdaddr drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x437251cc btintel_set_diag drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x044f340c btintel_version_info drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x26bcef88 btintel_load_ddc_config drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0xccd382c4 btintel_set_event_mask_mfg drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x98cf428f btintel_read_version drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0xf8ae5d9f btintel_regmap_init drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x32d79754 btintel_send_intel_reset drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0xcd556220 btintel_read_boot_params drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x7b4652f3 btintel_download_firmware drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0xdbdafe8c btintel_set_quality_report drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x949d1601 btintel_configure_setup drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x0aaa224f btintel_recv_event drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x0fc3037f btintel_bootup drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0x7a0e4b9d btintel_secure_send_result drivers/bluetooth/btintel EXPORT_SYMBOL_GPL
-0xcaa7a83a btmrvl_interrupt drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0xe744ff64 btmrvl_check_evtpkt drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0xa00fe9e9 btmrvl_process_event drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0x59773aca btmrvl_send_module_cfg_cmd drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0x6e2a94bb btmrvl_pscan_window_reporting drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0x5f4f0f5a btmrvl_send_hscfg_cmd drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0x686c7206 btmrvl_enable_ps drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0xd15cd4d8 btmrvl_enable_hs drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0xbe54c97a btmrvl_register_hdev drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0x0e1c59e8 btmrvl_add_card drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0x9942d75c btmrvl_remove_card drivers/bluetooth/btmrvl EXPORT_SYMBOL_GPL
-0x2c825ef0 btbcm_check_bdaddr drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0xf827c6e3 btbcm_set_bdaddr drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0x6779678a btbcm_read_pcm_int_params drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0x734c102a btbcm_write_pcm_int_params drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0x3e88cca4 btbcm_patchram drivers/bluetooth/btbcm EXPORT_SYMBOL
-0x7d90481a btbcm_initialize drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0x9e4c7efa btbcm_finalize drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0x18b7565d btbcm_setup_patchram drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0xdc604dd0 btbcm_setup_apple drivers/bluetooth/btbcm EXPORT_SYMBOL_GPL
-0xd5e7f28e btrtl_set_driver_name drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0xaf78f260 btrtl_free drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0x7b82e352 btrtl_initialize drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0xe6f0f51a btrtl_download_firmware drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0x751f01ec btrtl_set_quirks drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0xd208947f btrtl_setup_realtek drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0x400fb48a btrtl_shutdown_realtek drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0x3ad01c8e btrtl_get_uart_settings drivers/bluetooth/btrtl EXPORT_SYMBOL_GPL
-0x03fcaa16 memstick_detect_change drivers/memstick/core/memstick EXPORT_SYMBOL
-0x1a4be864 memstick_next_req drivers/memstick/core/memstick EXPORT_SYMBOL
-0xf2d7d02d memstick_new_req drivers/memstick/core/memstick EXPORT_SYMBOL
-0x287277cb memstick_init_req_sg drivers/memstick/core/memstick EXPORT_SYMBOL
-0x199305e6 memstick_init_req drivers/memstick/core/memstick EXPORT_SYMBOL
-0x2bb6555d memstick_set_rw_addr drivers/memstick/core/memstick EXPORT_SYMBOL
-0x87a4a399 memstick_alloc_host drivers/memstick/core/memstick EXPORT_SYMBOL
-0x00532dd4 memstick_add_host drivers/memstick/core/memstick EXPORT_SYMBOL
-0x9b3565b3 memstick_remove_host drivers/memstick/core/memstick EXPORT_SYMBOL
-0x71910cf3 memstick_free_host drivers/memstick/core/memstick EXPORT_SYMBOL
-0xad6d2895 memstick_suspend_host drivers/memstick/core/memstick EXPORT_SYMBOL
-0x0eed5d39 memstick_resume_host drivers/memstick/core/memstick EXPORT_SYMBOL
-0xed438130 memstick_register_driver drivers/memstick/core/memstick EXPORT_SYMBOL
-0xe4cb1aea memstick_unregister_driver drivers/memstick/core/memstick EXPORT_SYMBOL
-0x22f3cf93 ib_pack drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xa432baf6 ib_unpack drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6b958320 ib_ud_ip4_csum drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb7852a05 ib_ud_header_init drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xe9e799fc ib_ud_header_pack drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3fc2387c ib_ud_header_unpack drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf6ed3334 ib_event_msg drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xe5840ec6 ib_wc_status_msg drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xae956dce ib_rate_to_mult drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xe7b52e5f mult_to_ib_rate drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x61d24c52 ib_rate_to_mbps drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf5dedb30 rdma_node_get_transport drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xc24b022f rdma_port_get_link_layer drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd164a4c4 __ib_alloc_pd drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x918729fb ib_dealloc_pd_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xbfdb5399 rdma_copy_ah_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xcfe6e209 rdma_replace_ah_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x70eabc47 rdma_move_ah_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x430e43a8 rdma_create_ah drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x44dfbabb rdma_create_user_ah drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x00cd25ea ib_get_rdma_header_version drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x58df5b94 ib_get_gids_from_rdma_hdr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x493a4d71 ib_init_ah_attr_from_wc drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xbcfe51e9 rdma_move_grh_sgid_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xdb75219b rdma_destroy_ah_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x24710c01 ib_create_ah_from_wc drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xfe43e16a rdma_modify_ah drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4ee75686 rdma_query_ah drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xc86a74bc rdma_destroy_ah_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3295262a ib_create_srq_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xde0fbdd0 ib_modify_srq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x35459c19 ib_query_srq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x98717e85 ib_destroy_srq_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x352780dd ib_open_qp drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x45f4dcd9 ib_create_qp_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x92ae51e4 ib_qp_usecnt_inc drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3a62c2c9 ib_qp_usecnt_dec drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xffdf6242 ib_create_qp_kernel drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x73baf9a2 ib_modify_qp_is_ok drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x32c5f122 ib_modify_qp_with_udata drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb75b89e8 ib_get_eth_speed drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x02e58510 ib_modify_qp drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3f97f61a ib_query_qp drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x7e011766 ib_close_qp drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x276321c3 ib_destroy_qp_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd910fe6c __ib_create_cq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x83d07f80 rdma_set_cq_moderation drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x19c92fd3 ib_destroy_cq_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x7a9a5424 ib_resize_cq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4da5d782 ib_reg_user_mr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4e0ffecf ib_advise_mr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xc4e8581e ib_dereg_mr_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x8215f52a ib_alloc_mr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x07a58b01 ib_alloc_mr_integrity drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6bbb6ab6 ib_attach_mcast drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xebba9971 ib_detach_mcast drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x501681ba ib_alloc_xrcd_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb96def8c ib_dealloc_xrcd_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf2ee16e5 ib_create_wq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6048f5f0 ib_destroy_wq_user drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xbe267741 ib_check_mr_status drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x5a2fa469 ib_set_vf_link_state drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb75c84c6 ib_get_vf_config drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6246f93e ib_get_vf_stats drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xee5bbb2c ib_set_vf_guid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6af96d7a ib_get_vf_guid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x065d4985 ib_map_mr_sg_pi drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x174e28b9 ib_map_mr_sg drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb630901a ib_sg_to_pages drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xa45fce6c ib_drain_sq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x19bf1f0e ib_drain_rq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x59cc1419 ib_drain_qp drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xca449385 rdma_alloc_netdev drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf40440d6 rdma_init_netdev drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x680e3cfd __rdma_block_iter_start drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x61373fd2 __rdma_block_iter_next drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x57b1d46a rdma_alloc_hw_stats_struct drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x87a0897f rdma_free_hw_stats_struct drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd72d9172 ib_process_cq_direct drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf889d032 __ib_alloc_cq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb1b14a6b __ib_alloc_cq_any drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3694a9ac ib_free_cq drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xe6e62b6e ib_cq_pool_get drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x877633ff ib_cq_pool_put drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x5e35ea06 rdma_rw_ctx_init drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf3446a0a rdma_rw_ctx_signature_init drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x50ee25c1 rdma_rw_ctx_wrs drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4b6cd293 rdma_rw_ctx_post drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x32c55519 rdma_rw_ctx_destroy drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x7d658be6 rdma_rw_ctx_destroy_signature drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3228424b rdma_rw_mr_factor drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6f711fcc ib_port_sysfs_get_ibdev_kobj drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xab9899d6 ib_port_register_client_groups drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xc4930154 ib_port_unregister_client_groups drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xdbd019c4 ib_wq drivers/infiniband/core/ib_core EXPORT_SYMBOL_GPL
-0xb15a1647 rdma_dev_access_netns drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x1d906f22 ibdev_printk drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x24c0812e ibdev_emerg drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x41ea7de7 ibdev_alert drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x98b83c28 ibdev_crit drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x7efd371e ibdev_err drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x64a30250 ibdev_warn drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x064dd4ae ibdev_notice drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xeeaf24b0 ibdev_info drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xeeec1f33 ib_device_put drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x46c32c0d ib_device_get_by_name drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x41cb7d36 _ib_alloc_device drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x1412be6b ib_dealloc_device drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x97b1fe05 ib_port_immutable_read drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6668db28 ib_get_device_fw_str drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x0a2427c3 ib_register_device drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x54f4617a ib_unregister_device drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x91427a99 ib_unregister_device_and_put drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd0478dc4 ib_unregister_driver drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x267e95cd ib_unregister_device_queued drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb7da8fcf ib_register_client drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd73e38be ib_unregister_client drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd922bbf5 ib_set_client_data drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xe85bbff9 ib_register_event_handler drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd79ecfae ib_unregister_event_handler drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x0d24fa41 ib_query_port drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xeec9ced0 ib_device_set_netdev drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xc32c8b27 ib_device_get_by_netdev drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xff211dc5 ib_query_pkey drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xbc832426 ib_modify_device drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x059bf10f ib_modify_port drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x17c2ee41 ib_find_gid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x687051b5 ib_find_pkey drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x9d837bc1 ib_get_net_dev_by_params drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd8cb5d9d ib_set_device_ops drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x05b1c949 ib_dma_virt_map_sg drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x434c5d10 zgid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x55bb02f3 ib_cache_gid_type_str drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6f3614b6 rdma_is_zero_gid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x90e807c7 ib_cache_gid_parse_type_str drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf6b41ea5 rdma_find_gid_by_port drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x1438612c rdma_query_gid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4ff300e8 rdma_read_gid_hw_context drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x8ac437d9 rdma_find_gid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3abb2ea3 ib_get_cached_pkey drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xe24c41db ib_get_cached_subnet_prefix drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf738c5b7 ib_find_cached_pkey drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x54598ce6 ib_find_exact_cached_pkey drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x2cee45ca ib_get_cached_lmc drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xe4e145ef ib_get_cached_port_state drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6d736693 rdma_get_gid_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x7254692b rdma_query_gid_table drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xbfda495f rdma_put_gid_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xbd5e88cd rdma_hold_gid_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x94ad81a9 rdma_read_gid_attr_ndev_rcu drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x50accafc rdma_read_gid_l2_fields drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xddc910ca ib_dispatch_event drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x45fb8985 rdma_nl_chk_listeners drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x2e02b728 rdma_nl_register drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x75a729a0 rdma_nl_unregister drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x59db2d54 ibnl_put_msg drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x66d0b681 ibnl_put_attr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x6c71a90d rdma_nl_unicast drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x44df12ae rdma_nl_unicast_wait drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x7c6ba010 rdma_nl_multicast drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x48689b3b roce_gid_type_mask_support drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xeaeba438 rdma_roce_rescan_device drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xbacf7ded ib_mr_pool_get drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd339baea ib_mr_pool_put drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4b85d5ea ib_mr_pool_init drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4f7a24ff ib_mr_pool_destroy drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x70807834 rdma_addr_size drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd6636ca6 rdma_addr_size_in6 drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x305e5701 rdma_addr_size_kss drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x96a7142d rdma_copy_src_l2_addr drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x0581b300 rdma_translate_ip drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xae9b871a rdma_resolve_ip drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x24a76ad6 rdma_addr_cancel drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x0c86f5cb ib_sa_register_client drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x439ce33c ib_sa_unregister_client drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xda0d50ec ib_sa_cancel_query drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xa4d6c4c0 ib_init_ah_attr_from_path drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd21bb37a ib_sa_unpack_path drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb4c40040 ib_sa_pack_path drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xda524b4c ib_sa_path_rec_get drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xa5fa4ebc ib_sa_guid_info_rec_query drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x42b54fc6 ib_sa_join_multicast drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4e90435c ib_sa_free_multicast drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x88e590a4 ib_sa_get_mcmember_rec drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x0a3988e2 ib_init_ah_from_mcmember drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4e155af0 ib_response_mad drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xaec949e8 ib_register_mad_agent drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x70691dc7 ib_unregister_mad_agent drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x7fa4ca97 ib_mad_kernel_rmpp_agent drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3d469728 ib_create_send_mad drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x787ccc4c ib_get_mad_data_offset drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x613b1e2e ib_is_mad_class_rmpp drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x509b9cc4 ib_get_rmpp_segment drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x81673ac6 ib_free_send_mad drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x61278120 ib_post_send_mad drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x3c6e28ac ib_free_recv_mad drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xf63e7ddd ib_modify_mad drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x019079c4 rdma_nl_put_driver_string drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x4937e873 rdma_nl_put_driver_u32 drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x08c1d416 rdma_nl_put_driver_u32_hex drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xa38e4470 rdma_nl_put_driver_u64 drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xdebd5d0f rdma_nl_put_driver_u64_hex drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x2958d6a9 rdma_nl_stat_hwcounter_entry drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x0ef38b3e rdma_link_register drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x9c6f80e2 rdma_link_unregister drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xfa68becb rdma_restrack_count drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x9f1d217a rdma_restrack_set_name drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xd6127492 rdma_restrack_parent_name drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x186c95b6 rdma_restrack_new drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x0bab960f rdma_restrack_add drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x1298e445 rdma_restrack_get drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xdbbf98c4 rdma_restrack_get_byid drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xfb09d2db rdma_restrack_put drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xffe5a416 rdma_restrack_del drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x14e581c9 rdma_umap_priv_init drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x81022f35 rdma_user_mmap_io drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x27f75a5a rdma_user_mmap_entry_get_pgoff drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x997c3a84 rdma_user_mmap_entry_get drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x5135b804 rdma_user_mmap_entry_put drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x84dcefcb rdma_user_mmap_entry_remove drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x49269cc0 rdma_user_mmap_entry_insert_range drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x46ea69be rdma_user_mmap_entry_insert drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x35b82c95 uverbs_user_mmap_disassociate drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xa0131b47 rdma_user_mmap_disassociate drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xb0d29ff7 ib_create_qp_security drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0xc4fd2e4e ib_rdmacg_try_charge drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x72cb3acf ib_rdmacg_uncharge drivers/infiniband/core/ib_core EXPORT_SYMBOL
-0x69824a14 ibcm_reject_msg drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x8c4293ae ib_create_cm_id drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x90cd2340 ib_destroy_cm_id drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xb7475506 ib_cm_listen drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x8dbf53c3 ib_cm_insert_listen drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x59c4b0b0 ib_send_cm_req drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xa441994f ib_send_cm_rep drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x0cbec5c9 ib_send_cm_rtu drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x54762e2b ib_send_cm_dreq drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xf61aa603 ib_send_cm_drep drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xc6a07aa9 ib_send_cm_rej drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x62f350e8 ib_send_cm_mra drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xffd23d2b ib_send_cm_sidr_req drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0x55859cfd ib_send_cm_sidr_rep drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xe900af34 ib_cm_notify drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xb6311ce3 ib_cm_init_qp_attr drivers/infiniband/core/ib_cm EXPORT_SYMBOL
-0xf3df871f iwcm_reject_msg drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0x70c82267 iw_create_cm_id drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0x13ddc7a3 iw_cm_disconnect drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0x0bdb9c31 iw_destroy_cm_id drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0xf4acd426 iw_cm_listen drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0x4103b6c7 iw_cm_reject drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0x12a0c801 iw_cm_accept drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0x1c5097bf iw_cm_connect drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0xa11ad280 iw_cm_init_qp_attr drivers/infiniband/core/iw_cm EXPORT_SYMBOL
-0x907df803 rdma_event_msg drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x9852257d rdma_reject_msg drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xdabc7970 rdma_consumer_reject_data drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x6478b80b rdma_iw_cm_id drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xda87515e rdma_res_to_id drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xa3fb957c __rdma_create_kernel_id drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x4db7e337 rdma_create_user_id drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xb87219f0 rdma_create_qp drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x8204d201 rdma_destroy_qp drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xc5a92563 rdma_init_qp_attr drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x5ee70e65 rdma_destroy_id drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xd7c2f1d4 rdma_get_service_id drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xacd2806a rdma_read_gids drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xa2677c22 rdma_set_service_type drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x64b7925c rdma_set_ack_timeout drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x5363e016 rdma_set_min_rnr_timer drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xa983c375 rdma_set_ib_path drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x801b85eb rdma_resolve_route drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x7764c471 rdma_set_reuseaddr drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x0ba23f1b rdma_set_afonly drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xb8468a9b rdma_listen drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xb3c0e6c2 rdma_resolve_addr drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x0973b796 rdma_bind_addr drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x27c88122 rdma_connect_locked drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xbf5ef59f rdma_connect drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x7b3c2d2f rdma_connect_ece drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x0a8d8939 rdma_accept drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xa4037e34 rdma_accept_ece drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xb985a609 rdma_lock_handler drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x9d196262 rdma_unlock_handler drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x543d9a1a rdma_notify drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x46ac77d7 rdma_reject drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x36e3660a rdma_disconnect drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x4ef883f9 rdma_join_multicast drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0x4aa0ca33 rdma_leave_multicast drivers/infiniband/core/rdma_cm EXPORT_SYMBOL
-0xf5f2c4d3 ib_uverbs_get_ucontext_file drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x652c8a05 flow_resources_alloc drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x700168e9 ib_uverbs_flow_resources_free drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x0b007764 flow_resources_add drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xdb02c95b ib_copy_ah_attr_to_user drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x546ac86c ib_copy_qp_attr_to_user drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x36c34dc6 ib_copy_path_rec_to_user drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x754b0000 ib_copy_path_rec_from_user drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xb5b96b66 uverbs_uobject_put drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x310b3f67 uverbs_idr_class drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xb8420d13 uverbs_uobject_fd_release drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xf54a90af uverbs_fd_class drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x26add6cd uverbs_destroy_def_handler drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xaa860352 _uverbs_alloc drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xd2a00281 uverbs_get_flags64 drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xf6cdf766 uverbs_get_flags32 drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x4b91e404 uverbs_copy_to drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x889756d9 _uverbs_get_const_signed drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x326ff7cf _uverbs_get_const_unsigned drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xba4e9c62 uverbs_copy_to_struct_or_zero drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x187269a7 uverbs_finalize_uobj_create drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xcd1f3c1d ib_umem_find_best_pgsz drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xb146b913 ib_umem_get drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x21e9a5c5 ib_umem_release drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x03ac043c ib_umem_copy_from drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xb51c2c20 ib_umem_dmabuf_map_pages drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x67293888 ib_umem_dmabuf_unmap_pages drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x6b5da780 ib_umem_dmabuf_get drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xe9d6a61f ib_umem_dmabuf_get_pinned drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x24591abf ib_umem_odp_alloc_implicit drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xd7468bc2 ib_umem_odp_alloc_child drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x35f333b5 ib_umem_odp_get drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xc74ce222 ib_umem_odp_release drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x84b62052 ib_umem_odp_map_dma_and_lock drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0xdbed1f70 ib_umem_odp_unmap_dma_pages drivers/infiniband/core/ib_uverbs EXPORT_SYMBOL
-0x7bab8542 rvt_alloc_device drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x1ddae24e rvt_dealloc_device drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x48c24979 rvt_register_device drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x9aac27dd rvt_unregister_device drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xe01f84bf rvt_init_port drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xecf6749b rvt_check_ah drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xb71f9fba rvt_cq_enter drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x40b2d472 rvt_mcast_find drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xc9b3e82b rvt_fast_reg_mr drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xd6f44e4e rvt_invalidate_rkey drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xf359f9a5 rvt_lkey_ok drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xb48e4f4b rvt_rkey_ok drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x0e385842 ib_rvt_state_ops drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xbeaaa129 rvt_error_qp drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x865aea8e rvt_get_rwqe drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xc4043de3 rvt_comm_est drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x1bc17825 rvt_rc_error drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xe9cf3e43 rvt_rnr_tbl_to_usec drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xf11fd9df rvt_add_retry_timer_ext drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x912d9b31 rvt_add_rnr_timer drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xdb6a94fe rvt_stop_rc_timers drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x42dbccdc rvt_del_timers_sync drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xd7a9f84e rvt_rc_rnr_retry drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x2506c8e5 rvt_qp_iter_init drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x7f502c85 rvt_qp_iter_next drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xcaf9fbf4 rvt_qp_iter drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xd27b9130 rvt_send_complete drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x72afd4d7 rvt_copy_sge drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0xaf902d0c rvt_ruc_loopback drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x901ee101 rvt_compute_aeth drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x868d5e63 rvt_get_credit drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x41666382 rvt_restart_sge drivers/infiniband/sw/rdmavt/rdmavt EXPORT_SYMBOL
-0x8b72df05 dca_add_requester drivers/dca/dca EXPORT_SYMBOL_GPL
-0x80e231bf dca_remove_requester drivers/dca/dca EXPORT_SYMBOL_GPL
-0x4e14efb3 dca3_get_tag drivers/dca/dca EXPORT_SYMBOL_GPL
-0xaa634427 dca_get_tag drivers/dca/dca EXPORT_SYMBOL_GPL
-0xeefe810e alloc_dca_provider drivers/dca/dca EXPORT_SYMBOL_GPL
-0xbf6fd5ae free_dca_provider drivers/dca/dca EXPORT_SYMBOL_GPL
-0x552e096f register_dca_provider drivers/dca/dca EXPORT_SYMBOL_GPL
-0xf5236887 unregister_dca_provider drivers/dca/dca EXPORT_SYMBOL_GPL
-0xac34ecec dca_register_notify drivers/dca/dca EXPORT_SYMBOL_GPL
-0x01a33ab9 dca_unregister_notify drivers/dca/dca EXPORT_SYMBOL_GPL
-0x15fb17ac bcma_find_core_unit drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x5de2bd17 bcma_core_irq drivers/bcma/bcma EXPORT_SYMBOL
-0x88ccf689 __bcma_driver_register drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x821dd0b7 bcma_driver_unregister drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xe4e4678d bcma_core_is_enabled drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x9d08e855 bcma_core_disable drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xcda25e67 bcma_core_enable drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x0eb9d9b9 bcma_core_set_clockmode drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x31cac31f bcma_core_pll_ctl drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x3bd07e16 bcma_core_dma_translation drivers/bcma/bcma EXPORT_SYMBOL
-0xf7765c93 bcma_chipco_get_alp_clock drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x69af3952 bcma_chipco_gpio_out drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xfc166ea0 bcma_chipco_gpio_outen drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xdf12626e bcma_chipco_gpio_control drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xede28b3c bcma_chipco_pll_read drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x58921713 bcma_chipco_pll_write drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x45720944 bcma_chipco_pll_maskset drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xebc044f9 bcma_chipco_chipctl_maskset drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xfa6d380d bcma_chipco_regctl_maskset drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x1d2813a8 bcma_pmu_get_bus_clock drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x30d91e74 bcma_pmu_spuravoid_pllupdate drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xc9f8df5a bcma_chipco_b_mii_write drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x460050a0 bcma_core_pci_power_save drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xc333b53e bcma_host_pci_up drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x42a6a8b7 bcma_host_pci_down drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0x7499440b bcma_host_pci_irq_ctl drivers/bcma/bcma EXPORT_SYMBOL_GPL
-0xa909cfc5 vhost_work_init drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x9e144aa0 vhost_poll_init drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xd83332c8 vhost_poll_start drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x2e296608 vhost_poll_stop drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xfe821ce1 vhost_vq_work_queue drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x16520716 vhost_vq_flush drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xf8daa2b9 vhost_dev_flush drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x44ce383a vhost_vq_has_work drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xe94bb95c vhost_poll_queue drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xbf6374f9 vhost_vq_is_setup drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x1311da21 vhost_exceeds_weight drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xbc54d2dd vhost_dev_init drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x795620c3 vhost_dev_check_owner drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xf4feb06f vhost_dev_has_owner drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xa0418e56 vhost_worker_ioctl drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xc6f875f6 vhost_dev_set_owner drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xfd2b3e45 vhost_dev_reset_owner_prepare drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xdeed6682 vhost_dev_reset_owner drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xc8164103 vhost_dev_stop drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x19d04625 vhost_clear_msg drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x6a824ff6 vhost_dev_cleanup drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x5cca05a1 vhost_chr_write_iter drivers/vhost/vhost EXPORT_SYMBOL
-0xbcaefbea vhost_chr_poll drivers/vhost/vhost EXPORT_SYMBOL
-0x86085205 vhost_chr_read_iter drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x87a340d3 vq_meta_prefetch drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x3bfa10eb vhost_log_access_ok drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x5f03a35a vhost_vq_access_ok drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xfca3f0a4 vhost_vring_ioctl drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x0a0d81b3 vhost_init_device_iotlb drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x776940df vhost_dev_ioctl drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xaa54a4fc vhost_log_write drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xe1ece264 vhost_vq_init_access drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x3fab6791 vhost_get_vq_desc drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xaa11b8d9 vhost_discard_vq_desc drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xc513318f vhost_add_used drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x54775676 vhost_add_used_n drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x3dd3e0d0 vhost_signal drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xbde99952 vhost_add_used_and_signal drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x4ad0f501 vhost_add_used_and_signal_n drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x0572e784 vhost_vq_avail_empty drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xf4a65ba0 vhost_enable_notify drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x766adfec vhost_disable_notify drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x5d66f589 vhost_new_msg drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0x37193bc8 vhost_enqueue_msg drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xa98cde6a vhost_dequeue_msg drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xc096d17b vhost_set_backend_features drivers/vhost/vhost EXPORT_SYMBOL_GPL
-0xf9deb0db vhost_iotlb_map_free drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x885512a2 vhost_iotlb_add_range_ctx drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x38ff875f vhost_iotlb_add_range drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x6bec0e66 vhost_iotlb_del_range drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x8a7d8ee9 vhost_iotlb_init drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0xc577832d vhost_iotlb_alloc drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x5f4e5249 vhost_iotlb_reset drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0xa24517eb vhost_iotlb_free drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x69e872f9 vhost_iotlb_itree_first drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x83be64b9 vhost_iotlb_itree_next drivers/vhost/vhost_iotlb EXPORT_SYMBOL_GPL
-0x37989d9b iio_triggered_buffer_setup_ext drivers/iio/buffer/industrialio-triggered-buffer EXPORT_SYMBOL
-0x93303235 iio_triggered_buffer_cleanup drivers/iio/buffer/industrialio-triggered-buffer EXPORT_SYMBOL
-0x318efce7 devm_iio_triggered_buffer_setup_ext drivers/iio/buffer/industrialio-triggered-buffer EXPORT_SYMBOL_GPL
-0xb8b8a18b iio_kfifo_allocate drivers/iio/buffer/kfifo_buf EXPORT_SYMBOL
-0x54be73e5 iio_kfifo_free drivers/iio/buffer/kfifo_buf EXPORT_SYMBOL
-0x82532288 devm_iio_kfifo_buffer_setup_ext drivers/iio/buffer/kfifo_buf EXPORT_SYMBOL_GPL
-0x8a9a967f hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID_ATTRIBUTES
-0x2a6b7c7e hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x9d832c22 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x930cc446 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x29ec12a7 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x521e2e31 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x0b4a6f81 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0xbb8d3f31 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x6f4bc480 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID_ATTRIBUTES
-0x52ccbe6b hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID_ATTRIBUTES
-0xaa825ee3 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID_ATTRIBUTES
-0x4346a2a4 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common EXPORT_SYMBOL IIO_HID
-0x49abfaa4 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger EXPORT_SYMBOL IIO_HID
-0x5b5f459f hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger EXPORT_SYMBOL IIO_HID
-0xaed6f1f3 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger EXPORT_SYMBOL IIO_HID
-0x517c5efa hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger EXPORT_SYMBOL IIO_HID
-0x297dbf26 iio_bus_type drivers/iio/industrialio EXPORT_SYMBOL
-0x72751692 iio_device_id drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x9dfb7eda iio_buffer_enabled drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xdbedb4af iio_get_debugfs_dentry drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xf15cad02 iio_read_const_attr drivers/iio/industrialio EXPORT_SYMBOL
-0x654eaa2f iio_device_set_clock drivers/iio/industrialio EXPORT_SYMBOL
-0x0a6a0c52 iio_device_get_clock drivers/iio/industrialio EXPORT_SYMBOL
-0xb0715f56 iio_get_time_ns drivers/iio/industrialio EXPORT_SYMBOL
-0x2c4fff2d iio_enum_available_read drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x79eb160a iio_enum_read drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x849d4e42 iio_enum_write drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x6cc58e9f iio_show_mount_matrix drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x8f2ef5ae iio_read_mount_matrix drivers/iio/industrialio EXPORT_SYMBOL
-0x4dce7dd4 iio_format_value drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x26f6b499 iio_str_to_fixpoint drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x71eeeb0f iio_device_alloc drivers/iio/industrialio EXPORT_SYMBOL
-0x3ad72c4a iio_device_free drivers/iio/industrialio EXPORT_SYMBOL
-0xcb102f38 devm_iio_device_alloc drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xf338d420 __iio_device_register drivers/iio/industrialio EXPORT_SYMBOL
-0x0d7b64ac iio_device_unregister drivers/iio/industrialio EXPORT_SYMBOL
-0x33584f53 __devm_iio_device_register drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x493583c5 iio_device_claim_direct_mode drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x2bee1609 iio_device_release_direct_mode drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xa46bbc56 iio_device_claim_buffer_mode drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xc6b0299a iio_device_release_buffer_mode drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x6fad2254 iio_device_get_current_mode drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x24b00be4 iio_push_event drivers/iio/industrialio EXPORT_SYMBOL
-0xacd22d10 iio_map_array_register drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x485735f9 iio_map_array_unregister drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x8c08c446 devm_iio_map_array_register drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x406aced4 fwnode_iio_channel_get_by_name drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xd9365435 iio_channel_get drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x80023943 iio_channel_release drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x064e650e devm_iio_channel_get drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xbd6a3276 devm_fwnode_iio_channel_get_by_name drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x1486d1dc iio_channel_get_all drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xcf5f8885 iio_channel_release_all drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xa315cbea devm_iio_channel_get_all drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x6e2cf0bd iio_read_channel_raw drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x9f7df308 iio_read_channel_average_raw drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x4f0e5121 iio_convert_raw_to_processed drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x6669e188 iio_read_channel_attribute drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x82a5bfbc iio_read_channel_offset drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xf21c9eee iio_read_channel_processed_scale drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x7bcdb21f iio_read_channel_processed drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xdfaed222 iio_read_channel_scale drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xa5c3c575 iio_read_avail_channel_attribute drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xdb6605d3 iio_read_avail_channel_raw drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x6ff1fe12 iio_read_max_channel_raw drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x2d9fc443 iio_read_min_channel_raw drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x554b18f2 iio_get_channel_type drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x3ed24b65 iio_write_channel_attribute drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xd0ae1f9b iio_write_channel_raw drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x571861e3 iio_get_channel_ext_info_count drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x52a12b4f iio_read_channel_ext_info drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x59db80bc iio_write_channel_ext_info drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x91ffd8a7 iio_pop_from_buffer drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x187f1541 iio_buffer_init drivers/iio/industrialio EXPORT_SYMBOL
-0xcd9044a0 iio_update_buffers drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x7c862df0 iio_validate_scan_mask_onehot drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x3523ac7d iio_push_to_buffers drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x9abf945a iio_push_to_buffers_with_ts_unaligned drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x86179118 iio_buffer_get drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x0d6952b8 iio_buffer_put drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x7659cae7 iio_device_attach_buffer drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x2dc575af iio_trigger_register drivers/iio/industrialio EXPORT_SYMBOL
-0x6ba20195 iio_trigger_unregister drivers/iio/industrialio EXPORT_SYMBOL
-0x0f7eb80b iio_trigger_set_immutable drivers/iio/industrialio EXPORT_SYMBOL
-0x78f07a9f iio_trigger_poll drivers/iio/industrialio EXPORT_SYMBOL
-0x2d6bcdcb iio_trigger_generic_data_rdy_poll drivers/iio/industrialio EXPORT_SYMBOL
-0x9845ee17 iio_trigger_poll_nested drivers/iio/industrialio EXPORT_SYMBOL
-0xdab2573d iio_trigger_notify_done drivers/iio/industrialio EXPORT_SYMBOL
-0xdf76bbeb iio_pollfunc_store_time drivers/iio/industrialio EXPORT_SYMBOL
-0x850b827c iio_alloc_pollfunc drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xc48c6773 iio_dealloc_pollfunc drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xc0549399 __iio_trigger_alloc drivers/iio/industrialio EXPORT_SYMBOL
-0x3ed5c09d iio_trigger_free drivers/iio/industrialio EXPORT_SYMBOL
-0xb6e4c284 __devm_iio_trigger_alloc drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x4c493e27 devm_iio_trigger_register drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0xd3323a44 iio_trigger_using_own drivers/iio/industrialio EXPORT_SYMBOL
-0x5cc2b671 iio_validate_own_trigger drivers/iio/industrialio EXPORT_SYMBOL_GPL
-0x11b4dae9 iio_trigger_validate_own_device drivers/iio/industrialio EXPORT_SYMBOL
-0x2223443e __ntb_register_client drivers/ntb/ntb EXPORT_SYMBOL
-0xf8fca93c ntb_unregister_client drivers/ntb/ntb EXPORT_SYMBOL
-0x1e6a1c08 ntb_register_device drivers/ntb/ntb EXPORT_SYMBOL
-0x91297a79 ntb_unregister_device drivers/ntb/ntb EXPORT_SYMBOL
-0x0ade5e52 ntb_set_ctx drivers/ntb/ntb EXPORT_SYMBOL
-0x62ca2f6d ntb_clear_ctx drivers/ntb/ntb EXPORT_SYMBOL
-0x99b71a62 ntb_link_event drivers/ntb/ntb EXPORT_SYMBOL
-0xb1024f1e ntb_db_event drivers/ntb/ntb EXPORT_SYMBOL
-0xabf8f50a ntb_msg_event drivers/ntb/ntb EXPORT_SYMBOL
-0x1adcf094 ntb_default_port_number drivers/ntb/ntb EXPORT_SYMBOL
-0xb1c09a86 ntb_default_peer_port_count drivers/ntb/ntb EXPORT_SYMBOL
-0xeee8ae9b ntb_default_peer_port_number drivers/ntb/ntb EXPORT_SYMBOL
-0x33d24990 ntb_default_peer_port_idx drivers/ntb/ntb EXPORT_SYMBOL
-0xf9eb813f ntb_transport_unregister_client_dev drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0xf55d6313 ntb_transport_register_client_dev drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x2801aee0 ntb_transport_register_client drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0xdad80f17 ntb_transport_unregister_client drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x32e7f1af ntb_transport_create_queue drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0xc270dc24 ntb_transport_free_queue drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0xc37d9036 ntb_transport_rx_remove drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0xd40e7a02 ntb_transport_rx_enqueue drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x3d54dbfc ntb_transport_tx_enqueue drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x9c992c8f ntb_transport_link_up drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x436098aa ntb_transport_link_down drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x32537aca ntb_transport_link_query drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x82e6c13d ntb_transport_qp_num drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x30934216 ntb_transport_max_size drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0x0862001f ntb_transport_tx_free_entry drivers/ntb/ntb_transport EXPORT_SYMBOL_GPL
-0xe4f22d93 __tb_ring_enqueue drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x35f228d7 tb_ring_poll drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x7f25719e tb_ring_poll_complete drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x8e51bd7c tb_ring_alloc_tx drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x97745759 tb_ring_alloc_rx drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xef3064e2 tb_ring_start drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x40c60e9d tb_ring_stop drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x90e706b5 tb_ring_free drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x01d23ee1 tb_property_create_dir drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x393b4f2f tb_property_free_dir drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x658e3d97 tb_property_add_immediate drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xa3d2b403 tb_property_add_data drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xb7c7cdce tb_property_add_text drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x8b62f95e tb_property_add_dir drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x785eb82c tb_property_remove drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x4e5064a7 tb_property_find drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x73ad2acb tb_property_get_next drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x17589e55 tb_xdomain_response drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xe07f103b tb_xdomain_request drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x4e64bdfd tb_register_protocol_handler drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xf76028c7 tb_unregister_protocol_handler drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xc5bd7ea2 tb_register_service_driver drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x71201338 tb_unregister_service_driver drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xa4b848d1 tb_service_type drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x4ae7a2e4 tb_xdomain_type drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x8194b3bb tb_xdomain_lane_bonding_enable drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x23daee26 tb_xdomain_lane_bonding_disable drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x8ecbc50a tb_xdomain_alloc_in_hopid drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xc4f0db13 tb_xdomain_alloc_out_hopid drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x65517c99 tb_xdomain_release_in_hopid drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xad1d8354 tb_xdomain_release_out_hopid drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x2bed462e tb_xdomain_enable_paths drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x2e0859d4 tb_xdomain_disable_paths drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x4c9adf93 tb_xdomain_find_by_uuid drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x3c94e8dc tb_xdomain_find_by_route drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0xf1cfd1ff tb_register_property_dir drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x603249ed tb_unregister_property_dir drivers/thunderbolt/thunderbolt EXPORT_SYMBOL_GPL
-0x16b74a1a sound_class sound/soundcore EXPORT_SYMBOL
-0xe69226a7 register_sound_special_device sound/soundcore EXPORT_SYMBOL
-0x651d01fe register_sound_special sound/soundcore EXPORT_SYMBOL
-0x64231ced register_sound_mixer sound/soundcore EXPORT_SYMBOL
-0x75572dca register_sound_dsp sound/soundcore EXPORT_SYMBOL
-0x99c95fa5 unregister_sound_special sound/soundcore EXPORT_SYMBOL
-0x7afc9d8a unregister_sound_mixer sound/soundcore EXPORT_SYMBOL
-0xcd083b10 unregister_sound_dsp sound/soundcore EXPORT_SYMBOL
-0x8f595b11 snd_major sound/core/snd EXPORT_SYMBOL
-0x3971b4df snd_ecards_limit sound/core/snd EXPORT_SYMBOL
-0x4a3ea5c0 snd_request_card sound/core/snd EXPORT_SYMBOL
-0xb2e5ae4a snd_lookup_minor_data sound/core/snd EXPORT_SYMBOL
-0xc2280af9 snd_register_device sound/core/snd EXPORT_SYMBOL
-0xb4997073 snd_unregister_device sound/core/snd EXPORT_SYMBOL
-0x8606135f snd_device_alloc sound/core/snd EXPORT_SYMBOL_GPL
-0x3606cf9a snd_card_new sound/core/snd EXPORT_SYMBOL
-0x18dbcee5 snd_devm_card_new sound/core/snd EXPORT_SYMBOL_GPL
-0xb8d76835 snd_card_free_on_error sound/core/snd EXPORT_SYMBOL_GPL
-0xe7a62a25 snd_card_ref sound/core/snd EXPORT_SYMBOL_GPL
-0xa4ddb670 snd_card_disconnect sound/core/snd EXPORT_SYMBOL
-0x051a6019 snd_card_disconnect_sync sound/core/snd EXPORT_SYMBOL_GPL
-0x29034551 snd_card_free_when_closed sound/core/snd EXPORT_SYMBOL
-0x2659c963 snd_card_free sound/core/snd EXPORT_SYMBOL
-0x637260c3 snd_card_set_id sound/core/snd EXPORT_SYMBOL
-0x4be75c98 snd_card_add_dev_attr sound/core/snd EXPORT_SYMBOL_GPL
-0xde408c4c snd_card_register sound/core/snd EXPORT_SYMBOL
-0xd13d7d0b snd_component_add sound/core/snd EXPORT_SYMBOL
-0x96a62b10 snd_card_file_add sound/core/snd EXPORT_SYMBOL
-0xb259c330 snd_card_file_remove sound/core/snd EXPORT_SYMBOL
-0xcbc9eecd snd_power_ref_and_wait sound/core/snd EXPORT_SYMBOL_GPL
-0x48c1c38d snd_power_wait sound/core/snd EXPORT_SYMBOL
-0x342a2354 copy_to_user_fromio sound/core/snd EXPORT_SYMBOL
-0x88eeeb36 copy_to_iter_fromio sound/core/snd EXPORT_SYMBOL
-0xfffd89db copy_from_user_toio sound/core/snd EXPORT_SYMBOL
-0xdf275771 copy_from_iter_toio sound/core/snd EXPORT_SYMBOL
-0x8464dad8 snd_ctl_notify sound/core/snd EXPORT_SYMBOL
-0x86dec073 snd_ctl_notify_one sound/core/snd EXPORT_SYMBOL
-0x0bcef27d snd_ctl_new1 sound/core/snd EXPORT_SYMBOL
-0x3d5cd137 snd_ctl_free_one sound/core/snd EXPORT_SYMBOL
-0x67bae6c5 snd_ctl_add sound/core/snd EXPORT_SYMBOL
-0x460c6e8a snd_ctl_replace sound/core/snd EXPORT_SYMBOL
-0xc10ea290 snd_ctl_remove sound/core/snd EXPORT_SYMBOL
-0x53ef4604 snd_ctl_remove_id sound/core/snd EXPORT_SYMBOL
-0xabef3a49 snd_ctl_activate_id sound/core/snd EXPORT_SYMBOL_GPL
-0x5d641508 snd_ctl_rename_id sound/core/snd EXPORT_SYMBOL
-0xa54e3e50 snd_ctl_rename sound/core/snd EXPORT_SYMBOL
-0xb6c16f17 snd_ctl_find_numid_locked sound/core/snd EXPORT_SYMBOL
-0xcf623aca snd_ctl_find_numid sound/core/snd EXPORT_SYMBOL
-0x874e59ae snd_ctl_find_id_locked sound/core/snd EXPORT_SYMBOL
-0x53530064 snd_ctl_find_id sound/core/snd EXPORT_SYMBOL
-0xcab2cf09 snd_ctl_register_ioctl sound/core/snd EXPORT_SYMBOL
-0xcd07d3ca snd_ctl_register_ioctl_compat sound/core/snd EXPORT_SYMBOL
-0x48ad54ed snd_ctl_unregister_ioctl sound/core/snd EXPORT_SYMBOL
-0xe8a9c9ad snd_ctl_unregister_ioctl_compat sound/core/snd EXPORT_SYMBOL
-0xaac43f43 snd_ctl_get_preferred_subdevice sound/core/snd EXPORT_SYMBOL_GPL
-0xfaf598c6 snd_ctl_request_layer sound/core/snd EXPORT_SYMBOL_GPL
-0xb127e8d2 snd_ctl_register_layer sound/core/snd EXPORT_SYMBOL_GPL
-0x7b3fdb52 snd_ctl_disconnect_layer sound/core/snd EXPORT_SYMBOL_GPL
-0xae294fcc snd_ctl_boolean_mono_info sound/core/snd EXPORT_SYMBOL
-0xcc9a7f4c snd_ctl_boolean_stereo_info sound/core/snd EXPORT_SYMBOL
-0xcc6a729f snd_ctl_enum_info sound/core/snd EXPORT_SYMBOL
-0xc5a6d10b release_and_free_resource sound/core/snd EXPORT_SYMBOL
-0x73076315 snd_pci_quirk_lookup_id sound/core/snd EXPORT_SYMBOL
-0xca973ce5 snd_pci_quirk_lookup sound/core/snd EXPORT_SYMBOL
-0x2c0aed3c snd_fasync_helper sound/core/snd EXPORT_SYMBOL_GPL
-0xf8f2a4eb snd_kill_fasync sound/core/snd EXPORT_SYMBOL_GPL
-0x5af762f1 snd_fasync_free sound/core/snd EXPORT_SYMBOL_GPL
-0x36613358 snd_device_new sound/core/snd EXPORT_SYMBOL
-0x225f5c96 snd_device_disconnect sound/core/snd EXPORT_SYMBOL_GPL
-0x4e6c4417 snd_device_free sound/core/snd EXPORT_SYMBOL
-0xa1949cf6 snd_device_register sound/core/snd EXPORT_SYMBOL
-0x3971d0d1 snd_device_get_state sound/core/snd EXPORT_SYMBOL_GPL
-0x2dd77693 snd_seq_root sound/core/snd EXPORT_SYMBOL
-0x24a94b26 snd_info_get_line sound/core/snd EXPORT_SYMBOL
-0x9e6d79f8 snd_info_get_str sound/core/snd EXPORT_SYMBOL
-0xc027ee59 snd_info_create_module_entry sound/core/snd EXPORT_SYMBOL
-0x8e3827cc snd_info_create_card_entry sound/core/snd EXPORT_SYMBOL
-0x3f1630de snd_info_free_entry sound/core/snd EXPORT_SYMBOL
-0x9cac01fe snd_info_register sound/core/snd EXPORT_SYMBOL
-0xf2dfdddd snd_card_rw_proc_new sound/core/snd EXPORT_SYMBOL_GPL
-0x8df3789f snd_oss_info_register sound/core/snd EXPORT_SYMBOL
-0x18e1683f snd_dma_program sound/core/snd EXPORT_SYMBOL
-0x70c15ac1 snd_dma_disable sound/core/snd EXPORT_SYMBOL
-0x191e88cf snd_dma_pointer sound/core/snd EXPORT_SYMBOL
-0x3f331974 snd_devm_request_dma sound/core/snd EXPORT_SYMBOL_GPL
-0x198788b4 snd_lookup_oss_minor_data sound/core/snd EXPORT_SYMBOL
-0xa760c3b7 snd_register_oss_device sound/core/snd EXPORT_SYMBOL
-0xc74ab0b1 snd_unregister_oss_device sound/core/snd EXPORT_SYMBOL
-0xcc10d09a _snd_ctl_add_follower sound/core/snd EXPORT_SYMBOL
-0xd7545273 snd_ctl_add_followers sound/core/snd EXPORT_SYMBOL_GPL
-0x90b10655 snd_ctl_make_virtual_master sound/core/snd EXPORT_SYMBOL
-0x10875c20 snd_ctl_add_vmaster_hook sound/core/snd EXPORT_SYMBOL_GPL
-0x373504e4 snd_ctl_sync_vmaster sound/core/snd EXPORT_SYMBOL_GPL
-0x4796c4e6 snd_ctl_apply_vmaster_followers sound/core/snd EXPORT_SYMBOL_GPL
-0x1a05b7a6 snd_jack_add_new_kctl sound/core/snd EXPORT_SYMBOL
-0x0b6ad692 snd_jack_new sound/core/snd EXPORT_SYMBOL
-0xaad4d561 snd_jack_set_parent sound/core/snd EXPORT_SYMBOL
-0x39b6d7d3 snd_jack_set_key sound/core/snd EXPORT_SYMBOL
-0xd30334b2 snd_jack_report sound/core/snd EXPORT_SYMBOL
-0x9d9ac1cb snd_hwdep_new sound/core/snd-hwdep EXPORT_SYMBOL
-0xa2a9d8e6 snd_timer_instance_new sound/core/snd-timer EXPORT_SYMBOL
-0x89292861 snd_timer_instance_free sound/core/snd-timer EXPORT_SYMBOL
-0x6eb1575b snd_timer_open sound/core/snd-timer EXPORT_SYMBOL
-0xfc332b8c snd_timer_close sound/core/snd-timer EXPORT_SYMBOL
-0x13807c8f snd_timer_resolution sound/core/snd-timer EXPORT_SYMBOL
-0x3769429a snd_timer_start sound/core/snd-timer EXPORT_SYMBOL
-0xa3e63dd9 snd_timer_stop sound/core/snd-timer EXPORT_SYMBOL
-0x745879ef snd_timer_continue sound/core/snd-timer EXPORT_SYMBOL
-0xf00772b9 snd_timer_pause sound/core/snd-timer EXPORT_SYMBOL
-0x710266c0 snd_timer_interrupt sound/core/snd-timer EXPORT_SYMBOL
-0x23b7cbdf snd_timer_new sound/core/snd-timer EXPORT_SYMBOL
-0x9b2cba3b snd_timer_notify sound/core/snd-timer EXPORT_SYMBOL
-0x2390d641 snd_timer_global_new sound/core/snd-timer EXPORT_SYMBOL
-0xf023a5b2 snd_timer_global_free sound/core/snd-timer EXPORT_SYMBOL
-0xe8096d9e snd_timer_global_register sound/core/snd-timer EXPORT_SYMBOL
-0xa286a234 snd_pcm_format_name sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x29fa1047 snd_pcm_new_stream sound/core/snd-pcm EXPORT_SYMBOL
-0xdf805b8c snd_pcm_new sound/core/snd-pcm EXPORT_SYMBOL
-0xfad28c31 snd_pcm_new_internal sound/core/snd-pcm EXPORT_SYMBOL
-0xfa417d95 snd_pcm_stream_lock sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x8b0c8733 snd_pcm_stream_unlock sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0xf8095c37 snd_pcm_stream_lock_irq sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x4a8f9c0a snd_pcm_stream_unlock_irq sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0xa51f841d _snd_pcm_stream_lock_irqsave sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x03034be7 _snd_pcm_stream_lock_irqsave_nested sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x670f71b6 snd_pcm_stream_unlock_irqrestore sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x7b147ad5 snd_pcm_hw_refine sound/core/snd-pcm EXPORT_SYMBOL
-0x1b326fde snd_pcm_stop sound/core/snd-pcm EXPORT_SYMBOL
-0x0f9828df snd_pcm_stop_xrun sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x49b3799f snd_pcm_suspend_all sound/core/snd-pcm EXPORT_SYMBOL
-0x564358f5 snd_pcm_release_substream sound/core/snd-pcm EXPORT_SYMBOL
-0x9f254c06 snd_pcm_open_substream sound/core/snd-pcm EXPORT_SYMBOL
-0x046f4815 snd_pcm_kernel_ioctl sound/core/snd-pcm EXPORT_SYMBOL
-0x5aa06586 snd_pcm_lib_default_mmap sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0xf5ac947e snd_pcm_lib_mmap_iomem sound/core/snd-pcm EXPORT_SYMBOL
-0xab02a62c snd_pcm_mmap_data sound/core/snd-pcm EXPORT_SYMBOL
-0x9985204b snd_pcm_set_ops sound/core/snd-pcm EXPORT_SYMBOL
-0x2f8a8c46 snd_pcm_set_sync sound/core/snd-pcm EXPORT_SYMBOL
-0x04cda566 snd_interval_refine sound/core/snd-pcm EXPORT_SYMBOL
-0xac437f7b snd_interval_ratnum sound/core/snd-pcm EXPORT_SYMBOL
-0x94098ff8 snd_interval_list sound/core/snd-pcm EXPORT_SYMBOL
-0x503bd137 snd_interval_ranges sound/core/snd-pcm EXPORT_SYMBOL
-0x6a491e9a snd_pcm_hw_rule_add sound/core/snd-pcm EXPORT_SYMBOL
-0x444cd822 snd_pcm_hw_constraint_mask64 sound/core/snd-pcm EXPORT_SYMBOL
-0xd2362753 snd_pcm_hw_constraint_integer sound/core/snd-pcm EXPORT_SYMBOL
-0x24447bd2 snd_pcm_hw_constraint_minmax sound/core/snd-pcm EXPORT_SYMBOL
-0x35b60232 snd_pcm_hw_constraint_list sound/core/snd-pcm EXPORT_SYMBOL
-0xda06aa03 snd_pcm_hw_constraint_ranges sound/core/snd-pcm EXPORT_SYMBOL
-0xa96bac32 snd_pcm_hw_constraint_ratnums sound/core/snd-pcm EXPORT_SYMBOL
-0x95c30e5b snd_pcm_hw_constraint_ratdens sound/core/snd-pcm EXPORT_SYMBOL
-0x0cc2afce snd_pcm_hw_constraint_msbits sound/core/snd-pcm EXPORT_SYMBOL
-0x5b8b2dcb snd_pcm_hw_constraint_step sound/core/snd-pcm EXPORT_SYMBOL
-0xe67fa06b snd_pcm_hw_constraint_pow2 sound/core/snd-pcm EXPORT_SYMBOL
-0x798b67e5 snd_pcm_hw_rule_noresample sound/core/snd-pcm EXPORT_SYMBOL
-0x0283dfe3 _snd_pcm_hw_params_any sound/core/snd-pcm EXPORT_SYMBOL
-0x52e3e4a5 snd_pcm_hw_param_value sound/core/snd-pcm EXPORT_SYMBOL
-0x39bf9301 _snd_pcm_hw_param_setempty sound/core/snd-pcm EXPORT_SYMBOL
-0x179cc680 snd_pcm_hw_param_first sound/core/snd-pcm EXPORT_SYMBOL
-0x3e4723c8 snd_pcm_hw_param_last sound/core/snd-pcm EXPORT_SYMBOL
-0xc5e9febf snd_pcm_lib_ioctl sound/core/snd-pcm EXPORT_SYMBOL
-0x9ed9f1ae snd_pcm_period_elapsed_under_stream_lock sound/core/snd-pcm EXPORT_SYMBOL
-0xaa1daf9f snd_pcm_period_elapsed sound/core/snd-pcm EXPORT_SYMBOL
-0x882ed532 __snd_pcm_lib_xfer sound/core/snd-pcm EXPORT_SYMBOL
-0x04e1b99f snd_pcm_std_chmaps sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x09e913c1 snd_pcm_alt_chmaps sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0xd37ff370 snd_pcm_add_chmap_ctls sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x1d027e4b snd_pcm_format_signed sound/core/snd-pcm EXPORT_SYMBOL
-0xa61aa028 snd_pcm_format_unsigned sound/core/snd-pcm EXPORT_SYMBOL
-0x6ef8fcd8 snd_pcm_format_linear sound/core/snd-pcm EXPORT_SYMBOL
-0x3796bdcc snd_pcm_format_little_endian sound/core/snd-pcm EXPORT_SYMBOL
-0x4f816e9b snd_pcm_format_big_endian sound/core/snd-pcm EXPORT_SYMBOL
-0xe56a9336 snd_pcm_format_width sound/core/snd-pcm EXPORT_SYMBOL
-0x68a24153 snd_pcm_format_physical_width sound/core/snd-pcm EXPORT_SYMBOL
-0x834dc955 snd_pcm_format_size sound/core/snd-pcm EXPORT_SYMBOL
-0x650f8603 snd_pcm_format_silence_64 sound/core/snd-pcm EXPORT_SYMBOL
-0x5e7f4920 snd_pcm_format_set_silence sound/core/snd-pcm EXPORT_SYMBOL
-0x69255f54 snd_pcm_hw_limit_rates sound/core/snd-pcm EXPORT_SYMBOL
-0xb9638db4 snd_pcm_rate_to_rate_bit sound/core/snd-pcm EXPORT_SYMBOL
-0xff6104d0 snd_pcm_rate_bit_to_rate sound/core/snd-pcm EXPORT_SYMBOL
-0xab8bc1a2 snd_pcm_rate_mask_intersect sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x8d864069 snd_pcm_rate_range_to_bits sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x1b70a032 snd_pcm_lib_preallocate_free_for_all sound/core/snd-pcm EXPORT_SYMBOL
-0x105ab8a5 snd_pcm_lib_preallocate_pages sound/core/snd-pcm EXPORT_SYMBOL
-0xcf3befe6 snd_pcm_lib_preallocate_pages_for_all sound/core/snd-pcm EXPORT_SYMBOL
-0x3172194a snd_pcm_set_managed_buffer sound/core/snd-pcm EXPORT_SYMBOL
-0x2249cf73 snd_pcm_set_managed_buffer_all sound/core/snd-pcm EXPORT_SYMBOL
-0x891a78af snd_pcm_lib_malloc_pages sound/core/snd-pcm EXPORT_SYMBOL
-0xeedebff3 snd_pcm_lib_free_pages sound/core/snd-pcm EXPORT_SYMBOL
-0x2b358fb8 _snd_pcm_lib_alloc_vmalloc_buffer sound/core/snd-pcm EXPORT_SYMBOL
-0x2fe688db snd_pcm_lib_free_vmalloc_buffer sound/core/snd-pcm EXPORT_SYMBOL
-0xbafdb9c3 snd_pcm_lib_get_vmalloc_page sound/core/snd-pcm EXPORT_SYMBOL
-0xd646eb3e snd_dma_alloc_dir_pages sound/core/snd-pcm EXPORT_SYMBOL
-0x1077e38f snd_dma_alloc_pages_fallback sound/core/snd-pcm EXPORT_SYMBOL
-0x241b8bae snd_dma_free_pages sound/core/snd-pcm EXPORT_SYMBOL
-0xe3916cda snd_devm_alloc_dir_pages sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x48a7ff80 snd_dma_buffer_mmap sound/core/snd-pcm EXPORT_SYMBOL
-0x207d8681 snd_dma_buffer_sync sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x39d58de2 snd_sgbuf_get_addr sound/core/snd-pcm EXPORT_SYMBOL
-0x3ddb0353 snd_sgbuf_get_page sound/core/snd-pcm EXPORT_SYMBOL
-0xa11c7a16 snd_sgbuf_get_chunk_size sound/core/snd-pcm EXPORT_SYMBOL
-0xbed7bc26 snd_pcm_hw_constraint_eld sound/core/snd-pcm EXPORT_SYMBOL_GPL
-0x370a0736 snd_seq_autoload_init sound/core/snd-seq-device EXPORT_SYMBOL
-0x091def1c snd_seq_autoload_exit sound/core/snd-seq-device EXPORT_SYMBOL
-0x6339b6d0 snd_seq_device_load_drivers sound/core/snd-seq-device EXPORT_SYMBOL
-0x04fa2367 snd_seq_device_new sound/core/snd-seq-device EXPORT_SYMBOL
-0x68013605 __snd_seq_driver_register sound/core/snd-seq-device EXPORT_SYMBOL_GPL
-0x27e88ab9 snd_seq_driver_unregister sound/core/snd-seq-device EXPORT_SYMBOL_GPL
-0x61b38ff0 snd_rawmidi_drop_output sound/core/snd-rawmidi EXPORT_SYMBOL
-0x7ae3b4b7 snd_rawmidi_drain_output sound/core/snd-rawmidi EXPORT_SYMBOL
-0x73f548ef snd_rawmidi_drain_input sound/core/snd-rawmidi EXPORT_SYMBOL
-0xa3589028 snd_rawmidi_kernel_open sound/core/snd-rawmidi EXPORT_SYMBOL
-0x969fd1b0 snd_rawmidi_kernel_release sound/core/snd-rawmidi EXPORT_SYMBOL
-0xaee035ca snd_rawmidi_info_select sound/core/snd-rawmidi EXPORT_SYMBOL
-0x85f773f0 snd_rawmidi_output_params sound/core/snd-rawmidi EXPORT_SYMBOL
-0xa5d44771 snd_rawmidi_input_params sound/core/snd-rawmidi EXPORT_SYMBOL
-0xae2d6aae snd_rawmidi_receive sound/core/snd-rawmidi EXPORT_SYMBOL
-0x2909b906 snd_rawmidi_kernel_read sound/core/snd-rawmidi EXPORT_SYMBOL
-0x676e6d0a snd_rawmidi_transmit_empty sound/core/snd-rawmidi EXPORT_SYMBOL
-0x514e902d snd_rawmidi_transmit_peek sound/core/snd-rawmidi EXPORT_SYMBOL
-0xd2b9b4ca snd_rawmidi_transmit_ack sound/core/snd-rawmidi EXPORT_SYMBOL
-0xdc079bf8 snd_rawmidi_transmit sound/core/snd-rawmidi EXPORT_SYMBOL
-0x64d1b58b snd_rawmidi_proceed sound/core/snd-rawmidi EXPORT_SYMBOL
-0x48dd3c03 snd_rawmidi_kernel_write sound/core/snd-rawmidi EXPORT_SYMBOL
-0x49af8c21 snd_rawmidi_init sound/core/snd-rawmidi EXPORT_SYMBOL_GPL
-0x47241d8e snd_rawmidi_new sound/core/snd-rawmidi EXPORT_SYMBOL
-0x02b593de snd_rawmidi_free sound/core/snd-rawmidi EXPORT_SYMBOL_GPL
-0x31ac73ad snd_rawmidi_set_ops sound/core/snd-rawmidi EXPORT_SYMBOL
-0x3061c52d snd_use_lock_sync_helper sound/core/seq/snd-seq EXPORT_SYMBOL
-0xe50413d7 snd_seq_client_ioctl_lock sound/core/seq/snd-seq EXPORT_SYMBOL_GPL
-0xadb51cff snd_seq_client_ioctl_unlock sound/core/seq/snd-seq EXPORT_SYMBOL_GPL
-0xb8e448a0 snd_seq_set_queue_tempo sound/core/seq/snd-seq EXPORT_SYMBOL
-0xdf5bf73d snd_seq_create_kernel_client sound/core/seq/snd-seq EXPORT_SYMBOL
-0x6bb71038 snd_seq_delete_kernel_client sound/core/seq/snd-seq EXPORT_SYMBOL
-0x3ba82735 snd_seq_kernel_client_enqueue sound/core/seq/snd-seq EXPORT_SYMBOL
-0x85cd59a8 snd_seq_kernel_client_dispatch sound/core/seq/snd-seq EXPORT_SYMBOL
-0x1a724fcc snd_seq_kernel_client_ctl sound/core/seq/snd-seq EXPORT_SYMBOL
-0xd38bbc5d snd_seq_kernel_client_write_poll sound/core/seq/snd-seq EXPORT_SYMBOL
-0xaf7a2dd2 snd_seq_kernel_client_get sound/core/seq/snd-seq EXPORT_SYMBOL_GPL
-0xd43d921f snd_seq_kernel_client_put sound/core/seq/snd-seq EXPORT_SYMBOL_GPL
-0x23738926 snd_seq_dump_var_event sound/core/seq/snd-seq EXPORT_SYMBOL
-0xa6e19f8e snd_seq_expand_var_event sound/core/seq/snd-seq EXPORT_SYMBOL
-0xf0c8f9fa snd_seq_expand_var_event_at sound/core/seq/snd-seq EXPORT_SYMBOL_GPL
-0xcbf9166f snd_seq_system_broadcast sound/core/seq/snd-seq EXPORT_SYMBOL_GPL
-0xc8f2e10a snd_seq_event_port_attach sound/core/seq/snd-seq EXPORT_SYMBOL
-0x7b8699eb snd_seq_event_port_detach sound/core/seq/snd-seq EXPORT_SYMBOL
-0x74769de9 snd_midi_process_event sound/core/seq/snd-seq-midi-emul EXPORT_SYMBOL
-0x833a3e07 snd_midi_channel_set_clear sound/core/seq/snd-seq-midi-emul EXPORT_SYMBOL
-0x6ea09972 snd_midi_channel_alloc_set sound/core/seq/snd-seq-midi-emul EXPORT_SYMBOL
-0xb9948d2c snd_midi_channel_free_set sound/core/seq/snd-seq-midi-emul EXPORT_SYMBOL
-0xe9e6c50c snd_midi_event_new sound/core/seq/snd-seq-midi-event EXPORT_SYMBOL
-0xdd935c83 snd_midi_event_free sound/core/seq/snd-seq-midi-event EXPORT_SYMBOL
-0x8150b379 snd_midi_event_reset_encode sound/core/seq/snd-seq-midi-event EXPORT_SYMBOL
-0xb8620ad8 snd_midi_event_reset_decode sound/core/seq/snd-seq-midi-event EXPORT_SYMBOL
-0x7a3e0db5 snd_midi_event_no_status sound/core/seq/snd-seq-midi-event EXPORT_SYMBOL
-0x70758652 snd_midi_event_encode_byte sound/core/seq/snd-seq-midi-event EXPORT_SYMBOL
-0x454224b1 snd_midi_event_decode sound/core/seq/snd-seq-midi-event EXPORT_SYMBOL
-0x8c0e11cc snd_virmidi_new sound/core/seq/snd-seq-virmidi EXPORT_SYMBOL
-0x77c078b8 snd_compr_malloc_pages sound/core/snd-compress EXPORT_SYMBOL
-0x746f692d snd_compr_free_pages sound/core/snd-compress EXPORT_SYMBOL
-0x6611c58c snd_compr_stop_error sound/core/snd-compress EXPORT_SYMBOL_GPL
-0x9f9e3d73 snd_compress_new sound/core/snd-compress EXPORT_SYMBOL_GPL
-0xf43afdf6 snd_akm4xxx_write sound/i2c/other/snd-ak4xxx-adda EXPORT_SYMBOL
-0x6ec5e6de snd_akm4xxx_reset sound/i2c/other/snd-ak4xxx-adda EXPORT_SYMBOL
-0xdd6b6cf7 snd_akm4xxx_init sound/i2c/other/snd-ak4xxx-adda EXPORT_SYMBOL
-0xd6ee80ed snd_akm4xxx_build_controls sound/i2c/other/snd-ak4xxx-adda EXPORT_SYMBOL
-0xc4e90c2a snd_ak4114_create sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0x75853197 snd_ak4114_reg_write sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0x4205c4ce snd_ak4114_reinit sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0x88954f43 snd_ak4114_build sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0x37ceae04 snd_ak4114_external_rate sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0xb0488d6b snd_ak4114_check_rate_and_errors sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0x9cd2974d snd_ak4114_suspend sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0x1651b23f snd_ak4114_resume sound/i2c/other/snd-ak4114 EXPORT_SYMBOL
-0x2e00e579 snd_ak4113_create sound/i2c/other/snd-ak4113 EXPORT_SYMBOL_GPL
-0x3648afbd snd_ak4113_reg_write sound/i2c/other/snd-ak4113 EXPORT_SYMBOL_GPL
-0xa4b4db2b snd_ak4113_reinit sound/i2c/other/snd-ak4113 EXPORT_SYMBOL_GPL
-0xaa1df685 snd_ak4113_build sound/i2c/other/snd-ak4113 EXPORT_SYMBOL_GPL
-0x22f3a0b0 snd_ak4113_external_rate sound/i2c/other/snd-ak4113 EXPORT_SYMBOL_GPL
-0x4a3b2d35 snd_ak4113_check_rate_and_errors sound/i2c/other/snd-ak4113 EXPORT_SYMBOL_GPL
-0xd7aa2826 snd_ak4113_suspend sound/i2c/other/snd-ak4113 EXPORT_SYMBOL
-0xcdb7d4ee snd_ak4113_resume sound/i2c/other/snd-ak4113 EXPORT_SYMBOL
-0xa3b9e673 snd_pt2258_reset sound/i2c/other/snd-pt2258 EXPORT_SYMBOL
-0x65667b7c snd_pt2258_build_controls sound/i2c/other/snd-pt2258 EXPORT_SYMBOL
-0x38e58a46 snd_cs8427_reg_write sound/i2c/snd-cs8427 EXPORT_SYMBOL
-0x9468ae65 snd_cs8427_init sound/i2c/snd-cs8427 EXPORT_SYMBOL
-0xa0f76c6d snd_cs8427_create sound/i2c/snd-cs8427 EXPORT_SYMBOL
-0xd09ac9e8 snd_cs8427_iec958_build sound/i2c/snd-cs8427 EXPORT_SYMBOL
-0x4a7363c8 snd_cs8427_iec958_active sound/i2c/snd-cs8427 EXPORT_SYMBOL
-0xbc306df4 snd_cs8427_iec958_pcm sound/i2c/snd-cs8427 EXPORT_SYMBOL
-0x3a700ebf snd_i2c_bus_create sound/i2c/snd-i2c EXPORT_SYMBOL
-0xc6a535c9 snd_i2c_device_create sound/i2c/snd-i2c EXPORT_SYMBOL
-0x651678b6 snd_i2c_device_free sound/i2c/snd-i2c EXPORT_SYMBOL
-0xd83a526c snd_i2c_sendbytes sound/i2c/snd-i2c EXPORT_SYMBOL
-0x620a0e16 snd_i2c_readbytes sound/i2c/snd-i2c EXPORT_SYMBOL
-0x175f7fcb snd_i2c_probeaddr sound/i2c/snd-i2c EXPORT_SYMBOL
-0xec80ccb6 snd_opl3_interrupt sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0x6ca48e6a snd_opl3_new sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0xaf5d41fd snd_opl3_init sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0xf599d6f1 snd_opl3_create sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0x2b592bb8 snd_opl3_timer_new sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0xb70287eb snd_opl3_hwdep_new sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0x05060a19 snd_opl3_regmap sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0x134ebd21 snd_opl3_load_patch sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0x108ff040 snd_opl3_find_patch sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0xd65d4616 snd_opl3_reset sound/drivers/opl3/snd-opl3-lib EXPORT_SYMBOL
-0xc0fec227 snd_mpu401_uart_interrupt sound/drivers/mpu401/snd-mpu401-uart EXPORT_SYMBOL
-0x6d629c59 snd_mpu401_uart_interrupt_tx sound/drivers/mpu401/snd-mpu401-uart EXPORT_SYMBOL
-0x4ec9a775 snd_mpu401_uart_new sound/drivers/mpu401/snd-mpu401-uart EXPORT_SYMBOL
-0xcd59214c snd_vx_check_reg_bit sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0xca7cfbbc snd_vx_load_boot_image sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0x226138b0 snd_vx_threaded_irq_handler sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0xf1f04d23 snd_vx_irq_handler sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0x39751e03 snd_vx_dsp_boot sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0x8a0eea4c snd_vx_dsp_load sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0x17069098 snd_vx_suspend sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0x2922881f snd_vx_resume sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0xa1ae5dc2 snd_vx_create sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0x9be923fa snd_vx_setup_firmware sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0xa65ccd5b snd_vx_free_firmware sound/drivers/vx/snd-vx-lib EXPORT_SYMBOL
-0xdda25bd8 snd_ac97_write sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x7bd1a822 snd_ac97_read sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0xa915b5cc snd_ac97_write_cache sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x31c9594b snd_ac97_update sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x60d3f8b1 snd_ac97_update_bits sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x57b998a7 snd_ac97_get_short_name sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0xba4789a4 snd_ac97_bus sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x2ffd6c64 snd_ac97_mixer sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0xfe2da173 snd_ac97_update_power sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x2ba2dc4d snd_ac97_suspend sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0xc24b6429 snd_ac97_resume sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x3e53784c snd_ac97_tune_hardware sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x8f5e2a62 snd_ac97_set_rate sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x1f404462 snd_ac97_pcm_assign sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x26b7b016 snd_ac97_pcm_open sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0xc166bf8f snd_ac97_pcm_close sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x0ed7147d snd_ac97_pcm_double_rate_rules sound/pci/ac97/snd-ac97-codec EXPORT_SYMBOL
-0x2bbdf470 hpi_send_recv sound/pci/asihpi/snd-asihpi EXPORT_SYMBOL
-0x4a45a05f snd_emu10k1_memblk_map sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0xf83d5442 snd_emu10k1_synth_alloc sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0xed87342e snd_emu10k1_synth_free sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0x363ec224 snd_emu10k1_synth_bzero sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0xd62927bd snd_emu10k1_synth_copy_from_user sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0x8cc09541 snd_emu10k1_voice_alloc sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0xa227ac5d snd_emu10k1_voice_free sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0xd36f8468 snd_emu10k1_ptr_read sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0xcd318f01 snd_emu10k1_ptr_write sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0x80965adb snd_emu10k1_ptr_write_multiple sound/pci/emu10k1/snd-emu10k1 EXPORT_SYMBOL
-0x1a734062 snd_hda_codec_set_name sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x2d7aaf9d __hda_codec_driver_register sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x26da1422 hda_codec_driver_unregister sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xb662dfad snd_hda_codec_configure sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xab5f54aa snd_hda_sequence_write sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x9686faed snd_hda_get_conn_list sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xbdafc924 snd_hda_get_connections sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x5f42af2e snd_hda_override_conn_list sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x23e0b8c1 snd_hda_get_conn_index sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x90874b17 snd_hda_get_num_devices sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xb2af6efa snd_hda_get_dev_select sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xc3c207d8 snd_hda_set_dev_select sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x81d8e147 snd_hda_codec_set_pincfg sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xb9f128c6 snd_hda_codec_get_pincfg sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x5ca897c7 snd_hda_codec_set_pin_target sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xa87f5489 snd_hda_codec_get_pin_target sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x0ff2f2d3 snd_hda_shutup_pins sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x77ffe11b snd_hda_codec_pcm_put sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x9120db30 snd_hda_codec_pcm_new sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xa1cbc5ec snd_hda_codec_cleanup_for_unbind sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xff074cc6 snd_hda_codec_register sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x84231f39 snd_hda_codec_unregister sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x33cbcc0d snd_hda_codec_device_init sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x285edc7e snd_hda_codec_new sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x69567be6 snd_hda_codec_device_new sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x55993e64 snd_hda_codec_update_widgets sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x217c5d33 snd_hda_codec_setup_stream sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xec784601 __snd_hda_codec_cleanup_stream sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x8e72c6e2 query_amp_caps sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xbdb73679 snd_hda_check_amp_caps sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xba87c8f2 snd_hda_override_amp_caps sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xa3358ff2 snd_hda_codec_amp_update sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xaa283fb1 snd_hda_codec_amp_stereo sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xeec4d06d snd_hda_codec_amp_init sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x5e86c8a0 snd_hda_codec_amp_init_stereo sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xe96996f4 snd_hda_mixer_amp_volume_info sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xc901f5fd snd_hda_mixer_amp_volume_get sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x6d3a4ccd snd_hda_mixer_amp_volume_put sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xdbf8e9c0 snd_hda_mixer_amp_tlv sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x5d70004b snd_hda_set_vmaster_tlv sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xc0a0e0e2 snd_hda_find_mixer_ctl sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x43994e7c snd_hda_ctl_add sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x596a50ff snd_hda_add_nid sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x36167fe9 snd_hda_lock_devices sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x6b74a35a snd_hda_unlock_devices sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xaedee65f __snd_hda_add_vmaster sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x1af715f2 snd_hda_add_vmaster_hook sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xea860e8f snd_hda_sync_vmaster_hook sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xe6eae40b snd_hda_mixer_amp_switch_info sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xc6828702 snd_hda_mixer_amp_switch_get sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x62b93e32 snd_hda_mixer_amp_switch_put sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x9d24bbee snd_hda_create_dig_out_ctls sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xd176b5d1 snd_hda_spdif_out_of_nid sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xa60dbe63 snd_hda_spdif_ctls_unassign sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xb19a8912 snd_hda_spdif_ctls_assign sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x29250a97 snd_hda_create_spdif_share_sw sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x6f80e8bc snd_hda_create_spdif_in_ctls sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x4947dba3 snd_hda_codec_set_power_to_all sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x60f796dd snd_hda_codec_eapd_power_filter sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xe118de5d snd_pcm_2_1_chmaps sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xafefab91 snd_hda_codec_build_controls sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x7a24ecfe snd_hda_codec_prepare sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x435f779d snd_hda_codec_cleanup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xbec6fda7 snd_hda_codec_parse_pcms sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x888c1f4a snd_hda_add_new_ctls sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xe8d305ce snd_hda_codec_set_power_save sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xf14522d1 snd_hda_set_power_save sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x31d4260b snd_hda_check_amp_list_power sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xf8dc35ac snd_hda_input_mux_info sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x891643d0 snd_hda_input_mux_put sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xb0cc4f2e snd_hda_enum_helper_info sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xc5be3c7d snd_hda_multi_out_dig_open sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xf227c42a snd_hda_multi_out_dig_prepare sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x49cc22e4 snd_hda_multi_out_dig_cleanup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x19030020 snd_hda_multi_out_dig_close sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x9ff867f6 snd_hda_multi_out_analog_open sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x56962d6f snd_hda_multi_out_analog_prepare sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x32ffc3ad snd_hda_multi_out_analog_cleanup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x7c6c64b7 snd_hda_get_default_vref sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xaaf513de snd_hda_correct_pin_ctl sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xcec10552 _snd_hda_set_pin_ctl sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xebd21dd7 snd_hda_add_imux_item sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xeda3a721 snd_print_pcm_bits sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x77f4cf3b is_jack_detectable sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x2446da8a snd_hda_jack_tbl_get_mst sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x5de03f07 snd_hda_jack_tbl_get_from_tag sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xd06bb4ef snd_hda_jack_set_dirty_all sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x453ccf1c snd_hda_jack_pin_sense sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xedb0ba0b snd_hda_jack_detect_state_mst sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x195647b7 snd_hda_jack_detect_enable_callback_mst sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x170cabee snd_hda_jack_detect_enable sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x25953348 snd_hda_jack_set_gating_jack sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x260e1053 snd_hda_jack_bind_keymap sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x032bef1b snd_hda_jack_set_button_state sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x99e3f254 snd_hda_jack_report_sync sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xa7f07a9c snd_hda_jack_add_kctl_mst sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x299e441a snd_hda_jack_add_kctls sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x4c0e1d26 snd_hda_jack_unsol_event sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xf80228b5 snd_hda_jack_poll_all sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x85b348e9 snd_hda_parse_pin_defcfg sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x0676f5ac snd_hda_get_input_pin_attr sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xa3144fcc hda_get_autocfg_input_label sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x2fefcbe3 snd_hda_get_pin_label sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x57725e3a snd_hda_add_verbs sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x752da011 snd_hda_apply_verbs sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xffadc996 snd_hda_apply_pincfgs sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x8406cad1 __snd_hda_apply_fixup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x904d345a snd_hda_apply_fixup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xe6a6a2a7 snd_hda_pick_pin_fixup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x3380301d snd_hda_pick_fixup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x809f0dd6 snd_hda_get_hint sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xd7899cc4 snd_hda_get_bool_hint sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x276d6718 snd_hda_get_int_hint sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xf7d1215a snd_hda_load_patch sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x040a8dc2 azx_get_pos_lpib sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xbe490877 azx_get_pos_posbuf sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x535cfc30 azx_get_position sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xf696b5ac snd_hda_codec_load_dsp_prepare sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x63aa4e4d snd_hda_codec_load_dsp_trigger sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x862ea503 snd_hda_codec_load_dsp_cleanup sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xf8f93667 azx_init_chip sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xda827ddf azx_stop_all_streams sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x18dee239 azx_stop_chip sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x38ce402b azx_interrupt sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x18b45546 azx_bus_init sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x0ecc3303 azx_probe_codecs sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x2e5adb63 azx_codec_configure sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x3af8895e azx_init_streams sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xbf56389b azx_free_streams sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x2cc31154 snd_hda_enable_beep_device sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xcde004a8 snd_hda_attach_beep_device sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x89e45e1a snd_hda_detach_beep_device sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x7fefc2f4 snd_hda_mixer_amp_switch_get_beep sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0x5ce108fe snd_hda_mixer_amp_switch_put_beep sound/pci/hda/snd-hda-codec EXPORT_SYMBOL_GPL
-0xb8c589e8 snd_hda_gen_spec_init sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x4d57f407 snd_hda_gen_add_kctl sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0xbc18d6c8 snd_hda_get_path_idx sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x21fafb0f snd_hda_get_path_from_idx sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0xeb35416a snd_hda_add_new_path sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0xfa7e894c snd_hda_activate_path sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x76dc6871 hda_main_out_badness sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x871a6e44 hda_extra_out_badness sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x7541c943 snd_hda_gen_add_mute_led_cdev sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0xe4fc6872 snd_hda_gen_add_micmute_led_cdev sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x4f854976 snd_hda_gen_fix_pin_power sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0xf6a625c1 snd_hda_gen_update_outputs sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x51bae890 snd_hda_gen_hp_automute sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0xb8bb4468 snd_hda_gen_line_automute sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x8b0e1986 snd_hda_gen_mic_autoswitch sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x7648281b snd_hda_gen_path_power_filter sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x7d78d525 snd_hda_gen_stream_pm sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0xadf41ed1 snd_hda_gen_parse_auto_config sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x2fa9dfa5 snd_hda_gen_build_controls sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x67608b77 snd_hda_gen_build_pcms sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x4293ff1f snd_hda_gen_init sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x5b9d8238 snd_hda_gen_free sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x992347e9 snd_hda_gen_check_power_status sound/pci/hda/snd-hda-codec-generic EXPORT_SYMBOL_GPL
-0x74b00189 snd_ice1712_akm4xxx_init sound/pci/ice1712/snd-ice17xx-ak4xxx EXPORT_SYMBOL
-0x6060b713 snd_ice1712_akm4xxx_free sound/pci/ice1712/snd-ice17xx-ak4xxx EXPORT_SYMBOL
-0xdbc27356 snd_ice1712_akm4xxx_build_controls sound/pci/ice1712/snd-ice17xx-ak4xxx EXPORT_SYMBOL
-0x4517cc15 oxygen_read8 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xfbd5fa9b oxygen_read16 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x732e6a1f oxygen_read32 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x2d42fbb8 oxygen_write8 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x5bbfddb7 oxygen_write16 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xdaa6a926 oxygen_write32 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x06d1675a oxygen_write8_masked sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xc80f38c3 oxygen_write16_masked sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x283dd1b1 oxygen_write32_masked sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x76ff38f8 oxygen_write_ac97 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x315f7f8b oxygen_read_ac97 sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xcfdb4e22 oxygen_write_ac97_masked sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x8dc1185a oxygen_write_spi sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x57c8bac2 oxygen_write_i2c sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x27653766 oxygen_reset_uart sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xb81cd463 oxygen_write_uart sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xff0b4cf3 oxygen_pci_probe sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x3c3b8b84 oxygen_pci_pm sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xcb59f4df oxygen_pci_shutdown sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0xc3df2a8c oxygen_update_dac_routing sound/pci/oxygen/snd-oxygen-lib EXPORT_SYMBOL
-0x3ebb9ccc snd_trident_start_voice sound/pci/trident/snd-trident EXPORT_SYMBOL
-0x8684375c snd_trident_stop_voice sound/pci/trident/snd-trident EXPORT_SYMBOL
-0xb55d8970 snd_trident_write_voice_regs sound/pci/trident/snd-trident EXPORT_SYMBOL
-0xf0252ca5 snd_trident_alloc_voice sound/pci/trident/snd-trident EXPORT_SYMBOL
-0xd70d975d snd_trident_free_voice sound/pci/trident/snd-trident EXPORT_SYMBOL
-0x0eda33fa snd_util_memhdr_new sound/synth/snd-util-mem EXPORT_SYMBOL
-0x914f3491 snd_util_memhdr_free sound/synth/snd-util-mem EXPORT_SYMBOL
-0x2a48197f snd_util_mem_alloc sound/synth/snd-util-mem EXPORT_SYMBOL
-0x9223e14b snd_util_mem_free sound/synth/snd-util-mem EXPORT_SYMBOL
-0xc59655e4 snd_util_mem_avail sound/synth/snd-util-mem EXPORT_SYMBOL
-0xd28dc0da __snd_util_mem_alloc sound/synth/snd-util-mem EXPORT_SYMBOL
-0x6517719f __snd_util_mem_free sound/synth/snd-util-mem EXPORT_SYMBOL
-0x9adc8c44 __snd_util_memblk_new sound/synth/snd-util-mem EXPORT_SYMBOL
-0x775a58bf snd_emux_new sound/synth/emux/snd-emux-synth EXPORT_SYMBOL
-0x2e86f534 snd_emux_register sound/synth/emux/snd-emux-synth EXPORT_SYMBOL
-0xa6dda211 snd_emux_free sound/synth/emux/snd-emux-synth EXPORT_SYMBOL
-0x70233186 snd_emux_terminate_all sound/synth/emux/snd-emux-synth EXPORT_SYMBOL
-0xb4d0c330 snd_emux_lock_voice sound/synth/emux/snd-emux-synth EXPORT_SYMBOL
-0x2029f29a snd_emux_unlock_voice sound/synth/emux/snd-emux-synth EXPORT_SYMBOL
-0x655cb202 snd_sf_linear_to_log sound/synth/emux/snd-emux-synth EXPORT_SYMBOL
-0xd9d2bb03 snd_usbmidi_disconnect sound/usb/snd-usbmidi-lib EXPORT_SYMBOL
-0x63343b1d snd_usbmidi_input_stop sound/usb/snd-usbmidi-lib EXPORT_SYMBOL
-0x16756dc0 snd_usbmidi_input_start sound/usb/snd-usbmidi-lib EXPORT_SYMBOL
-0xbed43a41 snd_usbmidi_suspend sound/usb/snd-usbmidi-lib EXPORT_SYMBOL
-0xb2af19e1 snd_usbmidi_resume sound/usb/snd-usbmidi-lib EXPORT_SYMBOL
-0xbc3ee6e9 __snd_usbmidi_create sound/usb/snd-usbmidi-lib EXPORT_SYMBOL
-0x202a1b1b line6_midi_id sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x2bf81e15 line6_send_raw_message sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x672c79c8 line6_send_raw_message_async sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x1c307ff7 line6_version_request_async sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0xc2af0d4f line6_send_sysex_message sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x0ab2d269 line6_alloc_sysex_buffer sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x70f63c6c line6_read_data sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x56bf6fee line6_write_data sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x04ae4eda line6_read_serial_number sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x67441e7f line6_probe sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x656a175f line6_disconnect sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x8d6a7ae5 line6_suspend sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0xa5cb7222 line6_resume sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x3a377a36 line6_init_midi sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0xf3a6b613 line6_pcm_acquire sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x45de5967 line6_pcm_release sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0xd2e92bdf line6_init_pcm sound/usb/line6/snd-usb-line6 EXPORT_SYMBOL_GPL
-0x2a13791a snd_fw_transaction sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x5b74664e fw_iso_resources_init sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x04eb5197 fw_iso_resources_destroy sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x73dde8ed fw_iso_resources_allocate sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x35224e0e fw_iso_resources_update sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x5c209130 fw_iso_resources_free sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xce80dd70 iso_packets_buffer_init sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x38ca9cd7 iso_packets_buffer_destroy sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xd6a1ad14 avc_general_set_sig_fmt sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x3da6bace avc_general_get_sig_fmt sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x23835d07 avc_general_get_plug_info sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xaed70c6d fcp_avc_transaction sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xb682c0a5 fcp_bus_reset sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x3f2eca9a cmp_connection_init sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xa939c7cf cmp_connection_check_used sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xc9379cf1 cmp_connection_destroy sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x21842e79 cmp_connection_reserve sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x52ac13bf cmp_connection_release sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x744bd31e cmp_connection_establish sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xa6b6c6db cmp_connection_update sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xa46fab93 cmp_connection_break sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x765f5d95 amdtp_stream_init sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xee940f85 amdtp_stream_destroy sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x20254e45 amdtp_syt_intervals sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x53ca18e8 amdtp_rate_table sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x2183dd7c amdtp_stream_add_pcm_hw_constraints sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x2e78d854 amdtp_stream_set_parameters sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x577d4889 amdtp_stream_get_max_payload sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x442e20e0 amdtp_stream_pcm_prepare sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xa13a954c amdtp_domain_stream_pcm_pointer sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0xab22e487 amdtp_domain_stream_pcm_ack sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0xe08ea589 amdtp_stream_update sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0xab49c125 amdtp_stream_pcm_abort sound/firewire/snd-firewire-lib EXPORT_SYMBOL
-0x4495694f amdtp_domain_init sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0xa900f75c amdtp_domain_destroy sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0x90eafbab amdtp_domain_add_stream sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0xe8997377 amdtp_domain_start sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0x047e7d5b amdtp_domain_stop sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0x06a10470 amdtp_am824_set_parameters sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0x7da45ca9 amdtp_am824_set_pcm_position sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0xae3f7c4d amdtp_am824_set_midi_position sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0x9a91b3fc amdtp_am824_add_pcm_hw_constraints sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0xbd124da3 amdtp_am824_midi_trigger sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0x7b065bb0 amdtp_am824_init sound/firewire/snd-firewire-lib EXPORT_SYMBOL_GPL
-0xba39aa11 snd_soc_acpi_find_machine sound/soc/snd-soc-acpi EXPORT_SYMBOL_GPL
-0x5c512782 snd_soc_acpi_find_package_from_hid sound/soc/snd-soc-acpi EXPORT_SYMBOL_GPL
-0x14c66b61 snd_soc_acpi_codec_list sound/soc/snd-soc-acpi EXPORT_SYMBOL_GPL
-0x566c1b66 snd_soc_acpi_sdw_link_slaves_found sound/soc/snd-soc-acpi EXPORT_SYMBOL_GPL
-0x5a949d5a null_dailink_component sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xefd39412 snd_soc_debugfs_root sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xbfac74de snd_soc_dai_name_get sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xbfe5a2f7 snd_soc_rtdcom_lookup sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9b393113 snd_soc_lookup_component_nolocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9f0c1e78 snd_soc_lookup_component sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb64d655e snd_soc_get_pcm_runtime sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe4366331 snd_soc_close_delayed_work sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x35ed9867 snd_soc_suspend sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x045f258d snd_soc_resume sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x51a5d988 snd_soc_copy_dai_args sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb39431d9 snd_soc_find_dai sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb057b057 snd_soc_find_dai_with_mutex sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x528b0722 snd_soc_remove_pcm_runtime sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3a645509 snd_soc_add_pcm_runtimes sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xdeb7a040 snd_soc_runtime_set_dai_fmt sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x997e0ef5 snd_soc_set_dmi_name sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf2657c5c snd_soc_poweroff sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7267c566 snd_soc_pm_ops sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf37fcb1b snd_soc_cnew sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf98e38d1 snd_soc_add_component_controls sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x21b58117 snd_soc_add_card_controls sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa023c7e6 snd_soc_add_dai_controls sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xabfb1efb snd_soc_register_card sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x841e2478 snd_soc_unregister_card sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xbf576c4f snd_soc_unregister_dai sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9cd644c4 snd_soc_register_dai sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x341953b9 snd_soc_component_initialize sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe9896502 snd_soc_add_component sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe6798914 snd_soc_register_component sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xd3a7e0cf snd_soc_unregister_component_by_driver sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3cba4f91 snd_soc_unregister_component sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x096e7a96 snd_soc_of_parse_card_name sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf38e6554 snd_soc_of_parse_audio_simple_widgets sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb9793db3 snd_soc_of_parse_pin_switches sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x449c6243 snd_soc_of_get_slot_mask sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa4b26833 snd_soc_of_parse_tdm_slot sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9ce66244 snd_soc_dlc_use_cpu_as_platform sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x93c4bc85 snd_soc_of_parse_node_prefix sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6195a768 snd_soc_of_parse_audio_routing sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9713734a snd_soc_of_parse_aux_devs sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xc317a15e snd_soc_daifmt_clock_provider_flipped sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7a840e78 snd_soc_daifmt_parse_format sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x731275e2 snd_soc_daifmt_parse_clock_provider_raw sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe9065877 snd_soc_get_stream_cpu sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xbee4d05f snd_soc_get_dai_id sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb756ec25 snd_soc_get_dlc sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x150de85c snd_soc_of_get_dlc sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf0b6cb2b snd_soc_get_dai_name sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xef8eed0c snd_soc_of_get_dai_name sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x723d5040 snd_soc_get_dai_via_args sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xfe478efc snd_soc_of_put_dai_link_codecs sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xd535c968 snd_soc_of_get_dai_link_codecs sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x1cfe0cc8 snd_soc_of_put_dai_link_cpus sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xaca97512 snd_soc_of_get_dai_link_cpus sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x17c24a96 dapm_mark_endpoints_dirty sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa1248241 dapm_kcontrol_get_value sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xdc09bc9c snd_soc_dapm_kcontrol_widget sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x709d7b6c snd_soc_dapm_kcontrol_dapm sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xfa217cae snd_soc_dapm_force_bias_level sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x96372905 snd_soc_dapm_dai_get_connected_widgets sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x0e520ccb snd_soc_dapm_dai_free_widgets sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x37aee328 dapm_regulator_event sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xcac68f78 dapm_pinctrl_event sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x17e8430f dapm_clock_event sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb9417aa9 snd_soc_dapm_mux_update_power sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9feefd93 snd_soc_dapm_mixer_update_power sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6699d0d1 snd_soc_dapm_free_widget sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xfbc00ccc snd_soc_dapm_sync_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6ff48263 snd_soc_dapm_sync sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x5da5b504 snd_soc_dapm_update_dai sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3d671bf4 snd_soc_dapm_widget_name_cmp sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf3e16e65 snd_soc_dapm_add_routes sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xdf984b2f snd_soc_dapm_del_routes sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x4ac133cb snd_soc_dapm_weak_routes sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x51f11b79 snd_soc_dapm_new_widgets sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x8116d361 snd_soc_dapm_get_volsw sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x0b305308 snd_soc_dapm_put_volsw sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xdc5d6915 snd_soc_dapm_get_enum_double sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x2bbbe9a1 snd_soc_dapm_put_enum_double sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xfe2abf49 snd_soc_dapm_info_pin_switch sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x046dd8be snd_soc_dapm_get_pin_switch sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x80ba312a snd_soc_dapm_put_pin_switch sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xcf366729 snd_soc_dapm_new_control sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x5e70adb2 snd_soc_dapm_new_controls sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xec9428d8 snd_soc_dapm_new_dai_widgets sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe0bd7d2b snd_soc_dapm_stream_stop sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xaa022160 snd_soc_dapm_enable_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xaeb55594 snd_soc_dapm_enable_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf68be0ea snd_soc_dapm_force_enable_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x60145e52 snd_soc_dapm_force_enable_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x06ad2d29 snd_soc_dapm_disable_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xaa0880ea snd_soc_dapm_disable_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x30f52de1 snd_soc_dapm_nc_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xd6ed9b38 snd_soc_dapm_nc_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xff36b7da snd_soc_dapm_get_pin_status sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7238a3ab snd_soc_dapm_ignore_suspend sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x1b4642ab snd_soc_dapm_free sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe3b0b234 snd_soc_dapm_init sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa2ece71e snd_soc_jack_report sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x8347c5ff snd_soc_jack_add_zones sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x61477c79 snd_soc_jack_get_type sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x11e32e51 snd_soc_jack_add_pins sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x06404688 snd_soc_jack_notifier_register sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x2b6ed7ab snd_soc_jack_notifier_unregister sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x561fb18e snd_soc_jack_add_gpios sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x860ed371 snd_soc_jack_add_gpiods sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xbc30d95c snd_soc_jack_free_gpios sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x2541a979 snd_soc_calc_frame_size sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xc8269f94 snd_soc_params_to_frame_size sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7e606130 snd_soc_calc_bclk sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xeb711ae7 snd_soc_params_to_bclk sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x4fa1782d snd_soc_tdm_params_to_bclk sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x2b540896 snd_soc_dai_is_dummy sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x13fdb9d4 snd_soc_dummy_dlc sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa5b9a6e4 snd_soc_dai_set_sysclk sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x276a063f snd_soc_dai_set_clkdiv sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb2d7e8cd snd_soc_dai_set_pll sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x70f7937c snd_soc_dai_set_bclk_ratio sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xdd0c70c6 snd_soc_dai_set_fmt sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6be45f5c snd_soc_dai_set_tdm_slot sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9f330c1c snd_soc_dai_set_channel_map sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6bf3983c snd_soc_dai_get_channel_map sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xea55bf0d snd_soc_dai_set_tristate sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xc7c24e82 snd_soc_dai_digital_mute sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe4245fe6 snd_soc_dai_link_set_capabilities sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x5638da53 snd_soc_dai_action sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7197c82e snd_soc_dai_active sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xd81d8e78 snd_soc_dai_compr_startup sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xea691250 snd_soc_dai_compr_shutdown sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x251fc99d snd_soc_dai_compr_trigger sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x5b132e80 snd_soc_dai_compr_set_params sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x17167169 snd_soc_dai_compr_get_params sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x39b7be01 snd_soc_dai_compr_ack sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x68ba2af9 snd_soc_dai_compr_pointer sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xd8d29920 snd_soc_dai_compr_set_metadata sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xac192713 snd_soc_dai_compr_get_metadata sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb823bb79 snd_soc_component_set_sysclk sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x593e70e7 snd_soc_component_set_pll sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x00aa2ed8 snd_soc_component_enable_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xfcff043f snd_soc_component_enable_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xcf43a6c2 snd_soc_component_disable_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x33491d1a snd_soc_component_disable_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x69b74a86 snd_soc_component_nc_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3b3c9306 snd_soc_component_nc_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x56855b83 snd_soc_component_get_pin_status sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7734e454 snd_soc_component_force_enable_pin sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3e289c83 snd_soc_component_force_enable_pin_unlocked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xd7269a9b snd_soc_component_notify_control sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x34fbf77f snd_soc_component_set_jack sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x904aa4ff snd_soc_component_get_jack_type sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3962c92c snd_soc_component_init_regmap sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x735b6fe1 snd_soc_component_exit_regmap sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x2eacc632 snd_soc_component_compr_open sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb03ab636 snd_soc_component_compr_free sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3370c3c1 snd_soc_component_compr_trigger sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x212c5a84 snd_soc_component_compr_set_params sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x84994c97 snd_soc_component_compr_get_params sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x23ffb47c snd_soc_component_compr_get_caps sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6ef4caf9 snd_soc_component_compr_get_codec_caps sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xaa8d4da2 snd_soc_component_compr_ack sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x4aecec44 snd_soc_component_compr_pointer sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7dde6ea8 snd_soc_component_compr_copy sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x97ad5d59 snd_soc_component_compr_set_metadata sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x89a93fc1 snd_soc_component_compr_get_metadata sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xab9f1440 snd_soc_component_read sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x2591dbb8 snd_soc_component_write sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x405b475b snd_soc_component_update_bits sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x094932f1 snd_soc_component_update_bits_async sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x65b6d209 snd_soc_component_read_field sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x499ce404 snd_soc_component_write_field sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x18e7ed9b snd_soc_component_async_complete sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xd6cfc693 snd_soc_component_test_bits sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf42c08be snd_soc_runtime_action sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7a345699 snd_soc_set_runtime_hwparams sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3c5050df snd_soc_runtime_calc_hw sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x781c3e58 widget_in_list sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x13fd373b dpcm_end_walk_at_be sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xef2f9124 dpcm_be_dai_trigger sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x66d54070 snd_soc_dpcm_runtime_update sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x3ab5717e snd_soc_dpcm_fe_can_update sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x33ad8856 snd_soc_dpcm_be_can_update sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x668f0d8b snd_soc_dpcm_get_substream sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa04c6c0a snd_soc_dpcm_can_be_free_stop sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa502ebde snd_soc_dpcm_can_be_params sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7fe0b52b snd_soc_dpcm_can_be_prepared sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x61436575 devm_snd_soc_register_dai sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x41e491b0 devm_snd_soc_register_component sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe0587dd4 devm_snd_soc_register_card sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa53a78a7 snd_soc_info_enum_double sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x92955b57 snd_soc_get_enum_double sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6d7c58e4 snd_soc_put_enum_double sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x629252dc snd_soc_info_volsw sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe406f5e6 snd_soc_info_volsw_sx sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xc3f3a612 snd_soc_get_volsw sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xad541e87 snd_soc_put_volsw sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb97f46a6 snd_soc_get_volsw_sx sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x26092e28 snd_soc_put_volsw_sx sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x4ce16ee0 snd_soc_info_volsw_range sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x852d57c1 snd_soc_put_volsw_range sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7ac45472 snd_soc_get_volsw_range sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xf7bb4722 snd_soc_limit_volume sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xc6297455 snd_soc_bytes_info sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x2a9186cf snd_soc_bytes_get sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xfafd99e3 snd_soc_bytes_put sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x841bd5b1 snd_soc_bytes_info_ext sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xbf7608ad snd_soc_bytes_tlv_callback sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9de3e37f snd_soc_info_xr_sx sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x8cd325f1 snd_soc_get_xr_sx sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe2749d64 snd_soc_put_xr_sx sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xecb8edd6 snd_soc_get_strobe sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x6cb32da5 snd_soc_put_strobe sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x07e8b706 snd_soc_link_compr_startup sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7d048168 snd_soc_link_compr_shutdown sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x32033c1b snd_soc_link_compr_set_params sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xe325fda1 snd_soc_card_get_kcontrol_locked sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x20a5e80d snd_soc_card_get_kcontrol sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xa4b62b16 snd_soc_card_jack_new sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xfe3069c7 snd_soc_card_jack_new_pins sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xbc8e00d0 snd_soc_card_add_dai_link sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x5ba2a1ad snd_soc_card_remove_dai_link sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x1cf78c14 snd_soc_tplg_widget_bind_event sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x7e10e800 snd_soc_tplg_component_load sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0xb472b7d6 snd_soc_tplg_component_remove sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x5dfb8ebd snd_soc_new_compress sound/soc/snd-soc-core EXPORT_SYMBOL_GPL
-0x9d6f211f hdac_hdmi_jack_port_init sound/soc/codecs/snd-soc-hdac-hdmi EXPORT_SYMBOL_GPL
-0xc3fe3dad hdac_hdmi_jack_init sound/soc/codecs/snd-soc-hdac-hdmi EXPORT_SYMBOL_GPL
-0xf2f3a157 snd_soc_hdac_hda_get_ops sound/soc/codecs/snd-soc-hdac-hda EXPORT_SYMBOL_GPL
-0xa5af5938 max98090_mic_detect sound/soc/codecs/snd-soc-max98090 EXPORT_SYMBOL_GPL
-0x28b0ad3b nau8824_enable_jack_detect sound/soc/codecs/snd-soc-nau8824 EXPORT_SYMBOL_GPL
-0xbf55f96a nau8824_components sound/soc/codecs/snd-soc-nau8824 EXPORT_SYMBOL_GPL
-0x77d47be8 nau8825_enable_jack_detect sound/soc/codecs/snd-soc-nau8825 EXPORT_SYMBOL_GPL
-0x8d7fa148 rl6231_get_pre_div sound/soc/codecs/snd-soc-rl6231 EXPORT_SYMBOL_GPL
-0xdba4502f rl6231_calc_dmic_clk sound/soc/codecs/snd-soc-rl6231 EXPORT_SYMBOL_GPL
-0x5dc92cdf rl6231_pll_calc sound/soc/codecs/snd-soc-rl6231 EXPORT_SYMBOL_GPL
-0x70617a04 rl6231_get_clk_info sound/soc/codecs/snd-soc-rl6231 EXPORT_SYMBOL_GPL
-0xa7aa810f rl6347a_hw_write sound/soc/codecs/snd-soc-rl6347a EXPORT_SYMBOL_GPL
-0xade4bf4c rl6347a_hw_read sound/soc/codecs/snd-soc-rl6347a EXPORT_SYMBOL_GPL
-0x61ff58e3 rt5514_spi_burst_read sound/soc/codecs/snd-soc-rt5514-spi EXPORT_SYMBOL_GPL
-0xff87892f rt5514_spi_burst_write sound/soc/codecs/snd-soc-rt5514-spi EXPORT_SYMBOL_GPL
-0xc72a835e rt5640_dmic_enable sound/soc/codecs/snd-soc-rt5640 EXPORT_SYMBOL_GPL
-0xac1da6a7 rt5640_sel_asrc_clk_src sound/soc/codecs/snd-soc-rt5640 EXPORT_SYMBOL_GPL
-0xab059b24 rt5640_enable_micbias1_for_ovcd sound/soc/codecs/snd-soc-rt5640 EXPORT_SYMBOL_GPL
-0xe4e37fd0 rt5640_disable_micbias1_for_ovcd sound/soc/codecs/snd-soc-rt5640 EXPORT_SYMBOL_GPL
-0x647de894 rt5640_detect_headset sound/soc/codecs/snd-soc-rt5640 EXPORT_SYMBOL_GPL
-0xa0f63335 rt5640_set_ovcd_params sound/soc/codecs/snd-soc-rt5640 EXPORT_SYMBOL_GPL
-0x2e4ee919 rt5645_sel_asrc_clk_src sound/soc/codecs/snd-soc-rt5645 EXPORT_SYMBOL_GPL
-0x783e437d rt5645_set_jack_detect sound/soc/codecs/snd-soc-rt5645 EXPORT_SYMBOL_GPL
-0xc0a2e4e5 rt5663_sel_asrc_clk_src sound/soc/codecs/snd-soc-rt5663 EXPORT_SYMBOL_GPL
-0xec180f4e rt5670_jack_suspend sound/soc/codecs/snd-soc-rt5670 EXPORT_SYMBOL_GPL
-0xac48bae2 rt5670_jack_resume sound/soc/codecs/snd-soc-rt5670 EXPORT_SYMBOL_GPL
-0x583e7018 rt5670_set_jack_detect sound/soc/codecs/snd-soc-rt5670 EXPORT_SYMBOL_GPL
-0xb7d4e21b rt5670_sel_asrc_clk_src sound/soc/codecs/snd-soc-rt5670 EXPORT_SYMBOL_GPL
-0x2f5ee4db rt5670_components sound/soc/codecs/snd-soc-rt5670 EXPORT_SYMBOL_GPL
-0xf0892922 ts3a227e_enable_jack_detect sound/soc/codecs/snd-soc-ts3a227e EXPORT_SYMBOL_GPL
-0xe9c6de99 sst_shim32_write sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x16e86983 sst_shim32_read sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x87cdf7d2 sst_shim32_write64 sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0xd72a34c2 sst_shim32_read64 sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x18d957e7 sst_dsp_shim_write sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x19911fea sst_dsp_shim_read sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x93b91833 sst_dsp_shim_write_unlocked sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x61b10152 sst_dsp_shim_read_unlocked sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x01f7231f sst_dsp_shim_update_bits_unlocked sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0xca3b438c sst_dsp_shim_update_bits_forced_unlocked sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x14f682a7 sst_dsp_shim_update_bits sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x5efff2ec sst_dsp_shim_update_bits_forced sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x75fcd2bc sst_dsp_register_poll sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0xb6102186 sst_dsp_mailbox_init sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0xc223374b sst_dsp_outbox_write sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x461e3952 sst_dsp_outbox_read sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x3c7f6da7 sst_dsp_inbox_write sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0xce5fa3ca sst_dsp_inbox_read sound/soc/intel/common/snd-soc-sst-dsp EXPORT_SYMBOL_GPL
-0x97d31d11 sst_ipc_tx_message_wait sound/soc/intel/common/snd-soc-sst-ipc EXPORT_SYMBOL_GPL
-0xfbde6944 sst_ipc_tx_message_nowait sound/soc/intel/common/snd-soc-sst-ipc EXPORT_SYMBOL_GPL
-0xdddef461 sst_ipc_tx_message_nopm sound/soc/intel/common/snd-soc-sst-ipc EXPORT_SYMBOL_GPL
-0xe8f26773 sst_ipc_reply_find_msg sound/soc/intel/common/snd-soc-sst-ipc EXPORT_SYMBOL_GPL
-0xb8276c28 sst_ipc_tx_msg_reply_complete sound/soc/intel/common/snd-soc-sst-ipc EXPORT_SYMBOL_GPL
-0xff55f6a0 sst_ipc_init sound/soc/intel/common/snd-soc-sst-ipc EXPORT_SYMBOL_GPL
-0x28334b02 sst_ipc_fini sound/soc/intel/common/snd-soc-sst-ipc EXPORT_SYMBOL_GPL
-0x4ca3eedb snd_soc_acpi_intel_baytrail_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x28f6018f snd_soc_acpi_intel_cherrytrail_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x4bf97c55 snd_soc_acpi_intel_broadwell_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x74ca5fd2 snd_soc_acpi_intel_skl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x58f087ef snd_soc_acpi_intel_kbl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x336f81a3 snd_soc_acpi_intel_bxt_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xe53d43e4 snd_soc_acpi_intel_glk_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x19c21bb9 snd_soc_acpi_intel_cnl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xe1a679c0 snd_soc_acpi_intel_cnl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xf987d11d snd_soc_acpi_intel_cfl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x9293bd3c snd_soc_acpi_intel_cfl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xa35cfaa0 snd_soc_acpi_intel_cml_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xa0e12644 snd_soc_acpi_intel_cml_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x22a486b9 snd_soc_acpi_intel_icl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x96c17766 snd_soc_acpi_intel_icl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x602ca5ba snd_soc_acpi_intel_tgl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xd5f712ce snd_soc_acpi_intel_tgl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xed67c555 snd_soc_acpi_intel_ehl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x044fb648 snd_soc_acpi_intel_jsl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xaa1b64b9 snd_soc_acpi_intel_adl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xbc99cacd snd_soc_acpi_intel_adl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xdcc6d459 snd_soc_acpi_intel_rpl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x22481abe snd_soc_acpi_intel_rpl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xd9243276 snd_soc_acpi_intel_mtl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x6b546c25 snd_soc_acpi_intel_mtl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x4c167d87 snd_soc_acpi_intel_lnl_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x435de4a0 snd_soc_acpi_intel_lnl_sdw_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0xa4f5c783 snd_soc_acpi_intel_hda_machines sound/soc/intel/common/snd-soc-acpi-intel-match EXPORT_SYMBOL_GPL
-0x98290066 sst_register_dsp sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform EXPORT_SYMBOL_GPL
-0x33117129 sst_unregister_dsp sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform EXPORT_SYMBOL_GPL
-0xfb667d47 sst_alloc_drv_context sound/soc/intel/atom/sst/snd-intel-sst-core EXPORT_SYMBOL_GPL
-0x7b8c0fdd sst_context_init sound/soc/intel/atom/sst/snd-intel-sst-core EXPORT_SYMBOL_GPL
-0xd12cc68b sst_context_cleanup sound/soc/intel/atom/sst/snd-intel-sst-core EXPORT_SYMBOL_GPL
-0x7de6f8d7 sst_configure_runtime_pm sound/soc/intel/atom/sst/snd-intel-sst-core EXPORT_SYMBOL_GPL
-0x8eb5baeb intel_sst_pm sound/soc/intel/atom/sst/snd-intel-sst-core EXPORT_SYMBOL_GPL
-0x709cd25f relocate_imr_addr_mrfld sound/soc/intel/atom/sst/snd-intel-sst-core EXPORT_SYMBOL_GPL
-0xf7818875 skl_dsp_set_dma_control sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x2e734fd0 skl_ipc_create_pipeline sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x052e4ad2 skl_ipc_delete_pipeline sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xa83da15e skl_ipc_set_pipeline_state sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x7728d589 skl_ipc_save_pipeline sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x9e9b51e9 skl_ipc_restore_pipeline sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xc4244aa6 skl_ipc_set_dx sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x8d7f319f skl_ipc_init_instance sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x3a2d585f skl_ipc_bind_unbind sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xcbaaf5f5 skl_ipc_load_modules sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x69cfa95e skl_ipc_unload_modules sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x5d016157 skl_ipc_set_large_config sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x6ebbf28f skl_ipc_get_large_config sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x983491fe skl_sst_ipc_load_library sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x1b58bbc6 skl_ipc_set_d0ix sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x4207a9fd skl_dsp_get_core sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x4a7750ed skl_dsp_put_core sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xaa56c68d skl_dsp_wake sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xdc15b5c1 skl_dsp_sleep sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xb5188694 skl_dsp_free sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xa4377baf is_skl_dsp_running sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x835bf617 cnl_dsp_free sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x88677e51 skl_clear_module_cnt sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x277099f6 skl_sst_dsp_init sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x53c23356 skl_sst_init_fw sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x45d7853f skl_sst_dsp_cleanup sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x1ac21cd2 bxt_sst_dsp_init sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x59e89a32 bxt_sst_init_fw sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xa884a6b2 bxt_sst_dsp_cleanup sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x388b536e cnl_sst_dsp_init sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xfce8af32 cnl_sst_init_fw sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x2c98d6ae cnl_sst_dsp_cleanup sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0xe6b08b1e skl_get_pvt_instance_id_map sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x043b6d6a skl_get_pvt_id sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x655319dc skl_put_pvt_id sound/soc/intel/skylake/snd-soc-skl EXPORT_SYMBOL_GPL
-0x5f345a33 hdac_get_device_id sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xb2dd94ec snd_hda_bus_type sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xe761576b snd_hdac_bus_init sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x993c668f snd_hdac_bus_exit sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x589c6105 snd_hdac_bus_exec_verb_unlocked sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x99632011 snd_hdac_codec_link_up sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x923aed0c snd_hdac_codec_link_down sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x7cc6846e snd_hdac_device_init sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xe65bb287 snd_hdac_device_exit sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x3e7e88ae snd_hdac_device_register sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x90488497 snd_hdac_device_unregister sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xc4dd0d63 snd_hdac_device_set_chip_name sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xfc134a67 snd_hdac_codec_modalias sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x68a58873 snd_hdac_read sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x867a716b _snd_hdac_read_parm sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x069d35ef snd_hdac_read_parm_uncached sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xb31c017a snd_hdac_override_parm sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x8c4f525e snd_hdac_get_sub_nodes sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xac5678ac snd_hdac_refresh_widgets sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x3dcd1981 snd_hdac_get_connections sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x52f101b0 snd_hdac_power_up sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x576e977c snd_hdac_power_down sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x82a94cdf snd_hdac_power_up_pm sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x5db780b7 snd_hdac_power_down_pm sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x5c07cb49 snd_hdac_calc_stream_format sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xd7d28c9e snd_hdac_query_supported_pcm sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xcce2fd74 snd_hdac_is_supported_format sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x8bd404f3 snd_hdac_codec_read sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xd192cf9b snd_hdac_codec_write sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xd059c93f snd_hdac_check_power_state sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x4e75e1fc snd_hdac_sync_power_state sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x52c4122f snd_hdac_regmap_init sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xb0b069d8 snd_hdac_regmap_exit sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x6ec6e1ca snd_hdac_regmap_add_vendor_verb sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xd053997d snd_hdac_regmap_write_raw sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xe9d010b2 snd_hdac_regmap_read_raw sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x54acdf82 snd_hdac_regmap_update_raw sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xb3253690 snd_hdac_regmap_update_raw_once sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x537254f2 snd_hdac_regmap_sync sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xcbaad28a snd_hdac_bus_init_cmd_io sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x6ac8c65a snd_hdac_bus_stop_cmd_io sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xaccd30de snd_hdac_bus_send_cmd sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x890fa029 snd_hdac_bus_update_rirb sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xdc0f5c1a snd_hdac_bus_get_response sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x61c34afb snd_hdac_bus_parse_capabilities sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x02340e77 snd_hdac_bus_enter_link_reset sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xc9c98ec5 snd_hdac_bus_exit_link_reset sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xfe82a232 snd_hdac_bus_reset_link sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x683bf932 snd_hdac_bus_init_chip sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xe444c6d2 snd_hdac_bus_stop_chip sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xcdc741f6 snd_hdac_bus_handle_stream_irq sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x56e80523 snd_hdac_bus_alloc_stream_pages sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x55ba0671 snd_hdac_bus_free_stream_pages sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x680d7b43 snd_hdac_bus_link_power sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xdf79d833 snd_hdac_get_stream_stripe_ctl sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xd2040b9c snd_hdac_stream_init sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xa5501a13 snd_hdac_stream_start sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x2175bec6 snd_hdac_stream_stop sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x914baf46 snd_hdac_stop_streams sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x68942f78 snd_hdac_stop_streams_and_chip sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xcf012067 snd_hdac_stream_reset sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x07fd94a9 snd_hdac_stream_setup sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x53fc543e snd_hdac_stream_cleanup sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xdbb2d993 snd_hdac_stream_assign sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x086f82bb snd_hdac_stream_release_locked sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x0da3952e snd_hdac_stream_release sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x95e7f75b snd_hdac_get_stream sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xfd91a2a2 snd_hdac_stream_setup_periods sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x8455a18f snd_hdac_stream_set_params sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x1ccd38a0 snd_hdac_stream_timecounter_init sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xe5e0e261 snd_hdac_stream_sync_trigger sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x60454687 snd_hdac_stream_sync sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x0b79c05b snd_hdac_stream_spbcap_enable sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xb17bcc3d snd_hdac_stream_set_spib sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xa076f495 snd_hdac_stream_get_spbmaxfifo sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x0bc002df snd_hdac_stream_drsm_enable sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x1da70dbf snd_hdac_stream_wait_drsm sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xb450083f snd_hdac_stream_set_dpibr sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x8bab40bf snd_hdac_stream_set_lpib sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x2a5b5148 snd_hdac_dsp_prepare sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x339f3c55 snd_hdac_dsp_trigger sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xdd95d359 snd_hdac_dsp_cleanup sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xbe7dd7dc snd_array_new sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x9a8e1877 snd_array_free sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xe4e07754 snd_hdac_print_channel_allocation sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x77c754a8 snd_hdac_chmap_to_spk_mask sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x67bfe791 snd_hdac_spk_to_chmap sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x79ae5295 snd_hdac_setup_channel_mapping sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x3bd544c2 snd_hdac_get_active_channels sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xbb29dc95 snd_hdac_channel_allocation sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x595d7ccf snd_hdac_register_chmap_ops sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x1ee5088f snd_hdac_add_chmap_ctls sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xc52942cd snd_hdac_set_codec_wakeup sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x31926769 snd_hdac_display_power sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x61137d4c snd_hdac_sync_audio_rate sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x8d38d3b2 snd_hdac_acomp_get_eld sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x8997e81d snd_hdac_acomp_register_notifier sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xacdf5463 snd_hdac_acomp_init sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x21e74f68 snd_hdac_acomp_exit sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x2e8fd52e snd_hdac_i915_set_bclk sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0xaebf95b6 snd_hdac_i915_init sound/hda/snd-hda-core EXPORT_SYMBOL_GPL
-0x4d7a21d4 snd_hdac_ext_bus_init sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x943b0042 snd_hdac_ext_bus_exit sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x0fff3cea snd_hdac_ext_bus_device_remove sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xba41f44c snd_hda_ext_driver_register sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x34fcea20 snd_hda_ext_driver_unregister sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xf81c3e14 snd_hdac_ext_bus_ppcap_enable sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x1f5a64aa snd_hdac_ext_bus_ppcap_int_enable sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x1c050bdd snd_hdac_ext_bus_get_ml_capabilities sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xc8b80ef0 snd_hdac_ext_link_free_all sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x5fd2ea59 snd_hdac_ext_bus_get_hlink_by_addr sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xd12ab2e6 snd_hdac_ext_bus_get_hlink_by_name sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xe75437a4 snd_hdac_ext_bus_link_power_up sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x80acfe8e snd_hdac_ext_bus_link_power_down sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x44c9d4b9 snd_hdac_ext_bus_link_power_up_all sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x0c29e286 snd_hdac_ext_bus_link_power_down_all sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x060f4834 snd_hdac_ext_bus_link_set_stream_id sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xe4351e7f snd_hdac_ext_bus_link_clear_stream_id sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x4d00212f snd_hdac_ext_bus_link_get sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xffc07973 snd_hdac_ext_bus_link_put sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x6adfbe3e snd_hdac_ext_bus_link_power sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x9a6bd258 snd_hdac_ext_stream_init_all sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x341f5d6e snd_hdac_ext_stream_free_all sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x05e079ae snd_hdac_ext_stream_decouple_locked sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xfa2201cc snd_hdac_ext_stream_decouple sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x48104782 snd_hdac_ext_stream_start sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x4c167237 snd_hdac_ext_stream_clear sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x64b11821 snd_hdac_ext_stream_reset sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x11ef26bf snd_hdac_ext_stream_setup sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x8387c063 snd_hdac_ext_stream_assign sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0xef7b9cd4 snd_hdac_ext_stream_release sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x76f19050 snd_hdac_ext_cstream_assign sound/hda/ext/snd-hda-ext-core EXPORT_SYMBOL_GPL
-0x22c09b7e snd_intel_dsp_driver_probe sound/hda/snd-intel-dspcfg EXPORT_SYMBOL_GPL
-0x53571c11 snd_intel_acpi_dsp_driver_probe sound/hda/snd-intel-dspcfg EXPORT_SYMBOL_GPL
-0x93b02d70 intel_nhlt_init sound/hda/snd-intel-dspcfg EXPORT_SYMBOL_GPL
-0x4e859456 intel_nhlt_free sound/hda/snd-intel-dspcfg EXPORT_SYMBOL_GPL
-0x2ee08ead intel_nhlt_get_dmic_geo sound/hda/snd-intel-dspcfg EXPORT_SYMBOL_GPL
-0x41a05c36 intel_nhlt_has_endpoint_type sound/hda/snd-intel-dspcfg EXPORT_SYMBOL
-0x66fd6169 intel_nhlt_ssp_endpoint_mask sound/hda/snd-intel-dspcfg EXPORT_SYMBOL
-0xb7b836b3 intel_nhlt_ssp_mclk_mask sound/hda/snd-intel-dspcfg EXPORT_SYMBOL
-0x7533c2fa intel_nhlt_get_endpoint_blob sound/hda/snd-intel-dspcfg EXPORT_SYMBOL
-0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi EXPORT_SYMBOL SND_INTEL_SOUNDWIRE_ACPI
-0x7a4aca68 snd_ac97_reset sound/ac97_bus EXPORT_SYMBOL_GPL
-0x6021202d ac97_bus_type sound/ac97_bus EXPORT_SYMBOL
-0x8fe3ed74 failover_slave_unregister net/core/failover EXPORT_SYMBOL_GPL
-0x6c4be47b failover_register net/core/failover EXPORT_SYMBOL_GPL
-0xfce3df46 failover_unregister net/core/failover EXPORT_SYMBOL_GPL
-0x748fba97 register_8022_client net/802/p8022 EXPORT_SYMBOL
-0xe3b6ffdd unregister_8022_client net/802/p8022 EXPORT_SYMBOL
-0x808a10ed register_snap_client net/802/psnap EXPORT_SYMBOL
-0xf3811ad1 unregister_snap_client net/802/psnap EXPORT_SYMBOL
-0xb8c369e5 stp_proto_register net/802/stp EXPORT_SYMBOL_GPL
-0xbec45882 stp_proto_unregister net/802/stp EXPORT_SYMBOL_GPL
-0x1eaf03e6 garp_request_join net/802/garp EXPORT_SYMBOL_GPL
-0x4f632002 garp_request_leave net/802/garp EXPORT_SYMBOL_GPL
-0xc405ceb9 garp_init_applicant net/802/garp EXPORT_SYMBOL_GPL
-0xf9e4cbd2 garp_uninit_applicant net/802/garp EXPORT_SYMBOL_GPL
-0xc15b1128 garp_register_application net/802/garp EXPORT_SYMBOL_GPL
-0x74580ec7 garp_unregister_application net/802/garp EXPORT_SYMBOL_GPL
-0x19f979cb mrp_request_join net/802/mrp EXPORT_SYMBOL_GPL
-0x072cbacc mrp_request_leave net/802/mrp EXPORT_SYMBOL_GPL
-0x30c56483 mrp_init_applicant net/802/mrp EXPORT_SYMBOL_GPL
-0x3f2eb606 mrp_uninit_applicant net/802/mrp EXPORT_SYMBOL_GPL
-0xf09b5bd1 mrp_register_application net/802/mrp EXPORT_SYMBOL_GPL
-0xf0fae60b mrp_unregister_application net/802/mrp EXPORT_SYMBOL_GPL
-0x872baf8f mqprio_validate_qopt net/sched/sch_mqprio_lib EXPORT_SYMBOL_GPL
-0x419ab3a8 mqprio_qopt_reconstruct net/sched/sch_mqprio_lib EXPORT_SYMBOL_GPL
-0x8e9468b1 mqprio_fp_to_offload net/sched/sch_mqprio_lib EXPORT_SYMBOL_GPL
-0x92ea0dd9 pie_drop_early net/sched/sch_pie EXPORT_SYMBOL_GPL
-0x8678a46c pie_process_dequeue net/sched/sch_pie EXPORT_SYMBOL_GPL
-0x6ce9b467 pie_calculate_probability net/sched/sch_pie EXPORT_SYMBOL_GPL
-0x5ce3b588 nfnl_lock net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0xdb065657 nfnl_unlock net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0xab92e03b nfnetlink_subsys_register net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0xc56a27bb nfnetlink_subsys_unregister net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0x35566f1c nfnetlink_has_listeners net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0x2246ad3a nfnetlink_send net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0x9542c917 nfnetlink_set_err net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0x45b7498f nfnetlink_unicast net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0x6ef4121f nfnetlink_broadcast net/netfilter/nfnetlink EXPORT_SYMBOL_GPL
-0x35eff5e0 nf_osf_fingers net/netfilter/nfnetlink_osf EXPORT_SYMBOL_GPL
-0xc017a4ca nf_osf_match net/netfilter/nfnetlink_osf EXPORT_SYMBOL_GPL
-0x3000ffc0 nf_osf_find net/netfilter/nfnetlink_osf EXPORT_SYMBOL_GPL
-0xaf0847f0 nf_conntrack_locks net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x9adb7399 nf_conntrack_expect_lock net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x28eff409 nf_conntrack_hash net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xdba7326b nf_conntrack_lock net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x8ffe7e89 nf_conntrack_htable_size net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xf38bcdf3 nf_conntrack_max net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x6785e741 nf_ct_get_tuplepr net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x0460ec0f nf_ct_invert_tuple net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xdf4b5b4c nf_ct_get_id net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x4d026702 nf_ct_tmpl_alloc net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x84611455 nf_ct_tmpl_free net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x3b08a8f0 nf_ct_destroy net/netfilter/nf_conntrack EXPORT_SYMBOL
-0x39c0b9ae nf_ct_delete net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xe9bff5a2 nf_conntrack_find_get net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x2b4489cf nf_conntrack_hash_check_insert net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x37be6770 nf_ct_acct_add net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xa4462e65 __nf_conntrack_confirm net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xa28acdc8 nf_conntrack_tuple_taken net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xfdf2f8e3 nf_conntrack_alloc net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x4488104c nf_conntrack_free net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x03017c3d nf_conntrack_in net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x32737282 nf_conntrack_alter_reply net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x625205cf __nf_ct_refresh_acct net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x30034947 nf_ct_kill_acct net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x7685cd78 nf_ct_port_tuple_to_nlattr net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x04cd649c nf_ct_port_nla_policy net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x752f0aa2 nf_ct_port_nlattr_to_tuple net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xd505c3e0 nf_ct_port_nlattr_tuple_size net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x5798fbfa nf_ct_iterate_cleanup_net net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x4e70a364 nf_ct_iterate_destroy net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x289c3714 nf_ct_alloc_hashtable net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x8e8ab31e __nf_ct_change_timeout net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x16cd2f19 __nf_ct_change_status net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x338658c0 nf_ct_change_status_common net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xaa1d39a7 print_tuple net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x11ff76b0 nf_conntrack_count net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc18ac88d nf_ct_expect_hsize net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xec8beba6 nf_ct_expect_hash net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x672ad444 nf_ct_unlink_expect_report net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x7d02cbe0 nf_ct_remove_expect net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xaa8da679 __nf_ct_expect_find net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x91a58a9d nf_ct_expect_find_get net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x5694facc nf_ct_remove_expectations net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xca2aae12 nf_ct_unexpect_related net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x22d758c8 nf_ct_expect_alloc net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x59827f2e nf_ct_expect_init net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xe8321e0c nf_ct_expect_put net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x8e95fc53 nf_ct_expect_related_report net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xad7e1245 nf_ct_expect_iterate_destroy net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x2a72d476 nf_ct_expect_iterate_net net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x693c3961 nf_ct_helper_hash net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc40f284c nf_ct_helper_hsize net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x5e7ce6e3 __nf_conntrack_helper_find net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x73844570 nf_conntrack_helper_try_module_get net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x058e69fe nf_conntrack_helper_put net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x0bc00f80 nf_nat_helper_try_module_get net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x0cc28416 nf_nat_helper_put net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x9d058718 nf_ct_helper_ext_add net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xa5d6909e __nf_ct_try_assign_helper net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xca3572ad nf_ct_helper_expectfn_register net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc01803a5 nf_ct_helper_expectfn_unregister net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xb2322772 nf_ct_helper_expectfn_find_by_name net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xa8fb65a0 nf_ct_helper_expectfn_find_by_symbol net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x75d14331 nf_ct_helper_log net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x370d254c nf_conntrack_helper_register net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc5c0790d nf_conntrack_helper_unregister net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x83cab6d7 nf_ct_helper_init net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x595a3719 nf_conntrack_helpers_register net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x3ef1c01d nf_conntrack_helpers_unregister net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xa02b1ce5 nf_nat_helper_register net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xad4cc3ce nf_nat_helper_unregister net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x7b89449d nf_l4proto_log_invalid net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc5bf07e7 nf_ct_l4proto_log_invalid net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xa4e6c580 nf_ct_l4proto_find net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x14a987f9 nf_confirm net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x438381cb nf_ct_netns_get net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x27a90c0a nf_ct_netns_put net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc543df38 nf_ct_bridge_register net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x4a467c73 nf_ct_bridge_unregister net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xa36d7ba7 nf_ct_ext_add net/netfilter/nf_conntrack EXPORT_SYMBOL
-0x4df34c83 __nf_ct_ext_find net/netfilter/nf_conntrack EXPORT_SYMBOL
-0xc24fe315 nf_ct_seqadj_init net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x1a3fb69d nf_ct_seqadj_set net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x8aee663a nf_ct_tcp_seqadj_set net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xdc78c5ad nf_ct_seq_adjust net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xe407fe53 nf_ct_seq_offset net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc827105d nf_ct_timeout_hook net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xea8ef802 nf_ct_untimeout net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xef176cba nf_ct_set_timeout net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x9d6a1486 nf_ct_destroy_timeout net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x70b7b3b2 nf_conn_pernet_ecache net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x0db48e36 nf_conntrack_eventmask_report net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xb124d493 nf_ct_deliver_cached_events net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x2ff207ad nf_conntrack_register_notifier net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x04a0b96e nf_conntrack_unregister_notifier net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xbf18c391 nf_ct_ecache_ext_add net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x7d5a446e nf_connlabels_replace net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x03052dbb nf_connlabels_get net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x88c44299 nf_connlabels_put net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x64b95dfc nf_ct_helper net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x19074fa2 nf_ct_add_helper net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x5b3ddba6 nf_ct_skb_network_trim net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x18def7a9 nf_ct_handle_fragments net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc48642ed nf_ct_gre_keymap_add net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0x1d62afd5 nf_ct_gre_keymap_destroy net/netfilter/nf_conntrack EXPORT_SYMBOL_GPL
-0xc6f42d27 nf_nat_amanda_hook net/netfilter/nf_conntrack_amanda EXPORT_SYMBOL_GPL
-0x436276d9 nf_nat_ftp_hook net/netfilter/nf_conntrack_ftp EXPORT_SYMBOL_GPL
-0xfad07029 nfct_h323_nat_hook net/netfilter/nf_conntrack_h323 EXPORT_SYMBOL_GPL
-0x6ac35896 get_h225_addr net/netfilter/nf_conntrack_h323 EXPORT_SYMBOL_GPL
-0xd0a33b79 nf_nat_irc_hook net/netfilter/nf_conntrack_irc EXPORT_SYMBOL_GPL
-0x150225e0 nf_conntrack_broadcast_help net/netfilter/nf_conntrack_broadcast EXPORT_SYMBOL_GPL
-0xf12e7542 nf_nat_snmp_hook net/netfilter/nf_conntrack_snmp EXPORT_SYMBOL_GPL
-0x3ef4a469 nf_nat_pptp_hook net/netfilter/nf_conntrack_pptp EXPORT_SYMBOL_GPL
-0xf2a36612 pptp_msg_name net/netfilter/nf_conntrack_pptp EXPORT_SYMBOL
-0xdc5f149b nf_nat_sip_hooks net/netfilter/nf_conntrack_sip EXPORT_SYMBOL_GPL
-0x6c8cf6b5 ct_sip_parse_request net/netfilter/nf_conntrack_sip EXPORT_SYMBOL_GPL
-0xabf94809 ct_sip_get_header net/netfilter/nf_conntrack_sip EXPORT_SYMBOL_GPL
-0x96888cfd ct_sip_parse_header_uri net/netfilter/nf_conntrack_sip EXPORT_SYMBOL_GPL
-0xe05ba91b ct_sip_parse_address_param net/netfilter/nf_conntrack_sip EXPORT_SYMBOL_GPL
-0x4fe79fff ct_sip_parse_numerical_param net/netfilter/nf_conntrack_sip EXPORT_SYMBOL_GPL
-0x4175b01a ct_sip_get_sdp_header net/netfilter/nf_conntrack_sip EXPORT_SYMBOL_GPL
-0x0f583c31 nf_nat_tftp_hook net/netfilter/nf_conntrack_tftp EXPORT_SYMBOL_GPL
-0x2319c321 nf_ct_nat_ext_add net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x2963b844 nf_nat_setup_info net/netfilter/nf_nat EXPORT_SYMBOL
-0x20b44267 nf_nat_alloc_null_binding net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0xf7677358 nf_nat_packet net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x97ad88fd nf_nat_inet_fn net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x02759cc2 nf_nat_icmp_reply_translation net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0xe6309d9a nf_nat_ipv4_register_fn net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x13f2d8ab nf_nat_ipv4_unregister_fn net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x57f1d026 nf_nat_icmpv6_reply_translation net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x98d8414c nf_nat_ipv6_register_fn net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x4bf55a25 nf_nat_ipv6_unregister_fn net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0xb81d00a2 nf_nat_inet_register_fn net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x8ad3d584 nf_nat_inet_unregister_fn net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x3ed29004 __nf_nat_mangle_tcp_packet net/netfilter/nf_nat EXPORT_SYMBOL
-0xf515632d nf_nat_mangle_udp_packet net/netfilter/nf_nat EXPORT_SYMBOL
-0x25e81f1e nf_nat_follow_master net/netfilter/nf_nat EXPORT_SYMBOL
-0xdf20545e nf_nat_exp_find_port net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x7f70940f nf_nat_redirect_ipv4 net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x3141d6e8 nf_nat_redirect_ipv6 net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0xa33891d6 nf_nat_masquerade_ipv4 net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x44fde212 nf_nat_masquerade_ipv6 net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0x3bc17c49 nf_nat_masquerade_inet_register_notifiers net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0xee500aca nf_ct_nat net/netfilter/nf_nat EXPORT_SYMBOL_GPL
-0xca9fc082 synproxy_net_id net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0xcb495bc5 synproxy_parse_options net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x1f099794 synproxy_init_timestamp_cookie net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x53529f2c synproxy_send_client_synack net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0xd5c30dbd synproxy_recv_client_ack net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x81fcff85 ipv4_synproxy_hook net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x0ae2a149 nf_synproxy_ipv4_init net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x40302844 nf_synproxy_ipv4_fini net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x164abec5 synproxy_send_client_synack_ipv6 net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x988b73ec synproxy_recv_client_ack_ipv6 net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x221d99e4 ipv6_synproxy_hook net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x2e4fdc42 nf_synproxy_ipv6_init net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x649d554f nf_synproxy_ipv6_fini net/netfilter/nf_synproxy_core EXPORT_SYMBOL_GPL
-0x183dcbb9 nf_conncount_add net/netfilter/nf_conncount EXPORT_SYMBOL_GPL
-0xded40268 nf_conncount_list_init net/netfilter/nf_conncount EXPORT_SYMBOL_GPL
-0x82e70f7e nf_conncount_gc_list net/netfilter/nf_conncount EXPORT_SYMBOL_GPL
-0x1e125e38 nf_conncount_count net/netfilter/nf_conncount EXPORT_SYMBOL_GPL
-0x7909a9d3 nf_conncount_init net/netfilter/nf_conncount EXPORT_SYMBOL_GPL
-0xf2a1dbb9 nf_conncount_cache_free net/netfilter/nf_conncount EXPORT_SYMBOL_GPL
-0x98daf083 nf_conncount_destroy net/netfilter/nf_conncount EXPORT_SYMBOL_GPL
-0x09c58ebc nf_fwd_netdev_egress net/netfilter/nf_dup_netdev EXPORT_SYMBOL_GPL
-0x4b980a97 nf_dup_netdev_egress net/netfilter/nf_dup_netdev EXPORT_SYMBOL_GPL
-0x8f93d4c2 nft_fwd_dup_netdev_offload net/netfilter/nf_dup_netdev EXPORT_SYMBOL_GPL
-0x979d23bf nft_do_chain net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x82103fa8 nft_reg_track_update net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x77b75b09 nft_reg_track_cancel net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x66da403b __nft_reg_track_cancel net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x9f5185d9 nft_request_module net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x86015c7c nft_register_chain_type net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x04612075 nft_unregister_chain_type net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xa3bacaeb nft_register_expr net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x3f2cadeb nft_unregister_expr net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x5d95f234 nft_chain_validate net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x2f652f51 nft_set_lookup_global net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x86571201 nf_tables_bind_set net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xae903515 nf_tables_activate_set net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x6bad3d2c nf_tables_deactivate_set net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xe3ff8fed nf_tables_destroy_set net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x090c94d4 nft_set_elem_destroy net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x10145b77 nft_set_catchall_lookup net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x432dc2fe nft_register_obj net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x82513a5e nft_unregister_obj net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x07884d9b nft_obj_lookup net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xed735951 nft_obj_notify net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xeaae6174 nft_register_flowtable_type net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x127bbe84 nft_unregister_flowtable_type net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xbbf16f4b nft_flowtable_lookup net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x06117fa9 nf_tables_deactivate_flowtable net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x3251d762 nf_tables_trans_destroy_flush_work net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xcb48c9fc nft_chain_validate_dependency net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xd373f116 nft_chain_validate_hooks net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xde57b5f5 nft_parse_u32_check net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x506635a0 nft_dump_register net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xe2b8cc13 nft_parse_register_load net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x770374a9 nft_parse_register_store net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x767f20e8 nft_data_init net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xf1606df5 nft_data_release net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xcc6ccc60 nft_data_dump net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x9ff05c6d __nft_release_basechain net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x41b71e65 nft_trace_enabled net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x211bb404 nft_expr_reduce_bitwise net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xa0e1d42f nft_set_do_lookup net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x9807b2d0 nft_meta_get_eval net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xf81528d8 nft_meta_set_eval net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x347641d9 nft_meta_policy net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xc147a0b1 nft_meta_get_init net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x68a0ef14 nft_meta_set_validate net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x38035256 nft_meta_set_init net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xdc77b7b8 nft_meta_get_dump net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x9ed58c1f nft_meta_set_dump net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x330b2046 nft_meta_set_destroy net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xdad2e9a2 nft_meta_get_reduce net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xbd6bf4e1 nft_meta_inner_eval net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0x52faae03 nft_ct_get_fast_eval net/netfilter/nf_tables EXPORT_SYMBOL_GPL
-0xf529ba91 nft_reject_policy net/netfilter/nft_reject EXPORT_SYMBOL_GPL
-0x2098f188 nft_reject_validate net/netfilter/nft_reject EXPORT_SYMBOL_GPL
-0x0f3f34a0 nft_reject_init net/netfilter/nft_reject EXPORT_SYMBOL_GPL
-0x17de8095 nft_reject_dump net/netfilter/nft_reject EXPORT_SYMBOL_GPL
-0xe2c84666 nft_reject_icmp_code net/netfilter/nft_reject EXPORT_SYMBOL_GPL
-0x1de558c1 nft_reject_icmpv6_code net/netfilter/nft_reject EXPORT_SYMBOL_GPL
-0xdb24146b nft_fib_policy net/netfilter/nft_fib EXPORT_SYMBOL
-0x3414c8b3 nft_fib_validate net/netfilter/nft_fib EXPORT_SYMBOL_GPL
-0x8e1a9618 nft_fib_init net/netfilter/nft_fib EXPORT_SYMBOL_GPL
-0xff6d1f48 nft_fib_dump net/netfilter/nft_fib EXPORT_SYMBOL_GPL
-0xefd39992 nft_fib_store_result net/netfilter/nft_fib EXPORT_SYMBOL_GPL
-0x647a9316 nft_fib_reduce net/netfilter/nft_fib EXPORT_SYMBOL_GPL
-0x9db8e9ff xt_rateest_lookup net/netfilter/xt_RATEEST EXPORT_SYMBOL_GPL
-0x196648f3 xt_rateest_put net/netfilter/xt_RATEEST EXPORT_SYMBOL_GPL
-0xceeb2523 ip_set_type_register net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x2a6ad7d8 ip_set_type_unregister net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xf3b4d4ae ip_set_alloc net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x397f6231 ip_set_free net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xa293f8a6 ip_set_get_ipaddr4 net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x9e98722b ip_set_get_ipaddr6 net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x5bf51735 ip_set_init_comment net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x9d600f2b ip_set_extensions net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x6756db22 ip_set_elem_len net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x1a42e49a ip_set_get_extensions net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x3f6a66ec ip_set_put_extensions net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x16791e7a ip_set_match_extensions net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x88084019 ip_set_test net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xfadf2fee ip_set_add net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x753b1569 ip_set_del net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xeddc116e ip_set_get_byname net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xc15dc32f ip_set_put_byindex net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xe656c37a ip_set_name_byindex net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x1e99f7f2 ip_set_nfnl_get_byindex net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x09083ba5 ip_set_nfnl_put net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xa0395318 ip_set_put_flags net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xbc0c9d2e ip_set_get_ip4_port net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xf962db20 ip_set_get_ip6_port net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x81fff2d1 ip_set_netmask_map net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x7924b6de ip_set_hostmask_map net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0x22d966c6 ip_set_range_to_cidr net/netfilter/ipset/ip_set EXPORT_SYMBOL_GPL
-0xe3a6783d ip_vs_conn_in_get_proto net/netfilter/ipvs/ip_vs EXPORT_SYMBOL_GPL
-0x921fedb5 ip_vs_conn_out_get_proto net/netfilter/ipvs/ip_vs EXPORT_SYMBOL_GPL
-0x36754594 register_ip_vs_scheduler net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0x2b8fee8b unregister_ip_vs_scheduler net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xd831a1a2 ip_vs_proto_name net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xc47d7731 ip_vs_conn_new net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xba7ae2d9 ip_vs_conn_in_get net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xdf13dc58 ip_vs_conn_out_get net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xe2345c04 ip_vs_tcp_conn_listen net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0x94cfd556 ip_vs_conn_put net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0x9c8da7be ip_vs_new_conn_out net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xc9f15cc7 ip_vs_scheduler_err net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xcca7adec register_ip_vs_app net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0x67148318 unregister_ip_vs_app net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xcc3925b9 register_ip_vs_app_inc net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xb3b09412 ip_vs_proto_get net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0x40348b44 ip_vs_proto_data_get net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0x754527f7 register_ip_vs_pe net/netfilter/ipvs/ip_vs EXPORT_SYMBOL_GPL
-0xba429286 unregister_ip_vs_pe net/netfilter/ipvs/ip_vs EXPORT_SYMBOL_GPL
-0x26e532e4 ip_vs_nfct_expect_related net/netfilter/ipvs/ip_vs EXPORT_SYMBOL
-0xe2383b4c nf_defrag_ipv4_enable net/ipv4/netfilter/nf_defrag_ipv4 EXPORT_SYMBOL_GPL
-0xa1b5850b nf_defrag_ipv4_disable net/ipv4/netfilter/nf_defrag_ipv4 EXPORT_SYMBOL_GPL
-0xdf9d43d1 nf_sk_lookup_slow_v4 net/ipv4/netfilter/nf_socket_ipv4 EXPORT_SYMBOL_GPL
-0xfcadf444 nf_tproxy_handle_time_wait4 net/ipv4/netfilter/nf_tproxy_ipv4 EXPORT_SYMBOL_GPL
-0xd5e006c6 nf_tproxy_laddr4 net/ipv4/netfilter/nf_tproxy_ipv4 EXPORT_SYMBOL_GPL
-0x9e57330a nf_tproxy_get_sock_v4 net/ipv4/netfilter/nf_tproxy_ipv4 EXPORT_SYMBOL_GPL
-0xc7ecf116 nf_reject_skb_v4_tcp_reset net/ipv4/netfilter/nf_reject_ipv4 EXPORT_SYMBOL_GPL
-0x1a26ac23 nf_reject_skb_v4_unreach net/ipv4/netfilter/nf_reject_ipv4 EXPORT_SYMBOL_GPL
-0x5c44158f nf_reject_ip_tcphdr_get net/ipv4/netfilter/nf_reject_ipv4 EXPORT_SYMBOL_GPL
-0x1c451b32 nf_reject_iphdr_put net/ipv4/netfilter/nf_reject_ipv4 EXPORT_SYMBOL_GPL
-0x2b7fae14 nf_reject_ip_tcphdr_put net/ipv4/netfilter/nf_reject_ipv4 EXPORT_SYMBOL_GPL
-0x6fe6c109 nf_send_reset net/ipv4/netfilter/nf_reject_ipv4 EXPORT_SYMBOL_GPL
-0xc918d459 nf_send_unreach net/ipv4/netfilter/nf_reject_ipv4 EXPORT_SYMBOL_GPL
-0x61a1b790 nft_fib4_eval_type net/ipv4/netfilter/nft_fib_ipv4 EXPORT_SYMBOL_GPL
-0x8d40add3 nft_fib4_eval net/ipv4/netfilter/nft_fib_ipv4 EXPORT_SYMBOL_GPL
-0x9dce87ff ipt_alloc_initial_table net/ipv4/netfilter/ip_tables EXPORT_SYMBOL_GPL
-0x4b8a0a43 ipt_register_table net/ipv4/netfilter/ip_tables EXPORT_SYMBOL
-0xd106de8d ipt_unregister_table_pre_exit net/ipv4/netfilter/ip_tables EXPORT_SYMBOL
-0x3ce5c635 ipt_unregister_table_exit net/ipv4/netfilter/ip_tables EXPORT_SYMBOL
-0xece9754a ipt_do_table net/ipv4/netfilter/ip_tables EXPORT_SYMBOL
-0x195dd94b arpt_alloc_initial_table net/ipv4/netfilter/arp_tables EXPORT_SYMBOL_GPL
-0x6e9035aa arpt_unregister_table_pre_exit net/ipv4/netfilter/arp_tables EXPORT_SYMBOL
-0x08c71d25 arpt_register_table net/ipv4/netfilter/arp_tables EXPORT_SYMBOL
-0x524bb130 arpt_unregister_table net/ipv4/netfilter/arp_tables EXPORT_SYMBOL
-0x76816523 arpt_do_table net/ipv4/netfilter/arp_tables EXPORT_SYMBOL
-0xdd1f0e57 nf_dup_ipv4 net/ipv4/netfilter/nf_dup_ipv4 EXPORT_SYMBOL_GPL
-0x65df4052 ip_tunnel_lookup net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x67ccb20d ip_tunnel_md_udp_encap net/ipv4/ip_tunnel EXPORT_SYMBOL
-0xb01b9137 ip_tunnel_rcv net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x3cfa7025 ip_tunnel_encap_add_ops net/ipv4/ip_tunnel EXPORT_SYMBOL
-0x15d04db1 ip_tunnel_encap_del_ops net/ipv4/ip_tunnel EXPORT_SYMBOL
-0x91124bfd ip_tunnel_encap_setup net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0xc5351697 ip_md_tunnel_xmit net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x5e25f4ae ip_tunnel_xmit net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x26dfdd57 ip_tunnel_ctl net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x3643e5c4 ip_tunnel_siocdevprivate net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x9bf750ac __ip_tunnel_change_mtu net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x87c4441d ip_tunnel_change_mtu net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0xb64805ce ip_tunnel_dellink net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0xbf973e2b ip_tunnel_get_link_net net/ipv4/ip_tunnel EXPORT_SYMBOL
-0xa26f1682 ip_tunnel_get_iflink net/ipv4/ip_tunnel EXPORT_SYMBOL
-0x4a0861bd ip_tunnel_init_net net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x93af09b1 ip_tunnel_delete_nets net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0xf76ba76e ip_tunnel_newlink net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x9f94d51f ip_tunnel_changelink net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0xac4a66b8 ip_tunnel_init net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x0f701ab4 ip_tunnel_uninit net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0x5e294622 ip_tunnel_setup net/ipv4/ip_tunnel EXPORT_SYMBOL_GPL
-0xfead719e gre_add_protocol net/ipv4/gre EXPORT_SYMBOL_GPL
-0x962bcc82 gre_del_protocol net/ipv4/gre EXPORT_SYMBOL_GPL
-0xcff532eb gre_parse_header net/ipv4/gre EXPORT_SYMBOL
-0xee019eef gretap_fb_dev_create net/ipv4/ip_gre EXPORT_SYMBOL_GPL
-0x948e80fa udp_sock_create4 net/ipv4/udp_tunnel EXPORT_SYMBOL
-0xfe9fd40c setup_udp_tunnel_sock net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0x7dd5959d udp_tunnel_push_rx_port net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0xb8e81c93 udp_tunnel_drop_rx_port net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0xf1cbc15c udp_tunnel_notify_add_rx_port net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0x4489e3ea udp_tunnel_notify_del_rx_port net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0x09d9d37a udp_tunnel_xmit_skb net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0x17928da5 udp_tunnel_sock_release net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0xd400dc2c udp_tun_rx_dst net/ipv4/udp_tunnel EXPORT_SYMBOL_GPL
-0xb653bc59 esp_output_head net/ipv4/esp4 EXPORT_SYMBOL_GPL
-0xe9803f2d esp_output_tail net/ipv4/esp4 EXPORT_SYMBOL_GPL
-0x1bbe5ff9 esp_input_done2 net/ipv4/esp4 EXPORT_SYMBOL_GPL
-0x82e8af92 xfrm4_tunnel_register net/ipv4/tunnel4 EXPORT_SYMBOL
-0x2a5a69c6 xfrm4_tunnel_deregister net/ipv4/tunnel4 EXPORT_SYMBOL
-0x0da6ac19 inet_diag_msg_common_fill net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0x86cad640 inet_diag_msg_attrs_fill net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0x8717f711 inet_sk_diag_fill net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0x6926a25e inet_diag_find_one_icsk net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0x799e91cf inet_diag_dump_one_icsk net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0xb41f024f inet_diag_bc_sk net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0xacab4ec7 inet_diag_dump_icsk net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0xccfd86a9 inet_diag_register net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0xc5d727a1 inet_diag_unregister net/ipv4/inet_diag EXPORT_SYMBOL_GPL
-0x22d052da tcp_vegas_init net/ipv4/tcp_vegas EXPORT_SYMBOL_GPL
-0x4d67fd44 tcp_vegas_pkts_acked net/ipv4/tcp_vegas EXPORT_SYMBOL_GPL
-0xbe559ac5 tcp_vegas_state net/ipv4/tcp_vegas EXPORT_SYMBOL_GPL
-0x2e837e34 tcp_vegas_cwnd_event net/ipv4/tcp_vegas EXPORT_SYMBOL_GPL
-0x9cea07d8 tcp_vegas_get_info net/ipv4/tcp_vegas EXPORT_SYMBOL_GPL
-0x786c537f ipcomp_input net/xfrm/xfrm_ipcomp EXPORT_SYMBOL_GPL
-0x5843880c ipcomp_output net/xfrm/xfrm_ipcomp EXPORT_SYMBOL_GPL
-0xc7495185 ipcomp_destroy net/xfrm/xfrm_ipcomp EXPORT_SYMBOL_GPL
-0x4ddc4837 ipcomp_init_state net/xfrm/xfrm_ipcomp EXPORT_SYMBOL_GPL
-0xebcd0187 ip6t_alloc_initial_table net/ipv6/netfilter/ip6_tables EXPORT_SYMBOL_GPL
-0x7e3e4803 ip6t_register_table net/ipv6/netfilter/ip6_tables EXPORT_SYMBOL
-0x94986e17 ip6t_unregister_table_pre_exit net/ipv6/netfilter/ip6_tables EXPORT_SYMBOL
-0xba663989 ip6t_unregister_table_exit net/ipv6/netfilter/ip6_tables EXPORT_SYMBOL
-0x6673378e ip6t_do_table net/ipv6/netfilter/ip6_tables EXPORT_SYMBOL
-0x46ea7429 nf_defrag_ipv6_enable net/ipv6/netfilter/nf_defrag_ipv6 EXPORT_SYMBOL_GPL
-0xabc1a348 nf_defrag_ipv6_disable net/ipv6/netfilter/nf_defrag_ipv6 EXPORT_SYMBOL_GPL
-0xe51deaad nf_ct_frag6_gather net/ipv6/netfilter/nf_defrag_ipv6 EXPORT_SYMBOL_GPL
-0x58fae2b8 nf_sk_lookup_slow_v6 net/ipv6/netfilter/nf_socket_ipv6 EXPORT_SYMBOL_GPL
-0xbd687900 nf_tproxy_laddr6 net/ipv6/netfilter/nf_tproxy_ipv6 EXPORT_SYMBOL_GPL
-0x3ad8c9d4 nf_tproxy_handle_time_wait6 net/ipv6/netfilter/nf_tproxy_ipv6 EXPORT_SYMBOL_GPL
-0x3939f9fd nf_tproxy_get_sock_v6 net/ipv6/netfilter/nf_tproxy_ipv6 EXPORT_SYMBOL_GPL
-0x814eac79 nf_reject_skb_v6_tcp_reset net/ipv6/netfilter/nf_reject_ipv6 EXPORT_SYMBOL_GPL
-0x6e60c1a5 nf_reject_skb_v6_unreach net/ipv6/netfilter/nf_reject_ipv6 EXPORT_SYMBOL_GPL
-0x513fa5fc nf_reject_ip6_tcphdr_get net/ipv6/netfilter/nf_reject_ipv6 EXPORT_SYMBOL_GPL
-0x286d9f47 nf_reject_ip6hdr_put net/ipv6/netfilter/nf_reject_ipv6 EXPORT_SYMBOL_GPL
-0x831e88ca nf_reject_ip6_tcphdr_put net/ipv6/netfilter/nf_reject_ipv6 EXPORT_SYMBOL_GPL
-0x3b3dfdfd nf_send_reset6 net/ipv6/netfilter/nf_reject_ipv6 EXPORT_SYMBOL_GPL
-0x1e4cd316 nf_send_unreach6 net/ipv6/netfilter/nf_reject_ipv6 EXPORT_SYMBOL_GPL
-0xe1bc8f91 nf_dup_ipv6 net/ipv6/netfilter/nf_dup_ipv6 EXPORT_SYMBOL_GPL
-0x0c62b555 nft_fib6_eval_type net/ipv6/netfilter/nft_fib_ipv6 EXPORT_SYMBOL_GPL
-0xf1d3bafb nft_fib6_eval net/ipv6/netfilter/nft_fib_ipv6 EXPORT_SYMBOL_GPL
-0x9b35cc88 esp6_output_head net/ipv6/esp6 EXPORT_SYMBOL_GPL
-0x1889095e esp6_output_tail net/ipv6/esp6 EXPORT_SYMBOL_GPL
-0x7d2e5100 esp6_input_done2 net/ipv6/esp6 EXPORT_SYMBOL_GPL
-0x87237485 xfrm6_tunnel_spi_lookup net/ipv6/xfrm6_tunnel EXPORT_SYMBOL
-0x8e25379e xfrm6_tunnel_alloc_spi net/ipv6/xfrm6_tunnel EXPORT_SYMBOL
-0x5b452da0 xfrm6_tunnel_register net/ipv6/tunnel6 EXPORT_SYMBOL
-0xc3838c30 xfrm6_tunnel_deregister net/ipv6/tunnel6 EXPORT_SYMBOL
-0xd1965030 ip6_tnl_parse_tlv_enc_lim net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0x68302b64 ip6_tnl_get_cap net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0xcd573603 ip6_tnl_rcv_ctl net/ipv6/ip6_tunnel EXPORT_SYMBOL_GPL
-0x8fa204b9 ip6_tnl_rcv net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0x2d83b474 ip6_tnl_xmit_ctl net/ipv6/ip6_tunnel EXPORT_SYMBOL_GPL
-0x2eb27fa0 ip6_tnl_xmit net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0x1958be06 ip6_tnl_change_mtu net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0xd05a1197 ip6_tnl_get_iflink net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0x7801eb91 ip6_tnl_encap_add_ops net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0x639f3ce9 ip6_tnl_encap_del_ops net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0x72dd56da ip6_tnl_encap_setup net/ipv6/ip6_tunnel EXPORT_SYMBOL_GPL
-0xb3750948 ip6_tnl_get_link_net net/ipv6/ip6_tunnel EXPORT_SYMBOL
-0x8da0ff75 udp_sock_create6 net/ipv6/ip6_udp_tunnel EXPORT_SYMBOL_GPL
-0x35bcb46d udp_tunnel6_xmit_skb net/ipv6/ip6_udp_tunnel EXPORT_SYMBOL_GPL
-0xc1fcb43b cfg80211_shutdown_all_interfaces net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0x8eeff2d6 wiphy_new_nm net/wireless/cfg80211 EXPORT_SYMBOL
-0x8770c394 wiphy_register net/wireless/cfg80211 EXPORT_SYMBOL
-0xe5bef121 wiphy_rfkill_start_polling net/wireless/cfg80211 EXPORT_SYMBOL
-0x359c79c8 wiphy_unregister net/wireless/cfg80211 EXPORT_SYMBOL
-0x5f9c804e wiphy_free net/wireless/cfg80211 EXPORT_SYMBOL
-0x4065ea89 wiphy_rfkill_set_hw_state_reason net/wireless/cfg80211 EXPORT_SYMBOL
-0x6f841784 cfg80211_unregister_wdev net/wireless/cfg80211 EXPORT_SYMBOL
-0xa4ba4dd1 cfg80211_stop_iface net/wireless/cfg80211 EXPORT_SYMBOL
-0xb0bddd6a cfg80211_register_netdevice net/wireless/cfg80211 EXPORT_SYMBOL
-0xa1168673 wiphy_work_queue net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0xd2aa055c wiphy_work_cancel net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0x7197b6fa wiphy_work_flush net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0xba27727b wiphy_delayed_work_timer net/wireless/cfg80211 EXPORT_SYMBOL
-0x534c3848 wiphy_delayed_work_queue net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0x587370ed wiphy_delayed_work_cancel net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0x66a906dc wiphy_delayed_work_flush net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0x43afadee ieee80211_radiotap_iterator_init net/wireless/cfg80211 EXPORT_SYMBOL
-0x7acb86ed ieee80211_radiotap_iterator_next net/wireless/cfg80211 EXPORT_SYMBOL
-0xc3fb97ca ieee80211_get_response_rate net/wireless/cfg80211 EXPORT_SYMBOL
-0x4abed7d4 ieee80211_mandatory_rates net/wireless/cfg80211 EXPORT_SYMBOL
-0x5584448a ieee80211_channel_to_freq_khz net/wireless/cfg80211 EXPORT_SYMBOL
-0x0cc95bc2 ieee80211_s1g_channel_width net/wireless/cfg80211 EXPORT_SYMBOL
-0x6bedf402 ieee80211_freq_khz_to_channel net/wireless/cfg80211 EXPORT_SYMBOL
-0xc4f361e5 ieee80211_get_channel_khz net/wireless/cfg80211 EXPORT_SYMBOL
-0x7ef39823 ieee80211_hdrlen net/wireless/cfg80211 EXPORT_SYMBOL
-0x1cf84ae2 ieee80211_get_hdrlen_from_skb net/wireless/cfg80211 EXPORT_SYMBOL
-0xd56d55f3 ieee80211_get_mesh_hdrlen net/wireless/cfg80211 EXPORT_SYMBOL
-0x13c58e52 ieee80211_get_8023_tunnel_proto net/wireless/cfg80211 EXPORT_SYMBOL
-0xb8729a28 ieee80211_strip_8023_mesh_hdr net/wireless/cfg80211 EXPORT_SYMBOL
-0xe037e168 ieee80211_data_to_8023_exthdr net/wireless/cfg80211 EXPORT_SYMBOL
-0x12b3ae82 ieee80211_is_valid_amsdu net/wireless/cfg80211 EXPORT_SYMBOL
-0x17dea222 ieee80211_amsdu_to_8023s net/wireless/cfg80211 EXPORT_SYMBOL
-0x1a923cfb cfg80211_classify8021d net/wireless/cfg80211 EXPORT_SYMBOL
-0x429c0c31 ieee80211_bss_get_elem net/wireless/cfg80211 EXPORT_SYMBOL
-0x3c744e95 cfg80211_calculate_bitrate net/wireless/cfg80211 EXPORT_SYMBOL
-0xf5596d89 cfg80211_get_p2p_attr net/wireless/cfg80211 EXPORT_SYMBOL
-0x275269b3 ieee80211_ie_split_ric net/wireless/cfg80211 EXPORT_SYMBOL
-0xf40bc2f5 ieee80211_operating_class_to_band net/wireless/cfg80211 EXPORT_SYMBOL
-0x3643b80f ieee80211_chandef_to_operating_class net/wireless/cfg80211 EXPORT_SYMBOL
-0xe8245f60 cfg80211_iter_combinations net/wireless/cfg80211 EXPORT_SYMBOL
-0xd6fa4928 cfg80211_check_combinations net/wireless/cfg80211 EXPORT_SYMBOL
-0x20ea5ec2 ieee80211_get_num_supported_channels net/wireless/cfg80211 EXPORT_SYMBOL
-0xcf1cfc74 cfg80211_get_station net/wireless/cfg80211 EXPORT_SYMBOL
-0x8fa02936 cfg80211_free_nan_func net/wireless/cfg80211 EXPORT_SYMBOL
-0x3c86019a cfg80211_sinfo_alloc_tid_stats net/wireless/cfg80211 EXPORT_SYMBOL
-0x69b18f43 rfc1042_header net/wireless/cfg80211 EXPORT_SYMBOL
-0x1879fcbd bridge_tunnel_header net/wireless/cfg80211 EXPORT_SYMBOL
-0x53c7d449 cfg80211_send_layer2_update net/wireless/cfg80211 EXPORT_SYMBOL
-0x7c3ac925 ieee80211_get_vht_max_nss net/wireless/cfg80211 EXPORT_SYMBOL
-0x149018e2 cfg80211_iftype_allowed net/wireless/cfg80211 EXPORT_SYMBOL
-0xd9acef35 cfg80211_get_iftype_ext_capa net/wireless/cfg80211 EXPORT_SYMBOL
-0x0ad72b82 get_wiphy_regdom net/wireless/cfg80211 EXPORT_SYMBOL
-0x1ce2497f reg_query_regdb_wmm net/wireless/cfg80211 EXPORT_SYMBOL
-0x3d7225d0 freq_reg_info net/wireless/cfg80211 EXPORT_SYMBOL
-0xdba126c1 reg_initiator_name net/wireless/cfg80211 EXPORT_SYMBOL
-0xa5ecccb2 wiphy_apply_custom_regulatory net/wireless/cfg80211 EXPORT_SYMBOL
-0x76b46266 regulatory_hint net/wireless/cfg80211 EXPORT_SYMBOL
-0x00e6ccf3 regulatory_set_wiphy_regd net/wireless/cfg80211 EXPORT_SYMBOL
-0x2f703ca2 regulatory_set_wiphy_regd_sync net/wireless/cfg80211 EXPORT_SYMBOL
-0xbebb7943 regulatory_pre_cac_allowed net/wireless/cfg80211 EXPORT_SYMBOL
-0xcc1a7c48 cfg80211_is_element_inherited net/wireless/cfg80211 EXPORT_SYMBOL
-0xf0c4a993 cfg80211_scan_done net/wireless/cfg80211 EXPORT_SYMBOL
-0x83ef4ed6 cfg80211_sched_scan_results net/wireless/cfg80211 EXPORT_SYMBOL
-0x0d0b532d cfg80211_sched_scan_stopped_locked net/wireless/cfg80211 EXPORT_SYMBOL
-0x2ef99704 cfg80211_sched_scan_stopped net/wireless/cfg80211 EXPORT_SYMBOL
-0xc0359b11 cfg80211_bss_flush net/wireless/cfg80211 EXPORT_SYMBOL
-0x9d6cba30 cfg80211_find_elem_match net/wireless/cfg80211 EXPORT_SYMBOL
-0x79b82a71 cfg80211_find_vendor_elem net/wireless/cfg80211 EXPORT_SYMBOL
-0xe217d04c cfg80211_get_bss net/wireless/cfg80211 EXPORT_SYMBOL
-0x3aca71a1 cfg80211_get_ies_channel_number net/wireless/cfg80211 EXPORT_SYMBOL
-0x117aca91 cfg80211_merge_profile net/wireless/cfg80211 EXPORT_SYMBOL
-0xd6c87a05 cfg80211_defragment_element net/wireless/cfg80211 EXPORT_SYMBOL
-0xde0bc6bf cfg80211_inform_bss_data net/wireless/cfg80211 EXPORT_SYMBOL
-0x0a942043 cfg80211_inform_bss_frame_data net/wireless/cfg80211 EXPORT_SYMBOL
-0xefdc2476 cfg80211_ref_bss net/wireless/cfg80211 EXPORT_SYMBOL
-0x0b1f4f2b cfg80211_put_bss net/wireless/cfg80211 EXPORT_SYMBOL
-0x88112130 cfg80211_unlink_bss net/wireless/cfg80211 EXPORT_SYMBOL
-0x4e37e744 cfg80211_bss_iter net/wireless/cfg80211 EXPORT_SYMBOL
-0x1cca9c33 nl80211_send_chandef net/wireless/cfg80211 EXPORT_SYMBOL
-0x79457a5a cfg80211_check_station_change net/wireless/cfg80211 EXPORT_SYMBOL
-0xdb2cba16 __cfg80211_alloc_event_skb net/wireless/cfg80211 EXPORT_SYMBOL
-0xafee228c __cfg80211_send_event_skb net/wireless/cfg80211 EXPORT_SYMBOL
-0x7e607fed cfg80211_nan_match net/wireless/cfg80211 EXPORT_SYMBOL
-0x969d8c15 cfg80211_nan_func_terminated net/wireless/cfg80211 EXPORT_SYMBOL
-0x453d0d8d __cfg80211_alloc_reply_skb net/wireless/cfg80211 EXPORT_SYMBOL
-0x775dac65 cfg80211_vendor_cmd_reply net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0x211be8c2 cfg80211_vendor_cmd_get_sender net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0xa0fac042 cfg80211_rx_unprot_mlme_mgmt net/wireless/cfg80211 EXPORT_SYMBOL
-0x3a9acfbd cfg80211_links_removed net/wireless/cfg80211 EXPORT_SYMBOL
-0xf83c3973 cfg80211_notify_new_peer_candidate net/wireless/cfg80211 EXPORT_SYMBOL
-0x89165504 cfg80211_assoc_comeback net/wireless/cfg80211 EXPORT_SYMBOL
-0x5001950d cfg80211_ready_on_channel net/wireless/cfg80211 EXPORT_SYMBOL
-0x0ed326d8 cfg80211_remain_on_channel_expired net/wireless/cfg80211 EXPORT_SYMBOL
-0xe8e67c4d cfg80211_tx_mgmt_expired net/wireless/cfg80211 EXPORT_SYMBOL
-0xabc81b22 cfg80211_new_sta net/wireless/cfg80211 EXPORT_SYMBOL
-0x3fe5ccdf cfg80211_del_sta_sinfo net/wireless/cfg80211 EXPORT_SYMBOL
-0x6b570eb4 cfg80211_conn_failed net/wireless/cfg80211 EXPORT_SYMBOL
-0x6cfcc4f9 cfg80211_rx_spurious_frame net/wireless/cfg80211 EXPORT_SYMBOL
-0xaa8fbcb1 cfg80211_rx_unexpected_4addr_frame net/wireless/cfg80211 EXPORT_SYMBOL
-0x63400c60 cfg80211_control_port_tx_status net/wireless/cfg80211 EXPORT_SYMBOL
-0x1068d79a cfg80211_mgmt_tx_status_ext net/wireless/cfg80211 EXPORT_SYMBOL
-0x80f12187 cfg80211_rx_control_port net/wireless/cfg80211 EXPORT_SYMBOL
-0xabc932c4 cfg80211_cqm_rssi_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0xf8ea8ac0 cfg80211_cqm_txe_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0x9595dabc cfg80211_cqm_pktloss_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0xfdd4276f cfg80211_cqm_beacon_loss_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0x292e57b7 cfg80211_gtk_rekey_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0x70748826 cfg80211_pmksa_candidate_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0x5683870f cfg80211_ch_switch_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0xf135aff8 cfg80211_ch_switch_started_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0x23964be3 cfg80211_bss_color_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0xbc5074cb cfg80211_sta_opmode_change_notify net/wireless/cfg80211 EXPORT_SYMBOL
-0x904fa113 cfg80211_probe_status net/wireless/cfg80211 EXPORT_SYMBOL
-0x896c881d cfg80211_report_obss_beacon_khz net/wireless/cfg80211 EXPORT_SYMBOL
-0x40da0ec7 cfg80211_report_wowlan_wakeup net/wireless/cfg80211 EXPORT_SYMBOL
-0xf3d7b07d cfg80211_tdls_oper_request net/wireless/cfg80211 EXPORT_SYMBOL
-0x12319048 cfg80211_ft_event net/wireless/cfg80211 EXPORT_SYMBOL
-0x2b394589 cfg80211_crit_proto_stopped net/wireless/cfg80211 EXPORT_SYMBOL
-0x5f1d620c cfg80211_external_auth_request net/wireless/cfg80211 EXPORT_SYMBOL
-0x4fb4b875 cfg80211_update_owe_info_event net/wireless/cfg80211 EXPORT_SYMBOL
-0x93ff089b cfg80211_rx_assoc_resp net/wireless/cfg80211 EXPORT_SYMBOL
-0x146667ed cfg80211_rx_mlme_mgmt net/wireless/cfg80211 EXPORT_SYMBOL
-0x3f986d37 cfg80211_auth_timeout net/wireless/cfg80211 EXPORT_SYMBOL
-0x80ae11df cfg80211_assoc_failure net/wireless/cfg80211 EXPORT_SYMBOL
-0x86c24034 cfg80211_tx_mlme_mgmt net/wireless/cfg80211 EXPORT_SYMBOL
-0x1281d3bb cfg80211_michael_mic_failure net/wireless/cfg80211 EXPORT_SYMBOL
-0xcdf9ac09 cfg80211_rx_mgmt_ext net/wireless/cfg80211 EXPORT_SYMBOL
-0xe0f168f4 __cfg80211_radar_event net/wireless/cfg80211 EXPORT_SYMBOL
-0xfb15bcd1 cfg80211_cac_event net/wireless/cfg80211 EXPORT_SYMBOL
-0xf27e6531 cfg80211_background_cac_abort net/wireless/cfg80211 EXPORT_SYMBOL
-0x4b60bddb cfg80211_ibss_joined net/wireless/cfg80211 EXPORT_SYMBOL
-0x9276c3cc cfg80211_connect_done net/wireless/cfg80211 EXPORT_SYMBOL
-0x844bf8cd cfg80211_roamed net/wireless/cfg80211 EXPORT_SYMBOL
-0x3358a203 cfg80211_port_authorized net/wireless/cfg80211 EXPORT_SYMBOL
-0x550f10e9 cfg80211_disconnected net/wireless/cfg80211 EXPORT_SYMBOL
-0x06ca71fd cfg80211_chandef_create net/wireless/cfg80211 EXPORT_SYMBOL
-0xc4b4fc27 cfg80211_chandef_valid net/wireless/cfg80211 EXPORT_SYMBOL
-0xd97eaad4 cfg80211_chandef_compatible net/wireless/cfg80211 EXPORT_SYMBOL
-0xf620e2d6 cfg80211_chandef_dfs_required net/wireless/cfg80211 EXPORT_SYMBOL
-0xafe45e9a cfg80211_chandef_usable net/wireless/cfg80211 EXPORT_SYMBOL
-0x4af13d7d cfg80211_reg_can_beacon net/wireless/cfg80211 EXPORT_SYMBOL
-0xbc159f84 cfg80211_reg_can_beacon_relax net/wireless/cfg80211 EXPORT_SYMBOL
-0xf735d959 cfg80211_any_usable_channels net/wireless/cfg80211 EXPORT_SYMBOL
-0xd3584b2e wdev_chandef net/wireless/cfg80211 EXPORT_SYMBOL
-0x1b82a85a cfg80211_valid_disable_subchannel_bitmap net/wireless/cfg80211 EXPORT_SYMBOL
-0xec3c76b5 cfg80211_get_drvinfo net/wireless/cfg80211 EXPORT_SYMBOL
-0x691188f3 cfg80211_pmsr_complete net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0xb4bd50cc cfg80211_pmsr_report net/wireless/cfg80211 EXPORT_SYMBOL_GPL
-0xead81b93 mpls_output_possible net/mpls/mpls_router EXPORT_SYMBOL_GPL
-0x27b3cd3d mpls_dev_mtu net/mpls/mpls_router EXPORT_SYMBOL_GPL
-0x21a7916c mpls_pkt_too_big net/mpls/mpls_router EXPORT_SYMBOL_GPL
-0xb75cb071 mpls_stats_inc_outucastpkts net/mpls/mpls_router EXPORT_SYMBOL_GPL
-0x25b75f75 nla_put_labels net/mpls/mpls_router EXPORT_SYMBOL_GPL
-0x9a708234 nla_get_labels net/mpls/mpls_router EXPORT_SYMBOL_GPL
-0x52d7b2fd llc_sap_list net/llc/llc EXPORT_SYMBOL
-0x4eedf1a3 llc_sap_find net/llc/llc EXPORT_SYMBOL
-0xd0eb4782 llc_sap_open net/llc/llc EXPORT_SYMBOL
-0x6643cde7 llc_sap_close net/llc/llc EXPORT_SYMBOL
-0x34e3ee20 llc_add_pack net/llc/llc EXPORT_SYMBOL
-0x38b92846 llc_remove_pack net/llc/llc EXPORT_SYMBOL
-0x90195334 llc_set_station_handler net/llc/llc EXPORT_SYMBOL
-0xd5565a5e llc_mac_hdr_init net/llc/llc EXPORT_SYMBOL
-0x16eec9f1 llc_build_and_send_ui_pkt net/llc/llc EXPORT_SYMBOL
-0xdf37eee3 tls_device_sk_destruct net/tls/tls EXPORT_SYMBOL_GPL
-0xe33df9fc tls_offload_tx_resync_request net/tls/tls EXPORT_SYMBOL_GPL
-0x1053012a tls_get_record net/tls/tls EXPORT_SYMBOL
-0x7af4ce13 tls_validate_xmit_skb net/tls/tls EXPORT_SYMBOL_GPL
-0xa03db7e1 tls_encrypt_skb net/tls/tls EXPORT_SYMBOL_GPL
-0xd8f8bf97 ebt_register_template net/bridge/netfilter/ebtables EXPORT_SYMBOL
-0x1a06acd4 ebt_unregister_template net/bridge/netfilter/ebtables EXPORT_SYMBOL
-0xd7dbae5c ebt_unregister_table_pre_exit net/bridge/netfilter/ebtables EXPORT_SYMBOL
-0xe2080518 ebt_register_table net/bridge/netfilter/ebtables EXPORT_SYMBOL
-0xa2be3829 ebt_unregister_table net/bridge/netfilter/ebtables EXPORT_SYMBOL
-0xcdc8099a ebt_do_table net/bridge/netfilter/ebtables EXPORT_SYMBOL
-0x0f43fad1 nf_br_ops net/bridge/bridge EXPORT_SYMBOL_GPL
-0xe122eb3f br_fdb_find_port net/bridge/bridge EXPORT_SYMBOL_GPL
-0x974ceb15 br_fdb_clear_offload net/bridge/bridge EXPORT_SYMBOL_GPL
-0x9bd1864f br_dev_queue_push_xmit net/bridge/bridge EXPORT_SYMBOL_GPL
-0xf4245ffa br_forward_finish net/bridge/bridge EXPORT_SYMBOL_GPL
-0xac28a5b6 br_forward net/bridge/bridge EXPORT_SYMBOL_GPL
-0xd3a772f9 br_port_flag_is_set net/bridge/bridge EXPORT_SYMBOL_GPL
-0xb252842d br_handle_frame_finish net/bridge/bridge EXPORT_SYMBOL_GPL
-0x8528151a br_port_get_stp_state net/bridge/bridge EXPORT_SYMBOL_GPL
-0x364c93d6 br_get_ageing_time net/bridge/bridge EXPORT_SYMBOL_GPL
-0xe6a31f98 br_multicast_enabled net/bridge/bridge EXPORT_SYMBOL_GPL
-0xbfe2406e br_multicast_router net/bridge/bridge EXPORT_SYMBOL_GPL
-0x64cc930b br_multicast_list_adjacent net/bridge/bridge EXPORT_SYMBOL_GPL
-0xc564ae68 br_multicast_has_querier_anywhere net/bridge/bridge EXPORT_SYMBOL_GPL
-0x753daa27 br_multicast_has_querier_adjacent net/bridge/bridge EXPORT_SYMBOL_GPL
-0xddae8fbd br_multicast_has_router_adjacent net/bridge/bridge EXPORT_SYMBOL_GPL
-0x132ab476 br_vlan_enabled net/bridge/bridge EXPORT_SYMBOL_GPL
-0x76767637 br_vlan_get_proto net/bridge/bridge EXPORT_SYMBOL_GPL
-0x3aae707c br_vlan_get_pvid net/bridge/bridge EXPORT_SYMBOL_GPL
-0x2c193ca9 br_vlan_get_pvid_rcu net/bridge/bridge EXPORT_SYMBOL_GPL
-0x2b042a3d br_vlan_get_info net/bridge/bridge EXPORT_SYMBOL_GPL
-0x30647f4e br_vlan_get_info_rcu net/bridge/bridge EXPORT_SYMBOL_GPL
-0xb9bc3ebd br_mst_enabled net/bridge/bridge EXPORT_SYMBOL_GPL
-0x2cb59bd6 br_mst_get_info net/bridge/bridge EXPORT_SYMBOL_GPL
-0xf567031f br_mst_get_state net/bridge/bridge EXPORT_SYMBOL_GPL
-0x6d1b1c39 can_sock_destruct net/can/can EXPORT_SYMBOL
-0x3f48b3be can_send net/can/can EXPORT_SYMBOL
-0x13d60226 can_rx_register net/can/can EXPORT_SYMBOL
-0x9c56e47a can_rx_unregister net/can/can EXPORT_SYMBOL
-0x22765674 can_proto_register net/can/can EXPORT_SYMBOL
-0xebf360d2 can_proto_unregister net/can/can EXPORT_SYMBOL
-0xaac8142d bt_sock_reclassify_lock net/bluetooth/bluetooth EXPORT_SYMBOL
-0x489b6be8 bt_sock_register net/bluetooth/bluetooth EXPORT_SYMBOL
-0x8fea24bd bt_sock_unregister net/bluetooth/bluetooth EXPORT_SYMBOL
-0x92086b26 bt_sock_alloc net/bluetooth/bluetooth EXPORT_SYMBOL
-0x165e4771 bt_sock_link net/bluetooth/bluetooth EXPORT_SYMBOL
-0x8c78852e bt_sock_unlink net/bluetooth/bluetooth EXPORT_SYMBOL
-0x61ec4ab8 bt_accept_enqueue net/bluetooth/bluetooth EXPORT_SYMBOL
-0xcef221f2 bt_accept_unlink net/bluetooth/bluetooth EXPORT_SYMBOL
-0x41a02573 bt_accept_dequeue net/bluetooth/bluetooth EXPORT_SYMBOL
-0xe4e0195c bt_sock_recvmsg net/bluetooth/bluetooth EXPORT_SYMBOL
-0x4b1d1594 bt_sock_stream_recvmsg net/bluetooth/bluetooth EXPORT_SYMBOL
-0xdba61f8e bt_sock_poll net/bluetooth/bluetooth EXPORT_SYMBOL
-0xc0226a7c bt_sock_ioctl net/bluetooth/bluetooth EXPORT_SYMBOL
-0x738276bc bt_sock_wait_state net/bluetooth/bluetooth EXPORT_SYMBOL
-0x6abd43ad bt_sock_wait_ready net/bluetooth/bluetooth EXPORT_SYMBOL
-0x49a603b6 bt_procfs_init net/bluetooth/bluetooth EXPORT_SYMBOL
-0x1ca0e71f bt_procfs_cleanup net/bluetooth/bluetooth EXPORT_SYMBOL
-0xe6c1538d bt_debugfs net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0x4989370e hci_alloc_dev_priv net/bluetooth/bluetooth EXPORT_SYMBOL
-0x8efef6bb hci_free_dev net/bluetooth/bluetooth EXPORT_SYMBOL
-0xd027a3e4 hci_register_dev net/bluetooth/bluetooth EXPORT_SYMBOL
-0x89bccaf1 hci_unregister_dev net/bluetooth/bluetooth EXPORT_SYMBOL
-0x730bc393 hci_release_dev net/bluetooth/bluetooth EXPORT_SYMBOL
-0xcfa5536d hci_suspend_dev net/bluetooth/bluetooth EXPORT_SYMBOL
-0xd7b14004 hci_resume_dev net/bluetooth/bluetooth EXPORT_SYMBOL
-0x3f9005ed hci_reset_dev net/bluetooth/bluetooth EXPORT_SYMBOL
-0x79c95680 hci_recv_frame net/bluetooth/bluetooth EXPORT_SYMBOL
-0x3e7f4ed3 hci_recv_diag net/bluetooth/bluetooth EXPORT_SYMBOL
-0x1179b17f hci_set_hw_info net/bluetooth/bluetooth EXPORT_SYMBOL
-0xdfc7275f hci_set_fw_info net/bluetooth/bluetooth EXPORT_SYMBOL
-0xa2cd2567 hci_register_cb net/bluetooth/bluetooth EXPORT_SYMBOL
-0xbca79b9b hci_unregister_cb net/bluetooth/bluetooth EXPORT_SYMBOL
-0x2681c565 __hci_cmd_send net/bluetooth/bluetooth EXPORT_SYMBOL
-0x543ce686 hci_get_route net/bluetooth/bluetooth EXPORT_SYMBOL
-0x0cc2806f hci_conn_security net/bluetooth/bluetooth EXPORT_SYMBOL
-0x4c655e5b hci_conn_check_secure net/bluetooth/bluetooth EXPORT_SYMBOL
-0x8e75567c hci_conn_switch_role net/bluetooth/bluetooth EXPORT_SYMBOL
-0x0f05839b hci_mgmt_chan_register net/bluetooth/bluetooth EXPORT_SYMBOL
-0x8c201f5a hci_mgmt_chan_unregister net/bluetooth/bluetooth EXPORT_SYMBOL
-0x3eb61ca0 l2cap_add_psm net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0x40035fbb l2cap_chan_create net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0x3507377c l2cap_chan_put net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0xcef0c290 l2cap_chan_set_defaults net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0xb022db66 l2cap_chan_del net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0xe8d552cb l2cap_chan_list net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0x29a14f28 l2cap_chan_close net/bluetooth/bluetooth EXPORT_SYMBOL
-0x005ca891 l2cap_register_user net/bluetooth/bluetooth EXPORT_SYMBOL
-0x67a6c003 l2cap_unregister_user net/bluetooth/bluetooth EXPORT_SYMBOL
-0x39b6d905 l2cap_conn_get net/bluetooth/bluetooth EXPORT_SYMBOL
-0x85508f6e l2cap_conn_put net/bluetooth/bluetooth EXPORT_SYMBOL
-0x09a9e770 l2cap_chan_send net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0x839cb9f8 l2cap_chan_connect net/bluetooth/bluetooth EXPORT_SYMBOL_GPL
-0xdb4d0eea l2cap_is_socket net/bluetooth/bluetooth EXPORT_SYMBOL
-0x7b5ce5c3 baswap net/bluetooth/bluetooth EXPORT_SYMBOL
-0x7aad008b bt_to_errno net/bluetooth/bluetooth EXPORT_SYMBOL
-0x7bd9427a bt_status net/bluetooth/bluetooth EXPORT_SYMBOL
-0x0718b8b7 bt_info net/bluetooth/bluetooth EXPORT_SYMBOL
-0x214e4265 bt_warn net/bluetooth/bluetooth EXPORT_SYMBOL
-0x7b8c32f1 bt_err net/bluetooth/bluetooth EXPORT_SYMBOL
-0xddacccf6 bt_warn_ratelimited net/bluetooth/bluetooth EXPORT_SYMBOL
-0xd7613212 bt_err_ratelimited net/bluetooth/bluetooth EXPORT_SYMBOL
-0xf85cdec6 __hci_cmd_sync_sk net/bluetooth/bluetooth EXPORT_SYMBOL
-0x63ada224 __hci_cmd_sync net/bluetooth/bluetooth EXPORT_SYMBOL
-0x15c2ac38 hci_cmd_sync net/bluetooth/bluetooth EXPORT_SYMBOL
-0x3cdb08bc __hci_cmd_sync_ev net/bluetooth/bluetooth EXPORT_SYMBOL
-0x756ee67d __hci_cmd_sync_status_sk net/bluetooth/bluetooth EXPORT_SYMBOL
-0x111c48d8 __hci_cmd_sync_status net/bluetooth/bluetooth EXPORT_SYMBOL
-0x4843f26e hci_cmd_sync_cancel net/bluetooth/bluetooth EXPORT_SYMBOL
-0x24498e3f hci_cmd_sync_cancel_sync net/bluetooth/bluetooth EXPORT_SYMBOL
-0xad17ca36 hci_cmd_sync_submit net/bluetooth/bluetooth EXPORT_SYMBOL
-0x5640c935 hci_cmd_sync_queue net/bluetooth/bluetooth EXPORT_SYMBOL
-0x0623601a hci_devcd_rx net/bluetooth/bluetooth EXPORT_SYMBOL
-0x5a55fece hci_devcd_timeout net/bluetooth/bluetooth EXPORT_SYMBOL
-0xfe113034 hci_devcd_register net/bluetooth/bluetooth EXPORT_SYMBOL
-0x501b99dd hci_devcd_init net/bluetooth/bluetooth EXPORT_SYMBOL
-0x34a3c86f hci_devcd_append net/bluetooth/bluetooth EXPORT_SYMBOL
-0xe240c93e hci_devcd_append_pattern net/bluetooth/bluetooth EXPORT_SYMBOL
-0xec9a12ef hci_devcd_complete net/bluetooth/bluetooth EXPORT_SYMBOL
-0x74eb3e42 hci_devcd_abort net/bluetooth/bluetooth EXPORT_SYMBOL
-0xfdd555fc rpc_create net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb91cd875 rpc_clone_client net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xdf625a38 rpc_clone_client_set_auth net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xca787e4e rpc_switch_client_transport net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x55ad9cbf rpc_clnt_iterate_for_each_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x41d99a57 rpc_killall_tasks net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xdd345a37 rpc_cancel_tasks net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf6205bef rpc_clnt_disconnect net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf226d5de rpc_shutdown_client net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x03ed7db1 rpc_release_client net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xed6b7ddc rpc_bind_new_program net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1336db7b rpc_task_release_transport net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9c47032c rpc_run_task net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x7b6e014c rpc_call_sync net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xced1b914 rpc_call_async net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x278be914 rpc_prepare_reply_pages net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6aff01b9 rpc_call_start net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xba4d5fac rpc_peeraddr net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xfb392786 rpc_peeraddr2str net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc834284e rpc_localaddr net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1de71523 rpc_setbufsize net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x978bc47c rpc_net_ns net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x239d61df rpc_max_payload net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xef618050 rpc_max_bc_payload net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x08b98483 rpc_num_bc_slots net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x2fc92f37 rpc_force_rebind net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1e41f5e3 rpc_restart_call net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x498c8655 rpc_restart_call_prepare net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb3732f76 rpc_call_null net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x047aba4e rpc_clnt_test_and_add_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4b3e65b4 rpc_clnt_setup_test_and_add_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x68c86a67 rpc_clnt_add_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x0cfa728c rpc_clnt_probe_trunked_xprts net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x456fad11 rpc_clnt_manage_trunked_xprts net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9210546c rpc_set_connect_timeout net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xea0a1298 rpc_clnt_xprt_switch_put net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xdaf00318 rpc_clnt_xprt_switch_add_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa6d1de24 rpc_clnt_xprt_switch_remove_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x55bf5f5a rpc_clnt_xprt_switch_has_addr net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb1e7bd39 xprt_register_transport net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6fccf33a xprt_unregister_transport net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xdd691402 xprt_find_transport_ident net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x38f1ecf3 xprt_reserve_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd8382dd4 xprt_reserve_xprt_cong net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x0fccec7d xprt_release_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6a5af5d0 xprt_release_xprt_cong net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9dff6546 xprt_request_get_cong net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xbde3710e xprt_release_rqst_cong net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6f7c6314 xprt_adjust_cwnd net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6e0ff20d xprt_wake_pending_tasks net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x29825264 xprt_wait_for_buffer_space net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x5a5a985e xprt_write_space net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc179124c xprt_disconnect_done net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x860a0fd8 xprt_force_disconnect net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x84435eb7 xprt_lock_connect net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x8f6e5019 xprt_unlock_connect net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xfdad3cc6 xprt_reconnect_delay net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc7994069 xprt_reconnect_backoff net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x5c9dc8e0 xprt_lookup_rqst net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe061010d xprt_pin_rqst net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x354be18d xprt_unpin_rqst net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x350aa72f xprt_update_rtt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4be4f726 xprt_complete_rqst net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xbac6219d xprt_wait_for_reply_request_def net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xfa55c0c2 xprt_wait_for_reply_request_rtt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xffd420e9 xprt_add_backlog net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xddebd999 xprt_wake_up_backlog net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xaabc341c xprt_alloc_slot net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf286b11e xprt_free_slot net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa41b2b8b xprt_alloc net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x21ab81fe xprt_free net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x052195ec xprt_get net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x8ad1e7e4 xprt_put net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6bce02b2 csum_partial_copy_to_xdr net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4afedab1 xprtiod_workqueue net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x609202f9 rpc_task_gfp_mask net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4ae8f33d rpc_task_timeout net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x13cd9b6a rpc_init_priority_wait_queue net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc0717b44 rpc_init_wait_queue net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa8efc268 rpc_destroy_wait_queue net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xcce70b0c rpc_wait_for_completion_task net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6d6791f5 rpc_sleep_on_timeout net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x88d32a61 rpc_sleep_on net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf9ee12a4 rpc_sleep_on_priority_timeout net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd406b199 rpc_sleep_on_priority net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa87d335d rpc_wake_up_queued_task net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x00615f0e rpc_wake_up_first net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xcf9ab9f3 rpc_wake_up_next net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd3a942d0 rpc_wake_up net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe32cf9ba rpc_wake_up_status net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x2d140f59 rpc_delay net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb9eec286 rpc_exit net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9ae57d1b rpc_malloc net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4bca499d rpc_free net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf1edf0f1 rpc_put_task net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9da5e2f2 rpc_put_task_async net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x97bb4593 rpc_machine_cred net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9e1f6ada rpcauth_register net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x624acecd rpcauth_unregister net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1e119a79 rpcauth_get_pseudoflavor net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3f9a2b0b rpcauth_get_gssinfo net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1c2c1ae5 rpcauth_create net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x0444f59c rpcauth_init_credcache net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x868adea6 rpcauth_stringify_acceptor net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1fc994fb rpcauth_destroy_credcache net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x70af6469 rpcauth_lookup_credcache net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x987bb8f6 rpcauth_lookupcred net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xff51278d rpcauth_init_cred net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1b946452 put_rpccred net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x40c818a9 rpcauth_wrap_req_encode net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa0864f98 rpcauth_unwrap_resp_decode net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa2b730e7 svc_rpcb_setup net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x26e29d08 svc_rpcb_cleanup net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x2fb5a899 svc_bind net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x001f8c1c svc_create net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3ca3b7ed svc_create_pooled net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc0908dd0 svc_destroy net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x08662f3e svc_rqst_alloc net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf2eeba06 svc_set_num_threads net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x56a77d8b svc_rqst_replace_page net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa7ba24db svc_rqst_free net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe7bc59c3 svc_exit_thread net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3377726f svc_rpcbind_set_version net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x5799169d svc_generic_rpcbind_set net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4e0c241e svc_generic_init_request net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xdd0ceddb bc_svc_process net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd5c800e3 svc_max_payload net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xeab3a2e5 svc_encode_result_payload net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4a3fd38b svc_fill_write_vector net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x82444292 svc_fill_symlink_pathname net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xdaadf8bd svc_sock_update_bufs net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x2202a887 svc_addsock net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x19486114 svc_authenticate net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x07a9a0b2 svc_set_client net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x7e9b90f0 svc_auth_register net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x5a45ba31 svc_auth_unregister net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4b0cc4f8 auth_domain_put net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9cced756 auth_domain_lookup net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xbe5b3ca1 auth_domain_find net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x8aad47a2 unix_domain_find net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xcc991b8d svcauth_unix_purge net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc717a715 svcauth_unix_set_client net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x549c0738 rpc_ntop net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3897e546 rpc_pton net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa016768e rpc_uaddr2sockaddr net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x172349a7 rpcb_getport_async net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x7de53067 rpc_init_rtt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xeeacab69 rpc_update_rtt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc12435e3 rpc_calc_rto net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4dac77f0 xdr_encode_netobj net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xce678a59 xdr_decode_netobj net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x065994f1 xdr_encode_opaque_fixed net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe5919cb1 xdr_encode_opaque net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x05e807a9 xdr_encode_string net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x2919b156 xdr_decode_string_inplace net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x86585cc6 xdr_terminate_string net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x76f79157 xdr_inline_pages net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xec969534 _copy_from_pages net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4f997efc xdr_stream_pos net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xbaf5e1f9 xdr_page_pos net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd2a1509d xdr_init_encode net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x46dd9211 xdr_init_encode_pages net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xeb5dfdb2 __xdr_commit_encode net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x78b96dd1 xdr_reserve_space net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x97320eee xdr_reserve_space_vec net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x089cab39 xdr_truncate_encode net/sunrpc/sunrpc EXPORT_SYMBOL
-0x4405d485 xdr_truncate_decode net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf446b8f5 xdr_restrict_buflen net/sunrpc/sunrpc EXPORT_SYMBOL
-0xa02d74f8 xdr_write_pages net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xeaad3e42 xdr_init_decode net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x82bf743b xdr_init_decode_pages net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd389acbf xdr_finish_decode net/sunrpc/sunrpc EXPORT_SYMBOL
-0xdff2e435 xdr_inline_decode net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc386ff6f xdr_read_pages net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa6f4767f xdr_set_pagelen net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb405b5f7 xdr_enter_page net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x919c3fcf xdr_buf_from_iov net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3814f9fa xdr_buf_subsegment net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x18e6dbef xdr_stream_subsegment net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa7210c6a xdr_stream_move_subsegment net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x45b10a7e xdr_stream_zero net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4a8d23f6 xdr_buf_trim net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xdf38ff6c read_bytes_from_xdr_buf net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x7d561874 write_bytes_to_xdr_buf net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x801b40c0 xdr_decode_word net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb33e47cb xdr_encode_word net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x2f89182d xdr_decode_array2 net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd67da912 xdr_encode_array2 net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1ba1959a xdr_process_buf net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xadce38e5 xdr_stream_decode_opaque net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xab1256d2 xdr_stream_decode_opaque_dup net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x045a9696 xdr_stream_decode_string net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x036bcf38 xdr_stream_decode_string_dup net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xef1c60c2 xdr_stream_decode_opaque_auth net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xbb3d56e0 xdr_stream_encode_opaque_auth net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4e8f6ca7 sunrpc_net_id net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x212a3aac sunrpc_cache_lookup_rcu net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xaaf38e26 sunrpc_cache_update net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x15bb6a03 cache_check net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xac321a2d sunrpc_init_cache_detail net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6b13da04 sunrpc_destroy_cache_detail net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x71fa908a cache_flush net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x2648f17d cache_purge net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xedcf6be4 qword_add net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc8e96dea qword_addhex net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x283bead7 sunrpc_cache_pipe_upcall net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x8f03f013 sunrpc_cache_pipe_upcall_timeout net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe97f4ce5 qword_get net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x7c5d8c91 cache_seq_start_rcu net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc02fe501 cache_seq_next_rcu net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3ef1f899 cache_seq_stop_rcu net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x0d483624 cache_register_net net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xcea8d5cd cache_unregister_net net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd7200651 cache_create_net net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xf6630618 cache_destroy_net net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6c366d05 sunrpc_cache_register_pipefs net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x7b3ad880 sunrpc_cache_unregister_pipefs net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x538ddfb0 sunrpc_cache_unhash net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x387e1639 rpc_pipefs_notifier_register net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb51a3724 rpc_pipefs_notifier_unregister net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xab7b7614 rpc_pipe_generic_upcall net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x4233b101 rpc_queue_upcall net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9fa537a9 rpc_destroy_pipe_data net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6033f6db rpc_mkpipe_data net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe901d185 rpc_mkpipe_dentry net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x39319f79 rpc_unlink net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xa9b18ae4 rpc_init_pipe_dir_head net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe5d57b5b rpc_init_pipe_dir_object net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x51edd1ca rpc_add_pipe_dir_object net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x0a7cd767 rpc_remove_pipe_dir_object net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x513b3185 rpc_find_or_alloc_pipe_dir_object net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x52a6c7e4 rpc_d_lookup_sb net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3383ec32 rpc_get_sb_net net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x5c6f5faf rpc_put_sb_net net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x83a1e2ba gssd_running net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb0f7e62e svc_reg_xprt_class net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x611c9d25 svc_unreg_xprt_class net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x12270a98 svc_xprt_deferred_close net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x7bc90b1a svc_xprt_put net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x8b764910 svc_xprt_init net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1f31fb1f svc_xprt_received net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xc02efcbf svc_xprt_create net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xadfadba5 svc_xprt_copy_addrs net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb35a2519 svc_print_addr net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x94147039 svc_xprt_enqueue net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x16e15567 svc_reserve net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x798e421e svc_wake_up net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xad4f941d svc_recv net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb9127209 svc_drop net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xd6c97656 svc_age_temp_xprts_now net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6b565938 svc_xprt_close net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x6a77c347 svc_xprt_destroy_all net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x431c36ba svc_find_xprt net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x95a24505 svc_xprt_names net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x13e6e309 svc_pool_stats_open net/sunrpc/sunrpc EXPORT_SYMBOL
-0xaf4c5e78 xprt_setup_backchannel net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3d822ab4 xprt_destroy_backchannel net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xba04a54a svc_seq_show net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb8cad8e5 rpc_alloc_iostats net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x9670b5a1 rpc_free_iostats net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x3b93292c rpc_count_iostats_metrics net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xb2370071 rpc_count_iostats net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xe412ebea rpc_clnt_show_stats net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x652f09af rpc_proc_register net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x24110d8b rpc_proc_unregister net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x1d48b91b svc_proc_register net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x8d49db7e svc_proc_unregister net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x31a89d59 rpc_debug net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xaf5bf6ef nfs_debug net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0xbf9d1b96 nfsd_debug net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x53445f68 nlm_debug net/sunrpc/sunrpc EXPORT_SYMBOL_GPL
-0x482ac5a4 g_token_size net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL_GPL
-0x38d3dce5 g_make_token_header net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL_GPL
-0xd7673035 g_verify_token_header net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL_GPL
-0xaa2d69c6 gss_mech_register net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL_GPL
-0x851c1dab gss_mech_unregister net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL_GPL
-0x93c309e6 gss_mech_get net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL
-0x94a3eec1 gss_pseudoflavor_to_service net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL
-0x4a84ad22 gss_mech_put net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL
-0x5d453230 svcauth_gss_flavor net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL_GPL
-0x83103e58 svcauth_gss_register_pseudoflavor net/sunrpc/auth_gss/auth_rpcgss EXPORT_SYMBOL_GPL
-0xc1b83e2f register_atm_ioctl net/atm/atm EXPORT_SYMBOL
-0x22fb9510 deregister_atm_ioctl net/atm/atm EXPORT_SYMBOL
-0x2cc2d52d vcc_hash net/atm/atm EXPORT_SYMBOL
-0x44c6e633 vcc_sklist_lock net/atm/atm EXPORT_SYMBOL
-0xab8a570e vcc_insert_socket net/atm/atm EXPORT_SYMBOL
-0x3e61ea55 vcc_release_async net/atm/atm EXPORT_SYMBOL
-0x37ba79bd vcc_process_recv_queue net/atm/atm EXPORT_SYMBOL
-0xf3d4a919 atm_dev_signal_change net/atm/atm EXPORT_SYMBOL
-0x05812bfc atm_dev_release_vccs net/atm/atm EXPORT_SYMBOL
-0xb09faf79 register_atmdevice_notifier net/atm/atm EXPORT_SYMBOL_GPL
-0xcfb6a3da unregister_atmdevice_notifier net/atm/atm EXPORT_SYMBOL_GPL
-0x2bf42126 atm_charge net/atm/atm EXPORT_SYMBOL
-0xa4bc5ebf atm_alloc_charge net/atm/atm EXPORT_SYMBOL
-0xf49bc67a atm_pcr_goal net/atm/atm EXPORT_SYMBOL
-0xaa024146 sonet_copy_stats net/atm/atm EXPORT_SYMBOL
-0x9feaf287 sonet_subtract_stats net/atm/atm EXPORT_SYMBOL
-0x4b29bd7a atm_init_aal5 net/atm/atm EXPORT_SYMBOL
-0xea00da04 atm_dev_lookup net/atm/atm EXPORT_SYMBOL
-0x761f9385 atm_dev_register net/atm/atm EXPORT_SYMBOL
-0x49fbdd67 atm_dev_deregister net/atm/atm EXPORT_SYMBOL
-0x4443d399 atm_proc_root net/atm/atm EXPORT_SYMBOL
-0x75347041 l2tp_sk_to_tunnel net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x30606af9 l2tp_tunnel_inc_refcount net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0xcebf9e52 l2tp_tunnel_dec_refcount net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0xfafefbd1 l2tp_session_inc_refcount net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x1d5bf82d l2tp_session_dec_refcount net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x98e04428 l2tp_tunnel_get net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x44ede9ec l2tp_tunnel_get_nth net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x421710ca l2tp_tunnel_get_session net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x244882cc l2tp_session_get net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x26b1232a l2tp_session_get_nth net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0xb6a06d92 l2tp_session_get_by_ifname net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x169be306 l2tp_session_register net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x398e9018 l2tp_recv_common net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0xf1961c6e l2tp_udp_encap_recv net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0xc93b111f l2tp_xmit_skb net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x2eda6a61 l2tp_tunnel_create net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x44335cc3 l2tp_tunnel_register net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0xf4e0b0ae l2tp_tunnel_delete net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x270ca3b8 l2tp_session_delete net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x4ed7eba8 l2tp_session_set_header_len net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0xa3b34ebd l2tp_session_create net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
-0x1b980bba l2tp_ioctl net/l2tp/l2tp_ip EXPORT_SYMBOL_GPL
-0x1d8f6b9e l2tp_nl_register_ops net/l2tp/l2tp_netlink EXPORT_SYMBOL_GPL
-0x337f2432 l2tp_nl_unregister_ops net/l2tp/l2tp_netlink EXPORT_SYMBOL_GPL
-0xa91bd140 sctp_get_sctp_info net/sctp/sctp EXPORT_SYMBOL_GPL
-0xc1bb0ef9 sctp_for_each_endpoint net/sctp/sctp EXPORT_SYMBOL_GPL
-0xc6c8d4bc sctp_transport_lookup_process net/sctp/sctp EXPORT_SYMBOL_GPL
-0x18489291 sctp_transport_traverse_process net/sctp/sctp EXPORT_SYMBOL_GPL
-0x79030d9c sctp_do_peeloff net/sctp/sctp EXPORT_SYMBOL
-0x8155e945 ieee80211_restart_hw net/mac80211/mac80211 EXPORT_SYMBOL
-0x5bef2ea7 ieee80211_alloc_hw_nm net/mac80211/mac80211 EXPORT_SYMBOL
-0xfc7cd447 ieee80211_register_hw net/mac80211/mac80211 EXPORT_SYMBOL
-0x8a4e60fa ieee80211_unregister_hw net/mac80211/mac80211 EXPORT_SYMBOL
-0xfa0fb65c ieee80211_free_hw net/mac80211/mac80211 EXPORT_SYMBOL
-0x034e233f ieee80211_tx_status_irqsafe net/mac80211/mac80211 EXPORT_SYMBOL
-0xd65e7942 ieee80211_tx_status net/mac80211/mac80211 EXPORT_SYMBOL
-0x7138d36f ieee80211_tx_status_ext net/mac80211/mac80211 EXPORT_SYMBOL
-0x795d5cb5 ieee80211_tx_rate_update net/mac80211/mac80211 EXPORT_SYMBOL
-0x7e1d00af ieee80211_report_low_ack net/mac80211/mac80211 EXPORT_SYMBOL
-0x7b3ac3bb ieee80211_free_txskb net/mac80211/mac80211 EXPORT_SYMBOL
-0xf853ee8f ieee80211_find_sta_by_link_addrs net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x747c5f34 ieee80211_find_sta_by_ifaddr net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x3a216a90 ieee80211_find_sta net/mac80211/mac80211 EXPORT_SYMBOL
-0x3fae0acb ieee80211_sta_block_awake net/mac80211/mac80211 EXPORT_SYMBOL
-0x39bf7a68 ieee80211_sta_eosp net/mac80211/mac80211 EXPORT_SYMBOL
-0xaf47857e ieee80211_send_eosp_nullfunc net/mac80211/mac80211 EXPORT_SYMBOL
-0x3897e72b ieee80211_sta_set_buffered net/mac80211/mac80211 EXPORT_SYMBOL
-0x17fa24dd ieee80211_sta_register_airtime net/mac80211/mac80211 EXPORT_SYMBOL
-0x643fcfc6 ieee80211_sta_recalc_aggregates net/mac80211/mac80211 EXPORT_SYMBOL
-0xd3a9febe ieee80211_scan_completed net/mac80211/mac80211 EXPORT_SYMBOL
-0xdd3b643d ieee80211_sched_scan_results net/mac80211/mac80211 EXPORT_SYMBOL
-0xad40c810 ieee80211_sched_scan_stopped net/mac80211/mac80211 EXPORT_SYMBOL
-0x337ffc76 ieee80211_ready_on_channel net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x29ef8f76 ieee80211_remain_on_channel_expired net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x77694ad1 ieee80211_request_smps net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0xc39e36eb ieee80211_send_bar net/mac80211/mac80211 EXPORT_SYMBOL
-0x7eaf13ea ieee80211_refresh_tx_agg_session_timer net/mac80211/mac80211 EXPORT_SYMBOL
-0x02e30f33 ieee80211_start_tx_ba_session net/mac80211/mac80211 EXPORT_SYMBOL
-0xa4387bac ieee80211_start_tx_ba_cb_irqsafe net/mac80211/mac80211 EXPORT_SYMBOL
-0x5d99bd8a ieee80211_stop_tx_ba_session net/mac80211/mac80211 EXPORT_SYMBOL
-0x608245e9 ieee80211_stop_tx_ba_cb_irqsafe net/mac80211/mac80211 EXPORT_SYMBOL
-0x6d9c38ab ieee80211_stop_rx_ba_session net/mac80211/mac80211 EXPORT_SYMBOL
-0x88ae14aa ieee80211_manage_rx_ba_offl net/mac80211/mac80211 EXPORT_SYMBOL
-0x3622c1ca ieee80211_rx_ba_timer_expired net/mac80211/mac80211 EXPORT_SYMBOL
-0xfbe6c241 ieee80211_update_mu_groups net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0xa193e47c ieee80211_set_active_links net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x64a7d452 ieee80211_set_active_links_async net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x2186c7db ieee80211_rate_control_register net/mac80211/mac80211 EXPORT_SYMBOL
-0xb4528b44 ieee80211_rate_control_unregister net/mac80211/mac80211 EXPORT_SYMBOL
-0x9d31ab2b ieee80211_get_tx_rates net/mac80211/mac80211 EXPORT_SYMBOL
-0x9ce0623f rate_control_set_rates net/mac80211/mac80211 EXPORT_SYMBOL
-0x16ad7c5f ieee80211_tkip_add_iv net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x1cf75d45 ieee80211_get_tkip_p1k_iv net/mac80211/mac80211 EXPORT_SYMBOL
-0x391eda45 ieee80211_get_tkip_rx_p1k net/mac80211/mac80211 EXPORT_SYMBOL
-0x3efeb555 ieee80211_get_tkip_p2k net/mac80211/mac80211 EXPORT_SYMBOL
-0x20d9ea44 ieee80211_csa_finish net/mac80211/mac80211 EXPORT_SYMBOL
-0xfb2c63f8 ieee80211_channel_switch_disconnect net/mac80211/mac80211 EXPORT_SYMBOL
-0x19dd7f37 ieee80211_nan_func_terminated net/mac80211/mac80211 EXPORT_SYMBOL
-0xd70ed278 ieee80211_nan_func_match net/mac80211/mac80211 EXPORT_SYMBOL
-0xf2d083f1 ieee80211_color_change_finish net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x58a1bcbe ieee80211_obss_color_collision_notify net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x09fdd6ee ieee80211_sta_ps_transition net/mac80211/mac80211 EXPORT_SYMBOL
-0x776667f1 ieee80211_sta_pspoll net/mac80211/mac80211 EXPORT_SYMBOL
-0xd57c7ed5 ieee80211_sta_uapsd_trigger net/mac80211/mac80211 EXPORT_SYMBOL
-0x8d2b5436 ieee80211_mark_rx_ba_filtered_frames net/mac80211/mac80211 EXPORT_SYMBOL
-0x37330670 ieee80211_rx_list net/mac80211/mac80211 EXPORT_SYMBOL
-0x4e596001 ieee80211_rx_napi net/mac80211/mac80211 EXPORT_SYMBOL
-0xeb586bf1 ieee80211_rx_irqsafe net/mac80211/mac80211 EXPORT_SYMBOL
-0x6e90600f ieee80211_tx_prepare_skb net/mac80211/mac80211 EXPORT_SYMBOL
-0x034e980a ieee80211_tx_dequeue net/mac80211/mac80211 EXPORT_SYMBOL
-0x8e7e0619 ieee80211_next_txq net/mac80211/mac80211 EXPORT_SYMBOL
-0x9bb184c7 __ieee80211_schedule_txq net/mac80211/mac80211 EXPORT_SYMBOL
-0x3f65e7ea ieee80211_txq_airtime_check net/mac80211/mac80211 EXPORT_SYMBOL
-0x24a7336b ieee80211_txq_may_transmit net/mac80211/mac80211 EXPORT_SYMBOL
-0x4d4f28e7 ieee80211_txq_schedule_start net/mac80211/mac80211 EXPORT_SYMBOL
-0xdd01b950 ieee80211_beacon_update_cntdwn net/mac80211/mac80211 EXPORT_SYMBOL
-0x270feebe ieee80211_beacon_set_cntdwn net/mac80211/mac80211 EXPORT_SYMBOL
-0x6d492208 ieee80211_beacon_cntdwn_is_complete net/mac80211/mac80211 EXPORT_SYMBOL
-0x51312353 ieee80211_beacon_get_template net/mac80211/mac80211 EXPORT_SYMBOL
-0xccea1fa9 ieee80211_beacon_get_template_ema_index net/mac80211/mac80211 EXPORT_SYMBOL
-0x95038cce ieee80211_beacon_free_ema_list net/mac80211/mac80211 EXPORT_SYMBOL
-0x107b957f ieee80211_beacon_get_template_ema_list net/mac80211/mac80211 EXPORT_SYMBOL
-0x4e62cb36 ieee80211_beacon_get_tim net/mac80211/mac80211 EXPORT_SYMBOL
-0x693378e5 ieee80211_proberesp_get net/mac80211/mac80211 EXPORT_SYMBOL
-0x178fc02c ieee80211_get_fils_discovery_tmpl net/mac80211/mac80211 EXPORT_SYMBOL
-0x63996337 ieee80211_get_unsol_bcast_probe_resp_tmpl net/mac80211/mac80211 EXPORT_SYMBOL
-0x48ec32b8 ieee80211_pspoll_get net/mac80211/mac80211 EXPORT_SYMBOL
-0xd17a2eb6 ieee80211_nullfunc_get net/mac80211/mac80211 EXPORT_SYMBOL
-0xc3b1c878 ieee80211_probereq_get net/mac80211/mac80211 EXPORT_SYMBOL
-0xac135b7f ieee80211_rts_get net/mac80211/mac80211 EXPORT_SYMBOL
-0x3febcdf8 ieee80211_ctstoself_get net/mac80211/mac80211 EXPORT_SYMBOL
-0xd3ba6154 ieee80211_get_buffered_bc net/mac80211/mac80211 EXPORT_SYMBOL
-0x349efa37 ieee80211_reserve_tid net/mac80211/mac80211 EXPORT_SYMBOL
-0x9945d8c4 ieee80211_unreserve_tid net/mac80211/mac80211 EXPORT_SYMBOL
-0xd4e85131 ieee80211_iter_keys net/mac80211/mac80211 EXPORT_SYMBOL
-0x5a875d7c ieee80211_iter_keys_rcu net/mac80211/mac80211 EXPORT_SYMBOL
-0x0d355a41 ieee80211_gtk_rekey_notify net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0xaeb9a917 ieee80211_get_key_rx_seq net/mac80211/mac80211 EXPORT_SYMBOL
-0x1dab0efe ieee80211_set_key_rx_seq net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0xea792270 ieee80211_remove_key net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x113d175f ieee80211_gtk_rekey_add net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0xd004ea88 ieee80211_key_mic_failure net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x9e1c1431 ieee80211_key_replay net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x0dab345e wiphy_to_ieee80211_hw net/mac80211/mac80211 EXPORT_SYMBOL
-0x95febea6 ieee80211_get_bssid net/mac80211/mac80211 EXPORT_SYMBOL
-0x4840436a ieee80211_generic_frame_duration net/mac80211/mac80211 EXPORT_SYMBOL
-0x719de65b ieee80211_rts_duration net/mac80211/mac80211 EXPORT_SYMBOL
-0x49ceacfb ieee80211_ctstoself_duration net/mac80211/mac80211 EXPORT_SYMBOL
-0x9a367d62 ieee80211_handle_wake_tx_queue net/mac80211/mac80211 EXPORT_SYMBOL
-0xae111c42 ieee80211_wake_queue net/mac80211/mac80211 EXPORT_SYMBOL
-0x7a8b508c ieee80211_stop_queue net/mac80211/mac80211 EXPORT_SYMBOL
-0x974e1521 ieee80211_stop_queues net/mac80211/mac80211 EXPORT_SYMBOL
-0x3bd04b80 ieee80211_queue_stopped net/mac80211/mac80211 EXPORT_SYMBOL
-0xd2eb8eb0 ieee80211_wake_queues net/mac80211/mac80211 EXPORT_SYMBOL
-0xe6a90d96 ieee80211_iterate_interfaces net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x893f030f ieee80211_iterate_active_interfaces_atomic net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x98e29c5d ieee80211_iterate_active_interfaces_mtx net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x745d4f01 ieee80211_iterate_stations_atomic net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0xb3741aa5 wdev_to_ieee80211_vif net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x3e71986f ieee80211_vif_to_wdev net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x1a72e4e6 ieee80211_queue_work net/mac80211/mac80211 EXPORT_SYMBOL
-0xafc4dbec ieee80211_queue_delayed_work net/mac80211/mac80211 EXPORT_SYMBOL
-0x51aa8582 ieee80211_hw_restart_disconnect net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x02755827 ieee80211_resume_disconnect net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x9fd98916 ieee80211_ave_rssi net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0xc32692e3 ieee80211_radar_detected net/mac80211/mac80211 EXPORT_SYMBOL
-0x19f37f0d ieee80211_update_p2p_noa net/mac80211/mac80211 EXPORT_SYMBOL
-0x991a0ca0 ieee80211_parse_p2p_noa net/mac80211/mac80211 EXPORT_SYMBOL
-0x191d081f ieee80211_txq_get_depth net/mac80211/mac80211 EXPORT_SYMBOL
-0x5df6f91a ieee80211_iter_chan_contexts_atomic net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x2bef8df2 ieee80211_chswitch_done net/mac80211/mac80211 EXPORT_SYMBOL
-0x87bf3295 ieee80211_ap_probereq_get net/mac80211/mac80211 EXPORT_SYMBOL
-0x1d544d33 ieee80211_beacon_loss net/mac80211/mac80211 EXPORT_SYMBOL
-0x0d17de60 ieee80211_connection_loss net/mac80211/mac80211 EXPORT_SYMBOL
-0x0162cd86 ieee80211_disconnect net/mac80211/mac80211 EXPORT_SYMBOL
-0x6940e628 ieee80211_cqm_rssi_notify net/mac80211/mac80211 EXPORT_SYMBOL
-0x6d524b18 ieee80211_cqm_beacon_loss_notify net/mac80211/mac80211 EXPORT_SYMBOL
-0xc8858c94 ieee80211_enable_rssi_reports net/mac80211/mac80211 EXPORT_SYMBOL
-0x1a152cf7 ieee80211_disable_rssi_reports net/mac80211/mac80211 EXPORT_SYMBOL
-0xc7dcc8b2 ieee80211_tdls_oper_request net/mac80211/mac80211 EXPORT_SYMBOL
-0xf13afdfd ieee80211_calc_rx_airtime net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x40841ac4 ieee80211_calc_tx_airtime net/mac80211/mac80211 EXPORT_SYMBOL_GPL
-0x916f806f __ieee80211_get_radio_led_name net/mac80211/mac80211 EXPORT_SYMBOL
-0xf629f914 __ieee80211_get_assoc_led_name net/mac80211/mac80211 EXPORT_SYMBOL
-0xebb806d8 __ieee80211_get_tx_led_name net/mac80211/mac80211 EXPORT_SYMBOL
-0x800fefbd __ieee80211_get_rx_led_name net/mac80211/mac80211 EXPORT_SYMBOL
-0x6603338d __ieee80211_create_tpt_led_trigger net/mac80211/mac80211 EXPORT_SYMBOL
-0x644d29e6 ieee80211_report_wowlan_wakeup net/mac80211/mac80211 EXPORT_SYMBOL
-0xf33f6f14 tipc_nl_sk_walk net/tipc/tipc EXPORT_SYMBOL
-0xbf2a68d8 tipc_dump_start net/tipc/tipc EXPORT_SYMBOL
-0x79dd208f tipc_dump_done net/tipc/tipc EXPORT_SYMBOL
-0xf91daf61 tipc_sk_fill_sock_diag net/tipc/tipc EXPORT_SYMBOL
-0x53f33022 smc_hash_sk net/smc/smc EXPORT_SYMBOL_GPL
-0x4f1231b2 smc_unhash_sk net/smc/smc EXPORT_SYMBOL_GPL
-0xc23e7502 smc_proto net/smc/smc EXPORT_SYMBOL_GPL
-0x1b3825cb smc_proto6 net/smc/smc EXPORT_SYMBOL_GPL
-0x09e47f39 __tracepoint_smc_switch_to_fallback net/smc/smc EXPORT_SYMBOL
-0xb827c572 __traceiter_smc_switch_to_fallback net/smc/smc EXPORT_SYMBOL
-0x2733473f __SCK__tp_func_smc_switch_to_fallback net/smc/smc EXPORT_SYMBOL
-0x1e612b77 __SCT__tp_func_smc_switch_to_fallback net/smc/smc EXPORT_SYMBOL
-0x65ba7da9 __tracepoint_smc_tx_sendmsg net/smc/smc EXPORT_SYMBOL
-0xf88f637f __traceiter_smc_tx_sendmsg net/smc/smc EXPORT_SYMBOL
-0xc9b270cf __SCK__tp_func_smc_tx_sendmsg net/smc/smc EXPORT_SYMBOL
-0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg net/smc/smc EXPORT_SYMBOL
-0xe71b6048 __tracepoint_smc_rx_recvmsg net/smc/smc EXPORT_SYMBOL
-0x32f9c3d0 __traceiter_smc_rx_recvmsg net/smc/smc EXPORT_SYMBOL
-0x4b136d2e __SCK__tp_func_smc_rx_recvmsg net/smc/smc EXPORT_SYMBOL
-0x3ac4e1c7 __SCT__tp_func_smc_rx_recvmsg net/smc/smc EXPORT_SYMBOL
-0x31926757 __tracepoint_smcr_link_down net/smc/smc EXPORT_SYMBOL
-0x26cb5e76 __traceiter_smcr_link_down net/smc/smc EXPORT_SYMBOL
-0x9d9a6a31 __SCK__tp_func_smcr_link_down net/smc/smc EXPORT_SYMBOL
-0x3bcd3bb9 __SCT__tp_func_smcr_link_down net/smc/smc EXPORT_SYMBOL
-0xaa6f23ad rfkill_get_led_trigger_name net/rfkill/rfkill EXPORT_SYMBOL
-0x9cab34a6 rfkill_set_led_trigger_name net/rfkill/rfkill EXPORT_SYMBOL
-0x0cdce87c rfkill_set_hw_state_reason net/rfkill/rfkill EXPORT_SYMBOL
-0x8a490c90 rfkill_set_sw_state net/rfkill/rfkill EXPORT_SYMBOL
-0xaad6d92f rfkill_init_sw_state net/rfkill/rfkill EXPORT_SYMBOL
-0x85b5e625 rfkill_set_states net/rfkill/rfkill EXPORT_SYMBOL
-0x50b73ce2 rfkill_find_type net/rfkill/rfkill EXPORT_SYMBOL
-0x3939f8f0 rfkill_pause_polling net/rfkill/rfkill EXPORT_SYMBOL
-0xc781bd9f rfkill_resume_polling net/rfkill/rfkill EXPORT_SYMBOL
-0xc0763484 rfkill_blocked net/rfkill/rfkill EXPORT_SYMBOL
-0xd24108d4 rfkill_soft_blocked net/rfkill/rfkill EXPORT_SYMBOL
-0xf2f91f5e rfkill_alloc net/rfkill/rfkill EXPORT_SYMBOL
-0xff282521 rfkill_register net/rfkill/rfkill EXPORT_SYMBOL
-0x083eb21c rfkill_unregister net/rfkill/rfkill EXPORT_SYMBOL
-0xdb68bbad rfkill_destroy net/rfkill/rfkill EXPORT_SYMBOL
-0xc5fb8f75 lowpan_register_netdevice net/6lowpan/6lowpan EXPORT_SYMBOL
-0x60925b93 lowpan_register_netdev net/6lowpan/6lowpan EXPORT_SYMBOL
-0x3fc224d7 lowpan_unregister_netdevice net/6lowpan/6lowpan EXPORT_SYMBOL
-0x26767863 lowpan_unregister_netdev net/6lowpan/6lowpan EXPORT_SYMBOL
-0x91363d86 lowpan_header_decompress net/6lowpan/6lowpan EXPORT_SYMBOL_GPL
-0xc8018d48 lowpan_header_compress net/6lowpan/6lowpan EXPORT_SYMBOL_GPL
-0xe60e2cbc lowpan_nhc_add net/6lowpan/6lowpan EXPORT_SYMBOL
-0x1f150ae0 lowpan_nhc_del net/6lowpan/6lowpan EXPORT_SYMBOL
-0x570ce3a4 wpan_phy_find net/ieee802154/ieee802154 EXPORT_SYMBOL
-0x21164b4c wpan_phy_for_each net/ieee802154/ieee802154 EXPORT_SYMBOL
-0x395cc759 wpan_phy_new net/ieee802154/ieee802154 EXPORT_SYMBOL
-0xabc0c005 wpan_phy_register net/ieee802154/ieee802154 EXPORT_SYMBOL
-0xba1bc42f wpan_phy_unregister net/ieee802154/ieee802154 EXPORT_SYMBOL
-0xcbe08eb2 wpan_phy_free net/ieee802154/ieee802154 EXPORT_SYMBOL
-0x13f8620f ieee802154_hdr_push net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0xf7ccd5dd ieee802154_mac_cmd_push net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x6ac1ee99 ieee802154_beacon_push net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x89a9ad38 ieee802154_hdr_pull net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x68427094 ieee802154_mac_cmd_pl_pull net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x1263a31b ieee802154_hdr_peek_addrs net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x4311a450 ieee802154_hdr_peek net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x87e2553b ieee802154_max_payload net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x4de2066d nl802154_scan_event net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0xf6df96fa nl802154_scan_started net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x1e1e5df5 nl802154_scan_done net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0xcd9c20b6 nl802154_beaconing_done net/ieee802154/ieee802154 EXPORT_SYMBOL_GPL
-0x757b09c9 ieee802154_alloc_hw net/mac802154/mac802154 EXPORT_SYMBOL
-0xf8185790 ieee802154_configure_durations net/mac802154/mac802154 EXPORT_SYMBOL
-0x88ccd62f ieee802154_free_hw net/mac802154/mac802154 EXPORT_SYMBOL
-0xed522e41 ieee802154_register_hw net/mac802154/mac802154 EXPORT_SYMBOL
-0x95d5da87 ieee802154_unregister_hw net/mac802154/mac802154 EXPORT_SYMBOL
-0x6696d779 ieee802154_rx_irqsafe net/mac802154/mac802154 EXPORT_SYMBOL
-0x15a932cd ieee802154_xmit_complete net/mac802154/mac802154 EXPORT_SYMBOL
-0x43edb334 ieee802154_xmit_error net/mac802154/mac802154 EXPORT_SYMBOL
-0x8ca19edf ieee802154_xmit_hw_error net/mac802154/mac802154 EXPORT_SYMBOL
-0xd8186fba dns_query net/dns_resolver/dns_resolver EXPORT_SYMBOL
-0x466b85b8 libceph_compatible net/ceph/libceph EXPORT_SYMBOL
-0xb54676fa ceph_msg_type_name net/ceph/libceph EXPORT_SYMBOL
-0xb112ede4 ceph_check_fsid net/ceph/libceph EXPORT_SYMBOL
-0x835cbb76 ceph_compare_options net/ceph/libceph EXPORT_SYMBOL
-0x4affd6c2 ceph_parse_fsid net/ceph/libceph EXPORT_SYMBOL
-0x987d3968 ceph_alloc_options net/ceph/libceph EXPORT_SYMBOL
-0xd4d736db ceph_destroy_options net/ceph/libceph EXPORT_SYMBOL
-0x889b2d27 ceph_parse_mon_ips net/ceph/libceph EXPORT_SYMBOL
-0xd0bbbb92 ceph_parse_param net/ceph/libceph EXPORT_SYMBOL
-0xc56eb81a ceph_print_client_options net/ceph/libceph EXPORT_SYMBOL
-0xa76cf5ac ceph_client_addr net/ceph/libceph EXPORT_SYMBOL
-0x729fe07f ceph_client_gid net/ceph/libceph EXPORT_SYMBOL
-0x664051cf ceph_create_client net/ceph/libceph EXPORT_SYMBOL
-0xf8a246e4 ceph_destroy_client net/ceph/libceph EXPORT_SYMBOL
-0xf749c050 ceph_reset_client_addr net/ceph/libceph EXPORT_SYMBOL
-0x05cafea1 __ceph_open_session net/ceph/libceph EXPORT_SYMBOL
-0xd6ec9954 ceph_open_session net/ceph/libceph EXPORT_SYMBOL
-0xb5cb8018 ceph_wait_for_latest_osdmap net/ceph/libceph EXPORT_SYMBOL
-0x6a7a38a0 ceph_pr_addr net/ceph/libceph EXPORT_SYMBOL
-0xafb8a407 ceph_msgr_flush net/ceph/libceph EXPORT_SYMBOL
-0x25ad644b ceph_con_close net/ceph/libceph EXPORT_SYMBOL
-0xcf6c6ac8 ceph_con_open net/ceph/libceph EXPORT_SYMBOL
-0xdc04195a ceph_con_init net/ceph/libceph EXPORT_SYMBOL
-0xf254297e ceph_addr_is_blank net/ceph/libceph EXPORT_SYMBOL
-0x4bef2dde ceph_con_send net/ceph/libceph EXPORT_SYMBOL
-0xdd726779 ceph_con_keepalive net/ceph/libceph EXPORT_SYMBOL
-0x333a792a ceph_msg_data_add_pages net/ceph/libceph EXPORT_SYMBOL
-0x4d38f284 ceph_msg_data_add_pagelist net/ceph/libceph EXPORT_SYMBOL
-0xb25b6d1c ceph_msg_data_add_bio net/ceph/libceph EXPORT_SYMBOL
-0x47d0e715 ceph_msg_data_add_bvecs net/ceph/libceph EXPORT_SYMBOL
-0xc9f19fd7 ceph_msg_new2 net/ceph/libceph EXPORT_SYMBOL
-0xdbcdfccd ceph_msg_new net/ceph/libceph EXPORT_SYMBOL
-0x5c3bbeb0 ceph_msg_get net/ceph/libceph EXPORT_SYMBOL
-0x0ca0356d ceph_msg_put net/ceph/libceph EXPORT_SYMBOL
-0xdd1b2188 ceph_msg_dump net/ceph/libceph EXPORT_SYMBOL
-0x9fbba67f ceph_buffer_new net/ceph/libceph EXPORT_SYMBOL
-0xb72c162e ceph_buffer_release net/ceph/libceph EXPORT_SYMBOL
-0xe76e7226 ceph_pagelist_alloc net/ceph/libceph EXPORT_SYMBOL
-0x2a983d26 ceph_pagelist_release net/ceph/libceph EXPORT_SYMBOL
-0xefce991c ceph_pagelist_append net/ceph/libceph EXPORT_SYMBOL
-0xefce3c3b ceph_pagelist_reserve net/ceph/libceph EXPORT_SYMBOL
-0x165b1948 ceph_pagelist_free_reserve net/ceph/libceph EXPORT_SYMBOL
-0xf03fe862 ceph_pagelist_set_cursor net/ceph/libceph EXPORT_SYMBOL
-0xc366bfa1 ceph_pagelist_truncate net/ceph/libceph EXPORT_SYMBOL
-0xb101b998 ceph_monc_want_map net/ceph/libceph EXPORT_SYMBOL
-0xf56e94b8 ceph_monc_got_map net/ceph/libceph EXPORT_SYMBOL
-0x31ab2487 ceph_monc_renew_subs net/ceph/libceph EXPORT_SYMBOL
-0xf911285a ceph_monc_wait_osdmap net/ceph/libceph EXPORT_SYMBOL
-0x99aab2cc ceph_monc_open_session net/ceph/libceph EXPORT_SYMBOL
-0xa4f4c547 ceph_monc_do_statfs net/ceph/libceph EXPORT_SYMBOL
-0xec81e3f1 ceph_monc_get_version net/ceph/libceph EXPORT_SYMBOL
-0xcdec8b2d ceph_monc_get_version_async net/ceph/libceph EXPORT_SYMBOL
-0x9d65d730 ceph_monc_blocklist_add net/ceph/libceph EXPORT_SYMBOL
-0x8b9b542d ceph_monc_init net/ceph/libceph EXPORT_SYMBOL
-0x7bbbf5f9 ceph_monc_stop net/ceph/libceph EXPORT_SYMBOL
-0x8fd2fe3a ceph_monc_validate_auth net/ceph/libceph EXPORT_SYMBOL
-0xd4eb7735 ceph_decode_entity_addr net/ceph/libceph EXPORT_SYMBOL
-0x50603ce3 ceph_decode_entity_addrvec net/ceph/libceph EXPORT_SYMBOL
-0x4a645631 ceph_cls_lock net/ceph/libceph EXPORT_SYMBOL
-0x440ce685 ceph_cls_unlock net/ceph/libceph EXPORT_SYMBOL
-0x0a8c2c26 ceph_cls_break_lock net/ceph/libceph EXPORT_SYMBOL
-0xed80930c ceph_cls_set_cookie net/ceph/libceph EXPORT_SYMBOL
-0xa698f998 ceph_free_lockers net/ceph/libceph EXPORT_SYMBOL
-0x14684f9d ceph_cls_lock_info net/ceph/libceph EXPORT_SYMBOL
-0x2a941e67 ceph_cls_assert_locked net/ceph/libceph EXPORT_SYMBOL
-0xc6400ed5 osd_req_op_extent_osd_data net/ceph/libceph EXPORT_SYMBOL
-0x6de7fab5 osd_req_op_raw_data_in_pages net/ceph/libceph EXPORT_SYMBOL
-0x40cd1176 osd_req_op_extent_osd_data_pages net/ceph/libceph EXPORT_SYMBOL
-0x17545899 osd_req_op_extent_osd_data_pagelist net/ceph/libceph EXPORT_SYMBOL
-0xf27abbf3 osd_req_op_extent_osd_data_bio net/ceph/libceph EXPORT_SYMBOL
-0x23da5031 osd_req_op_extent_osd_data_bvecs net/ceph/libceph EXPORT_SYMBOL
-0x4bf030be osd_req_op_extent_osd_data_bvec_pos net/ceph/libceph EXPORT_SYMBOL
-0xaa8af9d0 osd_req_op_extent_osd_iter net/ceph/libceph EXPORT_SYMBOL
-0xf42f0091 osd_req_op_cls_request_data_pagelist net/ceph/libceph EXPORT_SYMBOL
-0xc4cabda3 osd_req_op_cls_request_data_pages net/ceph/libceph EXPORT_SYMBOL
-0x987c7e82 osd_req_op_cls_request_data_bvecs net/ceph/libceph EXPORT_SYMBOL
-0x743a5a15 osd_req_op_cls_response_data_pages net/ceph/libceph EXPORT_SYMBOL
-0xe2c83c21 ceph_osdc_get_request net/ceph/libceph EXPORT_SYMBOL
-0xa571b9da ceph_osdc_put_request net/ceph/libceph EXPORT_SYMBOL
-0x76466aed ceph_osdc_alloc_request net/ceph/libceph EXPORT_SYMBOL
-0x1621de90 ceph_osdc_alloc_messages net/ceph/libceph EXPORT_SYMBOL
-0xbac915fa osd_req_op_init net/ceph/libceph EXPORT_SYMBOL
-0xb14a093c osd_req_op_extent_init net/ceph/libceph EXPORT_SYMBOL
-0xd6ef2fd6 osd_req_op_extent_update net/ceph/libceph EXPORT_SYMBOL
-0xfe264f05 osd_req_op_extent_dup_last net/ceph/libceph EXPORT_SYMBOL
-0xb2b2a41b osd_req_op_cls_init net/ceph/libceph EXPORT_SYMBOL
-0x4e216767 osd_req_op_xattr_init net/ceph/libceph EXPORT_SYMBOL
-0x30445142 osd_req_op_alloc_hint_init net/ceph/libceph EXPORT_SYMBOL
-0x1ab4366c ceph_osdc_new_request net/ceph/libceph EXPORT_SYMBOL
-0x9cbd3835 __ceph_alloc_sparse_ext_map net/ceph/libceph EXPORT_SYMBOL
-0xd2ad797f ceph_osdc_abort_requests net/ceph/libceph EXPORT_SYMBOL
-0x2ce43130 ceph_osdc_clear_abort_err net/ceph/libceph EXPORT_SYMBOL
-0x67a6bfe1 ceph_osdc_update_epoch_barrier net/ceph/libceph EXPORT_SYMBOL
-0x12a72e35 ceph_osdc_start_request net/ceph/libceph EXPORT_SYMBOL
-0xb4d3bb92 ceph_osdc_cancel_request net/ceph/libceph EXPORT_SYMBOL
-0xb7bf2162 ceph_osdc_wait_request net/ceph/libceph EXPORT_SYMBOL
-0x66d73e92 ceph_osdc_sync net/ceph/libceph EXPORT_SYMBOL
-0x5482eed2 ceph_osdc_watch net/ceph/libceph EXPORT_SYMBOL
-0x1bc4eb4a ceph_osdc_unwatch net/ceph/libceph EXPORT_SYMBOL
-0x04ae81bd ceph_osdc_notify_ack net/ceph/libceph EXPORT_SYMBOL
-0x9419c7fa ceph_osdc_notify net/ceph/libceph EXPORT_SYMBOL
-0x494fe83c ceph_osdc_list_watchers net/ceph/libceph EXPORT_SYMBOL
-0x795c98af ceph_osdc_flush_notifies net/ceph/libceph EXPORT_SYMBOL
-0xef9a3ef2 ceph_osdc_maybe_request_map net/ceph/libceph EXPORT_SYMBOL
-0x7ca5fa6b ceph_osdc_call net/ceph/libceph EXPORT_SYMBOL
-0xeda89e23 osd_req_op_copy_from_init net/ceph/libceph EXPORT_SYMBOL
-0x1378aba3 ceph_pg_pool_name_by_id net/ceph/libceph EXPORT_SYMBOL
-0x04cad6f0 ceph_pg_poolid_by_name net/ceph/libceph EXPORT_SYMBOL
-0x92b7b4ce ceph_pg_pool_flags net/ceph/libceph EXPORT_SYMBOL
-0xbd2f79ae ceph_oloc_copy net/ceph/libceph EXPORT_SYMBOL
-0x417a9131 ceph_oloc_destroy net/ceph/libceph EXPORT_SYMBOL
-0x2087719e ceph_oid_copy net/ceph/libceph EXPORT_SYMBOL
-0xdf6ef4a1 ceph_oid_printf net/ceph/libceph EXPORT_SYMBOL
-0x5aeeee62 ceph_oid_aprintf net/ceph/libceph EXPORT_SYMBOL
-0x2101cbc9 ceph_oid_destroy net/ceph/libceph EXPORT_SYMBOL
-0xe34a59f2 ceph_object_locator_to_pg net/ceph/libceph EXPORT_SYMBOL
-0x17c17611 ceph_pg_to_acting_primary net/ceph/libceph EXPORT_SYMBOL
-0x9fefa3cb ceph_calc_file_object_mapping net/ceph/libceph EXPORT_SYMBOL
-0x38f2d94e ceph_file_to_extents net/ceph/libceph EXPORT_SYMBOL
-0xeef6cfa3 ceph_iterate_extents net/ceph/libceph EXPORT_SYMBOL
-0xca80437b ceph_extent_to_file net/ceph/libceph EXPORT_SYMBOL
-0x3c8d7111 ceph_get_num_objects net/ceph/libceph EXPORT_SYMBOL
-0x324f2e86 ceph_auth_is_authenticated net/ceph/libceph EXPORT_SYMBOL
-0xf17550cd __ceph_auth_get_authorizer net/ceph/libceph EXPORT_SYMBOL
-0xad703657 ceph_auth_destroy_authorizer net/ceph/libceph EXPORT_SYMBOL
-0x77ab1ce8 ceph_auth_add_authorizer_challenge net/ceph/libceph EXPORT_SYMBOL
-0xe278a355 ceph_auth_verify_authorizer_reply net/ceph/libceph EXPORT_SYMBOL
-0x9c7240d1 ceph_auth_invalidate_authorizer net/ceph/libceph EXPORT_SYMBOL
-0x215d590b ceph_auth_get_authorizer net/ceph/libceph EXPORT_SYMBOL
-0xfd0f7983 ceph_auth_handle_svc_reply_more net/ceph/libceph EXPORT_SYMBOL
-0xc5db4b6b ceph_auth_handle_svc_reply_done net/ceph/libceph EXPORT_SYMBOL
-0xf0e01041 ceph_auth_handle_bad_authorizer net/ceph/libceph EXPORT_SYMBOL
-0xdfc091f9 ceph_entity_type_name net/ceph/libceph EXPORT_SYMBOL
-0x57baf885 ceph_str_hash net/ceph/libceph EXPORT_SYMBOL
-0x63758856 ceph_str_hash_name net/ceph/libceph EXPORT_SYMBOL
-0xdf6c4729 ceph_put_page_vector net/ceph/libceph EXPORT_SYMBOL
-0x526958be ceph_release_page_vector net/ceph/libceph EXPORT_SYMBOL
-0x33e96efd ceph_alloc_page_vector net/ceph/libceph EXPORT_SYMBOL
-0x166396c6 ceph_copy_user_to_page_vector net/ceph/libceph EXPORT_SYMBOL
-0xe5375048 ceph_copy_to_page_vector net/ceph/libceph EXPORT_SYMBOL
-0x1be6c703 ceph_copy_from_page_vector net/ceph/libceph EXPORT_SYMBOL
-0x1b54d953 ceph_zero_page_vector_range net/ceph/libceph EXPORT_SYMBOL
-0x9ca95932 ceph_create_snap_context net/ceph/libceph EXPORT_SYMBOL
-0xbe3879aa ceph_get_snap_context net/ceph/libceph EXPORT_SYMBOL
-0x86fca7e4 ceph_put_snap_context net/ceph/libceph EXPORT_SYMBOL
-0x9bc6b539 ceph_find_or_create_string net/ceph/libceph EXPORT_SYMBOL
-0xee120c03 ceph_release_string net/ceph/libceph EXPORT_SYMBOL
-0x63b7d177 psample_group_get net/psample/psample EXPORT_SYMBOL_GPL
-0xb40ece59 psample_group_take net/psample/psample EXPORT_SYMBOL_GPL
-0x9cc2fce0 psample_group_put net/psample/psample EXPORT_SYMBOL_GPL
-0x0bddd4c9 psample_sample_packet net/psample/psample EXPORT_SYMBOL_GPL
-0xe9f85853 __ovs_vport_ops_register net/openvswitch/openvswitch EXPORT_SYMBOL_GPL
-0xc8f6d265 ovs_vport_ops_unregister net/openvswitch/openvswitch EXPORT_SYMBOL_GPL
-0x62e40931 ovs_vport_alloc net/openvswitch/openvswitch EXPORT_SYMBOL_GPL
-0x039ceec1 ovs_vport_free net/openvswitch/openvswitch EXPORT_SYMBOL_GPL
-0x7760543e ovs_netdev_link net/openvswitch/openvswitch EXPORT_SYMBOL_GPL
-0x233dff0e ovs_netdev_tunnel_destroy net/openvswitch/openvswitch EXPORT_SYMBOL_GPL
-0x284e07d8 vsock_bind_table net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x9bb6fd09 vsock_connected_table net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xc92f7f50 vsock_table_lock net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x0fb7ae45 vsock_insert_connected net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xbd4e576e vsock_remove_bound net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x42cd3214 vsock_remove_connected net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xacbfc2f6 vsock_find_bound_socket net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x475df9f6 vsock_find_connected_socket net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xb2b67cda vsock_remove_sock net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x69ccf6d5 vsock_for_each_connected_socket net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x4aa5ad29 vsock_add_pending net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xc29b1980 vsock_remove_pending net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x9e4934d8 vsock_enqueue_accept net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x99d3157b vsock_assign_transport net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x90aa8549 vsock_find_cid net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xba0478b7 vsock_create_connected net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x76a99ef4 vsock_stream_has_data net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xc4d18db6 vsock_connectible_has_data net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xcd4c1973 vsock_stream_has_space net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xce0b3335 vsock_data_ready net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x5f02a995 vsock_dgram_recvmsg net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xe2efca70 vsock_connectible_recvmsg net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x767f2477 vsock_core_get_transport net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xc4c7c48a vsock_core_register net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xbf8a8b02 vsock_core_unregister net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x6dc0f3b6 vsock_add_tap net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x084b3e3d vsock_remove_tap net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xd3b65c4b vsock_deliver_tap net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x3d4b0fca vsock_addr_init net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xec96eadf vsock_addr_validate net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x4b99648c vsock_addr_bound net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x0e9bc9b6 vsock_addr_unbind net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xaf2674b5 vsock_addr_equals_addr net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0xb0d7bda7 vsock_addr_cast net/vmw_vsock/vsock EXPORT_SYMBOL_GPL
-0x238dc2bb virtio_transport_deliver_tap_pkt net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x2d6266a5 virtio_transport_inc_tx_pkt net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xf8cd3d6c virtio_transport_get_credit net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x1533ea3e virtio_transport_put_credit net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x06acc1bb virtio_transport_stream_dequeue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xdd140e63 virtio_transport_seqpacket_dequeue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x6298b283 virtio_transport_seqpacket_enqueue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x87007cbd virtio_transport_dgram_dequeue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x80262b9f virtio_transport_stream_has_data net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xc8b4717f virtio_transport_seqpacket_has_data net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x2cd4475a virtio_transport_stream_has_space net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x803657b3 virtio_transport_do_socket_init net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x21aea11c virtio_transport_notify_buffer_size net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x670d29c9 virtio_transport_notify_poll_in net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xc0f99dbe virtio_transport_notify_poll_out net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xb311c6c8 virtio_transport_notify_recv_init net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xbf4a60c1 virtio_transport_notify_recv_pre_block net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x4f6b28e4 virtio_transport_notify_recv_pre_dequeue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x6c0294b3 virtio_transport_notify_recv_post_dequeue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x3e496ff0 virtio_transport_notify_send_init net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xa2427a3a virtio_transport_notify_send_pre_block net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xbff929bc virtio_transport_notify_send_pre_enqueue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x35d40280 virtio_transport_notify_send_post_enqueue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xea2fe4d2 virtio_transport_stream_rcvhiwat net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x5f545b5e virtio_transport_stream_is_active net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x03a81e69 virtio_transport_stream_allow net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xbceb4b0b virtio_transport_dgram_bind net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xbabd30f5 virtio_transport_dgram_allow net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x5df88446 virtio_transport_connect net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xa0dabb61 virtio_transport_shutdown net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xfc1f2d37 virtio_transport_dgram_enqueue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x5c2d39ff virtio_transport_stream_enqueue net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xd060ccd1 virtio_transport_destruct net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x816c8f3f virtio_transport_release net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xdc496785 virtio_transport_recv_pkt net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x2b45ccc9 virtio_transport_purge_skbs net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0xa85092fe virtio_transport_read_skb net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x7e7fa55f virtio_transport_notify_set_rcvlowat net/vmw_vsock/vmw_vsock_virtio_transport_common EXPORT_SYMBOL_GPL
-0x418873cc irq_bypass_register_producer virt/lib/irqbypass EXPORT_SYMBOL_GPL
-0xf6e772c3 irq_bypass_unregister_producer virt/lib/irqbypass EXPORT_SYMBOL_GPL
-0x888c5be5 irq_bypass_register_consumer virt/lib/irqbypass EXPORT_SYMBOL_GPL
-0x3fe35aea irq_bypass_unregister_consumer virt/lib/irqbypass EXPORT_SYMBOL_GPL
diff --git a/current.log b/current.log
deleted file mode 100644
index df22d5d84ca0..000000000000
--- a/current.log
+++ /dev/null
@@ -1,396 +0,0 @@
- block: add a partscan sysfs attribute for disks
- block: add a disk_has_partscan helper
- Docs/admin-guide/mm/damon/usage: fix wrong example of DAMOS filter matching sysfs file
- docs: kernel_include.py: Cope with docutils 0.21
- admin-guide/hw-vuln/core-scheduling: fix return type of PR_SCHED_CORE_GET
- KEYS: trusted: Do not use WARN when encode fails
- remoteproc: mediatek: Make sure IPI buffer fits in L2TCM
- serial: kgdboc: Fix NMI-safety problems from keyboard reset code
- usb: typec: tipd: fix event checking for tps6598x
- usb: typec: ucsi: displayport: Fix potential deadlock
- net: usb: ax88179_178a: fix link status when link is set to down/up
- usb: dwc3: Wait unconditionally after issuing EndXfer command
- binder: fix max_thread type inconsistency
- drm/amdgpu: Fix possible NULL dereference in amdgpu_ras_query_error_status_helper()
- erofs: reliably distinguish block based and fscache mode
- erofs: get rid of erofs_fs_context
- kselftest: Add a ksft_perror() helper
- mmc: core: Add HS400 tuning in HS400es initialization
- KEYS: trusted: Fix memory leak in tpm2_key_encode()
- Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init()
- Bluetooth: L2CAP: Fix slab-use-after-free in l2cap_connect()
- ice: remove unnecessary duplicate checks for VF VSI ID
- ice: pass VSI pointer into ice_vc_isvalid_q_id
- net: ks8851: Fix another TX stall caused by wrong ISR flag handling
- drm/amd/display: Fix division by zero in setup_dsc_config
- smb: smb2pdu.h: Avoid -Wflex-array-member-not-at-end warnings
- ksmbd: add continuous availability share parameter
- cifs: Add tracing for the cifs_tcon struct refcounting
- smb: client: instantiate when creating SFU files
- smb: client: fix NULL ptr deref in cifs_mark_open_handles_for_deleted_file()
- smb3: add trace event for mknod
- smb311: additional compression flag defined in updated protocol spec
- smb311: correct incorrect offset field in compression header
- cifs: Move some extern decls from .c files to .h
- ksmbd: fix potencial out-of-bounds when buffer offset is invalid
- ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16()
- ksmbd: Fix spelling mistake "connction" -> "connection"
- ksmbd: fix possible null-deref in smb_lazy_parent_lease_break_close
- cifs: remove redundant variable assignment
- cifs: fixes for get_inode_info
- cifs: defer close file handles having RH lease
- ksmbd: add support for durable handles v1/v2
- ksmbd: mark SMB2_SESSION_EXPIRED to session when destroying previous session
- smb: common: simplify compression headers
- smb: common: fix fields sizes in compression_pattern_payload_v1
- smb: client: negotiate compression algorithms
- smb3: add dynamic trace point for ioctls
- smb: client: return reparse type in /proc/mounts
- smb: client: set correct d_type for reparse DFS/DFSR and mount point
- smb: client: parse uid, gid, mode and dev from WSL reparse points
- smb: client: introduce SMB2_OP_QUERY_WSL_EA
- smb: client: Fix a NULL vs IS_ERR() check in wsl_set_xattrs()
- smb: client: add support for WSL reparse points
- smb: client: reduce number of parameters in smb2_compound_op()
- smb: client: fix potential broken compound request
- smb: client: move most of reparse point handling code to common file
- smb: client: introduce reparse mount option
- smb: client: retry compound request without reusing lease
- smb: client: do not defer close open handles to deleted files
- smb: client: reuse file lease key in compound operations
- smb: client: get rid of smb311_posix_query_path_info()
- smb: client: parse owner/group when creating reparse points
- smb3: update allocation size more accurately on write completion
- smb: client: handle path separator of created SMB symlinks
- cifs: update the same create_guid on replay
- ksmbd: Add kernel-doc for ksmbd_extract_sharename() function
- cifs: set replay flag for retries of write command
- cifs: commands that are retried should have replay flag set
- smb: client: delete "true", "false" defines
- smb: Fix some kernel-doc comments
- cifs: new mount option called retrans
- smb: client: don't clobber ->i_rdev from cached reparse points
- cifs: new nt status codes from MS-SMB2
- cifs: pick channel for tcon and tdis
- cifs: minor comment cleanup
- cifs: remove redundant variable tcon_exist
- ksmbd: vfs: fix all kernel-doc warnings
- ksmbd: auth: fix most kernel-doc warnings
- cifs: remove unneeded return statement
- cifs: get rid of dup length check in parse_reparse_point()
- cifs: Pass unbyteswapped eof value into SMB2_set_eof()
- smb3: Improve exception handling in allocate_mr_list()
- cifs: fix in logging in cifs_chan_update_iface
- smb: client: handle special files and symlinks in SMB3 POSIX
- smb: client: cleanup smb2_query_reparse_point()
- smb: client: allow creating symlinks via reparse points
- smb: client: optimise reparse point querying
- smb: client: allow creating special files via reparse points
- smb: client: extend smb2_compound_op() to accept more commands
- smb: client: Fix minor whitespace errors and warnings
- smb: client: introduce cifs_sfu_make_node()
- cifs: fix use after free for iface while disabling secondary channels
- Missing field not being returned in ioctl CIFS_IOC_GET_MNT_INFO
- smb3: minor cleanup of session handling code
- smb3: more minor cleanups for session handling routines
- smb3: minor RDMA cleanup
- cifs: print server capabilities in DebugData
- smb: use crypto_shash_digest() in symlink_hash()
- Add definition for new smb3.1.1 command type
- SMB3: clarify some of the unused CreateOption flags
- cifs: Add client version details to NTLM authenticate message
- md: fix kmemleak of rdev->serial
- Revert "selftests/bpf: Add netkit to tc_redirect selftest"
- mm/hugetlb: fix DEBUG_LOCKS_WARN_ON(1) when dissolve_free_hugetlb_folio()
- btrfs: do not wait for short bulk allocation
- keys: Fix overwrite of key expiration on instantiation
- dmaengine: idxd: add a write() method for applications to submit work
- dmaengine: idxd: add a new security check to deal with a hardware erratum
- VFIO: Add the SPR_DSA and SPR_IAX devices to the denylist
- Bluetooth: qca: fix firmware check error path
- Bluetooth: qca: fix info leak when fetching fw build id
- Bluetooth: qca: fix info leak when fetching board id
- Bluetooth: qca: generalise device address check
- Bluetooth: qca: fix NVM configuration parsing
- Bluetooth: qca: add missing firmware sanity checks
- Bluetooth: qca: fix wcn3991 device address check
- Bluetooth: qca: fix invalid device address check
- eventfs: Do not treat events directory different than other directories
- tracefs: Still use mount point as default permissions for instances
- tracefs: Reset permissions on remount if permissions are options
- ksmbd: do not grant v2 lease if parent lease key and epoch are not set
- ksmbd: avoid to send duplicate lease break notifications
- ksmbd: off ipv6only for both ipv4/ipv6 binding
- spi: microchip-core-qspi: fix setting spi bus clock rate
- regulator: core: fix debugfs creation regression
- nvme-pci: Add quirk for broken MSIs
- selftests/mm: fix powerpc ARCH check
- x86/apic: Don't access the APIC when disabling x2APIC
- hwmon: (pmbus/ucd9000) Increase delay from 250 to 500us
- net: fix out-of-bounds access in ops_init
- arm64: dts: qcom: sa8155p-adp: fix SDHC2 CD pin configuration
- drm/amd/display: Fix incorrect DSC instance for MST
- drm/amd/display: Handle Y carry-over in VCP X.Y calculation
- drm/i915/bios: Fix parsing backlight BDB data
- drm/i915/gt: Automate CCS Mode setting during engine resets
- drm/i915/audio: Fix audio time stamp programming for DP
- drm/vmwgfx: Fix invalid reads in fence signaled events
- drm/vmwgfx: Fix Legacy Display Unit
- drm/ttm: Print the memory decryption status just once
- drm/amdkfd: don't allow mapping the MMIO HDP page with large pages
- Revert "drm/nouveau/firmware: Fix SG_DEBUG error with nvkm_firmware_ctor()"
- drm/nouveau/firmware: Fix SG_DEBUG error with nvkm_firmware_ctor()
- mei: me: add lunar lake point M DID
- clk: sunxi-ng: a64: Set minimum and maximum rate for PLL-MIPI
- clk: sunxi-ng: common: Support minimum and maximum rate
- slimbus: qcom-ngd-ctrl: Add timeout for wait operation
- dyndbg: fix old BUG_ON in >control parser
- ASoC: ti: davinci-mcasp: Fix race condition during probe
- ASoC: tegra: Fix DSPK 16-bit playback
- net: bcmgenet: synchronize UMAC_CMD access
- net: bcmgenet: synchronize use of bcmgenet_set_rx_mode()
- net: bcmgenet: synchronize EXT_RGMII_OOB_CTRL access
- xtensa: fix MAKE_PC_FROM_RA second argument
- tipc: fix UAF in error path
- e1000e: change usleep_range to udelay in PHY mdic access
- kmsan: compiler_types: declare __no_sanitize_or_inline
- iio: accel: mxc4005: Interrupt handling fixes
- iio: pressure: Fixes BME280 SPI driver data
- iio:imu: adis16475: Fix sync mode setting
- dt-bindings: iio: health: maxim,max30102: fix compatible check
- workqueue: Fix selection of wake_cpu in kick_pool()
- mptcp: only allow set existing scheduler for net.mptcp.scheduler
- mptcp: ensure snd_nxt is properly initialized on connect
- mm/slab: make __free(kfree) accept error pointers
- maple_tree: fix mas_empty_area_rev() null pointer dereference
- btrfs: set correct ram_bytes when splitting ordered extent
- btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks()
- firewire: ohci: fulfill timestamp for some local asynchronous transaction
- ALSA: hda/realtek: Fix mute led of HP Laptop 15-da3001TU
- usb: typec: tcpm: Check for port partner validity before consuming it
- usb: typec: tcpm: unregister existing source caps before re-registration
- usb: typec: tcpm: clear pd_event queue in PORT_RESET
- usb: dwc3: core: Prevent phy suspend during init
- usb: xhci-plat: Don't include xhci.h
- usb: gadget: f_fs: Fix a race condition when processing setup packets.
- usb: gadget: f_fs: Fix race between aio_cancel() and AIO request complete
- usb: gadget: uvc: use correct buffer size when parsing configfs lists
- usb: gadget: composite: fix OS descriptors w_value logic
- USB: core: Fix access violation during port device removal
- usb: ohci: Prevent missed ohci interrupts
- usb: Fix regression caused by invalid ep0 maxpacket in virtual SuperSpeed device
- usb: typec: ucsi: Fix connector check on init
- usb: typec: ucsi: Check for notifications after init
- Reapply "drm/qxl: simplify qxl_fence_wait"
- firewire: nosy: ensure user_length is taken into account when fetching packet contents
- btrfs: fix kvcalloc() arguments order in btrfs_ioctl_send()
- drm/amdgpu: once more fix the call oder in amdgpu_ttm_move() v2
- drm/amdgpu: Fix comparison in amdgpu_res_cpu_visible
- drm/amd/display: Atom Integrated System Info v2_2 for DCN35
- gpiolib: cdev: fix uninitialised kfifo
- gpiolib: cdev: relocate debounce_period_us from struct gpio_desc
- gpiolib: cdev: Fix use after free in lineinfo_changed_notify
- dm/amd/pm: Fix problems with reboot/shutdown for some SMU 13.0.4/13.0.11 users
- drm/connector: Add \n to message about demoting connector force-probes
- drm/meson: dw-hdmi: add bandgap setting for g12
- drm/meson: dw-hdmi: power up phy on device init
- net: dsa: mv88e6xxx: add phylink_get_caps for the mv88e6320/21 family
- net/smc: fix neighbour and rtable leak in smc_ib_find_route()
- ipv6: prevent NULL dereference in ip6_output()
- ipv6: annotate data-races around cnf.disable_ipv6
- hsr: Simplify code for announcing HSR nodes timer setup
- net-sysfs: convert dev->operstate reads to lockless ones
- ipv6: fib6_rules: avoid possible NULL dereference in fib6_rule_action()
- dt-bindings: net: mediatek: remove wrongly added clocks and SerDes
- rxrpc: Only transmit one ACK per jumbo packet received
- rxrpc: Fix congestion control algorithm
- rxrpc: Fix the names of the fields in the ACK trailer struct
- selftests: test_bridge_neigh_suppress.sh: Fix failures due to duplicate MAC
- selftests/net: convert test_bridge_neigh_suppress.sh to run it in unique namespace
- ipv6: Fix potential uninit-value access in __ip6_make_skb()
- net: bridge: fix corrupted ethernet header on multicast-to-unicast
- nfc: nci: Fix kcov check in nci_rx_work()
- phonet: fix rtm_phonet_notify() skb allocation
- hwmon: (corsair-cpro) Protect ccp->wait_input_report with a spinlock
- hwmon: (corsair-cpro) Use complete_all() instead of complete() in ccp_raw_event()
- hwmon: (corsair-cpro) Use a separate buffer for sending commands
- rtnetlink: Correct nested IFLA_VF_VLAN_LIST attribute validation
- net: ks8851: Queue RX packets in IRQ handler instead of disabling BHs
- Bluetooth: l2cap: fix null-ptr-deref in l2cap_chan_timeout
- Bluetooth: HCI: Fix potential null-ptr-deref
- Bluetooth: msft: fix slab-use-after-free in msft_do_close()
- Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout
- tcp: Use refcount_inc_not_zero() in tcp_twsk_unique().
- tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets
- ARM: 9381/1: kasan: clear stale stack poison
- xfrm: Preserve vlan tags for transport mode software GRO
- qibfs: fix dentry leak
- SUNRPC: add a missing rpc_stat for TCP TLS
- blk-iocost: do not WARN if iocg was already offlined
- net:usb:qmi_wwan: support Rolling modules
- drm/radeon: silence UBSAN warning (v3)
- platform/x86: ISST: Add Granite Rapids-D to HPM CPU list
- drm/nouveau/dp: Don't probe eDP ports twice harder
- gpio: lpc32xx: fix module autoloading
- fs/9p: drop inodes immediately on non-.L too
- clk: Don't hold prepare_lock when calling kref_put()
- gpio: crystalcove: Use -ENOTSUPP consistently
- gpio: wcove: Use -ENOTSUPP consistently
- powerpc/crypto/chacha-p10: Fix failure on non Power10
- 9p: explicitly deny setlease attempts
- fs/9p: fix the cache always being enabled on files with qid flags
- fs/9p: translate O_TRUNC into OTRUNC
- fs/9p: only translate RWX permissions for plain 9P2000
- iommu: mtk: fix module autoloading
- smb3: fix broken reconnect when password changing on the server by allowing password rotation
- Drivers: hv: vmbus: Don't free ring buffers that couldn't be re-encrypted
- uio_hv_generic: Don't free decrypted memory
- hv_netvsc: Don't free decrypted memory
- Drivers: hv: vmbus: Track decrypted status in vmbus_gpadl
- Drivers: hv: vmbus: Leak pages if set_memory_encrypted() fails
- selftests: timers: Fix valid-adjtimex signed left-shift undefined behavior
- amd/amdkfd: sync all devices to wait all processes being evicted
- drm/amdgpu: Fix VCN allocation in CPX partition
- drm/amd/display: Skip on writeback when it's not applicable
- drm/amdgpu: implement IRQ_STATE_ENABLE for SDMA v4.4.2
- drm/amdgpu: Refine IB schedule error logging
- tools/power/turbostat: Fix uncore frequency file string
- MIPS: scall: Save thread_info.syscall unconditionally on entry
- gpu: host1x: Do not setup DMA for virtual devices
- blk-iocost: avoid out of bounds shift
- scsi: target: Fix SELinux error when systemd-modules loads the target module
- memblock tests: fix undefined reference to `BIT'
- memblock tests: fix undefined reference to `panic'
- memblock tests: fix undefined reference to `early_pfn_to_nid'
- btrfs: always clear PERTRANS metadata during commit
- btrfs: make btrfs_clear_delalloc_extent() free delalloc reserve
- tools/power turbostat: Fix warning upon failed /dev/cpu_dma_latency read
- tools/power turbostat: Print ucode revision only if valid
- tools/power turbostat: Fix Bzy_MHz documentation typo
- tools/power turbostat: Increase the limit for fd opened
- tools/power turbostat: Fix added raw MSR output
- firewire: ohci: mask bus reset interrupts between ISR and bottom half
- ata: sata_gemini: Check clk_enable() result
- vboxsf: explicitly deny setlease attempts
- net: bcmgenet: Reset RBUF on first open
- ALSA: line6: Zero-initialize message buffers
- scsi: ufs: core: Fix MCQ mode dev command timeout
- scsi: ufs: core: WLUN suspend dev/link state error recovery
- regulator: tps65132: Add of_match table
- ASoC: SOF: Intel: hda-dsp: Skip IMR boot on ACE platforms in case of S3 suspend
- kbuild: Disable KCSAN for autogenerated *.mod.c intermediaries
- selftests/ftrace: Fix event filter target_func selection
- bpf: Check bloom filter map value size
- drm/amdkfd: range check cp bad op exception interrupts
- drm/amdkfd: Check cgroup when returning DMABuf info
- btrfs: return accurate error code on open failure in open_fs_devices()
- scsi: bnx2fc: Remove spin_lock_bh while releasing resources after upload
- scsi: mpi3mr: Avoid memcpy field-spanning write WARNING
- net: mark racy access on sk->sk_rcvbuf
- wifi: iwlwifi: mvm: guard against invalid STA ID on removal
- wifi: iwlwifi: read txq->read_ptr under lock
- wifi: mac80211: fix prep_connection error path
- wifi: cfg80211: fix rdev_dump_mpp() arguments order
- wifi: mac80211: fix ieee80211_bss_*_flags kernel-doc
- gfs2: Fix invalid metadata access in punch_hole
- scsi: lpfc: Use a dedicated lock for ras_fwlog state
- scsi: lpfc: Release hbalock before calling lpfc_worker_wake_up()
- scsi: lpfc: Replace hbalock with ndlp lock in lpfc_nvme_unregister_port()
- scsi: lpfc: Update lpfc_ramp_down_queue_handler() logic
- scsi: lpfc: Remove IRQF_ONESHOT flag from threaded IRQ handling
- scsi: lpfc: Move NPIV's transport unregistration to after resource clean up
- scsi: ufs: core: Fix MCQ MAC configuration
- KVM: arm64: vgic-v2: Check for non-NULL vCPU in vgic_v2_parse_attr()
- KVM: arm64: vgic-v2: Use cpuid from userspace as vcpu_id
- swiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y
- powerpc/pseries/iommu: LPAR panics during boot up with a frozen PE
- powerpc/pseries: make max polling consistent for longer H_CALLs
- clk: sunxi-ng: h6: Reparent CPUX during PLL CPUX rate change
- clk: qcom: smd-rpm: Restore msm8976 num_clk
- net: gro: add flush check in udp_gro_receive_segment
- net: gro: fix udp bad offset in socket lookup by adding {inner_}network_offset to napi_gro_cb
- net: gro: parse ipv6 ext headers without frag0 invalidation
- ipv4: Fix uninit-value access in __ip_make_skb()
- drm/panel: ili9341: Use predefined error codes
- drm/panel: ili9341: Respect deferred probe
- drm/panel: ili9341: Correct use of device property APIs
- s390/qeth: Fix kernel panic after setting hsuid
- vxlan: Pull inner IP header in vxlan_rcv().
- tipc: fix a possible memleak in tipc_buf_append
- rxrpc: Clients must accept conn from any address
- net: core: reject skb_copy(_expand) for fraglist GSO skbs
- net: bridge: fix multicast-to-unicast with fraglist GSO
- spi: fix null pointer dereference within spi_sync
- drm/amdgpu: fix doorbell regression
- net: dsa: mv88e6xxx: Fix number of databases for 88E6141 / 88E6341
- cxgb4: Properly lock TX queue for the selftest.
- s390/cio: Ensure the copied buf is NUL terminated
- ALSA: hda: intel-sdw-acpi: fix usage of device_get_named_child_node()
- ASoC: meson: cards: select SND_DYNAMIC_MINORS
- ASoC: meson: axg-tdm-interface: manage formatters in trigger
- ASoC: meson: axg-card: make links nonatomic
- ASoC: meson: axg-fifo: use threaded irq to check periods
- ASoC: meson: axg-fifo: use FIELD helpers
- vxlan: Add missing VNI filter counter update in arp_reduce().
- vxlan: Fix racy device stats updates.
- net: qede: use return from qede_parse_actions()
- net: qede: use return from qede_parse_flow_attr() for flow_spec
- net: qede: use return from qede_parse_flow_attr() for flower
- net: qede: sanitize 'rc' in qede_add_tc_flower_fltr()
- ALSA: emu10k1: fix E-MU dock initialization
- ALSA: emu10k1: move the whole GPIO event handling to the workqueue
- ALSA: emu10k1: factor out snd_emu1010_load_dock_firmware()
- ALSA: emu10k1: fix E-MU card dock presence monitoring
- Fix a potential infinite loop in extract_user_to_sg()
- s390/vdso: Add CFI for RA register to asm macro vdso_func
- net l2tp: drop flow hash on forward
- nsh: Restore skb->{protocol,data,mac_header} for outer header in nsh_gso_segment().
- octeontx2-af: avoid off-by-one read from userspace
- bna: ensure the copied buf is NUL terminated
- xdp: use flags field to disambiguate broadcast redirect
- s390/mm: Fix clearing storage keys for huge pages
- s390/mm: Fix storage key clearing for guest huge pages
- ASoC: codecs: wsa881x: set clk_stop_mode1 flag
- ASoC: Intel: avs: Set name of control as in topology
- riscv, bpf: Fix incorrect runtime stats
- bpf, arm64: Fix incorrect runtime stats
- spi: axi-spi-engine: fix version format string
- spi: axi-spi-engine: use common AXI macros
- spi: axi-spi-engine: move msg state to new struct
- spi: axi-spi-engine: use devm_spi_alloc_host()
- spi: axi-spi-engine: simplify driver data allocation
- spi: spi-axi-spi-engine: Use helper function devm_clk_get_enabled()
- bpf: Fix a verifier verbose message
- nvme: fix warn output about shared namespaces without CONFIG_NVME_MULTIPATH
- ASoC: SOF: Intel: add default firmware library path for LNL
- ASoC: SOF: Introduce generic names for IPC types
- regmap: Add regmap_read_bypassed()
- bpf, skmsg: Fix NULL pointer dereference in sk_psock_skb_ingress_enqueue
- bpf, kconfig: Fix DEBUG_INFO_BTF_MODULES Kconfig definition
- regulator: change devm_regulator_get_enable_optional() stub to return Ok
- regulator: change stubbed devm_regulator_get_enable to return Ok
- regulator: mt6360: De-capitalize devicetree regulator subnodes
- pinctrl: devicetree: fix refcount leak in pinctrl_dt_to_map()
- power: supply: mt6360_charger: Fix of_match for usb-otg-vbus regulator
- power: rt9455: hide unused rt9455_boost_voltage_values
- pinctrl: baytrail: Fix selecting gpio pinctrl state
- nfs: Handle error of rpc_proc_register() in nfs_net_init().
- nfs: make the rpc_stat per net namespace
- nfs: expose /proc/net/sunrpc/nfs in net namespaces
- sunrpc: add a struct rpc_stats arg to rpc_create_args
- pinctrl: mediatek: paris: Rework support for PIN_CONFIG_{INPUT,OUTPUT}_ENABLE
- pinctrl: mediatek: paris: Fix PIN_CONFIG_INPUT_SCHMITT_ENABLE readback
- pinctrl: core: delete incorrect free in pinctrl_enable()
- pinctrl/meson: fix typo in PDM's pin name
- pinctrl: pinctrl-aspeed-g6: Fix register offset for pinconf of GPIOR-T
- Bluetooth: qca: add support for QCA2066
- eeprom: at24: fix memory corruption race condition
- eeprom: at24: Probe for DDR3 thermal sensor in the SPD case
- rust: kernel: require `Send` for `Module` implementations
- wifi: nl80211: don't free NULL coalescing rule
- rust: macros: fix soundness issue in `module!` macro
- rust: module: place generated init_module() function in .init.text
- mtd: limit OTP NVMEM cell parse to non-NAND devices
- nvmem: add explicit config option to read old syntax fixed OF cells
- dmaengine: Revert "dmaengine: pl330: issue_pending waits until WFP state"
- dmaengine: pl330: issue_pending waits until WFP state
--
2.46.1
2
1
Zhang Qiao (5):
sched: Add cmdline sched_soft_domain switch for soft domain feature
sched: Rework cpu.soft_domain_nr_cpu
sched: Fix soft domain group memleak
sched: Consider task affinity in wake_soft_domain()
sched: Fix might sleep in atomic section issue
kernel/sched/core.c | 16 ++--
kernel/sched/fair.c | 63 +++++++--------
kernel/sched/sched.h | 17 +++-
kernel/sched/soft_domain.c | 162 ++++++++++++++++++++++++++++++++-----
4 files changed, 199 insertions(+), 59 deletions(-)
--
2.18.0.huawei.25
2
6

[openeuler:OLK-6.6 2381/2381] drivers/gpu/drm/phytium/phytium_gem.c:174:5: warning: no previous prototype for function 'phytium_gem_prime_mmap'
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: edaf3ccc9feb52d789c59499a6d681cdcd3fb9c5
commit: e2cdf30a3e12bb55e76d60e99c0abd7db2917b5c [2381/2381] drm/phytium: Fix some Bugs in Phytium Display Engine
config: arm64-allmodconfig
compiler: clang version 19.1.7 (https://github.com/llvm/llvm-project cd708029e0b2869e80abe31ddb175f7c35361f90)
reproduce (this is a W=1 build):
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506110730.xt79RnwS-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/gpu/drm/phytium/phytium_gem.c:22:5: warning: no previous prototype for function 'phytium_memory_pool_alloc' [-Wmissing-prototypes]
22 | int phytium_memory_pool_alloc(struct phytium_display_private *priv, void **pvaddr,
| ^
drivers/gpu/drm/phytium/phytium_gem.c:22:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
22 | int phytium_memory_pool_alloc(struct phytium_display_private *priv, void **pvaddr,
| ^
| static
drivers/gpu/drm/phytium/phytium_gem.c:37:6: warning: no previous prototype for function 'phytium_memory_pool_free' [-Wmissing-prototypes]
37 | void phytium_memory_pool_free(struct phytium_display_private *priv, void *vaddr, uint64_t size)
| ^
drivers/gpu/drm/phytium/phytium_gem.c:37:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
37 | void phytium_memory_pool_free(struct phytium_display_private *priv, void *vaddr, uint64_t size)
| ^
| static
drivers/gpu/drm/phytium/phytium_gem.c:161:5: warning: no previous prototype for function 'phytium_gem_prime_vmap' [-Wmissing-prototypes]
161 | int phytium_gem_prime_vmap(struct drm_gem_object *obj, struct iosys_map *map)
| ^
drivers/gpu/drm/phytium/phytium_gem.c:161:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
161 | int phytium_gem_prime_vmap(struct drm_gem_object *obj, struct iosys_map *map)
| ^
| static
drivers/gpu/drm/phytium/phytium_gem.c:170:6: warning: no previous prototype for function 'phytium_gem_prime_vunmap' [-Wmissing-prototypes]
170 | void phytium_gem_prime_vunmap(struct drm_gem_object *obj, struct iosys_map *map)
| ^
drivers/gpu/drm/phytium/phytium_gem.c:170:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
170 | void phytium_gem_prime_vunmap(struct drm_gem_object *obj, struct iosys_map *map)
| ^
| static
>> drivers/gpu/drm/phytium/phytium_gem.c:174:5: warning: no previous prototype for function 'phytium_gem_prime_mmap' [-Wmissing-prototypes]
174 | int phytium_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
| ^
drivers/gpu/drm/phytium/phytium_gem.c:174:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
174 | int phytium_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
| ^
| static
drivers/gpu/drm/phytium/phytium_gem.c:186:5: warning: no previous prototype for function 'phytium_dma_transfer' [-Wmissing-prototypes]
186 | int phytium_dma_transfer(struct drm_device *drm_dev, int dev_to_mem, void *addr,
| ^
drivers/gpu/drm/phytium/phytium_gem.c:186:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
186 | int phytium_dma_transfer(struct drm_device *drm_dev, int dev_to_mem, void *addr,
| ^
| static
6 warnings generated.
--
drivers/gpu/drm/phytium/pe220x_dc.c:79:6: warning: no previous prototype for function 'pe220x_dc_hw_vram_init' [-Wmissing-prototypes]
79 | void pe220x_dc_hw_vram_init(struct phytium_display_private *priv, resource_size_t vram_addr,
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:79:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
79 | void pe220x_dc_hw_vram_init(struct phytium_display_private *priv, resource_size_t vram_addr,
| ^
| static
drivers/gpu/drm/phytium/pe220x_dc.c:93:6: warning: no previous prototype for function 'pe220x_dc_hw_config_pix_clock' [-Wmissing-prototypes]
93 | void pe220x_dc_hw_config_pix_clock(struct drm_crtc *crtc, int clock)
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:93:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
93 | void pe220x_dc_hw_config_pix_clock(struct drm_crtc *crtc, int clock)
| ^
| static
drivers/gpu/drm/phytium/pe220x_dc.c:110:6: warning: no previous prototype for function 'pe220x_dc_hw_reset' [-Wmissing-prototypes]
110 | void pe220x_dc_hw_reset(struct drm_crtc *crtc)
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:110:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
110 | void pe220x_dc_hw_reset(struct drm_crtc *crtc)
| ^
| static
drivers/gpu/drm/phytium/pe220x_dc.c:231:5: warning: no previous prototype for function 'pe220x_dc_hw_fb_format_check' [-Wmissing-prototypes]
231 | int pe220x_dc_hw_fb_format_check(const struct drm_mode_fb_cmd2 *mode_cmd, int count)
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:231:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
231 | int pe220x_dc_hw_fb_format_check(const struct drm_mode_fb_cmd2 *mode_cmd, int count)
| ^
| static
drivers/gpu/drm/phytium/pe220x_dc.c:243:6: warning: no previous prototype for function 'pe220x_dc_hw_plane_get_primary_format' [-Wmissing-prototypes]
243 | void pe220x_dc_hw_plane_get_primary_format(const uint64_t **format_modifiers,
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:243:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
243 | void pe220x_dc_hw_plane_get_primary_format(const uint64_t **format_modifiers,
| ^
| static
>> drivers/gpu/drm/phytium/pe220x_dc.c:252:6: warning: no previous prototype for function 'pe220x_dc_bmc_hw_plane_get_primary_format' [-Wmissing-prototypes]
252 | void pe220x_dc_bmc_hw_plane_get_primary_format(const uint64_t **format_modifiers,
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:252:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
252 | void pe220x_dc_bmc_hw_plane_get_primary_format(const uint64_t **format_modifiers,
| ^
| static
drivers/gpu/drm/phytium/pe220x_dc.c:261:6: warning: no previous prototype for function 'pe220x_dc_hw_plane_get_cursor_format' [-Wmissing-prototypes]
261 | void pe220x_dc_hw_plane_get_cursor_format(const uint64_t **format_modifiers,
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:261:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
261 | void pe220x_dc_hw_plane_get_cursor_format(const uint64_t **format_modifiers,
| ^
| static
drivers/gpu/drm/phytium/pe220x_dc.c:270:6: warning: no previous prototype for function 'pe220x_dc_hw_update_primary_hi_addr' [-Wmissing-prototypes]
270 | void pe220x_dc_hw_update_primary_hi_addr(struct drm_plane *plane)
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:270:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
270 | void pe220x_dc_hw_update_primary_hi_addr(struct drm_plane *plane)
| ^
| static
drivers/gpu/drm/phytium/pe220x_dc.c:287:6: warning: no previous prototype for function 'pe220x_dc_hw_update_cursor_hi_addr' [-Wmissing-prototypes]
287 | void pe220x_dc_hw_update_cursor_hi_addr(struct drm_plane *plane, uint64_t iova)
| ^
drivers/gpu/drm/phytium/pe220x_dc.c:287:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
287 | void pe220x_dc_hw_update_cursor_hi_addr(struct drm_plane *plane, uint64_t iova)
| ^
| static
9 warnings generated.
vim +/phytium_gem_prime_mmap +174 drivers/gpu/drm/phytium/phytium_gem.c
169
> 170 void phytium_gem_prime_vunmap(struct drm_gem_object *obj, struct iosys_map *map)
171 {
172 }
173
> 174 int phytium_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
175 {
176 return phytium_gem_mmap_obj(obj, vma);
177 }
178
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10] BUILD REGRESSION 90ff3e07cc268a8e40bd578dcc4907a3db419c52
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-5.10
branch HEAD: 90ff3e07cc268a8e40bd578dcc4907a3db419c52 !16640 IMA: use real_inode to get the i_version
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505211008.Lhrh17Cr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280024.8UbNlKSa-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280046.3lWnWdOg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505301434.xq8uzhGR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506042153.UZ29KeGA-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506101624.VyZdjKoM-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506101929.qhZqxH6c-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506102302.7m25k19G-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506110211.qecuZ8ix-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202505291536.8a44hWAc-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202506011207.GF5fjCi8-lkp@intel.com
drivers/irqchip/irq-gic-v3-its.c:524:6: warning: no previous prototype for 'build_devid_pools' [-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:403:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:546:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:900:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:946:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1060:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:160:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:201:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:29:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:51:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:77:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:132:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:244:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:404:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:86:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:884:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1582:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1664:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1633:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:148:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:37:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:89:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:308:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:786:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:26:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:29:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:610:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1059:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2020:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2041:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2101:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:212:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2464:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2828:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2937:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3024:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3280:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3335:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:336:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3479:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:352:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:364:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3822:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:750:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:877:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:893:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1174:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1232:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1313:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:579:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:679:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:731:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:989:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:155:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:205:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2701:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:364:5: error: no previous prototype for function 'ps3_recovery_state_transfer' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:73:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:83:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:89:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:408:5: error: no previous prototype for function 'ps3_sas_update_phy_info' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1111:5: error: no previous prototype for function 'ps3_wait_for_outstanding_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:877:6: error: no previous prototype for function 'ps3_set_task_manager_busy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1959:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
kernel/sched/bpf_sched.c:158:5: warning: "CONFIG_FAIR_GROUP_SCHED" is not defined, evaluates to 0 [-Wundef]
mm/damon/core-test.h:284:2: warning: comparison of distinct pointer types ('typeof (__left) *' (aka 'unsigned int *') and 'typeof (__right) *' (aka 'int *')) [-Wcompare-distinct-pointer-types]
mm/hugetlb.c:2223:9: warning: variable 'gfp' set but not used [-Wunused-but-set-variable]
mm/khugepaged.c:1703: warning: Function parameter or member 'reliable' not described in 'collapse_file'
mm/page_alloc.c: linux/vmalloc.h is included more than once.
mm/page_alloc.c:3040:6: warning: no previous prototype for '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:3040:6: warning: no previous prototype for function '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:6794:23: warning: no previous prototype for function 'arch_memmap_init' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for function '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/process_vm_access.c: linux/compat.h is included more than once.
mm/slub.o: warning: objtool: kmem_cache_free()+0x43a: unreachable instruction
Unverified Error/Warning (likely false positive, kindly check if interested):
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-conn-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-filters: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/idle-states.yaml: idle-state-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,mode: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,slew-percent: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/display/allwinner,sun4i-a10-tcon.yaml: allwinner,tcon-channel: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml: adi,reference-select: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: label: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,avg-samples: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,decimation: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,hw-settle-time: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,pre-scaling: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-clk-src: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-names: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channels: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,filter-order: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,datarate: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,gain: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml: adi,ch-func: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,cold-junction-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-rtd: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-steinhart: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermistor: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermocouple: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,excitation-current-nanoamp: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,ideal-factor-value: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,number-of-wires: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rsense-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rtd-curve: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,sensor-type: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml: affinity: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp50xx.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: chan-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: led-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: max-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: color: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: function: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: rohm,led-compatible: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/imx219.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/ov8856.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-bus-width: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAH: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAS: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAW: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tBP: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tSTRV: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml: slew-rate: Missing additionalProperties/unevaluatedProperties constraint
drivers/irqchip/irq-gic-v3-its.c: linux/pci.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x0-in-asm
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x1-in-asm
| `-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x2-in-asm
|-- arm64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-002-20250610
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-004-20250610
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x0-in-asm
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x1-in-asm
| `-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x2-in-asm
|-- arm64-randconfig-051-20250610
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-052-20250610
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-053-20250610
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-054-20250610
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-055-20250610
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-r133-20250610
| |-- arch-arm64-mm-pmem_reserve.c:sparse:sparse:symbol-pmem_res-was-not-declared.-Should-it-be-static
| |-- drivers-net-ub-dev-network_mgmt-.-ip_notify-ip_notify.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-char-usertype-mask-got-restricted-__be32-usertype-netmask
| |-- drivers-net-ub-dev-network_mgmt-.-ip_notify-ip_notify.c:sparse:sparse:incorrect-type-in-initializer-(different-base-types)-expected-restricted-__be32-usertype-netmask-got-unsigned-char-ifa_prefixlen
| |-- drivers-net-ub-dev-network_mgmt-.-ip_notify-ip_notify.c:sparse:sparse:incorrect-type-in-initializer-(different-base-types)-expected-restricted-__be32-usertype-netmask-got-unsigned-int-usertype-prefix_
| |-- kernel-sched-bpf_sched.c:sparse:sparse:undefined-preprocessor-identifier-CONFIG_FAIR_GROUP_SCHED
| |-- kernel-sched-bpf_sched.c:warning:CONFIG_FAIR_GROUP_SCHED-is-not-defined-evaluates-to
| |-- net-ipv4-sysctl_net_ipv4.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-got-void-noderef-__user-buffer
| `-- net-ipv4-sysctl_net_ipv4.c:sparse:sparse:incorrect-type-in-initializer-(incompatible-argument-(different-address-spaces))-expected-int-(-usertype-proc_handler-)(-...-)-got-int-(-)(-...-)
|-- x86_64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:linux-pci.h-is-included-more-than-once.
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-page_alloc.c:linux-vmalloc.h-is-included-more-than-once.
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
| `-- mm-process_vm_access.c:linux-compat.h-is-included-more-than-once.
|-- x86_64-allyesconfig
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-001-20250610
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-002-20250610
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-003-20250610
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-004-20250610
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-005-20250610
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-006-20250610
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-defconfig
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-161-20250611
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
`-- x86_64-rhel-9.4-rust
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
|-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
`-- mm-slub.o:warning:objtool:kmem_cache_free:unreachable-instruction
elapsed time: 733m
configs tested: 16
configs skipped: 118
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 randconfig-001-20250610 clang-21
arm64 randconfig-002-20250610 gcc-11.5.0
arm64 randconfig-003-20250610 clang-21
arm64 randconfig-004-20250610 clang-18
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250610 clang-20
x86_64 buildonly-randconfig-002-20250610 gcc-12
x86_64 buildonly-randconfig-003-20250610 clang-20
x86_64 buildonly-randconfig-004-20250610 clang-20
x86_64 buildonly-randconfig-005-20250610 gcc-12
x86_64 buildonly-randconfig-006-20250610 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2381/2381] drivers/i2c/busses/i2c-zhaoxin-smbus.c:78:16: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: edaf3ccc9feb52d789c59499a6d681cdcd3fb9c5
commit: 08d91e70564c8af05a673fef3dbae0b2278529fd [2381/2381] i2c: smbus: Add support for Zhaoxin SMBUS controller
config: x86_64-buildonly-randconfig-006-20250611
compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247)
rustc: rustc 1.73.0 (cc66ad468 2023-10-03)
reproduce (this is a W=1 build):
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506110323.W8vxCje1-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/i2c/busses/i2c-zhaoxin-smbus.c:12:
In file included from include/linux/i2c.h:19:
In file included from include/linux/regulator/consumer.h:35:
In file included from include/linux/suspend.h:5:
In file included from include/linux/swap.h:9:
In file included from include/linux/memcontrol.h:20:
In file included from include/linux/mm.h:2247:
include/linux/vmstat.h:522:36: warning: arithmetic between different enumeration types ('enum node_stat_item' and 'enum lru_list') [-Wenum-enum-conversion]
522 | return node_stat_name(NR_LRU_BASE + lru) + 3; // skip "nr_"
| ~~~~~~~~~~~ ^ ~~~
>> drivers/i2c/busses/i2c-zhaoxin-smbus.c:78:16: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
78 | smb->status = inb(smb->base + ZXSMB_STS);
| ^
>> drivers/i2c/busses/i2c-zhaoxin-smbus.c:83:2: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
83 | outb(smb->status, smb->base + ZXSMB_STS);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:96:3: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
96 | outb(ZXSMB_KILL_PRG, smb->base + ZXSMB_CTL);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:111:15: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
111 | u8 status = inb(smb->base + ZXSMB_STS);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:115:4: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
115 | outb(status, smb->base + ZXSMB_STS);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:137:12: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
137 | status = inb(smb->base + ZXSMB_STS);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:146:2: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
146 | outb(status, smb->base + ZXSMB_STS);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:158:8: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
158 | tmp = inb(base + ZXSMB_STS);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:160:3: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
160 | outb(tmp, base + ZXSMB_STS);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:181:2: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
181 | outb(tmp, base + ZXSMB_CTL);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:199:2: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
199 | outb(0, smb->base + ZXSMB_CTL);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:220:4: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
220 | outb(command, base + ZXSMB_CMD);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:246:3: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
246 | inb(base + ZXSMB_CTL);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:259:2: error: call to undeclared function 'outb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
259 | outb(((addr & 0x7f) << 1) | read, base + ZXSMB_ADD);
| ^
drivers/i2c/busses/i2c-zhaoxin-smbus.c:276:16: error: call to undeclared function 'inb'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
276 | data->byte = inb(base + ZXSMB_DAT0);
| ^
1 warning and 15 errors generated.
vim +/inb +78 drivers/i2c/busses/i2c-zhaoxin-smbus.c
73
74 static irqreturn_t zxsmb_irq_handle(int irq, void *dev_id)
75 {
76 struct zxsmb *smb = (struct zxsmb *)dev_id;
77
> 78 smb->status = inb(smb->base + ZXSMB_STS);
79 if ((smb->status & ZXSMB_STS_MASK) == 0)
80 return IRQ_NONE;
81
82 /* clear status */
> 83 outb(smb->status, smb->base + ZXSMB_STS);
84 complete(&smb->complete);
85
86 return IRQ_HANDLED;
87 }
88
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10 2954/2954] drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:407:30: sparse: sparse: incorrect type in assignment (different base types)
by kernel test robot 11 Jun '25
by kernel test robot 11 Jun '25
11 Jun '25
Hi Zhongyuan,
First bad commit (maybe != root cause):
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: 695becd47b5fb077a9c94080f467eca7ee89ff8f [2954/2954] network_mgmt: Modified OLK5.10 ub compilation missing header files.
config: arm64-randconfig-r133-20250610
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce:
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506110211.qecuZ8ix-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:311:5: sparse: sparse: symbol 'ip_notify_sysfs_create' was not declared. Should it be static?
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:340:6: sparse: sparse: symbol 'ip_notify_sysfs_destroy' was not declared. Should it be static?
>> drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:407:30: sparse: sparse: incorrect type in assignment (different base types) @@ expected unsigned char [usertype] mask @@ got restricted __be32 [usertype] netmask @@
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:407:30: sparse: expected unsigned char [usertype] mask
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:407:30: sparse: got restricted __be32 [usertype] netmask
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:378:16: sparse: sparse: symbol 'ub_ipv4_create_ip_notify_pkt' was not declared. Should it be static?
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:444:30: sparse: sparse: incorrect type in assignment (different base types) @@ expected unsigned char [usertype] mask @@ got restricted __be32 [usertype] netmask @@
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:444:30: sparse: expected unsigned char [usertype] mask
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:444:30: sparse: got restricted __be32 [usertype] netmask
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:415:16: sparse: sparse: symbol 'ub_ipv6_create_ip_notify_pkt' was not declared. Should it be static?
>> drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:498:29: sparse: sparse: incorrect type in initializer (different base types) @@ expected restricted __be32 [usertype] netmask @@ got unsigned char ifa_prefixlen @@
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:498:29: sparse: expected restricted __be32 [usertype] netmask
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:498:29: sparse: got unsigned char ifa_prefixlen
>> drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:546:30: sparse: sparse: incorrect type in initializer (different base types) @@ expected restricted __be32 [usertype] netmask @@ got unsigned int [usertype] prefix_len @@
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:546:30: sparse: expected restricted __be32 [usertype] netmask
drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c:546:30: sparse: got unsigned int [usertype] prefix_len
vim +407 drivers/net/ub/dev/network_mgmt/./ip_notify/ip_notify.c
0f9f9f6603b274 Wenwu Yao 2023-07-20 377
0f9f9f6603b274 Wenwu Yao 2023-07-20 378 struct sk_buff *ub_ipv4_create_ip_notify_pkt(struct net_device *ndev,
0f9f9f6603b274 Wenwu Yao 2023-07-20 379 __be32 src_ip, const u8 *src_hw,
0f9f9f6603b274 Wenwu Yao 2023-07-20 380 __be32 netmask)
0f9f9f6603b274 Wenwu Yao 2023-07-20 381 {
0f9f9f6603b274 Wenwu Yao 2023-07-20 382 int hlen = LL_RESERVED_SPACE(ndev);
0f9f9f6603b274 Wenwu Yao 2023-07-20 383 int tlen = ndev->needed_tailroom;
0f9f9f6603b274 Wenwu Yao 2023-07-20 384 struct ip_notify_hdr *ipn_hdr_v4;
0f9f9f6603b274 Wenwu Yao 2023-07-20 385 struct sk_buff *skb;
0f9f9f6603b274 Wenwu Yao 2023-07-20 386 u8 dest_hw[UBL_ALEN];
0f9f9f6603b274 Wenwu Yao 2023-07-20 387
0f9f9f6603b274 Wenwu Yao 2023-07-20 388 skb = alloc_skb(ip_notify_hdr_len() + hlen + tlen, GFP_ATOMIC);
0f9f9f6603b274 Wenwu Yao 2023-07-20 389 if (!skb)
0f9f9f6603b274 Wenwu Yao 2023-07-20 390 return NULL;
0f9f9f6603b274 Wenwu Yao 2023-07-20 391
0f9f9f6603b274 Wenwu Yao 2023-07-20 392 skb_reserve(skb, LL_RESERVED_SPACE(ndev));
0f9f9f6603b274 Wenwu Yao 2023-07-20 393 skb_reset_network_header(skb);
0f9f9f6603b274 Wenwu Yao 2023-07-20 394 ipn_hdr_v4 = (struct ip_notify_hdr *)skb_put(skb, ip_notify_hdr_len());
0f9f9f6603b274 Wenwu Yao 2023-07-20 395 memset(ipn_hdr_v4, 0, ip_notify_hdr_len());
0f9f9f6603b274 Wenwu Yao 2023-07-20 396 skb->dev = ndev;
0f9f9f6603b274 Wenwu Yao 2023-07-20 397 skb->protocol = htons(ETH_P_UB);
0f9f9f6603b274 Wenwu Yao 2023-07-20 398 src_hw = ndev->dev_addr;
0f9f9f6603b274 Wenwu Yao 2023-07-20 399 memset(dest_hw, 0xff, UBL_ALEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 400
0f9f9f6603b274 Wenwu Yao 2023-07-20 401 /* fill the device header for the ipv4 notify frame */
0f9f9f6603b274 Wenwu Yao 2023-07-20 402 ipn_hdr_v4->cfg = UB_NOIP_CFG_TYPE;
0f9f9f6603b274 Wenwu Yao 2023-07-20 403 ipn_hdr_v4->protocol = htons(SUB_PROTOCOL_IP_NOTIFY);
0f9f9f6603b274 Wenwu Yao 2023-07-20 404 memcpy(ipn_hdr_v4->dest_guid, dest_hw, UBL_ALEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 405 memcpy(ipn_hdr_v4->src_guid, ndev->dev_addr, UBL_ALEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 406 ipn_hdr_v4->pdu.ver = UB_PROTO_IPV4 << VER_SHIFT_4; /* IPv4 */
0f9f9f6603b274 Wenwu Yao 2023-07-20 @407 ipn_hdr_v4->pdu.mask = netmask;
0f9f9f6603b274 Wenwu Yao 2023-07-20 408 ipn_hdr_v4->pdu.ipv4.ip = src_ip;
0f9f9f6603b274 Wenwu Yao 2023-07-20 409
0f9f9f6603b274 Wenwu Yao 2023-07-20 410 show_ip_notify_pkt_info(skb);
0f9f9f6603b274 Wenwu Yao 2023-07-20 411
0f9f9f6603b274 Wenwu Yao 2023-07-20 412 return skb;
0f9f9f6603b274 Wenwu Yao 2023-07-20 413 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 414
0f9f9f6603b274 Wenwu Yao 2023-07-20 415 struct sk_buff *ub_ipv6_create_ip_notify_pkt(struct net_device *ndev,
0f9f9f6603b274 Wenwu Yao 2023-07-20 416 u8 *src_ip, const u8 *src_hw,
0f9f9f6603b274 Wenwu Yao 2023-07-20 417 __be32 netmask)
0f9f9f6603b274 Wenwu Yao 2023-07-20 418 {
0f9f9f6603b274 Wenwu Yao 2023-07-20 419 int hlen = LL_RESERVED_SPACE(ndev);
0f9f9f6603b274 Wenwu Yao 2023-07-20 420 int tlen = ndev->needed_tailroom;
0f9f9f6603b274 Wenwu Yao 2023-07-20 421 struct ip_notify_hdr *ipn_hdr_v6;
0f9f9f6603b274 Wenwu Yao 2023-07-20 422 struct sk_buff *skb;
0f9f9f6603b274 Wenwu Yao 2023-07-20 423 u8 dest_hw[UBL_ALEN];
0f9f9f6603b274 Wenwu Yao 2023-07-20 424
0f9f9f6603b274 Wenwu Yao 2023-07-20 425 skb = alloc_skb(ip_notify_hdr_len() + hlen + tlen, GFP_ATOMIC);
0f9f9f6603b274 Wenwu Yao 2023-07-20 426 if (!skb)
0f9f9f6603b274 Wenwu Yao 2023-07-20 427 return NULL;
0f9f9f6603b274 Wenwu Yao 2023-07-20 428
0f9f9f6603b274 Wenwu Yao 2023-07-20 429 skb_reserve(skb, LL_RESERVED_SPACE(ndev));
0f9f9f6603b274 Wenwu Yao 2023-07-20 430 skb_reset_network_header(skb);
0f9f9f6603b274 Wenwu Yao 2023-07-20 431 ipn_hdr_v6 = (struct ip_notify_hdr *)skb_put(skb, ip_notify_hdr_len());
0f9f9f6603b274 Wenwu Yao 2023-07-20 432 memset(ipn_hdr_v6, 0, ip_notify_hdr_len());
0f9f9f6603b274 Wenwu Yao 2023-07-20 433 skb->dev = ndev;
0f9f9f6603b274 Wenwu Yao 2023-07-20 434 skb->protocol = htons(ETH_P_UB);
0f9f9f6603b274 Wenwu Yao 2023-07-20 435 src_hw = ndev->dev_addr;
0f9f9f6603b274 Wenwu Yao 2023-07-20 436 memset(dest_hw, 0xff, UBL_ALEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 437
0f9f9f6603b274 Wenwu Yao 2023-07-20 438 /* fill the device header for the ip notify frame */
0f9f9f6603b274 Wenwu Yao 2023-07-20 439 ipn_hdr_v6->cfg = UB_NOIP_CFG_TYPE;
0f9f9f6603b274 Wenwu Yao 2023-07-20 440 ipn_hdr_v6->protocol = htons(SUB_PROTOCOL_IP_NOTIFY);
0f9f9f6603b274 Wenwu Yao 2023-07-20 441 memcpy(ipn_hdr_v6->dest_guid, dest_hw, UBL_ALEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 442 memcpy(ipn_hdr_v6->src_guid, ndev->dev_addr, UBL_ALEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 443 ipn_hdr_v6->pdu.ver = UB_PROTO_IPV6 << VER_SHIFT_4; /* IPv6 */
0f9f9f6603b274 Wenwu Yao 2023-07-20 444 ipn_hdr_v6->pdu.mask = netmask;
0f9f9f6603b274 Wenwu Yao 2023-07-20 445 memcpy(ipn_hdr_v6->pdu.ipv6.ip, src_ip, UBL_ALEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 446
0f9f9f6603b274 Wenwu Yao 2023-07-20 447 show_ip_notify_pkt_info(skb);
0f9f9f6603b274 Wenwu Yao 2023-07-20 448
0f9f9f6603b274 Wenwu Yao 2023-07-20 449 return skb;
0f9f9f6603b274 Wenwu Yao 2023-07-20 450 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 451
0f9f9f6603b274 Wenwu Yao 2023-07-20 452 static void ub_update_tx_stats(int ptype, struct sk_buff *skb, int rc)
0f9f9f6603b274 Wenwu Yao 2023-07-20 453 {
0f9f9f6603b274 Wenwu Yao 2023-07-20 454 struct list_head *dev_list = ub_nm_get_dev_list();
0f9f9f6603b274 Wenwu Yao 2023-07-20 455 struct net_device *ndev = skb->dev;
0f9f9f6603b274 Wenwu Yao 2023-07-20 456 struct ub_nm_device *nm_dev;
0f9f9f6603b274 Wenwu Yao 2023-07-20 457
0f9f9f6603b274 Wenwu Yao 2023-07-20 458 ub_nm_down_read();
0f9f9f6603b274 Wenwu Yao 2023-07-20 459 list_for_each_entry(nm_dev, dev_list, nm_dev_list)
0f9f9f6603b274 Wenwu Yao 2023-07-20 460 if (nm_dev->ndev == ndev)
0f9f9f6603b274 Wenwu Yao 2023-07-20 461 goto out;
0f9f9f6603b274 Wenwu Yao 2023-07-20 462 ub_nm_up_read();
0f9f9f6603b274 Wenwu Yao 2023-07-20 463
0f9f9f6603b274 Wenwu Yao 2023-07-20 464 return;
0f9f9f6603b274 Wenwu Yao 2023-07-20 465
0f9f9f6603b274 Wenwu Yao 2023-07-20 466 out:
0f9f9f6603b274 Wenwu Yao 2023-07-20 467 switch (rc) {
0f9f9f6603b274 Wenwu Yao 2023-07-20 468 case NETDEV_TX_OK:
0f9f9f6603b274 Wenwu Yao 2023-07-20 469 if (ptype == UB_PROTO_IPV4)
0f9f9f6603b274 Wenwu Yao 2023-07-20 470 atomic64_inc(&nm_dev->sys_ctx.ip_notify_ctx.stats.good_ipv4_notify_tx_cnt);
0f9f9f6603b274 Wenwu Yao 2023-07-20 471 else
0f9f9f6603b274 Wenwu Yao 2023-07-20 472 atomic64_inc(&nm_dev->sys_ctx.ip_notify_ctx.stats.good_ipv6_notify_tx_cnt);
0f9f9f6603b274 Wenwu Yao 2023-07-20 473 break;
0f9f9f6603b274 Wenwu Yao 2023-07-20 474 case NET_XMIT_DROP:
0f9f9f6603b274 Wenwu Yao 2023-07-20 475 case NETDEV_TX_BUSY:
0f9f9f6603b274 Wenwu Yao 2023-07-20 476 if (ptype == UB_PROTO_IPV4)
0f9f9f6603b274 Wenwu Yao 2023-07-20 477 atomic64_inc(&nm_dev->sys_ctx.ip_notify_ctx.stats.bad_ipv4_notify_tx_cnt);
0f9f9f6603b274 Wenwu Yao 2023-07-20 478 else
0f9f9f6603b274 Wenwu Yao 2023-07-20 479 atomic64_inc(&nm_dev->sys_ctx.ip_notify_ctx.stats.bad_ipv6_notify_tx_cnt);
0f9f9f6603b274 Wenwu Yao 2023-07-20 480 break;
0f9f9f6603b274 Wenwu Yao 2023-07-20 481 default:
0f9f9f6603b274 Wenwu Yao 2023-07-20 482 break;
0f9f9f6603b274 Wenwu Yao 2023-07-20 483 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 484 ub_nm_up_read();
0f9f9f6603b274 Wenwu Yao 2023-07-20 485 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 486
0f9f9f6603b274 Wenwu Yao 2023-07-20 487 static void ub_xmit_ip_notify_pkt(int ptype, struct sk_buff *skb)
0f9f9f6603b274 Wenwu Yao 2023-07-20 488 {
0f9f9f6603b274 Wenwu Yao 2023-07-20 489 int rc;
0f9f9f6603b274 Wenwu Yao 2023-07-20 490
0f9f9f6603b274 Wenwu Yao 2023-07-20 491 rc = dev_queue_xmit(skb);
0f9f9f6603b274 Wenwu Yao 2023-07-20 492 ub_update_tx_stats(ptype, skb, rc);
0f9f9f6603b274 Wenwu Yao 2023-07-20 493 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 494
0f9f9f6603b274 Wenwu Yao 2023-07-20 495 static void ub_ipv4_send_ip_notify(struct net_device *ndev,
0f9f9f6603b274 Wenwu Yao 2023-07-20 496 struct in_ifaddr *ifa)
0f9f9f6603b274 Wenwu Yao 2023-07-20 497 {
0f9f9f6603b274 Wenwu Yao 2023-07-20 @498 __be32 netmask = ifa->ifa_prefixlen;
0f9f9f6603b274 Wenwu Yao 2023-07-20 499 const u8 *src_hw = ndev->dev_addr;
0f9f9f6603b274 Wenwu Yao 2023-07-20 500 __be32 src_ip = ifa->ifa_address;
0f9f9f6603b274 Wenwu Yao 2023-07-20 501 struct sk_buff *skb;
0f9f9f6603b274 Wenwu Yao 2023-07-20 502
0f9f9f6603b274 Wenwu Yao 2023-07-20 503 skb = ub_ipv4_create_ip_notify_pkt(ndev, src_ip, src_hw, netmask);
0f9f9f6603b274 Wenwu Yao 2023-07-20 504 if (!skb) {
0f9f9f6603b274 Wenwu Yao 2023-07-20 505 netdev_err(ndev, "failed to create ip notify pkt.\n");
0f9f9f6603b274 Wenwu Yao 2023-07-20 506 return;
0f9f9f6603b274 Wenwu Yao 2023-07-20 507 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 508
0f9f9f6603b274 Wenwu Yao 2023-07-20 509 ub_xmit_ip_notify_pkt(UB_PROTO_IPV4, skb);
0f9f9f6603b274 Wenwu Yao 2023-07-20 510 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 511
0f9f9f6603b274 Wenwu Yao 2023-07-20 512 int ub_ipv4_notify_event(struct notifier_block *nb, unsigned long event,
0f9f9f6603b274 Wenwu Yao 2023-07-20 513 void *ptr)
0f9f9f6603b274 Wenwu Yao 2023-07-20 514 {
0f9f9f6603b274 Wenwu Yao 2023-07-20 515 struct net_device *event_ndev;
0f9f9f6603b274 Wenwu Yao 2023-07-20 516 struct in_device *in_dev;
0f9f9f6603b274 Wenwu Yao 2023-07-20 517 struct in_ifaddr *ifa;
0f9f9f6603b274 Wenwu Yao 2023-07-20 518
0f9f9f6603b274 Wenwu Yao 2023-07-20 519 ifa = (struct in_ifaddr *)ptr;
0f9f9f6603b274 Wenwu Yao 2023-07-20 520 event_ndev = ifa->ifa_dev->dev;
0f9f9f6603b274 Wenwu Yao 2023-07-20 521
0f9f9f6603b274 Wenwu Yao 2023-07-20 522 if (event_ndev->type != ARPHRD_UB)
0f9f9f6603b274 Wenwu Yao 2023-07-20 523 return NOTIFY_DONE;
0f9f9f6603b274 Wenwu Yao 2023-07-20 524
0f9f9f6603b274 Wenwu Yao 2023-07-20 525 netdev_info(event_ndev, "ub_ipv4_event: 0x%lx\n", event);
0f9f9f6603b274 Wenwu Yao 2023-07-20 526
0f9f9f6603b274 Wenwu Yao 2023-07-20 527 if (event != NETDEV_UP)
0f9f9f6603b274 Wenwu Yao 2023-07-20 528 return NOTIFY_DONE;
0f9f9f6603b274 Wenwu Yao 2023-07-20 529
0f9f9f6603b274 Wenwu Yao 2023-07-20 530 in_dev = __in_dev_get_rtnl(event_ndev);
0f9f9f6603b274 Wenwu Yao 2023-07-20 531 if (!IN_DEV_ARP_NOTIFY(in_dev))
0f9f9f6603b274 Wenwu Yao 2023-07-20 532 return NOTIFY_DONE;
0f9f9f6603b274 Wenwu Yao 2023-07-20 533
0f9f9f6603b274 Wenwu Yao 2023-07-20 534 if (event_ndev->flags & IFF_UP) {
0f9f9f6603b274 Wenwu Yao 2023-07-20 535 netdev_info(event_ndev, "ub_ipv4_send_ip_notify.\n");
0f9f9f6603b274 Wenwu Yao 2023-07-20 536 ub_ipv4_send_ip_notify(event_ndev, ifa);
0f9f9f6603b274 Wenwu Yao 2023-07-20 537 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 538
0f9f9f6603b274 Wenwu Yao 2023-07-20 539 return NOTIFY_DONE;
0f9f9f6603b274 Wenwu Yao 2023-07-20 540 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 541
0f9f9f6603b274 Wenwu Yao 2023-07-20 542 static void ub_ipv6_send_ip_notify(struct net_device *ndev,
0f9f9f6603b274 Wenwu Yao 2023-07-20 543 struct inet6_ifaddr *ifa6)
0f9f9f6603b274 Wenwu Yao 2023-07-20 544 {
0f9f9f6603b274 Wenwu Yao 2023-07-20 545 const u8 *src_hw = ndev->dev_addr;
0f9f9f6603b274 Wenwu Yao 2023-07-20 @546 __be32 netmask = ifa6->prefix_len;
0f9f9f6603b274 Wenwu Yao 2023-07-20 547 struct sk_buff *skb;
0f9f9f6603b274 Wenwu Yao 2023-07-20 548 u8 src_ip[IPV6_ADDR_LEN];
0f9f9f6603b274 Wenwu Yao 2023-07-20 549
0f9f9f6603b274 Wenwu Yao 2023-07-20 550 memcpy(src_ip, &ifa6->addr, IPV6_ADDR_LEN);
0f9f9f6603b274 Wenwu Yao 2023-07-20 551 skb = ub_ipv6_create_ip_notify_pkt(ndev, src_ip, src_hw, netmask);
0f9f9f6603b274 Wenwu Yao 2023-07-20 552 if (!skb) {
0f9f9f6603b274 Wenwu Yao 2023-07-20 553 netdev_err(ndev, "failed to create ipv6 notify pkt.\n");
0f9f9f6603b274 Wenwu Yao 2023-07-20 554 return;
0f9f9f6603b274 Wenwu Yao 2023-07-20 555 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 556
0f9f9f6603b274 Wenwu Yao 2023-07-20 557 ub_xmit_ip_notify_pkt(UB_PROTO_IPV6, skb);
0f9f9f6603b274 Wenwu Yao 2023-07-20 558 }
0f9f9f6603b274 Wenwu Yao 2023-07-20 559
:::::: The code at line 407 was first introduced by commit
:::::: 0f9f9f6603b27412118019e51cf8e6d8e0422707 network_mgmt: Support IP notify Protocol.
:::::: TO: Wenwu Yao <yaowenwu1(a)huawei.com>
:::::: CC: Jeiwei Li <lijiewei5(a)huawei.com>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10 2954/2954] kernel/sched/bpf_sched.c:158:5: warning: "CONFIG_FAIR_GROUP_SCHED" is not defined, evaluates to 0
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
Hi Chen,
FYI, the error/warning still remains.
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: 28b91df0178b108df4cc6ded1dfb68b8c39f5476 [2954/2954] sched: programmable: Add convenient helper functions to convert sched entity
config: arm64-randconfig-r133-20250610
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce:
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506102302.7m25k19G-lkp@intel.com/
All warnings (new ones prefixed by >>):
kernel/sched/bpf_sched.c: In function '____bpf_sched_entity_to_tg':
>> kernel/sched/bpf_sched.c:158:5: warning: "CONFIG_FAIR_GROUP_SCHED" is not defined, evaluates to 0 [-Wundef]
158 | #if CONFIG_FAIR_GROUP_SCHED
| ^~~~~~~~~~~~~~~~~~~~~~~
sparse warnings: (new ones prefixed by >>)
>> kernel/sched/bpf_sched.c:158:5: sparse: sparse: undefined preprocessor identifier 'CONFIG_FAIR_GROUP_SCHED'
vim +/CONFIG_FAIR_GROUP_SCHED +158 kernel/sched/bpf_sched.c
155
156 BPF_CALL_1(bpf_sched_entity_to_tg, struct sched_entity *, se)
157 {
> 158 #if CONFIG_FAIR_GROUP_SCHED
159 if (!entity_is_task(se)) {
160 struct task_group *tg = group_cfs_rq(se)->tg;
161
162 return (unsigned long)tg;
163 }
164 #endif
165
166 return (unsigned long)NULL;
167 }
168
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Namhyung Kim (9):
bpf: Allow bpf_get_current_ancestor_cgroup_id for tracing
perf core: Factor out __perf_sw_event_sched
perf core: Add PERF_COUNT_SW_CGROUP_SWITCHES event
perf tools: Add 'cgroup-switches' software event
perf tools: Add read_cgroup_id() function
perf tools: Add cgroup_is_v2() helper
perf bpf_counter: Move common functions to bpf_counter.h
perf stat: Enable BPF counter with --for-each-cgroup
perf stat: Fix BPF program section name
Song Liu (13):
bpftool: Add Makefile target bootstrap
perf build: Support build BPF skeletons with perf
perf stat: Enable counting events for BPF programs
perf stat: Introduce 'bperf' to share hardware PMCs with BPF
perf stat: Measure 't0' and 'ref_time' after enable_counters()
perf util: Move bpf_perf definitions to a libperf header
perf bpf: check perf_attr_map is compatible with the perf binary
perf stat: Introduce config stat.bpf-counter-events
perf stat: Introduce ':b' modifier
perf stat: Introduce bpf_counter_ops->disable()
perf bpf: Fix building perf with BUILD_BPF_SKEL=1 by default in more
distros
perf bpf_skel: Do not use typedef to avoid error on old clang
perf test: Add a shell test for 'perf stat --bpf-counters' new option
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
include/linux/perf_event.h | 40 +-
include/uapi/linux/perf_event.h | 1 +
kernel/trace/bpf_trace.c | 2 +
tools/bpf/bpftool/Makefile | 2 +
tools/build/Makefile.feature | 4 +-
tools/include/uapi/linux/perf_event.h | 1 +
tools/lib/perf/include/perf/bpf_perf.h | 32 +
tools/perf/Documentation/perf-stat.txt | 31 +
tools/perf/Makefile.config | 9 +
tools/perf/Makefile.perf | 65 +-
tools/perf/builtin-stat.c | 110 ++-
tools/perf/tests/shell/stat_bpf_counters.sh | 74 ++
tools/perf/util/Build | 2 +
tools/perf/util/bpf_counter.c | 832 ++++++++++++++++++
tools/perf/util/bpf_counter.h | 131 +++
tools/perf/util/bpf_counter_cgroup.c | 307 +++++++
tools/perf/util/bpf_skel/.gitignore | 3 +
tools/perf/util/bpf_skel/bperf_cgroup.bpf.c | 191 ++++
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 167 ++++
tools/perf/util/bpf_skel/bperf_leader.bpf.c | 55 ++
tools/perf/util/bpf_skel/bperf_u.h | 19 +
.../util/bpf_skel/bpf_prog_profiler.bpf.c | 93 ++
tools/perf/util/cgroup.c | 47 +
tools/perf/util/cgroup.h | 13 +
tools/perf/util/config.c | 4 +
tools/perf/util/evlist.c | 4 +
tools/perf/util/evsel.c | 27 +
tools/perf/util/evsel.h | 32 +
tools/perf/util/parse-events.c | 12 +-
tools/perf/util/parse-events.l | 3 +-
tools/perf/util/python.c | 27 +
tools/perf/util/stat-display.c | 4 +-
tools/perf/util/stat.c | 2 +-
tools/perf/util/target.c | 34 +-
tools/perf/util/target.h | 8 +
tools/scripts/Makefile.include | 1 +
36 files changed, 2344 insertions(+), 45 deletions(-)
create mode 100644 tools/lib/perf/include/perf/bpf_perf.h
create mode 100755 tools/perf/tests/shell/stat_bpf_counters.sh
create mode 100644 tools/perf/util/bpf_counter.c
create mode 100644 tools/perf/util/bpf_counter.h
create mode 100644 tools/perf/util/bpf_counter_cgroup.c
create mode 100644 tools/perf/util/bpf_skel/.gitignore
create mode 100644 tools/perf/util/bpf_skel/bperf_cgroup.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_follower.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_leader.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_u.h
create mode 100644 tools/perf/util/bpf_skel/bpf_prog_profiler.bpf.c
--
2.34.1
2
29

[openeuler:OLK-5.10 2954/2954] arch/arm64/mm/pmem_reserve.c:11:17: sparse: sparse: symbol 'pmem_res' was not declared. Should it be static?
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: db4cd75bc674e6f473c0a7303b1744155352882c [2954/2954] arm64: register persistent memory via protected memory
config: arm64-randconfig-r133-20250610 (https://download.01.org/0day-ci/archive/20250610/202506101929.qhZqxH6c-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce: (https://download.01.org/0day-ci/archive/20250610/202506101929.qhZqxH6c-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506101929.qhZqxH6c-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
vim +/pmem_res +11 arch/arm64/mm/pmem_reserve.c
8
9 #define MAX_REGIONS 8
10 static int pmem_res_cnt;
> 11 struct resource pmem_res[MAX_REGIONS];
12
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
From: Mark Brown <broonie(a)kernel.org>
In order to allow us to have shared code for managing fine grained traps
for KVM guests add it as a detected feature rather than relying on it
being a dependency of other features.
Acked-by: Catalin Marinas <catalin.marinas(a)arm.com>
Reviewed-by: Eric Auger <eric.auger(a)redhat.com>
Signed-off-by: Mark Brown <broonie(a)kernel.org>
[maz: converted to ARM64_CPUID_FIELDS()]
Link: https://lore.kernel.org/r/20230301-kvm-arm64-fgt-v4-1-1bf8d235ac1f@kernel.o…
Reviewed-by: Zenghui Yu <yuzenghui(a)huawei.com>
Reviewed-by: Miguel Luis <miguel.luis(a)oracle.com>
Reviewed-by: Jing Zhang <jingzhangos(a)google.com>
Signed-off-by: Marc Zyngier <maz(a)kernel.org>
Link: https://lore.kernel.org/r/20230815183903.2735724-10-maz@kernel.org
Conflicts:
arch/arm64/include/asm/cpucaps.h
arch/arm64/kernel/cpufeature.c
Signed-off-by: frankyj915 <yangjieyj.yang(a)huawei.com>
---
arch/arm64/include/asm/cpucaps.h | 1 +
arch/arm64/kernel/cpufeature.c | 10 ++++++++++
2 files changed, 11 insertions(+)
diff --git a/arch/arm64/include/asm/cpucaps.h b/arch/arm64/include/asm/cpucaps.h
index 3107f4a6942d..5999133d9a06 100644
--- a/arch/arm64/include/asm/cpucaps.h
+++ b/arch/arm64/include/asm/cpucaps.h
@@ -65,6 +65,7 @@
#define ARM64_WORKAROUND_HISILICON_ERRATUM_162100125 55
#define ARM64_WORKAROUND_HISILICON_ERRATUM_162100602 56
#define ARM64_HAS_TIDCP1 57
+#define ARM64_HAS_FGT 58
#define ARM64_NCAPS 80
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
index ccbce957101a..c82529dffcc7 100644
--- a/arch/arm64/kernel/cpufeature.c
+++ b/arch/arm64/kernel/cpufeature.c
@@ -1645,6 +1645,16 @@ static const struct arm64_cpu_capabilities arm64_features[] = {
.matches = has_cpuid_feature,
.cpu_enable = cpu_trap_el0_impdef,
},
+ {
+ .desc = "Fine Grained Traps",
+ .type = ARM64_CPUCAP_SYSTEM_FEATURE,
+ .capability = ARM64_HAS_FGT,
+ .matches = has_cpuid_feature,
+ .sys_reg = SYS_ID_AA64MMFR0_EL1,
+ .field_pos = ID_AA64MMFR0_FGT_SHIFT,
+ .sign = FTR_UNSIGNED,
+ .min_field_value = 1,
+ },
{},
};
--
2.25.1
1
0

10 Jun '25
From: Joey Gouly <joey.gouly(a)arm.com>
Add a HWCAP for FEAT_HBC, so that userspace can make a decision on using
this feature.
Signed-off-by: Joey Gouly <joey.gouly(a)arm.com>
Cc: Catalin Marinas <catalin.marinas(a)arm.com>
Cc: Will Deacon <will(a)kernel.org>
Link: https://lore.kernel.org/r/20230804143746.3900803-2-joey.gouly@arm.com
Signed-off-by: Will Deacon <will(a)kernel.org>
Conflicts:
arch/arm64/include/asm/hwcap.h
arch/arm64/include/asm/sysreg.h
arch/arm64/include/uapi/asm/hwcap.h
arch/arm64/kernel/cpufeature.c
arch/arm64/kernel/cpuinfo.c
Signed-off-by: frankyj915 <yangjieyj.yang(a)huawei.com>
---
arch/arm64/include/asm/hwcap.h | 1 +
arch/arm64/include/asm/sysreg.h | 1 +
arch/arm64/include/uapi/asm/hwcap.h | 1 +
arch/arm64/kernel/cpufeature.c | 1 +
arch/arm64/kernel/cpuinfo.c | 1 +
5 files changed, 5 insertions(+)
diff --git a/arch/arm64/include/asm/hwcap.h b/arch/arm64/include/asm/hwcap.h
index 98b9359ceff1..6a4446bcae8b 100644
--- a/arch/arm64/include/asm/hwcap.h
+++ b/arch/arm64/include/asm/hwcap.h
@@ -88,6 +88,7 @@
#define KERNEL_HWCAP_FRINT __khwcap2_feature(FRINT)
#define KERNEL_HWCAP_ECV __khwcap2_feature(ECV)
#define KERNEL_HWCAP_DGH __khwcap2_feature(DGH)
+#define KERNEL_HWCAP_HBC __khwcap2_feature(HBC)
/*
* This yields a mask that user programs can use to figure out what
diff --git a/arch/arm64/include/asm/sysreg.h b/arch/arm64/include/asm/sysreg.h
index e579e49a304a..0f97d1c7fe8c 100644
--- a/arch/arm64/include/asm/sysreg.h
+++ b/arch/arm64/include/asm/sysreg.h
@@ -591,6 +591,7 @@
/* id_aa64isar2 */
#define ID_AA64ISAR2_CLEARBHB_SHIFT 28
+#define ID_AA64ISAR2_BC_SHIFT 20
#define ID_AA64ISAR2_RPRES_SHIFT 4
#define ID_AA64ISAR2_WFXT_SHIFT 0
diff --git a/arch/arm64/include/uapi/asm/hwcap.h b/arch/arm64/include/uapi/asm/hwcap.h
index f36f9eb8dac2..894e5406d641 100644
--- a/arch/arm64/include/uapi/asm/hwcap.h
+++ b/arch/arm64/include/uapi/asm/hwcap.h
@@ -67,5 +67,6 @@
#define HWCAP2_FRINT (1 << 8)
#define HWCAP2_ECV (1 << 9)
#define HWCAP2_DGH (1 << 10)
+#define HWCAP2_HBC (1UL << 44)
#endif /* _UAPI__ASM_HWCAP_H */
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
index cc50fd0bac99..ccbce957101a 100644
--- a/arch/arm64/kernel/cpufeature.c
+++ b/arch/arm64/kernel/cpufeature.c
@@ -1752,6 +1752,7 @@ static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = {
HWCAP_MULTI_CAP(ptr_auth_hwcap_gen_matches, CAP_HWCAP, KERNEL_HWCAP_PACG),
#endif
HWCAP_CAP(SYS_ID_AA64MMFR0_EL1, ID_AA64MMFR0_ECV_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ECV),
+ HWCAP_CAP(SYS_ID_AA64ISAR2_EL1, ID_AA64ISAR2_BC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_HBC),
{},
};
diff --git a/arch/arm64/kernel/cpuinfo.c b/arch/arm64/kernel/cpuinfo.c
index d4c1e6eff56f..d3b1c120e28f 100644
--- a/arch/arm64/kernel/cpuinfo.c
+++ b/arch/arm64/kernel/cpuinfo.c
@@ -88,6 +88,7 @@ static const char *const hwcap_str[] = {
"frint",
"ecv",
"dgh",
+ "hbc",
NULL
};
--
2.25.1
1
0

10 Jun '25
From: Kristina Martsenko <kristina.martsenko(a)arm.com>
The Arm v8.8 extension adds a new control FEAT_TIDCP1 that allows the
kernel to disable all implementation-defined system registers and
instructions in userspace. This can improve robustness against covert
channels between processes, for example in cases where the firmware or
hardware didn't disable that functionality by default.
The kernel does not currently support any implementation-defined
features, as there are no hwcaps for any such features, so disable all
imp-def features unconditionally. Any use of imp-def instructions will
result in a SIGILL being delivered to the process (same as for undefined
instructions).
Signed-off-by: Kristina Martsenko <kristina.martsenko(a)arm.com>
Link: https://lore.kernel.org/r/20220622115424.683520-1-kristina.martsenko@arm.com
Signed-off-by: Will Deacon <will(a)kernel.org>
Conflicts:
arch/arm64/include/asm/sysreg.h
arch/arm64/kernel/cpufeature.c
arch/arm64/include/asm/cpucaps.h
Signed-off-by: frankyj915 <yangjieyj.yang(a)huawei.com>
---
arch/arm64/include/asm/cpucaps.h | 1 +
arch/arm64/include/asm/sysreg.h | 5 +++++
arch/arm64/kernel/cpufeature.c | 17 +++++++++++++++++
3 files changed, 23 insertions(+)
diff --git a/arch/arm64/include/asm/cpucaps.h b/arch/arm64/include/asm/cpucaps.h
index 163a38107d3d..3107f4a6942d 100644
--- a/arch/arm64/include/asm/cpucaps.h
+++ b/arch/arm64/include/asm/cpucaps.h
@@ -64,6 +64,7 @@
#define ARM64_WORKAROUND_HISILICON_1980005 54
#define ARM64_WORKAROUND_HISILICON_ERRATUM_162100125 55
#define ARM64_WORKAROUND_HISILICON_ERRATUM_162100602 56
+#define ARM64_HAS_TIDCP1 57
#define ARM64_NCAPS 80
diff --git a/arch/arm64/include/asm/sysreg.h b/arch/arm64/include/asm/sysreg.h
index 60c6affb9135..e579e49a304a 100644
--- a/arch/arm64/include/asm/sysreg.h
+++ b/arch/arm64/include/asm/sysreg.h
@@ -520,6 +520,7 @@
#endif
/* SCTLR_EL1 specific flags. */
+#define SCTLR_EL1_TIDCP (BIT(63))
#define SCTLR_EL1_UCI (BIT(26))
#define SCTLR_EL1_E0E (BIT(24))
#define SCTLR_EL1_SPAN (BIT(23))
@@ -678,6 +679,7 @@
/* id_aa64mmfr1 */
#define ID_AA64MMFR1_ECBHB_SHIFT 60
+#define ID_AA64MMFR1_TIDCP1_SHIFT 52
#define ID_AA64MMFR1_PAN_SHIFT 20
#define ID_AA64MMFR1_LOR_SHIFT 16
#define ID_AA64MMFR1_HPD_SHIFT 12
@@ -688,6 +690,9 @@
#define ID_AA64MMFR1_VMIDBITS_8 0
#define ID_AA64MMFR1_VMIDBITS_16 2
+#define ID_AA64MMFR1_TIDCP1_NI 0
+#define ID_AA64MMFR1_TIDCP1_IMP 1
+
/* id_aa64mmfr2 */
#define ID_AA64MMFR2_TTL_SHIFT 48
#define ID_AA64MMFR2_FWB_SHIFT 40
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
index 6c0cdac84fb6..cc50fd0bac99 100644
--- a/arch/arm64/kernel/cpufeature.c
+++ b/arch/arm64/kernel/cpufeature.c
@@ -228,6 +228,7 @@ static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
};
static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
+ ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_TIDCP1_SHIFT, 4, 0),
ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
@@ -1298,6 +1299,11 @@ static void elf_hwcap_fixup(void)
#endif /* ARM64_ERRATUM_1742098 */
}
+static void cpu_trap_el0_impdef(const struct arm64_cpu_capabilities *__unused)
+{
+ sysreg_clear_set(sctlr_el1, 0, SCTLR_EL1_TIDCP);
+}
+
static const struct arm64_cpu_capabilities arm64_features[] = {
{
.desc = "GIC system register CPU interface",
@@ -1628,6 +1634,17 @@ static const struct arm64_cpu_capabilities arm64_features[] = {
.min_field_value = 1,
},
#endif
+ {
+ .desc = "Trap EL0 IMPLEMENTATION DEFINED functionality",
+ .capability = ARM64_HAS_TIDCP1,
+ .type = ARM64_CPUCAP_SYSTEM_FEATURE,
+ .sys_reg = SYS_ID_AA64MMFR1_EL1,
+ .sign = FTR_UNSIGNED,
+ .field_pos = ID_AA64MMFR1_TIDCP1_SHIFT,
+ .min_field_value = ID_AA64MMFR1_TIDCP1_IMP,
+ .matches = has_cpuid_feature,
+ .cpu_enable = cpu_trap_el0_impdef,
+ },
{},
};
--
2.25.1
1
0
Luo Gengkun (1):
[Backport] watchdog: fix watchdog may detect false positive of
softlockup
Nysal Jan K.A (1):
[Backport] watchdog: fix the SOFTLOCKUP_DETECTOR=n case
kernel/watchdog.c | 41 +++++++++++++++++++++++++++--------------
1 file changed, 27 insertions(+), 14 deletions(-)
--
2.34.1
1
1

10 Jun '25
From: Kristina Martsenko <kristina.martsenko(a)arm.com>
The Arm v8.8 extension adds a new control FEAT_TIDCP1 that allows the
kernel to disable all implementation-defined system registers and
instructions in userspace. This can improve robustness against covert
channels between processes, for example in cases where the firmware or
hardware didn't disable that functionality by default.
The kernel does not currently support any implementation-defined
features, as there are no hwcaps for any such features, so disable all
imp-def features unconditionally. Any use of imp-def instructions will
result in a SIGILL being delivered to the process (same as for undefined
instructions).
Signed-off-by: Kristina Martsenko <kristina.martsenko(a)arm.com>
Link: https://lore.kernel.org/r/20220622115424.683520-1-kristina.martsenko@arm.com
Signed-off-by: Will Deacon <will(a)kernel.org>
Conflicts:
arch/arm64/include/asm/sysreg.h
arch/arm64/kernel/cpufeature.c
arch/arm64/include/asm/cpucaps.h
Signed-off-by: frankyj915 <yangjieyj.yang(a)huawei.com>
---
arch/arm64/include/asm/cpucaps.h | 1 +
arch/arm64/include/asm/sysreg.h | 5 +++++
arch/arm64/kernel/cpufeature.c | 17 +++++++++++++++++
3 files changed, 23 insertions(+)
diff --git a/arch/arm64/include/asm/cpucaps.h b/arch/arm64/include/asm/cpucaps.h
index 163a38107d3d..3107f4a6942d 100644
--- a/arch/arm64/include/asm/cpucaps.h
+++ b/arch/arm64/include/asm/cpucaps.h
@@ -64,6 +64,7 @@
#define ARM64_WORKAROUND_HISILICON_1980005 54
#define ARM64_WORKAROUND_HISILICON_ERRATUM_162100125 55
#define ARM64_WORKAROUND_HISILICON_ERRATUM_162100602 56
+#define ARM64_HAS_TIDCP1 57
#define ARM64_NCAPS 80
diff --git a/arch/arm64/include/asm/sysreg.h b/arch/arm64/include/asm/sysreg.h
index 60c6affb9135..e579e49a304a 100644
--- a/arch/arm64/include/asm/sysreg.h
+++ b/arch/arm64/include/asm/sysreg.h
@@ -520,6 +520,7 @@
#endif
/* SCTLR_EL1 specific flags. */
+#define SCTLR_EL1_TIDCP (BIT(63))
#define SCTLR_EL1_UCI (BIT(26))
#define SCTLR_EL1_E0E (BIT(24))
#define SCTLR_EL1_SPAN (BIT(23))
@@ -678,6 +679,7 @@
/* id_aa64mmfr1 */
#define ID_AA64MMFR1_ECBHB_SHIFT 60
+#define ID_AA64MMFR1_TIDCP1_SHIFT 52
#define ID_AA64MMFR1_PAN_SHIFT 20
#define ID_AA64MMFR1_LOR_SHIFT 16
#define ID_AA64MMFR1_HPD_SHIFT 12
@@ -688,6 +690,9 @@
#define ID_AA64MMFR1_VMIDBITS_8 0
#define ID_AA64MMFR1_VMIDBITS_16 2
+#define ID_AA64MMFR1_TIDCP1_NI 0
+#define ID_AA64MMFR1_TIDCP1_IMP 1
+
/* id_aa64mmfr2 */
#define ID_AA64MMFR2_TTL_SHIFT 48
#define ID_AA64MMFR2_FWB_SHIFT 40
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
index 6c0cdac84fb6..cc50fd0bac99 100644
--- a/arch/arm64/kernel/cpufeature.c
+++ b/arch/arm64/kernel/cpufeature.c
@@ -228,6 +228,7 @@ static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
};
static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
+ ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_TIDCP1_SHIFT, 4, 0),
ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
@@ -1298,6 +1299,11 @@ static void elf_hwcap_fixup(void)
#endif /* ARM64_ERRATUM_1742098 */
}
+static void cpu_trap_el0_impdef(const struct arm64_cpu_capabilities *__unused)
+{
+ sysreg_clear_set(sctlr_el1, 0, SCTLR_EL1_TIDCP);
+}
+
static const struct arm64_cpu_capabilities arm64_features[] = {
{
.desc = "GIC system register CPU interface",
@@ -1628,6 +1634,17 @@ static const struct arm64_cpu_capabilities arm64_features[] = {
.min_field_value = 1,
},
#endif
+ {
+ .desc = "Trap EL0 IMPLEMENTATION DEFINED functionality",
+ .capability = ARM64_HAS_TIDCP1,
+ .type = ARM64_CPUCAP_SYSTEM_FEATURE,
+ .sys_reg = SYS_ID_AA64MMFR1_EL1,
+ .sign = FTR_UNSIGNED,
+ .field_pos = ID_AA64MMFR1_TIDCP1_SHIFT,
+ .min_field_value = ID_AA64MMFR1_TIDCP1_IMP,
+ .matches = has_cpuid_feature,
+ .cpu_enable = cpu_trap_el0_impdef,
+ },
{},
};
--
2.25.1
1
0
Luo Gengkun (1):
watchdog: fix watchdog may detect false positive of softlockup
Nysal Jan K.A (1):
watchdog: fix the SOFTLOCKUP_DETECTOR=n case
include/linux/nmi.h | 1 +
kernel/sysctl.c | 2 +-
kernel/watchdog.c | 39 ++++++++++++++++++++++++++-------------
3 files changed, 28 insertions(+), 14 deletions(-)
--
2.34.1
2
3
Luo Gengkun (1):
watchdog: fix watchdog may detect false positive of softlockup
Nysal Jan K.A (1):
watchdog: fix the SOFTLOCKUP_DETECTOR=n case
kernel/watchdog.c | 41 +++++++++++++++++++++++++++--------------
1 file changed, 27 insertions(+), 14 deletions(-)
--
2.34.1
2
3
Luo Gengkun (1):
[Backport] watchdog: fix watchdog may detect false positive of
softlockup
Nysal Jan K.A (1):
[Backport] watchdog: fix the SOFTLOCKUP_DETECTOR=n case
kernel/watchdog.c | 41 +++++++++++++++++++++++++++--------------
1 file changed, 27 insertions(+), 14 deletions(-)
--
2.34.1
2
3

[openeuler:OLK-5.10 2954/2954] net/ipv4/sysctl_net_ipv4.c:477:50: sparse: sparse: incorrect type in argument 3 (different address spaces)
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: 90ff3e07cc268a8e40bd578dcc4907a3db419c52
commit: dae7bed961c55d9837eada7f98f34f1adb0e9d21 [2954/2954] tcp_comp: add sysctl for enable/disable compression
config: arm64-randconfig-r133-20250610 (https://download.01.org/0day-ci/archive/20250610/202506101624.VyZdjKoM-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce: (https://download.01.org/0day-ci/archive/20250610/202506101624.VyZdjKoM-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506101624.VyZdjKoM-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> net/ipv4/sysctl_net_ipv4.c:477:50: sparse: sparse: incorrect type in argument 3 (different address spaces) @@ expected void * @@ got void [noderef] __user *buffer @@
net/ipv4/sysctl_net_ipv4.c:477:50: sparse: expected void *
net/ipv4/sysctl_net_ipv4.c:477:50: sparse: got void [noderef] __user *buffer
>> net/ipv4/sysctl_net_ipv4.c:621:35: sparse: sparse: incorrect type in initializer (incompatible argument 3 (different address spaces)) @@ expected int ( [usertype] *proc_handler )( ... ) @@ got int ( * )( ... ) @@
net/ipv4/sysctl_net_ipv4.c:621:35: sparse: expected int ( [usertype] *proc_handler )( ... )
net/ipv4/sysctl_net_ipv4.c:621:35: sparse: got int ( * )( ... )
vim +477 net/ipv4/sysctl_net_ipv4.c
467
468 #if IS_ENABLED(CONFIG_TCP_COMP)
469 static int proc_tcp_compression_ports(struct ctl_table *table, int write,
470 void __user *buffer, size_t *lenp,
471 loff_t *ppos)
472 {
473 unsigned long *bitmap = *(unsigned long **)table->data;
474 unsigned long bitmap_len = table->maxlen;
475 int ret;
476
> 477 ret = proc_do_large_bitmap(table, write, buffer, lenp, ppos);
478 if (write && ret == 0) {
479 if (bitmap_empty(bitmap, bitmap_len)) {
480 if (static_key_enabled(&tcp_have_comp))
481 static_branch_disable(&tcp_have_comp);
482 } else {
483 if (!static_key_enabled(&tcp_have_comp))
484 static_branch_enable(&tcp_have_comp);
485 }
486 }
487
488 return ret;
489 }
490 #endif
491
492 static struct ctl_table ipv4_table[] = {
493 {
494 .procname = "tcp_max_orphans",
495 .data = &sysctl_tcp_max_orphans,
496 .maxlen = sizeof(int),
497 .mode = 0644,
498 .proc_handler = proc_dointvec
499 },
500 {
501 .procname = "inet_peer_threshold",
502 .data = &inet_peer_threshold,
503 .maxlen = sizeof(int),
504 .mode = 0644,
505 .proc_handler = proc_dointvec
506 },
507 {
508 .procname = "inet_peer_minttl",
509 .data = &inet_peer_minttl,
510 .maxlen = sizeof(int),
511 .mode = 0644,
512 .proc_handler = proc_dointvec_jiffies,
513 },
514 {
515 .procname = "inet_peer_maxttl",
516 .data = &inet_peer_maxttl,
517 .maxlen = sizeof(int),
518 .mode = 0644,
519 .proc_handler = proc_dointvec_jiffies,
520 },
521 {
522 .procname = "tcp_mem",
523 .maxlen = sizeof(sysctl_tcp_mem),
524 .data = &sysctl_tcp_mem,
525 .mode = 0644,
526 .proc_handler = proc_doulongvec_minmax,
527 },
528 {
529 .procname = "tcp_low_latency",
530 .data = &sysctl_tcp_low_latency,
531 .maxlen = sizeof(int),
532 .mode = 0644,
533 .proc_handler = proc_dointvec
534 },
535 #ifdef CONFIG_NETLABEL
536 {
537 .procname = "cipso_cache_enable",
538 .data = &cipso_v4_cache_enabled,
539 .maxlen = sizeof(int),
540 .mode = 0644,
541 .proc_handler = proc_dointvec,
542 },
543 {
544 .procname = "cipso_cache_bucket_size",
545 .data = &cipso_v4_cache_bucketsize,
546 .maxlen = sizeof(int),
547 .mode = 0644,
548 .proc_handler = proc_dointvec,
549 },
550 {
551 .procname = "cipso_rbm_optfmt",
552 .data = &cipso_v4_rbm_optfmt,
553 .maxlen = sizeof(int),
554 .mode = 0644,
555 .proc_handler = proc_dointvec,
556 },
557 {
558 .procname = "cipso_rbm_strictvalid",
559 .data = &cipso_v4_rbm_strictvalid,
560 .maxlen = sizeof(int),
561 .mode = 0644,
562 .proc_handler = proc_dointvec,
563 },
564 #endif /* CONFIG_NETLABEL */
565 {
566 .procname = "tcp_available_ulp",
567 .maxlen = TCP_ULP_BUF_MAX,
568 .mode = 0444,
569 .proc_handler = proc_tcp_available_ulp,
570 },
571 {
572 .procname = "icmp_msgs_per_sec",
573 .data = &sysctl_icmp_msgs_per_sec,
574 .maxlen = sizeof(int),
575 .mode = 0644,
576 .proc_handler = proc_dointvec_minmax,
577 .extra1 = SYSCTL_ZERO,
578 },
579 {
580 .procname = "icmp_msgs_burst",
581 .data = &sysctl_icmp_msgs_burst,
582 .maxlen = sizeof(int),
583 .mode = 0644,
584 .proc_handler = proc_dointvec_minmax,
585 .extra1 = SYSCTL_ZERO,
586 },
587 {
588 .procname = "udp_mem",
589 .data = &sysctl_udp_mem,
590 .maxlen = sizeof(sysctl_udp_mem),
591 .mode = 0644,
592 .proc_handler = proc_doulongvec_minmax,
593 },
594 {
595 .procname = "fib_sync_mem",
596 .data = &sysctl_fib_sync_mem,
597 .maxlen = sizeof(sysctl_fib_sync_mem),
598 .mode = 0644,
599 .proc_handler = proc_douintvec_minmax,
600 .extra1 = &sysctl_fib_sync_mem_min,
601 .extra2 = &sysctl_fib_sync_mem_max,
602 },
603 {
604 .procname = "tcp_rx_skb_cache",
605 .data = &tcp_rx_skb_cache_key.key,
606 .mode = 0644,
607 .proc_handler = proc_do_static_key,
608 },
609 {
610 .procname = "tcp_tx_skb_cache",
611 .data = &tcp_tx_skb_cache_key.key,
612 .mode = 0644,
613 .proc_handler = proc_do_static_key,
614 },
615 #if IS_ENABLED(CONFIG_TCP_COMP)
616 {
617 .procname = "tcp_compression_ports",
618 .data = &sysctl_tcp_compression_ports,
619 .maxlen = 65536,
620 .mode = 0644,
> 621 .proc_handler = proc_tcp_compression_ports,
622 },
623 #endif
624 { }
625 };
626
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Support xcall prefetch.
Changes in v7:
- Remove "echo @xxx > /proc/$PID/xcall" usage, replace with
"echo 1 > /proc/$PID/prefetch". Now the xcall enable and
prefetch can be enabled separately.
Changes in v6:
- Only use one reserved kabi in task_struct for xcall.
- Free prefetch item after eventpoll_release_file() to avoid
possible competition between ep_prefetch_item_enqueue() and pfi free.
- Fix "echo > /proc/xcall/cpu_list" show problem.
Changes in v5:
- Fix dentry free before free_prefetch_item() and then UAF in
prefetch work by cancel_work_sync() before free pfi and move
free_prefetch_item() to the first of __fput().
- Fix __queue_work() oops bug.
- /proc/xcall/mask_list -> /proc/xcall/cpu_list
- Fix xcall_prefetch print data type.
- Update prefetch tracepoint, move xcall points definition
to separete header file.
- Make xcall_prefetch depends on EPOLL.
- Adjust xcall prefetch buf to 16KB by default.
- Add xcall_prefetch_init() function.
- Only use write lock in free_prefetch_item().
- Simplify xcall_read() and add some comment.
- Update commit message.
Changes in v4:
- Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default.
- Fix xint sleeping function called from invalid context bug.
- free_prefetch_item() in file_free() instead of filp_close(), which
fix the alloc-queue and free competition.
- Fix kernel_read() warning for FMODE_READ not set.
- Add sock_from_file() limit for prefetch.
- Check NULL for rc_work.
- Simplfy the cpumask interface code, and rename
to "/proc/xcall/mask_list".
- Remove the xcall_cache_pages_order interface.
- tracepoint update: fd -> file.
- Simplify the xcall_read() function again.
- Handle copy_to_user() return value.
- Remove unused XCALL_CACHE_QUEUED.
- Update the commit message.
Changes in v3:
- Add XCALL_PREFETCH config to isolate feature code.
- Split the /proc/xxx interface code out to independent patches, which
will make it clear.
- Update the cpumask interface to "/proc/xcall/numa_mask", and it can
set the numa mask of all numas one time.
- Add xcall select count to make xcall_cache_pages_order adjust safe.
- Introduce xcall_read_start/end() to make it clear.
- Simplify the xcall_read() function.
- Use cpumask_next() instead of get_nth_cpu_in_cpumask() function.
- Use independent cpu select policy function.
- Remove some unnecessary pr_err().
- Update the commit message.
Changes in v2:
- Upadte the xcall prefetch state machine, remove the queued state and
add prefetch, cancel states.
- Remove the pfi lock and use atomic variables.
- Change the 'xcall select' semantics and simplify the code a lot.
- Remove keep_running, remove unrelated code.
- Remove the count in struct read_cache_entry, and use
percpu hit/miss count.
- Remove sync mode, so remove struct read_cache_entry
in struct task_struct.
- Use hash table to find prefetch item for a file, which will not
change the file struct KABI.
- Use rwlock instead of spinlock for hash table.
- Use alloc_page() instead kmalloc() to align 4KB.
- Update the commit message.
Jinjie Ruan (9):
arm64: Introduce Xint software solution
arm64: Add debugfs dir for xint
arm64: Reserve a kabi in task_struct exclusively for xcall
arm64: Introduce xcall prefetch enable interface
eventpoll: xcall: Support async prefetch data in epoll
xcall: Add /proc/xcall/prefetch dir for performance tuning
xcall: Add /proc/xcall/cpu_list for performance tuning
xcall: eventpoll: add tracepoint
config: Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default
Liao Chen (1):
revert kpti bypass
Yipeng Zou (2):
arm64: Introduce xcall a faster svc exception handling
arm64: Faster SVC exception handler with xcall
arch/Kconfig | 81 +++++
arch/arm64/Kconfig | 2 +
arch/arm64/configs/openeuler_defconfig | 7 +
arch/arm64/include/asm/cpucaps.h | 2 +
arch/arm64/include/asm/exception.h | 3 +
arch/arm64/kernel/asm-offsets.c | 3 +
arch/arm64/kernel/cpufeature.c | 56 ++++
arch/arm64/kernel/entry-common.c | 22 ++
arch/arm64/kernel/entry.S | 183 ++++++++++-
arch/arm64/kernel/syscall.c | 57 ++++
drivers/irqchip/irq-gic-v3.c | 130 ++++++++
fs/eventpoll.c | 408 +++++++++++++++++++++++++
fs/file_table.c | 1 +
fs/proc/base.c | 183 +++++++++++
fs/read_write.c | 10 +-
include/linux/fs.h | 35 +++
include/linux/hardirq.h | 5 +
include/linux/irqchip/arm-gic-v3.h | 13 +
include/linux/sched.h | 4 +
include/linux/xcall.h | 17 ++
include/trace/events/xcall.h | 106 +++++++
kernel/fork.c | 24 ++
kernel/irq/debugfs.c | 33 ++
kernel/irq/internals.h | 18 ++
kernel/irq/irqdesc.c | 19 ++
kernel/irq/proc.c | 10 +
kernel/softirq.c | 73 +++++
27 files changed, 1502 insertions(+), 3 deletions(-)
create mode 100644 include/linux/xcall.h
create mode 100644 include/trace/events/xcall.h
--
2.34.1
2
13
Luo Gengkun (1):
watchdog: fix watchdog may detect false positive of softlockup
Nysal Jan K.A (1):
watchdog: fix the SOFTLOCKUP_DETECTOR=n case
kernel/watchdog.c | 41 +++++++++++++++++++++++++++--------------
1 file changed, 27 insertions(+), 14 deletions(-)
--
2.34.1
2
3
Luo Gengkun (1):
watchdog: fix watchdog may detect false positive of softlockup
Nysal Jan K.A (1):
watchdog: fix the SOFTLOCKUP_DETECTOR=n case
include/linux/nmi.h | 1 +
kernel/sysctl.c | 2 +-
kernel/watchdog.c | 39 ++++++++++++++++++++++++++-------------
3 files changed, 28 insertions(+), 14 deletions(-)
--
2.34.1
2
3
From: Kaixiong Yu <yukaixiong(a)huawei.com>
merge CVE patches into OLK-6.6
the CVE No. as listed:
CVE-2025-37930
CVE-2025-37849
CVE-2025-23149
CVE-2025-39735
CVE-2025-38152
CVE-2025-21861
CVE-2024-47732
Bjorn Andersson (1):
Revert "remoteproc: core: Clear table_sz when rproc_shutdown"
Dan Carpenter (1):
crypto: iaa - Fix potential use after free bug
David Hildenbrand (1):
mm/migrate_device: don't add folio to be freed to LRU in
migrate_device_finalize()
Kefeng Wang (1):
mm: migrate_device: use more folio in migrate_device_finalize()
Peng Fan (1):
remoteproc: core: Clear table_sz when rproc_shutdown
Philipp Stanner (1):
drm/nouveau: Fix WARN_ON in nouveau_fence_context_kill()
Qasim Ijaz (1):
jfs: fix slab-out-of-bounds read in ea_get()
Thadeu Lima de Souza Cascardo (1):
tpm: do not start chip while suspended
Will Deacon (1):
KVM: arm64: Tear down vGIC on failed vCPU creation
arch/arm64/kvm/arm.c | 6 +++-
drivers/char/tpm/tpm-chip.c | 5 +++
drivers/char/tpm/tpm-interface.c | 7 ----
drivers/crypto/intel/iaa/iaa_crypto_main.c | 4 +--
drivers/gpu/drm/nouveau/nouveau_fence.c | 2 +-
fs/jfs/xattr.c | 15 +++++---
mm/migrate_device.c | 42 +++++++++++-----------
7 files changed, 43 insertions(+), 38 deletions(-)
--
2.34.1
2
10
Support xcall prefetch.
Changes in v7:
- Remove "echo @xxx > /proc/$PID/xcall" usage, replace with
"echo 1 > /proc/$PID/prefetch". Now the xcall enable and
prefetch can be enabled separately.
Changes in v6:
- Only use one reserved kabi in task_struct for xcall.
- Free prefetch item after eventpoll_release_file() to avoid
possible competition between ep_prefetch_item_enqueue() and pfi free.
- Fix "echo > /proc/xcall/cpu_list" show problem.
Changes in v5:
- Fix dentry free before free_prefetch_item() and then UAF in
prefetch work by cancel_work_sync() before free pfi and move
free_prefetch_item() to the first of __fput().
- Fix __queue_work() oops bug.
- /proc/xcall/mask_list -> /proc/xcall/cpu_list
- Fix xcall_prefetch print data type.
- Update prefetch tracepoint, move xcall points definition
to separete header file.
- Make xcall_prefetch depends on EPOLL.
- Adjust xcall prefetch buf to 16KB by default.
- Add xcall_prefetch_init() function.
- Only use write lock in free_prefetch_item().
- Simplify xcall_read() and add some comment.
- Update commit message.
Changes in v4:
- Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default.
- Fix xint sleeping function called from invalid context bug.
- free_prefetch_item() in file_free() instead of filp_close(), which
fix the alloc-queue and free competition.
- Fix kernel_read() warning for FMODE_READ not set.
- Add sock_from_file() limit for prefetch.
- Check NULL for rc_work.
- Simplfy the cpumask interface code, and rename
to "/proc/xcall/mask_list".
- Remove the xcall_cache_pages_order interface.
- tracepoint update: fd -> file.
- Simplify the xcall_read() function again.
- Handle copy_to_user() return value.
- Remove unused XCALL_CACHE_QUEUED.
- Update the commit message.
Changes in v3:
- Add XCALL_PREFETCH config to isolate feature code.
- Split the /proc/xxx interface code out to independent patches, which
will make it clear.
- Update the cpumask interface to "/proc/xcall/numa_mask", and it can
set the numa mask of all numas one time.
- Add xcall select count to make xcall_cache_pages_order adjust safe.
- Introduce xcall_read_start/end() to make it clear.
- Simplify the xcall_read() function.
- Use cpumask_next() instead of get_nth_cpu_in_cpumask() function.
- Use independent cpu select policy function.
- Remove some unnecessary pr_err().
- Update the commit message.
Changes in v2:
- Upadte the xcall prefetch state machine, remove the queued state and
add prefetch, cancel states.
- Remove the pfi lock and use atomic variables.
- Change the 'xcall select' semantics and simplify the code a lot.
- Remove keep_running, remove unrelated code.
- Remove the count in struct read_cache_entry, and use
percpu hit/miss count.
- Remove sync mode, so remove struct read_cache_entry
in struct task_struct.
- Use hash table to find prefetch item for a file, which will not
change the file struct KABI.
- Use rwlock instead of spinlock for hash table.
- Use alloc_page() instead kmalloc() to align 4KB.
- Update the commit message.
Jinjie Ruan (9):
arm64: Introduce Xint software solution
arm64: Add debugfs dir for xint
arm64: Reserve a kabi in task_struct exclusively for xcall
arm64: Introduce xcall prefetch enable interface
eventpoll: xcall: Support async prefetch data in epoll
xcall: Add /proc/xcall/prefetch dir for performance tuning
xcall: Add /proc/xcall/cpu_list for performance tuning
xcall: eventpoll: add tracepoint
config: Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default
Liao Chen (1):
revert kpti bypass
Yipeng Zou (2):
arm64: Introduce xcall a faster svc exception handling
arm64: Faster SVC exception handler with xcall
arch/Kconfig | 81 +++++
arch/arm64/Kconfig | 2 +
arch/arm64/configs/openeuler_defconfig | 7 +
arch/arm64/include/asm/cpucaps.h | 2 +
arch/arm64/include/asm/exception.h | 3 +
arch/arm64/kernel/asm-offsets.c | 3 +
arch/arm64/kernel/cpufeature.c | 56 ++++
arch/arm64/kernel/entry-common.c | 22 ++
arch/arm64/kernel/entry.S | 183 ++++++++++-
arch/arm64/kernel/syscall.c | 57 ++++
drivers/irqchip/irq-gic-v3.c | 130 ++++++++
fs/eventpoll.c | 408 +++++++++++++++++++++++++
fs/file_table.c | 1 +
fs/proc/base.c | 183 +++++++++++
fs/read_write.c | 10 +-
include/linux/fs.h | 35 +++
include/linux/hardirq.h | 5 +
include/linux/irqchip/arm-gic-v3.h | 13 +
include/linux/sched.h | 4 +
include/linux/xcall.h | 17 ++
include/trace/events/xcall.h | 106 +++++++
kernel/fork.c | 24 ++
kernel/irq/debugfs.c | 33 ++
kernel/irq/internals.h | 18 ++
kernel/irq/irqdesc.c | 19 ++
kernel/irq/proc.c | 10 +
kernel/softirq.c | 73 +++++
27 files changed, 1502 insertions(+), 3 deletions(-)
create mode 100644 include/linux/xcall.h
create mode 100644 include/trace/events/xcall.h
--
2.34.1
1
12
Support xcall prefetch.
Changes in v7:
- Remove "echo @xxx > /proc/$PID/xcall" usage, replace with
"echo 1 > /proc/$PID/prefetch". Now the xcall enable and
prefetch can be enabled separately.
Changes in v6:
- Only use one reserved kabi in task_struct for xcall.
- Free prefetch item after eventpoll_release_file() to avoid
possible competition between ep_prefetch_item_enqueue() and pfi free.
- Fix "echo > /proc/xcall/cpu_list" show problem.
Changes in v5:
- Fix dentry free before free_prefetch_item() and then UAF in
prefetch work by cancel_work_sync() before free pfi and move
free_prefetch_item() to the first of __fput().
- Fix __queue_work() oops bug.
- /proc/xcall/mask_list -> /proc/xcall/cpu_list
- Fix xcall_prefetch print data type.
- Update prefetch tracepoint, move xcall points definition
to separete header file.
- Make xcall_prefetch depends on EPOLL.
- Adjust xcall prefetch buf to 16KB by default.
- Add xcall_prefetch_init() function.
- Only use write lock in free_prefetch_item().
- Simplify xcall_read() and add some comment.
- Update commit message.
Changes in v4:
- Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default.
- Fix xint sleeping function called from invalid context bug.
- free_prefetch_item() in file_free() instead of filp_close(), which
fix the alloc-queue and free competition.
- Fix kernel_read() warning for FMODE_READ not set.
- Add sock_from_file() limit for prefetch.
- Check NULL for rc_work.
- Simplfy the cpumask interface code, and rename
to "/proc/xcall/mask_list".
- Remove the xcall_cache_pages_order interface.
- tracepoint update: fd -> file.
- Simplify the xcall_read() function again.
- Handle copy_to_user() return value.
- Remove unused XCALL_CACHE_QUEUED.
- Update the commit message.
Changes in v3:
- Add XCALL_PREFETCH config to isolate feature code.
- Split the /proc/xxx interface code out to independent patches, which
will make it clear.
- Update the cpumask interface to "/proc/xcall/numa_mask", and it can
set the numa mask of all numas one time.
- Add xcall select count to make xcall_cache_pages_order adjust safe.
- Introduce xcall_read_start/end() to make it clear.
- Simplify the xcall_read() function.
- Use cpumask_next() instead of get_nth_cpu_in_cpumask() function.
- Use independent cpu select policy function.
- Remove some unnecessary pr_err().
- Update the commit message.
Changes in v2:
- Upadte the xcall prefetch state machine, remove the queued state and
add prefetch, cancel states.
- Remove the pfi lock and use atomic variables.
- Change the 'xcall select' semantics and simplify the code a lot.
- Remove keep_running, remove unrelated code.
- Remove the count in struct read_cache_entry, and use
percpu hit/miss count.
- Remove sync mode, so remove struct read_cache_entry
in struct task_struct.
- Use hash table to find prefetch item for a file, which will not
change the file struct KABI.
- Use rwlock instead of spinlock for hash table.
- Use alloc_page() instead kmalloc() to align 4KB.
- Update the commit message.
Jinjie Ruan (9):
arm64: Introduce Xint software solution
arm64: Add debugfs dir for xint
arm64: Reserve a kabi in task_struct exclusively for xcall
arm64: Introduce xcall prefetch enable interface
eventpoll: xcall: Support async prefetch data in epoll
xcall: Add /proc/xcall/prefetch dir for performance tuning
xcall: Add /proc/xcall/cpu_list for performance tuning
xcall: eventpoll: add tracepoint
config: Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default
Liao Chen (1):
revert kpti bypass
Yipeng Zou (2):
arm64: Introduce xcall a faster svc exception handling
arm64: Faster SVC exception handler with xcall
arch/Kconfig | 81 +++++
arch/arm64/Kconfig | 2 +
arch/arm64/configs/openeuler_defconfig | 7 +
arch/arm64/include/asm/cpucaps.h | 2 +
arch/arm64/include/asm/exception.h | 3 +
arch/arm64/kernel/asm-offsets.c | 3 +
arch/arm64/kernel/cpufeature.c | 56 ++++
arch/arm64/kernel/entry-common.c | 22 ++
arch/arm64/kernel/entry.S | 183 ++++++++++-
arch/arm64/kernel/syscall.c | 57 ++++
drivers/irqchip/irq-gic-v3.c | 130 ++++++++
fs/eventpoll.c | 408 +++++++++++++++++++++++++
fs/file_table.c | 1 +
fs/proc/base.c | 183 +++++++++++
fs/read_write.c | 10 +-
include/linux/fs.h | 35 +++
include/linux/hardirq.h | 5 +
include/linux/irqchip/arm-gic-v3.h | 13 +
include/linux/sched.h | 4 +
include/linux/xcall.h | 17 ++
include/trace/events/xcall.h | 106 +++++++
kernel/fork.c | 22 ++
kernel/irq/debugfs.c | 33 ++
kernel/irq/internals.h | 18 ++
kernel/irq/irqdesc.c | 19 ++
kernel/irq/proc.c | 10 +
kernel/softirq.c | 73 +++++
27 files changed, 1500 insertions(+), 3 deletions(-)
create mode 100644 include/linux/xcall.h
create mode 100644 include/trace/events/xcall.h
--
2.34.1
2
13
Douglas Anderson (5):
arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list
arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre
BHB
arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe
list
arm64: cputype: Add MIDR_CORTEX_A76AE
arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected()
lists
James Morse (6):
arm64: insn: Add support for encoding DSB
arm64: proton-pack: Expose whether the platform is mitigated by
firmware
arm64: proton-pack: Expose whether the branchy loop k value
arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs
arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users
arm64: proton-pack: Add new CPUs 'k' values for branch mitigation
Will Deacon (1):
arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays
arch/arm64/include/asm/cputype.h | 4 +
arch/arm64/include/asm/insn.h | 1 +
arch/arm64/include/asm/spectre.h | 4 +-
arch/arm64/kernel/proton-pack.c | 231 ++++++++++++++++++-------------
arch/arm64/lib/insn.c | 60 +++++---
arch/arm64/net/bpf_jit_comp.c | 57 +++++++-
6 files changed, 229 insertions(+), 128 deletions(-)
--
2.34.1
2
13

[PATCH OLK-6.6 0/3] iommu/arm-smmu-v3: Fix global-out-of-bounds access in arm_smmu_group_get_mpam()
by Zeng Heng 10 Jun '25
by Zeng Heng 10 Jun '25
10 Jun '25
Zeng Heng (3):
arm64/mpam: Update the chip condition judgment in
resctrl_arch_would_mbm_overflow()
fs/resctrl: Prevent idle RMIDs from not being released in time from
limbo
iommu/arm-smmu-v3: Fix global-out-of-bounds access in
arm_smmu_group_get_mpam()
drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | 14 ++++++++++++++
drivers/platform/mpam/mpam_devices.c | 12 +-----------
fs/resctrl/monitor.c | 2 +-
3 files changed, 16 insertions(+), 12 deletions(-)
--
2.25.1
2
4
Fix watchdog false positive problem
Luo Gengkun (1):
watchdog: fix watchdog may detect false positive of softlockup
Nysal Jan K.A (1):
watchdog: fix the SOFTLOCKUP_DETECTOR=n case
include/linux/nmi.h | 1 +
kernel/sysctl.c | 2 +-
kernel/watchdog.c | 39 ++++++++++++++++++++++++++-------------
3 files changed, 28 insertions(+), 14 deletions(-)
--
2.34.1
2
7
Fix watchdog false positive problem
Luo Gengkun (1):
watchdog: fix watchdog may detect false positive of softlockup
Nysal Jan K.A (1):
watchdog: fix the SOFTLOCKUP_DETECTOR=n case
kernel/watchdog.c | 41 +++++++++++++++++++++++++++--------------
1 file changed, 27 insertions(+), 14 deletions(-)
--
2.34.1
2
7

[PATCH openEuler-1.0-LTS] mm/vmscan: fix hwpoisoned THP handling in shrink_page_list
by Jinjiang Tu 10 Jun '25
by Jinjiang Tu 10 Jun '25
10 Jun '25
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/ICDSA3
CVE: NA
----------------------------------------
In shrink_page_list(), the hwpoisoned page may be THP, which can't be
handled by try_to_unmap(), lead to null-ptr-deref in try_to_unmap_one().
To fix it, skip the hwpoisoned page if it is THP.
Fixes: 21b0040ede03 ("mm/vmscan: don't try to reclaim hwpoison folio")
Signed-off-by: Jinjiang Tu <tujinjiang(a)huawei.com>
---
mm/vmscan.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/mm/vmscan.c b/mm/vmscan.c
index df7998e8174f..6a649f02666f 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -1170,6 +1170,9 @@ static unsigned long shrink_page_list(struct list_head *page_list,
goto keep;
if (PageHWPoison(page)) {
+ if (PageTransHuge(page))
+ goto keep_locked;
+
try_to_unmap(page, TTU_IGNORE_MLOCK | TTU_IGNORE_ACCESS);
unlock_page(page);
put_page(page);
--
2.43.0
2
1
Douglas Anderson (5):
arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list
arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre
BHB
arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe
list
arm64: cputype: Add MIDR_CORTEX_A76AE
arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected()
lists
James Morse (6):
arm64: insn: Add support for encoding DSB
arm64: proton-pack: Expose whether the platform is mitigated by
firmware
arm64: proton-pack: Expose whether the branchy loop k value
arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs
arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users
arm64: proton-pack: Add new CPUs 'k' values for branch mitigation
arch/arm64/include/asm/cputype.h | 4 +
arch/arm64/include/asm/insn.h | 1 +
arch/arm64/include/asm/spectre.h | 4 +-
arch/arm64/kernel/proton-pack.c | 229 +++++++++++++++++--------------
arch/arm64/lib/insn.c | 60 ++++----
arch/arm64/net/bpf_jit_comp.c | 57 +++++++-
6 files changed, 227 insertions(+), 128 deletions(-)
--
2.34.1
2
12

[openeuler:OLK-6.6 2380/2380] mm/mem_sampling.c:35:18: warning: unused variable 'mem_sampling_min_value'
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: a7f4bf73c34996ee6cdda292e8f906a9c30879de
commit: 390982f28c5796a1e590381044630b768e6b9696 [2380/2380] mm/mem_sampling: Add sysctl control for NUMA balancing integration
config: arm64-randconfig-r112-20250610 (https://download.01.org/0day-ci/archive/20250610/202506101037.VkwcnAFd-lkp@…)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce: (https://download.01.org/0day-ci/archive/20250610/202506101037.VkwcnAFd-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506101037.VkwcnAFd-lkp@intel.com/
All warnings (new ones prefixed by >>):
mm/mem_sampling.c:68:6: warning: no previous prototype for function 'mem_sampling_record_cb_register' [-Wmissing-prototypes]
68 | void mem_sampling_record_cb_register(mem_sampling_record_cb_type cb)
| ^
mm/mem_sampling.c:68:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
68 | void mem_sampling_record_cb_register(mem_sampling_record_cb_type cb)
| ^
| static
mm/mem_sampling.c:85:6: warning: no previous prototype for function 'mem_sampling_record_cb_unregister' [-Wmissing-prototypes]
85 | void mem_sampling_record_cb_unregister(mem_sampling_record_cb_type cb)
| ^
mm/mem_sampling.c:85:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
85 | void mem_sampling_record_cb_unregister(mem_sampling_record_cb_type cb)
| ^
| static
>> mm/mem_sampling.c:35:18: warning: unused variable 'mem_sampling_min_value' [-Wunused-const-variable]
35 | static const int mem_sampling_min_value = MEM_SAMPLING_MIN_VALUE;
| ^~~~~~~~~~~~~~~~~~~~~~
>> mm/mem_sampling.c:36:18: warning: unused variable 'mem_sampling_max_value' [-Wunused-const-variable]
36 | static const int mem_sampling_max_value = MEM_SAMPLING_MAX_VALUE;
| ^~~~~~~~~~~~~~~~~~~~~~
4 warnings generated.
vim +/mem_sampling_min_value +35 mm/mem_sampling.c
34
> 35 static const int mem_sampling_min_value = MEM_SAMPLING_MIN_VALUE;
> 36 static const int mem_sampling_max_value = MEM_SAMPLING_MAX_VALUE;
37
38 /* keep track of who use the SPE */
39 DEFINE_PER_CPU(enum arm_spe_user_e, arm_spe_user);
40 EXPORT_PER_CPU_SYMBOL_GPL(arm_spe_user);
41
42 enum mem_sampling_saved_state_e {
43 MEM_SAMPLING_STATE_ENABLE,
44 MEM_SAMPLING_STATE_DISABLE,
45 MEM_SAMPLING_STATE_EMPTY,
46 };
47 enum mem_sampling_saved_state_e mem_sampling_saved_state = MEM_SAMPLING_STATE_EMPTY;
48
49 /*
50 * Callbacks should be registered using mem_sampling_record_cb_register()
51 * by NUMA, DAMON and etc during their initialisation.
52 * Callbacks will be invoked on new hardware pmu records caputured.
53 */
54 typedef void (*mem_sampling_record_cb_type)(struct mem_sampling_record *record);
55
56 struct mem_sampling_record_cb_list_entry {
57 struct list_head list;
58 mem_sampling_record_cb_type cb;
59 };
60 LIST_HEAD(mem_sampling_record_cb_list);
61
62 struct mem_sampling_numa_access_work {
63 struct callback_head work;
64 u64 vaddr, paddr;
65 int cpu;
66 };
67
68 void mem_sampling_record_cb_register(mem_sampling_record_cb_type cb)
69 {
70 struct mem_sampling_record_cb_list_entry *cb_entry, *tmp;
71
72 list_for_each_entry_safe(cb_entry, tmp, &mem_sampling_record_cb_list, list) {
73 if (cb_entry->cb == cb)
74 return;
75 }
76
77 cb_entry = kmalloc(sizeof(struct mem_sampling_record_cb_list_entry), GFP_KERNEL);
78 if (!cb_entry)
79 return;
80
81 cb_entry->cb = cb;
82 list_add(&(cb_entry->list), &mem_sampling_record_cb_list);
83 }
84
> 85 void mem_sampling_record_cb_unregister(mem_sampling_record_cb_type cb)
86 {
87 struct mem_sampling_record_cb_list_entry *cb_entry, *tmp;
88
89 list_for_each_entry_safe(cb_entry, tmp, &mem_sampling_record_cb_list, list) {
90 if (cb_entry->cb == cb) {
91 list_del(&cb_entry->list);
92 kfree(cb_entry);
93 return;
94 }
95 }
96 }
97
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
tools/lib/perf/include/perf/bpf_perf.h | 1 +
tools/perf/builtin-stat.c | 1 +
tools/perf/tests/shell/stat_bpf_counters.sh | 79 ++++++++++-----
tools/perf/util/bpf_counter.c | 61 +++++++++---
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 98 +++++++++++++++++--
tools/perf/util/bpf_skel/bperf_u.h | 5 +
tools/perf/util/target.h | 1 +
7 files changed, 198 insertions(+), 48 deletions(-)
--
2.34.1
2
7

[openeuler:OLK-5.10 2954/2954] kernel/sched/debug.c:600:33: error: 'struct cfs_rq' has no member named 'steal_h_nr_running'; did you mean 'idle_h_nr_running'?
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: dd32d51934d00fd319caec8710bd1a438bd69859
commit: 1f9456c873b7bad5a2e394b692e85febe92244a3 [2954/2954] sched/debug: Add h_nr_running/steal_h_nr_running in sched_debug
config: x86_64-randconfig-r052-20250610 (https://download.01.org/0day-ci/archive/20250610/202506100931.pmlaSe9t-lkp@…)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250610/202506100931.pmlaSe9t-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506100931.pmlaSe9t-lkp@intel.com/
All errors (new ones prefixed by >>):
kernel/sched/debug.c: In function 'print_cfs_rq':
>> kernel/sched/debug.c:600:33: error: 'struct cfs_rq' has no member named 'steal_h_nr_running'; did you mean 'idle_h_nr_running'?
600 | cfs_rq->steal_h_nr_running);
| ^~~~~~~~~~~~~~~~~~
kernel/sched/debug.c:18:31: note: in definition of macro 'SEQ_printf'
18 | seq_printf(m, x); \
| ^
In file included from include/linux/kernel.h:17,
from arch/x86/include/asm/percpu.h:27,
from arch/x86/include/asm/current.h:6,
from include/linux/sched.h:12,
from kernel/sched/sched.h:5,
from kernel/sched/debug.c:9:
>> kernel/sched/debug.c:600:33: error: 'struct cfs_rq' has no member named 'steal_h_nr_running'; did you mean 'idle_h_nr_running'?
600 | cfs_rq->steal_h_nr_running);
| ^~~~~~~~~~~~~~~~~~
include/linux/printk.h:434:33: note: in definition of macro 'pr_cont'
434 | printk(KERN_CONT fmt, ##__VA_ARGS__)
| ^~~~~~~~~~~
kernel/sched/debug.c:599:9: note: in expansion of macro 'SEQ_printf'
599 | SEQ_printf(m, " .%-30s: %ld\n", "steal_h_nr_running",
| ^~~~~~~~~~
vim +600 kernel/sched/debug.c
554
555 void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq)
556 {
557 s64 MIN_vruntime = -1, min_vruntime, max_vruntime = -1,
558 spread, rq0_min_vruntime, spread0;
559 struct rq *rq = cpu_rq(cpu);
560 struct sched_entity *last;
561 unsigned long flags;
562
563 #ifdef CONFIG_FAIR_GROUP_SCHED
564 SEQ_printf(m, "\n");
565 SEQ_printf_task_group_path(m, cfs_rq->tg, "cfs_rq[%d]:%s\n", cpu);
566 #else
567 SEQ_printf(m, "\n");
568 SEQ_printf(m, "cfs_rq[%d]:\n", cpu);
569 #endif
570 SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "exec_clock",
571 SPLIT_NS(cfs_rq->exec_clock));
572
573 raw_spin_rq_lock_irqsave(rq, flags);
574 if (rb_first_cached(&cfs_rq->tasks_timeline))
575 MIN_vruntime = (__pick_first_entity(cfs_rq))->vruntime;
576 last = __pick_last_entity(cfs_rq);
577 if (last)
578 max_vruntime = last->vruntime;
579 min_vruntime = cfs_rq->min_vruntime;
580 rq0_min_vruntime = cpu_rq(0)->cfs.min_vruntime;
581 raw_spin_rq_unlock_irqrestore(rq, flags);
582 SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "MIN_vruntime",
583 SPLIT_NS(MIN_vruntime));
584 SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "min_vruntime",
585 SPLIT_NS(min_vruntime));
586 SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "max_vruntime",
587 SPLIT_NS(max_vruntime));
588 spread = max_vruntime - MIN_vruntime;
589 SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "spread",
590 SPLIT_NS(spread));
591 spread0 = min_vruntime - rq0_min_vruntime;
592 SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "spread0",
593 SPLIT_NS(spread0));
594 SEQ_printf(m, " .%-30s: %d\n", "nr_spread_over",
595 cfs_rq->nr_spread_over);
596 SEQ_printf(m, " .%-30s: %d\n", "nr_running", cfs_rq->nr_running);
597 #ifdef CONFIG_SCHED_STEAL
598 SEQ_printf(m, " .%-30s: %d\n", "h_nr_running", cfs_rq->h_nr_running);
599 SEQ_printf(m, " .%-30s: %ld\n", "steal_h_nr_running",
> 600 cfs_rq->steal_h_nr_running);
601 #endif
602 SEQ_printf(m, " .%-30s: %ld\n", "load", cfs_rq->load.weight);
603 #ifdef CONFIG_SMP
604 SEQ_printf(m, " .%-30s: %lu\n", "load_avg",
605 cfs_rq->avg.load_avg);
606 SEQ_printf(m, " .%-30s: %lu\n", "runnable_avg",
607 cfs_rq->avg.runnable_avg);
608 SEQ_printf(m, " .%-30s: %lu\n", "util_avg",
609 cfs_rq->avg.util_avg);
610 SEQ_printf(m, " .%-30s: %u\n", "util_est_enqueued",
611 cfs_rq->avg.util_est.enqueued);
612 SEQ_printf(m, " .%-30s: %ld\n", "removed.load_avg",
613 cfs_rq->removed.load_avg);
614 SEQ_printf(m, " .%-30s: %ld\n", "removed.util_avg",
615 cfs_rq->removed.util_avg);
616 SEQ_printf(m, " .%-30s: %ld\n", "removed.runnable_avg",
617 cfs_rq->removed.runnable_avg);
618 #ifdef CONFIG_FAIR_GROUP_SCHED
619 SEQ_printf(m, " .%-30s: %lu\n", "tg_load_avg_contrib",
620 cfs_rq->tg_load_avg_contrib);
621 SEQ_printf(m, " .%-30s: %ld\n", "tg_load_avg",
622 atomic_long_read(&cfs_rq->tg->load_avg));
623 #endif
624 #endif
625 #ifdef CONFIG_CFS_BANDWIDTH
626 SEQ_printf(m, " .%-30s: %d\n", "throttled",
627 cfs_rq->throttled);
628 SEQ_printf(m, " .%-30s: %d\n", "throttle_count",
629 cfs_rq->throttle_count);
630 #endif
631
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2380/2380] drivers/soc/hisilicon/hisi_soc_cache_framework.c:199:31: sparse: sparse: dereference of noderef expression
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: a7f4bf73c34996ee6cdda292e8f906a9c30879de
commit: e6ecc3b028b8c3151c7ca3f4bd53e6385db72f93 [2380/2380] soc cache: Add framework driver for HiSilicon SoC cache
config: arm64-randconfig-r112-20250610 (https://download.01.org/0day-ci/archive/20250610/202506100815.v13KJR58-lkp@…)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce: (https://download.01.org/0day-ci/archive/20250610/202506100815.v13KJR58-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506100815.v13KJR58-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
drivers/soc/hisilicon/hisi_soc_cache_framework.c:43:5: sparse: sparse: context imbalance in 'hisi_soc_cache_maintain' - different lock contexts for basic block
drivers/soc/hisilicon/hisi_soc_cache_framework.c:148:9: sparse: sparse: context imbalance in 'hisi_soc_cache_inst_del' - wrong count at exit
>> drivers/soc/hisilicon/hisi_soc_cache_framework.c:199:31: sparse: sparse: dereference of noderef expression
drivers/soc/hisilicon/hisi_soc_cache_framework.c:205:39: sparse: sparse: dereference of noderef expression
drivers/soc/hisilicon/hisi_soc_cache_framework.c:205:39: sparse: sparse: dereference of noderef expression
drivers/soc/hisilicon/hisi_soc_cache_framework.c:206:21: sparse: sparse: dereference of noderef expression
drivers/soc/hisilicon/hisi_soc_cache_framework.c:315:9: sparse: sparse: context imbalance in 'hisi_soc_cache_dbg_get_inst_num' - different lock contexts for basic block
vim +199 drivers/soc/hisilicon/hisi_soc_cache_framework.c
42
> 43 int hisi_soc_cache_maintain(phys_addr_t addr, size_t size,
44 enum hisi_soc_cache_maint_type mnt_type)
45 {
46 struct hisi_soc_comp_inst *inst;
47 struct list_head *head;
48 int ret = -EOPNOTSUPP;
49
50 if (mnt_type >= HISI_CACHE_MAINT_MAX)
51 return -EINVAL;
52
53 guard(spinlock)(&soc_cache_devs[HISI_SOC_HHA].lock);
54
55 head = &soc_cache_devs[HISI_SOC_HHA].node;
56 list_for_each_entry(inst, head, node) {
57 ret = inst->comp->ops->do_maintain(inst->comp, addr, size,
58 mnt_type);
59 if (ret)
60 return ret;
61 }
62
63 list_for_each_entry(inst, head, node) {
64 ret = inst->comp->ops->poll_maintain_done(inst->comp, addr,
65 size, mnt_type);
66 if (ret)
67 return ret;
68 }
69
70 return ret;
71 }
72 EXPORT_SYMBOL_GPL(hisi_soc_cache_maintain);
73
74 static int hisi_soc_cache_maint_pte_entry(pte_t *pte, unsigned long addr,
75 unsigned long next, struct mm_walk *walk)
76 {
77 #ifdef HISI_SOC_CACHE_LLT
78 unsigned int mnt_type = *((unsigned int *)walk->priv);
79 #else
80 unsigned int mnt_type = *((unsigned int *)walk->private);
81 #endif
82 size_t size = next - addr;
83 phys_addr_t paddr;
84
85 if (!pte_present(ptep_get(pte)))
86 return -EINVAL;
87
88 paddr = PFN_PHYS(pte_pfn(*pte)) + offset_in_page(addr);
89
90 return hisi_soc_cache_maintain(paddr, size, mnt_type);
91 }
92
93 static const struct mm_walk_ops hisi_soc_cache_maint_walk = {
94 .pte_entry = hisi_soc_cache_maint_pte_entry,
95 .walk_lock = PGWALK_RDLOCK,
96 };
97
98 static int hisi_soc_cache_inst_check(const struct hisi_soc_comp *comp,
99 enum hisi_soc_comp_type comp_type)
100 {
101 /* Different types of component could have different ops. */
102 switch (comp_type) {
103 case HISI_SOC_HHA:
104 if (!comp->ops->do_maintain || !comp->ops->poll_maintain_done)
105 return -EINVAL;
106 break;
107 default:
108 return -EINVAL;
109 }
110
111 return 0;
112 }
113
114 static int hisi_soc_cache_inst_add(struct hisi_soc_comp *comp,
115 enum hisi_soc_comp_type comp_type)
116 {
117 struct hisi_soc_comp_inst *comp_inst;
118 int ret;
119
120 ret = hisi_soc_cache_inst_check(comp, comp_type);
121 if (ret)
122 return ret;
123
124 comp_inst = kzalloc(sizeof(*comp_inst), GFP_KERNEL);
125 if (!comp_inst)
126 return -ENOMEM;
127
128 comp_inst->comp = comp;
129
130 scoped_guard(spinlock, &soc_cache_devs[comp_type].lock) {
131 list_add_tail(&comp_inst->node,
132 &soc_cache_devs[comp_type].node);
133 soc_cache_devs[comp_type].inst_num++;
134 }
135
136 return 0;
137 }
138
139 /*
140 * When @comp is NULL, it means to delete all instances of @comp_type.
141 */
142 static void hisi_soc_cache_inst_del(struct hisi_soc_comp *comp,
143 enum hisi_soc_comp_type comp_type)
144 {
145 struct hisi_soc_comp_inst *inst, *tmp;
146
147 guard(spinlock)(&soc_cache_devs[comp_type].lock);
148 list_for_each_entry_safe(inst, tmp, &soc_cache_devs[comp_type].node,
149 node) {
150 if (comp && comp != inst->comp)
151 continue;
152
153 if (soc_cache_devs[comp_type].inst_num > 0)
154 soc_cache_devs[comp_type].inst_num--;
155
156 list_del(&inst->node);
157 kfree(inst);
158
159 /* Stop the loop if we have already deleted @comp. */
160 if (comp)
161 break;
162 }
163 }
164
165 int hisi_soc_comp_inst_add(struct hisi_soc_comp *comp)
166 {
167 int ret, i = 0;
168
169 if (!comp || !comp->ops || comp->comp_type == 0)
170 return -EINVAL;
171
172 for_each_set_bit_from(i, &comp->comp_type, SOC_COMP_TYPE_MAX) {
173 ret = hisi_soc_cache_inst_add(comp, i);
174 if (ret)
175 return ret;
176 }
177
178 return 0;
179 }
180 EXPORT_SYMBOL_GPL(hisi_soc_comp_inst_add);
181
182 int hisi_soc_comp_inst_del(struct hisi_soc_comp *comp)
183 {
184 int i;
185
186 if (!comp)
187 return -EINVAL;
188
189 for_each_set_bit(i, &comp->comp_type, SOC_COMP_TYPE_MAX)
190 hisi_soc_cache_inst_del(comp, i);
191
192 return 0;
193 }
194 EXPORT_SYMBOL_GPL(hisi_soc_comp_inst_del);
195
196 static int __hisi_soc_cache_maintain(unsigned long __user vaddr, size_t size,
197 enum hisi_soc_cache_maint_type mnt_type)
198 {
> 199 unsigned long start = untagged_addr(vaddr);
200 struct vm_area_struct *vma;
201 int ret = 0;
202
203 mmap_read_lock_killable(current->mm);
204
205 vma = vma_lookup(current->mm, vaddr);
206 if (!vma || vaddr + size > vma->vm_end || !size) {
207 ret = -EINVAL;
208 goto out;
209 }
210
211 /* User should have the write permission of target memory */
212 if (!(vma->vm_flags & VM_WRITE)) {
213 ret = -EINVAL;
214 goto out;
215 }
216
217 ret = walk_page_range(current->mm, start, start + size,
218 &hisi_soc_cache_maint_walk, &mnt_type);
219
220 out:
221 mmap_read_unlock(current->mm);
222 return ret;
223 }
224
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6] BUILD REGRESSION a7f4bf73c34996ee6cdda292e8f906a9c30879de
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-6.6
branch HEAD: a7f4bf73c34996ee6cdda292e8f906a9c30879de !16627 fix move_pages return value
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505122110.l7rKvRzx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505130655.7iroL05g-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505140714.hwzBwdOl-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505191456.gDWxN0oB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201519.o4k4rCxn-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201603.DayzxkWd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201708.6dvo6U58-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201722.VJAhefze-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201757.qoTbv6a9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201856.VGaOEUgd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201929.AHI9gRxc-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201944.3gmU2Dch-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210529.5XGNL1lQ-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210722.gwnDsvxy-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210904.LgTxS8rg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505211154.GJrcviY9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505261539.RLecPVlr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272122.LGw8kmAU-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272226.RcAmWtpx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272259.OmUgrWdN-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280023.4g7q598y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280056.91YNE6dg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280147.YRorbaqT-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280148.N1Nt6ytB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280443.W5j7eO4Y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280603.E3YHNVzo-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280802.sHbtyOVR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281128.MTV3LnwY-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281457.ZzTKocMO-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281528.FWgbJLUK-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281611.rYwqwDFF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281622.nxl9aDmY-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505290337.UpMv109S-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291226.uUVxetsW-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291329.BZ34eEzz-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291449.qcY77e1i-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291525.OYGJaX7H-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505301346.VRD8YS7H-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506050103.qcTmWVAw-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506050822.mELNZxno-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506051116.A1nDI3LD-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506051214.xnjA9eFd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506051337.VIeB2SKc-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506092333.YJ52Pu6f-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506100320.weV2eiwH-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506100341.pGF5A7BE-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506100428.rYVNbEAi-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506100507.lISyTw9e-lkp@intel.com
./drivers/crypto/sedriver/wst_se_common_type.h: 19 linux/version.h not needed.
Warning: drivers/arm/mm_monitor/spe-decoder/arm-spe-decoder.c references a file that doesn't exist: Documentation/arm64/memory.rst
arch/arm64/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/arm64/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/arm64/kvm/hisilicon/hisi_virt.h:112:13: warning: 'hisi_ipiv_supported_per_vm' defined but not used [-Wunused-function]
arch/arm64/kvm/hisilicon/hisi_virt.h:116:13: warning: 'hisi_ipiv_enable_per_vm' defined but not used [-Wunused-function]
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/x86/kernel/cpu/bpf-rvi.c:129:25: warning: no previous prototype for function 'bpf_arch_flags' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for function 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/x86/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
drivers/crypto/sedriver/wst_se_echip_driver.c:1082:9: warning: no previous prototype for 'se_kernelwrite' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:114:5: warning: no previous prototype for 'se_free_dma_buf' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1175:5: warning: no previous prototype for 'se_chip_load' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1272:6: warning: no previous prototype for 'se_chip_unload' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:150:5: warning: no previous prototype for 'se_printk_hex' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:95:25: warning: no previous prototype for 'se_get_dma_buf' [-Wmissing-prototypes]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:240:32: warning: unused variable 'entry' [-Wunused-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:244:13: warning: variable 'restart_fg' set but not used [-Wunused-but-set-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:256:21: warning: unused variable 'ring_index' [-Wunused-variable]
drivers/irqchip/irq-gic-v3-its.c:392:15: warning: no previous prototype for 'gic_data_rdist_get_vlpi_base' [-Wmissing-prototypes]
drivers/irqchip/irq-gic-v3-its.c:392:15: warning: no previous prototype for function 'gic_data_rdist_get_vlpi_base' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/cqm/cqm_bitmap_table.c:445:23: error: invalid application of 'sizeof' to an incomplete type 'const struct free_memory[]'
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c: mag_mpu_cmd_defs.h is included more than once.
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hwif.c:862: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:410:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/motorcomm/yt6801/yt6801_desc.c:206:73: warning: '%u' directive output may be truncated writing between 1 and 10 bytes into a region of size 8 [-Wformat-truncation=]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:35: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:42: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for 'ps3_pci_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for 'ps3_pci_init_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for 'ps3_pci_init_complete_exit' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli.c:108:9: error: function 'ps3stor_cli_printf' might be a candidate for 'gnu_printf' format attribute [-Werror=suggest-attribute=format]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for 'ps3_dump_context_show' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for 'ps3_dump_file_write' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for 'ps3_dump_file_close' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for 'ps3_dump_local_time' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for 'ps3_dump_filename_build' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for 'ps3_dump_file_open' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for 'ps3_trigger_irq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for 'ps3_resp_status_convert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for 'ps3_io_recv_ok_stat_inc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for 'ps3_cmd_stat_content_clear' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for 'ps3_dump_dir_length' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for 'ps3_scsi_private_init_pd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for 'ps3_scsi_private_init_vd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for 'ps3_sas_expander_phys_refresh' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_instance_manager.c:669:60: error: 'snprintf' output may be truncated before the last format character [-Werror=format-truncation=]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for 'ps3_ioc_resource_prepare_hba' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for 'ps3_ioc_resource_prepare_switch' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for 'ps3_ioc_resource_prepare_raid' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for 'ps3_hard_reset_to_ready' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for 'ps3_clean_mgr_cmd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: 'PS3_INTERRUPT_CMD_ENABLE_MSIX' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: 'PS3_INTERRUPT_MASK_DISABLE' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: 'PS3_INTERRUPT_STATUS_EXIST_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: 'PS3_INTERRUPT_CLEAR_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: 'PS3_SSD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: 'PS3_HDD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for 'ps3_cli_ver_query' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for 'ps3_qos_pd_waitq_ratio_update' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for 'ps3_hba_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for 'ps3_hba_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for 'ps3_cmd_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for 'ps3_qos_cmd_waitq_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for 'ps3_hba_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for 'ps3_hba_qos_vd_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for 'ps3_hba_qos_vd_reset' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for 'ps3_hba_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for 'ps3_raid_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for 'ps3_qos_mgrq_resend' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for 'ps3_qos_vd_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for 'ps3_raid_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for 'ps3_qos_exclusive_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for 'ps3_qos_tg_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for 'ps3_raid_qos_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4022:6: error: no previous prototype for 'ps3_raid_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4083:6: error: no previous prototype for 'ps3_raid_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for 'ps3_qos_all_pd_rc_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for 'ps3_pd_quota_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for 'ps3_pd_quota_waitq_clean' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for 'ps3_range_check_and_insert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for 'ps3_r1x_hash_range_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for 'ps3_r1x_hash_range_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for 'ps3_r1x_hash_bit_check' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for 'ps3_r1x_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for 'ps3_r1x_hash_bit_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for 'rbtDelNodeDo' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for 'ps3_recovery_irq_queue_destroy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for 'ps3_hard_recovery_state_finish' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:363:5: error: no previous prototype for 'ps3_recovery_state_transfer' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for 'ps3_recovery_context_alloc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for 'ps3_recovery_context_free' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for 'ps3_recovery_context_delete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:407:5: error: no previous prototype for 'ps3_sas_update_phy_info' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1110:5: error: no previous prototype for 'ps3_wait_for_outstanding_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:876:6: error: no previous prototype for 'ps3_set_task_manager_busy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1958:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
fs/nfs/dir.c:1498:6: warning: no previous prototype for 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/dir.c:1498:6: warning: no previous prototype for function 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:127: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/dns_process.c:129:6: warning: no previous prototype for function 'enfs_swap_name_cache' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:148:6: warning: no previous prototype for function 'enfs_domain_inc' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:217:6: warning: no previous prototype for function 'ip_list_append' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:361:5: warning: no previous prototype for function 'enfs_quick_sort' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:394:5: warning: no previous prototype for function 'enfs_dns_process_ip' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:434:5: warning: no previous prototype for function 'enfs_server_query_dns' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:494:6: warning: no previous prototype for function 'query_dns_each_name' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:582:5: warning: no previous prototype for function 'enfs_iter_nfs_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:669:6: warning: no previous prototype for function 'enfs_domain_for_each' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:92:6: warning: no previous prototype for function 'enfs_update_domain_name' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_config.c:554:6: warning: no previous prototype for function 'enfs_glob_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:100:6: warning: no previous prototype for function 'enfs_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:95:9: warning: no previous prototype for function 'enfs_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:112:6: warning: no previous prototype for function 'enfs_update_lookup_cache_flag_to_server' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:146:5: warning: no previous prototype for function 'enfs_query_lookup_cache' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:251:6: warning: no previous prototype for function 'enfs_query_lookup_cache_pre_check' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:269:6: warning: no previous prototype for function 'lookupcache_execute_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:292:6: warning: no previous prototype for function 'lookupcache_workqueue_queue_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:305:5: warning: no previous prototype for function 'lookupcache_add_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:374:6: warning: no previous prototype for function 'lookupcache_loop_rpclnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:423:6: warning: no previous prototype for function 'enfs_lookupcache_update_switch' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:440:5: warning: no previous prototype for function 'lookupcache_routine' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:460:5: warning: no previous prototype for function 'lookupcache_start' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:471:5: warning: no previous prototype for function 'enfs_lookupcache_workqueue_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:487:6: warning: no previous prototype for function 'lookupcache_workqueue_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:504:5: warning: no previous prototype for function 'enfs_lookupcache_timer_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:98:6: warning: no previous prototype for function 'enfs_clean_server_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:179: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/enfs_multipath.c:321:5: warning: no previous prototype for function 'enfs_configure_xprt_to_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:357:6: warning: no previous prototype for function 'enfs_cmp_addrs' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:374:6: warning: no previous prototype for function 'enfs_xprt_addrs_is_same' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:393:6: warning: no previous prototype for function 'enfs_already_have_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:589:6: warning: variable 'link_count' set but not used [-Wunused-but-set-variable]
fs/nfs/enfs/enfs_multipath.c:836:5: warning: no previous prototype for function 'enfs_multipath_create_thread' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:932:6: warning: no previous prototype for function 'enfs_create_multi_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:988:6: warning: no previous prototype for function 'enfs_release_rpc_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:120:6: warning: no previous prototype for function 'enfs_free_client_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:135:6: warning: no previous prototype for function 'nfs_multipath_client_info_free_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:191:6: warning: no previous prototype for function 'nfs_multipath_ip_list_info_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:328:6: warning: no previous prototype for function 'print_ip_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:352:6: warning: no previous prototype for function 'print_dns_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:390:6: warning: no previous prototype for function 'convert_lookup_cache_str' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:72:5: warning: no previous prototype for function 'nfs_multipath_client_mount_info_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:162:5: warning: no previous prototype for function 'enfs_parse_ip_single' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:236:6: warning: no previous prototype for function 'enfs_valid_ip' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:24:6: warning: no previous prototype for function 'nfs_multipath_parse_ip_ipv6_add' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:361:6: warning: no previous prototype for function 'isInvalidDns' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:387:5: warning: no previous prototype for function 'nfs_multipath_parse_dns_list' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for function 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for function 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/sched/core.c:158:5: warning: no previous prototype for 'sched_task_is_throttled' [-Wmissing-prototypes]
kernel/sched/core.c:158:5: warning: no previous prototype for function 'sched_task_is_throttled' [-Wmissing-prototypes]
kismet: WARNING: unmet direct dependencies detected for ARM_SPE_MEM_SAMPLING when selected by MEM_SAMPLING
kismet: WARNING: unmet direct dependencies detected for DEBUG_FEATURE_BYPASS when selected by FAST_IRQ
kismet: WARNING: unmet direct dependencies detected for DEBUG_FEATURE_BYPASS when selected by FAST_SYSCALL
kismet: WARNING: unmet direct dependencies detected for MOTORCOMM_PHY when selected by YT6801
mm/damon/core.c:116:5: warning: no previous prototype for function 'damon_target_init_kfifo' [-Wmissing-prototypes]
mm/damon/core.c:132:6: warning: no previous prototype for function 'damon_target_deinit_kfifo' [-Wmissing-prototypes]
mm/dynamic_pool.c:1704:51: warning: variable 'ret' is uninitialized when used here [-Wuninitialized]
mm/madvise.c:297:6: warning: no previous prototype for 'force_swapin_vma' [-Wmissing-prototypes]
mm/madvise.c:297:6: warning: no previous prototype for function 'force_swapin_vma' [-Wmissing-prototypes]
mm/mem_sampling.c:69:6: warning: no previous prototype for function 'mem_sampling_record_cb_register' [-Wmissing-prototypes]
mm/mem_sampling.c:86:6: warning: no previous prototype for function 'mem_sampling_record_cb_unregister' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for function 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1618: warning: expecting prototype for memblock_alloc_internal(). Prototype was for __memblock_alloc_internal() instead
mm/memcontrol.c:3382:6: warning: no previous prototype for function 'hisi_oom_recover' [-Wmissing-prototypes]
mm/memcontrol.c:4733:12: warning: 'mem_cgroup_check_swap_for_v1' defined but not used [-Wunused-function]
mm/mempolicy.c:1115:25: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/mempolicy.c:1115:32: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/oom_kill.c:319: warning: Function parameter or member 'oc' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'points' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'task' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: expecting prototype for We choose the task in low(). Prototype was for oom_next_task() instead
mm/page_cache_limit.c:61:5: warning: no previous prototype for 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:61:5: warning: no previous prototype for function 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for function 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for function 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/pagewalk.c:816:(.text+0x1cbc): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `vm_normal_page_pmd'
mm/pagewalk.c:816:(.text+0x1cbc): undefined reference to `vm_normal_page_pmd'
mm/share_pool.c:1226:14: error: call to undeclared function 'huge_ptep_get'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
mm/share_pool.c:1226:8: error: initializing 'pte_t' with an expression of incompatible type 'int'
mm/share_pool.c:1510: warning: Function parameter or member 'node_id' not described in 'sp_area_alloc'
mm/share_pool.c:2425: warning: duplicate section name 'Return'
mm/share_pool.c:2796:7: warning: variable 'is_hugepage' set but not used [-Wunused-but-set-variable]
mm/share_pool.c:2844: warning: Function parameter or member 'spg_id' not described in 'mg_sp_unshare'
mm/share_pool.c:975: warning: expecting prototype for mp_sp_group_id_by_pid(). Prototype was for mg_sp_group_id_by_pid() instead
mm/vmalloc.c:4976: warning: Function parameter or member 'pgoff' not described in 'remap_vmalloc_hugepage_range_partial'
shadow.c:(.text+0x5ec): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `__memcpy_mc'
Unverified Error/Warning (likely false positive, kindly check if interested):
drivers/net/ethernet/yunsilicon/xsc/net/xsc_eth_sysfs.c: linux/types.h is included more than once.
fs/nfs/enfs/enfs_multipath.c: enfs_multipath.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-function-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_bitmap_table.c:error:invalid-application-of-sizeof-to-an-incomplete-type-const-struct-free_memory
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_deinit_kfifo
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_init_kfifo
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_register
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_unregister
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-hisi_oom_recover
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-share_pool.c:warning:Function-parameter-or-member-node_id-not-described-in-sp_area_alloc
| |-- mm-share_pool.c:warning:Function-parameter-or-member-spg_id-not-described-in-mg_sp_unshare
| |-- mm-share_pool.c:warning:duplicate-section-name-Return
| |-- mm-share_pool.c:warning:expecting-prototype-for-mp_sp_group_id_by_pid().-Prototype-was-for-mg_sp_group_id_by_pid()-instead
| |-- mm-share_pool.c:warning:variable-is_hugepage-set-but-not-used
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- arm64-allnoconfig
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-ARM_SPE_MEM_SAMPLING-when-selected-by-MEM_SAMPLING
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DEBUG_FEATURE_BYPASS-when-selected-by-FAST_IRQ
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DEBUG_FEATURE_BYPASS-when-selected-by-FAST_SYSCALL
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-MOTORCOMM_PHY-when-selected-by-YT6801
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-defconfig
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- arch-arm64-kvm-hisilicon-hisi_virt.h:warning:hisi_ipiv_enable_per_vm-defined-but-not-used
| |-- arch-arm64-kvm-hisilicon-hisi_virt.h:warning:hisi_ipiv_supported_per_vm-defined-but-not-used
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-001-20250609
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-function-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_task_is_throttled
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-002-20250609
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-003-20250609
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-pagewalk.c:(.text):relocation-truncated-to-fit:R_AARCH64_CALL26-against-undefined-symbol-vm_normal_page_pmd
| |-- mm-pagewalk.c:(.text):undefined-reference-to-vm_normal_page_pmd
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- shadow.c:(.text):relocation-truncated-to-fit:R_AARCH64_CALL26-against-undefined-symbol-__memcpy_mc
|-- arm64-randconfig-r112-20250610
| |-- arch-arm64-kernel-idle.c:sparse:sparse:symbol-__pcpu_scope_contexts-was-not-declared.-Should-it-be-static
| |-- drivers-arm-mm_monitor-mm_spe.c:sparse:sparse:symbol-__pcpu_scope_per_cpu_spe_buf-was-not-declared.-Should-it-be-static
| |-- drivers-arm-mm_monitor-spe-decoder-arm-spe-pkt-decoder.c:sparse:sparse:cast-to-restricted-__le16
| |-- drivers-arm-mm_monitor-spe-decoder-arm-spe-pkt-decoder.c:sparse:sparse:cast-to-restricted-__le32
| |-- drivers-arm-mm_monitor-spe-decoder-arm-spe-pkt-decoder.c:sparse:sparse:cast-to-restricted-__le64
| |-- drivers-gpu-drm-phytium-pe22_dp.c:sparse:sparse:symbol-pe22_dp_hw_get_source_lane_count-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-pe22_dp.c:sparse:sparse:symbol-pe22_dp_hw_reset-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-pe22_dp.c:sparse:sparse:symbol-pe22_dp_hw_spread_is_enable-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_crtc.c:sparse:sparse:symbol-phytium_crtc_atomic_destroy_state-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_crtc.c:sparse:sparse:symbol-phytium_crtc_atomic_duplicate_state-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_adjust_link_train_parameter-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_coding_8b10b_need_enable-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_dpcd_sink_dpms-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_encoder_destroy-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_fast_link_train-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_get_link_train_fallback_values-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hpd_poll_handler-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_config_video-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_disable_input_source-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_disable_output-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_disable_video-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_enable_audio-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_enable_input_source-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_enable_output-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_enable_video-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_hpd_irq_setup-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_init-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_output_is_enable-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_hw_video_is_enable-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_scrambled_need_enable-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_dp_start_link_train-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_encoder_mode_valid-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_dp.c:sparse:sparse:symbol-phytium_get_encoder_crtc_mask-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_fbdev.c:sparse:sparse:Initializer-entry-defined-twice
| |-- drivers-gpu-drm-phytium-phytium_fbdev.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-char-noderef-__iomem-screen_base-got-void
| |-- drivers-gpu-drm-phytium-phytium_gem.c:sparse:sparse:symbol-phytium_dma_transfer-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_gem.c:sparse:sparse:symbol-phytium_gem_prime_vmap-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_gem.c:sparse:sparse:symbol-phytium_gem_prime_vunmap-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_gem.c:sparse:sparse:symbol-phytium_memory_pool_alloc-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_gem.c:sparse:sparse:symbol-phytium_memory_pool_free-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_panel.c:sparse:sparse:symbol-phytium_dp_panel_release_backlight_funcs-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__iomem-addr-got-void-pool_virt_addr
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-pool_virt_addr-got-void-noderef-__iomem
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:symbol-dc_msi_enable-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:symbol-phytium_pci_dma_fini-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:symbol-phytium_pci_dma_init-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:symbol-phytium_pci_vram_fini-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:symbol-phytium_pci_vram_hw_init-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_pci.c:sparse:sparse:symbol-phytium_pci_vram_init-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_plane.c:sparse:sparse:symbol-phytium_plane_atomic_destroy_state-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_plane.c:sparse:sparse:symbol-phytium_plane_atomic_duplicate_state-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_plane.c:sparse:sparse:symbol-phytium_plane_atomic_set_property-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_plane.c:sparse:sparse:symbol-phytium_plane_destroy-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_plane.c:sparse:sparse:symbol-phytium_plane_funcs-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_plane.c:sparse:sparse:symbol-phytium_plane_helper_funcs-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_platform.c:sparse:sparse:Initializer-entry-defined-twice
| |-- drivers-gpu-drm-phytium-phytium_platform.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-volatile-noderef-__iomem-addr-got-void-pool_virt_addr
| |-- drivers-gpu-drm-phytium-phytium_platform.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-pool_virt_addr-got-void-noderef-__iomem
| |-- drivers-gpu-drm-phytium-phytium_platform.c:sparse:sparse:symbol-phytium_platform_carveout_mem_fini-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-phytium_platform.c:sparse:sparse:symbol-phytium_platform_carveout_mem_init-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-px210_dp.c:sparse:sparse:symbol-px210_dp_hw_get_source_lane_count-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-px210_dp.c:sparse:sparse:symbol-px210_dp_hw_reset-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-phytium-px210_dp.c:sparse:sparse:symbol-px210_dp_hw_spread_is_enable-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_event.c:sparse:sparse:symbol-ps3_event_code_pd_attr-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-linkdata-ps3stor-ps3_event.c:sparse:sparse:symbol-ps3_event_code_pd_count-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-linkdata-ps3stor-ps3_event.c:sparse:sparse:symbol-ps3_event_code_vd_attr-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:sparse:sparse:symbol-g_ps3_host_info-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_state.c:sparse:sparse:cast-removes-address-space-__iomem-of-expression
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_state.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__iomem-reg-got-unsigned-char
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_state.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__iomem-reg-got-unsigned-char-assigned-reset_addr
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_state.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__iomem-reg-got-unsigned-char-reset_key_state_vir_addr
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_state.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__iomem-reg-got-unsigned-char-reset_key_vir_addr
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_mgr_channel.h:sparse:sparse:cast-to-restricted-__le32
| |-- drivers-scsi-linkdata-ps3stor-ps3_mgr_cmd.c:sparse:sparse:cast-to-restricted-__le32
| |-- drivers-scsi-linkdata-ps3stor-ps3_mgr_cmd.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-length-got-restricted-__le32-usertype
| |-- drivers-scsi-linkdata-ps3stor-ps3_mgr_cmd.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-long-long-addr-got-restricted-__le64-usertype
| |-- drivers-scsi-linkdata-ps3stor-ps3_mgr_cmd.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-long-long-sasAddr-got-restricted-__le64-usertype
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_pci.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void-reg
| |-- drivers-scsi-linkdata-ps3stor-ps3_pci.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-volatile-noderef-__iomem-addr-got-void-reg
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_deinit_kfifo
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_init_kfifo
| |-- mm-mem_sampling.c:sparse:sparse:symbol-mem_sampling_record_cb_list-was-not-declared.-Should-it-be-static
| |-- mm-mem_sampling.c:sparse:sparse:symbol-mem_sampling_record_cb_register-was-not-declared.-Should-it-be-static
| |-- mm-mem_sampling.c:sparse:sparse:symbol-mem_sampling_record_cb_unregister-was-not-declared.-Should-it-be-static
| |-- mm-mem_sampling.c:sparse:sparse:symbol-mem_sampling_saved_state-was-not-declared.-Should-it-be-static
| |-- mm-mem_sampling.c:sparse:sparse:symbol-mm_damon_mem_sampling-was-not-declared.-Should-it-be-static
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_register
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_unregister
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-share_pool.c:error:call-to-undeclared-function-huge_ptep_get-ISO-C99-and-later-do-not-support-implicit-function-declarations
| |-- mm-share_pool.c:error:initializing-pte_t-with-an-expression-of-incompatible-type-int
| |-- mm-share_pool.c:warning:variable-is_hugepage-set-but-not-used
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allmodconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete_exit
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli.c:error:function-ps3stor_cli_printf-might-be-a-candidate-for-gnu_printf-format-attribute
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-ps3_dump_context_show
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_close
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_open
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_write
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_filename_build
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_local_time
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_resp_status_convert
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_trigger_irq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_cmd_stat_content_clear
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_io_recv_ok_stat_inc
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-ps3_dump_dir_length
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_pd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_vd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-ps3_sas_expander_phys_refresh
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:error:snprintf-output-may-be-truncated-before-the-last-format-character
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_hba
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_raid
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_switch
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-ps3_hard_reset_to_ready
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-ps3_clean_mgr_cmd
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_HDD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CLEAR_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_ENABLE_MSIX-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_MASK_DISABLE-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_STATUS_EXIST_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_SSD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-ps3_cli_ver_query
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_cmd_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_init
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_reset
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clean
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_all_pd_rc_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_cmd_waitq_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_exclusive_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_mgrq_resend
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_pd_waitq_ratio_update
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_tg_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_vd_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_conflict_queue_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_check
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_range_check_and_insert
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-rbtDelNodeDo
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_hard_recovery_state_finish
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_alloc
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_delete
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_free
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_irq_queue_destroy
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_state_transfer
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-ps3_sas_update_phy_info
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_set_task_manager_busy
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_wait_for_outstanding_complete
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpuset_from_task
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_sysctl_handler
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allnoconfig
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-MOTORCOMM_PHY-when-selected-by-YT6801
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-defconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-001-20250609
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-002-20250609
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_task_is_throttled
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-r053-20250610
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete_exit
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli.c:error:function-ps3stor_cli_printf-might-be-a-candidate-for-gnu_printf-format-attribute
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-ps3_dump_context_show
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_close
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_open
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_write
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_filename_build
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_local_time
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_resp_status_convert
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_trigger_irq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_cmd_stat_content_clear
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_io_recv_ok_stat_inc
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-ps3_dump_dir_length
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_pd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_vd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-ps3_sas_expander_phys_refresh
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:error:snprintf-output-may-be-truncated-before-the-last-format-character
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_hba
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_raid
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_switch
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-ps3_hard_reset_to_ready
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-ps3_clean_mgr_cmd
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_HDD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CLEAR_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_ENABLE_MSIX-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_MASK_DISABLE-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_STATUS_EXIST_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_SSD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-ps3_cli_ver_query
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_cmd_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_init
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_reset
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clean
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_all_pd_rc_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_cmd_waitq_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_exclusive_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_mgrq_resend
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_pd_waitq_ratio_update
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_tg_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_vd_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_conflict_queue_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_check
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_range_check_and_insert
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-rbtDelNodeDo
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_hard_recovery_state_finish
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_alloc
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_delete
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_free
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_irq_queue_destroy
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_state_transfer
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-ps3_sas_update_phy_info
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_set_task_manager_busy
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_wait_for_outstanding_complete
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_sysctl_handler
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-r063-20250610
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allnoconfig
| |-- Warning:drivers-arm-mm_monitor-spe-decoder-arm-spe-decoder.c-references-a-file-that-doesn-t-exist:Documentation-arm64-memory.rst
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-crypto-sedriver-wst_se_common_type.h:linux-version.h-not-needed.
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:mag_mpu_cmd_defs.h-is-included-more-than-once.
| |-- drivers-net-ethernet-yunsilicon-xsc-net-xsc_eth_sysfs.c:linux-types.h-is-included-more-than-once.
| |-- fs-nfs-enfs-enfs_multipath.c:enfs_multipath.h-is-included-more-than-once.
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-MOTORCOMM_PHY-when-selected-by-YT6801
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allyesconfig
| |-- arch-x86-kernel-cpu-bpf-rvi.c:warning:no-previous-prototype-for-function-bpf_arch_flags
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_bitmap_table.c:error:invalid-application-of-sizeof-to-an-incomplete-type-const-struct-free_memory
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- x86_64-buildonly-randconfig-001-20250609
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-002-20250609
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-003-20250609
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-004-20250609
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-005-20250609
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-006-20250609
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-defconfig
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-randconfig-121-20250610
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:sparse:sparse:symbol-nfs_check_have_lookup_cache_flag-was-not-declared.-Should-it-be-static
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-clnt.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
|-- x86_64-randconfig-122-20250610
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- kernel-sched-soft_domain.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-randconfig-123-20250610
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:sparse:sparse:symbol-nfs_check_have_lookup_cache_flag-was-not-declared.-Should-it-be-static
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-clnt.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
|-- x86_64-randconfig-161-20250609
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-randconfig-r051-20250610
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
`-- x86_64-rhel-9.4-rust
|-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
|-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
|-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
|-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
|-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
|-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
|-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
`-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
elapsed time: 733m
configs tested: 22
configs skipped: 124
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 defconfig gcc-15.1.0
arm64 randconfig-001-20250609 clang-21
arm64 randconfig-002-20250609 clang-21
arm64 randconfig-003-20250609 gcc-14.3.0
arm64 randconfig-004-20250609 gcc-9.5.0
loongarch allmodconfig gcc-15.1.0
loongarch allnoconfig gcc-15.1.0
loongarch defconfig gcc-15.1.0
loongarch randconfig-001-20250609 gcc-15.1.0
loongarch randconfig-002-20250609 gcc-12.4.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250609 clang-20
x86_64 buildonly-randconfig-002-20250609 gcc-12
x86_64 buildonly-randconfig-003-20250609 clang-20
x86_64 buildonly-randconfig-004-20250609 clang-20
x86_64 buildonly-randconfig-005-20250609 clang-20
x86_64 buildonly-randconfig-006-20250609 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10] BUILD REGRESSION dd32d51934d00fd319caec8710bd1a438bd69859
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-5.10
branch HEAD: dd32d51934d00fd319caec8710bd1a438bd69859 !16618 SELinux: Add check for the user data passed to kcalloc in hashtab_init
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505141607.i1GpuEfA-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505141824.YitLoE8O-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505142017.QGHM5TBg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505211008.Lhrh17Cr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280024.8UbNlKSa-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280046.3lWnWdOg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280545.IP3aIukn-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280648.AMUiWr41-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505301434.xq8uzhGR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506042153.UZ29KeGA-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506092002.S7MmpM4X-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202505291536.8a44hWAc-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202506011207.GF5fjCi8-lkp@intel.com
drivers/irqchip/irq-gic-v3-its.c:524:6: warning: no previous prototype for 'build_devid_pools' [-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:403:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:546:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:900:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:946:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1060:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:160:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:201:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:29:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:51:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:77:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:132:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:244:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:404:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:86:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:884:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1582:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1664:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1633:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:148:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:37:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:89:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:308:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:786:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:26:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:29:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:610:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1059:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2020:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2041:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2101:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:212:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2464:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2828:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2937:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3024:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3280:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3335:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:336:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3479:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:352:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:364:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3822:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:750:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:877:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:893:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1174:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1232:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1313:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:579:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:679:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:731:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:989:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:155:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:205:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2701:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:364:5: error: no previous prototype for function 'ps3_recovery_state_transfer' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:73:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:83:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:89:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:408:5: error: no previous prototype for function 'ps3_sas_update_phy_info' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1111:5: error: no previous prototype for function 'ps3_wait_for_outstanding_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:877:6: error: no previous prototype for function 'ps3_set_task_manager_busy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1959:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
kernel/locking/lockdep.o: warning: objtool: lockdep_unregister_key()+0x2ff: unreachable instruction
kismet: WARNING: unmet direct dependencies detected for BPF_NET_GLOBAL_PROG when selected by SCHED_TASK_RELATIONSHIP
kismet: WARNING: unmet direct dependencies detected for HARDLOCKUP_DETECTOR when selected by SDEI_WATCHDOG
kismet: WARNING: unmet direct dependencies detected for PCI_IOV when selected by CRYPTO_DEV_HISI_MIGRATION
kismet: WARNING: unmet direct dependencies detected for SERIAL_EARLYCON when selected by SERIAL_IMX_EARLYCON
kismet: WARNING: unmet direct dependencies detected for TASK_PLACEMENT_BY_CPU_RANGE when selected by BPF_SCHED
mm/damon/core-test.h:284:2: warning: comparison of distinct pointer types ('typeof (__left) *' (aka 'unsigned int *') and 'typeof (__right) *' (aka 'int *')) [-Wcompare-distinct-pointer-types]
mm/hugetlb.c:2223:9: warning: variable 'gfp' set but not used [-Wunused-but-set-variable]
mm/khugepaged.c:1703: warning: Function parameter or member 'reliable' not described in 'collapse_file'
mm/page_alloc.c: linux/vmalloc.h is included more than once.
mm/page_alloc.c:3040:6: warning: no previous prototype for '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:3040:6: warning: no previous prototype for function '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:6794:23: warning: no previous prototype for function 'arch_memmap_init' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for function '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/process_vm_access.c: linux/compat.h is included more than once.
mm/slub.o: warning: objtool: kmem_cache_free()+0x43a: unreachable instruction
Unverified Error/Warning (likely false positive, kindly check if interested):
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-conn-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-filters: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/idle-states.yaml: idle-state-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,mode: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,slew-percent: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/display/allwinner,sun4i-a10-tcon.yaml: allwinner,tcon-channel: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml: adi,reference-select: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: label: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,avg-samples: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,decimation: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,hw-settle-time: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,pre-scaling: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-clk-src: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-names: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channels: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,filter-order: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,datarate: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,gain: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml: adi,ch-func: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,cold-junction-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-rtd: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-steinhart: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermistor: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermocouple: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,excitation-current-nanoamp: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,ideal-factor-value: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,number-of-wires: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rsense-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rtd-curve: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,sensor-type: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml: affinity: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp50xx.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: chan-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: led-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: max-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: color: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: function: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: rohm,led-compatible: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/imx219.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/ov8856.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-bus-width: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAH: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAS: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAW: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tBP: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tSTRV: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml: slew-rate: Missing additionalProperties/unevaluatedProperties constraint
drivers/irqchip/irq-gic-v3-its.c: linux/pci.h is included more than once.
drivers/net/ethernet/mellanox/mlx5/core/lib/fs_chains.o: warning: objtool: mlx5_chains_put_table()+0x38f: unreachable instruction
drivers/ub/urma/uburma/uburma_cmd.c:342:6: sparse: sparse: symbol 'uburma_jetty_event_cb' was not declared. Should it be static?
drivers/ub/urma/uburma/uburma_cmd.c:70:44: sparse: sparse: incorrect type in argument 2 (different address spaces)
drivers/ub/urma/uburma/uburma_cmd.c:97:36: sparse: sparse: incorrect type in argument 1 (different address spaces)
drivers/ub/urma/uburma/uburma_event.c:306:51: sparse: sparse: incorrect type in argument 1 (different address spaces)
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x0-in-asm
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x1-in-asm
| `-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x2-in-asm
|-- arm64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BPF_NET_GLOBAL_PROG-when-selected-by-SCHED_TASK_RELATIONSHIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DRM_PANEL_BRIDGE-when-selected-by-DRM_TOSHIBA_TC358762
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-HARDLOCKUP_DETECTOR-when-selected-by-SDEI_WATCHDOG
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PCI_IOV-when-selected-by-CRYPTO_DEV_HISI_MIGRATION
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-SERIAL_EARLYCON-when-selected-by-SERIAL_IMX_EARLYCON
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-TASK_PLACEMENT_BY_CPU_RANGE-when-selected-by-BPF_SCHED
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-defconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-002-20250609
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x0-in-asm
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x1-in-asm
| `-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x2-in-asm
|-- arm64-randconfig-003-20250609
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-004-20250609
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-051-20250609
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-052-20250609
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-053-20250609
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-054-20250609
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-055-20250609
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-r122-20250610
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x0-in-asm
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x1-in-asm
| `-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x2-in-asm
|-- arm64-randconfig-r133-20250610
| |-- block-blk-mq.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- drivers-ub-urma-ubcore-ubcore_cmd.h:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-noderef-__user-from-got-void-const-args_addr
| |-- drivers-ub-urma-ubcore-ubcore_cmd.h:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__user-to-got-void-args_addr
| |-- drivers-ub-urma-ubcore-ubcore_main.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-addr-got-restricted-__be32-usertype-ipv4
| |-- drivers-ub-urma-ubcore-ubcore_main.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-reserved2-got-restricted-__be32-usertype
| |-- drivers-ub-urma-ubcore-ubcore_main.c:sparse:sparse:restricted-__be64-degrades-to-integer
| |-- drivers-ub-urma-ubcore-ubcore_tp.c:sparse:sparse:symbol-ubcore_modify_tp_state-was-not-declared.-Should-it-be-static
| |-- drivers-ub-urma-uburma-uburma_cmd.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-args_addr-got-void-noderef-__user
| |-- drivers-ub-urma-uburma-uburma_cmd.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-args_addr-got-void-noderef-__user
| |-- drivers-ub-urma-uburma-uburma_cmd.c:sparse:sparse:symbol-uburma_jetty_event_cb-was-not-declared.-Should-it-be-static
| |-- drivers-ub-urma-uburma-uburma_event.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__user-to-got-void
| |-- include-linux-blk-mq.h:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:linux-pci.h-is-included-more-than-once.
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BPF_NET_GLOBAL_PROG-when-selected-by-SCHED_TASK_RELATIONSHIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DRM_PANEL_BRIDGE-when-selected-by-DRM_TOSHIBA_TC358762
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-SERIAL_EARLYCON-when-selected-by-SERIAL_IMX_EARLYCON
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-TASK_PLACEMENT_BY_CPU_RANGE-when-selected-by-BPF_SCHED
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-page_alloc.c:linux-vmalloc.h-is-included-more-than-once.
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
| `-- mm-process_vm_access.c:linux-compat.h-is-included-more-than-once.
|-- x86_64-allyesconfig
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-001-20250609
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-002-20250609
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-003-20250609
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-004-20250609
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-005-20250609
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-006-20250609
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-defconfig
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-123-20250609
| `-- kernel-locking-lockdep.o:warning:objtool:lockdep_unregister_key:unreachable-instruction
|-- x86_64-randconfig-161-20250609
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-r052-20250610
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-r112-20250610
| |-- block-blk-mq.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- drivers-ub-urma-ubcore-ubcore_cmd.h:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-noderef-__user-from-got-void-const-args_addr
| |-- drivers-ub-urma-ubcore-ubcore_cmd.h:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__user-to-got-void-args_addr
| |-- drivers-ub-urma-ubcore-ubcore_main.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-addr-got-restricted-__be32-usertype-ipv4
| |-- drivers-ub-urma-ubcore-ubcore_main.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-reserved2-got-restricted-__be32-usertype
| |-- drivers-ub-urma-ubcore-ubcore_main.c:sparse:sparse:restricted-__be64-degrades-to-integer
| |-- drivers-ub-urma-ubcore-ubcore_tp.c:sparse:sparse:symbol-ubcore_modify_tp_state-was-not-declared.-Should-it-be-static
| |-- include-linux-blk-mq.h:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
`-- x86_64-rhel-9.4-rust
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-mellanox-mlx5-core-lib-fs_chains.o:warning:objtool:mlx5_chains_put_table:unreachable-instruction
|-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
|-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
`-- mm-slub.o:warning:objtool:kmem_cache_free:unreachable-instruction
elapsed time: 728m
configs tested: 17
configs skipped: 129
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 defconfig gcc-15.1.0
arm64 randconfig-001-20250609 clang-21
arm64 randconfig-002-20250609 clang-21
arm64 randconfig-003-20250609 gcc-14.3.0
arm64 randconfig-004-20250609 gcc-9.5.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250609 clang-20
x86_64 buildonly-randconfig-002-20250609 gcc-12
x86_64 buildonly-randconfig-003-20250609 clang-20
x86_64 buildonly-randconfig-004-20250609 clang-20
x86_64 buildonly-randconfig-005-20250609 clang-20
x86_64 buildonly-randconfig-006-20250609 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2380/2380] drivers/gpu/drm/phytium/phytium_plane.c:30:6: sparse: sparse: symbol 'phytium_plane_destroy' was not declared. Should it be static?
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: a7f4bf73c34996ee6cdda292e8f906a9c30879de
commit: b80df10f845813bb4fc2002b5386ecdfa8be5f6c [2380/2380] DRM: Phytium display DRM driver
config: arm64-randconfig-r112-20250610 (https://download.01.org/0day-ci/archive/20250610/202506100507.lISyTw9e-lkp@…)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce: (https://download.01.org/0day-ci/archive/20250610/202506100507.lISyTw9e-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506100507.lISyTw9e-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/phytium/phytium_plane.c:30:6: sparse: sparse: symbol 'phytium_plane_destroy' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_plane.c:72:1: sparse: sparse: symbol 'phytium_plane_atomic_set_property' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_plane.c:81:24: sparse: sparse: symbol 'phytium_plane_atomic_duplicate_state' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_plane.c:103:1: sparse: sparse: symbol 'phytium_plane_atomic_destroy_state' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_plane.c:111:30: sparse: sparse: symbol 'phytium_plane_funcs' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_plane.c:503:37: sparse: sparse: symbol 'phytium_plane_helper_funcs' was not declared. Should it be static?
--
>> drivers/gpu/drm/phytium/phytium_gem.c:22:5: sparse: sparse: symbol 'phytium_memory_pool_alloc' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_gem.c:37:6: sparse: sparse: symbol 'phytium_memory_pool_free' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_gem.c:160:5: sparse: sparse: symbol 'phytium_gem_prime_vmap' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_gem.c:169:6: sparse: sparse: symbol 'phytium_gem_prime_vunmap' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_gem.c:181:5: sparse: sparse: symbol 'phytium_dma_transfer' was not declared. Should it be static?
--
>> drivers/gpu/drm/phytium/phytium_crtc.c:379:23: sparse: sparse: symbol 'phytium_crtc_atomic_duplicate_state' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_crtc.c:395:1: sparse: sparse: symbol 'phytium_crtc_atomic_destroy_state' was not declared. Should it be static?
--
>> drivers/gpu/drm/phytium/phytium_dp.c:506:6: sparse: sparse: symbol 'phytium_dp_coding_8b10b_need_enable' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:523:6: sparse: sparse: symbol 'phytium_dp_scrambled_need_enable' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:656:6: sparse: sparse: symbol 'phytium_dp_hw_enable_audio' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:825:6: sparse: sparse: symbol 'phytium_dp_hw_disable_video' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:836:6: sparse: sparse: symbol 'phytium_dp_hw_video_is_enable' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:847:6: sparse: sparse: symbol 'phytium_dp_hw_enable_video' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:859:6: sparse: sparse: symbol 'phytium_dp_hw_config_video' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:948:6: sparse: sparse: symbol 'phytium_dp_hw_disable_output' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:960:6: sparse: sparse: symbol 'phytium_dp_hw_enable_output' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:972:6: sparse: sparse: symbol 'phytium_dp_hw_enable_input_source' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:983:6: sparse: sparse: symbol 'phytium_dp_hw_disable_input_source' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:993:6: sparse: sparse: symbol 'phytium_dp_hw_output_is_enable' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:1030:6: sparse: sparse: symbol 'phytium_dp_hw_hpd_irq_setup' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:1045:5: sparse: sparse: symbol 'phytium_dp_hw_init' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:1223:6: sparse: sparse: symbol 'phytium_dp_dpcd_sink_dpms' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:1448:5: sparse: sparse: symbol 'phytium_dp_get_link_train_fallback_values' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:1497:5: sparse: sparse: symbol 'phytium_dp_start_link_train' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:1802:6: sparse: sparse: symbol 'phytium_dp_hpd_poll_handler' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:1949:6: sparse: sparse: symbol 'phytium_dp_fast_link_train' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:2140:6: sparse: sparse: symbol 'phytium_dp_adjust_link_train_parameter' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:2200:1: sparse: sparse: symbol 'phytium_encoder_mode_valid' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:2256:6: sparse: sparse: symbol 'phytium_dp_encoder_destroy' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_dp.c:2469:5: sparse: sparse: symbol 'phytium_get_encoder_crtc_mask' was not declared. Should it be static?
--
>> drivers/gpu/drm/phytium/phytium_fbdev.c:100:26: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected char [noderef] __iomem *screen_base @@ got void * @@
drivers/gpu/drm/phytium/phytium_fbdev.c:100:26: sparse: expected char [noderef] __iomem *screen_base
drivers/gpu/drm/phytium/phytium_fbdev.c:100:26: sparse: got void *
>> drivers/gpu/drm/phytium/phytium_fbdev.c:38:10: sparse: sparse: Initializer entry defined twice
drivers/gpu/drm/phytium/phytium_fbdev.c:39:10: sparse: also defined here
--
>> drivers/gpu/drm/phytium/px210_dp.c:852:6: sparse: sparse: symbol 'px210_dp_hw_spread_is_enable' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/px210_dp.c:864:5: sparse: sparse: symbol 'px210_dp_hw_reset' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/px210_dp.c:897:9: sparse: sparse: symbol 'px210_dp_hw_get_source_lane_count' was not declared. Should it be static?
--
>> drivers/gpu/drm/phytium/phytium_panel.c:234:6: sparse: sparse: symbol 'phytium_dp_panel_release_backlight_funcs' was not declared. Should it be static?
--
>> drivers/gpu/drm/phytium/phytium_platform.c:32:38: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected void *pool_virt_addr @@ got void [noderef] __iomem * @@
drivers/gpu/drm/phytium/phytium_platform.c:32:38: sparse: expected void *pool_virt_addr
drivers/gpu/drm/phytium/phytium_platform.c:32:38: sparse: got void [noderef] __iomem *
>> drivers/gpu/drm/phytium/phytium_platform.c:55:21: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void volatile [noderef] __iomem *addr @@ got void *pool_virt_addr @@
drivers/gpu/drm/phytium/phytium_platform.c:55:21: sparse: expected void volatile [noderef] __iomem *addr
drivers/gpu/drm/phytium/phytium_platform.c:55:21: sparse: got void *pool_virt_addr
>> drivers/gpu/drm/phytium/phytium_platform.c:19:5: sparse: sparse: symbol 'phytium_platform_carveout_mem_init' was not declared. Should it be static?
drivers/gpu/drm/phytium/phytium_platform.c:65:29: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void volatile [noderef] __iomem *addr @@ got void *pool_virt_addr @@
drivers/gpu/drm/phytium/phytium_platform.c:65:29: sparse: expected void volatile [noderef] __iomem *addr
drivers/gpu/drm/phytium/phytium_platform.c:65:29: sparse: got void *pool_virt_addr
>> drivers/gpu/drm/phytium/phytium_platform.c:60:6: sparse: sparse: symbol 'phytium_platform_carveout_mem_fini' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_platform.c:298:10: sparse: sparse: Initializer entry defined twice
drivers/gpu/drm/phytium/phytium_platform.c:306:10: sparse: also defined here
--
>> drivers/gpu/drm/phytium/phytium_pci.c:19:5: sparse: sparse: symbol 'dc_msi_enable' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_pci.c:23:6: sparse: sparse: symbol 'phytium_pci_vram_hw_init' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_pci.c:37:38: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected void *pool_virt_addr @@ got void [noderef] __iomem * @@
drivers/gpu/drm/phytium/phytium_pci.c:37:38: sparse: expected void *pool_virt_addr
drivers/gpu/drm/phytium/phytium_pci.c:37:38: sparse: got void [noderef] __iomem *
>> drivers/gpu/drm/phytium/phytium_pci.c:63:38: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void [noderef] __iomem *addr @@ got void *pool_virt_addr @@
drivers/gpu/drm/phytium/phytium_pci.c:63:38: sparse: expected void [noderef] __iomem *addr
drivers/gpu/drm/phytium/phytium_pci.c:63:38: sparse: got void *pool_virt_addr
>> drivers/gpu/drm/phytium/phytium_pci.c:30:5: sparse: sparse: symbol 'phytium_pci_vram_init' was not declared. Should it be static?
drivers/gpu/drm/phytium/phytium_pci.c:72:46: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void [noderef] __iomem *addr @@ got void *pool_virt_addr @@
drivers/gpu/drm/phytium/phytium_pci.c:72:46: sparse: expected void [noderef] __iomem *addr
drivers/gpu/drm/phytium/phytium_pci.c:72:46: sparse: got void *pool_virt_addr
>> drivers/gpu/drm/phytium/phytium_pci.c:68:6: sparse: sparse: symbol 'phytium_pci_vram_fini' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_pci.c:89:5: sparse: sparse: symbol 'phytium_pci_dma_init' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/phytium_pci.c:137:6: sparse: sparse: symbol 'phytium_pci_dma_fini' was not declared. Should it be static?
--
>> drivers/gpu/drm/phytium/pe220x_dp.c:471:6: sparse: sparse: symbol 'pe220x_dp_hw_spread_is_enable' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/pe220x_dp.c:476:5: sparse: sparse: symbol 'pe220x_dp_hw_reset' was not declared. Should it be static?
>> drivers/gpu/drm/phytium/pe220x_dp.c:491:9: sparse: sparse: symbol 'pe220x_dp_hw_get_source_lane_count' was not declared. Should it be static?
vim +/phytium_plane_destroy +30 drivers/gpu/drm/phytium/phytium_plane.c
29
> 30 void phytium_plane_destroy(struct drm_plane *plane)
31 {
32 struct phytium_plane *phytium_plane = to_phytium_plane(plane);
33
34 drm_plane_cleanup(plane);
35 kfree(phytium_plane);
36 }
37
38 /**
39 * phytium_plane_atomic_get_property - fetch plane property value
40 * @plane: plane to fetch property for
41 * @state: state containing the property value
42 * @property: property to look up
43 * @val: pointer to write property value into
44 *
45 * The DRM core does not store shadow copies of properties for
46 * atomic-capable drivers. This entrypoint is used to fetch
47 * the current value of a driver-specific plane property.
48 */
49 static int
50 phytium_plane_atomic_get_property(struct drm_plane *plane,
51 const struct drm_plane_state *state,
52 struct drm_property *property,
53 uint64_t *val)
54 {
55 DRM_DEBUG_KMS("Unknown plane property [PROP:%d:%s]\n", property->base.id, property->name);
56 return -EINVAL;
57 }
58
59 /**
60 * phytium_plane_atomic_set_property - set plane property value
61 * @plane: plane to set property for
62 * @state: state to update property value in
63 * @property: property to set
64 * @val: value to set property to
65 *
66 * Writes the specified property value for a plane into the provided atomic
67 * state object.
68 *
69 * Returns 0 on success, -EINVAL on unrecognized properties
70 */
71 int
> 72 phytium_plane_atomic_set_property(struct drm_plane *plane,
73 struct drm_plane_state *state,
74 struct drm_property *property,
75 uint64_t val)
76 {
77 DRM_DEBUG_KMS("Unknown plane property [PROP:%d:%s]\n", property->base.id, property->name);
78 return -EINVAL;
79 }
80
> 81 struct drm_plane_state *
82 phytium_plane_atomic_duplicate_state(struct drm_plane *plane)
83 {
84 struct drm_plane_state *state = NULL;
85 struct phytium_plane_state *phytium_state = NULL;
86
87 phytium_state = kmemdup(plane->state, sizeof(*phytium_state), GFP_KERNEL);
88
89 if (!phytium_state)
90 return NULL;
91
92 state = &phytium_state->base;
93 if (state->fb)
94 drm_framebuffer_get(state->fb);
95
96 state->fence = NULL;
97 state->commit = NULL;
98
99 return state;
100 }
101
102 void
> 103 phytium_plane_atomic_destroy_state(struct drm_plane *plane, struct drm_plane_state *state)
104 {
105 struct phytium_plane_state *phytium_state = to_phytium_plane_state(state);
106
107 __drm_atomic_helper_plane_destroy_state(state);
108 kfree(phytium_state);
109 }
110
> 111 const struct drm_plane_funcs phytium_plane_funcs = {
112 .update_plane = drm_atomic_helper_update_plane,
113 .disable_plane = drm_atomic_helper_disable_plane,
114 .destroy = phytium_plane_destroy,
115 .reset = drm_atomic_helper_plane_reset,
116 .atomic_get_property = phytium_plane_atomic_get_property,
117 .atomic_set_property = phytium_plane_atomic_set_property,
118 .atomic_duplicate_state = phytium_plane_atomic_duplicate_state,
119 .atomic_destroy_state = phytium_plane_atomic_destroy_state,
120 };
121
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2380/2380] kernel/sched/soft_domain.c:73:17: sparse: sparse: incompatible types in comparison expression (different address spaces):
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: a7f4bf73c34996ee6cdda292e8f906a9c30879de
commit: 645a1ba256efa1b6dd765d20b7b407b501ed3ba6 [2380/2380] sched: topology: Build soft domain for LLC
config: x86_64-randconfig-122-20250610 (https://download.01.org/0day-ci/archive/20250610/202506100428.rYVNbEAi-lkp@…)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250610/202506100428.rYVNbEAi-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506100428.rYVNbEAi-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
kernel/sched/build_policy.c: note: in included file:
kernel/sched/rt.c:965:70: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/rt.c:965:70: sparse: struct task_struct [noderef] __rcu *
kernel/sched/rt.c:965:70: sparse: struct task_struct *
kernel/sched/rt.c:2427:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/rt.c:2427:25: sparse: struct task_struct *
kernel/sched/rt.c:2427:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/rt.c:1051:38: sparse: sparse: incorrect type in initializer (different address spaces) @@ expected struct task_struct *curr @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:1051:38: sparse: expected struct task_struct *curr
kernel/sched/rt.c:1051:38: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/rt.c:1596:31: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:1596:31: sparse: expected struct task_struct *p
kernel/sched/rt.c:1596:31: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/rt.c:1936:9: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected struct sched_domain *[assigned] sd @@ got struct sched_domain [noderef] __rcu *parent @@
kernel/sched/rt.c:1936:9: sparse: expected struct sched_domain *[assigned] sd
kernel/sched/rt.c:1936:9: sparse: got struct sched_domain [noderef] __rcu *parent
kernel/sched/rt.c:1616:14: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected struct task_struct *curr @@ got struct task_struct [noderef] __rcu * @@
kernel/sched/rt.c:1616:14: sparse: expected struct task_struct *curr
kernel/sched/rt.c:1616:14: sparse: got struct task_struct [noderef] __rcu *
kernel/sched/rt.c:1681:45: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:1681:45: sparse: expected struct task_struct *p
kernel/sched/rt.c:1681:45: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/rt.c:1742:67: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *tsk @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:1742:67: sparse: expected struct task_struct *tsk
kernel/sched/rt.c:1742:67: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/rt.c:2104:40: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *task @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:2104:40: sparse: expected struct task_struct *task
kernel/sched/rt.c:2104:40: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/rt.c:2127:13: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/rt.c:2127:13: sparse: struct task_struct *
kernel/sched/rt.c:2127:13: sparse: struct task_struct [noderef] __rcu *
kernel/sched/rt.c:2480:54: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *tsk @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:2480:54: sparse: expected struct task_struct *tsk
kernel/sched/rt.c:2480:54: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/rt.c:2482:40: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:2482:40: sparse: expected struct task_struct *p
kernel/sched/rt.c:2482:40: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/rt.c:2482:61: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/rt.c:2482:61: sparse: expected struct task_struct *p
kernel/sched/rt.c:2482:61: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/build_policy.c: note: in included file:
kernel/sched/deadline.c:2312:23: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/deadline.c:2312:23: sparse: expected struct task_struct *p
kernel/sched/deadline.c:2312:23: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/deadline.c:2322:13: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/deadline.c:2322:13: sparse: struct task_struct *
kernel/sched/deadline.c:2322:13: sparse: struct task_struct [noderef] __rcu *
kernel/sched/deadline.c:2430:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/deadline.c:2430:25: sparse: struct task_struct *
kernel/sched/deadline.c:2430:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/deadline.c:1950:42: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected struct sched_dl_entity const *b @@ got struct sched_dl_entity [noderef] __rcu * @@
kernel/sched/deadline.c:1950:42: sparse: expected struct sched_dl_entity const *b
kernel/sched/deadline.c:1950:42: sparse: got struct sched_dl_entity [noderef] __rcu *
kernel/sched/deadline.c:1961:38: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *tsk @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/deadline.c:1961:38: sparse: expected struct task_struct *tsk
kernel/sched/deadline.c:1961:38: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/deadline.c:1177:23: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/deadline.c:1177:23: sparse: expected struct task_struct *p
kernel/sched/deadline.c:1177:23: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/deadline.c:1300:38: sparse: sparse: incorrect type in initializer (different address spaces) @@ expected struct task_struct *curr @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/deadline.c:1300:38: sparse: expected struct task_struct *curr
kernel/sched/deadline.c:1300:38: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/deadline.c:2170:9: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected struct sched_domain *[assigned] sd @@ got struct sched_domain [noderef] __rcu *parent @@
kernel/sched/deadline.c:2170:9: sparse: expected struct sched_domain *[assigned] sd
kernel/sched/deadline.c:2170:9: sparse: got struct sched_domain [noderef] __rcu *parent
kernel/sched/deadline.c:1835:14: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected struct task_struct *curr @@ got struct task_struct [noderef] __rcu * @@
kernel/sched/deadline.c:1835:14: sparse: expected struct task_struct *curr
kernel/sched/deadline.c:1835:14: sparse: got struct task_struct [noderef] __rcu *
kernel/sched/deadline.c:1911:43: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/deadline.c:1911:43: sparse: expected struct task_struct *p
kernel/sched/deadline.c:1911:43: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/deadline.c:2477:38: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *tsk @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/deadline.c:2477:38: sparse: expected struct task_struct *tsk
kernel/sched/deadline.c:2477:38: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/deadline.c:2479:23: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/deadline.c:2479:23: sparse: expected struct task_struct *p
kernel/sched/deadline.c:2479:23: sparse: got struct task_struct [noderef] __rcu *curr
kernel/sched/deadline.c:2481:44: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected struct sched_dl_entity const *b @@ got struct sched_dl_entity [noderef] __rcu * @@
kernel/sched/deadline.c:2481:44: sparse: expected struct sched_dl_entity const *b
kernel/sched/deadline.c:2481:44: sparse: got struct sched_dl_entity [noderef] __rcu *
kernel/sched/deadline.c:2656:22: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/deadline.c:2656:22: sparse: struct task_struct [noderef] __rcu *
kernel/sched/deadline.c:2656:22: sparse: struct task_struct *
kernel/sched/deadline.c:2705:32: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected struct task_struct *p @@ got struct task_struct [noderef] __rcu *curr @@
kernel/sched/build_policy.c: note: in included file:
>> kernel/sched/soft_domain.c:73:17: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/soft_domain.c:73:17: sparse: struct soft_domain [noderef] __rcu *
kernel/sched/soft_domain.c:73:17: sparse: struct soft_domain *
kernel/sched/soft_domain.c:55:17: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/soft_domain.c:55:17: sparse: struct soft_domain [noderef] __rcu *
kernel/sched/soft_domain.c:55:17: sparse: struct soft_domain *
kernel/sched/soft_domain.c:85:24: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/soft_domain.c:85:24: sparse: struct soft_domain [noderef] __rcu *
kernel/sched/soft_domain.c:85:24: sparse: struct soft_domain *
kernel/sched/build_policy.c: note: in included file:
kernel/sched/sched.h:2306:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/sched.h:2306:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/sched.h:2306:25: sparse: struct task_struct *
kernel/sched/sched.h:2306:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/sched.h:2306:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/sched.h:2306:25: sparse: struct task_struct *
kernel/sched/sched.h:2306:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/sched.h:2306:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/sched.h:2306:25: sparse: struct task_struct *
kernel/sched/sched.h:2306:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/sched.h:2306:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/sched.h:2306:25: sparse: struct task_struct *
kernel/sched/sched.h:2306:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/sched.h:2306:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/sched.h:2306:25: sparse: struct task_struct *
kernel/sched/sched.h:2306:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/sched.h:2306:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/sched.h:2306:25: sparse: struct task_struct *
kernel/sched/sched.h:2306:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/sched/sched.h:2306:25: sparse: struct task_struct [noderef] __rcu *
kernel/sched/sched.h:2306:25: sparse: struct task_struct *
vim +73 kernel/sched/soft_domain.c
60
61 static void free_sub_soft_domain(struct soft_domain *sf_d)
62 {
63 struct list_head *children = &sf_d->child_domain;
64 struct soft_subdomain *entry = NULL, *next = NULL;
65 int i;
66
67 list_for_each_entry_safe(entry, next, children, node) {
68 list_del(&entry->node);
69 kfree(entry);
70 }
71
72 for_each_cpu(i, to_cpumask(sf_d->span)) {
> 73 rcu_assign_pointer(per_cpu(g_sf_d, i), NULL);
74 }
75
76 kfree(sf_d);
77 }
78
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2380/2380] mm/pagewalk.c:816:undefined reference to `vm_normal_page_pmd'
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: a7f4bf73c34996ee6cdda292e8f906a9c30879de
commit: eb6d298e49a22a61e4a25377329a81445bed4611 [2380/2380] mm/pagewalk: introduce folio_walk_start() + folio_walk_end()
config: arm64-randconfig-003-20250609 (https://download.01.org/0day-ci/archive/20250610/202506100341.pGF5A7BE-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250610/202506100341.pGF5A7BE-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506100341.pGF5A7BE-lkp@intel.com/
All errors (new ones prefixed by >>):
aarch64-linux-ld: mm/pagewalk.o: in function `folio_walk_start':
>> mm/pagewalk.c:816:(.text+0x1cbc): undefined reference to `vm_normal_page_pmd'
>> mm/pagewalk.c:816:(.text+0x1cbc): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `vm_normal_page_pmd'
aarch64-linux-ld: mm/kasan/shadow.o: in function `memcpy_mc':
shadow.c:(.text+0x7ac): undefined reference to `__memcpy_mc'
shadow.c:(.text+0x7ac): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `__memcpy_mc'
vim +816 mm/pagewalk.c
682
683 /**
684 * folio_walk_start - walk the page tables to a folio
685 * @fw: filled with information on success.
686 * @vma: the VMA.
687 * @addr: the virtual address to use for the page table walk.
688 * @flags: flags modifying which folios to walk to.
689 *
690 * Walk the page tables using @addr in a given @vma to a mapped folio and
691 * return the folio, making sure that the page table entry referenced by
692 * @addr cannot change until folio_walk_end() was called.
693 *
694 * As default, this function returns only folios that are not special (e.g., not
695 * the zeropage) and never returns folios that are supposed to be ignored by the
696 * VM as documented by vm_normal_page(). If requested, zeropages will be
697 * returned as well.
698 *
699 * As default, this function only considers present page table entries.
700 * If requested, it will also consider migration entries.
701 *
702 * If this function returns NULL it might either indicate "there is nothing" or
703 * "there is nothing suitable".
704 *
705 * On success, @fw is filled and the function returns the folio while the PTL
706 * is still held and folio_walk_end() must be called to clean up,
707 * releasing any held locks. The returned folio must *not* be used after the
708 * call to folio_walk_end(), unless a short-term folio reference is taken before
709 * that call.
710 *
711 * @fw->page will correspond to the page that is effectively referenced by
712 * @addr. However, for migration entries and shared zeropages @fw->page is
713 * set to NULL. Note that large folios might be mapped by multiple page table
714 * entries, and this function will always only lookup a single entry as
715 * specified by @addr, which might or might not cover more than a single page of
716 * the returned folio.
717 *
718 * This function must *not* be used as a naive replacement for
719 * get_user_pages() / pin_user_pages(), especially not to perform DMA or
720 * to carelessly modify page content. This function may *only* be used to grab
721 * short-term folio references, never to grab long-term folio references.
722 *
723 * Using the page table entry pointers in @fw for reading or modifying the
724 * entry should be avoided where possible: however, there might be valid
725 * use cases.
726 *
727 * WARNING: Modifying page table entries in hugetlb VMAs requires a lot of care.
728 * For example, PMD page table sharing might require prior unsharing. Also,
729 * logical hugetlb entries might span multiple physical page table entries,
730 * which *must* be modified in a single operation (set_huge_pte_at(),
731 * huge_ptep_set_*, ...). Note that the page table entry stored in @fw might
732 * not correspond to the first physical entry of a logical hugetlb entry.
733 *
734 * The mmap lock must be held in read mode.
735 *
736 * Return: folio pointer on success, otherwise NULL.
737 */
738 struct folio *folio_walk_start(struct folio_walk *fw,
739 struct vm_area_struct *vma, unsigned long addr,
740 folio_walk_flags_t flags)
741 {
742 unsigned long entry_size;
743 bool expose_page = true;
744 struct page *page;
745 pud_t *pudp, pud;
746 pmd_t *pmdp, pmd;
747 pte_t *ptep, pte;
748 spinlock_t *ptl;
749 pgd_t *pgdp;
750 p4d_t *p4dp;
751
752 mmap_assert_locked(vma->vm_mm);
753 vma_pgtable_walk_begin(vma);
754
755 if (WARN_ON_ONCE(addr < vma->vm_start || addr >= vma->vm_end))
756 goto not_found;
757
758 pgdp = pgd_offset(vma->vm_mm, addr);
759 if (pgd_none_or_clear_bad(pgdp))
760 goto not_found;
761
762 p4dp = p4d_offset(pgdp, addr);
763 if (p4d_none_or_clear_bad(p4dp))
764 goto not_found;
765
766 pudp = pud_offset(p4dp, addr);
767 pud = pudp_get(pudp);
768 if (pud_none(pud))
769 goto not_found;
770 if (IS_ENABLED(CONFIG_PGTABLE_HAS_HUGE_LEAVES) && pud_leaf(pud)) {
771 ptl = pud_lock(vma->vm_mm, pudp);
772 pud = pudp_get(pudp);
773
774 entry_size = PUD_SIZE;
775 fw->level = FW_LEVEL_PUD;
776 fw->pudp = pudp;
777 fw->pud = pud;
778
779 if (!pud_present(pud) || pud_devmap(pud)) {
780 spin_unlock(ptl);
781 goto not_found;
782 } else if (!pud_leaf(pud)) {
783 spin_unlock(ptl);
784 goto pmd_table;
785 }
786 /*
787 * TODO: vm_normal_page_pud() will be handy once we want to
788 * support PUD mappings in VM_PFNMAP|VM_MIXEDMAP VMAs.
789 */
790 page = pud_page(pud);
791 goto found;
792 }
793
794 pmd_table:
795 VM_WARN_ON_ONCE(pud_leaf(*pudp));
796 pmdp = pmd_offset(pudp, addr);
797 pmd = pmdp_get_lockless(pmdp);
798 if (pmd_none(pmd))
799 goto not_found;
800 if (IS_ENABLED(CONFIG_PGTABLE_HAS_HUGE_LEAVES) && pmd_leaf(pmd)) {
801 ptl = pmd_lock(vma->vm_mm, pmdp);
802 pmd = pmdp_get(pmdp);
803
804 entry_size = PMD_SIZE;
805 fw->level = FW_LEVEL_PMD;
806 fw->pmdp = pmdp;
807 fw->pmd = pmd;
808
809 if (pmd_none(pmd)) {
810 spin_unlock(ptl);
811 goto not_found;
812 } else if (!pmd_leaf(pmd)) {
813 spin_unlock(ptl);
814 goto pte_table;
815 } else if (pmd_present(pmd)) {
> 816 page = vm_normal_page_pmd(vma, addr, pmd);
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2380/2380] mm/share_pool.c:1226:14: error: call to undeclared function 'huge_ptep_get'; ISO C99 and later do not support implicit function declarations
by kernel test robot 10 Jun '25
by kernel test robot 10 Jun '25
10 Jun '25
Hi Wang,
FYI, the error/warning still remains.
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: a7f4bf73c34996ee6cdda292e8f906a9c30879de
commit: 549b1f40b56511536196f7522ffa4d7b3da42337 [2380/2380] mm/sharepool: Implement mg_sp_make_share_u2k()
config: arm64-randconfig-r112-20250610 (https://download.01.org/0day-ci/archive/20250610/202506100320.weV2eiwH-lkp@…)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce: (https://download.01.org/0day-ci/archive/20250610/202506100320.weV2eiwH-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506100320.weV2eiwH-lkp@intel.com/
All errors (new ones prefixed by >>):
>> mm/share_pool.c:1226:14: error: call to undeclared function 'huge_ptep_get'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
1226 | pte_t pte = huge_ptep_get(ptep);
| ^
>> mm/share_pool.c:1226:8: error: initializing 'pte_t' with an expression of incompatible type 'int'
1226 | pte_t pte = huge_ptep_get(ptep);
| ^ ~~~~~~~~~~~~~~~~~~~
2 errors generated.
vim +/huge_ptep_get +1226 mm/share_pool.c
1221
1222 static int sp_hugetlb_entry(pte_t *ptep, unsigned long hmask,
1223 unsigned long addr, unsigned long next,
1224 struct mm_walk *walk)
1225 {
> 1226 pte_t pte = huge_ptep_get(ptep);
1227 struct page *page = pte_page(pte);
1228 struct sp_walk_data *sp_walk_data;
1229
1230 if (unlikely(!pte_present(pte))) {
1231 pr_debug("the page of addr %lx unexpectedly not in RAM\n", (unsigned long)addr);
1232 return -EFAULT;
1233 }
1234
1235 sp_walk_data = walk->private;
1236 get_page(page);
1237 sp_walk_data->pages[sp_walk_data->page_count++] = page;
1238 return 0;
1239 }
1240
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2380/2380] shadow.c:(.text+0x5ec): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `__memcpy_mc'
by kernel test robot 09 Jun '25
by kernel test robot 09 Jun '25
09 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: a7f4bf73c34996ee6cdda292e8f906a9c30879de
commit: b991780c836ceb9a479c6c6e385e914b487e353a [2380/2380] arm64: introduce copy_mc_to_kernel() implementation
config: arm64-randconfig-003-20250609 (https://download.01.org/0day-ci/archive/20250609/202506092333.YJ52Pu6f-lkp@…)
compiler: aarch64-linux-gcc (GCC) 14.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250609/202506092333.YJ52Pu6f-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506092333.YJ52Pu6f-lkp@intel.com/
All errors (new ones prefixed by >>):
aarch64-linux-ld: mm/kasan/shadow.o: in function `memcpy_mc':
shadow.c:(.text+0x5ec): undefined reference to `__memcpy_mc'
>> shadow.c:(.text+0x5ec): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `__memcpy_mc'
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

09 Jun '25
From: Vikash Garodia <quic_vgarodia(a)quicinc.com>
stable inclusion
from stable-v6.1.135
commit 4e95233af57715d81830fe82b408c633edff59f4
category: bugfix
bugzilla: https://gitee.com/src-openeuler/kernel/issues/IC5BIO
CVE: CVE-2025-23159
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id…
--------------------------------
commit f4b211714bcc70effa60c34d9fa613d182e3ef1e upstream.
sfr->buf_size is in shared memory and can be modified by malicious user.
OOB write is possible when the size is made higher than actual sfr data
buffer. Cap the size to allocated size for such cases.
Cc: stable(a)vger.kernel.org
Fixes: d96d3f30c0f2 ("[media] media: venus: hfi: add Venus HFI files")
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue(a)linaro.org>
Signed-off-by: Vikash Garodia <quic_vgarodia(a)quicinc.com>
Signed-off-by: Hans Verkuil <hverkuil(a)xs4all.nl>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Signed-off-by: Zizhi Wo <wozizhi(a)huawei.com>
---
drivers/media/platform/qcom/venus/hfi_venus.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_venus.c b/drivers/media/platform/qcom/venus/hfi_venus.c
index 8b1375c97c81..b47c24cdde13 100644
--- a/drivers/media/platform/qcom/venus/hfi_venus.c
+++ b/drivers/media/platform/qcom/venus/hfi_venus.c
@@ -978,18 +978,26 @@ static void venus_sfr_print(struct venus_hfi_device *hdev)
{
struct device *dev = hdev->core->dev;
struct hfi_sfr *sfr = hdev->sfr.kva;
+ u32 size;
void *p;
if (!sfr)
return;
- p = memchr(sfr->data, '\0', sfr->buf_size);
+ size = sfr->buf_size;
+ if (!size)
+ return;
+
+ if (size > ALIGNED_SFR_SIZE)
+ size = ALIGNED_SFR_SIZE;
+
+ p = memchr(sfr->data, '\0', size);
/*
* SFR isn't guaranteed to be NULL terminated since SYS_ERROR indicates
* that Venus is in the process of crashing.
*/
if (!p)
- sfr->data[sfr->buf_size - 1] = '\0';
+ sfr->data[size - 1] = '\0';
dev_err_ratelimited(dev, "SFR message from FW: %s\n", sfr->data);
}
--
2.39.2
2
1
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
tools/lib/perf/include/perf/bpf_perf.h | 1 +
tools/perf/builtin-stat.c | 1 +
tools/perf/tests/shell/stat_bpf_counters.sh | 79 ++++++++++-----
tools/perf/util/bpf_counter.c | 61 +++++++++---
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 98 +++++++++++++++++--
tools/perf/util/bpf_skel/bperf_u.h | 5 +
tools/perf/util/target.h | 1 +
7 files changed, 198 insertions(+), 48 deletions(-)
--
2.34.1
2
7

[openeuler:OLK-5.10 2953/2953] kernel/locking/lockdep.o: warning: objtool: lockdep_unregister_key()+0x2ff: unreachable instruction
by kernel test robot 09 Jun '25
by kernel test robot 09 Jun '25
09 Jun '25
Hi Waiman,
First bad commit (maybe != root cause):
tree: https://gitee.com/openeuler/kernel.git OLK-5.10
head: dd32d51934d00fd319caec8710bd1a438bd69859
commit: b91170be2b1f1ef673f5e79c7a4beb5673a8f881 [2953/2953] locking/lockdep: Avoid potential access of invalid memory in lock_class
config: x86_64-randconfig-123-20250609 (https://download.01.org/0day-ci/archive/20250609/202506092002.S7MmpM4X-lkp@…)
compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250609/202506092002.S7MmpM4X-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506092002.S7MmpM4X-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> kernel/locking/lockdep.o: warning: objtool: lockdep_unregister_key()+0x2ff: unreachable instruction
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Support xcall prefetch.
Changes in v6:
- Only use one reserved kabi in task_struct for xcall.
- Free prefetch item after eventpoll_release_file() to avoid
possible competition between ep_prefetch_item_enqueue() and pfi free.
- Fix "echo > /proc/xcall/cpu_list" show problem.
Changes in v5:
- Fix dentry free before free_prefetch_item() and then UAF in
prefetch work by cancel_work_sync() before free pfi and move
free_prefetch_item() to the first of __fput().
- Fix __queue_work() oops bug.
- /proc/xcall/mask_list -> /proc/xcall/cpu_list
- Fix xcall_prefetch print data type.
- Update prefetch tracepoint, move xcall points definition
to separete header file.
- Make xcall_prefetch depends on EPOLL.
- Adjust xcall prefetch buf to 16KB by default.
- Add xcall_prefetch_init() function.
- Only use write lock in free_prefetch_item().
- Simplify xcall_read() and add some comment.
- Update commit message.
Changes in v4:
- Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default.
- Fix xint sleeping function called from invalid context bug.
- free_prefetch_item() in file_free() instead of filp_close(), which
fix the alloc-queue and free competition.
- Fix kernel_read() warning for FMODE_READ not set.
- Add sock_from_file() limit for prefetch.
- Check NULL for rc_work.
- Simplfy the cpumask interface code, and rename
to "/proc/xcall/mask_list".
- Remove the xcall_cache_pages_order interface.
- tracepoint update: fd -> file.
- Simplify the xcall_read() function again.
- Handle copy_to_user() return value.
- Remove unused XCALL_CACHE_QUEUED.
- Update the commit message.
Changes in v3:
- Add XCALL_PREFETCH config to isolate feature code.
- Split the /proc/xxx interface code out to independent patches, which
will make it clear.
- Update the cpumask interface to "/proc/xcall/numa_mask", and it can
set the numa mask of all numas one time.
- Add xcall select count to make xcall_cache_pages_order adjust safe.
- Introduce xcall_read_start/end() to make it clear.
- Simplify the xcall_read() function.
- Use cpumask_next() instead of get_nth_cpu_in_cpumask() function.
- Use independent cpu select policy function.
- Remove some unnecessary pr_err().
- Update the commit message.
Changes in v2:
- Upadte the xcall prefetch state machine, remove the queued state and
add prefetch, cancel states.
- Remove the pfi lock and use atomic variables.
- Change the 'xcall select' semantics and simplify the code a lot.
- Remove keep_running, remove unrelated code.
- Remove the count in struct read_cache_entry, and use
percpu hit/miss count.
- Remove sync mode, so remove struct read_cache_entry
in struct task_struct.
- Use hash table to find prefetch item for a file, which will not
change the file struct KABI.
- Use rwlock instead of spinlock for hash table.
- Use alloc_page() instead kmalloc() to align 4KB.
- Update the commit message.
Jinjie Ruan (7):
arm64: Introduce Xint software solution
arm64: Add debugfs dir for xint
eventpoll: xcall: Support async prefetch data in epoll
xcall: Add /proc/xcall/prefetch dir for performance tuning
xcall: Add /proc/xcall/cpu_list for performance tuning
xcall: eventpoll: add tracepoint
config: Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default
Liao Chen (1):
revert kpti bypass
Yipeng Zou (3):
arm64: Introduce xcall a faster svc exception handling
arm64: Faster SVC exception handler with xcall
xcall: Introduce xcall_select to mark special syscall
arch/Kconfig | 81 +++++
arch/arm64/Kconfig | 2 +
arch/arm64/configs/openeuler_defconfig | 7 +
arch/arm64/include/asm/cpucaps.h | 2 +
arch/arm64/include/asm/exception.h | 3 +
arch/arm64/kernel/asm-offsets.c | 3 +
arch/arm64/kernel/cpufeature.c | 56 ++++
arch/arm64/kernel/entry-common.c | 22 ++
arch/arm64/kernel/entry.S | 183 ++++++++++-
arch/arm64/kernel/syscall.c | 57 ++++
drivers/irqchip/irq-gic-v3.c | 130 ++++++++
fs/eventpoll.c | 409 +++++++++++++++++++++++++
fs/file_table.c | 1 +
fs/proc/base.c | 150 +++++++++
fs/read_write.c | 10 +-
include/linux/fs.h | 35 +++
include/linux/hardirq.h | 5 +
include/linux/irqchip/arm-gic-v3.h | 13 +
include/linux/sched.h | 4 +
include/linux/xcall.h | 19 ++
include/trace/events/xcall.h | 106 +++++++
kernel/fork.c | 25 ++
kernel/irq/debugfs.c | 33 ++
kernel/irq/internals.h | 18 ++
kernel/irq/irqdesc.c | 19 ++
kernel/irq/proc.c | 10 +
kernel/softirq.c | 73 +++++
27 files changed, 1473 insertions(+), 3 deletions(-)
create mode 100644 include/linux/xcall.h
create mode 100644 include/trace/events/xcall.h
--
2.34.1
2
12
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
tools/lib/perf/include/perf/bpf_perf.h | 1 +
tools/perf/builtin-stat.c | 1 +
tools/perf/tests/shell/stat_bpf_counters.sh | 79 ++++++++++-----
tools/perf/util/bpf_counter.c | 61 +++++++++---
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 98 +++++++++++++++++--
tools/perf/util/bpf_skel/bperf_u.h | 5 +
tools/perf/util/target.h | 1 +
7 files changed, 198 insertions(+), 48 deletions(-)
--
2.34.1
2
7
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/ICDKL2
--------------------------------
overlayfs has two types of inode, the overlayfs inode generated by
overlayfs and the real inode of the file. When IMA does the measurement,
process_measurement() will try to detect file content changes for files on
a overlayfs filesystem based on the i_version number of the real inode. But
now comparing with value of overlayfs inode, results in always
re-evaluating the file's integrity.
Therefore, ima_collect_measurement() should update iint->iversion with
real_inode iversion. Also, ima_check_last_writer() should compare i_version
base on real_inode.
This patch is based on the implementation of upstream patch (see below Link
tag). Due to merging the pre-patch to resolve conflicts introduces KABI
changes, we don't fix this with the mainline version.
Link: https://web.git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/comm…
Fixes: b836c4d29f27 ("ima: detect changes to the backing overlay file")
Signed-off-by: Gu Bowen <gubowen5(a)huawei.com>
---
security/integrity/ima/ima_api.c | 2 +-
security/integrity/ima/ima_main.c | 7 +++++--
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/security/integrity/ima/ima_api.c b/security/integrity/ima/ima_api.c
index d88d7fb9f9a5..69bb71331e3f 100644
--- a/security/integrity/ima/ima_api.c
+++ b/security/integrity/ima/ima_api.c
@@ -278,7 +278,7 @@ int ima_collect_measurement(struct integrity_iint_cache *iint,
* which do not support i_version, support is limited to an initial
* measurement/appraisal/audit.
*/
- i_version = inode_query_iversion(inode);
+ i_version = inode_query_iversion(real_inode);
hash.hdr.algo = algo;
/* Initialize hash digest to 0's in case of failure */
diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c
index c211a2c5f297..efa20bd18b97 100644
--- a/security/integrity/ima/ima_main.c
+++ b/security/integrity/ima/ima_main.c
@@ -222,16 +222,19 @@ static void ima_check_last_writer(struct integrity_iint_cache *iint,
{
fmode_t mode = file->f_mode;
bool update;
+ struct inode *real_inode;
if (!(mode & FMODE_WRITE))
return;
mutex_lock(&iint->mutex);
if (atomic_read(&inode->i_writecount) == 1) {
+ real_inode = d_real_inode(file_dentry(file));
+
update = test_and_clear_bit(IMA_UPDATE_XATTR,
&iint->atomic_flags);
- if (!IS_I_VERSION(inode) ||
- !inode_eq_iversion(inode, iint->version) ||
+ if (!IS_I_VERSION(real_inode) ||
+ !inode_eq_iversion(real_inode, iint->version) ||
(iint->flags & IMA_NEW_FILE)) {
iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
iint->measured_pcrs = 0;
--
2.25.1
2
1
hulk inclusion
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/IC88OM
--------------------------------
Add user manual for the MPAM features.
Signed-off-by: Zeng Heng <zengheng4(a)huawei.com>
---
Documentation/arch/arm64/mpam.md | 587 +++++++++++++++++++++++++++++++
1 file changed, 587 insertions(+)
create mode 100644 Documentation/arch/arm64/mpam.md
diff --git a/Documentation/arch/arm64/mpam.md b/Documentation/arch/arm64/mpam.md
new file mode 100644
index 000000000000..60f62cd7f781
--- /dev/null
+++ b/Documentation/arch/arm64/mpam.md
@@ -0,0 +1,587 @@
+MPAM 用户手册
+=========
+
+# 1 MPAM 简介
+
+MPAM(Memory system component Partioning and Monitoring)是Arm Architecture v8.4的拓展特性。用于解决服务器系统中,混合部署不同类型业务时,由于共享资源的竞争(L3/L2 Cache,MATA),而带来的关键应用性能下降或者系统整体性能下降问题。
+
+MPAM的应用可针对不同业务,将同时作用于硬件访存路径上产生的竞争和冲突进行隔离控制,从而帮助提升服务器利用率,降低服务部署成本。
+
+本手册只适用于OLK-6.6软件版本。
+
+# 2 内核编译选项
+
+配置 CONFIG_ARM64_MPAM=y 后,即使能MPAM完整功能。
+
+# 3 内核启动参数
+
+启动流程默认关闭MPAM,启动MPAM初始化需要**cmdline**添加**arm64.mpam**参数配置后重启机器。
+
+# 3 接口总览
+
+MPAM功能通过resctrl文件系统呈现,挂载点位于 */sys/fs/resctrl* 。系统启动后,需要手动挂载resctrl文件系统。
+
+## 3.1 系统挂载参数
+
+resctrl可以通过添加挂载参数支持多种挂载方式,具体指令如下:
+
+~~~
+# mount -t resctrl resctrl [-o cdp[,cdpl2][,debug][,l2]] /sys/fs/resctrl
+~~~
+
+挂载参数包括:
+
+* cdp: 针对L3缓存,根据访问指令和访问数据分别配置。
+* cdpl2: 针对L2缓存,根据访问指令和访问数据分别配置。
+* debug: 使能调试接口访问。
+* l2: 使能L2缓存配置和监控功能,默认关闭MPAM L2功能。
+
+## 3.2 resctrl 系统目录介绍
+
+### 3.2.1 Info 目录
+
+Info 目录包含有关已启用资源的信息,每个资源都有其自己的子目录,子目录的名称反映了资源的名称。
+
+每个子目录包含以下与分配相关的文件:
+
+缓存资源(L3/L2)子目录包含以下与分配相关的文件:
+
+**num_closids**: 适用于该资源的有效CLOSID(Class of Service ID)数量。内核会以所有已启用资源中最小的CLOSID数量作为限制。
+
+**cbm_mask**: 适用于该资源的有效位掩码(bitmask)。
+
+**min_cbm_bits**: 写入掩码时必须设置的连续位的最小数量。
+
+**shareable_bits**: 与其他执行实体共享资源的位掩码。用户在设置独占缓存分区时可以使用此字段。
+
+**bit_usage**: 标注了资源所有实例的使用情况的容量位掩码。说明如下:
+
+ * *0*: 对应区域未使用。当系统的资源已被分配,且在“bit_usage”中发现“0”时,这表明资源被浪费了。
+
+ * *H*: 对应区域仅由硬件使用,但可供软件使用。如果资源的“shareable_bits”中有位被设置,但这些位并未全部出现在资源组的分配方案中,则“shareable_bits”中出现但未分配给资源组的位将被标记为“H”。
+
+ * *X*: 对应区域可供共享,并被硬件和软件使用。这些位同时出现在“shareable_bits”和资源组的分配中。
+
+ * *S*: 对应区域由软件使用,并可供共享。
+
+ * *E*: 对应区域被一个资源组独占使用,不允许共享。
+
+**sparse_masks**: 指示是否支持CBM(Capacity Bit Mask)中的非连续1值。
+
+ * *0*: 仅支持CBM中的连续1值。
+
+ * *1*: 支持CBM中的非连续1值。
+
+MB(Memory bandwidth,内存带宽)子目录包含以下与分配相关的文件:
+
+**min_bandwidth**: 用户可以请求的最小内存带宽百分比。
+
+**bandwidth_gran**: 内存带宽百分比分配的粒度。分配的带宽百分比会四舍五入到硬件上可用的下一个控制步长。可用的带宽控制步长为:
+~~~
+min_bandwidth + N * bandwidth_gran
+~~~
+
+**delay_linear**: 指示延迟刻度是线性还是非线性的。该字段仅用于信息参考。
+
+如果支持监控功能,则会存在一个名为 L3_MON 和 MB_MON 的目录,其中包含以下文件:
+
+**num_rmids**: 可用的RMID(Resource Monitoring ID)数量。这是可以创建的“CTRL_MON”+“MON”组的最大数量。
+
+**mon_features**: 如果为该资源启用了监控功能,则列出监控事件。例如:
+~~~
+# grep . /sys/fs/resctrl/info/*_MON/mon_features
+/sys/fs/resctrl/info/L3_MON/mon_features:llc_occupancy
+/sys/fs/resctrl/info/MB_MON/mon_features:mbm_total_bytes
+~~~
+
+**max_threshold_occupancy**: 读/写文件,提供一个最大值(以字节为单位),低于此设定值下,之前使用过的LLC_occupancy计数器可以被考虑重新分配使用。
+
+> 请注意,一旦释放了RMID(资源监控ID),它可能不会立即可用,因为RMID仍然与之前使用该RMID的缓存行相关联。因此,这些RMID会被放入一个“待定”列表中,并在缓存占用量降低后再次检查。如果系统中存在大量处于“待定”状态的RMID,但它们尚未准备好被使用,用户在执行mkdir操作时可能会看到-EBUSY错误。
+
+> max_threshold_occupancy是一个用户可配置的值,用于确定在什么占用量下可以释放一个RMID。
+
+最后,在 Info 目录的顶层有一个名为 **last_cmd_status** 的文件。每次通过文件系统发出“命令”(例如创建新目录或写入任何控制文件)时,该文件都会被重置。如果命令成功,文件内容将显示为“ok”。如果命令失败,它将提供比文件操作错误返回更详细的信息。例如:
+~~~
+# echo "MB:1=110" > schemata
+-bash: echo: write error: Invalid argument
+# cat /sys/fs/resctrl/info/last_cmd_status
+MB value 110 out of range [0,100]
+~~~
+
+### 3.2.2 资源分配和监控
+
+资源组在resctrl文件系统中以目录的形式表示。默认组是根目录,刚挂载后,它拥有系统中的所有任务和CPU,并且可以充分利用所有资源。
+
+在支持RDT(资源分配技术)控制功能的系统中,可以在根目录下创建额外的目录,这些目录指定了每种资源的不同数量(参见下面的“schemata”)。根目录和这些额外的顶级目录在下文中被称为“CTRL_MON”组。
+
+在支持RDT监控的系统中,根目录和其他顶级目录中包含一个名为“mon_groups”的目录,在其中可以创建额外的目录来监控其父“CTRL_MON”组中任务的子集。这些在本文档的其余部分被称为“MON”组。
+
+删除一个目录会将其所代表的组拥有的所有任务和CPU移动到其父目录。删除一个创建的“CTRL_MON”组将自动删除其下所有的“MON”组。
+
+支持将“MON”组目录移动到一个新的父“CTRL_MON”组,以便在不影响其监控数据或分配的任务的情况下更改“MON”组的资源分配。此操作不适用于监控CPU的“MON”组。目前,除了简单地重命名“CTRL_MON”或“MON”组之外,不支持其他任何移动操作。
+
+所有组包含以下文件:
+
+**tasks**: 读取此文件将显示属于该组的所有任务列表。将任务ID写入该文件会将任务添加到该组中。可以通过用逗号分隔任务ID来添加多个任务。任务将按顺序分配。在尝试分配任务时遇到的任何单个失败都会导致操作中止,而在失败之前已添加到组中的任务将保留在组中。失败信息将记录到/sys/fs/resctrl/info/last_cmd_status。
+
+如果该组是一个“CTRL_MON”组,则任务将从之前拥有该任务的“CTRL_MON”组中移除,同时也会从任何拥有该任务的“MON”组中移除。如果该组是一个“MON”组,则任务必须已经属于该组的“CTRL_MON”父组。任务将从任何之前的“MON”组中移除。
+
+**cpus**: 读取此文件将显示该组拥有的逻辑CPU的位掩码。将掩码写入该文件将向该组添加或移除CPU。与“tasks”文件类似,维护了一个层级结构,其中“MON”组只能包含其父“CTRL_MON”组拥有的CPU。
+
+**cpus_list**: 与“cpus”类似,但使用CPU范围而不是位掩码。
+
+当启用控制功能时,所有“CTRL_MON”组还将包含以下文件:
+
+**schemata**: 列出该组可用的所有资源。每种资源都有自己的行和格式——详细信息请参见下文。
+
+**size**: 类似于“schemata”文件的显示,但显示的是每种资源分配的字节大小,而不是表示分配的位。
+
+**mode**: 资源组的“mode”决定了其分配的共享方式。“shareable”资源组允许共享其分配,而“exclusive”资源组则不允许。
+
+**ctrl_hw_id**: 仅在启用调试选项时可用。硬件用于控制组的标识符。在arm64架构上,即是 PARTID。
+
+当启用监控功能时,所有“MON”组还将包含以下文件:
+
+**mon_data**: 包含一组按L3域和MB域事件组织的文件。例如,在具有两个L3域的系统中,将存在子目录“mon_L3_00”和“mon_L3_01”。
+
+每个子目录中都有一个文件对应每个事件(例如“llc_occupancy”、“mbm_total_bytes”)。在“MON”组中,这些文件提供了组中所有任务的当前事件值。在“CTRL_MON”组中,这些文件提供了“CTRL_MON”组中所有任务以及所有“MON”组中任务的总和。有关使用方法的更多详细信息,请参见示例部分。
+
+**mon_hw_id**: 仅在启用调试选项时可用。硬件用于监控组的标识符。
+
+以下为resctrl文件系统目录树:
+
+~~~
+/sys/fs/resctrl(根分组)
+ ├── cpus # bitmask方式显示根分组关联的vcpu
+ ├── cpus_list # cpu list方式显示根分组关联的vcpu
+ ├── ctrl_hw_id # 硬件用于控制组的标识符
+ ├── info # 用于显示属性信息及错误提示信息
+ │ ├── L3
+ │ │ ├── bit_usage # 标注了资源所有实例的使用情况的容量位掩码
+ │ │ ├── cbm_mask # 系统所支持的最大cache way bitmask,一个bit代表一个cache way
+ │ │ ├── min_cbm_bits # 使用schemata所能配置的最小cache way bitmask
+ │ │ ├── num_closids # L3能够提供创建控制组的最大数量
+ │ │ ├── shareable_bits # 当前所有cbm_mask全部shareable,支持后续扩展
+ │ │ └── sparse_masks # 指示是否支持CBM(Capacity Bit Mask)中的非连续1值
+ │ ├── L3_MON
+ │ │ ├── max_threshold_occupancy # 低于此设定值下,之前使用过的LLC_occupancy计数器可以被考虑重新分配使用
+ │ │ ├── mon_features # 列出监控事件
+ │ │ └── num_rmids # 可创建控制组和监控组的总数
+ │ ├── last_cmd_status # 操作错误提示
+ │ ├── MB
+ │ │ ├── bandwidth_gran # 带宽百分比配置粒度
+ │ │ ├── delay_linear # 指示延迟刻度是线性还是非线性的
+ │ │ ├── min_bandwidth # 最小带宽配置百分比
+ │ │ └── num_closids # 同L3 num_closid
+ │ └── MB_MON
+ │ ├── mon_features # 同L3 mon_features
+ │ └── num_rmids # 同L3 num_rmids
+ ├── mode # 资源组的 mode 决定了其分配的共享方式
+ ├── mon_data
+ │ ├── mon_L3_01 # 标号代表L3 cache id
+ │ │ └── llc_occupancy # 表示当前分组所关联的pid/vcpu在该区域上实际占用L3 Cache大小,下同
+ │ ├── mon_L3_122
+ │ │ └── llc_occupancy
+ │ ├── mon_MB_00 # 标号代表numa id
+ │ │ └── mbm_total_bytes # 表示当前分组所关联的pid/vcpu在该区域上内存带宽流量大小,下同
+ │ └── mon_MB_01
+ │ └── mbm_total_bytes
+ ├── mon_groups # 创建监控组目录
+ ├── mon_hw_id # 硬件用于监控组的标识符
+ ├── schemata # 资源使用配置接口
+ ├── size # 显示的是每种资源分配的字节大小
+ └── tasks # 显示与根组关联的pid
+~~~
+
+### 3.2.3 控制组配置接口 Schemata 文件
+
+**schemata**文件中的每一行描述一种资源。每行以资源的名称开头,后面跟着该资源在系统中每个实例上要应用的具体值。
+
+#### Cache IDs
+
+在当前一代的系统中,每个插槽(socket)有一个L3缓存,而L2缓存通常仅由一个核心上的超线程共享,但这并不是架构上的强制要求。我们可能会在一个插槽上有多个独立的L3缓存,或者多个核心共享一个L2缓存。因此,我们不使用“插槽”或“核心”来定义共享资源的逻辑CPU集合,而是使用“Cache ID”(缓存ID)。
+
+在给定的缓存级别上,这将在整个系统中是一个唯一的数字(但不能保证是一个连续的序列,可能会有间隔)。要查找每个逻辑CPU的ID,请查看 /sys/devices/system/cpu/cpu*/cache/index*/id。
+
+#### Cache Bit Masks(CBM,缓存位掩码)
+
+对于缓存资源,我们使用位掩码来描述可用于分配的缓存部分。掩码的最大值由每种CPU型号定义(并且可能因不同的缓存级别而异)。该值在resctrl文件系统的“info”目录中提供,位于info/{resource}/cbm_mask。
+
+#### L3 缓存配置
+
+当未启用CDP(代码/数据缓存划分)时,L3 schemata的格式为:
+
+~~~
+L3:<cache_id0>=<cbm>;<cache_id1>=<cbm>;...
+~~~
+
+当启用CDP时,L3控制被拆分为两个独立的资源,因此您可以分别为代码和数据指定独立的掩码,如下所示:
+
+~~~
+L3DATA:<cache_id0>=<cbm>;<cache_id1>=<cbm>;...
+L3CODE:<cache_id0>=<cbm>;<cache_id1>=<cbm>;...
+~~~
+
+读取schemata文件将显示所有域上所有资源的状态。在写入时,您只需要指定您希望更改的值。
+
+例如使用默认方式挂载,设置L3缓存位掩码只有4位:
+
+~~~
+# mount -t resctrl resctrl /sys/fs/resctrl/
+# cat /sys/fs/resctrl/schemata
+L3:1=fffffff;122=fffffff
+
+# echo "L3:122=3c0;" > /sys/fs/resctrl/schemata
+# cat /sys/fs/resctrl/schemata
+L3:1=fffffff;122=00003c0
+~~~
+
+使用开启CDP方式挂载,设置L3 data缓存位掩码只有4位:
+
+~~~
+# mount -t resctrl resctrl /sys/fs/resctrl/ -o cdp
+# cat /sys/fs/resctrl/schemata
+L3DATA:1=fffffff;122=fffffff
+L3CODE:1=fffffff;122=fffffff
+
+# echo "L3DATA:122=3c0;" > schemata
+# cat /sys/fs/resctrl/schemata
+L3DATA:1=fffffff;122=00003c0
+L3CODE:1=fffffff;122=fffffff
+~~~
+
+#### L2 缓存配置
+
+L2 缓存配置功能默认关闭,需要通过显式添加 l2 挂载参数,才会使能L2缓存配置功能。使能L2功能以后,系统关闭 cpuidle powerdown 功能和cpu下线功能。
+
+L2 schemata的格式是:
+
+~~~
+L2:<cache_id0>=<cbm>;<cache_id1>=<cbm>;...
+~~~
+
+使用“cdpl2”挂载选项可以在L2上支持CDP:
+
+~~~
+L2DATA:<cache_id0>=<cbm>;<cache_id1>=<cbm>;...
+L2CODE:<cache_id0>=<cbm>;<cache_id1>=<cbm>;...
+~~~
+
+L2 缓存配置示例,设置L2缓存位掩码只有4位:
+
+~~~
+# mount -t resctrl resctrl /sys/fs/resctrl/ -o l2
+# cat schemata
+L2:4=000ff;8=000ff
+
+# echo "L2:4=f;" > schemata
+# cat schemata
+L2:4=0000f;8=000ff
+~~~
+
+使用“cdpl2”挂载选项:
+
+~~~
+# mount -t resctrl resctrl /sys/fs/resctrl/ -o l2cdp,l2
+# cat schemata
+L2DATA:4=000ff;8=000ff
+L2CODE:4=000ff;8=000ff
+
+# echo "L2DATA:4=f;" > schemata
+# cat schemata
+L2DATA:4=0000f;8=000ff # 控制组 L2 DATA 只能使用L2 cache4的4个cache way
+L2CODE:4=000ff;8=000ff
+~~~
+
+#### MB 内存带宽分配
+
+对于内存带宽资源,默认情况下,用户通过指定总内存带宽的百分比来控制该资源。
+
+每种CPU型号的最小带宽百分比值是预定义的,可以通过info/MB/min_bandwidth查询。分配的带宽粒度也取决于CPU型号,可以在info/MB/bandwidth_gran中查询。可用的带宽控制步长为:min_bw + N * bw_gran。中间值会被四舍五入到硬件上可用的下一个控制步长。
+
+MB schemata的格式是:
+
+~~~
+MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;...
+~~~
+
+MB 带宽配置示例:
+
+~~~
+# cat /sys/fs/resctrl/schemata
+MB:0=0000100;1=0000100
+
+# echo "MB:0=50" > /sys/fs/resctrl/schemata
+# cat /sys/fs/resctrl/schemata
+MB:0=0000050;1=0000100 # 降低控制组 MB 内存带宽使用上限为50%
+~~~
+
+### 3.2.4 资源分配规则
+
+当一个任务正在运行时,以下规则定义了它可用的资源:
+1. 如果任务属于一个非默认组,则使用该组的分配方案(schemata)。
+2. 否则,如果任务属于默认组,但运行在一个被分配给某个特定组的CPU上,则使用该CPU所属组的分配方案。
+3. 否则,使用默认组的分配方案。
+
+### 3.2.5 监控组配置方法
+
+读取控制组和监控组的监控数据,可通过 mon_data 目录接口读取监控数据:
+
+~~~
+# grep . mon_data/*/*
+mon_data/mon_L3_01/llc_occupancy:73276416
+mon_data/mon_L3_122/llc_occupancy:11875328
+mon_data/mon_MB_00/mbm_total_bytes:32806
+mon_data/mon_MB_01/mbm_total_bytes:31700
+~~~
+
+其中,mon_data读取监控数据文件分别:
+ * llc_occupancy 代表 L3缓存当前占用量,单位 Byte
+ * mbm_total_bytes 代表内存带宽瞬时流量,单位 MB/s
+
+支持在控制组下创建子监控组,监控父控制组监控对象的子集:
+
+~~~
+# cd /sys/fs/resctrl/p1
+# cd mon_groups/ && mkdir m1 # 监控组只能监控,m1分组资源配置跟随p1分组
+# echo '0-1' > cpus_list
+# grep . mon_data/mon_*/*
+mon_data/mon_L3_01/llc_occupancy:18432
+mon_data/mon_L3_122/llc_occupancy:1024
+mon_data/mon_MB_00/mbm_total_bytes:0
+mon_data/mon_MB_01/mbm_total_bytes:0
+~~~
+
+控制组监控的是控制组本身及所有子监控组的监控值之和。
+
+## 3.3 QoS 增强特性
+
+### 3.3.1 PRI 优先级设置
+
+对共享资源优先级进行配置,包括 L3PRI 和 MBPRI:
+
+~~~
+# cat schemata
+ MBPRI:0=0000007;1=0000007
+ L3PRI:1=0000003;122=0000003
+
+# echo "MBPRI:0=0000003" > schemata
+# cat schemata
+ MBPRI:0=0000003;1=0000007 # 降低控制组 MB numa0的优先级
+ L3PRI:1=0000003;122=0000003
+
+# echo "MBPRI:0=0000003" > schemata
+
+~~~
+
+优先级设置数字越大,即优先级越高,反之,数字越小,优先级越低。
+
+> MBPRI 默认值为 3,MBPRI合法值范围 [0,7]。L3PRI 默认值为 0,L3PRI合法值范围 [0,3]。
+
+### 3.3.2 MIN 限低值设置
+
+共享资源实际使用占比低于设置值,会自动提高对该资源使用优先级,包括 L3MIN 和 MBMIN:
+
+~~~
+# cat schemata
+ MBMIN:0=00100
+ L3MIN:1=00100;5=00100
+
+# echo "MBMIN:0=00050" > schemata
+# cat schemata
+ MBMIN:0=00050
+ L3MIN:1=00100;5=00100
+
+# echo "L3MIN:1=00050" > schemata
+# cat schemata
+ MBMIN:0=00050
+ L3MIN:1=00050;5=00100
+~~~
+
+L3MIN 和 MBMIN 接口接受的输入参数为百分比,即设置值与总资源(内存带宽/缓存占用量)的占比。
+
+> MBMIN 和 L3MIN 默认值为 0,合法值范围都为 [0,100]。
+
+### 3.3.3 HDL 强制隔离设置
+
+当MBHDL=1,限制MB共享资源使用量不能超出MB设置值,若MBHDL=0,则允许空闲情况下,MB共享资源使用量超过MB设置值:
+
+~~~
+# cat schemata
+ MBHDL:0=0000001;1=0000001
+
+# echo "MBHDL:0=0000000" > schemata
+# cat schemata
+ MBHDL:0=0000000;1=0000001 # 关闭MB在numa0上的强制限制功能
+~~~
+
+> MBHDL 默认值为 1,合法值范围 [0,1]。
+
+### 3.3.4 MAX 资源上限设置
+
+设置允许分配的缓存容量的最大百分比,包括 L3MAX 接口:
+
+~~~
+# cat schemata
+ L3MAX:1=00100;5=00100
+
+# echo "L3MAX:1=00050" > schemata
+# cat schemata
+ L3MAX:1=00050;5=00100 # 降低L3分配的缓存最大容量百分比
+~~~
+
+> MB 和 L3MAX 默认值为 100,MB合法值范围 [1,100],L3MAX合法值范围 [0,100]。
+
+## 3.4 外设 IO 流量管控
+
+### 3.4.1 控制组绑定外设
+
+MPAM 提供通过绑定 iommu_group ID,对设备IO流量进行带宽限制和监控。
+
+譬如,控制网卡设备 eno2 ,首先查找该设备 PCI_SLOT 信息:
+
+~~~
+# cat /sys/class/net/eno2/device/uevent | grep PCI_SLOT
+PCI_SLOT_NAME=0000:35:00.1
+~~~
+
+或者通过 ethtool 工具查看 bus-info 信息:
+
+~~~
+# ethtool -i eno2 | grep bus-info
+bus-info: 0000:35:00.1
+~~~
+
+按照设备总线信息,查找到该设备所属的 iommu_group :
+
+~~~
+# find /sys/kernel/iommu_groups/ -name "0000:35:00.1"
+/sys/kernel/iommu_groups/17/devices/0000:35:00.1
+~~~
+
+或者通过 lspci 工具查看 iommu_group 信息:
+
+~~~
+# lspci -vvv -s 0000:35:00.1 | grep "IOMMU group"
+ IOMMU group: 17
+~~~
+
+将查询到的group id 17,通过 tasks 接口绑定到指定的控制组下:
+
+~~~
+# cd /sys/fs/resctrl/p1/
+# echo "iommu_group:17" > tasks
+# cat tasks
+iommu_group:17 # 此时iommu_group 17 已被绑定到控制组p1
+~~~
+
+### 3.4.2 查看外设带宽流量
+
+控制组绑定外设所属的iommu组后,可以查看设备流量带宽:
+
+~~~
+# grep . mon_data/mon_MB_0*/*
+mon_data/mon_MB_00/mbm_total_bytes:0
+mon_data/mon_MB_01/mbm_total_bytes:4230
+~~~
+
+### 3.4.3 配置外设带宽流量
+
+通过MB配置接口,可以实现限制设备的流量带宽:
+
+~~~
+# echo "MB:1=0000001" > schemata
+# cat schemata
+ MB:0=0000100;1=0000000
+
+# grep . mon_data/*/*
+mon_data/mon_MB_00/mbm_total_bytes:0
+mon_data/mon_MB_01/mbm_total_bytes:1208
+~~~
+
+# 4 控制组和监控组配置使用示例
+
+/sys/fs/resctrl 默认为根分组,根分组可以创建若干个控制组,一个控制组既可以关联一组pid/tid,也可以关联一组cpu集合。
+
+创建一个新的控制组,关联 pid/tid:
+
+~~~
+# cd /sys/fs/resctrl/ && mkdir p1
+# cd p1 && echo $$ > tasks # 关联当前shell进程pid到p1组
+# cat tasks # 可查看成功关联的pid
+29190
+29607
+~~~
+
+也可以选择关联 cpu:
+
+~~~
+# cd p1 && echo '0-1' > cpus_list
+# cat cpus_list # 可查看关联的cpu
+0-1
+~~~
+
+查看可创建的控制组和监控组数量:
+
+~~~
+# cat info/L3/num_closids # 可在info对应的资源的目录下查看closid数量,即可以创建控制组的数量
+32
+# cat info/MB/num_closids
+32
+# cat info/L3_MON/num_rmids # 可以创建控制组和监控组的总数量
+128
+# cat info/MB_MON/num_rmids
+128
+~~~
+
+通过配置控制组可达到隔离 L3 Cache/Memory Bandwidth 效果,通过读取对应分组mon_data接口可以获取该组资源占用情况,比如对一个控制组限制L3 Cache使用:
+
+~~~
+# cat info/L3/cbm_mask # 查看info目录下对应资源的属性
+fffffff
+# cat info/L3/min_cbm_bits
+1
+
+# cd /sys/fs/resctrl/p1
+# cat schemata
+ MB:0=0000100;1=0000100
+ L3:1=fffffff;122=fffffff
+
+# echo 'L3:0=1' > schemata # 配置1条cache way给p1分组
+# cat schemata
+ MB:0=0000100;1=0000100 # 若此时该组关联pid/cpu,那么该pid/cpu产生的访存请求只会分配到这条cache
+ L3:1=0000001;122=fffffff
+~~~
+
+对控制组限制MB使用:
+
+~~~
+# cat info/MB/min_bandwidth # 和配置L3类似,也可以查看MB的相关信息
+1
+# cat info/MB/bandwidth_gran
+1 # 可知,配置带宽最小百分比是1%,颗粒度是1%
+# cat schemata
+ MB:0=0000100;1=0000100
+ L3:1=0000001;122=fffffff
+# echo 'MB:0=1' > schemata
+# cat schemata
+ MB:0=0000001;1=0000100
+ L3:1=0000001;122=fffffff
+~~~
+
+支持在控制组下创建子监控组:
+
+~~~
+# cd /sys/fs/resctrl/p1
+# cd mon_groups/ && mkdir m1 # 监控组只能监控,m1分组资源配置跟随p1分组
+# ls m1/
+cpus cpus_list mon_data tasks
+# echo '0-1' > cpus_list
+# cat cpus_list
+0-1
+# grep . mon_data/mon_*/*
+mon_data/mon_L3_01/llc_occupancy:18432
+mon_data/mon_L3_122/llc_occupancy:1024
+mon_data/mon_MB_00/mbm_total_bytes:0
+mon_data/mon_MB_01/mbm_total_bytes:0
+~~~
--
2.25.1
2
1
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
tools/lib/perf/include/perf/bpf_perf.h | 1 +
tools/perf/builtin-stat.c | 1 +
tools/perf/tests/shell/stat_bpf_counters.sh | 79 ++++++++++-----
tools/perf/util/bpf_counter.c | 61 +++++++++---
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 98 +++++++++++++++++--
tools/perf/util/bpf_skel/bperf_u.h | 5 +
tools/perf/util/target.h | 1 +
7 files changed, 198 insertions(+), 48 deletions(-)
--
2.34.1
2
7
---
.../testing/selftests/xcall_prefetch/Makefile | 37 ++++
.../selftests/xcall_prefetch/echo_client.c | 119 +++++++++++++
.../xcall_prefetch/echo_client_multi | Bin 0 -> 21896 bytes
.../selftests/xcall_prefetch/echo_server.c | 110 ++++++++++++
.../selftests/xcall_prefetch/echo_test.c | 52 ++++++
.../xcall_prefetch/mulit_close_test.c | 48 +++++
.../xcall_prefetch/multi_write_test.c | 77 ++++++++
.../xcall_prefetch/signal_recovery_test.c | 164 ++++++++++++++++++
.../xcall_prefetch/thundering_herd_test.c | 119 +++++++++++++
.../testing/selftests/xcall_prefetch/utils.h | 54 ++++++
.../xcall_prefetch/xcall_prefetch_test.sh | 39 +++++
11 files changed, 819 insertions(+)
create mode 100644 tools/testing/selftests/xcall_prefetch/Makefile
create mode 100644 tools/testing/selftests/xcall_prefetch/echo_client.c
create mode 100755 tools/testing/selftests/xcall_prefetch/echo_client_multi
create mode 100644 tools/testing/selftests/xcall_prefetch/echo_server.c
create mode 100644 tools/testing/selftests/xcall_prefetch/echo_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/mulit_close_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/multi_write_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/signal_recovery_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/thundering_herd_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/utils.h
create mode 100755 tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh
diff --git a/tools/testing/selftests/xcall_prefetch/Makefile b/tools/testing/selftests/xcall_prefetch/Makefile
new file mode 100644
index 000000000000..5bd509df66e0
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/Makefile
@@ -0,0 +1,37 @@
+CFLAGS += -Wall -Wextra -g
+TEST_GEN_FILES := echo_server echo_client echo_test multi_write_test thundering_herd_test mulit_close_test signal_recovery_test
+
+# enable debug
+# echo_client: CFLAGS += -DDEBUG=1
+# echo_server: CFLAGS += -DDEBUG=1
+# multi_write_test: CFLAGS += -DDEBUG=1
+# thundering_herd_test: CFLAGS += -DDEBUG=1
+# mulit_close_test: CFLAGS += -DDEBUG=1
+# signal_recovery_test: CFLAGS += -DDEBUG=1
+
+all: $(TEST_GEN_FILES)
+
+echo_server: echo_server.c
+ $(CC) $(CFLAGS) $< -o $@
+
+echo_client: echo_client.c
+ $(CC) $(CFLAGS) $< -o $@
+
+echo_test: echo_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+multi_write_test: multi_write_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+thundering_herd_test: thundering_herd_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+mulit_close_test: mulit_close_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+signal_recovery_test: signal_recovery_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+.PHONY: all
+
+include ../lib.mk
diff --git a/tools/testing/selftests/xcall_prefetch/echo_client.c b/tools/testing/selftests/xcall_prefetch/echo_client.c
new file mode 100644
index 000000000000..2e3c41b2b14e
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/echo_client.c
@@ -0,0 +1,119 @@
+#define _GNU_SOURCE
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <arpa/inet.h>
+#include <pthread.h>
+#include <errno.h>
+
+#include "./utils.h"
+
+#define DEBUG
+
+void *client(void *arg)
+{
+ int thread_id = *(int *)arg;
+ int sock = 0;
+ struct sockaddr_in serv_addr;
+ struct epoll_event ev, events[MAX_EVENTS];
+ const char* test_messages[MAX_MSGS];
+
+ if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
+ handle_error("client:%d create socket failed\n", thread_id);
+ }
+ serv_addr.sin_family = AF_INET;
+ serv_addr.sin_port = htons(PORT);
+
+ if (inet_pton(AF_INET, "127.0.0.1", &serv_addr.sin_addr) <= 0) {
+ close(sock);
+ handle_error("client:%d invalid address\n", thread_id);
+ }
+ if (connect(sock, (struct sockaddr *)&serv_addr, sizeof(serv_addr))) {
+ close(sock);
+ handle_error("client:%d connection failed\n", thread_id);
+ }
+
+ debug_printf("Thread %d connected\n", thread_id);
+
+ int epoll_fd = epoll_create1(0);
+ if (epoll_fd == -1) {
+ handle_error("client:%d epoll_create1 failed\n", thread_id);
+ }
+
+ ev.events = EPOLLIN;
+ ev.data.fd = sock;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sock, &ev) == -1) {
+ handle_error("client:%d epoll_ctl add sock failed\n", thread_id);
+ }
+
+ test_messages[0] = "hello world.";
+ test_messages[1] = generate_number_string(100);
+ test_messages[2] = generate_number_string(1024);
+ test_messages[3] = generate_number_string(4096);
+
+
+ for (int i = 0; i < MAX_MSGS; i++) {
+ const char* msg = test_messages[i];
+ ssize_t msg_len = strlen(msg);
+ if (send(sock, msg, msg_len, 0) != msg_len) {
+ handle_error("client:%d send failed\n", thread_id);
+ }
+
+ debug_printf("Client:%d send %s\n", thread_id, msg);
+
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ handle_error("client:%d epoll_wait failed\n", thread_id);
+ }
+
+ for (int n = 0; n < nfds; ++n) {
+ if (events[n].data.fd == sock) {
+ char buffer[BUFFER_SIZE] = {0};
+ ssize_t read_bytes = read(sock, buffer, BUFFER_SIZE);
+
+ if (read_bytes <= 0) {
+ close(sock);
+ if (read_bytes == 0) {
+ handle_error("client:%d server disconnected\n", thread_id);
+ } else {
+ handle_error("client:%d read failed\n", thread_id);
+ }
+ } else {
+ debug_printf("Client:%d received %s\n", thread_id, buffer);
+ if (strncmp(msg, buffer, msg_len) != 0) {
+ handle_error("client:%d error: response does not match sent message\n", thread_id);
+ }
+ }
+ }
+ }
+ }
+
+ close(sock);
+ pthread_exit(NULL);
+}
+
+int main()
+{
+ pthread_t threads[NUM_THREADS];
+ int ret;
+
+ for (int i = 0; i < NUM_THREADS; i++) {
+ ret = pthread_create(&threads[i], NULL, client, &i);
+ if (ret != 0) {
+ perror("pthread_create failed");
+ continue;
+ }
+ }
+
+ for (int i = 0; i < NUM_THREADS; i++) {
+ if (threads[i] != 0) {
+ pthread_join(threads[i], NULL);
+ }
+ }
+
+ return 0;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/echo_client_multi b/tools/testing/selftests/xcall_prefetch/echo_client_multi
new file mode 100755
index 0000000000000000000000000000000000000000..36aa08d6e12f6e8ec73b2a7f8eb567225eb0b2f8
GIT binary patch
literal 21896
zcmeHPYjhmNm98GCr5TMLBTKd=Ti9cR9ShLQFKmpBY-{is%MWY|>@4hfq-jY5qZwr$
zevlX&WF?*mWo;G$$@&mO&LIiO$uT*B@G{7}Y-bbJ>=JMun>7jKNWo-{fJ8uG_Ph0H
zwK|&JJvsYpqta2|d%wE(R@JSV?&_}U-sfw+#-V9Ur5v_`k#ug7KpJJn!Dh*TG_obE
z2**p<#VikUF2_WEqaer?>8xWcbxJ%3l<X>q8HZL0m?^4iNR;fdC68O=D9SuSCOe&2
zDcfmLfzVS_<(uVsMLx69a#?>xt#%ZfiW*^8v3x8Yk#S+tUfB^$cJrj&JZY!s1*#B|
zqAH#g6Z&5w{n=?f86hcZx9gO4cG@J&n4(k$r7dqILw`+qo21>qEaAsa)i6_3m3JNN
zC@%loq`G;tEH7I>49b2`REC$;MZ&F%7uH2WHIZ;MwYz5blEpQP7uF_Xwexuus9s+D
z)0kSbp@qTC0AZ>-9s7l>{83)H%qRWs(jWZ%*E_C1J?FB63+}pchWni>DsCnnsyEq?
z4khxZh6>5VPs2ayh<Mx%PGCe|F<$N>nk}tBhWu%dQHf{4D^QSkjHVE7&7yyI7W}0w
z_|Yu*KV`vh$%608f(NtU7iGa0W@+yYS@fyD#*63dEcioN@ZK!=BU$i@EcoIq`06a}
zs?MVScouw9798#wwfQenAkelu7-$bigOTv92J23C#*JVoVC)Vj8F8#D7>UH%%#533
z;V5g1MWaSrk_7_z8MXxy$zVJg=n5hy5o^1}NV0I$NCvu-u_!aTW06RpEg4~5Mppt^
ziDW$5*453rQ^^Eti^LM6g|?x<q(K@H1Fno{h;_n8LOR(MM4h^gcsv$YZn;4N>VYb>
z-4bZ)yd}^c3`ZDMi%tfM*_!6Ht5yf**Df`=1vo`0bfL-3uU%yF3l_4#+O6vYAtP>d
zgcC_4zIFZTNGxh>4Yo!Ml-AJ|i^^69gzC782(|-f2o3)^IQ!F){&f5cjCj(ZKMh<S
z=ctb~<h%~5&Xbkla1otR-jG<lGVG$W+uKqu=lQwpPf|`zqkMQp$CHmA9{ws$M-Em*
z0|7~0@6>f>piJOic|BA3eu+C9MZUt7eD-RA)45K%=D;}%uFkoXF=)ZjATwRC;8RSL
zu@MVS=T(*JC7ut!dj4Hv!RdUhQlkau^9-5cx8T$Ul{Q&$Dnq4h7F@-G@^)Bo1l~-Y
z7F<qYcwV;!ms28+@3!EDrWeNcTkv8Fe$axKSnxv@T#X^hzR!Y}TJ(=vaO?T<+ZJ37
z1#WfBg41<VrN=G!WCel_Sn#P9{FDW!bEZmXEO?~?C+I{3CL%Bqfxn>$yjL>gBY)3%
zr@v4Cc^zZ^-hreebH?BEg7bMEh0LOlY8e~O%=s9kWF{m1PRbb`dLxs`9O5!vn1_d6
zF=e`74iB9$Wx7BQ4?SYabm1Hxdcc(Ff;l{N*p%r)IXrZ`DbodVc<6JcOc%!Cp`a<#
z1#x)jI#Z?#;qcH(Q>F{x@KA#((}iz%XqG9{L}7TS)RgH0I6S18GF|wFhu-~EwU;h<
zXum1bg%0gEWxBwj{iaM8HniWA>4Jv#D;d%4;?ZqlJid_csiA0(%KbLE*Cy|^$tj!M
zWs?n?e3MOXvB~Rgvd<<jx5<laa*a)%W0Nnk$&+nzkxkZZ@+X&%jn@ZOx#69)=~w>V
zpZ<-%=gkY7w)z?d8czHBmtTQlmYMu-(0sqWwq)i3bP9d|{mVZD;_ugoi7XvSPR38;
zG2-#laAnSw%-m0U&r1sZ(_DYib402?^`|fRPyFF(|A~<tzxI;<l~0r9aL_9qI5X$k
zdA}-q`u*%*PT4GVS&P4Cc`LF0^jpb7f8X+U2!lWWB$F8oVKBa=-vn8^3ASeWWIwbE
znZ&ff&VT#)0q)_rAE-b5=r&I7*}+MFCrER;x0{px-5>`BlHQVP-~N*7^@mETTaK1g
z-*l{`+88LQ?mAOaojO-iz4yYi^a~%{fdOk4({tXN-g~}h?|HUw3WD%7eq)0hQB%5c
zWJCAj(C0hfGobnJ^QTV^zJ(lr+Bf3w**n5gWia>-8O%@yZ--C%-Y3hqoBCSb_qRRg
z4-a&-x3~LG40=zDIMT13_;hCVh4hK^sT1cM+9_=y{Yo{2et&(R59(+9eekWFN&onu
zr^olc25_10{1<+RDvV~ngt$WO^z&vLZa+`=F8-dvOBlk|h|`cief-q#GntUTFL%y7
zREO%^FyQa&CA5#Fd(VQN?EMvvR9pYa-V6U}vLlM^zlU9rk$B=$gwCIS{XPG8{ppVm
zI{ZD)X-|^rGZfNi=}bB3M-<ZBXU}o&c~4~@FDU&I0`(xyW<02am56`)$zIRfnT&%y
zduS$1i~bBK-8%`8zn|y$dj@j->F50Yi_$O@1+0Nq@4&vfeY_BKM;-u65n;24$EcsA
zqx1=(|0JF6{OOlr7v+wUqmGV$JjT&7(@_^3JqtTF_*vMbd(R<aJ;&*oNm*NWxoNQs
z7AJdi(GrS`tZJ{5x2&JwzI!M*ecTm~9xAjR<@bz?b@?GK2O?mDC>p<HdZz17_j=*u
z*$`Ff3TkD#cOC)s)O2vJ0O~n_<_=C4z!Cr_d(X(;9(n^c>*FFub>D#($s_y>A|FG9
z6Vz$@M;yJt(R&1Wlrlw|o}j2et(DZ4_ELV*8j*-u{c2wQM;lR!X!R3_Ugk+^0_-1z
zeY*EenD-o~<Jcf9H@*B8Av)RnDm19zp<Lbu66u$bKI7L0@Wb)rXXV!h{WVYH+SJFE
z@_|y)dj=L54m8G})DV|v$OZkLAN>&a{r!|72MJ}1L2{b%(!C>8M9*;|Y~Om>pC<?V
zC|AO%>6StGFs|yN+Zs^gx3^iczHeqtp{(WpJ`q+?0W<V3Q_Y?lp|L(Dq6ba$*AcTG
z9t*9HlVv=BC3pTFKdm0#vs%w_>hGMAuS^1FR{K@B72~-84KU9jJ?Fb^=ZcfQyD3O-
z<5Y9EzrW=uM#_nEIsX2u9R7YF=@b6`$)86ncqj+of!nn2NYCCQELnsfdpW8)I0*0%
z%yITi`|c)Y#C6-TlfL`7<4gN|_tEfcdhsY-lBSM|X79WX2R**~w4S~9xo$hdgX-^F
zKN9j^R>;q4Nqz8zKV>qfF~y^n@cExP<D)_*(nJI%A}|qwi3t3Ej{vO-P%4O~x>}96
z7i%NoXonZ;BOS?3Z#cRW%Qhi<u2{11(n^Ryvk|1WNZ5!bubdO|ibWQ$Sg4UY1*~EI
z6}9#FYp`fa@7`c26gLuy0!x-$01C&VrU!dDa^Xj;(3o1I^)MHP$Um=+snls;$;rDb
z7LSB#Errs8kf~#LM2kaarnS8ZBfb-X3xyN1(niSI5?bRL*N(3<UFk*3yRigictbHG
z;f=<U-mYM>t<#IjfJIn>9Y%q<IwpfV8hLGc&a!5N2J;5C;}4n4e$WBT%DxSH26O<_
z`)(%F3F;coWX^(igVN2`!uK+na!dzzVlGfmlWrtT|9H}F-ORMz9&LJIzVi_B2&cUm
z$8cjamo%F4G2vs_0|GzzKl@H5vx9sTd#)+2xVFT-%ekLjJ?+X%7hEzMD7U{6)Pp*4
zLjsY=Zxa7b;G1L}2(Q5Zo%pXt-8%^I6??wuSY1SqhNvFYz9jNq05$U*PocKL_7va>
zv~yLiB_Ax=zKQ=8f6Qb^XVmstZcETanux$e1STRd5rK&aOhjNJ0uvGV+lzqOucY=T
zsi`ULnW9uEh`E8PNXc>&k=j$D_CZaT`Iw&ar1l!A{ZKS7rKIvd_%stE`Iy|?r1li;
zpb0RNB<!rr$0Kf@Zju#MdwyshP06}fhGc2RDy}AJbdS@Bw5NGFCABw6?Ww7twN?wh
zO;%Xddw}QSUPDq<{tPKAJv;&B?L%=K!n0N`kH`Y?JX_^+OWbyF`5Bpyhp=2$?U3&O
z&xqP@ZFg8NZ(bTD-6ZJ_NxLQ8FX<skk4kz>(g8`&NP14v3z9OqdCDWHSJHY(8ztQ&
z=?+P|CAHW4f0CVzLSxP9)mM7wwX~+9$&|ODzIIV<eN97(iw(EUpI=+Quv)_Ga#)Cm
z2clC?%l%u6)Y!C@IUQ<rH-;Y92GH+?m*P+dWIRKMGye#jJ96_M0LgJWG-n&hj{LWY
zXn6)m?!EAkGj}TODRemW7eR7qaV=+FRTGGwtB0dWXc2Vj6uM1yIQ2&`WO6s+kW(`q
ztH><3jhs9;{Q&qp=XXd+%ZtE!KJj_ZW29q1CwF}rd4h}Y!5S63m#T084bZ1^PtE}F
z{9G!hpdzmpCa!77)m;0*I$T{;rt5QL<SGEKyB<Prp6kot3koW6q~C)3XHWpmrG=Wj
zD&CO7xlr`v|IpbAtmsu}=0B#Be^&Hcs_2gjI;aGee<esUReKkh5^7x$T0p3WkkVh1
z=^fzmoOJZuN#HR!&!<S{IqB$mfWS}5@Ao)JN6%vft|Idj9HgV?pK&PsI@QhjfwKY@
zMHi^<f0A|kCe)oHCGUbbipZ<;!}8Z4<Q9Dey3RkB?S!e5<-f)~($RAfGA4Z=hbm{T
z=G+UW>;}@!(}d4554p+LgwwJIsW_)r`~&h@Mm^<pX_Nns+?M@@qymvw!Sd(9O`emE
zo;z?Ty%yQ|{T!sDhdQ(LT6oWYkb`vee2+jHUHL!aARRp?2wXv$Kj9!9J+BeiN8lSA
zq@#z1YUx)|xBNeHkd7WY_2%)O^td_uC0Kc;aP|nXvpD+*v6pl9C1S7OECty^-H^wF
z<5|zyy9nLJ*>4fs#@VNdjdJ!CV)t<Ncf=mx?8n6Z1K8ZJp#)b&*=Dpf_h}qlmE{KU
zUn726`EKH`gQ9DCc^~l&;GHujQP>L~gl(>Krjxq4=p<Y^XO;XIJWwLe&rf;?q}=2D
zcl|PS%;Z~1<v$8Ie*<it=iJK(|2-+c;a&%x6@MK9p?nONuwrsSIb6<Xyu+!Rxtzla
zAAym_`Aa8_sG@1)^*63hU;|gweP2|n`OMh`Ui?Vi7w6^Ry6XBDXlSlp)XU-8fMc$!
z3mzI>x52@FH@`A#Zhp0KxVMwfT-OO?Ib9!v_qh3#z+3PzY)CHn3JO5-7PNB88Vh#v
zny~$B%3QK@H<!>}gQ?xgICF1sErZ(B_7HP#%>Nv*sRi?yds86=cWP?!Lgv1%@ELND
zTY`goa}L$H@F~=@(7n}}gi!P(vfbBn3syuO?7qQ6CFHV-yI|umbaK2{&Ph&zr=%VE
z7&?`+QEx{_3Gq3H5AB;4#~yk|r;99d4&S+N`gPKbw;bRvpg1ke95)vWl>_@&)x%O}
zDfvaB{J6|NxDTE1Gk|Vf7kGcU*hPD&(9(Qr`ulRK!JpJY){X>mjh_*WcR-_@G;$6<
z-cq>$jH66e>r_kSGl;UIT*^Obsl1is$rW@K$vM3L`pRX9iDOCu`N}zbE-=m5$sAKF
znt3bVZ>gk^Ii^;{dG@jED|5)aqVx_fAG*G>l;q2#`!g+7v*iTn6Vc1Og;$k`2n@7T
zHOTB=sO+u;s=s{lqrCcOTX=jND@vc@^0}7E&r<omBH`fGma5-L2XmBzD05spNo2o(
z;^jQ*4D2aY&cng6p;Gu8Y~dh3^HYmv(wQG;nqq1$HHnA4jTKXM?ox6NyXf<fwb}XK
z1gV$Z@B(;B+L2)>dY?djwAr(%B96m1R??MTt9Fxt<8WtHS{jM+dB1CQyx$#%LyXP(
zBU-6d<*5sN2h1pGN4zg%lxkHoMSLE=Z8oG*ZBB8SJEwShaj7;b--CcSE@5u>3P9+?
z60jK2Q&>*%mF{KkrS7$uZs<}0)yg9U!t&=bBDj9!6t8d-CiFFcu6Z!8f}aA;U_iP#
zgD@4ALEr5j)h#Nr6tx64#hSLZjJ%Z0LJ4(1JXi3dO3R>m6}otm=|f-YCe1SG1LE2;
z@=-ojvz9U0S_WfNrrPQ-75UE5=2p~dS67a<pTg8w@zqt8R8-|cOLZL>F4F**wggOf
zBgB*PNx4d}j9p~)_?gPJWn+BKz?&pvT+HMxN3^`iG5dj>&l>B<bc45o_|W|+`a6eB
zq0yv$TwH{sMkAf%T2_}z#OuP*wn!>u)ZtCLz~Y7SwY!dJs;)JR7kR8IV}v@q2}ExL
zjRpV0Nn%d|JM5C-NTRlrN;TR#V*#<o6X;4slHuAm8kxyG-3Do(wuxjY90Q9XEMHo(
zX5uv@TDFp^{G}wphohi4d60QDS(Czn5OT=10^~&ie1!@u;>mQ4xg6?ul2fJWy5pvD
zU3*Y>zNNc5bk9@zr4Q)S+jZybx+_Iu@h)9Y>N7Ay&Z*NYi8wBuq?Zu0O~|M8GLmZb
z*+gn|yb6@7U8}plsF$D83s>mcx?D%jjkS*1lXTZxZ|Ma`^-{;;DZ0~nNOv99r#TNC
z)+_GUT|0rirn}aib{<fiUhe#o?tG8bN}RpA=Nr1~DUr8bp8}xbb$!bHdPQpVSh7pc
zyI-HYU7zmk&`aOci&A=_6XY;=Rp_{+jQB~gb=|Me+^&0^!+Pn{`dnv^UhcTKT%Y_6
zz2dZ9`3>h$=Yx6$EGyUP7o$CnoNnhGx{F$t)aP&@?)2(;0?>2joH~slKB*TEQncpQ
z=_Oa`g^p^J*72178Pc!Pr;_p^5uU5`;vJ+}UZ)q{uNQ3>I?j*^USUMnwmYU^_~HZ~
zpts1deuv>B-xmu7lfgie`8I8AZoXmjhK-xo^LN|=t$UJ2g2`9ku%1dofrd{YoQPS3
zXfWO_jMr~jBbbdFd|Uh*w<?#bR&How9Y)lM<3+ZBShK~8Vzg$97wPbRTp&OrZoz!i
zA`y-*4zx#NyTZ|SltL1fDODO4lS*eSp2RAztn%6oqMXf5{+3O`0*jj6Mu4guj^fp~
zu5e_J(BT?*v5!Nlv~IYAe<~^^n~Rt0#`&q40l>?5CLiwJO_dYXY*-9Fk-$5HDxjO2
zctFLEmTlR%dR?Gt&E}QsM;)Y8`<I9ciT3i|@NHY&+_Giu^*$z+w&?|1@9Kst<jt(N
zrYo6>8q0ZT!)*|Q@wU$8;;mnAO^3IpJ($=NZR?E3qOnw>CKW|gLp4cyUoU}7{(4|d
zcRZHFYm2dX4Z0+TWptI%76~RgRW>bZ*R;2_TV&bSEn8)$i8!aCiEu~Mz><1rFfJOr
zxoQ1qh?WSmO`F&9-nrF?#~9us#OggAOl#`i(HKV;%du+g#0oP@h#0lU;#hVTWo+2E
zVO2At%M!r=4QM$^#`hPB2%{~&>o%=iz0S8)h^w17`nLI2TYeUJWs?_$o@q_Bw;S=%
zIvIG4Q;gfi3y~dd4<)GYM^Bfs?JI8(4MrinPd7L5p93EWvT(DVyXP<BLE$5EG$<4c
z-tdHUwRtmDjI?OTsPQ~nHw48Tl9-ow2BV>f5fJZ);x~=AQpFOzdWRJAcwV0^TQ~bG
zLzC5Y#=4BUNPYd{h4YszTv8W{+_I>lzAhPyMG|%72*2REgb`^cK2f*34R6H;y5mN>
zfz1G-t^wcmz71Qq;JwxOPSI=XWm<K{S-H+fzgzR<5*2l6TD{tW26<?pL)W{ki7w8$
z>|MTR)T%_!^)%$%iOV7-FF#_Y13I2QJ@<29D(WExOY(vzywQd)khps8s!Y~`(eUQG
zr%@nOKT0(7)YufJo}+RQhcDot{14dtALROz&G%E4{<px4SAQ}e52uN@hTRLEi<O5_
zI-dS%u0NI8pDX?=H!EWUvqtTSdkg;>c0s7;vnuyvFq4#Eq4b{qc=+YOy%s&i>X?vt
z8Ro2w3K7(w#m{!&9_Xw1E2|x(?<mD|Qz3%3XYoTfe&f~i?kxC2S@0ia!GD|u|5X-z
zI18SG_)vT8@$vAujcqGQGl7>nDw%qYsx&SqoLcM^2xf*nEdxGY9InfP-<$=fM`RuZ
zzoJn(mc+&NJ?3{@=1QENeUZMsAL)tQB;?p168s~_$NDDe;Vk$I(vSUi@|Rik{~-14
zPXV@P(f=R|?!x(q;%{%)WZ>SvtUjv)K3@FSWWnjt?(A{=+)DZmtOj|;X71;HJm#})
zb?e)o#XsB97Ed<R#&ER>wuS@AU<U(`Na9k7JCo551q6~^xNV6=F`WzqLa{(cB-R>?
z1VWf};8LF2jZY_Zbw`Y(5vr{pUxU8I5Do<6@!*~SW&rU$tUVs=G6JDgSJxhxSR_p3
z!pSkJ<IUv)fom`e^96hxngaM*LDTjPE7z}G4NsV21$=&)>u=i30&AK#u3Fg~*m%t~
zTYOssTUV}X_QAsbk%vb0^#pt;0TU_unu7_^XB7UsZzs@KAI2&hd=A4~P2Mp58=G(Y
zw1b(sP<$K0l&NIeAvgvQ-<%i&p?4C-7{uI(XrlCq2-+BE0=!v#wk1CMfS`>121Fo~
zhy}##1MS}kE!<uPQVHz8G{1#0#+#ZO(1$k0WQfh1V<3!!5K3%KBxLFQRzg&p_C1=)
zRBz>2Y(*T+TA1y=M0`=hRHUZLIlSC3IVLL*z_&2eSfY<)jQiyaRSEi9h-r@DB10`U
zg_;>l(Kzc@NX!f#b{gbkCw5}$IYx`sCiZk;x(}L+3)-nTOeziBxYc6wrcsM07PYt!
zK%<j;EKqAIjBg3yK1yh<T(uTA4;_rFcjD%N)rR&&QG}p)FwAqXu{43(g)u?^d2u5W
zBm>EH;|8>rH=`D8ZAT0uF$trM)h3PI5a~w`?HK<t)Eb@gXWohXK~oYw#P3~LC>}-O
zmITg(IR*-=#fhei?jUMIMr*1An!#uX&Pr0`_na!LwKa~%uTsMIlnliqf@4pcf3-9n
zmbjE-&L>g@&a;#hRqN{l6}pNidNKa-ywkK_BJCBeCnZaw2cgzP-`%m=+rOiAiB%cA
zng=MD=C@XRHNRHWs}v=*+ur~jTUukP{c7KUqN;qgHfyhc5cYUJX}15YY`>xhrDLii
z#aY?&hkKC2_$L!pzS^gtsM?nR6`sh4HPHiRTJu--YMozEiZ3Nqf2F7BZOEfN1WH!>
z2o&8x#z^-13zV^bFcec|ul6-4Iv^EQ`S$kTEA3ZFJ+)6lQMIpv>?vk;`v-tgOq73f
zJ|X87G`_9L-v39CX|?xCJ4JWc0<NYjihj#xzaLY2N{T8yfsRgh6n+dD*76TYdqu5#
zyUB;LQ}hX&{W&=~Q*;J(oFyqc1<|{C*7D8!5qV!yq!cB!$L~dHulk>PrJ|(AZShn6
zC$-p5!H|lwSNC&@HY-I*?dAW{X78CT6cwf20M=wLpY9jwvjy^JYu?|g@7~$<m8|Hy
zu%-1yWv}k1y?iNYbi6`^CuOJTCqQZJDtmRGtG;7+LDpY&qq0-|_+8kNin3Sty%lu;
zkp=}ZkIG)rJQ!Q;S)){~7gUv_94I>_7s8k@Rld59@JM^RK9yxnrLugfZe}U_%S=Qt
z%3e`gvsS!Sb(wT%_iNX!&SHOyG@NN`fZcvk7W*$R5w-cX&A=uy`o5eUBg@V!g+1*+
zuqM0iMrm(v=Tcg}M|$4&gHiTYYAZq*t`g)REwUiZ#y_1}R5;Z2%LPpJJy<gxTqD?{
awoFy7Ql!(JO@(L8TPHL=YcsHk?7sjWb7VRI
literal 0
HcmV?d00001
diff --git a/tools/testing/selftests/xcall_prefetch/echo_server.c b/tools/testing/selftests/xcall_prefetch/echo_server.c
new file mode 100644
index 000000000000..49c1ea035788
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/echo_server.c
@@ -0,0 +1,110 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <sys/epoll.h>
+#include <errno.h>
+#include <fcntl.h>
+
+#include "./utils.h"
+
+static int client_id_counter = 0;
+char buffers[NUM_THREADS][BUFFER_SIZE];
+
+int main() {
+ int server_fd, epoll_fd;
+ struct sockaddr_in address;
+ struct epoll_event ev, events[MAX_EVENTS];
+ struct client_info *clients[MAX_EVENTS] = {0};
+
+ if ((server_fd = socket(AF_INET, SOCK_STREAM, 0)) == 0) {
+ handle_error("socket failed\n");
+ }
+
+ address.sin_family = AF_INET;
+ address.sin_addr.s_addr = INADDR_ANY;
+ address.sin_port = htons(PORT);
+
+ if (bind(server_fd, (struct sockaddr *)&address, sizeof(address)) < 0) {
+ handle_error("bind failed\n");
+ }
+
+ if (listen(server_fd, 100) < 0) {
+ handle_error("listen failed\n");
+ }
+
+ debug_printf("Server listening on port %d...\n", PORT);
+
+ epoll_fd = epoll_create1(0);
+ if (epoll_fd == -1) {
+ handle_error("epoll_create1\n");
+ }
+
+ ev.events = EPOLLIN;
+ ev.data.fd = server_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, server_fd, &ev) == -1) {
+ handle_error("epoll_ctl: server_fd\n");
+ }
+
+ while (1) {
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ handle_error("epoll_wait failed\n");
+ }
+
+ for (int n = 0; n < nfds; ++n) {
+ if (events[n].data.fd == server_fd) {
+ int client_fd;
+ socklen_t addr_len = sizeof(address);
+ if ((client_fd = accept(server_fd, (struct sockaddr *)&address, &addr_len)) < 0) {
+ debug_printf("accept failed\n");
+ goto fail;
+ }
+
+ struct client_info *info = malloc(sizeof(struct client_info));
+ info->fd = client_fd;
+ info->id = client_id_counter++;
+ info->addr = address;
+
+ clients[client_fd] = info;
+ debug_printf("new connection accepted client:%d\n", info->id);
+
+ int flags = fcntl(client_fd, F_GETFL, 0);
+ fcntl(client_fd, F_SETFL, flags | O_NONBLOCK);
+
+ ev.events = EPOLLIN | EPOLLET;
+ ev.data.fd = client_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, client_fd, &ev) == -1) {
+ debug_printf("epoll_ctl: client_fd\n");
+ goto fail;
+ }
+ } else {
+ int client_fd = events[n].data.fd;
+ // char buffer[BUFFER_SIZE] = {0};
+ struct client_info *info = clients[client_fd];
+ char *buffer = buffers[info->id];
+ memset(buffers[info->id], 0, BUFFER_SIZE);
+ ssize_t read_bytes = read(client_fd, buffer, BUFFER_SIZE);
+
+ if (read_bytes <= 0) {
+ if (read_bytes == 0) {
+ debug_printf("client:%d disconnected\n", info->id);
+ continue;
+ } else {
+ debug_printf("read failed\n");
+ }
+ goto fail;
+ } else {
+ debug_printf("Server received client:%d %s\n", info->id, buffer);
+ write(client_fd, buffer, read_bytes);
+ }
+ }
+ }
+ }
+
+fail:
+ close(server_fd);
+ return -1;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/echo_test.c b/tools/testing/selftests/xcall_prefetch/echo_test.c
new file mode 100644
index 000000000000..fc7180869f3c
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/echo_test.c
@@ -0,0 +1,52 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/wait.h>
+
+#include "./utils.h"
+
+int main() {
+ pid_t server_pid, client_pid;
+ int server_status, client_status;
+
+ server_pid = fork();
+ if (server_pid == 0) {
+ execl("./echo_server", "./echo_server", NULL);
+ printf("execl echo_server failed\n");
+ exit(EXIT_FAILURE);
+ } else if (server_pid < 0) {
+ printf("fork echo_server failed\n");
+ exit(EXIT_FAILURE);
+ }
+
+ sleep(1);
+
+ client_pid = fork();
+ if (client_pid == 0) {
+ execl("./echo_client", "./echo_client", NULL);
+ printf("execl client failed\n");
+ exit(EXIT_FAILURE);
+ } else if (client_pid < 0) {
+ printf("fork echo_client failed\n");
+ exit(EXIT_FAILURE);
+ }
+
+ waitpid(client_pid, &client_status, 0);
+
+ kill(server_pid, SIGTERM);
+ waitpid(server_pid, &server_status, 0);
+
+ if (WIFEXITED(client_status)) {
+ int exit_code = WEXITSTATUS(client_status);
+ if (exit_code == 0) {
+ printf("echo test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ exit(EXIT_SUCCESS);
+ } else {
+ printf("echo test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ exit(EXIT_FAILURE);
+ }
+ } else {
+ printf("echo test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ exit(EXIT_FAILURE);
+ }
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/mulit_close_test.c b/tools/testing/selftests/xcall_prefetch/mulit_close_test.c
new file mode 100644
index 000000000000..fae0407e8473
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/mulit_close_test.c
@@ -0,0 +1,48 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <sys/socket.h>
+
+#include "./utils.h"
+
+int main() {
+ int epoll_fd;
+ struct epoll_event ev, events[1];
+ int ret = -1;
+
+ int fds[2];
+ socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
+
+ epoll_fd = epoll_create1(0);
+ ev.events = EPOLLIN | EPOLLHUP;
+ ev.data.fd = fds[0];
+ epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fds[0], &ev);
+
+ if (fork() == 0) {
+ close(fds[1]);
+ exit(0);
+ }
+
+ close(fds[1]);
+
+ int nfds = epoll_wait(epoll_fd, events, 1, 1000);
+
+ if (nfds == 1) {
+ if (events[0].events & EPOLLHUP) {
+ ret = 0;
+ }
+ }
+
+ close(fds[0]);
+ close(epoll_fd);
+ if (!ret) {
+ debug_printf("epoll_wait detected EPOLLHUP!\n");
+ printf("multi close test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ return 0;
+ }
+
+ printf("multi close test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+
+ return -1;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/multi_write_test.c b/tools/testing/selftests/xcall_prefetch/multi_write_test.c
new file mode 100644
index 000000000000..0af07b742e73
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/multi_write_test.c
@@ -0,0 +1,77 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <sys/wait.h>
+
+#include "./utils.h"
+
+#define NUM_CHILDREN 3
+
+int main() {
+ int epoll_fd, pipe_fd[2];
+ struct epoll_event ev, events[MAX_EVENTS];
+ char buffer[BUFFER_SIZE];
+
+ if (pipe(pipe_fd) == -1) {
+ handle_error("pipe failed\n");
+ }
+
+ epoll_fd = epoll_create1(0);
+ if (epoll_fd == -1) {
+ handle_error("epoll_create1 failed\n");
+ }
+
+ ev.events = EPOLLIN;
+ ev.data.fd = pipe_fd[0];
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, pipe_fd[0], &ev) == -1) {
+ handle_error("epoll_ctl failed\n");
+ }
+
+ for (int i = 0; i < NUM_CHILDREN; i++) {
+ sleep(1);
+ pid_t pid = fork();
+ if (pid == 0) {
+ close(pipe_fd[0]);
+ char msg[10];
+ sprintf(msg, "%d %d\n", 2*i, 2*i+1);
+ write(pipe_fd[1], msg, strlen(msg));
+ exit(0);
+ } else if (pid < 0) {
+ handle_error("fork failed\n");
+ }
+ }
+
+ sleep(1);
+
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ handle_error("epoll_wait failed\n");
+ }
+
+ debug_printf("epoll_wait returned %d events\n", nfds);
+
+ for (int i = 0; i < nfds; i++) {
+ if (events[i].data.fd == pipe_fd[0]) {
+ ssize_t n = read(pipe_fd[0], buffer, BUFFER_SIZE);
+ if (n > 0) {
+ debug_printf("Received: %.*s", (int)n, buffer);
+ }
+ char *expected_msg = "0 1\n2 3\n4 5\n";
+ if (strncmp(expected_msg, buffer, strlen(expected_msg)) != 0) {
+ printf("multi write test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ handle_error("expected msg: %s, buffer: %s", expected_msg, buffer);
+ }
+ }
+ }
+
+ for (int i = 0; i < NUM_CHILDREN; i++) {
+ wait(NULL);
+ }
+
+ close(pipe_fd[0]);
+ close(pipe_fd[1]);
+ close(epoll_fd);
+ printf("multi write test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ return 0;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/signal_recovery_test.c b/tools/testing/selftests/xcall_prefetch/signal_recovery_test.c
new file mode 100644
index 000000000000..9645f8ffec1b
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/signal_recovery_test.c
@@ -0,0 +1,164 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <signal.h>
+#include <sys/epoll.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <errno.h>
+#include <string.h>
+#include <pthread.h>
+
+#include "./utils.h"
+
+
+int epoll_fd;
+int server_fd;
+volatile sig_atomic_t signal_received = 0;
+
+void signal_handler() {
+ signal_received = 1;
+}
+
+void* worker_thread() {
+ struct epoll_event events[MAX_EVENTS];
+
+ while (!signal_received) {
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ if (errno == EINTR) {
+ debug_printf("epoll_wait interrupted by signal! re-waiting...\n");
+ continue;
+ } else {
+ handle_error("epoll_wait failed\n");
+ }
+ }
+
+ for (int i = 0; i < nfds; i++) {
+ if (events[i].data.fd == server_fd) {
+ struct sockaddr_in address;
+ socklen_t addr_len = sizeof(address);
+ int client_fd = accept(server_fd, (struct sockaddr*)&address, &addr_len);
+ if (client_fd < 0) {
+ handle_error("accept failed\n");
+ }
+
+ struct epoll_event ev;
+ ev.events = EPOLLIN | EPOLLET;
+ ev.data.fd = client_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, client_fd, &ev) < 0) {
+ close(client_fd);
+ handle_error("epoll_ctl failed\n");
+ }
+ } else {
+ char buffer[1024];
+ ssize_t n = read(events[i].data.fd, buffer, sizeof(buffer));
+ if (n <= 0) {
+ if (n < 0) {
+ handle_error("read failed\n");
+ }
+ epoll_ctl(epoll_fd, EPOLL_CTL_DEL, events[i].data.fd, NULL);
+ close(events[i].data.fd);
+ debug_printf("closing fd %d\n", events[i].data.fd);
+ } else {
+ buffer[n] = '\0';
+ debug_printf("receive: %s\n", buffer);
+ }
+ }
+ }
+ }
+
+ return NULL;
+}
+
+void* client_thread() {
+ sleep(1);
+
+ int client_fd = socket(AF_INET, SOCK_STREAM, 0);
+ struct sockaddr_in server_addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8082),
+ .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
+ };
+
+ if (connect(client_fd, (struct sockaddr*)&server_addr, sizeof(server_addr)) < 0) {
+ debug_printf("connect failed\n");
+ goto fail;
+ }
+
+ const char *msg = "hello world.";
+ write(client_fd, msg, strlen(msg));
+ close(client_fd);
+
+ sleep(1);
+
+ debug_printf("Sending SIGUSR1 to interrupt epoll_wait...\n");
+ kill(getpid(), SIGUSR1);
+
+ sleep(1);
+ debug_printf("Testing if epoll_wait can still work after signal...\n");
+
+ client_fd = socket(AF_INET, SOCK_STREAM, 0);
+ if (connect(client_fd, (struct sockaddr*)&server_addr, sizeof(server_addr)) < 0) {
+ debug_printf("connect failed\n");
+ goto fail;
+ }
+
+ const char *msg2 = "hello world again.";
+ if (write(client_fd, msg2, strlen(msg2)) < 0) {
+ goto fail;
+ }
+
+ close(client_fd);
+ return NULL;
+
+fail:
+ close(client_fd);
+ pthread_exit((void *)42);
+}
+
+int main() {
+ pthread_t worker, client;
+
+ signal(SIGUSR1, signal_handler);
+
+ server_fd = socket(AF_INET, SOCK_STREAM, 0);
+ struct sockaddr_in addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8082),
+ .sin_addr.s_addr = INADDR_ANY,
+ };
+ bind(server_fd, (struct sockaddr*)&addr, sizeof(addr));
+ listen(server_fd, SOMAXCONN);
+
+ epoll_fd = epoll_create1(0);
+ if (epoll_fd < 0) {
+ handle_error("epoll_create1 failed\n");
+ }
+
+ struct epoll_event ev;
+ ev.events = EPOLLIN | EPOLLET;
+ ev.data.fd = server_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, server_fd, &ev) < 0) {
+ handle_error("epoll_ctl failed\n");
+ }
+
+ pthread_create(&worker, NULL, worker_thread, NULL);
+ pthread_create(&client, NULL, client_thread, NULL);
+
+ void *retval;
+ pthread_join(worker, NULL);
+ pthread_join(client, &retval);
+
+ close(server_fd);
+ close(epoll_fd);
+
+ if (retval != NULL) {
+ printf("signal recovery test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ return -1;
+ }
+
+ printf("signal recovery test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+
+ return 0;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/thundering_herd_test.c b/tools/testing/selftests/xcall_prefetch/thundering_herd_test.c
new file mode 100644
index 000000000000..bf98fcf94b6a
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/thundering_herd_test.c
@@ -0,0 +1,119 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <sys/wait.h>
+#include <string.h>
+#include <sys/ipc.h>
+#include <sys/shm.h>
+#include <fcntl.h>
+#include <errno.h>
+
+#include "./utils.h"
+
+#define TIMEOUT_MS 1000
+
+int create_client_connection() {
+ struct sockaddr_in addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8081),
+ .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
+ };
+
+ int fd = socket(AF_INET, SOCK_STREAM, 0);
+ connect(fd, (struct sockaddr *)&addr, sizeof(addr));
+ return fd;
+}
+
+void set_nonblocking(int fd) {
+ int flags = fcntl(fd, F_GETFL, 0);
+ fcntl(fd, F_SETFL, flags | O_NONBLOCK);
+}
+
+int main() {
+ int listen_fd, epoll_fd;
+ struct sockaddr_in addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8081),
+ .sin_addr.s_addr = INADDR_ANY,
+ };
+
+ int shm_id = shmget(IPC_PRIVATE, sizeof(int), IPC_CREAT | 0666);
+ int tmp_cnt;
+ int *accept_count = (int *)shmat(shm_id, NULL, 0);
+ *accept_count = 0;
+
+ listen_fd = socket(AF_INET, SOCK_STREAM, 0);
+ set_nonblocking(listen_fd);
+ int reuse = 1;
+ setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
+ bind(listen_fd, (struct sockaddr *)&addr, sizeof(addr));
+ listen(listen_fd, SOMAXCONN);
+
+ for (int i = 0; i < NUM_THREADS; i++) {
+ if (fork() == 0) {
+ usleep(1000 * i);
+ epoll_fd = epoll_create1(0);
+ struct epoll_event ev = {
+ .events = EPOLLIN | EPOLLET,
+ .data.fd = listen_fd,
+ };
+ epoll_ctl(epoll_fd, EPOLL_CTL_ADD, listen_fd, &ev);
+
+ debug_printf("Worker %d waiting...\n", getpid());
+
+ struct epoll_event events[MAX_EVENTS];
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, TIMEOUT_MS);
+
+ if (nfds == -1) {
+ handle_error("epoll_wait failed\n");
+ }
+
+ debug_printf("Worker %d: epoll_wait returned %d events\n", getpid(), nfds);
+
+ int client_fd = accept(listen_fd, NULL, NULL);
+ if (client_fd >= 0) {
+ debug_printf("Worker %d accepted a connection!\n", getpid());
+ __sync_fetch_and_add(accept_count, 1);
+ close(client_fd);
+ } else if (errno != EAGAIN && errno != EWOULDBLOCK) {
+ debug_printf("accept failed\n");
+ }
+
+ close(epoll_fd);
+ exit(0);
+ }
+ }
+
+ sleep(1);
+
+ debug_printf("Parent creating client connection...\n");
+ int client_fd = create_client_connection();
+ sleep(1);
+ close(client_fd);
+
+ int waited = 0;
+ for (int i = 0; i < NUM_THREADS; i++) {
+ if (wait(NULL) < 0 && errno == ECHILD) {
+ break;
+ }
+ waited++;
+ }
+
+ tmp_cnt = *accept_count;
+ debug_printf("Total successful accepts: %d\n", tmp_cnt);
+
+ shmdt(accept_count);
+ shmctl(shm_id, IPC_RMID, NULL);
+ close(listen_fd);
+
+ if (tmp_cnt == 1) {
+ printf("thundering herd test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ return 0;
+ } else {
+ printf("thundering herd test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ return -1;
+ }
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/utils.h b/tools/testing/selftests/xcall_prefetch/utils.h
new file mode 100644
index 000000000000..58959c564119
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/utils.h
@@ -0,0 +1,54 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <netinet/in.h>
+
+#define ANSI_COLOR_GREEN "\x1b[32m"
+#define ANSI_COLOR_RED "\x1b[31m"
+#define ANSI_COLOR_RESET "\x1b[0m"
+
+#define PORT 8080
+#define BUFFER_SIZE 4097
+#define MAX_EVENTS 100
+#define MAX_MSGS 4
+#define NUM_THREADS 4
+
+#ifdef DEBUG
+#define debug_printf(fmt, ...) (printf(fmt, ##__VA_ARGS__))
+#else
+#define debug_printf(fmt, ...) (void)fmt
+#endif
+
+struct client_info {
+ int fd;
+ int id;
+ struct sockaddr_in addr;
+};
+
+void handle_error(const char *format, ...)
+{
+ printf("%s", format);
+ exit(EXIT_FAILURE);
+}
+
+char* generate_number_string(int length)
+{
+ if (length <= 0) {
+ printf("\nnumber string length invalid\n");
+ return NULL;
+ }
+
+ char* result = (char*)malloc((length + 1) * sizeof(char));
+ if (result == NULL) {
+ printf("\nnumber string malloc failed\n");
+ return NULL;
+ }
+
+ for (int i = 0; i < length; i++) {
+ result[i] = '0' + (i % 10);
+ }
+
+ result[length] = '\0';
+
+ return result;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh b/tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh
new file mode 100755
index 000000000000..e9a990dac69a
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+RED="\033[31m"
+GREEN="\033[32m"
+RESET="\033[0m"
+
+make clean
+make
+
+if [ -e "/proc/$$/xcall" ]; then
+ echo 22 > "/proc/$$/xcall"
+ echo @22 > "/proc/$$/xcall"
+ echo "enable xcall epoll prefetch, pid is $$."
+else
+ echo "Warnning: not enable xcall."
+fi
+
+./echo_test
+sleep 1
+
+./multi_write_test
+sleep 1
+
+./thundering_herd_test
+sleep 1
+
+./mulit_close_test
+sleep 1
+
+./signal_recovery_test
+sleep 1
+
+if [ $? -eq 0 ]; then
+ echo -e "${GREEN}tests passed successfully.${RESET}"
+ exit 0
+else
+ echo -e "${RED}tests failed.${RESET}"
+ exit 1
+fi
\ No newline at end of file
--
2.34.1
2
1
---
.../testing/selftests/xcall_prefetch/Makefile | 37 ++++
.../selftests/xcall_prefetch/echo_client.c | 119 +++++++++++++
.../xcall_prefetch/echo_client_multi | Bin 0 -> 21896 bytes
.../selftests/xcall_prefetch/echo_server.c | 110 ++++++++++++
.../selftests/xcall_prefetch/echo_test.c | 52 ++++++
.../xcall_prefetch/mulit_close_test.c | 48 +++++
.../xcall_prefetch/multi_write_test.c | 77 ++++++++
.../xcall_prefetch/signal_recovery_test.c | 164 ++++++++++++++++++
.../xcall_prefetch/thundering_herd_test | Bin 0 -> 21000 bytes
.../xcall_prefetch/thundering_herd_test.c | 119 +++++++++++++
.../testing/selftests/xcall_prefetch/utils.h | 54 ++++++
.../xcall_prefetch/xcall_prefetch_test.sh | 39 +++++
12 files changed, 819 insertions(+)
create mode 100644 tools/testing/selftests/xcall_prefetch/Makefile
create mode 100644 tools/testing/selftests/xcall_prefetch/echo_client.c
create mode 100755 tools/testing/selftests/xcall_prefetch/echo_client_multi
create mode 100644 tools/testing/selftests/xcall_prefetch/echo_server.c
create mode 100644 tools/testing/selftests/xcall_prefetch/echo_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/mulit_close_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/multi_write_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/signal_recovery_test.c
create mode 100755 tools/testing/selftests/xcall_prefetch/thundering_herd_test
create mode 100644 tools/testing/selftests/xcall_prefetch/thundering_herd_test.c
create mode 100644 tools/testing/selftests/xcall_prefetch/utils.h
create mode 100755 tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh
diff --git a/tools/testing/selftests/xcall_prefetch/Makefile b/tools/testing/selftests/xcall_prefetch/Makefile
new file mode 100644
index 000000000000..5bd509df66e0
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/Makefile
@@ -0,0 +1,37 @@
+CFLAGS += -Wall -Wextra -g
+TEST_GEN_FILES := echo_server echo_client echo_test multi_write_test thundering_herd_test mulit_close_test signal_recovery_test
+
+# enable debug
+# echo_client: CFLAGS += -DDEBUG=1
+# echo_server: CFLAGS += -DDEBUG=1
+# multi_write_test: CFLAGS += -DDEBUG=1
+# thundering_herd_test: CFLAGS += -DDEBUG=1
+# mulit_close_test: CFLAGS += -DDEBUG=1
+# signal_recovery_test: CFLAGS += -DDEBUG=1
+
+all: $(TEST_GEN_FILES)
+
+echo_server: echo_server.c
+ $(CC) $(CFLAGS) $< -o $@
+
+echo_client: echo_client.c
+ $(CC) $(CFLAGS) $< -o $@
+
+echo_test: echo_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+multi_write_test: multi_write_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+thundering_herd_test: thundering_herd_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+mulit_close_test: mulit_close_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+signal_recovery_test: signal_recovery_test.c
+ $(CC) $(CFLAGS) $< -o $@
+
+.PHONY: all
+
+include ../lib.mk
diff --git a/tools/testing/selftests/xcall_prefetch/echo_client.c b/tools/testing/selftests/xcall_prefetch/echo_client.c
new file mode 100644
index 000000000000..2e3c41b2b14e
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/echo_client.c
@@ -0,0 +1,119 @@
+#define _GNU_SOURCE
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <arpa/inet.h>
+#include <pthread.h>
+#include <errno.h>
+
+#include "./utils.h"
+
+#define DEBUG
+
+void *client(void *arg)
+{
+ int thread_id = *(int *)arg;
+ int sock = 0;
+ struct sockaddr_in serv_addr;
+ struct epoll_event ev, events[MAX_EVENTS];
+ const char* test_messages[MAX_MSGS];
+
+ if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
+ handle_error("client:%d create socket failed\n", thread_id);
+ }
+ serv_addr.sin_family = AF_INET;
+ serv_addr.sin_port = htons(PORT);
+
+ if (inet_pton(AF_INET, "127.0.0.1", &serv_addr.sin_addr) <= 0) {
+ close(sock);
+ handle_error("client:%d invalid address\n", thread_id);
+ }
+ if (connect(sock, (struct sockaddr *)&serv_addr, sizeof(serv_addr))) {
+ close(sock);
+ handle_error("client:%d connection failed\n", thread_id);
+ }
+
+ debug_printf("Thread %d connected\n", thread_id);
+
+ int epoll_fd = epoll_create1(0);
+ if (epoll_fd == -1) {
+ handle_error("client:%d epoll_create1 failed\n", thread_id);
+ }
+
+ ev.events = EPOLLIN;
+ ev.data.fd = sock;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sock, &ev) == -1) {
+ handle_error("client:%d epoll_ctl add sock failed\n", thread_id);
+ }
+
+ test_messages[0] = "hello world.";
+ test_messages[1] = generate_number_string(100);
+ test_messages[2] = generate_number_string(1024);
+ test_messages[3] = generate_number_string(4096);
+
+
+ for (int i = 0; i < MAX_MSGS; i++) {
+ const char* msg = test_messages[i];
+ ssize_t msg_len = strlen(msg);
+ if (send(sock, msg, msg_len, 0) != msg_len) {
+ handle_error("client:%d send failed\n", thread_id);
+ }
+
+ debug_printf("Client:%d send %s\n", thread_id, msg);
+
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ handle_error("client:%d epoll_wait failed\n", thread_id);
+ }
+
+ for (int n = 0; n < nfds; ++n) {
+ if (events[n].data.fd == sock) {
+ char buffer[BUFFER_SIZE] = {0};
+ ssize_t read_bytes = read(sock, buffer, BUFFER_SIZE);
+
+ if (read_bytes <= 0) {
+ close(sock);
+ if (read_bytes == 0) {
+ handle_error("client:%d server disconnected\n", thread_id);
+ } else {
+ handle_error("client:%d read failed\n", thread_id);
+ }
+ } else {
+ debug_printf("Client:%d received %s\n", thread_id, buffer);
+ if (strncmp(msg, buffer, msg_len) != 0) {
+ handle_error("client:%d error: response does not match sent message\n", thread_id);
+ }
+ }
+ }
+ }
+ }
+
+ close(sock);
+ pthread_exit(NULL);
+}
+
+int main()
+{
+ pthread_t threads[NUM_THREADS];
+ int ret;
+
+ for (int i = 0; i < NUM_THREADS; i++) {
+ ret = pthread_create(&threads[i], NULL, client, &i);
+ if (ret != 0) {
+ perror("pthread_create failed");
+ continue;
+ }
+ }
+
+ for (int i = 0; i < NUM_THREADS; i++) {
+ if (threads[i] != 0) {
+ pthread_join(threads[i], NULL);
+ }
+ }
+
+ return 0;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/echo_client_multi b/tools/testing/selftests/xcall_prefetch/echo_client_multi
new file mode 100755
index 0000000000000000000000000000000000000000..36aa08d6e12f6e8ec73b2a7f8eb567225eb0b2f8
GIT binary patch
literal 21896
zcmeHPYjhmNm98GCr5TMLBTKd=Ti9cR9ShLQFKmpBY-{is%MWY|>@4hfq-jY5qZwr$
zevlX&WF?*mWo;G$$@&mO&LIiO$uT*B@G{7}Y-bbJ>=JMun>7jKNWo-{fJ8uG_Ph0H
zwK|&JJvsYpqta2|d%wE(R@JSV?&_}U-sfw+#-V9Ur5v_`k#ug7KpJJn!Dh*TG_obE
z2**p<#VikUF2_WEqaer?>8xWcbxJ%3l<X>q8HZL0m?^4iNR;fdC68O=D9SuSCOe&2
zDcfmLfzVS_<(uVsMLx69a#?>xt#%ZfiW*^8v3x8Yk#S+tUfB^$cJrj&JZY!s1*#B|
zqAH#g6Z&5w{n=?f86hcZx9gO4cG@J&n4(k$r7dqILw`+qo21>qEaAsa)i6_3m3JNN
zC@%loq`G;tEH7I>49b2`REC$;MZ&F%7uH2WHIZ;MwYz5blEpQP7uF_Xwexuus9s+D
z)0kSbp@qTC0AZ>-9s7l>{83)H%qRWs(jWZ%*E_C1J?FB63+}pchWni>DsCnnsyEq?
z4khxZh6>5VPs2ayh<Mx%PGCe|F<$N>nk}tBhWu%dQHf{4D^QSkjHVE7&7yyI7W}0w
z_|Yu*KV`vh$%608f(NtU7iGa0W@+yYS@fyD#*63dEcioN@ZK!=BU$i@EcoIq`06a}
zs?MVScouw9798#wwfQenAkelu7-$bigOTv92J23C#*JVoVC)Vj8F8#D7>UH%%#533
z;V5g1MWaSrk_7_z8MXxy$zVJg=n5hy5o^1}NV0I$NCvu-u_!aTW06RpEg4~5Mppt^
ziDW$5*453rQ^^Eti^LM6g|?x<q(K@H1Fno{h;_n8LOR(MM4h^gcsv$YZn;4N>VYb>
z-4bZ)yd}^c3`ZDMi%tfM*_!6Ht5yf**Df`=1vo`0bfL-3uU%yF3l_4#+O6vYAtP>d
zgcC_4zIFZTNGxh>4Yo!Ml-AJ|i^^69gzC782(|-f2o3)^IQ!F){&f5cjCj(ZKMh<S
z=ctb~<h%~5&Xbkla1otR-jG<lGVG$W+uKqu=lQwpPf|`zqkMQp$CHmA9{ws$M-Em*
z0|7~0@6>f>piJOic|BA3eu+C9MZUt7eD-RA)45K%=D;}%uFkoXF=)ZjATwRC;8RSL
zu@MVS=T(*JC7ut!dj4Hv!RdUhQlkau^9-5cx8T$Ul{Q&$Dnq4h7F@-G@^)Bo1l~-Y
z7F<qYcwV;!ms28+@3!EDrWeNcTkv8Fe$axKSnxv@T#X^hzR!Y}TJ(=vaO?T<+ZJ37
z1#WfBg41<VrN=G!WCel_Sn#P9{FDW!bEZmXEO?~?C+I{3CL%Bqfxn>$yjL>gBY)3%
zr@v4Cc^zZ^-hreebH?BEg7bMEh0LOlY8e~O%=s9kWF{m1PRbb`dLxs`9O5!vn1_d6
zF=e`74iB9$Wx7BQ4?SYabm1Hxdcc(Ff;l{N*p%r)IXrZ`DbodVc<6JcOc%!Cp`a<#
z1#x)jI#Z?#;qcH(Q>F{x@KA#((}iz%XqG9{L}7TS)RgH0I6S18GF|wFhu-~EwU;h<
zXum1bg%0gEWxBwj{iaM8HniWA>4Jv#D;d%4;?ZqlJid_csiA0(%KbLE*Cy|^$tj!M
zWs?n?e3MOXvB~Rgvd<<jx5<laa*a)%W0Nnk$&+nzkxkZZ@+X&%jn@ZOx#69)=~w>V
zpZ<-%=gkY7w)z?d8czHBmtTQlmYMu-(0sqWwq)i3bP9d|{mVZD;_ugoi7XvSPR38;
zG2-#laAnSw%-m0U&r1sZ(_DYib402?^`|fRPyFF(|A~<tzxI;<l~0r9aL_9qI5X$k
zdA}-q`u*%*PT4GVS&P4Cc`LF0^jpb7f8X+U2!lWWB$F8oVKBa=-vn8^3ASeWWIwbE
znZ&ff&VT#)0q)_rAE-b5=r&I7*}+MFCrER;x0{px-5>`BlHQVP-~N*7^@mETTaK1g
z-*l{`+88LQ?mAOaojO-iz4yYi^a~%{fdOk4({tXN-g~}h?|HUw3WD%7eq)0hQB%5c
zWJCAj(C0hfGobnJ^QTV^zJ(lr+Bf3w**n5gWia>-8O%@yZ--C%-Y3hqoBCSb_qRRg
z4-a&-x3~LG40=zDIMT13_;hCVh4hK^sT1cM+9_=y{Yo{2et&(R59(+9eekWFN&onu
zr^olc25_10{1<+RDvV~ngt$WO^z&vLZa+`=F8-dvOBlk|h|`cief-q#GntUTFL%y7
zREO%^FyQa&CA5#Fd(VQN?EMvvR9pYa-V6U}vLlM^zlU9rk$B=$gwCIS{XPG8{ppVm
zI{ZD)X-|^rGZfNi=}bB3M-<ZBXU}o&c~4~@FDU&I0`(xyW<02am56`)$zIRfnT&%y
zduS$1i~bBK-8%`8zn|y$dj@j->F50Yi_$O@1+0Nq@4&vfeY_BKM;-u65n;24$EcsA
zqx1=(|0JF6{OOlr7v+wUqmGV$JjT&7(@_^3JqtTF_*vMbd(R<aJ;&*oNm*NWxoNQs
z7AJdi(GrS`tZJ{5x2&JwzI!M*ecTm~9xAjR<@bz?b@?GK2O?mDC>p<HdZz17_j=*u
z*$`Ff3TkD#cOC)s)O2vJ0O~n_<_=C4z!Cr_d(X(;9(n^c>*FFub>D#($s_y>A|FG9
z6Vz$@M;yJt(R&1Wlrlw|o}j2et(DZ4_ELV*8j*-u{c2wQM;lR!X!R3_Ugk+^0_-1z
zeY*EenD-o~<Jcf9H@*B8Av)RnDm19zp<Lbu66u$bKI7L0@Wb)rXXV!h{WVYH+SJFE
z@_|y)dj=L54m8G})DV|v$OZkLAN>&a{r!|72MJ}1L2{b%(!C>8M9*;|Y~Om>pC<?V
zC|AO%>6StGFs|yN+Zs^gx3^iczHeqtp{(WpJ`q+?0W<V3Q_Y?lp|L(Dq6ba$*AcTG
z9t*9HlVv=BC3pTFKdm0#vs%w_>hGMAuS^1FR{K@B72~-84KU9jJ?Fb^=ZcfQyD3O-
z<5Y9EzrW=uM#_nEIsX2u9R7YF=@b6`$)86ncqj+of!nn2NYCCQELnsfdpW8)I0*0%
z%yITi`|c)Y#C6-TlfL`7<4gN|_tEfcdhsY-lBSM|X79WX2R**~w4S~9xo$hdgX-^F
zKN9j^R>;q4Nqz8zKV>qfF~y^n@cExP<D)_*(nJI%A}|qwi3t3Ej{vO-P%4O~x>}96
z7i%NoXonZ;BOS?3Z#cRW%Qhi<u2{11(n^Ryvk|1WNZ5!bubdO|ibWQ$Sg4UY1*~EI
z6}9#FYp`fa@7`c26gLuy0!x-$01C&VrU!dDa^Xj;(3o1I^)MHP$Um=+snls;$;rDb
z7LSB#Errs8kf~#LM2kaarnS8ZBfb-X3xyN1(niSI5?bRL*N(3<UFk*3yRigictbHG
z;f=<U-mYM>t<#IjfJIn>9Y%q<IwpfV8hLGc&a!5N2J;5C;}4n4e$WBT%DxSH26O<_
z`)(%F3F;coWX^(igVN2`!uK+na!dzzVlGfmlWrtT|9H}F-ORMz9&LJIzVi_B2&cUm
z$8cjamo%F4G2vs_0|GzzKl@H5vx9sTd#)+2xVFT-%ekLjJ?+X%7hEzMD7U{6)Pp*4
zLjsY=Zxa7b;G1L}2(Q5Zo%pXt-8%^I6??wuSY1SqhNvFYz9jNq05$U*PocKL_7va>
zv~yLiB_Ax=zKQ=8f6Qb^XVmstZcETanux$e1STRd5rK&aOhjNJ0uvGV+lzqOucY=T
zsi`ULnW9uEh`E8PNXc>&k=j$D_CZaT`Iw&ar1l!A{ZKS7rKIvd_%stE`Iy|?r1li;
zpb0RNB<!rr$0Kf@Zju#MdwyshP06}fhGc2RDy}AJbdS@Bw5NGFCABw6?Ww7twN?wh
zO;%Xddw}QSUPDq<{tPKAJv;&B?L%=K!n0N`kH`Y?JX_^+OWbyF`5Bpyhp=2$?U3&O
z&xqP@ZFg8NZ(bTD-6ZJ_NxLQ8FX<skk4kz>(g8`&NP14v3z9OqdCDWHSJHY(8ztQ&
z=?+P|CAHW4f0CVzLSxP9)mM7wwX~+9$&|ODzIIV<eN97(iw(EUpI=+Quv)_Ga#)Cm
z2clC?%l%u6)Y!C@IUQ<rH-;Y92GH+?m*P+dWIRKMGye#jJ96_M0LgJWG-n&hj{LWY
zXn6)m?!EAkGj}TODRemW7eR7qaV=+FRTGGwtB0dWXc2Vj6uM1yIQ2&`WO6s+kW(`q
ztH><3jhs9;{Q&qp=XXd+%ZtE!KJj_ZW29q1CwF}rd4h}Y!5S63m#T084bZ1^PtE}F
z{9G!hpdzmpCa!77)m;0*I$T{;rt5QL<SGEKyB<Prp6kot3koW6q~C)3XHWpmrG=Wj
zD&CO7xlr`v|IpbAtmsu}=0B#Be^&Hcs_2gjI;aGee<esUReKkh5^7x$T0p3WkkVh1
z=^fzmoOJZuN#HR!&!<S{IqB$mfWS}5@Ao)JN6%vft|Idj9HgV?pK&PsI@QhjfwKY@
zMHi^<f0A|kCe)oHCGUbbipZ<;!}8Z4<Q9Dey3RkB?S!e5<-f)~($RAfGA4Z=hbm{T
z=G+UW>;}@!(}d4554p+LgwwJIsW_)r`~&h@Mm^<pX_Nns+?M@@qymvw!Sd(9O`emE
zo;z?Ty%yQ|{T!sDhdQ(LT6oWYkb`vee2+jHUHL!aARRp?2wXv$Kj9!9J+BeiN8lSA
zq@#z1YUx)|xBNeHkd7WY_2%)O^td_uC0Kc;aP|nXvpD+*v6pl9C1S7OECty^-H^wF
z<5|zyy9nLJ*>4fs#@VNdjdJ!CV)t<Ncf=mx?8n6Z1K8ZJp#)b&*=Dpf_h}qlmE{KU
zUn726`EKH`gQ9DCc^~l&;GHujQP>L~gl(>Krjxq4=p<Y^XO;XIJWwLe&rf;?q}=2D
zcl|PS%;Z~1<v$8Ie*<it=iJK(|2-+c;a&%x6@MK9p?nONuwrsSIb6<Xyu+!Rxtzla
zAAym_`Aa8_sG@1)^*63hU;|gweP2|n`OMh`Ui?Vi7w6^Ry6XBDXlSlp)XU-8fMc$!
z3mzI>x52@FH@`A#Zhp0KxVMwfT-OO?Ib9!v_qh3#z+3PzY)CHn3JO5-7PNB88Vh#v
zny~$B%3QK@H<!>}gQ?xgICF1sErZ(B_7HP#%>Nv*sRi?yds86=cWP?!Lgv1%@ELND
zTY`goa}L$H@F~=@(7n}}gi!P(vfbBn3syuO?7qQ6CFHV-yI|umbaK2{&Ph&zr=%VE
z7&?`+QEx{_3Gq3H5AB;4#~yk|r;99d4&S+N`gPKbw;bRvpg1ke95)vWl>_@&)x%O}
zDfvaB{J6|NxDTE1Gk|Vf7kGcU*hPD&(9(Qr`ulRK!JpJY){X>mjh_*WcR-_@G;$6<
z-cq>$jH66e>r_kSGl;UIT*^Obsl1is$rW@K$vM3L`pRX9iDOCu`N}zbE-=m5$sAKF
znt3bVZ>gk^Ii^;{dG@jED|5)aqVx_fAG*G>l;q2#`!g+7v*iTn6Vc1Og;$k`2n@7T
zHOTB=sO+u;s=s{lqrCcOTX=jND@vc@^0}7E&r<omBH`fGma5-L2XmBzD05spNo2o(
z;^jQ*4D2aY&cng6p;Gu8Y~dh3^HYmv(wQG;nqq1$HHnA4jTKXM?ox6NyXf<fwb}XK
z1gV$Z@B(;B+L2)>dY?djwAr(%B96m1R??MTt9Fxt<8WtHS{jM+dB1CQyx$#%LyXP(
zBU-6d<*5sN2h1pGN4zg%lxkHoMSLE=Z8oG*ZBB8SJEwShaj7;b--CcSE@5u>3P9+?
z60jK2Q&>*%mF{KkrS7$uZs<}0)yg9U!t&=bBDj9!6t8d-CiFFcu6Z!8f}aA;U_iP#
zgD@4ALEr5j)h#Nr6tx64#hSLZjJ%Z0LJ4(1JXi3dO3R>m6}otm=|f-YCe1SG1LE2;
z@=-ojvz9U0S_WfNrrPQ-75UE5=2p~dS67a<pTg8w@zqt8R8-|cOLZL>F4F**wggOf
zBgB*PNx4d}j9p~)_?gPJWn+BKz?&pvT+HMxN3^`iG5dj>&l>B<bc45o_|W|+`a6eB
zq0yv$TwH{sMkAf%T2_}z#OuP*wn!>u)ZtCLz~Y7SwY!dJs;)JR7kR8IV}v@q2}ExL
zjRpV0Nn%d|JM5C-NTRlrN;TR#V*#<o6X;4slHuAm8kxyG-3Do(wuxjY90Q9XEMHo(
zX5uv@TDFp^{G}wphohi4d60QDS(Czn5OT=10^~&ie1!@u;>mQ4xg6?ul2fJWy5pvD
zU3*Y>zNNc5bk9@zr4Q)S+jZybx+_Iu@h)9Y>N7Ay&Z*NYi8wBuq?Zu0O~|M8GLmZb
z*+gn|yb6@7U8}plsF$D83s>mcx?D%jjkS*1lXTZxZ|Ma`^-{;;DZ0~nNOv99r#TNC
z)+_GUT|0rirn}aib{<fiUhe#o?tG8bN}RpA=Nr1~DUr8bp8}xbb$!bHdPQpVSh7pc
zyI-HYU7zmk&`aOci&A=_6XY;=Rp_{+jQB~gb=|Me+^&0^!+Pn{`dnv^UhcTKT%Y_6
zz2dZ9`3>h$=Yx6$EGyUP7o$CnoNnhGx{F$t)aP&@?)2(;0?>2joH~slKB*TEQncpQ
z=_Oa`g^p^J*72178Pc!Pr;_p^5uU5`;vJ+}UZ)q{uNQ3>I?j*^USUMnwmYU^_~HZ~
zpts1deuv>B-xmu7lfgie`8I8AZoXmjhK-xo^LN|=t$UJ2g2`9ku%1dofrd{YoQPS3
zXfWO_jMr~jBbbdFd|Uh*w<?#bR&How9Y)lM<3+ZBShK~8Vzg$97wPbRTp&OrZoz!i
zA`y-*4zx#NyTZ|SltL1fDODO4lS*eSp2RAztn%6oqMXf5{+3O`0*jj6Mu4guj^fp~
zu5e_J(BT?*v5!Nlv~IYAe<~^^n~Rt0#`&q40l>?5CLiwJO_dYXY*-9Fk-$5HDxjO2
zctFLEmTlR%dR?Gt&E}QsM;)Y8`<I9ciT3i|@NHY&+_Giu^*$z+w&?|1@9Kst<jt(N
zrYo6>8q0ZT!)*|Q@wU$8;;mnAO^3IpJ($=NZR?E3qOnw>CKW|gLp4cyUoU}7{(4|d
zcRZHFYm2dX4Z0+TWptI%76~RgRW>bZ*R;2_TV&bSEn8)$i8!aCiEu~Mz><1rFfJOr
zxoQ1qh?WSmO`F&9-nrF?#~9us#OggAOl#`i(HKV;%du+g#0oP@h#0lU;#hVTWo+2E
zVO2At%M!r=4QM$^#`hPB2%{~&>o%=iz0S8)h^w17`nLI2TYeUJWs?_$o@q_Bw;S=%
zIvIG4Q;gfi3y~dd4<)GYM^Bfs?JI8(4MrinPd7L5p93EWvT(DVyXP<BLE$5EG$<4c
z-tdHUwRtmDjI?OTsPQ~nHw48Tl9-ow2BV>f5fJZ);x~=AQpFOzdWRJAcwV0^TQ~bG
zLzC5Y#=4BUNPYd{h4YszTv8W{+_I>lzAhPyMG|%72*2REgb`^cK2f*34R6H;y5mN>
zfz1G-t^wcmz71Qq;JwxOPSI=XWm<K{S-H+fzgzR<5*2l6TD{tW26<?pL)W{ki7w8$
z>|MTR)T%_!^)%$%iOV7-FF#_Y13I2QJ@<29D(WExOY(vzywQd)khps8s!Y~`(eUQG
zr%@nOKT0(7)YufJo}+RQhcDot{14dtALROz&G%E4{<px4SAQ}e52uN@hTRLEi<O5_
zI-dS%u0NI8pDX?=H!EWUvqtTSdkg;>c0s7;vnuyvFq4#Eq4b{qc=+YOy%s&i>X?vt
z8Ro2w3K7(w#m{!&9_Xw1E2|x(?<mD|Qz3%3XYoTfe&f~i?kxC2S@0ia!GD|u|5X-z
zI18SG_)vT8@$vAujcqGQGl7>nDw%qYsx&SqoLcM^2xf*nEdxGY9InfP-<$=fM`RuZ
zzoJn(mc+&NJ?3{@=1QENeUZMsAL)tQB;?p168s~_$NDDe;Vk$I(vSUi@|Rik{~-14
zPXV@P(f=R|?!x(q;%{%)WZ>SvtUjv)K3@FSWWnjt?(A{=+)DZmtOj|;X71;HJm#})
zb?e)o#XsB97Ed<R#&ER>wuS@AU<U(`Na9k7JCo551q6~^xNV6=F`WzqLa{(cB-R>?
z1VWf};8LF2jZY_Zbw`Y(5vr{pUxU8I5Do<6@!*~SW&rU$tUVs=G6JDgSJxhxSR_p3
z!pSkJ<IUv)fom`e^96hxngaM*LDTjPE7z}G4NsV21$=&)>u=i30&AK#u3Fg~*m%t~
zTYOssTUV}X_QAsbk%vb0^#pt;0TU_unu7_^XB7UsZzs@KAI2&hd=A4~P2Mp58=G(Y
zw1b(sP<$K0l&NIeAvgvQ-<%i&p?4C-7{uI(XrlCq2-+BE0=!v#wk1CMfS`>121Fo~
zhy}##1MS}kE!<uPQVHz8G{1#0#+#ZO(1$k0WQfh1V<3!!5K3%KBxLFQRzg&p_C1=)
zRBz>2Y(*T+TA1y=M0`=hRHUZLIlSC3IVLL*z_&2eSfY<)jQiyaRSEi9h-r@DB10`U
zg_;>l(Kzc@NX!f#b{gbkCw5}$IYx`sCiZk;x(}L+3)-nTOeziBxYc6wrcsM07PYt!
zK%<j;EKqAIjBg3yK1yh<T(uTA4;_rFcjD%N)rR&&QG}p)FwAqXu{43(g)u?^d2u5W
zBm>EH;|8>rH=`D8ZAT0uF$trM)h3PI5a~w`?HK<t)Eb@gXWohXK~oYw#P3~LC>}-O
zmITg(IR*-=#fhei?jUMIMr*1An!#uX&Pr0`_na!LwKa~%uTsMIlnliqf@4pcf3-9n
zmbjE-&L>g@&a;#hRqN{l6}pNidNKa-ywkK_BJCBeCnZaw2cgzP-`%m=+rOiAiB%cA
zng=MD=C@XRHNRHWs}v=*+ur~jTUukP{c7KUqN;qgHfyhc5cYUJX}15YY`>xhrDLii
z#aY?&hkKC2_$L!pzS^gtsM?nR6`sh4HPHiRTJu--YMozEiZ3Nqf2F7BZOEfN1WH!>
z2o&8x#z^-13zV^bFcec|ul6-4Iv^EQ`S$kTEA3ZFJ+)6lQMIpv>?vk;`v-tgOq73f
zJ|X87G`_9L-v39CX|?xCJ4JWc0<NYjihj#xzaLY2N{T8yfsRgh6n+dD*76TYdqu5#
zyUB;LQ}hX&{W&=~Q*;J(oFyqc1<|{C*7D8!5qV!yq!cB!$L~dHulk>PrJ|(AZShn6
zC$-p5!H|lwSNC&@HY-I*?dAW{X78CT6cwf20M=wLpY9jwvjy^JYu?|g@7~$<m8|Hy
zu%-1yWv}k1y?iNYbi6`^CuOJTCqQZJDtmRGtG;7+LDpY&qq0-|_+8kNin3Sty%lu;
zkp=}ZkIG)rJQ!Q;S)){~7gUv_94I>_7s8k@Rld59@JM^RK9yxnrLugfZe}U_%S=Qt
z%3e`gvsS!Sb(wT%_iNX!&SHOyG@NN`fZcvk7W*$R5w-cX&A=uy`o5eUBg@V!g+1*+
zuqM0iMrm(v=Tcg}M|$4&gHiTYYAZq*t`g)REwUiZ#y_1}R5;Z2%LPpJJy<gxTqD?{
awoFy7Ql!(JO@(L8TPHL=YcsHk?7sjWb7VRI
literal 0
HcmV?d00001
diff --git a/tools/testing/selftests/xcall_prefetch/echo_server.c b/tools/testing/selftests/xcall_prefetch/echo_server.c
new file mode 100644
index 000000000000..49c1ea035788
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/echo_server.c
@@ -0,0 +1,110 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <sys/epoll.h>
+#include <errno.h>
+#include <fcntl.h>
+
+#include "./utils.h"
+
+static int client_id_counter = 0;
+char buffers[NUM_THREADS][BUFFER_SIZE];
+
+int main() {
+ int server_fd, epoll_fd;
+ struct sockaddr_in address;
+ struct epoll_event ev, events[MAX_EVENTS];
+ struct client_info *clients[MAX_EVENTS] = {0};
+
+ if ((server_fd = socket(AF_INET, SOCK_STREAM, 0)) == 0) {
+ handle_error("socket failed\n");
+ }
+
+ address.sin_family = AF_INET;
+ address.sin_addr.s_addr = INADDR_ANY;
+ address.sin_port = htons(PORT);
+
+ if (bind(server_fd, (struct sockaddr *)&address, sizeof(address)) < 0) {
+ handle_error("bind failed\n");
+ }
+
+ if (listen(server_fd, 100) < 0) {
+ handle_error("listen failed\n");
+ }
+
+ debug_printf("Server listening on port %d...\n", PORT);
+
+ epoll_fd = epoll_create1(0);
+ if (epoll_fd == -1) {
+ handle_error("epoll_create1\n");
+ }
+
+ ev.events = EPOLLIN;
+ ev.data.fd = server_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, server_fd, &ev) == -1) {
+ handle_error("epoll_ctl: server_fd\n");
+ }
+
+ while (1) {
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ handle_error("epoll_wait failed\n");
+ }
+
+ for (int n = 0; n < nfds; ++n) {
+ if (events[n].data.fd == server_fd) {
+ int client_fd;
+ socklen_t addr_len = sizeof(address);
+ if ((client_fd = accept(server_fd, (struct sockaddr *)&address, &addr_len)) < 0) {
+ debug_printf("accept failed\n");
+ goto fail;
+ }
+
+ struct client_info *info = malloc(sizeof(struct client_info));
+ info->fd = client_fd;
+ info->id = client_id_counter++;
+ info->addr = address;
+
+ clients[client_fd] = info;
+ debug_printf("new connection accepted client:%d\n", info->id);
+
+ int flags = fcntl(client_fd, F_GETFL, 0);
+ fcntl(client_fd, F_SETFL, flags | O_NONBLOCK);
+
+ ev.events = EPOLLIN | EPOLLET;
+ ev.data.fd = client_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, client_fd, &ev) == -1) {
+ debug_printf("epoll_ctl: client_fd\n");
+ goto fail;
+ }
+ } else {
+ int client_fd = events[n].data.fd;
+ // char buffer[BUFFER_SIZE] = {0};
+ struct client_info *info = clients[client_fd];
+ char *buffer = buffers[info->id];
+ memset(buffers[info->id], 0, BUFFER_SIZE);
+ ssize_t read_bytes = read(client_fd, buffer, BUFFER_SIZE);
+
+ if (read_bytes <= 0) {
+ if (read_bytes == 0) {
+ debug_printf("client:%d disconnected\n", info->id);
+ continue;
+ } else {
+ debug_printf("read failed\n");
+ }
+ goto fail;
+ } else {
+ debug_printf("Server received client:%d %s\n", info->id, buffer);
+ write(client_fd, buffer, read_bytes);
+ }
+ }
+ }
+ }
+
+fail:
+ close(server_fd);
+ return -1;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/echo_test.c b/tools/testing/selftests/xcall_prefetch/echo_test.c
new file mode 100644
index 000000000000..fc7180869f3c
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/echo_test.c
@@ -0,0 +1,52 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/wait.h>
+
+#include "./utils.h"
+
+int main() {
+ pid_t server_pid, client_pid;
+ int server_status, client_status;
+
+ server_pid = fork();
+ if (server_pid == 0) {
+ execl("./echo_server", "./echo_server", NULL);
+ printf("execl echo_server failed\n");
+ exit(EXIT_FAILURE);
+ } else if (server_pid < 0) {
+ printf("fork echo_server failed\n");
+ exit(EXIT_FAILURE);
+ }
+
+ sleep(1);
+
+ client_pid = fork();
+ if (client_pid == 0) {
+ execl("./echo_client", "./echo_client", NULL);
+ printf("execl client failed\n");
+ exit(EXIT_FAILURE);
+ } else if (client_pid < 0) {
+ printf("fork echo_client failed\n");
+ exit(EXIT_FAILURE);
+ }
+
+ waitpid(client_pid, &client_status, 0);
+
+ kill(server_pid, SIGTERM);
+ waitpid(server_pid, &server_status, 0);
+
+ if (WIFEXITED(client_status)) {
+ int exit_code = WEXITSTATUS(client_status);
+ if (exit_code == 0) {
+ printf("echo test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ exit(EXIT_SUCCESS);
+ } else {
+ printf("echo test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ exit(EXIT_FAILURE);
+ }
+ } else {
+ printf("echo test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ exit(EXIT_FAILURE);
+ }
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/mulit_close_test.c b/tools/testing/selftests/xcall_prefetch/mulit_close_test.c
new file mode 100644
index 000000000000..fae0407e8473
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/mulit_close_test.c
@@ -0,0 +1,48 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <sys/socket.h>
+
+#include "./utils.h"
+
+int main() {
+ int epoll_fd;
+ struct epoll_event ev, events[1];
+ int ret = -1;
+
+ int fds[2];
+ socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
+
+ epoll_fd = epoll_create1(0);
+ ev.events = EPOLLIN | EPOLLHUP;
+ ev.data.fd = fds[0];
+ epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fds[0], &ev);
+
+ if (fork() == 0) {
+ close(fds[1]);
+ exit(0);
+ }
+
+ close(fds[1]);
+
+ int nfds = epoll_wait(epoll_fd, events, 1, 1000);
+
+ if (nfds == 1) {
+ if (events[0].events & EPOLLHUP) {
+ ret = 0;
+ }
+ }
+
+ close(fds[0]);
+ close(epoll_fd);
+ if (!ret) {
+ debug_printf("epoll_wait detected EPOLLHUP!\n");
+ printf("multi close test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ return 0;
+ }
+
+ printf("multi close test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+
+ return -1;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/multi_write_test.c b/tools/testing/selftests/xcall_prefetch/multi_write_test.c
new file mode 100644
index 000000000000..0af07b742e73
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/multi_write_test.c
@@ -0,0 +1,77 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <sys/wait.h>
+
+#include "./utils.h"
+
+#define NUM_CHILDREN 3
+
+int main() {
+ int epoll_fd, pipe_fd[2];
+ struct epoll_event ev, events[MAX_EVENTS];
+ char buffer[BUFFER_SIZE];
+
+ if (pipe(pipe_fd) == -1) {
+ handle_error("pipe failed\n");
+ }
+
+ epoll_fd = epoll_create1(0);
+ if (epoll_fd == -1) {
+ handle_error("epoll_create1 failed\n");
+ }
+
+ ev.events = EPOLLIN;
+ ev.data.fd = pipe_fd[0];
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, pipe_fd[0], &ev) == -1) {
+ handle_error("epoll_ctl failed\n");
+ }
+
+ for (int i = 0; i < NUM_CHILDREN; i++) {
+ sleep(1);
+ pid_t pid = fork();
+ if (pid == 0) {
+ close(pipe_fd[0]);
+ char msg[10];
+ sprintf(msg, "%d %d\n", 2*i, 2*i+1);
+ write(pipe_fd[1], msg, strlen(msg));
+ exit(0);
+ } else if (pid < 0) {
+ handle_error("fork failed\n");
+ }
+ }
+
+ sleep(1);
+
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ handle_error("epoll_wait failed\n");
+ }
+
+ debug_printf("epoll_wait returned %d events\n", nfds);
+
+ for (int i = 0; i < nfds; i++) {
+ if (events[i].data.fd == pipe_fd[0]) {
+ ssize_t n = read(pipe_fd[0], buffer, BUFFER_SIZE);
+ if (n > 0) {
+ debug_printf("Received: %.*s", (int)n, buffer);
+ }
+ char *expected_msg = "0 1\n2 3\n4 5\n";
+ if (strncmp(expected_msg, buffer, strlen(expected_msg)) != 0) {
+ printf("multi write test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ handle_error("expected msg: %s, buffer: %s", expected_msg, buffer);
+ }
+ }
+ }
+
+ for (int i = 0; i < NUM_CHILDREN; i++) {
+ wait(NULL);
+ }
+
+ close(pipe_fd[0]);
+ close(pipe_fd[1]);
+ close(epoll_fd);
+ printf("multi write test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ return 0;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/signal_recovery_test.c b/tools/testing/selftests/xcall_prefetch/signal_recovery_test.c
new file mode 100644
index 000000000000..9645f8ffec1b
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/signal_recovery_test.c
@@ -0,0 +1,164 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <signal.h>
+#include <sys/epoll.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <errno.h>
+#include <string.h>
+#include <pthread.h>
+
+#include "./utils.h"
+
+
+int epoll_fd;
+int server_fd;
+volatile sig_atomic_t signal_received = 0;
+
+void signal_handler() {
+ signal_received = 1;
+}
+
+void* worker_thread() {
+ struct epoll_event events[MAX_EVENTS];
+
+ while (!signal_received) {
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
+ if (nfds == -1) {
+ if (errno == EINTR) {
+ debug_printf("epoll_wait interrupted by signal! re-waiting...\n");
+ continue;
+ } else {
+ handle_error("epoll_wait failed\n");
+ }
+ }
+
+ for (int i = 0; i < nfds; i++) {
+ if (events[i].data.fd == server_fd) {
+ struct sockaddr_in address;
+ socklen_t addr_len = sizeof(address);
+ int client_fd = accept(server_fd, (struct sockaddr*)&address, &addr_len);
+ if (client_fd < 0) {
+ handle_error("accept failed\n");
+ }
+
+ struct epoll_event ev;
+ ev.events = EPOLLIN | EPOLLET;
+ ev.data.fd = client_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, client_fd, &ev) < 0) {
+ close(client_fd);
+ handle_error("epoll_ctl failed\n");
+ }
+ } else {
+ char buffer[1024];
+ ssize_t n = read(events[i].data.fd, buffer, sizeof(buffer));
+ if (n <= 0) {
+ if (n < 0) {
+ handle_error("read failed\n");
+ }
+ epoll_ctl(epoll_fd, EPOLL_CTL_DEL, events[i].data.fd, NULL);
+ close(events[i].data.fd);
+ debug_printf("closing fd %d\n", events[i].data.fd);
+ } else {
+ buffer[n] = '\0';
+ debug_printf("receive: %s\n", buffer);
+ }
+ }
+ }
+ }
+
+ return NULL;
+}
+
+void* client_thread() {
+ sleep(1);
+
+ int client_fd = socket(AF_INET, SOCK_STREAM, 0);
+ struct sockaddr_in server_addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8082),
+ .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
+ };
+
+ if (connect(client_fd, (struct sockaddr*)&server_addr, sizeof(server_addr)) < 0) {
+ debug_printf("connect failed\n");
+ goto fail;
+ }
+
+ const char *msg = "hello world.";
+ write(client_fd, msg, strlen(msg));
+ close(client_fd);
+
+ sleep(1);
+
+ debug_printf("Sending SIGUSR1 to interrupt epoll_wait...\n");
+ kill(getpid(), SIGUSR1);
+
+ sleep(1);
+ debug_printf("Testing if epoll_wait can still work after signal...\n");
+
+ client_fd = socket(AF_INET, SOCK_STREAM, 0);
+ if (connect(client_fd, (struct sockaddr*)&server_addr, sizeof(server_addr)) < 0) {
+ debug_printf("connect failed\n");
+ goto fail;
+ }
+
+ const char *msg2 = "hello world again.";
+ if (write(client_fd, msg2, strlen(msg2)) < 0) {
+ goto fail;
+ }
+
+ close(client_fd);
+ return NULL;
+
+fail:
+ close(client_fd);
+ pthread_exit((void *)42);
+}
+
+int main() {
+ pthread_t worker, client;
+
+ signal(SIGUSR1, signal_handler);
+
+ server_fd = socket(AF_INET, SOCK_STREAM, 0);
+ struct sockaddr_in addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8082),
+ .sin_addr.s_addr = INADDR_ANY,
+ };
+ bind(server_fd, (struct sockaddr*)&addr, sizeof(addr));
+ listen(server_fd, SOMAXCONN);
+
+ epoll_fd = epoll_create1(0);
+ if (epoll_fd < 0) {
+ handle_error("epoll_create1 failed\n");
+ }
+
+ struct epoll_event ev;
+ ev.events = EPOLLIN | EPOLLET;
+ ev.data.fd = server_fd;
+ if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, server_fd, &ev) < 0) {
+ handle_error("epoll_ctl failed\n");
+ }
+
+ pthread_create(&worker, NULL, worker_thread, NULL);
+ pthread_create(&client, NULL, client_thread, NULL);
+
+ void *retval;
+ pthread_join(worker, NULL);
+ pthread_join(client, &retval);
+
+ close(server_fd);
+ close(epoll_fd);
+
+ if (retval != NULL) {
+ printf("signal recovery test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ return -1;
+ }
+
+ printf("signal recovery test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+
+ return 0;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/thundering_herd_test b/tools/testing/selftests/xcall_prefetch/thundering_herd_test
new file mode 100755
index 0000000000000000000000000000000000000000..8121561474f368c05f8108cddd9d80ac8b05379d
GIT binary patch
literal 21000
zcmeHPdvsgHnIB2Mu@pb#R}wo3M1+JU1j|n1gaA!&;)uwQ7l{LbLT_a0%2p#wM!L#_
zZ6ILWqT_lScS}oKprL15y1TFqr}P0mfYTHb*gnFZ)0Vch%@)GiOWFn#T9*d2zi;l$
z_0`3<-Lu_)_8d=+_09MD9`n32b7$`4&d|nd+%6ZB!Nb-t;&#;<NUIQd+eHMVm91hG
z_+7v*X4AlzaLkam8U#`!yzDNfUV(c+$*!IvlhC;a%p{dLBuaKp;Z&I+k(5;#JlQD}
z6}+83<}>spm2xw^fFWl#x=55yQmY-+&G==8-S`KKsVsLulwaDBJF@dO8v5SV#q=y?
z2tiU=pHwIGw@Uc4(`GV4kkoG1E$r-cy<x^Ar8FpPKds09H|cE^c8><Q8)l~+2FxUt
z>0J*ys+a$1kj=bJr03KQUQupIMfI|#WTJCrOH(q|m`tQ{`x^JHTG_a=C74YIm+>r6
zz5@88KDA-<4u*CcCQLS``=G%~e<Z6Da?=0!gEJm~;B#M_^L+2#{B4!rJ@)mBKOZF>
z$~W1N4h8Zjx)|pvej)xy$Ec6HI8GRam$V=D7_rHJ7Xq%CMD!&Gd>#@COrpQpL4TJ6
zKFa}r-T~k1fdAA1zs&)^*#TeUfM4ZMUTT-g>h04G_yGqz>44wsfPcXO4?E!79q_L^
z;1@XH*E-Zg+(G}_4tSpf{z(V?at9pQVe|3#zM!hneGxUDNJWx~+cnk`NhZ@#7LTU%
zB#Wj~DJ`lqRmIaBRkL~|qpLlUM2cn8(cPNPwBB?wsYaoi?e2-_tT(4;DcS{DG?~t7
z#Kd%#O=?;%>rA9#tXof~lKeL-%=bnT(CF?VH}Q04H%lh6x|U**XjJQ^#I;N&l~$3h
zh@MENn6?l4BIS%0(Y2+}LEfUf)oAx_H6BSMS#Kth(&O;d8Kp62CEKvEeO;TnEO><(
zTaJ-PqAg}@S#X6JU*5vh_Kr<zOv`9pl&4I`rnY1{rFBF)lNu83>Pe?Wt*D0Tq>3~G
zc`)L5_`ecCJsA58OfeBdgV1RvX0(_K+P^|nj>`>+L<NmtBLd4bBrpRjY)tTVTwcQ7
z6MSwq$vw=AjzB)182Su`KR2tRj)5TOS2?e>(qKzL&YuQn48n+eTMa<!OaA4n4V=bS
z;hF=dEVvxwNibr;Q6Mv%wczz8ihNpdIcAf%O5ml4TgUr)3r_Qc3;_$y*EK@0$bwTD
zWN5bFl!gqeEV!%-lC@fJu{7c)VGBN8Isx5k!Nn4cOLtoEa*O^h3tnl#yDhlig7;c*
z*@sBH&w^K5^bcBa>$rWd1s6+PZgt3l%dSI$`z`nki~qwGe5M8ess*PxPlh8Fyg`DX
z-?rehE%>knpJTyKSa7*ECh<uNPGkC1n5u!P8knkqzg7cp`7eAY+;_$s9#DSP#8|k0
zSa%mrhWozfJ;qH7D}EkiY^<>G7a;z5jP$!nGB)}jg+k#F=V_uG8-2;-X#yJ?J!<ka
zVUCSHZt^sdjg3BR@-%^sjSiVSO<ZH6cbPm*SYxBNnLJHYW1|t1rwM9o^m>!0iD_(f
zt;y4bG&Z`_<Y^)r8@<TnY2qFmtu}d@kj6$`CQlR5*yx+@$@0<!gz}p_O*|;S$<u^`
z@|!$OG$_Bx(*%R^n><Y{D8I?mgo5&$JWV7hzsb{r0_B%HTBnh>&U(h%2mFdgYOM*r
z(Z(;d@fX<m88*Jc#w#}dU2Jn$(|g;-|JKHzw(-BT@jtflKd|x7+4!ez{5Nd;V>bTF
zHvT~yf1iyXwDJ8m{(z0oS^1^EZO^~-;c)&p;l9_-ZtVyy9bWoEcyRR@JSK%1+o5?b
z9`w(<2aSpcaB%g0AmKqJL*$BaeFh%Ql@!OL=_{P_&pSwZ#{`9bJJ(;aj>zKo!uhk|
zqrba4e01Csc0C_{={>y;4iw?QTR0Wx?Ii8#`8~Lr#4NXDN4RhGZ<Zh$&Y#xH!vm{d
z2Q%`ycMFA)7#@b_m0yB)-3nVXeX<|j3n4{zz%G2(nPKkX=`hf6{u?_vxo;OIgWVt-
z^ZmV?4DJKDXIKyT7l#h|7jHV`U%cb6fAOtH{EM|=|KgsL{>8ad{>2B*h6nl$Z_lH=
z*W+=f*G)E(M$Vq4!DnP4o&_@peP;ss184dUoMCs)g#H5PkDNPSC~%|E&q9A7bf$0E
z6}~^5KR)siI0@%N<Keyo<1AMTgK9E3CJo+591oqN<lb06u;W}f`rUA1xGNryhmVc~
zj*h$YKRNo|yv1kpNAo9+o^rcRxQ6pDEe10fZXO6h{bYCmzFjBtFWy_#7dqzxcva}k
zN1s3zCWOzU%AxkcF-sYmW8s04g^Q3d<!<S4_;~0PWdn4CXdJwoJ$q;#GJ69u8_$P+
zLzQvoNH@5A=(VRv>lvz^XK6qliJ+kQ&@17=O{WGzuRKMASUCSf)WA6OfrJNkjK{)D
z>Uf&EGV<o13x%Q_QLQ4|hF==f^T&;L_!cztq4NWw^9R50&3_j<&(IJr#rH#e$l~d)
zGgTPz-&ef;X6V5TCG1}%qVeM#mE}wUj_3QAfjsq1<bWshEZL0IQlb0Lzk{OiUn7?!
zLJ41oK{(%EPh^0T<0N7BDq6#xFsKdm(=SZVqi2N&2Ptm`W~n&U1fQXoQfM~<Io^L3
zxghtW^maP(GhqG0{(gF&H1hfgkbHkReo@o~Af$Y}|1vX17_<+HT=Xv@)xkl62ktYn
zN7lS?k?LoWUU={utt94dpBzEuJQagiNdF1ae18>$eNWSGAy-YK1}0IX_101I^WqlO
z*_XIk9XF$2wr{qmyR&`FHPBBOyq7`kjp~tm{sbqiZ@dg0XCK9RJ|KSsj8W>lpxMXk
z#?|*URgusC_rFH%8c%Q^03$!t9rOJqa6iC*;p8iDa=iZ>RE(M$7qK@M8Ls2t`-k_J
zkGwl>WMjJC(8u*%ef^}26p8rm_|Y4#L!uZ1EZ^@%DuSi4;8$e+{_gW}ULesSW`pT_
znhagJOTvRQYOy*A53Z=@WOWsYQH+0wFCKei0knRLH4U`<hE}Di^(bkfO^}OC^z@a>
zr!Nb^3&;3;&evz=ii~PtDooYDR1Hkkz*G%P)xh6Y11_=KyfDkAr*b`=S|*Uyarn>`
zNNTAry*rRd?ZL@P%q}&~Spsxep~Wl*Ap)7s=6tBR2S3Y~^)S6Vm%<qYIqlXmv4E~+
z^}xbxdiTO?kQA3Mb<{EZb3MFy%<){c6~(33ef{@%a{#S-vru>xbOGr1K%W>Z6q2A1
zzEvo^0y^(pp)d~mDrh~HRJpecg;lf=1KkNK_j+BoZ)2`~RjxVZrQSmVr~TDd_`3v@
ztuLhoGroCXtOb7~zbh0DLyuKfT~k?qt-oxq_aM7^_LY||Uoami_j?QIuCs*#HzW{&
z($n#`6F8+KLp>s&z~7Td?`{G^l~o^ew^h(q2<79e_?w3^Q5j8{`#Z?3AwL25804QS
zlIKnN2=EoCgKLZAYfU+wtEiB-(7Ilx?OEdC3S=`CrfOiS2BvCYss^TNV5$bDYGA4c
zrfT5-aSfQ?2Z<K|xfG{wlqi%N#Qb2XLhy&h#~bn+4*A`Y{6+)IaUNz1D!)IXH9Q3=
zfBU^cn)oBM-bRq$@C?&}A3+fIvXIMfZDJy$IHKTz-Ww=bzfB=tn6dFS#7%rtw3Chk
z5Ja&VHX?bD->TdzKK7CL36Wu$?_r@YzX_7*%Ws*a9=1n$`H)=>VV{@t-9iC7o>I;|
z;&q7g3xph-teltS5Xt_Z5&2!U-C?tMS!)$^tDw6C?G^N(poauKEa(wIhXp+;=qW+Z
z3d+RCN>zde1Z@_yRnV=1?h>?D(1U^=67;a3M+CK(>#y<NRzqV$Tica^MLRlkDLofh
z+8kUFY;Ihd<LuHqmMsf5w=5Pgy9^daZ!+4fUG%9NWM8(Wxe9m*$GomZ=ojTj!2AOm
zcrrt`xAc$DahH^y2l05_F7Nk=cbBe1nr_#$A979!z(>jL`0*^7yB<U-QSjv?E9oZa
z(wQwFZm%)|o05b0@iflC$u%pv1<888(x4$e&HErJxu*RX9!q)LtGr5ycuU6sm3)*8
z8tQH$@)7!(U6&+sH#wbCcPHZB82pu%P-@D>(`aA8*N?c%_bTPm_f2x+`!67^z9(UI
za5}Fl*Ys9E%su^5A|<{zA@cf;BVINA^8^LTro$4Us_Zu7K?syB=KyOhdmP#b2U+=U
zvQswt?}KthubyGbX5Up1Rm5XV*-}b{tjH~2#+0q)$9Q~Y3sbHy{}JM>gdTKdn}_mT
z>4T$krNjFI82_szxPe<R|7u8-8>=XV66QSw&M57)`e`%4_%<MWF5e$u;`TiRz~lQl
zsrq)1oi7jRG~aWGPcIvU4vh)Z=Yj<-ISEoamp5MJb|_YPpYUD_nZFW@_nQj&XZ|bk
z>;2Yr61Z6vwbIRqR#RhEu#!E9`!1|G2CmZ06Q1Y23z&Zf2`=)JF0xYskG{XF`4*`i
zprm|ndw)b~Uk2j)qe$xKWHat3d$*si#`ykJ7Y9?~e~BdLYstjRs#e43*NE~=l%gN~
zBY>JHe%u!;RO!3Lhk<-g1-$El3rZNPeFQe{1wPX744uu@E<{e;3+fF1e6ChOlJ14|
zgHZDf9o|zLBmE^p|4gp7f#jD7emqx8=V$K5>Ezopbnl+pcS!$cAwQR^%~FnT75r<t
zy6s}DZ-yO(^GJV2g1J{z8d*4%o0*o=fl!&D?P2a!frr6*hCaQg_Eng<TLTyKB#-Q=
z9iSxFRvY#QMHboxf6pGqW<DV%idI-spaefG5**3VQ%J^Dl)`d&<#ifmvo0ma7f!oK
z)a13?mTEE$rF!&l_l2{`&^>fZ?HSm*=kap7hmx!&NcCF7TjG;qdgQxfP<K7>HP{<9
zUCV3QJ+yTOxoZ&i8(G6fQk-A<S&)AdL)-Tdr{H?PuP`?IBBbb=KVN2mOBR=rfqSTX
z<^qxE4#E*oWLFa}vU@1T*c`e7<eEE8j(&F=TJSyl6+~Tg=TYbK41N0!tQ}m{u7#Dg
zWuD48mDR4A(kir%djTseTLTD6eninhXEIOam1S3zT~XGKPmUC!fYEsxDG*kA2_xby
zad|4&lo4j=y8!wY!F(?KOy?04u#88r6e*tt{j#zN-HHl~$rDLc*4pHL$jz**g3l_K
ztG$*|slEs~XaZ6bbY0yrp+v=Mt^drr22!eRv6#Ejb?VAc12v^2n*o`bG|6TfGR9_E
zJ$|5}$YVV|QZKS<C{}K-EmEHibu<5z$edzzQyIIjyl3yHwqn1hhI9S7vI4&}a?p{#
zE6AF1*-TR+6;0-1S`%&(sViH=wW6+6uBkJDO9y{hCA;6Ik<#=8{;;2|Cz9D<HzhQ&
z&92fmyGq;a!6@}AeSfb;O2}hYk70gn%;6_xAp9l*qUeprtq7IWg*L89L}Ibb1gGgn
zJVDlYh8RXGpIi1}&s>+HxNoiXeo=9KN%5Xmd|gV_ca%#XR_4SN?@tw9j@Zh*ilQqQ
zVsiI1DGfy2m)0nLitIG_6G|;{L1jLXMnwT}U8|IROsPAel&?`-*Oj=HfajLrQ%e15
zWrp`=rTzhB?k1)F3rgiWMe%ki<=&eV*J|ZLh^kKmc}#KPuYApGO8x6Fc$o}pZdU@{
zPbszD7nJH3p)>RXR4Tpm73CqN;wGhhr&8ai1m03A+)HLE_1<47RT!p~>LKL<?<}Rt
z`yHkFQ;$*lvvg$%WpJlbamx$J2M~38Iv+AJt$XI5P-Z-=C~qmg7nRB{a^Fo#`9sP)
zqfB#&=)Cmq4;jY2!c?jF*M*AmpQlkA?~96W2x+1U_i%!9n-bT}(_V9zqN`=JY%VG9
zl*A%>MAcbn>z0ihZ``(d%eGCpoRZGyILQ&{rtKRH@s`b@?cpsQQg_|j&Ffj0meMk~
zl%g7^LAV}52RFD^gIhDIO8sW}GPtKpFF5!ykfkeSg6*5x_APDKscjp#gm#A74A0xv
zhj(mc*+dF=TY3`7{Z2iVXPK+wLJ!x3TimFjn>pGZErrK~t881(OT`mfzhT>26cE0t
zpBnPe&bEy^wzuC9VtP-nikm>pILo3-b%C~}mx~2#ps`2KrL@(&#EB@_NG967+PLW#
zXzU6!#v|GNsc3g5ol57jjk(lbTmWj+>GDh#LVjhZu{V>}amOf~X+%w>al|DB(PSjs
zEycL^13@%y;f=g*+0h{`3aQaF7TqkD$|kx}S}YLlj%19=+_rv`p}cilJBueHU0H@(
zJUF4FA5)*2*SJ;0>xyNK8sW9HdCTT?8__N-tLbVgo$AD8q}|l4*@#O0Mf8v&U)*qe
z==!Z|+pY_B&;=(I$ACr(+(y(n+Q{eyD_amv#ba6UmXSo1VeO6LUX+SymNz4uiss}U
zkEbUSgYVn5Oqw@rFFLQKz-BiNZQF)RS_$+EatRAkL>5pc(a*XgsaR5@`&a3V$T>8l
z{L+;wOvN2Bx|n5@xMN$0dXyOXP?p`=et6|sRYNy~Hg{|{m>bt#7ovVGG*vtx+{5~|
zwymtGJKdu-C7YX9wk%uKvZ^Va+`VFHbCaG<C$mj7GNbmJvRX1u@odw+DDJJPy%{a8
z=}~%jaSAl4l(0AXcTiRxdLMT|@(B#%6axGgGb!j~`t-hzg)}=v3YHK+obX{AzFgqu
z#(}VD2X(R8tg6)jD1Q`a(c@xRw$Uot66j@${G0nPLUu2x3%eL{KSi26g2-g~cPiI2
z+)o`dPGO}NgHGn>`&@q(v+oD|n48p^_mick5w2fv?yE@rJw)iUZ+n=73YiS2Gw6U_
z8GH@q=m5j+QfslW!@-Z{fbVs{^T4a%U$&P_h0daD+|^9(Z%O<!4t^eYz>hiLKXJfE
z9PoD>@G8^~<=<XE7w~$Mxt^ex0k3v9nD_mp<O;&6Wda65OBo7b;FGo2haB(}@GA8G
z`c`gk{?J=%4J7jaQMg1%vO?cp|91*~`#a-395>yXkuNylj|xBbH<n`#`aco+_BX88
z1#W+HDmeJ5!MHP7y)AISFL%Jh4mfStP&?Y|ts8j2td)t#-41>}?SMb(fIkg<{)AgI
zM*Ffg?s97UqVOvRKfmXAmATh-x3Hp@@5$<oZI5R3rNK1jpGapy)gxV)xAd%@i^s91
zpSaPh>OGjraHp4M-B?=fN~Sv_Ni~KA2^IjkeYgYN)0@<=Rtq*yu0eOF6KW)riR@P~
zmuB{}cqY=Lsj*y7&wiL#I81Q~y-3yJokLZx!Llr*hBmKPakF^+O`F$lYHx!xtiaSz
zSV+U`w=s3Y#x3jCZdA8ibItZphuX1r-Nq0s>=(9M<xOY0(`>s?ZOZ8G^Iy8~Ot-s>
zl=<cEB81-?FG5s}FLrn>A?f0K+NNfUaU<O1DJ#Yu?jnd^9xp=pE%PEo+zi)~CQ3KG
z(YUm(=U3Rl6yMxdW7)K7EOt-<TcCxPJT;fa0^Rsd%XCHgGOni=L1=hd%Xen8A_czO
zH*!KNeN&mTLf7C;fE+r!G8k9li!|-aPsgR0ad*DhmTu_V5nR+Sg6M925g?X#MVPAM
z9=z<EbU}X7TkrhNf03PN8RO2rDY=5b3z;nMghl@+L9vJ)A^zV46v0I+Rb%m7Bxk|w
z{vNz}fa)28cFPzR#9F481ygtt31UMbh*y$cEu-(ZK%Kb+{wou#-wmy`>)P=i)5W-Y
zH{MfNFt$I1Bn*lzWG>mGWwNv|wlXSY87&zh0}<=RyJwJ>D~M>YD-D(+SuM(fy0#B2
zjWN(p^Jgijb&FA@8?S68XZSFN7sEovkrZAB;mj~cH)TPLYdsjQfN7n%E@(zlT^Ixf
zn@GjeG9Kyd%wYdgNbujeXflo(EE>H328Pc6uw=p7)(Et@M?q5T;S~kawT6qq&{n*(
zUnT4%ZMG^Sj!nIyuo9frp5{dgk}fb<^H;8SBtYwUtG#@WkTf6_1-0AX2>cH?vy=Ik
z=bDnr^yRsxJ^vBdV^h#9|H~r(lF|td1<E7UowVnhZ{QR7BNLgvJV%vOo|{622YdbB
z29(YurM*0dlyr@-llhl=lHLJ1opDNDo^wjNOW51<FJMN;B2=f+{)8x?q{Bi{rf)Al
zZ90?vI-w`eaV3@KzGP2zX19MB7}bgNZ?0>^`bM5_Lxl%>`#%8GY9A1Gk{-5IxLh_#
z`iRYbSe#=@D)o%iCzf3jKVq{#DeNV+erroUq@AQs+U(`JUDB(~iXrO>dxJABc3I0W
z-=ie0kcxuZ>+d<>WG~yF1%#rY|14NZWcx|}2Z&hh9}O51Njs#Xp!W2C0o-cOE)t4@
z(t)it*wa4^AzhmmkFEJ0FaO^yyT0TleG|5Ri@mvT&<GGg>KWVwFY$LFpeB;(%lCQt
z|EQf6`KRZPg0z$E|1ZEuMcT{nCdP5GngV?vZ4J_1(rJ)e?OChPZZ@b)NBWR<k}rob
zVKROBo>L|4?fSOtuxgRMP?v6*v|nN(Mnu|6I$PM=)Yw(Rq1~^vllqGt>~{;p58^n<
z8tnEf9PA%iVOY_@pf%W7*5+UzzTB`nU_Mv|Z@1qf?Cs@z?g~TyCD||{6Vl#FZAoy=
z`{n+Z7(eC%rT0DAo^t-8{X1I{hJ70+%x`;OWx9rx_A(~7e`JH9akI_9#<KqgNsJ-j
literal 0
HcmV?d00001
diff --git a/tools/testing/selftests/xcall_prefetch/thundering_herd_test.c b/tools/testing/selftests/xcall_prefetch/thundering_herd_test.c
new file mode 100644
index 000000000000..bf98fcf94b6a
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/thundering_herd_test.c
@@ -0,0 +1,119 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/epoll.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <sys/wait.h>
+#include <string.h>
+#include <sys/ipc.h>
+#include <sys/shm.h>
+#include <fcntl.h>
+#include <errno.h>
+
+#include "./utils.h"
+
+#define TIMEOUT_MS 1000
+
+int create_client_connection() {
+ struct sockaddr_in addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8081),
+ .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
+ };
+
+ int fd = socket(AF_INET, SOCK_STREAM, 0);
+ connect(fd, (struct sockaddr *)&addr, sizeof(addr));
+ return fd;
+}
+
+void set_nonblocking(int fd) {
+ int flags = fcntl(fd, F_GETFL, 0);
+ fcntl(fd, F_SETFL, flags | O_NONBLOCK);
+}
+
+int main() {
+ int listen_fd, epoll_fd;
+ struct sockaddr_in addr = {
+ .sin_family = AF_INET,
+ .sin_port = htons(8081),
+ .sin_addr.s_addr = INADDR_ANY,
+ };
+
+ int shm_id = shmget(IPC_PRIVATE, sizeof(int), IPC_CREAT | 0666);
+ int tmp_cnt;
+ int *accept_count = (int *)shmat(shm_id, NULL, 0);
+ *accept_count = 0;
+
+ listen_fd = socket(AF_INET, SOCK_STREAM, 0);
+ set_nonblocking(listen_fd);
+ int reuse = 1;
+ setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
+ bind(listen_fd, (struct sockaddr *)&addr, sizeof(addr));
+ listen(listen_fd, SOMAXCONN);
+
+ for (int i = 0; i < NUM_THREADS; i++) {
+ if (fork() == 0) {
+ usleep(1000 * i);
+ epoll_fd = epoll_create1(0);
+ struct epoll_event ev = {
+ .events = EPOLLIN | EPOLLET,
+ .data.fd = listen_fd,
+ };
+ epoll_ctl(epoll_fd, EPOLL_CTL_ADD, listen_fd, &ev);
+
+ debug_printf("Worker %d waiting...\n", getpid());
+
+ struct epoll_event events[MAX_EVENTS];
+ int nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, TIMEOUT_MS);
+
+ if (nfds == -1) {
+ handle_error("epoll_wait failed\n");
+ }
+
+ debug_printf("Worker %d: epoll_wait returned %d events\n", getpid(), nfds);
+
+ int client_fd = accept(listen_fd, NULL, NULL);
+ if (client_fd >= 0) {
+ debug_printf("Worker %d accepted a connection!\n", getpid());
+ __sync_fetch_and_add(accept_count, 1);
+ close(client_fd);
+ } else if (errno != EAGAIN && errno != EWOULDBLOCK) {
+ debug_printf("accept failed\n");
+ }
+
+ close(epoll_fd);
+ exit(0);
+ }
+ }
+
+ sleep(1);
+
+ debug_printf("Parent creating client connection...\n");
+ int client_fd = create_client_connection();
+ sleep(1);
+ close(client_fd);
+
+ int waited = 0;
+ for (int i = 0; i < NUM_THREADS; i++) {
+ if (wait(NULL) < 0 && errno == ECHILD) {
+ break;
+ }
+ waited++;
+ }
+
+ tmp_cnt = *accept_count;
+ debug_printf("Total successful accepts: %d\n", tmp_cnt);
+
+ shmdt(accept_count);
+ shmctl(shm_id, IPC_RMID, NULL);
+ close(listen_fd);
+
+ if (tmp_cnt == 1) {
+ printf("thundering herd test %sok%s.\n", ANSI_COLOR_GREEN, ANSI_COLOR_RESET);
+ return 0;
+ } else {
+ printf("thundering herd test %sfailed%s.\n", ANSI_COLOR_RED, ANSI_COLOR_RESET);
+ return -1;
+ }
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/utils.h b/tools/testing/selftests/xcall_prefetch/utils.h
new file mode 100644
index 000000000000..58959c564119
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/utils.h
@@ -0,0 +1,54 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <netinet/in.h>
+
+#define ANSI_COLOR_GREEN "\x1b[32m"
+#define ANSI_COLOR_RED "\x1b[31m"
+#define ANSI_COLOR_RESET "\x1b[0m"
+
+#define PORT 8080
+#define BUFFER_SIZE 4097
+#define MAX_EVENTS 100
+#define MAX_MSGS 4
+#define NUM_THREADS 4
+
+#ifdef DEBUG
+#define debug_printf(fmt, ...) (printf(fmt, ##__VA_ARGS__))
+#else
+#define debug_printf(fmt, ...) (void)fmt
+#endif
+
+struct client_info {
+ int fd;
+ int id;
+ struct sockaddr_in addr;
+};
+
+void handle_error(const char *format, ...)
+{
+ printf("%s", format);
+ exit(EXIT_FAILURE);
+}
+
+char* generate_number_string(int length)
+{
+ if (length <= 0) {
+ printf("\nnumber string length invalid\n");
+ return NULL;
+ }
+
+ char* result = (char*)malloc((length + 1) * sizeof(char));
+ if (result == NULL) {
+ printf("\nnumber string malloc failed\n");
+ return NULL;
+ }
+
+ for (int i = 0; i < length; i++) {
+ result[i] = '0' + (i % 10);
+ }
+
+ result[length] = '\0';
+
+ return result;
+}
\ No newline at end of file
diff --git a/tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh b/tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh
new file mode 100755
index 000000000000..e9a990dac69a
--- /dev/null
+++ b/tools/testing/selftests/xcall_prefetch/xcall_prefetch_test.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+RED="\033[31m"
+GREEN="\033[32m"
+RESET="\033[0m"
+
+make clean
+make
+
+if [ -e "/proc/$$/xcall" ]; then
+ echo 22 > "/proc/$$/xcall"
+ echo @22 > "/proc/$$/xcall"
+ echo "enable xcall epoll prefetch, pid is $$."
+else
+ echo "Warnning: not enable xcall."
+fi
+
+./echo_test
+sleep 1
+
+./multi_write_test
+sleep 1
+
+./thundering_herd_test
+sleep 1
+
+./mulit_close_test
+sleep 1
+
+./signal_recovery_test
+sleep 1
+
+if [ $? -eq 0 ]; then
+ echo -e "${GREEN}tests passed successfully.${RESET}"
+ exit 0
+else
+ echo -e "${RED}tests failed.${RESET}"
+ exit 1
+fi
\ No newline at end of file
--
2.34.1
2
1
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
tools/lib/perf/include/perf/bpf_perf.h | 1 +
tools/perf/builtin-stat.c | 1 +
tools/perf/tests/shell/stat_bpf_counters.sh | 79 ++++++++++-----
tools/perf/util/bpf_counter.c | 61 +++++++++---
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 98 +++++++++++++++++--
tools/perf/util/bpf_skel/bperf_u.h | 5 +
tools/perf/util/target.h | 1 +
7 files changed, 198 insertions(+), 48 deletions(-)
--
2.34.1
2
7

[openeuler:OLK-5.10] BUILD REGRESSION a6f78a2e772d1f32d57476a1ab4d5b98733eefbb
by kernel test robot 09 Jun '25
by kernel test robot 09 Jun '25
09 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-5.10
branch HEAD: a6f78a2e772d1f32d57476a1ab4d5b98733eefbb !16625 Backport SMC-D feature
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505100150.DG1QGwH3-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505211008.Lhrh17Cr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280024.8UbNlKSa-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280046.3lWnWdOg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280545.IP3aIukn-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280648.AMUiWr41-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505301434.xq8uzhGR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506042153.UZ29KeGA-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202505291536.8a44hWAc-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202506011207.GF5fjCi8-lkp@intel.com
drivers/irqchip/irq-gic-v3-its.c:524:6: warning: no previous prototype for 'build_devid_pools' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/cqm/cqm_cmd.c:158:5: warning: no previous prototype for function 'cqm3_lb_send_cmd_box_async' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_dbg.c:689:5: warning: variable 'cos_num' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/huawei/hinic3/hinic3_ethtool_stats.c:342:5: warning: no previous prototype for function 'hinic3_rx_queue_stat_pack' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_ethtool_stats.c:357:5: warning: no previous prototype for function 'hinic3_tx_queue_stat_pack' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:1678:5: warning: no previous prototype for function 'set_fecparam' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:1706:5: warning: no previous prototype for function 'get_fecparam' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:623:6: warning: no previous prototype for function 'print_port_info' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:802:6: warning: no previous prototype for function 'hinic3_notify_vf_bond_status' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:832:6: warning: no previous prototype for function 'hinic3_notify_all_vfs_bond_changed' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_main.c:1211:6: warning: no previous prototype for function 'hinic3_need_proc_link_event' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_main.c:1258:6: warning: no previous prototype for function 'hinic3_need_proc_bond_event' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_netdev_ops.c:59:6: warning: variable 'size' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_dev_mgmt.c:618:6: warning: no previous prototype for function 'hinic3_write_oshr_info' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hw_api.c:95: warning: Function parameter or member 'instance' not described in 'hinic3_sm_ctr_rd16_clear'
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hw_comm.c:1671:6: warning: no previous prototype for function 'hinic3_is_optical_module_mode' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hwif.c:865:5: warning: no previous prototype for function 'hinic3_global_func_id_hw' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:1796:6: warning: no previous prototype for function 'hinic3_set_func_state' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:1822:6: warning: no previous prototype for function 'slave_host_mgmt_work' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:525:5: warning: no previous prototype for function 'hinic3_pdev_is_virtfn' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:785:5: warning: no previous prototype for function '__set_vroce_func_state' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:826:6: warning: no previous prototype for function 'slave_host_mgmt_vroce_work' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:834:7: warning: no previous prototype for function 'hinic3_get_roce_uld_by_pdev' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_sriov.c:176:5: warning: no previous prototype for function 'hinic3_pci_sriov_check' [-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:403:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/mellanox/mlxsw/spectrum_router.o: warning: objtool: mlxsw_sp_neigh_entry_update()+0x26f: unreachable instruction
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:546:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:900:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:946:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1060:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:160:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:201:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:29:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:51:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:77:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:132:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:244:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:404:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:86:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:884:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1582:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1664:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1633:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:148:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:37:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:89:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:308:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:786:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:26:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:29:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:610:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1059:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2020:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2041:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2101:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:212:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2464:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2828:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2937:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3024:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3280:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3335:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:336:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3479:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:352:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:364:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3822:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:750:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:877:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:893:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1174:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1232:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1313:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:579:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:679:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:731:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:989:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:155:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:205:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2701:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:364:5: error: no previous prototype for function 'ps3_recovery_state_transfer' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:73:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:83:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:89:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:408:5: error: no previous prototype for function 'ps3_sas_update_phy_info' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1111:5: error: no previous prototype for function 'ps3_wait_for_outstanding_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:877:6: error: no previous prototype for function 'ps3_set_task_manager_busy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1959:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
kismet: WARNING: unmet direct dependencies detected for BPF_NET_GLOBAL_PROG when selected by SCHED_TASK_RELATIONSHIP
kismet: WARNING: unmet direct dependencies detected for HARDLOCKUP_DETECTOR when selected by SDEI_WATCHDOG
kismet: WARNING: unmet direct dependencies detected for PCI_IOV when selected by CRYPTO_DEV_HISI_MIGRATION
kismet: WARNING: unmet direct dependencies detected for PGP_KEY_PARSER when selected by PGP_PRELOAD
kismet: WARNING: unmet direct dependencies detected for PGP_PRELOAD when selected by PGP_PRELOAD_PUBLIC_KEYS
kismet: WARNING: unmet direct dependencies detected for SERIAL_EARLYCON when selected by SERIAL_IMX_EARLYCON
kismet: WARNING: unmet direct dependencies detected for TASK_PLACEMENT_BY_CPU_RANGE when selected by BPF_SCHED
llvm-objcopy: error: 'arch/x86/entry/vdso/vdso64.so.dbg': No such file or directory
llvm-objdump: error: 'arch/x86/entry/vdso/vdso64.so.dbg': No such file or directory
mm/damon/core-test.h:284:2: warning: comparison of distinct pointer types ('typeof (__left) *' (aka 'unsigned int *') and 'typeof (__right) *' (aka 'int *')) [-Wcompare-distinct-pointer-types]
mm/hugetlb.c:2223:9: warning: variable 'gfp' set but not used [-Wunused-but-set-variable]
mm/khugepaged.c:1703: warning: Function parameter or member 'reliable' not described in 'collapse_file'
mm/page_alloc.c: linux/vmalloc.h is included more than once.
mm/page_alloc.c:3040:6: warning: no previous prototype for '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:3040:6: warning: no previous prototype for function '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:6794:23: warning: no previous prototype for function 'arch_memmap_init' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for function '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/process_vm_access.c: linux/compat.h is included more than once.
mm/slub.o: warning: objtool: kmem_cache_free()+0x43a: unreachable instruction
Unverified Error/Warning (likely false positive, kindly check if interested):
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-conn-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-filters: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/idle-states.yaml: idle-state-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,mode: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,slew-percent: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/display/allwinner,sun4i-a10-tcon.yaml: allwinner,tcon-channel: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml: adi,reference-select: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: label: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,avg-samples: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,decimation: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,hw-settle-time: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,pre-scaling: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-clk-src: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-names: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channels: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,filter-order: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,datarate: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,gain: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml: adi,ch-func: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,cold-junction-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-rtd: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-steinhart: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermistor: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermocouple: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,excitation-current-nanoamp: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,ideal-factor-value: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,number-of-wires: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rsense-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rtd-curve: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,sensor-type: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml: affinity: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp50xx.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: chan-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: led-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: max-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: color: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: function: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: rohm,led-compatible: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/imx219.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/ov8856.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-bus-width: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAH: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAS: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAW: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tBP: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tSTRV: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml: slew-rate: Missing additionalProperties/unevaluatedProperties constraint
drivers/irqchip/irq-gic-v3-its.c: linux/pci.h is included more than once.
drivers/net/ethernet/huawei/hinic3/ossl_knl_linux.h: net/devlink.h is included more than once.
drivers/net/ethernet/mellanox/mlx5/core/lib/fs_chains.o: warning: objtool: mlx5_chains_put_table()+0x38f: unreachable instruction
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x0-in-asm
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x1-in-asm
| `-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x2-in-asm
|-- arm64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BPF_NET_GLOBAL_PROG-when-selected-by-SCHED_TASK_RELATIONSHIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DRM_PANEL_BRIDGE-when-selected-by-DRM_TOSHIBA_TC358762
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-HARDLOCKUP_DETECTOR-when-selected-by-SDEI_WATCHDOG
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PCI_IOV-when-selected-by-CRYPTO_DEV_HISI_MIGRATION
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_KEY_PARSER-when-selected-by-PGP_PRELOAD
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_PRELOAD-when-selected-by-PGP_PRELOAD_PUBLIC_KEYS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-SERIAL_EARLYCON-when-selected-by-SERIAL_IMX_EARLYCON
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-TASK_PLACEMENT_BY_CPU_RANGE-when-selected-by-BPF_SCHED
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-defconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-002-20250608
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-004-20250608
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-051-20250608
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-052-20250608
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-053-20250608
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-054-20250608
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-055-20250608
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- x86_64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:linux-pci.h-is-included-more-than-once.
| |-- drivers-net-ethernet-huawei-hinic3-ossl_knl_linux.h:net-devlink.h-is-included-more-than-once.
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BPF_NET_GLOBAL_PROG-when-selected-by-SCHED_TASK_RELATIONSHIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DRM_PANEL_BRIDGE-when-selected-by-DRM_TOSHIBA_TC358762
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_KEY_PARSER-when-selected-by-PGP_PRELOAD
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_PRELOAD-when-selected-by-PGP_PRELOAD_PUBLIC_KEYS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-SERIAL_EARLYCON-when-selected-by-SERIAL_IMX_EARLYCON
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-TASK_PLACEMENT_BY_CPU_RANGE-when-selected-by-BPF_SCHED
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-page_alloc.c:linux-vmalloc.h-is-included-more-than-once.
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
| `-- mm-process_vm_access.c:linux-compat.h-is-included-more-than-once.
|-- x86_64-allyesconfig
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_cmd.c:warning:no-previous-prototype-for-function-cqm3_lb_send_cmd_box_async
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_dbg.c:warning:variable-cos_num-set-but-not-used
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_ethtool_stats.c:warning:no-previous-prototype-for-function-hinic3_rx_queue_stat_pack
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_ethtool_stats.c:warning:no-previous-prototype-for-function-hinic3_tx_queue_stat_pack
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-get_fecparam
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-hinic3_notify_all_vfs_bond_changed
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-hinic3_notify_vf_bond_status
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-print_port_info
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-set_fecparam
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_main.c:warning:no-previous-prototype-for-function-hinic3_need_proc_bond_event
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_main.c:warning:no-previous-prototype-for-function-hinic3_need_proc_link_event
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_netdev_ops.c:warning:variable-size-set-but-not-used
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_dev_mgmt.c:warning:no-previous-prototype-for-function-hinic3_write_oshr_info
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hw_api.c:warning:Function-parameter-or-member-instance-not-described-in-hinic3_sm_ctr_rd16_clear
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hw_comm.c:warning:no-previous-prototype-for-function-hinic3_is_optical_module_mode
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:no-previous-prototype-for-function-hinic3_global_func_id_hw
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-__set_vroce_func_state
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-hinic3_get_roce_uld_by_pdev
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-hinic3_pdev_is_virtfn
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-hinic3_set_func_state
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-slave_host_mgmt_vroce_work
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-slave_host_mgmt_work
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_sriov.c:warning:no-previous-prototype-for-function-hinic3_pci_sriov_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-001-20250608
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-002-20250608
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-003-20250608
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-004-20250608
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-005-20250608
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-006-20250608
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-defconfig
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-101-20250608
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-randconfig-102-20250608
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-randconfig-103-20250608
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-104-20250608
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-161-20250608
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-r122-20250608
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
`-- x86_64-rhel-9.4-rust
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-mellanox-mlx5-core-lib-fs_chains.o:warning:objtool:mlx5_chains_put_table:unreachable-instruction
|-- drivers-net-ethernet-mellanox-mlxsw-spectrum_router.o:warning:objtool:mlxsw_sp_neigh_entry_update:unreachable-instruction
|-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
|-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
`-- mm-slub.o:warning:objtool:kmem_cache_free:unreachable-instruction
elapsed time: 724m
configs tested: 17
configs skipped: 128
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 defconfig gcc-15.1.0
arm64 randconfig-001-20250608 clang-21
arm64 randconfig-002-20250608 gcc-12.3.0
arm64 randconfig-003-20250608 clang-21
arm64 randconfig-004-20250608 gcc-13.3.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250608 gcc-11
x86_64 buildonly-randconfig-002-20250608 clang-20
x86_64 buildonly-randconfig-003-20250608 gcc-12
x86_64 buildonly-randconfig-004-20250608 gcc-12
x86_64 buildonly-randconfig-005-20250608 clang-20
x86_64 buildonly-randconfig-006-20250608 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:openEuler-1.0-LTS] BUILD REGRESSION 31245821cb3d54a27ff007515f57af84d6842846
by kernel test robot 07 Jun '25
by kernel test robot 07 Jun '25
07 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
branch HEAD: 31245821cb3d54a27ff007515f57af84d6842846 !16577 capabilities: fix undefined behavior in bit shift for CAP_TO_MASK
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505160438.vuslIGAx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505180330.wT5fsdK9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201642.9kWf73yF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201731.rOzzhiIH-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201910.3QGTFYPj-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505202028.GvFwJHdW-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505202138.LT7VPPBg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061449.nBm6oAvj-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061633.Zsp5yfyi-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061637.CVNqsEqf-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061755.yar1Fr9d-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506071856.LxaA5NHF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506071951.jzYnVjgu-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202506071711.nmLl67SN-lkp@intel.com
/kbuild/src/consumer/Makefile:626: include/config/auto.conf.cmd: No such file or directory
arch/x86/kernel/fpu/core.c:175:14: warning: mixing declarations and code is a C99 extension [-Wdeclaration-after-statement]
drivers/gpu/drm/amd/amdgpu/amdgpu_ids.o: warning: objtool: amdgpu_vmid_grab()+0xd3e: unreachable instruction
drivers/media/i2c/adv7511-v4l2.o: warning: objtool: adv7511_set_fmt()+0x805: unreachable instruction
drivers/staging/comedi/drivers/ni_labpc_common.o: warning: objtool: labpc_ai_check_chanlist()+0x59: can't find switch jump table
drivers/usb/typec/tps6598x.o: warning: objtool: tps6598x_probe()+0x1ed: can't find switch jump table
fs/debugfs/file.o: warning: objtool: full_proxy_open()+0x55a: unreachable instruction
fs/ext4/mballoc.o: warning: objtool: ext4_mb_complex_scan_group()+0x11a4: unreachable instruction
include/linux/list.h:63:20: warning: storing the address of local variable 'ticket' in '((struct list_head *)((char *)space_info + 8))[9].prev' [-Wdangling-pointer=]
kernel/hung_task.c:148:7: error: use of undeclared identifier 'sysctl_hung_task_all_cpu_backtrace'
kernel/livepatch/core.c:1013:12: warning: no previous prototype for function 'arch_klp_func_can_patch' [-Wmissing-prototypes]
kernel/sched/debug.c:990:17: error: no member named 'nr_wakeups_preferred_cpus' in 'struct dyn_affinity_stats'
kernel/sched/debug.c:991:17: error: no member named 'nr_wakeups_force_preferred_cpus' in 'struct dyn_affinity_stats'
kismet: WARNING: unmet direct dependencies detected for CRYPTO_MICHAEL_MIC when selected by RTLLIB_CRYPTO_TKIP
kismet: WARNING: unmet direct dependencies detected for FB_BACKLIGHT when selected by DRM_NOUVEAU
kismet: WARNING: unmet direct dependencies detected for IIO_BUFFER_CB when selected by TOUCHSCREEN_ADC
kismet: WARNING: unmet direct dependencies detected for LEDS_CLASS when selected by FUJITSU_LAPTOP
kismet: WARNING: unmet direct dependencies detected for LEDS_TRIGGERS when selected by BT_LEDS
kismet: WARNING: unmet direct dependencies detected for LEDS_TRIGGERS when selected by IWLWIFI_LEDS
kismet: WARNING: unmet direct dependencies detected for LEDS_TRIGGERS when selected by MAC80211_LEDS
kismet: WARNING: unmet direct dependencies detected for PINCTRL_EXYNOS when selected by ARCH_EXYNOS
kismet: WARNING: unmet direct dependencies detected for UACCE when selected by CRYPTO_DEV_HISI_QM
kismet: WARNING: unmet direct dependencies detected for VIDEO_ADV7180 when selected by STA2X11_VIP
ld.lld: error: undefined symbol: init_net
mm/debug.c:143:21: warning: more '%' conversions than data arguments [-Wformat-insufficient-args]
mm/debug.c:174:3: warning: format specifies type 'void *' but the argument has type 'int' [-Wformat]
mm/debug.c:175:18: warning: format specifies type 'unsigned long' but the argument has type 'const unsigned long *' [-Wformat]
mm/debug.c:175:3: warning: format specifies type 'int' but the argument has type 'unsigned long' [-Wformat]
mm/huge_memory.c:2092:15: warning: variable 'orig_pud' set but not used [-Wunused-but-set-variable]
mm/huge_memory.c:2092:8: warning: variable 'orig_pud' set but not used [-Wunused-but-set-variable]
mm/hugetlb.c:1370:6: warning: no previous prototype for function 'free_huge_page_to_dhugetlb_pool' [-Wmissing-prototypes]
mm/hugetlb.c:1432:6: warning: no previous prototype for 'free_huge_page_to_dhugetlb_pool' [-Wmissing-prototypes]
mm/khugepaged.c:1387: warning: Function parameter or member 'hpage' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'mapping' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'mm' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'node' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'reliable' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'start' not described in 'collapse_shmem'
mm/maccess.c:85:6: warning: no previous prototype for '__probe_user_read' [-Wmissing-prototypes]
mm/memcontrol.c:5000:6: warning: no previous prototype for 'dhugetlb_pool_is_free' [-Wmissing-prototypes]
mm/memcontrol.c:5000:6: warning: no previous prototype for function 'dhugetlb_pool_is_free' [-Wmissing-prototypes]
mm/memcontrol.c:6728: warning: bad line: | 0, otherwise.
mm/memory.c:4803:3: warning: cast from 'int (*)(unsigned long, unsigned long, struct cgp_args *)' to 'ktask_thread_func' (aka 'int (*)(void *, void *, void *)') converts to incompatible function type [-Wcast-function-type-mismatch]
mm/memory_hotplug.c:481:16: warning: variable 'start_pfn' set but not used [-Wunused-but-set-variable]
mm/memory_hotplug.c:481:23: warning: variable 'start_pfn' set but not used [-Wunused-but-set-variable]
mm/memory_hotplug.c:925:16: warning: unused variable 'start_pfn' [-Wunused-variable]
mm/memory_hotplug.c:925:23: warning: unused variable 'start_pfn' [-Wunused-variable]
mm/memory_hotplug.c:926:16: warning: unused variable 'start_pfn' [-Wunused-variable]
mm/memory_hotplug.c:970:13: warning: 'rollback_node_hotadd' defined but not used [-Wunused-function]
mm/page_alloc.c:3123: warning: Function parameter or member 'mt' not described in '__putback_isolated_page'
mm/rmap.c:916:17: warning: variable 'cstart' set but not used [-Wunused-but-set-variable]
mm/rmap.c:916:31: warning: variable 'cstart' set but not used [-Wunused-but-set-variable]
mm/slab_common.c:1452:37: warning: 'proc_slabinfo_operations' defined but not used [-Wunused-const-variable=]
mm/sparse.o: warning: objtool: missing symbol for section .init.text
mm/vmalloc.c:231:16: warning: variable 'start' set but not used [-Wunused-but-set-variable]
mm/vmalloc.c:231:23: warning: variable 'start' set but not used [-Wunused-but-set-variable]
mm/vmscan.c:3257:21: error: implicit declaration of function 'kernel_swap_enabled' [-Werror,-Wimplicit-function-declaration]
Unverified Error/Warning (likely false positive, kindly check if interested):
block/blk-throttle.c:2306:1-7: preceding lock on line 2212
drivers/staging/xgifb/vb_setmode.o: warning: objtool: XGISetModeNew() falls through to next function XGI_SetCRT1Group()
mm/hugetlb.c: linux/share_pool.h is included more than once.
mm/swap.c: linux/memremap.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-allnoconfig
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_AES-when-selected-by-RTLLIB_CRYPTO_CCMP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_WEP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_MICHAEL_MIC-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-FB_BACKLIGHT-when-selected-by-DRM_NOUVEAU
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-IIO_BUFFER_CB-when-selected-by-TOUCHSCREEN_ADC
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PINCTRL_EXYNOS-when-selected-by-ARCH_EXYNOS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-UACCE-when-selected-by-CRYPTO_DEV_HISI_QM
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-001-20250607
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-002-20250607
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-003-20250607
| |-- include-linux-list.h:warning:storing-the-address-of-local-variable-ticket-in-((struct-list_head-)((char-)space_info-))-.prev
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-004-20250607
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-allmodconfig
| `-- arch-x86-kernel-fpu-core.c:warning:mixing-declarations-and-code-is-a-C99-extension
|-- x86_64-allnoconfig
| |-- Makefile:include-config-auto.conf.cmd:No-such-file-or-directory
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BACKLIGHT_CLASS_DEVICE-when-selected-by-DRM_GMA500
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_AES-when-selected-by-RTLLIB_CRYPTO_CCMP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_WEP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_MICHAEL_MIC-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-FB_BACKLIGHT-when-selected-by-DRM_NOUVEAU
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-IIO_BUFFER_CB-when-selected-by-TOUCHSCREEN_ADC
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_CLASS-when-selected-by-FUJITSU_LAPTOP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_TRIGGERS-when-selected-by-BT_LEDS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_TRIGGERS-when-selected-by-IWLWIFI_LEDS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_TRIGGERS-when-selected-by-MAC80211_LEDS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-VIDEO_ADV7180-when-selected-by-STA2X11_VIP
| |-- mm-hugetlb.c:linux-share_pool.h-is-included-more-than-once.
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| |-- mm-swap.c:linux-memremap.h-is-included-more-than-once.
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-allyesconfig
| |-- arch-x86-kernel-fpu-core.c:warning:mixing-declarations-and-code-is-a-C99-extension
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-001-20250606
| `-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
|-- x86_64-buildonly-randconfig-001-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-002-20250408
| |-- drivers-staging-comedi-drivers-ni_labpc_common.o:warning:objtool:labpc_ai_check_chanlist:can-t-find-switch-jump-table
| `-- drivers-usb-typec-tps6598x.o:warning:objtool:tps6598x_probe:can-t-find-switch-jump-table
|-- x86_64-buildonly-randconfig-002-20250424
| `-- ld.lld:error:undefined-symbol:init_net
|-- x86_64-buildonly-randconfig-002-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-dhugetlb_pool_is_free
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-003-20250207
| `-- mm-hugetlb.c:warning:no-previous-prototype-for-function-free_huge_page_to_dhugetlb_pool
|-- x86_64-buildonly-randconfig-003-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-function-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-004-20250102
| `-- drivers-media-i2c-adv7511-v4l2.o:warning:objtool:adv7511_set_fmt:unreachable-instruction
|-- x86_64-buildonly-randconfig-004-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-005-20241216
| `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration
|-- x86_64-buildonly-randconfig-005-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-slab_common.c:warning:proc_slabinfo_operations-defined-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-006-20250607
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| |-- mm-slab_common.c:warning:proc_slabinfo_operations-defined-but-not-used
| |-- mm-sparse.o:warning:objtool:missing-symbol-for-section-.init.text
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-defconfig
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-randconfig-101-20241223
| `-- fs-ext4-mballoc.o:warning:objtool:ext4_mb_complex_scan_group:unreachable-instruction
|-- x86_64-randconfig-102-20250103
| `-- drivers-acpi-cppc_acpi.c:WARNING:NULL-check-before-some-freeing-functions-is-not-needed.
|-- x86_64-randconfig-102-20250408
| `-- block-blk-throttle.c:preceding-lock-on-line
|-- x86_64-randconfig-103-20241218
| `-- kernel-hung_task.c:error:use-of-undeclared-identifier-sysctl_hung_task_all_cpu_backtrace
|-- x86_64-randconfig-103-20250219
| |-- kernel-sched-debug.c:error:no-member-named-nr_wakeups_force_preferred_cpus-in-struct-dyn_affinity_stats
| `-- kernel-sched-debug.c:error:no-member-named-nr_wakeups_preferred_cpus-in-struct-dyn_affinity_stats
|-- x86_64-randconfig-103-20250305
| `-- drivers-gpu-drm-amd-amdgpu-amdgpu_ids.o:warning:objtool:amdgpu_vmid_grab:unreachable-instruction
|-- x86_64-randconfig-121-20250527
| `-- drivers-staging-xgifb-vb_setmode.o:warning:objtool:XGISetModeNew-falls-through-to-next-function-XGI_SetCRT1Group()
|-- x86_64-randconfig-121-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-randconfig-122-20241226
| `-- fs-debugfs-file.o:warning:objtool:full_proxy_open:unreachable-instruction
|-- x86_64-randconfig-122-20250309
| `-- drivers-net-tun.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
|-- x86_64-randconfig-122-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-randconfig-123-20250607
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-dhugetlb_pool_is_free
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-randconfig-161-20250322
| `-- kernel-livepatch-core.c:warning:no-previous-prototype-for-function-arch_klp_func_can_patch
|-- x86_64-randconfig-161-20250607
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-randconfig-r112-20250311
| |-- mm-debug.c:warning:format-specifies-type-int-but-the-argument-has-type-unsigned-long
| |-- mm-debug.c:warning:format-specifies-type-unsigned-long-but-the-argument-has-type-const-unsigned-long
| |-- mm-debug.c:warning:format-specifies-type-void-but-the-argument-has-type-int
| `-- mm-debug.c:warning:more-conversions-than-data-arguments
`-- x86_64-rhel-9.4-rust
|-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
|-- mm-hugetlb.c:warning:no-previous-prototype-for-function-free_huge_page_to_dhugetlb_pool
|-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
|-- mm-memcontrol.c:warning:bad-line:otherwise.
|-- mm-memcontrol.c:warning:no-previous-prototype-for-function-dhugetlb_pool_is_free
|-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
|-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
|-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
|-- mm-rmap.c:warning:variable-cstart-set-but-not-used
`-- mm-vmalloc.c:warning:variable-start-set-but-not-used
elapsed time: 727m
configs tested: 16
configs skipped: 129
tested configs:
arm64 allmodconfig gcc-15.1.0
arm64 allnoconfig gcc-15.1.0
arm64 randconfig-001-20250607 gcc-8.5.0
arm64 randconfig-002-20250607 gcc-15.1.0
arm64 randconfig-003-20250607 gcc-12.3.0
arm64 randconfig-004-20250607 gcc-15.1.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250607 clang-20
x86_64 buildonly-randconfig-002-20250607 clang-20
x86_64 buildonly-randconfig-003-20250607 clang-20
x86_64 buildonly-randconfig-004-20250607 gcc-12
x86_64 buildonly-randconfig-005-20250607 gcc-12
x86_64 buildonly-randconfig-006-20250607 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:openEuler-1.0-LTS 1365/1365] drivers/acpi/cppc_acpi.c:614:3-8: WARNING: NULL check before some freeing functions is not needed.
by kernel test robot 07 Jun '25
by kernel test robot 07 Jun '25
07 Jun '25
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
head: 31245821cb3d54a27ff007515f57af84d6842846
commit: b8815fbbe89b0d15fa3296c3e57d2197a92f5bc0 [1365/1365] ACPI: CPPC: Fix cppc_cpufreq_init failed in CPU Hotplug situation
config: x86_64-randconfig-102-20250103 (https://download.01.org/0day-ci/archive/20250607/202506071951.jzYnVjgu-lkp@…)
compiler: clang version 19.1.3 (https://github.com/llvm/llvm-project ab51eccf88f5321e7c60591c5546b254b6afab99)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506071951.jzYnVjgu-lkp@intel.com/
cocci warnings: (new ones prefixed by >>)
>> drivers/acpi/cppc_acpi.c:614:3-8: WARNING: NULL check before some freeing functions is not needed.
vim +614 drivers/acpi/cppc_acpi.c
576
577 int acpi_get_psd_map(struct cppc_cpudata **all_cpu_data)
578 {
579 struct cpc_desc **cpc_pptr, *cpc_ptr;
580 int parsed_core_num = 0;
581 int i, ret;
582
583 cpc_pptr = kcalloc(num_possible_cpus(), sizeof(void *), GFP_KERNEL);
584 if (!cpc_pptr)
585 return -ENOMEM;
586 for_each_possible_cpu(i) {
587 cpc_pptr[i] = kzalloc(sizeof(struct cpc_desc), GFP_KERNEL);
588 if (!cpc_pptr[i]) {
589 ret = -ENOMEM;
590 goto out;
591 }
592 }
593
594 /*
595 * We can not use acpi_get_devices() to walk the processor devices
596 * because some processor device is not present.
597 */
598 ret = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
599 ACPI_UINT32_MAX, acpi_parse_cpc, NULL,
600 cpc_pptr, (void **)&parsed_core_num);
601 if (ret)
602 goto out;
603 if (parsed_core_num != num_possible_cpus()) {
604 ret = -EINVAL;
605 goto out;
606 }
607
608 ret = __acpi_get_psd_map(all_cpu_data, cpc_pptr);
609
610 out:
611 for_each_possible_cpu(i) {
612 cpc_ptr = cpc_pptr[i];
613 if (cpc_ptr)
> 614 kfree(cpc_ptr);
615 }
616 kfree(cpc_pptr);
617
618 return ret;
619 }
620 EXPORT_SYMBOL_GPL(acpi_get_psd_map);
621
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:openEuler-1.0-LTS 1664/1664] /kbuild/src/consumer/Makefile:626: include/config/auto.conf.cmd: No such file or directory
by kernel test robot 07 Jun '25
by kernel test robot 07 Jun '25
07 Jun '25
Hi Masahiro,
FYI, the error/warning still remains.
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
head: 31245821cb3d54a27ff007515f57af84d6842846
commit: 9cd721e370b364f30d97f7b5ea4ec036ce5dd807 [1664/1664] kbuild: turn auto.conf.cmd into a mandatory include file
compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247)
reproduce: (https://download.01.org/0day-ci/archive/20250607/202506071856.LxaA5NHF-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506071856.LxaA5NHF-lkp@intel.com/
All errors (new ones prefixed by >>):
***
*** Configuration file ".config" not found!
***
*** Please run some configurator (e.g. "make oldconfig" or
*** "make menuconfig" or "make xconfig").
***
make[3]: *** [/kbuild/src/consumer/scripts/kconfig/Makefile:69: syncconfig] Error 1
make[2]: *** [/kbuild/src/consumer/Makefile:539: syncconfig] Error 2
>> /kbuild/src/consumer/Makefile:626: include/config/auto.conf.cmd: No such file or directory
make[1]: *** [/kbuild/src/consumer/Makefile:638: include/config/auto.conf] Error 2
/kbuild/src/consumer/Makefile:595: Failed to remake makefile 'include/config/auto.conf'.
/kbuild/src/consumer/Makefile:626: Failed to remake makefile 'include/config/auto.conf.cmd'.
make: *** [Makefile:146: sub-make] Error 2
make: Target 'headers' not remade because of errors.
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[PATCH OLK-6.6 0/3] iommu/arm-smmu-v3: Fix global-out-of-bounds access in arm_smmu_group_get_mpam()
by Zeng Heng 07 Jun '25
by Zeng Heng 07 Jun '25
07 Jun '25
Zeng Heng (3):
arm64/mpam: Update the chip condition judgment in
resctrl_arch_would_mbm_overflow()
fs/resctrl: Prevent idle RMIDs from not being released in time from
limbo
iommu/arm-smmu-v3: Fix global-out-of-bounds access in
arm_smmu_group_get_mpam()
drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | 14 ++++++++++++++
drivers/platform/mpam/mpam_devices.c | 12 +-----------
fs/resctrl/monitor.c | 2 +-
3 files changed, 16 insertions(+), 12 deletions(-)
--
2.25.1
2
4

07 Jun '25
Jie Zhan (3):
PM / devfreq: Allow devfreq driver to add custom sysfs ABIs
PM / devfreq: Add HiSilicon uncore frequency scaling driver
openeuler_defconfig: Enable devfreq and hisi_uncore_freq by default
Lifeng Zheng (4):
PM / devfreq: governor: Replace sscanf() with kstrtoul() in
set_freq_store()
PM / devfreq: Limit max_freq with scaling_min_freq
PM / devfreq: Remove redundant devfreq_get_freq_range() calling in
devfreq_add_device()
PM / devfreq: Check governor before using governor->name
Sudeep Holla (6):
mailbox: pcc: Drop unnecessary endianness conversion of pcc_hdr.flags
mailbox: pcc: Return early if no GAS register from
pcc_mbox_cmd_complete_check
mailbox: pcc: Use acpi_os_ioremap() instead of ioremap()
mailbox: pcc: Refactor error handling in irq handler into separate
function
mailbox: pcc: Always map the shared memory communication address
mailbox: pcc: Refactor and simplify check_and_ack()
Documentation/ABI/testing/sysfs-class-devfreq | 9 +
arch/arm64/configs/openeuler_defconfig | 17 +-
drivers/devfreq/Kconfig | 11 +
drivers/devfreq/Makefile | 1 +
drivers/devfreq/devfreq.c | 21 +-
drivers/devfreq/governor_userspace.c | 6 +-
drivers/devfreq/hisi_uncore_freq.c | 656 ++++++++++++++++++
drivers/mailbox/pcc.c | 98 ++-
include/acpi/pcc.h | 6 -
include/linux/devfreq.h | 4 +
10 files changed, 753 insertions(+), 76 deletions(-)
create mode 100644 drivers/devfreq/hisi_uncore_freq.c
--
2.33.0
2
14
HULK (2):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Namhyung Kim (9):
bpf: Allow bpf_get_current_ancestor_cgroup_id for tracing
perf core: Factor out __perf_sw_event_sched
perf core: Add PERF_COUNT_SW_CGROUP_SWITCHES event
perf tools: Add 'cgroup-switches' software event
perf tools: Add read_cgroup_id() function
perf tools: Add cgroup_is_v2() helper
perf bpf_counter: Move common functions to bpf_counter.h
perf stat: Enable BPF counter with --for-each-cgroup
perf stat: Fix BPF program section name
Song Liu (13):
bpftool: Add Makefile target bootstrap
perf build: Support build BPF skeletons with perf
perf stat: Enable counting events for BPF programs
perf stat: Introduce 'bperf' to share hardware PMCs with BPF
perf stat: Measure 't0' and 'ref_time' after enable_counters()
perf util: Move bpf_perf definitions to a libperf header
perf bpf: check perf_attr_map is compatible with the perf binary
perf stat: Introduce config stat.bpf-counter-events
perf stat: Introduce ':b' modifier
perf stat: Introduce bpf_counter_ops->disable()
perf bpf: Fix building perf with BUILD_BPF_SKEL=1 by default in more
distros
perf bpf_skel: Do not use typedef to avoid error on old clang
perf test: Add a shell test for 'perf stat --bpf-counters' new option
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
include/linux/perf_event.h | 40 +-
include/uapi/linux/perf_event.h | 1 +
kernel/trace/bpf_trace.c | 2 +
tools/bpf/bpftool/Makefile | 2 +
tools/build/Makefile.feature | 4 +-
tools/include/uapi/linux/perf_event.h | 1 +
tools/lib/perf/include/perf/bpf_perf.h | 32 +
tools/perf/Documentation/perf-stat.txt | 31 +
tools/perf/Makefile.config | 9 +
tools/perf/Makefile.perf | 65 +-
tools/perf/builtin-stat.c | 110 ++-
tools/perf/tests/shell/stat_bpf_counters.sh | 74 ++
tools/perf/util/Build | 2 +
tools/perf/util/bpf_counter.c | 832 ++++++++++++++++++
tools/perf/util/bpf_counter.h | 131 +++
tools/perf/util/bpf_counter_cgroup.c | 307 +++++++
tools/perf/util/bpf_skel/.gitignore | 3 +
tools/perf/util/bpf_skel/bperf_cgroup.bpf.c | 191 ++++
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 162 ++++
tools/perf/util/bpf_skel/bperf_leader.bpf.c | 55 ++
tools/perf/util/bpf_skel/bperf_u.h | 19 +
.../util/bpf_skel/bpf_prog_profiler.bpf.c | 93 ++
tools/perf/util/cgroup.c | 47 +
tools/perf/util/cgroup.h | 13 +
tools/perf/util/config.c | 4 +
tools/perf/util/evlist.c | 4 +
tools/perf/util/evsel.c | 27 +
tools/perf/util/evsel.h | 32 +
tools/perf/util/parse-events.c | 12 +-
tools/perf/util/parse-events.l | 3 +-
tools/perf/util/python.c | 27 +
tools/perf/util/stat-display.c | 4 +-
tools/perf/util/stat.c | 2 +-
tools/perf/util/target.c | 34 +-
tools/perf/util/target.h | 8 +
tools/scripts/Makefile.include | 1 +
36 files changed, 2339 insertions(+), 45 deletions(-)
create mode 100644 tools/lib/perf/include/perf/bpf_perf.h
create mode 100755 tools/perf/tests/shell/stat_bpf_counters.sh
create mode 100644 tools/perf/util/bpf_counter.c
create mode 100644 tools/perf/util/bpf_counter.h
create mode 100644 tools/perf/util/bpf_counter_cgroup.c
create mode 100644 tools/perf/util/bpf_skel/.gitignore
create mode 100644 tools/perf/util/bpf_skel/bperf_cgroup.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_follower.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_leader.bpf.c
create mode 100644 tools/perf/util/bpf_skel/bperf_u.h
create mode 100644 tools/perf/util/bpf_skel/bpf_prog_profiler.bpf.c
--
2.34.1
2
29
Ian Rogers (1):
perf test bpf-counters: Add test for BPF event modifier
Tengda Wu (2):
perf stat: Support inherit events during fork() for bperf
perf test: Use sqrtloop workload to test bperf event
Tyrone Wu (1):
selftests/bpf: fix perf_event link info name_len assertion
Veronika Molnarova (1):
perf test stat_bpf_counter.sh: Stabilize the test results
Xiaomeng Zhang (5):
perf stat: Increase perf_attr_map entries
perf stat: Fix incorrect display of bperf when event count is 0
Revert "[Backport] selftests/bpf: fix perf_event link info name_len
assertion"
Revert "[Backport] selftests/bpf: Add cookies check for perf_event
fill_link_info test"
Revert "[Backport] selftests/bpf: Use bpf_link__destroy in
fill_link_info tests"
tools/lib/perf/include/perf/bpf_perf.h | 1 +
tools/perf/builtin-stat.c | 1 +
tools/perf/tests/shell/stat_bpf_counters.sh | 79 ++++++++++-----
tools/perf/util/bpf_counter.c | 61 +++++++++---
tools/perf/util/bpf_skel/bperf_follower.bpf.c | 98 +++++++++++++++++--
tools/perf/util/bpf_skel/bperf_u.h | 5 +
tools/perf/util/target.h | 1 +
.../selftests/bpf/prog_tests/fill_link_info.c | 62 +++++-------
8 files changed, 220 insertions(+), 88 deletions(-)
--
2.34.1
2
11
David Hildenbrand (4):
mm/migrate: use folio_likely_mapped_shared() in
add_page_for_migration()
mm/pagewalk: introduce folio_walk_start() + folio_walk_end()
mm/pagewalk: fix usage of pmd_leaf()/pud_leaf() without present check
mm/migrate: convert add_page_for_migration() from follow_page() to
folio_walk
Peter Xu (1):
mm: introduce vma_pgtable_walk_{begin|end}()
include/linux/mm.h | 3 +
include/linux/pagewalk.h | 58 +++++++++++
mm/memory.c | 12 +++
mm/migrate.c | 101 +++++++++----------
mm/pagewalk.c | 208 +++++++++++++++++++++++++++++++++++++++
5 files changed, 327 insertions(+), 55 deletions(-)
--
2.43.0
2
6
From: Al Viro <viro(a)zeniv.linux.org.uk>
stable inclusion
from stable-v5.10.236
commit ff4332f1ec757dcfafd4209ffcdd86467751e3f2
category: bugfix
bugzilla: https://gitee.com/src-openeuler/kernel/issues/IC5DC1
CVE: CVE-2023-53137
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id…
--------------------------------
commit 22e111ed6c83dcde3037fc81176012721bc34c0b upstream.
We should never lock two subdirectories without having taken
->s_vfs_rename_mutex; inode pointer order or not, the "order" proposed
in 28eceeda130f "fs: Lock moved directories" is not transitive, with
the usual consequences.
The rationale for locking renamed subdirectory in all cases was
the possibility of race between rename modifying .. in a subdirectory to
reflect the new parent and another thread modifying the same subdirectory.
For a lot of filesystems that's not a problem, but for some it can lead
to trouble (e.g. the case when short directory contents is kept in the
inode, but creating a file in it might push it across the size limit
and copy its contents into separate data block(s)).
However, we need that only in case when the parent does change -
otherwise ->rename() doesn't need to do anything with .. entry in the
first place. Some instances are lazy and do a tautological update anyway,
but it's really not hard to avoid.
Amended locking rules for rename():
find the parent(s) of source and target
if source and target have the same parent
lock the common parent
else
lock ->s_vfs_rename_mutex
lock both parents, in ancestor-first order; if neither
is an ancestor of another, lock the parent of source
first.
find the source and target.
if source and target have the same parent
if operation is an overwriting rename of a subdirectory
lock the target subdirectory
else
if source is a subdirectory
lock the source
if target is a subdirectory
lock the target
lock non-directories involved, in inode pointer order if both
source and target are such.
That way we are guaranteed that parents are locked (for obvious reasons),
that any renamed non-directory is locked (nfsd relies upon that),
that any victim is locked (emptiness check needs that, among other things)
and subdirectory that changes parent is locked (needed to protect the update
of .. entries). We are also guaranteed that any operation locking more
than one directory either takes ->s_vfs_rename_mutex or locks a parent
followed by its child.
Cc: stable(a)vger.kernel.org
Fixes: 28eceeda130f "fs: Lock moved directories"
Reviewed-by: Jan Kara <jack(a)suse.cz>
Signed-off-by: Al Viro <viro(a)zeniv.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Conflicts:
Documentation/filesystems/porting.rst
fs/namei.c
[1. commit d1fb1e798b81 ("fs, mm: fix race in unlinking swapfile");
2. commit d16f801d1916 ("switch file_open_root() to struct path");
two conflicts in the context, doesn't affect this patch.]
Signed-off-by: Zizhi Wo <wozizhi(a)huawei.com>
---
.../filesystems/directory-locking.rst | 29 ++++-----
Documentation/filesystems/locking.rst | 5 +-
Documentation/filesystems/porting.rst | 18 ++++++
fs/namei.c | 60 ++++++++++++-------
4 files changed, 74 insertions(+), 38 deletions(-)
diff --git a/Documentation/filesystems/directory-locking.rst b/Documentation/filesystems/directory-locking.rst
index dccd61c7c5c3..193c22687851 100644
--- a/Documentation/filesystems/directory-locking.rst
+++ b/Documentation/filesystems/directory-locking.rst
@@ -22,13 +22,16 @@ exclusive.
3) object removal. Locking rules: caller locks parent, finds victim,
locks victim and calls the method. Locks are exclusive.
-4) rename() that is _not_ cross-directory. Locking rules: caller locks the
-parent and finds source and target. We lock both (provided they exist). If we
-need to lock two inodes of different type (dir vs non-dir), we lock directory
-first. If we need to lock two inodes of the same type, lock them in inode
-pointer order. Then call the method. All locks are exclusive.
-NB: we might get away with locking the source (and target in exchange
-case) shared.
+4) rename() that is _not_ cross-directory. Locking rules: caller locks
+the parent and finds source and target. Then we decide which of the
+source and target need to be locked. Source needs to be locked if it's a
+non-directory; target - if it's a non-directory or about to be removed.
+Take the locks that need to be taken, in inode pointer order if need
+to take both (that can happen only when both source and target are
+non-directories - the source because it wouldn't be locked otherwise
+and the target because mixing directory and non-directory is allowed
+only with RENAME_EXCHANGE, and that won't be removing the target).
+After the locks had been taken, call the method. All locks are exclusive.
5) link creation. Locking rules:
@@ -44,20 +47,17 @@ rules:
* lock the filesystem
* lock parents in "ancestors first" order. If one is not ancestor of
- the other, lock them in inode pointer order.
+ the other, lock the parent of source first.
* find source and target.
* if old parent is equal to or is a descendent of target
fail with -ENOTEMPTY
* if new parent is equal to or is a descendent of source
fail with -ELOOP
- * Lock both the source and the target provided they exist. If we
- need to lock two inodes of different type (dir vs non-dir), we lock
- the directory first. If we need to lock two inodes of the same type,
- lock them in inode pointer order.
+ * Lock subdirectories involved (source before target).
+ * Lock non-directories involved, in inode pointer order.
* call the method.
-All ->i_rwsem are taken exclusive. Again, we might get away with locking
-the source (and target in exchange case) shared.
+All ->i_rwsem are taken exclusive.
The rules above obviously guarantee that all directories that are going to be
read, modified or removed by method will be locked by caller.
@@ -67,6 +67,7 @@ If no directory is its own ancestor, the scheme above is deadlock-free.
Proof:
+[XXX: will be updated once we are done massaging the lock_rename()]
First of all, at any moment we have a linear ordering of the
objects - A < B iff (A is an ancestor of B) or (B is not an ancestor
of A and ptr(A) < ptr(B)).
diff --git a/Documentation/filesystems/locking.rst b/Documentation/filesystems/locking.rst
index c0f2c7586531..fbd695d66905 100644
--- a/Documentation/filesystems/locking.rst
+++ b/Documentation/filesystems/locking.rst
@@ -95,7 +95,7 @@ symlink: exclusive
mkdir: exclusive
unlink: exclusive (both)
rmdir: exclusive (both)(see below)
-rename: exclusive (all) (see below)
+rename: exclusive (both parents, some children) (see below)
readlink: no
get_link: no
setattr: exclusive
@@ -113,6 +113,9 @@ tmpfile: no
Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_rwsem
exclusive on victim.
cross-directory ->rename() has (per-superblock) ->s_vfs_rename_sem.
+ ->unlink() and ->rename() have ->i_rwsem exclusive on all non-directories
+ involved.
+ ->rename() has ->i_rwsem exclusive on any subdirectory that changes parent.
See Documentation/filesystems/directory-locking.rst for more detailed discussion
of the locking scheme for directory operations.
diff --git a/Documentation/filesystems/porting.rst b/Documentation/filesystems/porting.rst
index b00fb6313b58..31c861d28047 100644
--- a/Documentation/filesystems/porting.rst
+++ b/Documentation/filesystems/porting.rst
@@ -874,3 +874,21 @@ Calling conventions for file_open_root() changed; now it takes struct path *
instead of passing mount and dentry separately. For callers that used to
pass <mnt, mnt->mnt_root> pair (i.e. the root of given mount), a new helper
is provided - file_open_root_mnt(). In-tree users adjusted.
+
+---
+
+**mandatory**
+
+If ->rename() update of .. on cross-directory move needs an exclusion with
+directory modifications, do *not* lock the subdirectory in question in your
+->rename() - it's done by the caller now [that item should've been added in
+28eceeda130f "fs: Lock moved directories"].
+
+---
+
+**mandatory**
+
+On same-directory ->rename() the (tautological) update of .. is not protected
+by any locks; just don't do it if the old parent is the same as the new one.
+We really can't lock two subdirectories in same-directory rename - not without
+deadlocks.
\ No newline at end of file
diff --git a/fs/namei.c b/fs/namei.c
index 3588e12d6130..c4fbb37961cb 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -2778,20 +2778,14 @@ struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
p = d_ancestor(p2, p1);
if (p) {
inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
- inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
+ inode_lock_nested(p1->d_inode, I_MUTEX_PARENT2);
return p;
}
p = d_ancestor(p1, p2);
- if (p) {
- inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
- inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
- return p;
- }
-
- lock_two_inodes(p1->d_inode, p2->d_inode,
- I_MUTEX_PARENT, I_MUTEX_PARENT2);
- return NULL;
+ inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
+ inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
+ return p;
}
EXPORT_SYMBOL(lock_rename);
@@ -4268,11 +4262,12 @@ SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname
*
* a) we can get into loop creation.
* b) race potential - two innocent renames can create a loop together.
- * That's where 4.4 screws up. Current fix: serialization on
+ * That's where 4.4BSD screws up. Current fix: serialization on
* sb->s_vfs_rename_mutex. We might be more accurate, but that's another
* story.
- * c) we have to lock _four_ objects - parents and victim (if it exists),
- * and source.
+ * c) we may have to lock up to _four_ objects - parents and victim (if it exists),
+ * and source (if it's a non-directory or a subdirectory that moves to
+ * different parent).
* And that - after we got ->i_mutex on parents (until then we don't know
* whether the target exists). Solution: try to be smart with locking
* order for inodes. We rely on the fact that tree topology may change
@@ -4301,6 +4296,7 @@ int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
bool new_is_dir = false;
unsigned max_links = new_dir->i_sb->s_max_links;
struct name_snapshot old_name;
+ bool lock_old_subdir, lock_new_subdir;
if (source == target)
return 0;
@@ -4350,15 +4346,32 @@ int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
take_dentry_name_snapshot(&old_name, old_dentry);
dget(new_dentry);
/*
- * Lock all moved children. Moved directories may need to change parent
- * pointer so they need the lock to prevent against concurrent
- * directory changes moving parent pointer. For regular files we've
- * historically always done this. The lockdep locking subclasses are
- * somewhat arbitrary but RENAME_EXCHANGE in particular can swap
- * regular files and directories so it's difficult to tell which
- * subclasses to use.
+ * Lock children.
+ * The source subdirectory needs to be locked on cross-directory
+ * rename or cross-directory exchange since its parent changes.
+ * The target subdirectory needs to be locked on cross-directory
+ * exchange due to parent change and on any rename due to becoming
+ * a victim.
+ * Non-directories need locking in all cases (for NFS reasons);
+ * they get locked after any subdirectories (in inode address order).
+ *
+ * NOTE: WE ONLY LOCK UNRELATED DIRECTORIES IN CROSS-DIRECTORY CASE.
+ * NEVER, EVER DO THAT WITHOUT ->s_vfs_rename_mutex.
*/
- lock_two_inodes(source, target, I_MUTEX_NORMAL, I_MUTEX_NONDIR2);
+ lock_old_subdir = new_dir != old_dir;
+ lock_new_subdir = new_dir != old_dir || !(flags & RENAME_EXCHANGE);
+ if (is_dir) {
+ if (lock_old_subdir)
+ inode_lock_nested(source, I_MUTEX_CHILD);
+ if (target && (!new_is_dir || lock_new_subdir))
+ inode_lock(target);
+ } else if (new_is_dir) {
+ if (lock_new_subdir)
+ inode_lock_nested(target, I_MUTEX_CHILD);
+ inode_lock(source);
+ } else {
+ lock_two_nondirectories(source, target);
+ }
error = -EPERM;
if (IS_SWAPFILE(source) || (target && IS_SWAPFILE(target)))
@@ -4406,8 +4419,9 @@ int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
d_exchange(old_dentry, new_dentry);
}
out:
- inode_unlock(source);
- if (target)
+ if (!is_dir || lock_old_subdir)
+ inode_unlock(source);
+ if (target && (!new_is_dir || lock_new_subdir))
inode_unlock(target);
dput(new_dentry);
if (!error) {
--
2.39.2
2
1

[openeuler:openEuler-1.0-LTS] BUILD REGRESSION 3f6f64021dc44bb5b4013f71d82b5fd76163df49
by kernel test robot 07 Jun '25
by kernel test robot 07 Jun '25
07 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
branch HEAD: 3f6f64021dc44bb5b4013f71d82b5fd76163df49 !16306 [openEuler-1.0-LTS] scsi: libsas: Abort all in-flight requests when device is gone
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505160438.vuslIGAx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505180330.wT5fsdK9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201642.9kWf73yF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201731.rOzzhiIH-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201910.3QGTFYPj-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505202028.GvFwJHdW-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505202138.LT7VPPBg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061449.nBm6oAvj-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061633.Zsp5yfyi-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061637.CVNqsEqf-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061755.yar1Fr9d-lkp@intel.com
arch/x86/kernel/fpu/core.c:175:14: warning: mixing declarations and code is a C99 extension [-Wdeclaration-after-statement]
crypto/.tmp_sm4_generic.o: warning: objtool: missing symbol for section .text
include/linux/list.h:63:20: warning: storing the address of local variable 'ticket' in '((struct list_head *)((char *)space_info + 8))[10].prev' [-Wdangling-pointer=]
kismet: WARNING: unmet direct dependencies detected for CRYPTO_MICHAEL_MIC when selected by RTLLIB_CRYPTO_TKIP
kismet: WARNING: unmet direct dependencies detected for FB_BACKLIGHT when selected by DRM_NOUVEAU
kismet: WARNING: unmet direct dependencies detected for IIO_BUFFER_CB when selected by TOUCHSCREEN_ADC
kismet: WARNING: unmet direct dependencies detected for LEDS_CLASS when selected by FUJITSU_LAPTOP
kismet: WARNING: unmet direct dependencies detected for LEDS_TRIGGERS when selected by BT_LEDS
kismet: WARNING: unmet direct dependencies detected for LEDS_TRIGGERS when selected by IWLWIFI_LEDS
kismet: WARNING: unmet direct dependencies detected for LEDS_TRIGGERS when selected by MAC80211_LEDS
kismet: WARNING: unmet direct dependencies detected for PINCTRL_EXYNOS when selected by ARCH_EXYNOS
kismet: WARNING: unmet direct dependencies detected for UACCE when selected by CRYPTO_DEV_HISI_QM
kismet: WARNING: unmet direct dependencies detected for VIDEO_ADV7180 when selected by STA2X11_VIP
mm/.tmp_page_counter.o: warning: objtool: missing symbol for section .text
mm/.tmp_sparse.o: warning: objtool: missing symbol for section .init.text
mm/huge_memory.c:2092:15: warning: variable 'orig_pud' set but not used [-Wunused-but-set-variable]
mm/huge_memory.c:2092:8: warning: variable 'orig_pud' set but not used [-Wunused-but-set-variable]
mm/hugetlb.c:1432:6: warning: no previous prototype for 'free_huge_page_to_dhugetlb_pool' [-Wmissing-prototypes]
mm/khugepaged.c:1387: warning: Function parameter or member 'hpage' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'mapping' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'mm' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'node' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'reliable' not described in 'collapse_shmem'
mm/khugepaged.c:1387: warning: Function parameter or member 'start' not described in 'collapse_shmem'
mm/maccess.c:85:6: warning: no previous prototype for '__probe_user_read' [-Wmissing-prototypes]
mm/memcontrol.c:5000:6: warning: no previous prototype for 'dhugetlb_pool_is_free' [-Wmissing-prototypes]
mm/memcontrol.c:5000:6: warning: no previous prototype for function 'dhugetlb_pool_is_free' [-Wmissing-prototypes]
mm/memcontrol.c:6728: warning: bad line: | 0, otherwise.
mm/memory.c:4803:3: warning: cast from 'int (*)(unsigned long, unsigned long, struct cgp_args *)' to 'ktask_thread_func' (aka 'int (*)(void *, void *, void *)') converts to incompatible function type [-Wcast-function-type-mismatch]
mm/memory_hotplug.c:481:16: warning: variable 'start_pfn' set but not used [-Wunused-but-set-variable]
mm/memory_hotplug.c:481:23: warning: variable 'start_pfn' set but not used [-Wunused-but-set-variable]
mm/memory_hotplug.c:925:16: warning: unused variable 'start_pfn' [-Wunused-variable]
mm/memory_hotplug.c:925:23: warning: unused variable 'start_pfn' [-Wunused-variable]
mm/memory_hotplug.c:926:16: warning: unused variable 'start_pfn' [-Wunused-variable]
mm/memory_hotplug.c:970:13: warning: 'rollback_node_hotadd' defined but not used [-Wunused-function]
mm/page_alloc.c:3123: warning: Function parameter or member 'mt' not described in '__putback_isolated_page'
mm/rmap.c:916:17: warning: variable 'cstart' set but not used [-Wunused-but-set-variable]
mm/rmap.c:916:31: warning: variable 'cstart' set but not used [-Wunused-but-set-variable]
mm/vmalloc.c:231:16: warning: variable 'start' set but not used [-Wunused-but-set-variable]
mm/vmalloc.c:231:23: warning: variable 'start' set but not used [-Wunused-but-set-variable]
samples/hw_breakpoint/data_breakpoint.o: warning: objtool: missing symbol for section .exit.text
sound/firewire/.tmp_iso-resources.o: warning: objtool: missing symbol for section .text
sound/firewire/.tmp_packets-buffer.o: warning: objtool: missing symbol for section .text
sound/firewire/bebob/.tmp_bebob_stream.o: warning: objtool: missing symbol for section .text
sound/firewire/fireface/.tmp_ff-stream.o: warning: objtool: missing symbol for section .text
sound/firewire/fireworks/.tmp_fireworks_stream.o: warning: objtool: missing symbol for section .text
sound/firewire/oxfw/.tmp_oxfw-stream.o: warning: objtool: missing symbol for section .text
Unverified Error/Warning (likely false positive, kindly check if interested):
include/asm-generic/bug.h:70:12: warning: 'mcu_ctrl' may be used uninitialized [-Wmaybe-uninitialized]
mm/.tmp_vmacache.o: warning: objtool: missing symbol for section .text
mm/hugetlb.c: linux/share_pool.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-allnoconfig
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_AES-when-selected-by-RTLLIB_CRYPTO_CCMP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_WEP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_MICHAEL_MIC-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-FB_BACKLIGHT-when-selected-by-DRM_NOUVEAU
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-IIO_BUFFER_CB-when-selected-by-TOUCHSCREEN_ADC
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PINCTRL_EXYNOS-when-selected-by-ARCH_EXYNOS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-UACCE-when-selected-by-CRYPTO_DEV_HISI_QM
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-defconfig
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-001-20250606
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-002-20250606
| |-- include-linux-list.h:warning:storing-the-address-of-local-variable-ticket-in-((struct-list_head-)((char-)space_info-))-.prev
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-003-20250606
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- arm64-randconfig-004-20250606
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-allmodconfig
| `-- arch-x86-kernel-fpu-core.c:warning:mixing-declarations-and-code-is-a-C99-extension
|-- x86_64-allnoconfig
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BACKLIGHT_CLASS_DEVICE-when-selected-by-DRM_GMA500
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_AES-when-selected-by-RTLLIB_CRYPTO_CCMP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_ARC4-when-selected-by-RTLLIB_CRYPTO_WEP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-CRYPTO_MICHAEL_MIC-when-selected-by-RTLLIB_CRYPTO_TKIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-FB_BACKLIGHT-when-selected-by-DRM_NOUVEAU
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-IIO_BUFFER_CB-when-selected-by-TOUCHSCREEN_ADC
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_CLASS-when-selected-by-FUJITSU_LAPTOP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_TRIGGERS-when-selected-by-BT_LEDS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_TRIGGERS-when-selected-by-IWLWIFI_LEDS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-LEDS_TRIGGERS-when-selected-by-MAC80211_LEDS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-VIDEO_ADV7180-when-selected-by-STA2X11_VIP
| |-- mm-hugetlb.c:linux-share_pool.h-is-included-more-than-once.
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-allyesconfig
| |-- arch-x86-kernel-fpu-core.c:warning:mixing-declarations-and-code-is-a-C99-extension
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-001-20250606
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-dhugetlb_pool_is_free
| |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type
| |-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-002-20250606
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| |-- mm-vmalloc.c:warning:variable-start-set-but-not-used
| `-- samples-hw_breakpoint-data_breakpoint.o:warning:objtool:missing-symbol-for-section-.exit.text
|-- x86_64-buildonly-randconfig-003-20250606
| |-- crypto-.tmp_sm4_generic.o:warning:objtool:missing-symbol-for-section-.text
| |-- include-asm-generic-bug.h:warning:mcu_ctrl-may-be-used-uninitialized
| |-- mm-.tmp_vmacache.o:warning:objtool:missing-symbol-for-section-.text
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-004-20250606
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-buildonly-randconfig-005-20250606
| |-- crypto-.tmp_sm4_generic.o:warning:objtool:missing-symbol-for-section-.text
| |-- mm-.tmp_page_counter.o:warning:objtool:missing-symbol-for-section-.text
| |-- mm-.tmp_sparse.o:warning:objtool:missing-symbol-for-section-.init.text
| |-- mm-.tmp_vmacache.o:warning:objtool:missing-symbol-for-section-.text
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-memcontrol.c:warning:bad-line:otherwise.
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-dhugetlb_pool_is_free
| |-- mm-memory_hotplug.c:warning:rollback_node_hotadd-defined-but-not-used
| |-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-vmalloc.c:warning:variable-start-set-but-not-used
| |-- sound-firewire-.tmp_iso-resources.o:warning:objtool:missing-symbol-for-section-.text
| |-- sound-firewire-.tmp_packets-buffer.o:warning:objtool:missing-symbol-for-section-.text
| |-- sound-firewire-bebob-.tmp_bebob_stream.o:warning:objtool:missing-symbol-for-section-.text
| |-- sound-firewire-fireface-.tmp_ff-stream.o:warning:objtool:missing-symbol-for-section-.text
| |-- sound-firewire-fireworks-.tmp_fireworks_stream.o:warning:objtool:missing-symbol-for-section-.text
| `-- sound-firewire-oxfw-.tmp_oxfw-stream.o:warning:objtool:missing-symbol-for-section-.text
|-- x86_64-buildonly-randconfig-006-20250606
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-defconfig
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-randconfig-161-20250606
| |-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
| |-- mm-hugetlb.c:warning:no-previous-prototype-for-free_huge_page_to_dhugetlb_pool
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
|-- x86_64-randconfig-r061-20250607
| |-- mm-maccess.c:warning:no-previous-prototype-for-__probe_user_read
| |-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
| |-- mm-rmap.c:warning:variable-cstart-set-but-not-used
| `-- mm-vmalloc.c:warning:variable-start-set-but-not-used
`-- x86_64-rhel-9.4-rust
|-- mm-huge_memory.c:warning:variable-orig_pud-set-but-not-used
|-- mm-hugetlb.c:warning:no-previous-prototype-for-function-free_huge_page_to_dhugetlb_pool
|-- mm-khugepaged.c:warning:Function-parameter-or-member-hpage-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-mapping-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-mm-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-node-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_shmem
|-- mm-khugepaged.c:warning:Function-parameter-or-member-start-not-described-in-collapse_shmem
|-- mm-memcontrol.c:warning:bad-line:otherwise.
|-- mm-memcontrol.c:warning:no-previous-prototype-for-function-dhugetlb_pool_is_free
|-- mm-memory_hotplug.c:warning:unused-variable-start_pfn
|-- mm-memory_hotplug.c:warning:variable-start_pfn-set-but-not-used
|-- mm-page_alloc.c:warning:Function-parameter-or-member-mt-not-described-in-__putback_isolated_page
|-- mm-rmap.c:warning:variable-cstart-set-but-not-used
`-- mm-vmalloc.c:warning:variable-start-set-but-not-used
elapsed time: 722m
configs tested: 17
configs skipped: 129
tested configs:
arm64 allmodconfig gcc-15.1.0
arm64 allnoconfig gcc-15.1.0
arm64 defconfig gcc-15.1.0
arm64 randconfig-001-20250606 gcc-11.5.0
arm64 randconfig-002-20250606 gcc-15.1.0
arm64 randconfig-003-20250606 gcc-11.5.0
arm64 randconfig-004-20250606 gcc-14.3.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250606 clang-20
x86_64 buildonly-randconfig-002-20250606 gcc-12
x86_64 buildonly-randconfig-003-20250606 gcc-12
x86_64 buildonly-randconfig-004-20250606 gcc-12
x86_64 buildonly-randconfig-005-20250606 gcc-12
x86_64 buildonly-randconfig-006-20250606 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-5.10] BUILD REGRESSION 08a17a409a5d6bdd7fe07e32633364fa7bb3e7d0
by kernel test robot 07 Jun '25
by kernel test robot 07 Jun '25
07 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-5.10
branch HEAD: 08a17a409a5d6bdd7fe07e32633364fa7bb3e7d0 !16581 module: ensure that kobject_put() is safe for module type kobjects
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505091231.o5lexadJ-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505100150.DG1QGwH3-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505211008.Lhrh17Cr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280024.8UbNlKSa-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280046.3lWnWdOg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280545.IP3aIukn-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280648.AMUiWr41-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505301434.xq8uzhGR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506042153.UZ29KeGA-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202505291536.8a44hWAc-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202506011207.GF5fjCi8-lkp@intel.com
./drivers/net/ethernet/huawei/hinic3/cqm/cqm_memsec.c: 682: need linux/version.h
drivers/irqchip/irq-gic-v3-its.c:524:6: warning: no previous prototype for 'build_devid_pools' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/cqm/cqm_cmd.c:158:5: warning: no previous prototype for function 'cqm3_lb_send_cmd_box_async' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_dbg.c:689:5: warning: variable 'cos_num' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/huawei/hinic3/hinic3_ethtool_stats.c:342:5: warning: no previous prototype for function 'hinic3_rx_queue_stat_pack' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_ethtool_stats.c:357:5: warning: no previous prototype for function 'hinic3_tx_queue_stat_pack' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:1678:5: warning: no previous prototype for function 'set_fecparam' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:1706:5: warning: no previous prototype for function 'get_fecparam' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:623:6: warning: no previous prototype for function 'print_port_info' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:802:6: warning: no previous prototype for function 'hinic3_notify_vf_bond_status' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c:832:6: warning: no previous prototype for function 'hinic3_notify_all_vfs_bond_changed' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_main.c:1211:6: warning: no previous prototype for function 'hinic3_need_proc_link_event' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_main.c:1258:6: warning: no previous prototype for function 'hinic3_need_proc_bond_event' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hinic3_netdev_ops.c:59:6: warning: variable 'size' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_dev_mgmt.c:618:6: warning: no previous prototype for function 'hinic3_write_oshr_info' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hw_api.c:95: warning: Function parameter or member 'instance' not described in 'hinic3_sm_ctr_rd16_clear'
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hw_comm.c:1671:6: warning: no previous prototype for function 'hinic3_is_optical_module_mode' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hwif.c:865:5: warning: no previous prototype for function 'hinic3_global_func_id_hw' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:1796:6: warning: no previous prototype for function 'hinic3_set_func_state' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:1822:6: warning: no previous prototype for function 'slave_host_mgmt_work' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:525:5: warning: no previous prototype for function 'hinic3_pdev_is_virtfn' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:785:5: warning: no previous prototype for function '__set_vroce_func_state' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:826:6: warning: no previous prototype for function 'slave_host_mgmt_vroce_work' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_lld.c:834:7: warning: no previous prototype for function 'hinic3_get_roce_uld_by_pdev' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/hw/hinic3_sriov.c:176:5: warning: no previous prototype for function 'hinic3_pci_sriov_check' [-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:403:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/mellanox/mlxsw/spectrum_router.o: warning: objtool: mlxsw_sp_neigh_entry_update()+0x26f: unreachable instruction
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:546:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:900:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:946:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1060:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:160:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:201:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:29:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:51:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:77:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:132:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:244:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:404:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:86:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:884:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1582:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1664:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1633:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:148:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:37:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:89:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:308:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:786:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:26:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:29:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:610:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1059:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2020:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2041:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2101:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:212:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2464:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2828:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2937:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3024:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3280:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3335:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:336:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3479:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:352:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:364:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3822:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:750:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:877:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:893:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1174:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1232:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1313:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:579:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:679:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:731:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:989:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:155:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:205:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2701:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:364:5: error: no previous prototype for function 'ps3_recovery_state_transfer' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:73:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:83:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:89:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:408:5: error: no previous prototype for function 'ps3_sas_update_phy_info' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1111:5: error: no previous prototype for function 'ps3_wait_for_outstanding_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:877:6: error: no previous prototype for function 'ps3_set_task_manager_busy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1959:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
kismet: WARNING: unmet direct dependencies detected for BPF_NET_GLOBAL_PROG when selected by SCHED_TASK_RELATIONSHIP
kismet: WARNING: unmet direct dependencies detected for HARDLOCKUP_DETECTOR when selected by SDEI_WATCHDOG
kismet: WARNING: unmet direct dependencies detected for PCI_IOV when selected by CRYPTO_DEV_HISI_MIGRATION
kismet: WARNING: unmet direct dependencies detected for PGP_KEY_PARSER when selected by PGP_PRELOAD
kismet: WARNING: unmet direct dependencies detected for PGP_PRELOAD when selected by PGP_PRELOAD_PUBLIC_KEYS
kismet: WARNING: unmet direct dependencies detected for SERIAL_EARLYCON when selected by SERIAL_IMX_EARLYCON
kismet: WARNING: unmet direct dependencies detected for TASK_PLACEMENT_BY_CPU_RANGE when selected by BPF_SCHED
mm/damon/core-test.h:284:2: warning: comparison of distinct pointer types ('typeof (__left) *' (aka 'unsigned int *') and 'typeof (__right) *' (aka 'int *')) [-Wcompare-distinct-pointer-types]
mm/hugetlb.c:2223:9: warning: variable 'gfp' set but not used [-Wunused-but-set-variable]
mm/khugepaged.c:1703: warning: Function parameter or member 'reliable' not described in 'collapse_file'
mm/page_alloc.c: linux/vmalloc.h is included more than once.
mm/page_alloc.c:3040:6: warning: no previous prototype for '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:3040:6: warning: no previous prototype for function '__drain_all_pages' [-Wmissing-prototypes]
mm/page_alloc.c:6794:23: warning: no previous prototype for function 'arch_memmap_init' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/page_alloc.c:6912:6: warning: no previous prototype for function '__zone_set_pageset_high_and_batch' [-Wmissing-prototypes]
mm/process_vm_access.c: linux/compat.h is included more than once.
mm/slub.o: warning: objtool: kmem_cache_free()+0x43a: unreachable instruction
Unverified Error/Warning (likely false positive, kindly check if interested):
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-conn-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-filters: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-in-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-sigs: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/coresight-cti.yaml: arm,trig-out-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/arm/idle-states.yaml: idle-state-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,mode: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/clock/idt,versaclock5.yaml: idt,slew-percent: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/display/allwinner,sun4i-a10-tcon.yaml: allwinner,tcon-channel: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml: adi,reference-select: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: label: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,avg-samples: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,decimation: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,hw-settle-time: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml: qcom,pre-scaling: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-clk-src: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-names: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channel-types: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,adc-channels: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml: st,filter-order: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,datarate: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/adc/ti,ads1015.yaml: ti,gain: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml: adi,ch-func: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,cold-junction-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-rtd: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-steinhart: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermistor: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,custom-thermocouple: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,excitation-current-nanoamp: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,ideal-factor-value: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,number-of-wires: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rsense-handle: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,rtd-curve: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml: adi,sensor-type: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml: affinity: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp50xx.yaml: allOf: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: chan-name: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: led-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/leds-lp55xx.yaml: max-cur: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: color: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: function: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml: rohm,led-compatible: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/imx219.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/media/i2c/ov8856.yaml: link-frequencies: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-bus-width: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAH: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAS: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tAW: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tBP: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/memory-controllers/ingenic,nemc.yaml: ingenic,nemc-tSTRV: Missing additionalProperties/unevaluatedProperties constraint
Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml: slew-rate: Missing additionalProperties/unevaluatedProperties constraint
drivers/irqchip/irq-gic-v3-its.c: linux/pci.h is included more than once.
drivers/net/ethernet/huawei/hinic3/ossl_knl_linux.h: net/devlink.h is included more than once.
drivers/net/ethernet/mellanox/mlx5/core/lib/fs_chains.o: warning: objtool: mlx5_chains_put_table()+0x38f: unreachable instruction
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x0-in-asm
| |-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x1-in-asm
| `-- arch-arm64-include-asm-atomic_lse.h:error:unknown-register-name-x2-in-asm
|-- arm64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BPF_NET_GLOBAL_PROG-when-selected-by-SCHED_TASK_RELATIONSHIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DRM_PANEL_BRIDGE-when-selected-by-DRM_TOSHIBA_TC358762
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-HARDLOCKUP_DETECTOR-when-selected-by-SDEI_WATCHDOG
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PCI_IOV-when-selected-by-CRYPTO_DEV_HISI_MIGRATION
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_KEY_PARSER-when-selected-by-PGP_PRELOAD
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_PRELOAD-when-selected-by-PGP_PRELOAD_PUBLIC_KEYS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-SERIAL_EARLYCON-when-selected-by-SERIAL_IMX_EARLYCON
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-TASK_PLACEMENT_BY_CPU_RANGE-when-selected-by-BPF_SCHED
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-defconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-002-20250606
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-build_devid_pools
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- arm64-randconfig-051-20250606
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-052-20250606
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-053-20250606
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-054-20250606
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- arm64-randconfig-055-20250606
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-conn-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-filters:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-in-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-sigs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-coresight-cti.yaml:arm-trig-out-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-arm-idle-states.yaml:idle-state-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-clock-idt-versaclock5.yaml:idt-slew-percent:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-display-allwinner-sun4i-a10-tcon.yaml:allwinner-tcon-channel:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-adi-ad7124.yaml:adi-reference-select:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:label:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-avg-samples:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-decimation:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-hw-settle-time:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-qcom-spmi-vadc.yaml:qcom-pre-scaling:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-clk-src:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-names:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channel-types:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-adc-channels:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-st-stm32-dfsdm-adc.yaml:st-filter-order:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-datarate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-adc-ti-ads1015.yaml:ti-gain:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-addac-adi-ad74413r.yaml:adi-ch-func:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-cold-junction-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-rtd:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-steinhart:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermistor:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-custom-thermocouple:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-excitation-current-nanoamp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-ideal-factor-value:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-number-of-wires:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rsense-handle:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-rtd-curve:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-iio-temperature-adi-ltc2983.yaml:adi-sensor-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-interrupt-controller-arm-gic-v3.yaml:affinity:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-cznic-turris-omnia-leds.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:chan-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:led-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp55xx.yaml:max-cur:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-leds-lp5x.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:color:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-leds-rohm-bd71828-leds.yaml:rohm-led-compatible:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-imx219.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-media-i2c-ov8856.yaml:link-frequencies:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-bus-width:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAH:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAS:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tAW:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tBP:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-ingenic-nemc.yaml:ingenic-nemc-tSTRV:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra124-emc.yaml:nvidia-ram-code:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-nvidia-tegra186-mc.yaml:nvidia-bpmp:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-asyncwait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-buswidth:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cclk-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-cpsize:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-mux-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-transaction-type:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-wait-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitcfg-enable:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-memory-controllers-st-stm32-fmc2-ebi.yaml:st-fmc2-ebi-cs-waitpol-high:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-cirrus-lochnagar.yaml:cirrus-micbias-input:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-gateworks-gsc.yaml:gw-mode:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stm32-timers.yaml:st-breakinput:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-mfd-st-stmfx.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:allOf:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_mult:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:cpts_clock_shift:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-cpsw-switch.yaml:ti-dual-emac-pvid:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-mac-only:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-net-ti-k3-am654-cpsw-nuss.yaml:ti-syscon-efuse:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:pinmux:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:slew-rate:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-ioport:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-st-stm32-pinctrl.yaml:st-bank-name:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:function:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-pinctrl-toshiba-visconti-pinctrl.yaml:groups:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:mclk-fs:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-amlogic-gx-sound-card.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-marvell-mmp-sspa.yaml:dai-format:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-aries-wm8994.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-midas-audio.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-sound-samsung-odroid.yaml:sound-dai:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-timer-arm-arch_timer_mmio.yaml:frame-number:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:manufacturer:Missing-additionalProperties-unevaluatedProperties-constraint
| |-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:product:Missing-additionalProperties-unevaluatedProperties-constraint
| `-- Documentation-devicetree-bindings-usb-aspeed-usb-vhub.yaml:serial-number:Missing-additionalProperties-unevaluatedProperties-constraint
|-- x86_64-allnoconfig
| |-- drivers-irqchip-irq-gic-v3-its.c:linux-pci.h-is-included-more-than-once.
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_memsec.c::need-linux-version.h
| |-- drivers-net-ethernet-huawei-hinic3-ossl_knl_linux.h:net-devlink.h-is-included-more-than-once.
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-BPF_NET_GLOBAL_PROG-when-selected-by-SCHED_TASK_RELATIONSHIP
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DRM_PANEL_BRIDGE-when-selected-by-DRM_TOSHIBA_TC358762
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_KEY_PARSER-when-selected-by-PGP_PRELOAD
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-PGP_PRELOAD-when-selected-by-PGP_PRELOAD_PUBLIC_KEYS
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-SERIAL_EARLYCON-when-selected-by-SERIAL_IMX_EARLYCON
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-TASK_PLACEMENT_BY_CPU_RANGE-when-selected-by-BPF_SCHED
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-page_alloc.c:linux-vmalloc.h-is-included-more-than-once.
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
| `-- mm-process_vm_access.c:linux-compat.h-is-included-more-than-once.
|-- x86_64-allyesconfig
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_cmd.c:warning:no-previous-prototype-for-function-cqm3_lb_send_cmd_box_async
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_dbg.c:warning:variable-cos_num-set-but-not-used
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_ethtool_stats.c:warning:no-previous-prototype-for-function-hinic3_rx_queue_stat_pack
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_ethtool_stats.c:warning:no-previous-prototype-for-function-hinic3_tx_queue_stat_pack
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-get_fecparam
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-hinic3_notify_all_vfs_bond_changed
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-hinic3_notify_vf_bond_status
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-print_port_info
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:warning:no-previous-prototype-for-function-set_fecparam
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_main.c:warning:no-previous-prototype-for-function-hinic3_need_proc_bond_event
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_main.c:warning:no-previous-prototype-for-function-hinic3_need_proc_link_event
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_netdev_ops.c:warning:variable-size-set-but-not-used
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_dev_mgmt.c:warning:no-previous-prototype-for-function-hinic3_write_oshr_info
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hw_api.c:warning:Function-parameter-or-member-instance-not-described-in-hinic3_sm_ctr_rd16_clear
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hw_comm.c:warning:no-previous-prototype-for-function-hinic3_is_optical_module_mode
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:no-previous-prototype-for-function-hinic3_global_func_id_hw
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-__set_vroce_func_state
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-hinic3_get_roce_uld_by_pdev
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-hinic3_pdev_is_virtfn
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-hinic3_set_func_state
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-slave_host_mgmt_vroce_work
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_lld.c:warning:no-previous-prototype-for-function-slave_host_mgmt_work
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_sriov.c:warning:no-previous-prototype-for-function-hinic3_pci_sriov_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- mm-damon-core-test.h:warning:comparison-of-distinct-pointer-types-(-typeof-(__left)-(aka-unsigned-int-)-and-typeof-(__right)-(aka-int-))
| |-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-001-20250606
| |-- ld.lld:error:version-script-assignment-of-LINUX_2.-to-symbol-__vdso_sgx_enter_enclave-failed:symbol-not-defined
| |-- llvm-objcopy:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- llvm-objdump:error:arch-x86-entry-vdso-vdso64.so.dbg:No-such-file-or-directory
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-buildonly-randconfig-002-20250606
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-003-20250606
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-004-20250606
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-005-20250606
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-buildonly-randconfig-006-20250606
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-defconfig
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-121-20250607
| |-- block-blk-mq.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- include-linux-blk-mq.h:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-122-20250607
| |-- block-blk-mq.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- include-linux-blk-mq.h:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-123-20250607
| |-- block-blk-mq.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- include-linux-blk-mq.h:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces):
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
|-- x86_64-randconfig-161-20250606
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
|-- x86_64-randconfig-r053-20250606
| |-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
| |-- mm-page_alloc.c:warning:no-previous-prototype-for-__drain_all_pages
| `-- mm-page_alloc.c:warning:no-previous-prototype-for-__zone_set_pageset_high_and_batch
`-- x86_64-rhel-9.4-rust
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-mellanox-mlx5-core-lib-fs_chains.o:warning:objtool:mlx5_chains_put_table:unreachable-instruction
|-- drivers-net-ethernet-mellanox-mlxsw-spectrum_router.o:warning:objtool:mlxsw_sp_neigh_entry_update:unreachable-instruction
|-- mm-hugetlb.c:warning:variable-gfp-set-but-not-used
|-- mm-khugepaged.c:warning:Function-parameter-or-member-reliable-not-described-in-collapse_file
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__drain_all_pages
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-__zone_set_pageset_high_and_batch
|-- mm-page_alloc.c:warning:no-previous-prototype-for-function-arch_memmap_init
`-- mm-slub.o:warning:objtool:kmem_cache_free:unreachable-instruction
elapsed time: 726m
configs tested: 17
configs skipped: 129
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 defconfig gcc-15.1.0
arm64 randconfig-001-20250606 clang-21
arm64 randconfig-002-20250606 gcc-15.1.0
arm64 randconfig-003-20250606 clang-21
arm64 randconfig-004-20250606 clang-21
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250606 clang-20
x86_64 buildonly-randconfig-002-20250606 gcc-12
x86_64 buildonly-randconfig-003-20250606 gcc-12
x86_64 buildonly-randconfig-004-20250606 gcc-12
x86_64 buildonly-randconfig-005-20250606 gcc-12
x86_64 buildonly-randconfig-006-20250606 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6] BUILD REGRESSION b252849e2320fe952d448bcb2d23699e357b3d54
by kernel test robot 07 Jun '25
by kernel test robot 07 Jun '25
07 Jun '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-6.6
branch HEAD: b252849e2320fe952d448bcb2d23699e357b3d54 !16537 md: fix mddev uaf while iterating all_mddevs list
Error/Warning (recently discovered and may have been fixed):
https://lore.kernel.org/oe-kbuild-all/202505080526.qCQgtY7V-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505080910.94UlZrA0-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505100830.TI8oJiuj-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505101047.t5A72bmv-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505122110.l7rKvRzx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505130655.7iroL05g-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505191456.gDWxN0oB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201519.o4k4rCxn-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201603.DayzxkWd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201708.6dvo6U58-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201722.VJAhefze-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201757.qoTbv6a9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201856.VGaOEUgd-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201929.AHI9gRxc-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505201944.3gmU2Dch-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210529.5XGNL1lQ-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210722.gwnDsvxy-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505210904.LgTxS8rg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505211154.GJrcviY9-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505261539.RLecPVlr-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272122.LGw8kmAU-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272226.RcAmWtpx-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505272259.OmUgrWdN-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280023.4g7q598y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280056.91YNE6dg-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280147.YRorbaqT-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280148.N1Nt6ytB-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280443.W5j7eO4Y-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280603.E3YHNVzo-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505280802.sHbtyOVR-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281128.MTV3LnwY-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281457.ZzTKocMO-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281528.FWgbJLUK-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281611.rYwqwDFF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505281622.nxl9aDmY-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505290337.UpMv109S-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291226.uUVxetsW-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291329.BZ34eEzz-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202505291449.qcY77e1i-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506050103.qcTmWVAw-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061655.Rt6FNr52-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506061824.reydkcjF-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506062019.9DntRx4K-lkp@intel.com
https://lore.kernel.org/oe-kbuild-all/202506062241.Z2ZA94Wb-lkp@intel.com
https://lore.kernel.org/oe-kbuild/202505130454.SVIc3A3h-lkp@intel.com
./drivers/crypto/sedriver/wst_se_common_type.h: 19 linux/version.h not needed.
Warning: drivers/arm/mm_monitor/spe-decoder/arm-spe-decoder.c references a file that doesn't exist: Documentation/arm64/memory.rst
aarch64-linux-ld: monitor.c:(.text+0x2bc): undefined reference to `resctrl_arch_is_mbm_core_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x28a4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0xde8): undefined reference to `resctrl_arch_is_mbm_core_enabled'
arch/arm64/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/arm64/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/arm64/kvm/hisilicon/hisi_virt.h:112:13: warning: 'hisi_ipiv_supported_per_vm' defined but not used [-Wunused-function]
arch/arm64/kvm/hisilicon/hisi_virt.h:116:13: warning: 'hisi_ipiv_enable_per_vm' defined but not used [-Wunused-function]
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/loongarch/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
arch/x86/kernel/cpu/bpf-rvi.c:129:25: warning: no previous prototype for function 'bpf_arch_flags' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kernel/cpu/proc.c:63:5: warning: no previous prototype for function 'show_cpuinfo' [-Wmissing-prototypes]
arch/x86/kvm/../../../virt/kvm/eventfd.c:1102: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
arch/x86/kvm/../../../virt/kvm/eventfd.c:719: warning: cannot understand function prototype: 'struct eventfd_shadow '
ctrlmondata.c:(.text+0x568): undefined reference to `resctrl_arch_hide_cdp'
drivers/crypto/sedriver/wst_se_echip_driver.c:1082:9: warning: no previous prototype for 'se_kernelwrite' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:114:5: warning: no previous prototype for 'se_free_dma_buf' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1175:5: warning: no previous prototype for 'se_chip_load' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:1272:6: warning: no previous prototype for 'se_chip_unload' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:150:5: warning: no previous prototype for 'se_printk_hex' [-Wmissing-prototypes]
drivers/crypto/sedriver/wst_se_echip_driver.c:95:25: warning: no previous prototype for 'se_get_dma_buf' [-Wmissing-prototypes]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:240:32: warning: unused variable 'entry' [-Wunused-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:244:13: warning: variable 'restart_fg' set but not used [-Wunused-but-set-variable]
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:256:21: warning: unused variable 'ring_index' [-Wunused-variable]
drivers/gpu/drm/sti/sti_dvo.c:531:12: error: incompatible integer to pointer conversion assigning to 'void *' from 'int' [-Wint-conversion]
drivers/gpu/drm/sti/sti_dvo.c:531:14: error: call to undeclared function 'devm_ioremap'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
drivers/irqchip/irq-gic-v3-its.c:392:15: warning: no previous prototype for 'gic_data_rdist_get_vlpi_base' [-Wmissing-prototypes]
drivers/irqchip/irq-gic-v3-its.c:392:15: warning: no previous prototype for function 'gic_data_rdist_get_vlpi_base' [-Wmissing-prototypes]
drivers/net/ethernet/huawei/hinic3/cqm/cqm_bitmap_table.c:445:23: error: invalid application of 'sizeof' to an incomplete type 'const struct free_memory[]'
drivers/net/ethernet/huawei/hinic3/hinic3_mag_cfg.c: mag_mpu_cmd_defs.h is included more than once.
drivers/net/ethernet/huawei/hinic3/hw/hinic3_hwif.c:862: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:432:6: error: no previous prototype for function 'sxe_debugfs_entries_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:459:6: error: no previous prototype for function 'sxe_debugfs_entries_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:465:6: error: no previous prototype for function 'sxe_debugfs_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_debugfs.c:470:6: error: no previous prototype for function 'sxe_debugfs_exit' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2022:5: error: no previous prototype for function 'sxe_reg_test' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ethtool.c:2644:5: error: no previous prototype for function 'sxe_phys_id_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:230:6: error: no previous prototype for function 'sxe_hw_no_snoop_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:262:6: error: no previous prototype for function 'sxe_hw_uc_addr_pool_del' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:283:5: error: no previous prototype for function 'sxe_hw_uc_addr_pool_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:337:5: error: no previous prototype for function 'sxe_hw_nic_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:367:6: error: no previous prototype for function 'sxe_hw_pf_rst_done_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:735:5: error: no previous prototype for function 'sxe_hw_pending_irq_read_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:740:6: error: no previous prototype for function 'sxe_hw_pending_irq_write_clear' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:745:5: error: no previous prototype for function 'sxe_hw_irq_cause_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:765:6: error: no previous prototype for function 'sxe_hw_ring_irq_auto_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:775:6: error: no previous prototype for function 'sxe_hw_irq_general_reg_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:780:5: error: no previous prototype for function 'sxe_hw_irq_general_reg_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:790:6: error: no previous prototype for function 'sxe_hw_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:806:6: error: no previous prototype for function 'sxe_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:823:6: error: no previous prototype for function 'sxe_hw_ring_irq_interval_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:838:6: error: no previous prototype for function 'sxe_hw_event_irq_auto_clear_set' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:843:6: error: no previous prototype for function 'sxe_hw_specific_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:848:6: error: no previous prototype for function 'sxe_hw_specific_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:876:6: error: no previous prototype for function 'sxe_hw_all_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_hw.c:994:5: error: no previous prototype for function 'sxe_hw_link_speed_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:136:5: error: no previous prototype for function 'sxe_msi_irq_init' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:182:6: error: no previous prototype for function 'sxe_disable_dcb' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:212:6: error: no previous prototype for function 'sxe_disable_rss' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:729:6: error: no previous prototype for function 'sxe_lsc_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_irq.c:745:6: error: no previous prototype for function 'sxe_mailbox_irq_handler' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_main.c:70:6: error: no previous prototype for function 'sxe_allow_inval_mac' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_phy.c:733:5: error: no previous prototype for function 'sxe_multispeed_sfp_link_configure' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1431:6: error: no previous prototype for function 'sxe_headers_cleanup' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_rx_proc.c:1569:6: error: no previous prototype for function 'sxe_rx_buffer_page_offset_update' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:1552:6: error: no previous prototype for function 'sxe_set_vf_link_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_sriov.c:766:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable]
drivers/net/ethernet/linkdata/sxe/sxepf/sxe_xdp.c:410:6: error: no previous prototype for function 'sxe_txrx_ring_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:160:6: error: no previous prototype for function 'sxevf_hw_stop' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:187:6: error: no previous prototype for function 'sxevf_msg_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:196:5: error: no previous prototype for function 'sxevf_msg_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:206:5: error: no previous prototype for function 'sxevf_mailbox_read' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:211:6: error: no previous prototype for function 'sxevf_mailbox_write' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:216:6: error: no previous prototype for function 'sxevf_pf_req_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:221:6: error: no previous prototype for function 'sxevf_pf_ack_irq_trigger' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:226:6: error: no previous prototype for function 'sxevf_event_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:245:6: error: no previous prototype for function 'sxevf_irq_enable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:251:6: error: no previous prototype for function 'sxevf_irq_disable' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:259:6: error: no previous prototype for function 'sxevf_hw_ring_irq_map' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:313:6: error: no previous prototype for function 'sxevf_hw_reset' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_hw.c:324:5: error: no previous prototype for function 'sxevf_link_state_get' [-Werror,-Wmissing-prototypes]
drivers/net/ethernet/motorcomm/yt6801/yt6801_desc.c:206:73: warning: '%u' directive output may be truncated writing between 1 and 10 bytes into a region of size 8 [-Wformat-truncation=]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:35: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/motorcomm/yt6801/yt6801_main.c:1715:42: warning: variable 'mac_hfr2' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/yunsilicon/xsc/pci/sriov_sysfs.c:911:31: warning: unused variable 'vf_type_ib' [-Wunused-const-variable]
drivers/net/ethernet/yunsilicon/xsc/pci/xsc_lag.c:1128:21: warning: variable 'bond_dev' set but not used [-Wunused-but-set-variable]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for 'ps3_pci_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:545:5: error: no previous prototype for function 'ps3_pci_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for 'ps3_pci_init_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:899:5: error: no previous prototype for function 'ps3_pci_init_complete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for 'ps3_pci_init_complete_exit' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_base.c:945:6: error: no previous prototype for function 'ps3_pci_init_complete_exit' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli.c:108:9: error: function 'ps3stor_cli_printf' might be a candidate for 'gnu_printf' format attribute [-Werror=suggest-attribute=format]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for 'ps3_dump_context_show' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_cli_debug.c:1059:5: error: no previous prototype for function 'ps3_dump_context_show' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:41:19: error: unused function 'time_for_log' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_driver_log.c:65:19: error: unused function 'time_for_file_name' [-Werror,-Wunused-function]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for 'ps3_dump_file_write' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:159:5: error: no previous prototype for function 'ps3_dump_file_write' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for 'ps3_dump_file_close' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:200:5: error: no previous prototype for function 'ps3_dump_file_close' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for 'ps3_dump_local_time' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:28:5: error: no previous prototype for function 'ps3_dump_local_time' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for 'ps3_dump_filename_build' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:50:5: error: no previous prototype for function 'ps3_dump_filename_build' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for 'ps3_dump_file_open' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/./linux/ps3_dump.c:76:5: error: no previous prototype for function 'ps3_dump_file_open' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for 'ps3_trigger_irq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:131:6: error: no previous prototype for function 'ps3_trigger_irq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for 'ps3_resp_status_convert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_complete.c:243:5: error: no previous prototype for function 'ps3_resp_status_convert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for 'ps3_io_recv_ok_stat_inc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:403:6: error: no previous prototype for function 'ps3_io_recv_ok_stat_inc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for 'ps3_cmd_stat_content_clear' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_cmd_statistics.c:85:6: error: no previous prototype for function 'ps3_cmd_stat_content_clear' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for 'ps3_dump_dir_length' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_debug.c:883:5: error: no previous prototype for function 'ps3_dump_dir_length' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for 'ps3_scsi_private_init_pd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1581:5: error: no previous prototype for function 'ps3_scsi_private_init_pd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for 'ps3_scsi_private_init_vd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager.c:1663:5: error: no previous prototype for function 'ps3_scsi_private_init_vd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for 'ps3_sas_expander_phys_refresh' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_device_manager_sas.c:1632:5: error: no previous prototype for function 'ps3_sas_expander_phys_refresh' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_instance_manager.c:669:60: error: 'snprintf' output may be truncated before the last format character [-Werror=format-truncation=]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for 'ps3_ioc_resource_prepare_hba' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:147:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_hba' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for 'ps3_ioc_resource_prepare_switch' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:36:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_switch' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for 'ps3_ioc_resource_prepare_raid' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_adp.c:88:6: error: no previous prototype for function 'ps3_ioc_resource_prepare_raid' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for 'ps3_hard_reset_to_ready' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioc_manager.c:307:5: error: no previous prototype for function 'ps3_hard_reset_to_ready' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for 'ps3_clean_mgr_cmd' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_ioctl.c:785:6: error: no previous prototype for function 'ps3_clean_mgr_cmd' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:21:27: error: unused variable 'PS3_INTERRUPT_CMD_DISABLE_ALL_MASK' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: 'PS3_INTERRUPT_CMD_ENABLE_MSIX' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:22:27: error: unused variable 'PS3_INTERRUPT_CMD_ENABLE_MSIX' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: 'PS3_INTERRUPT_MASK_DISABLE' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:23:27: error: unused variable 'PS3_INTERRUPT_MASK_DISABLE' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: 'PS3_INTERRUPT_STATUS_EXIST_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:24:27: error: unused variable 'PS3_INTERRUPT_STATUS_EXIST_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: 'PS3_INTERRUPT_CLEAR_IRQ' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:25:27: error: unused variable 'PS3_INTERRUPT_CLEAR_IRQ' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: 'PS3_SSD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:27:27: error: unused variable 'PS3_SSD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: 'PS3_HDD_IOPS_MSIX_VECTORS' defined but not used [-Werror=unused-const-variable=]
drivers/scsi/linkdata/ps3stor/ps3_irq.c:28:27: error: unused variable 'PS3_HDD_IOPS_MSIX_VECTORS' [-Werror,-Wunused-const-variable]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for 'ps3_cli_ver_query' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_module_para.c:609:14: error: no previous prototype for function 'ps3_cli_ver_query' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for 'ps3_qos_pd_waitq_ratio_update' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:1058:6: error: no previous prototype for function 'ps3_qos_pd_waitq_ratio_update' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for 'ps3_hba_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2019:15: error: no previous prototype for function 'ps3_hba_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for 'ps3_hba_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2040:6: error: no previous prototype for function 'ps3_hba_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for 'ps3_cmd_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2100:6: error: no previous prototype for function 'ps3_cmd_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for 'ps3_qos_cmd_waitq_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:211:1: error: no previous prototype for function 'ps3_qos_cmd_waitq_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for 'ps3_hba_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2463:6: error: no previous prototype for function 'ps3_hba_qos_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for 'ps3_hba_qos_vd_init' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2827:6: error: no previous prototype for function 'ps3_hba_qos_vd_init' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for 'ps3_hba_qos_vd_reset' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:2936:6: error: no previous prototype for function 'ps3_hba_qos_vd_reset' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for 'ps3_hba_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3023:6: error: no previous prototype for function 'ps3_hba_qos_waitq_poll' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for 'ps3_raid_qos_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3279:15: error: no previous prototype for function 'ps3_raid_qos_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for 'ps3_qos_mgrq_resend' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3334:6: error: no previous prototype for function 'ps3_qos_mgrq_resend' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for 'ps3_qos_vd_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:335:15: error: no previous prototype for function 'ps3_qos_vd_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for 'ps3_raid_qos_waitq_notify' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3478:6: error: no previous prototype for function 'ps3_raid_qos_waitq_notify' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for 'ps3_qos_exclusive_cmdword_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:351:15: error: no previous prototype for function 'ps3_qos_exclusive_cmdword_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for 'ps3_qos_tg_decision' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:363:15: error: no previous prototype for function 'ps3_qos_tg_decision' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for 'ps3_raid_qos_waitq_abort' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:3821:15: error: no previous prototype for function 'ps3_raid_qos_waitq_abort' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4022:6: error: no previous prototype for 'ps3_raid_qos_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:4083:6: error: no previous prototype for 'ps3_raid_qos_waitq_poll' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for 'ps3_qos_all_pd_rc_get' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:749:15: error: no previous prototype for function 'ps3_qos_all_pd_rc_get' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for 'ps3_pd_quota_waitq_clear_all' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:876:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clear_all' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for 'ps3_pd_quota_waitq_clean' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_qos.c:892:6: error: no previous prototype for function 'ps3_pd_quota_waitq_clean' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for 'ps3_range_check_and_insert' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1173:5: error: no previous prototype for function 'ps3_range_check_and_insert' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for 'ps3_r1x_hash_range_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1231:5: error: no previous prototype for function 'ps3_r1x_hash_range_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for 'ps3_r1x_hash_range_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:1312:6: error: no previous prototype for function 'ps3_r1x_hash_range_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for 'ps3_r1x_hash_bit_check' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:578:5: error: no previous prototype for function 'ps3_r1x_hash_bit_check' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:678:6: error: no previous prototype for function 'ps3_r1x_conflict_queue_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for 'ps3_r1x_hash_bit_lock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:730:5: error: no previous prototype for function 'ps3_r1x_hash_bit_lock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for 'ps3_r1x_hash_bit_unlock' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_r1x_write_lock.c:988:6: error: no previous prototype for function 'ps3_r1x_hash_bit_unlock' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for 'rbtDelNodeDo' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_rb_tree.c:154:6: error: no previous prototype for function 'rbtDelNodeDo' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for 'ps3_recovery_irq_queue_destroy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:204:6: error: no previous prototype for function 'ps3_recovery_irq_queue_destroy' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for 'ps3_hard_recovery_state_finish' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:2700:6: error: no previous prototype for function 'ps3_hard_recovery_state_finish' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:363:5: error: no previous prototype for 'ps3_recovery_state_transfer' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for 'ps3_recovery_context_alloc' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:72:30: error: no previous prototype for function 'ps3_recovery_context_alloc' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for 'ps3_recovery_context_free' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:82:6: error: no previous prototype for function 'ps3_recovery_context_free' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for 'ps3_recovery_context_delete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_recovery.c:88:6: error: no previous prototype for function 'ps3_recovery_context_delete' [-Werror,-Wmissing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_sas_transport.c:407:5: error: no previous prototype for 'ps3_sas_update_phy_info' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:1110:5: error: no previous prototype for 'ps3_wait_for_outstanding_complete' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsi_cmd_err.c:876:6: error: no previous prototype for 'ps3_set_task_manager_busy' [-Werror=missing-prototypes]
drivers/scsi/linkdata/ps3stor/ps3_scsih.c:1958:1: error: unused function 'ps3_scsih_dev_id_get' [-Werror,-Wunused-function]
fs/nfs/dir.c:1498:6: warning: no previous prototype for 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/dir.c:1498:6: warning: no previous prototype for function 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:127: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/dns_process.c:129:6: warning: no previous prototype for function 'enfs_swap_name_cache' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:148:6: warning: no previous prototype for function 'enfs_domain_inc' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:217:6: warning: no previous prototype for function 'ip_list_append' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:361:5: warning: no previous prototype for function 'enfs_quick_sort' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:394:5: warning: no previous prototype for function 'enfs_dns_process_ip' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:434:5: warning: no previous prototype for function 'enfs_server_query_dns' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:494:6: warning: no previous prototype for function 'query_dns_each_name' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:582:5: warning: no previous prototype for function 'enfs_iter_nfs_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:669:6: warning: no previous prototype for function 'enfs_domain_for_each' [-Wmissing-prototypes]
fs/nfs/enfs/dns_process.c:92:6: warning: no previous prototype for function 'enfs_update_domain_name' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_config.c:554:6: warning: no previous prototype for function 'enfs_glob_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:100:6: warning: no previous prototype for function 'enfs_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_init.c:95:9: warning: no previous prototype for function 'enfs_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:112:6: warning: no previous prototype for function 'enfs_update_lookup_cache_flag_to_server' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:146:5: warning: no previous prototype for function 'enfs_query_lookup_cache' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:251:6: warning: no previous prototype for function 'enfs_query_lookup_cache_pre_check' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:269:6: warning: no previous prototype for function 'lookupcache_execute_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:292:6: warning: no previous prototype for function 'lookupcache_workqueue_queue_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:305:5: warning: no previous prototype for function 'lookupcache_add_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:374:6: warning: no previous prototype for function 'lookupcache_loop_rpclnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:423:6: warning: no previous prototype for function 'enfs_lookupcache_update_switch' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:440:5: warning: no previous prototype for function 'lookupcache_routine' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:460:5: warning: no previous prototype for function 'lookupcache_start' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:471:5: warning: no previous prototype for function 'enfs_lookupcache_workqueue_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:487:6: warning: no previous prototype for function 'lookupcache_workqueue_fini' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:504:5: warning: no previous prototype for function 'enfs_lookupcache_timer_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_lookup_cache.c:98:6: warning: no previous prototype for function 'enfs_clean_server_lookup_cache_flag' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:179: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
fs/nfs/enfs/enfs_multipath.c:321:5: warning: no previous prototype for function 'enfs_configure_xprt_to_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:357:6: warning: no previous prototype for function 'enfs_cmp_addrs' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:374:6: warning: no previous prototype for function 'enfs_xprt_addrs_is_same' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:393:6: warning: no previous prototype for function 'enfs_already_have_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:589:6: warning: variable 'link_count' set but not used [-Wunused-but-set-variable]
fs/nfs/enfs/enfs_multipath.c:836:5: warning: no previous prototype for function 'enfs_multipath_create_thread' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:932:6: warning: no previous prototype for function 'enfs_create_multi_xprt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath.c:988:6: warning: no previous prototype for function 'enfs_release_rpc_clnt' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:120:6: warning: no previous prototype for function 'enfs_free_client_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:135:6: warning: no previous prototype for function 'nfs_multipath_client_info_free_work' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:191:6: warning: no previous prototype for function 'nfs_multipath_ip_list_info_match' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:328:6: warning: no previous prototype for function 'print_ip_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:352:6: warning: no previous prototype for function 'print_dns_info' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:390:6: warning: no previous prototype for function 'convert_lookup_cache_str' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_client.c:72:5: warning: no previous prototype for function 'nfs_multipath_client_mount_info_init' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:162:5: warning: no previous prototype for function 'enfs_parse_ip_single' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:236:6: warning: no previous prototype for function 'enfs_valid_ip' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:24:6: warning: no previous prototype for function 'nfs_multipath_parse_ip_ipv6_add' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:361:6: warning: no previous prototype for function 'isInvalidDns' [-Wmissing-prototypes]
fs/nfs/enfs/enfs_multipath_parse.c:387:5: warning: no previous prototype for function 'nfs_multipath_parse_dns_list' [-Wmissing-prototypes]
include/trace/stages/init.h:2:23: warning: 'str__bonding__trace_system_name' defined but not used [-Wunused-const-variable=]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5224:28: warning: no previous prototype for function 'bpf_cpuset_from_task' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/cgroup/cpuset.c:5231:26: warning: no previous prototype for function 'bpf_cpumask_weight' [-Wmissing-prototypes]
kernel/sched/core.c:158:5: warning: no previous prototype for 'sched_task_is_throttled' [-Wmissing-prototypes]
kismet: WARNING: unmet direct dependencies detected for ARM64_ERRATUM_845719 when selected by ARCH_MXC
kismet: WARNING: unmet direct dependencies detected for ARM_SPE_MEM_SAMPLING when selected by MEM_SAMPLING
kismet: WARNING: unmet direct dependencies detected for DEBUG_FEATURE_BYPASS when selected by FAST_IRQ
kismet: WARNING: unmet direct dependencies detected for DEBUG_FEATURE_BYPASS when selected by FAST_SYSCALL
kismet: WARNING: unmet direct dependencies detected for MOTORCOMM_PHY when selected by YT6801
kismet: WARNING: unmet direct dependencies detected for RESCTRL_FS when selected by ARM64_MPAM
mm/damon/core.c:116:5: warning: no previous prototype for function 'damon_target_init_kfifo' [-Wmissing-prototypes]
mm/damon/core.c:132:6: warning: no previous prototype for function 'damon_target_deinit_kfifo' [-Wmissing-prototypes]
mm/dynamic_pool.c:1704:51: warning: variable 'ret' is uninitialized when used here [-Wuninitialized]
mm/madvise.c:297:6: warning: no previous prototype for 'force_swapin_vma' [-Wmissing-prototypes]
mm/madvise.c:297:6: warning: no previous prototype for function 'force_swapin_vma' [-Wmissing-prototypes]
mm/mem_sampling.c:69:6: warning: no previous prototype for function 'mem_sampling_record_cb_register' [-Wmissing-prototypes]
mm/mem_sampling.c:86:6: warning: no previous prototype for function 'mem_sampling_record_cb_unregister' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1448:20: warning: no previous prototype for function 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes]
mm/memblock.c:1618: warning: expecting prototype for memblock_alloc_internal(). Prototype was for __memblock_alloc_internal() instead
mm/memcontrol.c:3382:6: warning: no previous prototype for function 'hisi_oom_recover' [-Wmissing-prototypes]
mm/memcontrol.c:4733:12: warning: 'mem_cgroup_check_swap_for_v1' defined but not used [-Wunused-function]
mm/mempolicy.c:1115:25: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/mempolicy.c:1115:32: warning: variable 'vma' set but not used [-Wunused-but-set-variable]
mm/oom_kill.c:319: warning: Function parameter or member 'oc' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'points' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: Function parameter or member 'task' not described in 'oom_next_task'
mm/oom_kill.c:319: warning: expecting prototype for We choose the task in low(). Prototype was for oom_next_task() instead
mm/page_cache_limit.c:61:5: warning: no previous prototype for 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:61:5: warning: no previous prototype for function 'cache_reclaim_enable_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:77:5: warning: no previous prototype for function 'cache_reclaim_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/page_cache_limit.c:94:5: warning: no previous prototype for function 'cache_limit_mbytes_sysctl_handler' [-Wmissing-prototypes]
mm/share_pool.c:1510: warning: Function parameter or member 'node_id' not described in 'sp_area_alloc'
mm/share_pool.c:2425: warning: duplicate section name 'Return'
mm/share_pool.c:2796:7: warning: variable 'is_hugepage' set but not used [-Wunused-but-set-variable]
mm/share_pool.c:2844: warning: Function parameter or member 'spg_id' not described in 'mg_sp_unshare'
mm/share_pool.c:975: warning: expecting prototype for mp_sp_group_id_by_pid(). Prototype was for mg_sp_group_id_by_pid() instead
mm/vmalloc.c:4976: warning: Function parameter or member 'pgoff' not described in 'remap_vmalloc_hugepage_range_partial'
mpam.c:(.text+0x74): undefined reference to `resctrl_arch_get_resource'
Unverified Error/Warning (likely false positive, kindly check if interested):
arch/loongarch/kernel/ptrace.o: warning: objtool: fpr_set+0xf4: unreachable instruction
arch/loongarch/kernel/vdso.o: warning: objtool: init_vdso+0xfc: unreachable instruction
block/bio.o: warning: objtool: bio_split+0x84: unreachable instruction
block/blk-merge.o: warning: objtool: __blk_bios_map_sg+0x320: unreachable instruction
block/blk-merge.o: warning: objtool: __blk_rq_map_sg+0xc4: unreachable instruction
block/blk-throttle.o: warning: objtool: tg_dispatch_one_bio+0x144: unreachable instruction
block/mq-deadline.o: warning: objtool: __dd_dispatch_request+0x294: unreachable instruction
crypto/af_alg.o: warning: objtool: af_alg_pull_tsgl+0x2b8: unreachable instruction
crypto/af_alg.o: warning: objtool: af_alg_sendmsg+0x43c: unreachable instruction
crypto/async_tx/async_pq.o: warning: objtool: do_sync_gen_syndrome+0xb8: unreachable instruction
crypto/ccm.o: warning: objtool: crypto_ccm_auth+0x138: unreachable instruction
crypto/ccm.o: warning: objtool: crypto_rfc4309_crypt+0x100: unreachable instruction
crypto/drbg.o: warning: objtool: drbg_kcapi_sym_ctr+0xb8: unreachable instruction
crypto/essiv.o: warning: objtool: essiv_aead_crypt+0x1fc: unreachable instruction
crypto/gcm.o: warning: objtool: crypto_gcm_init_common+0xc8: unreachable instruction
crypto/gcm.o: warning: objtool: crypto_rfc4106_crypt+0xf0: unreachable instruction
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.o: warning: objtool: amdgpu_ttm_access_memory+0x374: unreachable instruction
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.o: warning: objtool: amdgpu_ttm_copy_mem_to_mem+0x514: unreachable instruction
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.o: warning: objtool: gfx_v10_0_ring_emit_patch_cond_exec+0x8c: unreachable instruction
drivers/gpu/drm/amd/amdgpu/gfx_v11_0.o: warning: objtool: gfx_v11_0_ring_emit_patch_cond_exec+0x8c: unreachable instruction
drivers/gpu/drm/amd/amdgpu/gfx_v8_0.o: warning: objtool: gfx_v8_0_ring_emit_patch_cond_exec+0x8c: unreachable instruction
drivers/gpu/drm/amd/amdgpu/gfx_v9_0.o: warning: objtool: gfx_v9_0_ring_emit_patch_cond_exec+0x8c: unreachable instruction
drivers/gpu/drm/amd/amdgpu/sdma_v5_0.o: warning: objtool: sdma_v5_0_ring_patch_cond_exec+0x8c: unreachable instruction
drivers/gpu/drm/amd/amdgpu/sdma_v5_2.o: warning: objtool: sdma_v5_2_ring_patch_cond_exec+0x8c: unreachable instruction
drivers/gpu/drm/amd/amdgpu/sdma_v6_0.o: warning: objtool: sdma_v6_0_ring_patch_cond_exec+0x8c: unreachable instruction
drivers/md/bcache/btree.o: warning: objtool: do_btree_node_write+0x398: unreachable instruction
drivers/md/bcache/extents.o: warning: objtool: bch_extent_sort_fixup+0x334: unreachable instruction
drivers/md/bcache/request.o: warning: objtool: cached_dev_read_done+0x1dc: unreachable instruction
drivers/net/ethernet/yunsilicon/xsc/net/xsc_eth_sysfs.c: linux/types.h is included more than once.
drivers/scsi/scsi_error.o: warning: objtool: scsi_abort_command+0x134: unreachable instruction
drivers/virtio/virtio_ring.o: warning: objtool: virtqueue_add_inbuf+0xfc: unreachable instruction
drivers/virtio/virtio_ring.o: warning: objtool: virtqueue_add_inbuf_ctx+0xb4: unreachable instruction
drivers/virtio/virtio_ring.o: warning: objtool: virtqueue_add_sgs+0x150: unreachable instruction
fs/nfs/enfs/enfs_multipath.c: enfs_multipath.h is included more than once.
include/net/tcp.h: linux/kabi.h is included more than once.
Error/Warning ids grouped by kconfigs:
recent_errors
|-- arm64-allmodconfig
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-function-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_bitmap_table.c:error:invalid-application-of-sizeof-to-an-incomplete-type-const-struct-free_memory
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-net-ethernet-yunsilicon-xsc-pci-sriov_sysfs.c:warning:unused-variable-vf_type_ib
| |-- drivers-net-ethernet-yunsilicon-xsc-pci-xsc_lag.c:warning:variable-bond_dev-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_deinit_kfifo
| |-- mm-damon-core.c:warning:no-previous-prototype-for-function-damon_target_init_kfifo
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_register
| |-- mm-mem_sampling.c:warning:no-previous-prototype-for-function-mem_sampling_record_cb_unregister
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:no-previous-prototype-for-function-hisi_oom_recover
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-share_pool.c:warning:Function-parameter-or-member-node_id-not-described-in-sp_area_alloc
| |-- mm-share_pool.c:warning:Function-parameter-or-member-spg_id-not-described-in-mg_sp_unshare
| |-- mm-share_pool.c:warning:duplicate-section-name-Return
| |-- mm-share_pool.c:warning:expecting-prototype-for-mp_sp_group_id_by_pid().-Prototype-was-for-mg_sp_group_id_by_pid()-instead
| |-- mm-share_pool.c:warning:variable-is_hugepage-set-but-not-used
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- arm64-allnoconfig
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-ARM64_ERRATUM_845719-when-selected-by-ARCH_MXC
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-ARM_SPE_MEM_SAMPLING-when-selected-by-MEM_SAMPLING
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DEBUG_FEATURE_BYPASS-when-selected-by-FAST_IRQ
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-DEBUG_FEATURE_BYPASS-when-selected-by-FAST_SYSCALL
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-MOTORCOMM_PHY-when-selected-by-YT6801
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-RESCTRL_FS-when-selected-by-ARM64_MPAM
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-defconfig
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- arch-arm64-kvm-hisilicon-hisi_virt.h:warning:hisi_ipiv_enable_per_vm-defined-but-not-used
| |-- arch-arm64-kvm-hisilicon-hisi_virt.h:warning:hisi_ipiv_supported_per_vm-defined-but-not-used
| |-- drivers-irqchip-irq-gic-v3-its.c:warning:no-previous-prototype-for-gic_data_rdist_get_vlpi_base
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-001-20250606
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-002-20250606
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-arm64-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-003-20250606
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-004-20250606
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- arm64-randconfig-r054-20250606
| |-- aarch64-linux-ld:monitor.c:(.text):undefined-reference-to-resctrl_arch_is_mbm_core_enabled
| |-- aarch64-linux-ld:rdtgroup.c:(.text):undefined-reference-to-resctrl_arch_is_mbm_core_enabled
| |-- aarch64-linux-ld:rdtgroup.c:(.text):undefined-reference-to-resctrl_arch_would_mbm_overflow
| |-- ctrlmondata.c:(.text):undefined-reference-to-resctrl_arch_hide_cdp
| `-- mpam.c:(.text):undefined-reference-to-resctrl_arch_get_resource
|-- loongarch-allmodconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete_exit
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli.c:error:function-ps3stor_cli_printf-might-be-a-candidate-for-gnu_printf-format-attribute
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-ps3_dump_context_show
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_close
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_open
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_write
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_filename_build
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_local_time
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_resp_status_convert
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_trigger_irq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_cmd_stat_content_clear
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_io_recv_ok_stat_inc
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-ps3_dump_dir_length
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_pd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_vd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-ps3_sas_expander_phys_refresh
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:error:snprintf-output-may-be-truncated-before-the-last-format-character
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_hba
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_raid
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_switch
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-ps3_hard_reset_to_ready
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-ps3_clean_mgr_cmd
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_HDD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CLEAR_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_ENABLE_MSIX-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_MASK_DISABLE-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_STATUS_EXIST_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_SSD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-ps3_cli_ver_query
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_cmd_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_init
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_reset
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clean
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_all_pd_rc_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_cmd_waitq_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_exclusive_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_mgrq_resend
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_pd_waitq_ratio_update
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_tg_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_vd_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_conflict_queue_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_check
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_range_check_and_insert
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-rbtDelNodeDo
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_hard_recovery_state_finish
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_alloc
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_delete
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_free
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_irq_queue_destroy
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_state_transfer
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-ps3_sas_update_phy_info
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_set_task_manager_busy
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_wait_for_outstanding_complete
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- include-trace-stages-init.h:warning:str__bonding__trace_system_name-defined-but-not-used
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpuset_from_task
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_sysctl_handler
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allnoconfig
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-MOTORCOMM_PHY-when-selected-by-YT6801
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-allyesconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-ps3_pci_init_complete_exit
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli.c:error:function-ps3stor_cli_printf-might-be-a-candidate-for-gnu_printf-format-attribute
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-ps3_dump_context_show
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_close
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_open
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_file_write
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_filename_build
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-ps3_dump_local_time
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_resp_status_convert
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-ps3_trigger_irq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_cmd_stat_content_clear
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-ps3_io_recv_ok_stat_inc
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-ps3_dump_dir_length
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_pd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-ps3_scsi_private_init_vd
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-ps3_sas_expander_phys_refresh
| |-- drivers-scsi-linkdata-ps3stor-ps3_instance_manager.c:error:snprintf-output-may-be-truncated-before-the-last-format-character
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_hba
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_raid
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-ps3_ioc_resource_prepare_switch
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-ps3_hard_reset_to_ready
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-ps3_clean_mgr_cmd
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_HDD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CLEAR_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_CMD_ENABLE_MSIX-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_MASK_DISABLE-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_INTERRUPT_STATUS_EXIST_IRQ-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:PS3_SSD_IOPS_MSIX_VECTORS-defined-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-ps3_cli_ver_query
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_cmd_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_init
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_vd_reset
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_hba_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clean
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_pd_quota_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_all_pd_rc_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_cmd_waitq_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_exclusive_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_mgrq_resend
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_pd_waitq_ratio_update
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_tg_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_qos_vd_cmdword_get
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_decision
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_abort
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_clear_all
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_notify
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-ps3_raid_qos_waitq_poll
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_conflict_queue_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_check
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_bit_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_lock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_r1x_hash_range_unlock
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-ps3_range_check_and_insert
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-rbtDelNodeDo
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_hard_recovery_state_finish
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_alloc
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_delete
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_context_free
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_irq_queue_destroy
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-ps3_recovery_state_transfer
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-ps3_sas_update_phy_info
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_set_task_manager_busy
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-ps3_wait_for_outstanding_complete
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- include-trace-stages-init.h:warning:str__bonding__trace_system_name-defined-but-not-used
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-bpf_cpuset_from_task
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-cache_reclaim_sysctl_handler
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-defconfig
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-loongarch-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_load
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_chip_unload
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_free_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_get_dma_buf
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_kernelwrite
| |-- drivers-crypto-sedriver-wst_se_echip_driver.c:warning:no-previous-prototype-for-se_printk_hex
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_desc.c:warning:u-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-001-20250606
| |-- arch-loongarch-kernel-ptrace.o:warning:objtool:fpr_set:unreachable-instruction
| |-- arch-loongarch-kernel-vdso.o:warning:objtool:init_vdso:unreachable-instruction
| |-- block-bio.o:warning:objtool:bio_split:unreachable-instruction
| |-- block-blk-merge.o:warning:objtool:__blk_bios_map_sg:unreachable-instruction
| |-- block-blk-merge.o:warning:objtool:__blk_rq_map_sg:unreachable-instruction
| |-- block-blk-throttle.o:warning:objtool:tg_dispatch_one_bio:unreachable-instruction
| |-- block-mq-deadline.o:warning:objtool:__dd_dispatch_request:unreachable-instruction
| |-- crypto-af_alg.o:warning:objtool:af_alg_pull_tsgl:unreachable-instruction
| |-- crypto-af_alg.o:warning:objtool:af_alg_sendmsg:unreachable-instruction
| |-- crypto-async_tx-async_pq.o:warning:objtool:do_sync_gen_syndrome:unreachable-instruction
| |-- crypto-ccm.o:warning:objtool:crypto_ccm_auth:unreachable-instruction
| |-- crypto-ccm.o:warning:objtool:crypto_rfc4309_crypt:unreachable-instruction
| |-- crypto-drbg.o:warning:objtool:drbg_kcapi_sym_ctr:unreachable-instruction
| |-- crypto-essiv.o:warning:objtool:essiv_aead_crypt:unreachable-instruction
| |-- crypto-gcm.o:warning:objtool:crypto_gcm_init_common:unreachable-instruction
| |-- crypto-gcm.o:warning:objtool:crypto_rfc4106_crypt:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-entry
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:unused-variable-ring_index
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ih.c:warning:variable-restart_fg-set-but-not-used
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ttm.o:warning:objtool:amdgpu_ttm_access_memory:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-amdgpu_ttm.o:warning:objtool:amdgpu_ttm_copy_mem_to_mem:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-gfx_v10_0.o:warning:objtool:gfx_v10_0_ring_emit_patch_cond_exec:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-gfx_v11_0.o:warning:objtool:gfx_v11_0_ring_emit_patch_cond_exec:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-gfx_v8_0.o:warning:objtool:gfx_v8_0_ring_emit_patch_cond_exec:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-gfx_v9_0.o:warning:objtool:gfx_v9_0_ring_emit_patch_cond_exec:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-sdma_v5_0.o:warning:objtool:sdma_v5_0_ring_patch_cond_exec:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-sdma_v5_2.o:warning:objtool:sdma_v5_2_ring_patch_cond_exec:unreachable-instruction
| |-- drivers-gpu-drm-amd-amdgpu-sdma_v6_0.o:warning:objtool:sdma_v6_0_ring_patch_cond_exec:unreachable-instruction
| |-- drivers-md-bcache-btree.o:warning:objtool:do_btree_node_write:unreachable-instruction
| |-- drivers-md-bcache-extents.o:warning:objtool:bch_extent_sort_fixup:unreachable-instruction
| |-- drivers-md-bcache-request.o:warning:objtool:cached_dev_read_done:unreachable-instruction
| |-- drivers-scsi-scsi_error.o:warning:objtool:scsi_abort_command:unreachable-instruction
| |-- drivers-virtio-virtio_ring.o:warning:objtool:virtqueue_add_inbuf:unreachable-instruction
| |-- drivers-virtio-virtio_ring.o:warning:objtool:virtqueue_add_inbuf_ctx:unreachable-instruction
| |-- drivers-virtio-virtio_ring.o:warning:objtool:virtqueue_add_sgs:unreachable-instruction
| |-- fs-buffer.o:warning:objtool:folio_zero_new_buffers:unreachable-instruction
| |-- fs-dcache.o:warning:objtool:d_splice_alias:unreachable-instruction
| |-- fs-f2fs-checkpoint.o:warning:objtool:f2fs_checkpoint_chksum:unreachable-instruction
| |-- fs-f2fs-data.o:warning:objtool:f2fs_mpage_readpages:unreachable-instruction
| |-- fs-f2fs-inode.o:warning:objtool:f2fs_inode_chksum:unreachable-instruction
| |-- fs-f2fs-super.o:warning:objtool:f2fs_commit_super:unreachable-instruction
| |-- fs-f2fs-super.o:warning:objtool:f2fs_fill_super:unreachable-instruction
| |-- fs-f2fs-super.o:warning:objtool:sanity_check_raw_super:unreachable-instruction
| |-- fs-gfs2-bmap.o:warning:objtool:__gfs2_unstuff_inode:unreachable-instruction
| |-- fs-gfs2-dir.o:warning:objtool:dir_make_exhash:unreachable-instruction
| |-- fs-gfs2-glock.o:warning:objtool:find_insert_glock:unreachable-instruction
| |-- fs-gfs2-glock.o:warning:objtool:gfs2_glock_nq:unreachable-instruction
| |-- fs-gfs2-quota.o:warning:objtool:gfs2_quota_init:unreachable-instruction
| |-- fs-gfs2-rgrp.o:warning:objtool:gfs2_adjust_reservation:unreachable-instruction
| |-- fs-gfs2-rgrp.o:warning:objtool:gfs2_alloc_extent:unreachable-instruction
| |-- fs-gfs2-xattr.o:warning:objtool:ea_alloc_blk:unreachable-instruction
| |-- fs-gfs2-xattr.o:warning:objtool:ea_set_block:unreachable-instruction
| |-- fs-jfs-jfs_metapage.o:warning:objtool:metapage_writepage:unreachable-instruction
| |-- fs-jfs-jfs_metapage.o:warning:objtool:release_metapage:unreachable-instruction
| |-- fs-nilfs2-page.o:warning:objtool:nilfs_clear_dirty_page:unreachable-instruction
| |-- fs-nilfs2-page.o:warning:objtool:nilfs_copy_page:unreachable-instruction
| |-- fs-ntfs3-file.o:warning:objtool:ntfs_zero_range:unreachable-instruction
| |-- fs-seq_file.o:warning:objtool:seq_dentry:unreachable-instruction
| |-- fs-seq_file.o:warning:objtool:seq_escape_mem:unreachable-instruction
| |-- fs-seq_file.o:warning:objtool:seq_hex_dump:unreachable-instruction
| |-- fs-seq_file.o:warning:objtool:seq_path:unreachable-instruction
| |-- fs-seq_file.o:warning:objtool:seq_path_root:unreachable-instruction
| |-- fs-ufs-balloc.o:warning:objtool:ufs_change_blocknr:unreachable-instruction
| |-- fs-xfs-xfs_buf.o:warning:objtool:xfs_buf_find_insert:unreachable-instruction
| |-- kernel-dma-swiotlb.o:warning:objtool:swiotlb_area_find_slots:unreachable-instruction
| |-- kernel-sched-core.o:warning:objtool:idle_task_exit:unreachable-instruction
| |-- lib-scatterlist.o:warning:objtool:extract_iter_to_sg:unreachable-instruction
| |-- lib-scatterlist.o:warning:objtool:extract_kvec_to_sg:unreachable-instruction
| |-- lib-scatterlist.o:warning:objtool:extract_user_to_sg:unreachable-instruction
| |-- lib-scatterlist.o:warning:objtool:sg_alloc_append_table_from_pages:unreachable-instruction
| |-- lib-scatterlist.o:warning:objtool:sg_init_one:unreachable-instruction
| |-- lib-scatterlist.o:warning:objtool:sgl_alloc_order:unreachable-instruction
| |-- mm-huge_memory.o:warning:objtool:__split_huge_pmd_locked:unreachable-instruction
| |-- mm-list_lru.o:warning:objtool:__list_lru_walk_one:unreachable-instruction
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mmap.o:warning:objtool:mm_drop_all_locks:unreachable-instruction
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-slub.o:warning:objtool:early_kmem_cache_node_alloc:unreachable-instruction
| |-- mm-truncate.o:warning:objtool:invalidate_inode_pages2_range:unreachable-instruction
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| |-- net-atm-resources.o:warning:objtool:atm_dev_deregister:unreachable-instruction
| |-- net-core-filter.o:warning:objtool:bpf_msg_pop_data:unreachable-instruction
| |-- net-core-filter.o:warning:objtool:bpf_msg_pull_data:unreachable-instruction
| |-- net-core-filter.o:warning:objtool:bpf_msg_push_data:unreachable-instruction
| |-- net-core-rtnetlink.o:warning:objtool:rtnl_unregister:unreachable-instruction
| |-- net-core-skbuff.o:warning:objtool:skb_pull_rcsum:unreachable-instruction
| `-- net-netlink-af_netlink.o:warning:objtool:__netlink_insert:unreachable-instruction
|-- loongarch-randconfig-002-20250606
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-r051-20250606
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- loongarch-randconfig-r064-20250606
| |-- include-linux-suspend.h:error:expected-)-before-numeric-constant
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allnoconfig
| |-- Warning:drivers-arm-mm_monitor-spe-decoder-arm-spe-decoder.c-references-a-file-that-doesn-t-exist:Documentation-arm64-memory.rst
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- drivers-crypto-sedriver-wst_se_common_type.h:linux-version.h-not-needed.
| |-- drivers-net-ethernet-huawei-hinic3-hinic3_mag_cfg.c:mag_mpu_cmd_defs.h-is-included-more-than-once.
| |-- drivers-net-ethernet-yunsilicon-xsc-net-xsc_eth_sysfs.c:linux-types.h-is-included-more-than-once.
| |-- fs-nfs-enfs-enfs_multipath.c:enfs_multipath.h-is-included-more-than-once.
| |-- include-net-tcp.h:linux-kabi.h-is-included-more-than-once.
| |-- kismet:WARNING:unmet-direct-dependencies-detected-for-MOTORCOMM_PHY-when-selected-by-YT6801
| |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-allyesconfig
| |-- arch-x86-kernel-cpu-bpf-rvi.c:warning:no-previous-prototype-for-function-bpf_arch_flags
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- drivers-gpu-drm-sti-sti_dvo.c:error:call-to-undeclared-function-devm_ioremap-ISO-C99-and-later-do-not-support-implicit-function-declarations
| |-- drivers-gpu-drm-sti-sti_dvo.c:error:incompatible-integer-to-pointer-conversion-assigning-to-void-from-int
| |-- drivers-net-ethernet-huawei-hinic3-cqm-cqm_bitmap_table.c:error:invalid-application-of-sizeof-to-an-incomplete-type-const-struct-free_memory
| |-- drivers-net-ethernet-huawei-hinic3-hw-hinic3_hwif.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
| |-- drivers-net-ethernet-motorcomm-yt6801-yt6801_main.c:warning:variable-mac_hfr2-set-but-not-used
| |-- drivers-net-ethernet-yunsilicon-xsc-pci-sriov_sysfs.c:warning:unused-variable-vf_type_ib
| |-- drivers-net-ethernet-yunsilicon-xsc-pci-xsc_lag.c:warning:variable-bond_dev-set-but-not-used
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_base.c:error:no-previous-prototype-for-function-ps3_pci_init_complete_exit-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_cli_debug.c:error:no-previous-prototype-for-function-ps3_dump_context_show-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_file_name-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_driver_log.c:error:unused-function-time_for_log-Werror-Wunused-function
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_close-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_open-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_file_write-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_filename_build-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-.-linux-ps3_dump.c:error:no-previous-prototype-for-function-ps3_dump_local_time-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_resp_status_convert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_complete.c:error:no-previous-prototype-for-function-ps3_trigger_irq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_cmd_stat_content_clear-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_cmd_statistics.c:error:no-previous-prototype-for-function-ps3_io_recv_ok_stat_inc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_debug.c:error:no-previous-prototype-for-function-ps3_dump_dir_length-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_pd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager.c:error:no-previous-prototype-for-function-ps3_scsi_private_init_vd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_device_manager_sas.c:error:no-previous-prototype-for-function-ps3_sas_expander_phys_refresh-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_hba-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_raid-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_adp.c:error:no-previous-prototype-for-function-ps3_ioc_resource_prepare_switch-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioc_manager.c:error:no-previous-prototype-for-function-ps3_hard_reset_to_ready-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_ioctl.c:error:no-previous-prototype-for-function-ps3_clean_mgr_cmd-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_HDD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CLEAR_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_DISABLE_ALL_MASK-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_CMD_ENABLE_MSIX-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_MASK_DISABLE-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_INTERRUPT_STATUS_EXIST_IRQ-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_irq.c:error:unused-variable-PS3_SSD_IOPS_MSIX_VECTORS-Werror-Wunused-const-variable
| |-- drivers-scsi-linkdata-ps3stor-ps3_module_para.c:error:no-previous-prototype-for-function-ps3_cli_ver_query-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_cmd_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_init-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_vd_reset-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_hba_qos_waitq_poll-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clean-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_pd_quota_waitq_clear_all-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_all_pd_rc_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_cmd_waitq_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_exclusive_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_mgrq_resend-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_pd_waitq_ratio_update-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_tg_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_qos_vd_cmdword_get-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_decision-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_abort-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_qos.c:error:no-previous-prototype-for-function-ps3_raid_qos_waitq_notify-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_conflict_queue_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_check-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_bit_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_lock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_r1x_hash_range_unlock-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_r1x_write_lock.c:error:no-previous-prototype-for-function-ps3_range_check_and_insert-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_rb_tree.c:error:no-previous-prototype-for-function-rbtDelNodeDo-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_hard_recovery_state_finish-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_alloc-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_delete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_context_free-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_irq_queue_destroy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_recovery.c:error:no-previous-prototype-for-function-ps3_recovery_state_transfer-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_sas_transport.c:error:no-previous-prototype-for-function-ps3_sas_update_phy_info-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_set_task_manager_busy-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsi_cmd_err.c:error:no-previous-prototype-for-function-ps3_wait_for_outstanding_complete-Werror-Wmissing-prototypes
| |-- drivers-scsi-linkdata-ps3stor-ps3_scsih.c:error:unused-function-ps3_scsih_dev_id_get-Werror-Wunused-function
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
| |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append
| |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name
| |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_fini
| |-- fs-nfs-enfs-enfs_init.c:warning:no-previous-prototype-for-function-enfs_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini
| |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_queue_work
| |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt
| |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same
| |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-convert_lookup_cache_str
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-enfs_free_client_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_info_free_work
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_client_mount_info_init
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-nfs_multipath_ip_list_info_match
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_dns_info
| |-- fs-nfs-enfs-enfs_multipath_client.c:warning:no-previous-prototype-for-function-print_ip_info
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid
| |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type
| |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops
| |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt
| |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt
| |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendDecode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendProcInfoExtendEncode
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route
| |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version
| |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used
| |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-check_cpuid_invalid
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_choose_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_delete_shard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_get_shard_xport
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_query_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_shard_ctrl_init
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_fsshard
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lif_info
| |-- fs-nfs-enfs-shard_route.c:warning:no-previous-prototype-for-function-enfs_update_lsinfo
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get
| |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put
| |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt
| |-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpumask_weight
| |-- kernel-cgroup-cpuset.c:warning:no-previous-prototype-for-function-bpf_cpuset_from_task
| |-- mm-dynamic_pool.c:warning:variable-ret-is-uninitialized-when-used-here
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_limit_mbytes_sysctl_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_enable_handler
| |-- mm-page_cache_limit.c:warning:no-previous-prototype-for-function-cache_reclaim_sysctl_handler
| |-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
| `-- net-sunrpc-sunrpc_enfs_adapter.c:warning:no-previous-prototype-for-function-rpc_task_release_xprt
|-- x86_64-buildonly-randconfig-001-20250606
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-002-20250606
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_task_is_throttled
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-003-20250606
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-004-20250606
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-005-20250606
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-buildonly-randconfig-006-20250606
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-defconfig
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-randconfig-161-20250606
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
|-- x86_64-randconfig-r053-20250606
| |-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-show_cpuinfo
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_entries_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_exit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-sxe_debugfs_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_phys_id_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-sxe_reg_test
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_fc_autoneg_localcap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_all_ring_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_crc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_max_mem_window_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_pfc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rate_limiter_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_rx_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_data_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_desc_bw_alloc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_dcb_tx_ring_rate_factor_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_auto_clear_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_autoneg_disable_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_mac_addr_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_requested_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_high_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fc_tc_low_water_mark_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_port_mask_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rule_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_sample_rules_table_reinit
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_fnav_specific_rule_mask_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_channel_state_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_drv_status_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ack_header_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_ov_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_fw_status_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_is_fw_over_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_lock_release
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_rcv
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_data_dword_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_header_send
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_hdc_packet_send_done
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_cause_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_irq_general_reg_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_fc_autoneg_disabled
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_is_link_state_up
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_link_speed_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_max_frame_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_pad_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mac_txrx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mbx_mem_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mc_filter_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_mta_hash_table_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_nic_reset
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_no_snoop_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pcie_vt_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_read_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pending_irq_write_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pf_rst_done_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pfc_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_mac_anti_spoof_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_pool_rx_ring_drop_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_is_rx_timestamp_valid
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_rx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_systime_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_timestamp_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ptp_tx_timestamp_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rcv_msg_from_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_auto_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_key_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_reg_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rss_redir_tbl_set_all
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_off
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_cap_switch_on
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_ctrl_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_dma_lro_ctrl_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_drop_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ack_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_lro_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_mode_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_multi_ring_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_nfs_filter_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pkt_buf_size_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_queue_desc_reg_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_rx_udp_frag_checksum_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_send_msg_to_vf
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_spoof_count_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_regs_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_stats_seq_clean
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_desc_thresh_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_size_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pkt_buf_thresh_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_pool_bitmap_set
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_head_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_info_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_switch_not_polling
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_ring_tail_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_insert_get
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_tx_vlan_tag_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_add
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_del
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_uc_addr_pool_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_ack_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_req_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vf_rst_check
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_clear
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_array_write
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_filter_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_pool_filter_read
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlan_tag_strip_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vlvf_slot_find
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_ctrl_cfg
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_disable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-sxe_hw_vt_pool_loopback_switch
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_dcb
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_disable_rss
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_lsc_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_mailbox_irq_handler
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-sxe_msi_irq_init
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-sxe_allow_inval_mac
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-sxe_multispeed_sfp_link_configure
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_headers_cleanup
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-sxe_rx_buffer_page_offset_update
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-sxe_set_vf_link_enable
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used
| |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-sxe_txrx_ring_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_32bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_36bit_counter_update
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_event_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_reset
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_ring_irq_map
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_hw_stop
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_disable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_link_state_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_mailbox_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_read
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_msg_write
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_packet_stats_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_ack_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_pf_req_irq_trigger
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_ring_irq_interval_set
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_rcv_ctl_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_desc_configure
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_rx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_specific_irq_enable
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_stats_init_value_get
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-sxevf_tx_ring_switch
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-sxevf_rx_ring_buffers_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_alloc
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-sxevf_tx_ring_free
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-else-statement
| |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:suggest-braces-around-empty-body-in-an-if-statement
| |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag
| |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma
| |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
| |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
| |-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
| `-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
`-- x86_64-rhel-9.4-rust
|-- arch-x86-kernel-cpu-proc.c:warning:no-previous-prototype-for-function-show_cpuinfo
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- arch-x86-kvm-..-..-..-virt-kvm-eventfd.c:warning:cannot-understand-function-prototype:struct-eventfd_shadow
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_entries_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_exit-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_debugfs.c:error:no-previous-prototype-for-function-sxe_debugfs_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_phys_id_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ethtool.c:error:no-previous-prototype-for-function-sxe_reg_test-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_all_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_auto_clear_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_cause_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_irq_general_reg_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_nic_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_no_snoop_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_read_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pending_irq_write_clear-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_pf_rst_done_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_auto_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_del-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_uc_addr_pool_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_dcb-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_disable_rss-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_lsc_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_mailbox_irq_handler-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_irq.c:error:no-previous-prototype-for-function-sxe_msi_irq_init-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_main.c:error:no-previous-prototype-for-function-sxe_allow_inval_mac-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_phy.c:error:no-previous-prototype-for-function-sxe_multispeed_sfp_link_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_headers_cleanup-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_rx_proc.c:error:no-previous-prototype-for-function-sxe_rx_buffer_page_offset_update-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:no-previous-prototype-for-function-sxe_set_vf_link_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_sriov.c:error:variable-ret-set-but-not-used-Werror-Wunused-but-set-variable
|-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_xdp.c:error:no-previous-prototype-for-function-sxe_txrx_ring_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_event_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_reset-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_ring_irq_map-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_hw_stop-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_disable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_link_state_get-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_mailbox_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_read-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_msg_write-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_ack_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_pf_req_irq_trigger-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_ring_irq_interval_set-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_desc_configure-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_specific_irq_enable-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_tx_ring_switch-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_rx_proc.c:error:no-previous-prototype-for-function-sxevf_rx_ring_buffers_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_alloc-Werror-Wmissing-prototypes
|-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_tx_proc.c:error:no-previous-prototype-for-function-sxevf_tx_ring_free-Werror-Wmissing-prototypes
|-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag
|-- include-linux-fortify-string.h:error:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()-Werror-Wattribute-warnin
|-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma
|-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead
|-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags
|-- mm-mempolicy.c:warning:variable-vma-set-but-not-used
|-- mm-oom_kill.c:warning:Function-parameter-or-member-oc-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-points-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:Function-parameter-or-member-task-not-described-in-oom_next_task
|-- mm-oom_kill.c:warning:expecting-prototype-for-We-choose-the-task-in-low().-Prototype-was-for-oom_next_task()-instead
`-- mm-vmalloc.c:warning:Function-parameter-or-member-pgoff-not-described-in-remap_vmalloc_hugepage_range_partial
elapsed time: 724m
configs tested: 22
configs skipped: 124
tested configs:
arm64 allmodconfig clang-19
arm64 allnoconfig gcc-15.1.0
arm64 defconfig gcc-15.1.0
arm64 randconfig-001-20250606 clang-21
arm64 randconfig-002-20250606 gcc-15.1.0
arm64 randconfig-003-20250606 clang-21
arm64 randconfig-004-20250606 clang-21
loongarch allmodconfig gcc-15.1.0
loongarch allnoconfig gcc-15.1.0
loongarch defconfig gcc-15.1.0
loongarch randconfig-001-20250606 gcc-15.1.0
loongarch randconfig-002-20250606 gcc-14.3.0
x86_64 allnoconfig clang-20
x86_64 allyesconfig clang-20
x86_64 buildonly-randconfig-001-20250606 clang-20
x86_64 buildonly-randconfig-002-20250606 gcc-12
x86_64 buildonly-randconfig-003-20250606 gcc-12
x86_64 buildonly-randconfig-004-20250606 gcc-12
x86_64 buildonly-randconfig-005-20250606 gcc-12
x86_64 buildonly-randconfig-006-20250606 gcc-12
x86_64 defconfig gcc-11
x86_64 rhel-9.4-rust clang-18
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2368/2368] mpam.c:undefined reference to `resctrl_arch_get_resource'
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: b252849e2320fe952d448bcb2d23699e357b3d54
commit: 2c4d4c6c01d4d42c3b39ddbf8687ac246b6908d6 [2368/2368] arm64/mpam: Refuse to enter powerdown state after L2 msc updated
config: arm64-randconfig-r054-20250606 (https://download.01.org/0day-ci/archive/20250606/202506062241.Z2ZA94Wb-lkp@…)
compiler: aarch64-linux-gcc (GCC) 9.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506062241.Z2ZA94Wb-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506062241.Z2ZA94Wb-lkp@intel.com/
All errors (new ones prefixed by >>):
aarch64-linux-ld: Unexpected GOT/PLT entries detected!
aarch64-linux-ld: Unexpected run-time procedure linkages detected!
aarch64-linux-ld: arch/arm64/kernel/process.o: in function `__switch_to':
process.c:(.sched.text+0x164): undefined reference to `mpam_resctrl_default_group'
aarch64-linux-ld: arch/arm64/kernel/process.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `mpam_resctrl_default_group' which may bind externally can not be used when making a shared object; recompile with -fPIC
process.c:(.sched.text+0x164): dangerous relocation: unsupported relocation
aarch64-linux-ld: process.c:(.sched.text+0x170): undefined reference to `mpam_resctrl_default_group'
aarch64-linux-ld: arch/arm64/kernel/mpam.o: in function `mpam_pm_notifier':
>> mpam.c:(.text+0x74): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: arch/arm64/kernel/mpam.o: in function `arm64_mpam_register_cpus':
mpam.c:(.init.text+0x68): undefined reference to `mpam_register_requestor'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `is_rmid_match':
rdtgroup.c:(.text+0x94): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0xc0): undefined reference to `resctrl_arch_match_rmid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `_update_task_closid_rmid':
rdtgroup.c:(.text+0x354): undefined reference to `resctrl_sched_in'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `update_closid_rmid':
rdtgroup.c:(.text+0x3ac): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x3ac): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x3b0): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `cpus_ctrl_write':
rdtgroup.c:(.text+0x460): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x460): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x46c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mon_config_write':
rdtgroup.c:(.text+0x748): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_read' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x748): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x750): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: rdtgroup.c:(.text+0x774): undefined reference to `resctrl_arch_mon_event_config_write'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_write' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x774): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x77c): undefined reference to `resctrl_arch_mon_event_config_write'
aarch64-linux-ld: rdtgroup.c:(.text+0x7ac): undefined reference to `resctrl_arch_reset_rmid_all'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mbm_config_show':
rdtgroup.c:(.text+0x9dc): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_read' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x9dc): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x9e4): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_is_mbm_enabled':
rdtgroup.c:(.text+0xdc8): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0xddc): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0xde8): undefined reference to `resctrl_arch_is_mbm_core_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_show_options':
rdtgroup.c:(.text+0x1454): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1474): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1494): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x14a0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `supports_mba_mbps':
rdtgroup.c:(.text+0x1550): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x1558): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1598): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `set_mba_sc':
rdtgroup.c:(.text+0x16d8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x16e0): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x1700): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_disable_ctx':
rdtgroup.c:(.text+0x17d0): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x17dc): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_mondata_all':
rdtgroup.c:(.text+0x1864): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_rdt_prepare_rmid_alloc':
rdtgroup.c:(.text+0x1954): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `schemata_list_add':
rdtgroup.c:(.text+0x1a3c): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x1a4c): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1b0c): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `is_closid_match.isra.0':
rdtgroup.c:(.text+0x1d9c): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x1dbc): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_move_group_tasks.isra.0':
rdtgroup.c:(.text+0x1f10): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_rename':
rdtgroup.c:(.text+0x2288): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x2288): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x2290): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_kill_sb':
rdtgroup.c:(.text+0x2340): undefined reference to `resctrl_arch_reset_resources'
aarch64-linux-ld: rdtgroup.c:(.text+0x2454): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x2454): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x245c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: rdtgroup.c:(.text+0x249c): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x24a0): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_get_tree':
rdtgroup.c:(.text+0x2530): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x25cc): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x2604): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x263c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x2670): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x26b0): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x26bc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x26f8): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x278c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2878): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x28fc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2958): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2968): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x296c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2970): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2988): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x29a4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x29e8): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_staged_configs_clear':
rdtgroup.c:(.text+0x2be4): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `__rdtgroup_cbm_overlaps':
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for RESCTRL_FS
Depends on [n]: MISC_FILESYSTEMS [=n] && ARCH_HAS_CPU_RESCTRL [=y]
Selected by [y]:
- ARM64_MPAM [=y]
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Albert Huang (1):
net/smc: fix smc clc failed issue when netdevice not in init_net
Allen Pais (1):
net: smc: convert tasklets to use new tasklet_setup() API
Christophe JAILLET (1):
net/smc: Use the bitmap API when applicable
Colin Ian King (1):
net/smc: remove redundant re-assignment of pointer link
D. Wythe (5):
net/smc: Limit backlog connections
net/smc: return ETIMEDOUT when smc_connect_clc() timeout
net/smc: reduce unnecessary blocking in smcr_lgr_reg_rmbs()
net/smc: fix potential panic dues to unprotected
smc_llc_srv_add_link()
net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT
Dan Carpenter (2):
net/smc: Fix an error code in smc_lgr_create()
net/smc: delete pointless divide by one
David Howells (1):
smc: Drop smc_sendpage() in favour of smc_sendmsg() + MSG_SPLICE_PAGES
Dmitry Antipov (1):
net: smc: fix spurious error message from __sock_release()
Dust Li (2):
net/smc: add comments for smc_link_{usable|sendable}
net/smc: return the right falback reason when prefix checks fail
Eric Dumazet (2):
net: inline sock_prot_inuse_add()
net: make sock_inuse_add() available
Gerd Bayer (2):
net/smc: Fix dependency of SMC on ISM
s390/ism: ism driver implies smc protocol
Guangguan Wang (14):
net/smc: support smc release version negotiation in clc handshake
net/smc: add vendor unique experimental options area in clc handshake
net/smc: support smc v2.x features validate
net/smc: support max connections per lgr negotiation
net/smc: support max links per lgr negotiation in clc handshake
net/smc: Extend SMCR v2 linkgroup netlink attribute
net/smc: set rmb's SG_MAX_SINGLE_ALLOC limitation only when
CONFIG_ARCH_NO_SG_CHAIN is defined
net/smc: protect link down work from execute after lgr freed
net/smc: check sndbuf_space again after NOSPACE flag is set in
smc_poll
net/smc: check v2_ext_offset/eid_cnt/ism_gid_cnt when receiving
proposal msg
net/smc: check smcd_v2_ext_offset when receiving proposal msg
net/smc: check return value of sock_recvmsg when draining clc data
net/smc: fix data error when recvmsg with MSG_PEEK flag
net/smc: use the correct ndev to find pnetid by pnetid table
Gustavo A. R. Silva (2):
net/smc: Avoid -Wflex-array-member-not-at-end warnings
net/smc: Use static_assert() to check struct sizes
Guvenc Gulce (1):
net/smc: Use active link of the connection
Heiko Carstens (1):
net/smc: Eliminate struct smc_ism_position
Jiapeng Chong (1):
net/smc: Remove redundant assignment to rc
Julian Ruess (2):
s390/ism: Fix trying to free already-freed IRQ by repeated
ism_dev_exit()
s390/ism: add release function for struct device
Julian Wiedmann (1):
net/smc: no need to flush smcd_dev's event_wq before destroying it
Kai Shen (2):
net/smc: Use percpu ref for wr tx reference
net/smc: Fix memory leak when using percpu refs
Karsten Graul (18):
net/smc: improve return codes for SMC-Dv2
net/smc: use helper smc_conn_abort() in listen processing
net/smc: avoid possible duplicate dmb unregistration
net/smc: add support for user defined EIDs
net/smc: keep static copy of system EID
net/smc: add generic netlink support for system EID
net/smc: save stack space and allocate smc_init_info
net/smc: prepare for SMC-Rv2 connection
net/smc: add SMC-Rv2 connection establishment
net/smc: add listen processing for SMC-Rv2
net/smc: add v2 format of CLC decline message
net/smc: retrieve v2 gid from IB device
net/smc: add v2 support to the work request layer
net/smc: extend LLC layer for SMC-Rv2
net/smc: add netlink support for SMC-Rv2
net/smc: stop links when their GID is removed
net/smc: use memcpy instead of snprintf to avoid out of bounds read
net/smc: Fix af_ops of child socket pointing to released memory
Kuniyuki Iwashima (1):
smc: Fix use-after-free in tcp_write_timer_handler().
Li RongQing (2):
net/smc: remove unneeded atomic operations in smc_tx_sndbuf_nonempty
net/smc: Fix searching in list of known pnetids in smc_pnet_add_pnetid
Niklas Schnelle (3):
s390/ism: Fix locking for forwarding of IRQs and events to clients
s390/ism: Fix and simplify add()/remove() callback handling
s390/ism: Do not unregister clients with registered DMBs
Simon Horman (1):
net/smc: Address spelling errors
Stefan Raspl (11):
s390/ism: Cleanups
net/smc: Pass on DMBE bit mask in IRQ handler
net/smc: Terminate connections prior to device removal
s390/ism: Introduce struct ism_dmb
net/ism: Add new API for client registration
net/smc: Register SMC-D as ISM client
net/smc: Separate SMC-D and ISM APIs
s390/ism: Consolidate SMC-D-related code
net/smc: De-tangle ism and smc device initialization
net/smc: Fix device de-init sequence
net/smc: Introduce explicit check for v2 support
Tony Lu (6):
net/smc: Clean up local struct sock variables
net/smc: Introduce net namespace support for linkgroup
net/smc: Print net namespace in log
net/smc: Introduce TCP ULP support
net/smc: Fix cleanup when register ULP fails
net/smc: Support SO_REUSEPORT
Wan Jiabing (1):
net: smc: Remove repeated struct declaration
Wang Liang (9):
Partially revert 'net/smc: Clear memory when release and reuse buffer'
Revert "net/smc: Add size match for smc_buf_get_slot"
Revert "net/smc: Rename 'llc_conf_mutex' variable to 'llc_conf_lock'
in struct smc_link_group"
Revert "anolis: net/smc: delay RDMA resource release until connecitons
freed"
Revert "anolis: net/smc: Resolve the race between SMC-R link access
and clear"
Revert "anolis: net/smc: Resolve the race between link group access
and termination"
Revert "net/smc: Tune the maximum size of virtually contiguous sndbufs
or RMBs for SMC-R"
net/smc: enable the smc-lo on the x86 and arm64 platforms
net: Fix kabi broken
Wen Gu (34):
net/smc: Reset conn->lgr when link group registration fails
net/smc: Resolve the race between link group access and termination
net/smc: Resolve the race between SMC-R link access and clear
net/smc: Remove unused function declaration
net/smc: Reset connection when trying to use SMCRv2 fails.
net/smc: Scan from current RMB list when no position specified
net/smc: Don't use RMBs not mapped to new link in SMCRv2 ADD LINK
net/smc: fix missing byte order conversion in CLC handshake
net/smc: rename some 'fce' to 'fce_v2x' for clarity
net/smc: introduce sub-functions for smc_clc_send_confirm_accept()
net/smc: unify the structs of accept or confirm message for v1 and v2
net/smc: support SMCv2.x supplemental features negotiation
net/smc: introduce virtual ISM device support feature
net/smc: define a reserved CHID range for virtual ISM devices
net/smc: compatible with 128-bits extended GID of virtual ISM device
net/smc: support extended GID in SMC-D lgr netlink attribute
net/smc: disable SEID on non-s390 archs where virtual ISM may be used
net/smc: manage system EID in SMC stack instead of ISM driver
net/smc: fix incorrect SMC-D link group matching logic
net/smc: change the term virtual ISM to Emulated-ISM
net/smc: decouple ism_client from SMC-D DMB registration
net/smc: introduce loopback-ism for SMC intra-OS shortcut
net/smc: implement ID-related operations of loopback-ism
net/smc: implement DMB-related operations of loopback-ism
net/smc: mark optional smcd_ops and check for support when called
net/smc: ignore loopback-ism when dumping SMC-D devices
net/smc: register loopback-ism into SMC-D device list
net/smc: add operations to merge sndbuf with peer DMB
net/smc: {at|de}tach sndbuf to peer DMB if supported
net/smc: adapt cursor update when sndbuf and peer DMB are merged
net/smc: implement DMB-merged operations of loopback-ism
net/smc: fix neighbour and rtable leak in smc_ib_find_route()
net/smc: avoid overwriting when adjusting sock bufsizes
net/smc: fix LGR and link use-after-free issue
Wenjia Zhang (1):
net/smc: Fix lookup of netdev by using ib_device_get_netdev()
Yue Haibing (1):
net/smc: Remove unused function declarations
Zhengchao Shao (6):
net/smc: make smc_hash_sk/smc_unhash_sk static
net/smc: remove unreferenced header in smc_loopback.h file
net/smc: remove the fallback in __smc_connect
net/smc: remove redundant code in smc_connect_check_aclc
net/smc: remove unused input parameters in smcr_new_buf_create
net/smc: add the max value of fallback reason count
liuyacan (1):
net/smc: set ini->smcrv2.ib_dev_v2 to NULL if SMC-Rv2 is unavailable
Documentation/networking/smc-sysctl.rst | 6 +-
arch/arm64/configs/openeuler_defconfig | 1 +
arch/x86/configs/openeuler_defconfig | 1 +
drivers/s390/net/Kconfig | 5 +-
drivers/s390/net/ism.h | 26 +-
drivers/s390/net/ism_drv.c | 489 ++++++++----
include/linux/ism.h | 92 +++
include/net/smc.h | 62 +-
include/net/sock.h | 26 +-
include/uapi/linux/smc.h | 48 +-
include/uapi/linux/smc_diag.h | 2 +
net/core/sock.c | 21 -
net/mptcp/subflow.c | 4 +-
net/smc/Kconfig | 14 +
net/smc/Makefile | 1 +
net/smc/af_smc.c | 963 +++++++++++++++++-------
net/smc/smc.h | 53 +-
net/smc/smc_cdc.c | 44 +-
net/smc/smc_clc.c | 846 +++++++++++++++++----
net/smc/smc_clc.h | 196 ++++-
net/smc/smc_close.c | 6 +-
net/smc/smc_core.c | 507 +++++++++----
net/smc/smc_core.h | 131 +++-
net/smc/smc_diag.c | 20 +-
net/smc/smc_ib.c | 171 ++++-
net/smc/smc_ib.h | 24 +-
net/smc/smc_ism.c | 318 +++++---
net/smc/smc_ism.h | 61 +-
net/smc/smc_llc.c | 688 +++++++++++++----
net/smc/smc_llc.h | 12 +-
net/smc/smc_loopback.c | 427 +++++++++++
net/smc/smc_loopback.h | 60 ++
net/smc/smc_netlink.c | 47 +-
net/smc/smc_netlink.h | 2 +
net/smc/smc_pnet.c | 120 +--
net/smc/smc_rx.c | 39 +-
net/smc/smc_rx.h | 8 +-
net/smc/smc_stats.c | 2 +-
net/smc/smc_stats.h | 3 +-
net/smc/smc_tx.c | 56 +-
net/smc/smc_tx.h | 2 -
net/smc/smc_wr.c | 305 ++++++--
net/smc/smc_wr.h | 17 +-
43 files changed, 4591 insertions(+), 1335 deletions(-)
create mode 100644 include/linux/ism.h
create mode 100644 net/smc/smc_loopback.c
create mode 100644 net/smc/smc_loopback.h
--
2.34.1
2
139

[openeuler:OLK-6.6 2368/2368] aarch64-linux-ld: rdtgroup.c:undefined reference to `resctrl_arch_is_mbm_core_enabled'
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: b252849e2320fe952d448bcb2d23699e357b3d54
commit: 556688623b2b867f4e766229a1593f1d0820be34 [2368/2368] fs/resctrl: Create l2 cache monitors
config: arm64-randconfig-r054-20250606 (https://download.01.org/0day-ci/archive/20250606/202506062019.9DntRx4K-lkp@…)
compiler: aarch64-linux-gcc (GCC) 9.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506062019.9DntRx4K-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506062019.9DntRx4K-lkp@intel.com/
All errors (new ones prefixed by >>):
aarch64-linux-ld: Unexpected GOT/PLT entries detected!
aarch64-linux-ld: Unexpected run-time procedure linkages detected!
aarch64-linux-ld: arch/arm64/kernel/process.o: in function `__switch_to':
process.c:(.sched.text+0x164): undefined reference to `mpam_resctrl_default_group'
aarch64-linux-ld: arch/arm64/kernel/process.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `mpam_resctrl_default_group' which may bind externally can not be used when making a shared object; recompile with -fPIC
process.c:(.sched.text+0x164): dangerous relocation: unsupported relocation
aarch64-linux-ld: process.c:(.sched.text+0x170): undefined reference to `mpam_resctrl_default_group'
aarch64-linux-ld: arch/arm64/kernel/mpam.o: in function `arm64_mpam_register_cpus':
mpam.c:(.init.text+0x48): undefined reference to `mpam_register_requestor'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `is_rmid_match':
rdtgroup.c:(.text+0x94): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0xc0): undefined reference to `resctrl_arch_match_rmid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `_update_task_closid_rmid':
rdtgroup.c:(.text+0x354): undefined reference to `resctrl_sched_in'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `update_closid_rmid':
rdtgroup.c:(.text+0x3ac): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x3ac): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x3b0): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `cpus_ctrl_write':
rdtgroup.c:(.text+0x460): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x460): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x46c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mon_config_write':
rdtgroup.c:(.text+0x748): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_read' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x748): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x750): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: rdtgroup.c:(.text+0x774): undefined reference to `resctrl_arch_mon_event_config_write'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_write' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x774): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x77c): undefined reference to `resctrl_arch_mon_event_config_write'
aarch64-linux-ld: rdtgroup.c:(.text+0x7ac): undefined reference to `resctrl_arch_reset_rmid_all'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mbm_config_show':
rdtgroup.c:(.text+0x9dc): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_read' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x9dc): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x9e4): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_is_mbm_enabled':
rdtgroup.c:(.text+0xdc8): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0xddc): undefined reference to `resctrl_arch_is_mbm_local_enabled'
>> aarch64-linux-ld: rdtgroup.c:(.text+0xde8): undefined reference to `resctrl_arch_is_mbm_core_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_show_options':
rdtgroup.c:(.text+0x1454): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1474): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1494): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x14a0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `supports_mba_mbps':
rdtgroup.c:(.text+0x1550): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x1558): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1598): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `set_mba_sc':
rdtgroup.c:(.text+0x1698): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x16a0): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x16c0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_disable_ctx':
rdtgroup.c:(.text+0x1790): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x179c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_mondata_all':
rdtgroup.c:(.text+0x181c): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_rdt_prepare_rmid_alloc':
rdtgroup.c:(.text+0x18d4): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `schemata_list_add':
rdtgroup.c:(.text+0x19bc): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x19cc): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1a8c): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `is_closid_match.isra.0':
rdtgroup.c:(.text+0x1d1c): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x1d3c): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_move_group_tasks.isra.0':
rdtgroup.c:(.text+0x1e90): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_rename':
rdtgroup.c:(.text+0x2208): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x2208): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x2210): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_kill_sb':
rdtgroup.c:(.text+0x22c0): undefined reference to `resctrl_arch_reset_resources'
aarch64-linux-ld: rdtgroup.c:(.text+0x23d4): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x23d4): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x23dc): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: rdtgroup.c:(.text+0x241c): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2420): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_get_tree':
rdtgroup.c:(.text+0x24b0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x254c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x2584): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x25bc): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x25f8): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x260c): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x2648): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x26dc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x27c8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x284c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x28a8): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x28b8): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x28bc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x28c0): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x28d8): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x28f4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x2938): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_staged_configs_clear':
rdtgroup.c:(.text+0x2b24): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `__rdtgroup_cbm_overlaps':
rdtgroup.c:(.text+0x2d18): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_bit_usage_show':
rdtgroup.c:(.text+0x2f00): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_init_alloc.isra.0':
rdtgroup.c:(.text+0x3168): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x31c8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x32d0): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x32f4): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x330c): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x344c): undefined reference to `resctrl_arch_update_domains'
aarch64-linux-ld: rdtgroup.c:(.text+0x34c4): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x34d4): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_cbm_overlaps':
rdtgroup.c:(.text+0x36e8): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_size_show':
rdtgroup.c:(.text+0x3df0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x3e4c): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_mode_write':
rdtgroup.c:(.text+0x40c0): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_tasks_write':
rdtgroup.c:(.text+0x4528): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4550): undefined reference to `resctrl_arch_match_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4574): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x45b8): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x45cc): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4610): undefined reference to `resctrl_sched_in'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_rmdir':
rdtgroup.c:(.text+0x4d78): undefined reference to `resctrl_arch_set_cpu_default_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4dc8): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x4dc8): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x4dcc): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: rdtgroup.c:(.text+0x4e58): undefined reference to `resctrl_arch_set_cpu_default_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4ea0): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x4ea0): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x4ea4): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_rdt_prepare':
rdtgroup.c:(.text+0x505c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_mkdir':
rdtgroup.c:(.text+0x512c): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x524c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x52c8): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x5320): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_offline_domain':
rdtgroup.c:(.text+0x54cc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x5574): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5588): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_online_domain':
rdtgroup.c:(.text+0x5648): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x56fc): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: rdtgroup.c:(.text+0x5704): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x5710): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x5760): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x579c): undefined reference to `resctrl_arch_is_mbm_core_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x57e4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5840): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x58ac): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_offline_cpu':
rdtgroup.c:(.text+0x5a20): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x5b84): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5ba8): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_init':
rdtgroup.c:(.text+0x5c8c): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `parse_bw_conf_type.isra.0':
ctrlmondata.c:(.text+0x430): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0x4b4): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `parse_bw':
ctrlmondata.c:(.text+0x568): undefined reference to `resctrl_arch_hide_cdp'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_schemata_write':
ctrlmondata.c:(.text+0x948): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0x964): undefined reference to `resctrl_arch_update_domains'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_schemata_show':
ctrlmondata.c:(.text+0xbcc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0xc24): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `mon_event_read':
ctrlmondata.c:(.text+0xd14): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: ctrlmondata.c:(.text+0xd60): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_mondata_show':
ctrlmondata.c:(.text+0xdd0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0xddc): undefined reference to `resctrl_arch_find_domain'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `__mon_event_count':
monitor.c:(.text+0x54): undefined reference to `resctrl_arch_reset_rmid'
aarch64-linux-ld: monitor.c:(.text+0x68): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0xc4): undefined reference to `resctrl_arch_rmid_read'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `mbm_update':
monitor.c:(.text+0x11c): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: monitor.c:(.text+0x138): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x184): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: monitor.c:(.text+0x188): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: monitor.c:(.text+0x1a4): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x1e8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x230): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x2b8): undefined reference to `resctrl_arch_mon_ctx_free'
>> aarch64-linux-ld: monitor.c:(.text+0x2bc): undefined reference to `resctrl_arch_is_mbm_core_enabled'
aarch64-linux-ld: monitor.c:(.text+0x2d8): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x334): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `__check_limbo':
monitor.c:(.text+0x3a4): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x3ac): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: monitor.c:(.text+0x3c4): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x46c): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0x48c): undefined reference to `resctrl_arch_rmid_read'
aarch64-linux-ld: monitor.c:(.text+0x564): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `has_busy_rmid':
monitor.c:(.text+0x5d0): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `alloc_rmid':
monitor.c:(.text+0x6ac): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x6bc): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `free_rmid':
monitor.c:(.text+0x9cc): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x9dc): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0xa08): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0xa10): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: monitor.c:(.text+0xa20): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xa34): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `mbm_handle_overflow':
monitor.c:(.text+0xb94): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: monitor.c:(.text+0xbb0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xc4c): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xcac): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: monitor.c:(.text+0xcbc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xcd8): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0xda8): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: monitor.c:(.text+0xe44): undefined reference to `resctrl_arch_update_one'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `mbm_setup_overflow_handler':
monitor.c:(.text+0xf0c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `resctrl_mon_resource_init':
monitor.c:(.text+0x1010): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x1050): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: monitor.c:(.text+0x1068): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: monitor.c:(.text+0x10e4): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0x1130): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x1148): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0x1184): undefined reference to `resctrl_arch_mon_resource_init'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `resctrl_mon_resource_exit':
monitor.c:(.text+0x11d0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/psuedo_lock.o: in function `rdtgroup_locksetup_enter':
psuedo_lock.c:(.text+0x3ec): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: psuedo_lock.c:(.text+0x40c): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.o: in function `arm_smmu_device_hw_probe':
arm-smmu-v3.c:(.text+0x2a94): undefined reference to `mpam_register_requestor'
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for RESCTRL_FS
Depends on [n]: MISC_FILESYSTEMS [=n] && ARCH_HAS_CPU_RESCTRL [=y]
Selected by [y]:
- ARM64_MPAM [=y]
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:OLK-6.6 2368/2368] ctrlmondata.c:undefined reference to `resctrl_arch_hide_cdp'
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: b252849e2320fe952d448bcb2d23699e357b3d54
commit: 5e0e3aa64e83dff9703e3f887a2be3271801ed22 [2368/2368] fs/resctrl: Fix configuration to wrong control group when CDP is enabled
config: arm64-randconfig-r054-20250606 (https://download.01.org/0day-ci/archive/20250606/202506061824.reydkcjF-lkp@…)
compiler: aarch64-linux-gcc (GCC) 9.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506061824.reydkcjF-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506061824.reydkcjF-lkp@intel.com/
All errors (new ones prefixed by >>):
rdtgroup.c:(.text+0x21c8): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x21c8): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x21d0): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_kill_sb':
rdtgroup.c:(.text+0x2280): undefined reference to `resctrl_arch_reset_resources'
aarch64-linux-ld: rdtgroup.c:(.text+0x2394): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x2394): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x239c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: rdtgroup.c:(.text+0x23dc): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x23e0): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_get_tree':
rdtgroup.c:(.text+0x2470): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x250c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x2544): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x257c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x25b8): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x25cc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x2608): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x269c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2778): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x27fc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2858): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2868): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x286c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2870): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2888): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x28a4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x28e8): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_staged_configs_clear':
rdtgroup.c:(.text+0x2ae4): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `__rdtgroup_cbm_overlaps':
rdtgroup.c:(.text+0x2cd8): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_bit_usage_show':
rdtgroup.c:(.text+0x2ec0): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_init_alloc.isra.0':
rdtgroup.c:(.text+0x3128): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x3188): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x3290): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x32b4): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x32cc): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x340c): undefined reference to `resctrl_arch_update_domains'
aarch64-linux-ld: rdtgroup.c:(.text+0x3484): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x3494): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_cbm_overlaps':
rdtgroup.c:(.text+0x36a8): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_size_show':
rdtgroup.c:(.text+0x3db0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x3e0c): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_mode_write':
rdtgroup.c:(.text+0x4080): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_tasks_write':
rdtgroup.c:(.text+0x44e8): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4510): undefined reference to `resctrl_arch_match_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4534): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4578): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x458c): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x45d0): undefined reference to `resctrl_sched_in'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_rmdir':
rdtgroup.c:(.text+0x4d38): undefined reference to `resctrl_arch_set_cpu_default_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4d88): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x4d88): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x4d8c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: rdtgroup.c:(.text+0x4e18): undefined reference to `resctrl_arch_set_cpu_default_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4e60): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x4e60): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x4e64): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_rdt_prepare':
rdtgroup.c:(.text+0x501c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_mkdir':
rdtgroup.c:(.text+0x50ec): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x520c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x5288): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x52e0): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_offline_domain':
rdtgroup.c:(.text+0x548c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x5534): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5548): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_online_domain':
rdtgroup.c:(.text+0x5608): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x56bc): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: rdtgroup.c:(.text+0x56c4): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x56d0): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x5720): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x5768): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x57c0): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x582c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_offline_cpu':
rdtgroup.c:(.text+0x59a0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x5b04): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5b28): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_init':
rdtgroup.c:(.text+0x5c0c): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `parse_bw_conf_type.isra.0':
ctrlmondata.c:(.text+0x428): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0x4a8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `parse_bw':
>> ctrlmondata.c:(.text+0x568): undefined reference to `resctrl_arch_hide_cdp'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_schemata_write':
ctrlmondata.c:(.text+0x948): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0x964): undefined reference to `resctrl_arch_update_domains'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_schemata_show':
ctrlmondata.c:(.text+0xbcc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0xc24): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `mon_event_read':
ctrlmondata.c:(.text+0xd14): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: ctrlmondata.c:(.text+0xd60): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_mondata_show':
ctrlmondata.c:(.text+0xdd0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0xddc): undefined reference to `resctrl_arch_find_domain'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `__mon_event_count':
monitor.c:(.text+0x54): undefined reference to `resctrl_arch_reset_rmid'
aarch64-linux-ld: monitor.c:(.text+0x68): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0xc4): undefined reference to `resctrl_arch_rmid_read'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `mbm_update':
monitor.c:(.text+0x11c): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: monitor.c:(.text+0x138): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x184): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: monitor.c:(.text+0x188): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: monitor.c:(.text+0x1a4): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x1f8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x23c): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x2bc): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `__check_limbo':
monitor.c:(.text+0x324): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x32c): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: monitor.c:(.text+0x344): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x3ec): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0x40c): undefined reference to `resctrl_arch_rmid_read'
aarch64-linux-ld: monitor.c:(.text+0x4d8): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `has_busy_rmid':
monitor.c:(.text+0x510): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `alloc_rmid':
monitor.c:(.text+0x5e4): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x5f4): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `free_rmid':
monitor.c:(.text+0x90c): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x91c): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x948): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0x950): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: monitor.c:(.text+0x960): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x974): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `mbm_handle_overflow':
monitor.c:(.text+0xad4): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: monitor.c:(.text+0xaf0): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xb8c): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xbec): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: monitor.c:(.text+0xbfc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xc18): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0xce8): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: monitor.c:(.text+0xd84): undefined reference to `resctrl_arch_update_one'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `mbm_setup_overflow_handler':
monitor.c:(.text+0xe4c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `resctrl_mon_resource_init':
monitor.c:(.text+0xf50): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0xf98): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: monitor.c:(.text+0xfa8): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: monitor.c:(.text+0x1028): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0x1074): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x108c): undefined reference to `resctrl_arch_rmid_idx_decode'
aarch64-linux-ld: monitor.c:(.text+0x10c8): undefined reference to `resctrl_arch_mon_resource_init'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `resctrl_mon_resource_exit':
monitor.c:(.text+0x1110): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/psuedo_lock.o: in function `rdtgroup_locksetup_enter':
psuedo_lock.c:(.text+0x3ec): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: psuedo_lock.c:(.text+0x40c): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.o: in function `arm_smmu_device_hw_probe':
arm-smmu-v3.c:(.text+0x2a94): undefined reference to `mpam_register_requestor'
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for RESCTRL_FS
Depends on [n]: MISC_FILESYSTEMS [=n] && ARCH_HAS_CPU_RESCTRL [=y]
Selected by [y]:
- ARM64_MPAM [=y]
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Support xcall prefetch.
Changes in v5:
- Fix dentry free before free_prefetch_item() and then UAF in
prefetch work by cancel_work_sync() before free pfi and move
free_prefetch_item() to the first of __fput().
- Fix __queue_work() oops bug.
- /proc/xcall/mask_list -> /proc/xcall/cpu_list
- Fix xcall_prefetch print data type.
- Update prefetch tracepoint, move xcall points definition
to separete header file.
- Make xcall_prefetch depends on EPOLL.
- Adjust xcall prefetch buf to 16KB by default.
- Add xcall_prefetch_init() function.
- Only use write lock in free_prefetch_item().
- Simplify xcall_read() and add some comment.
- Update commit message.
Changes in v4:
- Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default.
- Fix xint sleeping function called from invalid context bug.
- free_prefetch_item() in file_free() instead of filp_close(), which
fix the alloc-queue and free competition.
- Fix kernel_read() warning for FMODE_READ not set.
- Add sock_from_file() limit for prefetch.
- Check NULL for rc_work.
- Simplfy the cpumask interface code, and rename
to "/proc/xcall/mask_list".
- Remove the xcall_cache_pages_order interface.
- tracepoint update: fd -> file.
- Simplify the xcall_read() function again.
- Handle copy_to_user() return value.
- Remove unused XCALL_CACHE_QUEUED.
- Update the commit message.
Changes in v3:
- Add XCALL_PREFETCH config to isolate feature code.
- Split the /proc/xxx interface code out to independent patches, which
will make it clear.
- Update the cpumask interface to "/proc/xcall/numa_mask", and it can
set the numa mask of all numas one time.
- Add xcall select count to make xcall_cache_pages_order adjust safe.
- Introduce xcall_read_start/end() to make it clear.
- Simplify the xcall_read() function.
- Use cpumask_next() instead of get_nth_cpu_in_cpumask() function.
- Use independent cpu select policy function.
- Remove some unnecessary pr_err().
- Update the commit message.
Changes in v2:
- Upadte the xcall prefetch state machine, remove the queued state and
add prefetch, cancel states.
- Remove the pfi lock and use atomic variables.
- Change the 'xcall select' semantics and simplify the code a lot.
- Remove keep_running, remove unrelated code.
- Remove the count in struct read_cache_entry, and use
percpu hit/miss count.
- Remove sync mode, so remove struct read_cache_entry
in struct task_struct.
- Use hash table to find prefetch item for a file, which will not
change the file struct KABI.
- Use rwlock instead of spinlock for hash table.
- Use alloc_page() instead kmalloc() to align 4KB.
- Update the commit message.
Jinjie Ruan (7):
arm64: Introduce Xint software solution
arm64: Add debugfs dir for xint
eventpoll: xcall: Support async prefetch data in epoll
xcall: Add /proc/xcall/prefetch dir for performance tuning
xcall: Add /proc/xcall/cpu_list for performance tuning
xcall: eventpoll: add tracepoint
config: Enable FAST_SYSCALL/IRQ and XCALL_PREFETCH by default
Liao Chen (1):
revert kpti bypass
Yipeng Zou (3):
arm64: Introduce xcall a faster svc exception handling
arm64: Faster SVC exception handler with xcall
xcall: Introduce xcall_select to mark special syscall
arch/Kconfig | 81 +++++
arch/arm64/Kconfig | 2 +
arch/arm64/configs/openeuler_defconfig | 7 +
arch/arm64/include/asm/cpucaps.h | 2 +
arch/arm64/include/asm/exception.h | 3 +
arch/arm64/kernel/asm-offsets.c | 3 +
arch/arm64/kernel/cpufeature.c | 54 ++++
arch/arm64/kernel/entry-common.c | 22 ++
arch/arm64/kernel/entry.S | 183 ++++++++++-
arch/arm64/kernel/syscall.c | 57 ++++
drivers/irqchip/irq-gic-v3.c | 130 ++++++++
fs/eventpoll.c | 409 +++++++++++++++++++++++++
fs/proc/base.c | 152 +++++++++
fs/read_write.c | 11 +-
include/linux/eventpoll.h | 2 +-
include/linux/fs.h | 35 +++
include/linux/hardirq.h | 5 +
include/linux/irqchip/arm-gic-v3.h | 13 +
include/linux/sched.h | 5 +
include/trace/events/xcall.h | 106 +++++++
kernel/fork.c | 32 ++
kernel/irq/debugfs.c | 33 ++
kernel/irq/internals.h | 18 ++
kernel/irq/irqdesc.c | 19 ++
kernel/irq/proc.c | 10 +
kernel/softirq.c | 73 +++++
26 files changed, 1463 insertions(+), 4 deletions(-)
create mode 100644 include/trace/events/xcall.h
--
2.34.1
2
12

[openeuler:openEuler-1.0-LTS 1659/1659] mm/memory_hotplug.c:971:13: warning: 'rollback_node_hotadd' defined but not used
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
Hi Michal,
FYI, the error/warning still remains.
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
head: 89f3a2595f2e3f14f976811d203bd8f55ff4eada
commit: 2f5f99f3efc5d34c37f9918c50808a4cfe36c211 [1659/1659] mm: handle uninitialized numa nodes gracefully
config: x86_64-buildonly-randconfig-002-20250606 (https://download.01.org/0day-ci/archive/20250606/202506061755.yar1Fr9d-lkp@…)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506061755.yar1Fr9d-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506061755.yar1Fr9d-lkp@intel.com/
All warnings (new ones prefixed by >>):
mm/memory_hotplug.c: In function '__remove_section':
mm/memory_hotplug.c:481:23: warning: variable 'start_pfn' set but not used [-Wunused-but-set-variable]
481 | unsigned long start_pfn;
| ^~~~~~~~~
mm/memory_hotplug.c: In function 'hotadd_init_pgdat':
mm/memory_hotplug.c:926:23: warning: unused variable 'start_pfn' [-Wunused-variable]
926 | unsigned long start_pfn = PFN_DOWN(start);
| ^~~~~~~~~
mm/memory_hotplug.c: At top level:
>> mm/memory_hotplug.c:971:13: warning: 'rollback_node_hotadd' defined but not used [-Wunused-function]
971 | static void rollback_node_hotadd(int nid)
| ^~~~~~~~~~~~~~~~~~~~
vim +/rollback_node_hotadd +971 mm/memory_hotplug.c
9af3c2dea3a3ae Yasunori Goto 2006-06-27 970
b9ff036082cd17 Oscar Salvador 2018-08-17 @971 static void rollback_node_hotadd(int nid)
9af3c2dea3a3ae Yasunori Goto 2006-06-27 972 {
b9ff036082cd17 Oscar Salvador 2018-08-17 973 pg_data_t *pgdat = NODE_DATA(nid);
b9ff036082cd17 Oscar Salvador 2018-08-17 974
9af3c2dea3a3ae Yasunori Goto 2006-06-27 975 arch_refresh_nodedata(nid, NULL);
5830169f47269f Reza Arbab 2016-08-11 976 free_percpu(pgdat->per_cpu_nodestats);
9af3c2dea3a3ae Yasunori Goto 2006-06-27 977 arch_free_nodedata(pgdat);
9af3c2dea3a3ae Yasunori Goto 2006-06-27 978 return;
9af3c2dea3a3ae Yasunori Goto 2006-06-27 979 }
9af3c2dea3a3ae Yasunori Goto 2006-06-27 980
:::::: The code at line 971 was first introduced by commit
:::::: b9ff036082cd1793a59b35c4432644fe44620664 mm/memory_hotplug.c: make add_memory_resource use __try_online_node
:::::: TO: Oscar Salvador <osalvador(a)suse.de>
:::::: CC: Linus Torvalds <torvalds(a)linux-foundation.org>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0
Albert Huang (1):
net/smc: fix smc clc failed issue when netdevice not in init_net
Allen Pais (1):
net: smc: convert tasklets to use new tasklet_setup() API
Christophe JAILLET (1):
net/smc: Use the bitmap API when applicable
Colin Ian King (1):
net/smc: remove redundant re-assignment of pointer link
D. Wythe (5):
net/smc: Limit backlog connections
net/smc: return ETIMEDOUT when smc_connect_clc() timeout
net/smc: reduce unnecessary blocking in smcr_lgr_reg_rmbs()
net/smc: fix potential panic dues to unprotected
smc_llc_srv_add_link()
net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT
Dan Carpenter (2):
net/smc: Fix an error code in smc_lgr_create()
net/smc: delete pointless divide by one
David Howells (1):
smc: Drop smc_sendpage() in favour of smc_sendmsg() + MSG_SPLICE_PAGES
Dmitry Antipov (1):
net: smc: fix spurious error message from __sock_release()
Dust Li (2):
net/smc: add comments for smc_link_{usable|sendable}
net/smc: return the right falback reason when prefix checks fail
Eric Dumazet (2):
net: inline sock_prot_inuse_add()
net: make sock_inuse_add() available
Gerd Bayer (2):
net/smc: Fix dependency of SMC on ISM
s390/ism: ism driver implies smc protocol
Guangguan Wang (14):
net/smc: support smc release version negotiation in clc handshake
net/smc: add vendor unique experimental options area in clc handshake
net/smc: support smc v2.x features validate
net/smc: support max connections per lgr negotiation
net/smc: support max links per lgr negotiation in clc handshake
net/smc: Extend SMCR v2 linkgroup netlink attribute
net/smc: set rmb's SG_MAX_SINGLE_ALLOC limitation only when
CONFIG_ARCH_NO_SG_CHAIN is defined
net/smc: protect link down work from execute after lgr freed
net/smc: check sndbuf_space again after NOSPACE flag is set in
smc_poll
net/smc: check v2_ext_offset/eid_cnt/ism_gid_cnt when receiving
proposal msg
net/smc: check smcd_v2_ext_offset when receiving proposal msg
net/smc: check return value of sock_recvmsg when draining clc data
net/smc: fix data error when recvmsg with MSG_PEEK flag
net/smc: use the correct ndev to find pnetid by pnetid table
Gustavo A. R. Silva (2):
net/smc: Avoid -Wflex-array-member-not-at-end warnings
net/smc: Use static_assert() to check struct sizes
Guvenc Gulce (1):
net/smc: Use active link of the connection
Heiko Carstens (1):
net/smc: Eliminate struct smc_ism_position
Jiapeng Chong (1):
net/smc: Remove redundant assignment to rc
Julian Ruess (2):
s390/ism: Fix trying to free already-freed IRQ by repeated
ism_dev_exit()
s390/ism: add release function for struct device
Julian Wiedmann (1):
net/smc: no need to flush smcd_dev's event_wq before destroying it
Kai Shen (2):
net/smc: Use percpu ref for wr tx reference
net/smc: Fix memory leak when using percpu refs
Karsten Graul (18):
net/smc: improve return codes for SMC-Dv2
net/smc: use helper smc_conn_abort() in listen processing
net/smc: avoid possible duplicate dmb unregistration
net/smc: add support for user defined EIDs
net/smc: keep static copy of system EID
net/smc: add generic netlink support for system EID
net/smc: save stack space and allocate smc_init_info
net/smc: prepare for SMC-Rv2 connection
net/smc: add SMC-Rv2 connection establishment
net/smc: add listen processing for SMC-Rv2
net/smc: add v2 format of CLC decline message
net/smc: retrieve v2 gid from IB device
net/smc: add v2 support to the work request layer
net/smc: extend LLC layer for SMC-Rv2
net/smc: add netlink support for SMC-Rv2
net/smc: stop links when their GID is removed
net/smc: use memcpy instead of snprintf to avoid out of bounds read
net/smc: Fix af_ops of child socket pointing to released memory
Kuniyuki Iwashima (1):
smc: Fix use-after-free in tcp_write_timer_handler().
Li RongQing (2):
net/smc: remove unneeded atomic operations in smc_tx_sndbuf_nonempty
net/smc: Fix searching in list of known pnetids in smc_pnet_add_pnetid
Niklas Schnelle (3):
s390/ism: Fix locking for forwarding of IRQs and events to clients
s390/ism: Fix and simplify add()/remove() callback handling
s390/ism: Do not unregister clients with registered DMBs
Simon Horman (1):
net/smc: Address spelling errors
Stefan Raspl (11):
s390/ism: Cleanups
net/smc: Pass on DMBE bit mask in IRQ handler
net/smc: Terminate connections prior to device removal
s390/ism: Introduce struct ism_dmb
net/ism: Add new API for client registration
net/smc: Register SMC-D as ISM client
net/smc: Separate SMC-D and ISM APIs
s390/ism: Consolidate SMC-D-related code
net/smc: De-tangle ism and smc device initialization
net/smc: Fix device de-init sequence
net/smc: Introduce explicit check for v2 support
Tony Lu (6):
net/smc: Clean up local struct sock variables
net/smc: Introduce net namespace support for linkgroup
net/smc: Print net namespace in log
net/smc: Introduce TCP ULP support
net/smc: Fix cleanup when register ULP fails
net/smc: Support SO_REUSEPORT
Wan Jiabing (1):
net: smc: Remove repeated struct declaration
Wang Liang (8):
Partially revert 'net/smc: Clear memory when release and reuse buffer'
Revert "net/smc: Add size match for smc_buf_get_slot"
Revert "net/smc: Rename 'llc_conf_mutex' variable to 'llc_conf_lock'
in struct smc_link_group"
Revert "anolis: net/smc: delay RDMA resource release until connecitons
freed"
Revert "anolis: net/smc: Resolve the race between SMC-R link access
and clear"
Revert "anolis: net/smc: Resolve the race between link group access
and termination"
Revert "net/smc: Tune the maximum size of virtually contiguous sndbufs
or RMBs for SMC-R"
net/smc: enable the smc-lo on the x86 and arm64 platforms
Wen Gu (34):
net/smc: Reset conn->lgr when link group registration fails
net/smc: Resolve the race between link group access and termination
net/smc: Resolve the race between SMC-R link access and clear
net/smc: Remove unused function declaration
net/smc: Reset connection when trying to use SMCRv2 fails.
net/smc: Scan from current RMB list when no position specified
net/smc: Don't use RMBs not mapped to new link in SMCRv2 ADD LINK
net/smc: fix missing byte order conversion in CLC handshake
net/smc: rename some 'fce' to 'fce_v2x' for clarity
net/smc: introduce sub-functions for smc_clc_send_confirm_accept()
net/smc: unify the structs of accept or confirm message for v1 and v2
net/smc: support SMCv2.x supplemental features negotiation
net/smc: introduce virtual ISM device support feature
net/smc: define a reserved CHID range for virtual ISM devices
net/smc: compatible with 128-bits extended GID of virtual ISM device
net/smc: support extended GID in SMC-D lgr netlink attribute
net/smc: disable SEID on non-s390 archs where virtual ISM may be used
net/smc: manage system EID in SMC stack instead of ISM driver
net/smc: fix incorrect SMC-D link group matching logic
net/smc: change the term virtual ISM to Emulated-ISM
net/smc: decouple ism_client from SMC-D DMB registration
net/smc: introduce loopback-ism for SMC intra-OS shortcut
net/smc: implement ID-related operations of loopback-ism
net/smc: implement DMB-related operations of loopback-ism
net/smc: mark optional smcd_ops and check for support when called
net/smc: ignore loopback-ism when dumping SMC-D devices
net/smc: register loopback-ism into SMC-D device list
net/smc: add operations to merge sndbuf with peer DMB
net/smc: {at|de}tach sndbuf to peer DMB if supported
net/smc: adapt cursor update when sndbuf and peer DMB are merged
net/smc: implement DMB-merged operations of loopback-ism
net/smc: fix neighbour and rtable leak in smc_ib_find_route()
net/smc: avoid overwriting when adjusting sock bufsizes
net/smc: fix LGR and link use-after-free issue
Wenjia Zhang (1):
net/smc: Fix lookup of netdev by using ib_device_get_netdev()
Yue Haibing (1):
net/smc: Remove unused function declarations
Zhengchao Shao (6):
net/smc: make smc_hash_sk/smc_unhash_sk static
net/smc: remove unreferenced header in smc_loopback.h file
net/smc: remove the fallback in __smc_connect
net/smc: remove redundant code in smc_connect_check_aclc
net/smc: remove unused input parameters in smcr_new_buf_create
net/smc: add the max value of fallback reason count
liuyacan (1):
net/smc: set ini->smcrv2.ib_dev_v2 to NULL if SMC-Rv2 is unavailable
Documentation/networking/smc-sysctl.rst | 6 +-
arch/arm64/configs/openeuler_defconfig | 1 +
arch/x86/configs/openeuler_defconfig | 1 +
drivers/s390/net/Kconfig | 5 +-
drivers/s390/net/ism.h | 26 +-
drivers/s390/net/ism_drv.c | 489 ++++++++----
include/linux/ism.h | 92 +++
include/net/smc.h | 62 +-
include/net/sock.h | 24 +-
include/uapi/linux/smc.h | 48 +-
include/uapi/linux/smc_diag.h | 2 +
net/core/sock.c | 21 -
net/mptcp/subflow.c | 4 +-
net/smc/Kconfig | 14 +
net/smc/Makefile | 1 +
net/smc/af_smc.c | 963 +++++++++++++++++-------
net/smc/smc.h | 53 +-
net/smc/smc_cdc.c | 44 +-
net/smc/smc_clc.c | 846 +++++++++++++++++----
net/smc/smc_clc.h | 196 ++++-
net/smc/smc_close.c | 6 +-
net/smc/smc_core.c | 507 +++++++++----
net/smc/smc_core.h | 131 +++-
net/smc/smc_diag.c | 20 +-
net/smc/smc_ib.c | 171 ++++-
net/smc/smc_ib.h | 24 +-
net/smc/smc_ism.c | 318 +++++---
net/smc/smc_ism.h | 61 +-
net/smc/smc_llc.c | 688 +++++++++++++----
net/smc/smc_llc.h | 12 +-
net/smc/smc_loopback.c | 427 +++++++++++
net/smc/smc_loopback.h | 60 ++
net/smc/smc_netlink.c | 47 +-
net/smc/smc_netlink.h | 2 +
net/smc/smc_pnet.c | 120 +--
net/smc/smc_rx.c | 39 +-
net/smc/smc_rx.h | 8 +-
net/smc/smc_stats.c | 2 +-
net/smc/smc_stats.h | 3 +-
net/smc/smc_tx.c | 56 +-
net/smc/smc_tx.h | 2 -
net/smc/smc_wr.c | 305 ++++++--
net/smc/smc_wr.h | 17 +-
43 files changed, 4589 insertions(+), 1335 deletions(-)
create mode 100644 include/linux/ism.h
create mode 100644 net/smc/smc_loopback.c
create mode 100644 net/smc/smc_loopback.h
--
2.34.1
2
138

[openeuler:OLK-6.6 2368/2368] aarch64-linux-ld: rdtgroup.c:undefined reference to `resctrl_arch_would_mbm_overflow'
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6
head: b252849e2320fe952d448bcb2d23699e357b3d54
commit: 63ef510d15264460c349182162d635eb4a113aac [2368/2368] fs/resctrl: Determine whether the MBM monitors require overflow checking
config: arm64-randconfig-r054-20250606 (https://download.01.org/0day-ci/archive/20250606/202506061655.Rt6FNr52-lkp@…)
compiler: aarch64-linux-gcc (GCC) 9.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506061655.Rt6FNr52-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506061655.Rt6FNr52-lkp@intel.com/
All errors (new ones prefixed by >>):
aarch64-linux-ld: Unexpected GOT/PLT entries detected!
aarch64-linux-ld: Unexpected run-time procedure linkages detected!
aarch64-linux-ld: arch/arm64/kernel/process.o: in function `__switch_to':
process.c:(.sched.text+0x164): undefined reference to `mpam_resctrl_default_group'
aarch64-linux-ld: arch/arm64/kernel/process.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `mpam_resctrl_default_group' which may bind externally can not be used when making a shared object; recompile with -fPIC
process.c:(.sched.text+0x164): dangerous relocation: unsupported relocation
aarch64-linux-ld: process.c:(.sched.text+0x170): undefined reference to `mpam_resctrl_default_group'
aarch64-linux-ld: arch/arm64/kernel/mpam.o: in function `arm64_mpam_register_cpus':
mpam.c:(.init.text+0x48): undefined reference to `mpam_register_requestor'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `is_rmid_match':
rdtgroup.c:(.text+0x94): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0xc0): undefined reference to `resctrl_arch_match_rmid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `_update_task_closid_rmid':
rdtgroup.c:(.text+0x354): undefined reference to `resctrl_sched_in'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `update_closid_rmid':
rdtgroup.c:(.text+0x3ac): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x3ac): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x3b0): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `cpus_ctrl_write':
rdtgroup.c:(.text+0x460): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x460): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x46c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mon_config_write':
rdtgroup.c:(.text+0x748): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_read' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x748): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x750): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: rdtgroup.c:(.text+0x774): undefined reference to `resctrl_arch_mon_event_config_write'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_write' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x774): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x77c): undefined reference to `resctrl_arch_mon_event_config_write'
aarch64-linux-ld: rdtgroup.c:(.text+0x7ac): undefined reference to `resctrl_arch_reset_rmid_all'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mbm_config_show':
rdtgroup.c:(.text+0x9dc): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_mon_event_config_read' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x9dc): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x9e4): undefined reference to `resctrl_arch_mon_event_config_read'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_is_mbm_enabled':
rdtgroup.c:(.text+0xdc8): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0xdd4): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_show_options':
rdtgroup.c:(.text+0x1414): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1434): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1454): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x1460): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `supports_mba_mbps':
rdtgroup.c:(.text+0x1510): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x1518): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1558): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `set_mba_sc':
rdtgroup.c:(.text+0x1658): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x1660): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x1680): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_disable_ctx':
rdtgroup.c:(.text+0x1750): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x175c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_mondata_all':
rdtgroup.c:(.text+0x17dc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_rdt_prepare_rmid_alloc':
rdtgroup.c:(.text+0x1894): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `schemata_list_add':
rdtgroup.c:(.text+0x197c): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x198c): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x1a4c): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `is_closid_match.isra.0':
rdtgroup.c:(.text+0x1cdc): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x1cfc): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_move_group_tasks.isra.0':
rdtgroup.c:(.text+0x1e50): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_rename':
rdtgroup.c:(.text+0x21c8): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x21c8): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x21d0): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_kill_sb':
rdtgroup.c:(.text+0x2280): undefined reference to `resctrl_arch_reset_resources'
aarch64-linux-ld: rdtgroup.c:(.text+0x2394): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x2394): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x239c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: rdtgroup.c:(.text+0x23d4): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x23d8): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_get_tree':
rdtgroup.c:(.text+0x2470): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x250c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x2544): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x257c): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x25b8): undefined reference to `resctrl_arch_set_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x25cc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x2608): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x269c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2778): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x27fc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2858): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2868): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x286c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2870): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x2888): undefined reference to `resctrl_arch_mon_capable'
>> aarch64-linux-ld: rdtgroup.c:(.text+0x28a4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x28e8): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_staged_configs_clear':
rdtgroup.c:(.text+0x2aa4): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `__rdtgroup_cbm_overlaps':
rdtgroup.c:(.text+0x2c98): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdt_bit_usage_show':
rdtgroup.c:(.text+0x2e80): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_init_alloc.isra.0':
rdtgroup.c:(.text+0x30e8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x3148): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x3250): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x3274): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x328c): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x33cc): undefined reference to `resctrl_arch_update_domains'
aarch64-linux-ld: rdtgroup.c:(.text+0x3444): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: rdtgroup.c:(.text+0x3454): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_cbm_overlaps':
rdtgroup.c:(.text+0x3668): undefined reference to `resctrl_arch_get_cdp_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_size_show':
rdtgroup.c:(.text+0x3d70): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x3dcc): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_mode_write':
rdtgroup.c:(.text+0x4040): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_tasks_write':
rdtgroup.c:(.text+0x44a8): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x44d0): undefined reference to `resctrl_arch_match_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x44f4): undefined reference to `resctrl_arch_match_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4538): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x454c): undefined reference to `resctrl_arch_set_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4590): undefined reference to `resctrl_sched_in'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_rmdir':
rdtgroup.c:(.text+0x4cf8): undefined reference to `resctrl_arch_set_cpu_default_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4d48): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x4d48): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x4d4c): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: rdtgroup.c:(.text+0x4dd8): undefined reference to `resctrl_arch_set_cpu_default_closid_rmid'
aarch64-linux-ld: rdtgroup.c:(.text+0x4e20): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol `resctrl_arch_sync_cpu_defaults' which may bind externally can not be used when making a shared object; recompile with -fPIC
rdtgroup.c:(.text+0x4e20): dangerous relocation: unsupported relocation
aarch64-linux-ld: rdtgroup.c:(.text+0x4e24): undefined reference to `resctrl_arch_sync_cpu_defaults'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `mkdir_rdt_prepare':
rdtgroup.c:(.text+0x4fdc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `rdtgroup_mkdir':
rdtgroup.c:(.text+0x50ac): undefined reference to `resctrl_arch_alloc_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x51cc): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x5248): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x52a0): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_offline_domain':
rdtgroup.c:(.text+0x544c): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: rdtgroup.c:(.text+0x54f4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5508): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_online_domain':
rdtgroup.c:(.text+0x55c8): undefined reference to `resctrl_arch_get_num_closid'
aarch64-linux-ld: rdtgroup.c:(.text+0x567c): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: rdtgroup.c:(.text+0x5684): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x5690): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x56e0): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x5728): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5780): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: rdtgroup.c:(.text+0x57ec): undefined reference to `resctrl_arch_mon_capable'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_offline_cpu':
rdtgroup.c:(.text+0x5960): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: rdtgroup.c:(.text+0x5ac4): undefined reference to `resctrl_arch_would_mbm_overflow'
aarch64-linux-ld: rdtgroup.c:(.text+0x5ae8): undefined reference to `resctrl_arch_is_llc_occupancy_enabled'
aarch64-linux-ld: fs/resctrl/rdtgroup.o: in function `resctrl_init':
rdtgroup.c:(.text+0x5bcc): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `parse_bw':
ctrlmondata.c:(.text+0x168): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0x1e8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_schemata_write':
ctrlmondata.c:(.text+0x888): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0x8a4): undefined reference to `resctrl_arch_update_domains'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_schemata_show':
ctrlmondata.c:(.text+0xb0c): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0xb64): undefined reference to `resctrl_arch_get_config'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `mon_event_read':
ctrlmondata.c:(.text+0xc54): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: ctrlmondata.c:(.text+0xca0): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/ctrlmondata.o: in function `rdtgroup_mondata_show':
ctrlmondata.c:(.text+0xd10): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: ctrlmondata.c:(.text+0xd1c): undefined reference to `resctrl_arch_find_domain'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `__mon_event_count':
monitor.c:(.text+0x54): undefined reference to `resctrl_arch_reset_rmid'
aarch64-linux-ld: monitor.c:(.text+0x68): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0xc4): undefined reference to `resctrl_arch_rmid_read'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `mbm_update':
monitor.c:(.text+0x11c): undefined reference to `resctrl_arch_is_mbm_total_enabled'
aarch64-linux-ld: monitor.c:(.text+0x138): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x184): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: monitor.c:(.text+0x188): undefined reference to `resctrl_arch_is_mbm_local_enabled'
aarch64-linux-ld: monitor.c:(.text+0x1a4): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x1f8): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x23c): undefined reference to `resctrl_arch_rmid_idx_encode'
aarch64-linux-ld: monitor.c:(.text+0x2bc): undefined reference to `resctrl_arch_mon_ctx_free'
aarch64-linux-ld: fs/resctrl/monitor.o: in function `__check_limbo':
monitor.c:(.text+0x324): undefined reference to `resctrl_arch_get_resource'
aarch64-linux-ld: monitor.c:(.text+0x32c): undefined reference to `resctrl_arch_system_num_rmid_idx'
aarch64-linux-ld: monitor.c:(.text+0x344): undefined reference to `resctrl_arch_mon_ctx_alloc'
aarch64-linux-ld: monitor.c:(.text+0x3ec): undefined reference to `resctrl_arch_rmid_idx_decode'
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for RESCTRL_FS
Depends on [n]: MISC_FILESYSTEMS [=n] && ARCH_HAS_CPU_RESCTRL [=y]
Selected by [y]:
- ARM64_MPAM [=y]
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:openEuler-1.0-LTS 1659/1659] mm/memory.c:4491:3: warning: cast from 'int (*)(unsigned long, unsigned long, struct cgp_args *)' to 'ktask_thread_func' (aka 'int (*)(void *, void *, void *)') converts to incompatible function type
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
head: 89f3a2595f2e3f14f976811d203bd8f55ff4eada
commit: ae0cd4d46ced733c522f2cc6da2d380d69123fc4 [1659/1659] mm: parallelize clear_gigantic_page
config: x86_64-buildonly-randconfig-001-20250606 (https://download.01.org/0day-ci/archive/20250606/202506061637.CVNqsEqf-lkp@…)
compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506061637.CVNqsEqf-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506061637.CVNqsEqf-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> mm/memory.c:4491:3: warning: cast from 'int (*)(unsigned long, unsigned long, struct cgp_args *)' to 'ktask_thread_func' (aka 'int (*)(void *, void *, void *)') converts to incompatible function type [-Wcast-function-type-mismatch]
4491 | DEFINE_KTASK_CTL(ctl, clear_gigantic_page_chunk, &args,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4492 | KTASK_MEM_CHUNK);
| ~~~~~~~~~~~~~~~~
include/linux/ktask.h:139:3: note: expanded from macro 'DEFINE_KTASK_CTL'
139 | KTASK_CTL_INITIALIZER(thread_func, func_arg, min_chunk_size) \
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/ktask.h:123:21: note: expanded from macro 'KTASK_CTL_INITIALIZER'
123 | .kc_thread_func = (ktask_thread_func)(thread_func), \
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
vim +4491 mm/memory.c
4480
4481 void clear_huge_page(struct page *page,
4482 unsigned long addr_hint, unsigned int pages_per_huge_page)
4483 {
4484 unsigned long addr = addr_hint &
4485 ~(((unsigned long)pages_per_huge_page << PAGE_SHIFT) - 1);
4486
4487 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
4488 struct cgp_args args = {page, addr};
4489 struct ktask_node node = {0, pages_per_huge_page,
4490 page_to_nid(page)};
> 4491 DEFINE_KTASK_CTL(ctl, clear_gigantic_page_chunk, &args,
4492 KTASK_MEM_CHUNK);
4493
4494 ktask_run_numa(&node, 1, &ctl);
4495 return;
4496 }
4497
4498 process_huge_page(addr_hint, pages_per_huge_page, clear_subpage, page);
4499 }
4500
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:openEuler-1.0-LTS 1659/1659] mm/vmalloc.c:217:23: warning: variable 'start' set but not used
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
head: 89f3a2595f2e3f14f976811d203bd8f55ff4eada
commit: 3eb01faed2ebb254019a3bb72ce3bdf4d0a9be74 [1659/1659] mm/vmalloc: add vmap_range_noflush variant
config: arm64-allnoconfig (https://download.01.org/0day-ci/archive/20250606/202506061633.Zsp5yfyi-lkp@…)
compiler: aarch64-linux-gcc (GCC) 15.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506061633.Zsp5yfyi-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506061633.Zsp5yfyi-lkp@intel.com/
All warnings (new ones prefixed by >>):
mm/vmalloc.c: In function 'vmap_range_noflush':
>> mm/vmalloc.c:217:23: warning: variable 'start' set but not used [-Wunused-but-set-variable]
217 | unsigned long start;
| ^~~~~
mm/vmalloc.c: At top level:
mm/vmalloc.c:1417:6: warning: no previous prototype for 'set_iounmap_nonlazy' [-Wmissing-prototypes]
1417 | void set_iounmap_nonlazy(void)
| ^~~~~~~~~~~~~~~~~~~
In file included from arch/arm64/include/asm/atomic.h:36,
from include/linux/atomic.h:7,
from include/asm-generic/bitops/atomic.h:5,
from arch/arm64/include/asm/bitops.h:37,
from include/linux/bitops.h:19,
from include/linux/kernel.h:11,
from include/linux/list.h:9,
from include/linux/preempt.h:11,
from include/linux/spinlock.h:51,
from include/linux/vmalloc.h:5,
from mm/vmalloc.c:11:
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'find_vmap_area' at mm/vmalloc.c:1519:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
In file included from include/linux/spinlock.h:82:
mm/vmalloc.c: In function 'find_vmap_area':
mm/vmalloc.c:557:24: note: object 'vmap_area_lock' of size 4
557 | static DEFINE_SPINLOCK(vmap_area_lock);
| ^~~~~~~~~~~~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'find_vmap_area' at mm/vmalloc.c:1519:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/vmalloc.c: In function 'find_vmap_area':
mm/vmalloc.c:557:24: note: object 'vmap_area_lock' of size 4
557 | static DEFINE_SPINLOCK(vmap_area_lock);
| ^~~~~~~~~~~~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'setup_vmalloc_vm' at mm/vmalloc.c:2111:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/vmalloc.c: In function 'setup_vmalloc_vm':
mm/vmalloc.c:557:24: note: object 'vmap_area_lock' of size 4
557 | static DEFINE_SPINLOCK(vmap_area_lock);
| ^~~~~~~~~~~~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'setup_vmalloc_vm' at mm/vmalloc.c:2111:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/vmalloc.c: In function 'setup_vmalloc_vm':
mm/vmalloc.c:557:24: note: object 'vmap_area_lock' of size 4
557 | static DEFINE_SPINLOCK(vmap_area_lock);
| ^~~~~~~~~~~~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
vim +/start +217 mm/vmalloc.c
004cface9c1c0b Nicholas Piggin 2021-10-29 211
3eb01faed2ebb2 Nicholas Piggin 2021-10-29 212 static int vmap_range_noflush(unsigned long addr, unsigned long end,
004cface9c1c0b Nicholas Piggin 2021-10-29 213 phys_addr_t phys_addr, pgprot_t prot,
004cface9c1c0b Nicholas Piggin 2021-10-29 214 unsigned int max_page_shift)
004cface9c1c0b Nicholas Piggin 2021-10-29 215 {
004cface9c1c0b Nicholas Piggin 2021-10-29 216 pgd_t *pgd;
004cface9c1c0b Nicholas Piggin 2021-10-29 @217 unsigned long start;
004cface9c1c0b Nicholas Piggin 2021-10-29 218 unsigned long next;
004cface9c1c0b Nicholas Piggin 2021-10-29 219 int err;
004cface9c1c0b Nicholas Piggin 2021-10-29 220
004cface9c1c0b Nicholas Piggin 2021-10-29 221 might_sleep();
004cface9c1c0b Nicholas Piggin 2021-10-29 222 BUG_ON(addr >= end);
004cface9c1c0b Nicholas Piggin 2021-10-29 223
004cface9c1c0b Nicholas Piggin 2021-10-29 224 start = addr;
004cface9c1c0b Nicholas Piggin 2021-10-29 225 pgd = pgd_offset_k(addr);
004cface9c1c0b Nicholas Piggin 2021-10-29 226 do {
004cface9c1c0b Nicholas Piggin 2021-10-29 227 next = pgd_addr_end(addr, end);
004cface9c1c0b Nicholas Piggin 2021-10-29 228 err = vmap_p4d_range(pgd, addr, next, phys_addr, prot, max_page_shift);
004cface9c1c0b Nicholas Piggin 2021-10-29 229 if (err)
004cface9c1c0b Nicholas Piggin 2021-10-29 230 break;
004cface9c1c0b Nicholas Piggin 2021-10-29 231 } while (pgd++, phys_addr += (next - addr), addr = next, addr != end);
004cface9c1c0b Nicholas Piggin 2021-10-29 232
3eb01faed2ebb2 Nicholas Piggin 2021-10-29 233 return err;
3eb01faed2ebb2 Nicholas Piggin 2021-10-29 234 }
3eb01faed2ebb2 Nicholas Piggin 2021-10-29 235
:::::: The code at line 217 was first introduced by commit
:::::: 004cface9c1c0b6351473934a4ce452193e05b07 mm: Move vmap_range from mm/ioremap.c to mm/vmalloc.c
:::::: TO: Nicholas Piggin <npiggin(a)gmail.com>
:::::: CC: Yang Yingliang <yangyingliang(a)huawei.com>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0

[openeuler:openEuler-1.0-LTS 1659/1659] mm/page_alloc.c:3005: warning: Function parameter or member 'mt' not described in '__putback_isolated_page'
by kernel test robot 06 Jun '25
by kernel test robot 06 Jun '25
06 Jun '25
Hi Alexander,
FYI, the error/warning still remains.
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS
head: 89f3a2595f2e3f14f976811d203bd8f55ff4eada
commit: 91bac2310ae7eca9d9869222c96fcc3d02851eea [1659/1659] mm: add function __putback_isolated_page
config: arm64-allnoconfig (https://download.01.org/0day-ci/archive/20250606/202506061449.nBm6oAvj-lkp@…)
compiler: aarch64-linux-gcc (GCC) 15.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250606/202506061449.nBm6oAvj-lkp@…)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp(a)intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506061449.nBm6oAvj-lkp@intel.com/
All warnings (new ones prefixed by >>):
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from '__build_all_zonelists' at mm/page_alloc.c:5529:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/page_alloc.c: In function '__build_all_zonelists':
mm/page_alloc.c:5527:32: note: object 'lock' of size 4
5527 | static DEFINE_SPINLOCK(lock);
| ^~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'adjust_managed_page_count' at mm/page_alloc.c:7188:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/page_alloc.c: In function 'adjust_managed_page_count':
mm/page_alloc.c:127:24: note: object 'managed_page_count_lock' of size 4
127 | static DEFINE_SPINLOCK(managed_page_count_lock);
| ^~~~~~~~~~~~~~~~~~~~~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'adjust_managed_page_count' at mm/page_alloc.c:7188:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/page_alloc.c: In function 'adjust_managed_page_count':
mm/page_alloc.c:127:24: note: object 'managed_page_count_lock' of size 4
127 | static DEFINE_SPINLOCK(managed_page_count_lock);
| ^~~~~~~~~~~~~~~~~~~~~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'setup_per_zone_wmarks' at mm/page_alloc.c:7504:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/page_alloc.c: In function 'setup_per_zone_wmarks':
mm/page_alloc.c:7502:32: note: object 'lock' of size 4
7502 | static DEFINE_SPINLOCK(lock);
| ^~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
In function '__cmpxchg_case_acq_4',
inlined from '__cmpxchg_acq' at arch/arm64/include/asm/cmpxchg.h:141:1,
inlined from 'queued_spin_lock' at include/asm-generic/qspinlock.h:85:8,
inlined from 'do_raw_spin_lock' at include/linux/spinlock.h:180:2,
inlined from '__raw_spin_lock' at include/linux/spinlock_api_smp.h:143:2,
inlined from 'spin_lock' at include/linux/spinlock.h:329:2,
inlined from 'setup_per_zone_wmarks' at mm/page_alloc.c:7504:2:
arch/arm64/include/asm/atomic_ll_sc.h:259:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'spinlock_t[1]' {aka 'struct spinlock[1]'} [-Warray-bounds=]
259 | asm volatile( \
| ^~~
arch/arm64/include/asm/atomic_ll_sc.h:283:1: note: in expansion of macro '__CMPXCHG_CASE'
283 | __CMPXCHG_CASE(w, , acq_4, , a, , "memory")
| ^~~~~~~~~~~~~~
mm/page_alloc.c: In function 'setup_per_zone_wmarks':
mm/page_alloc.c:7502:32: note: object 'lock' of size 4
7502 | static DEFINE_SPINLOCK(lock);
| ^~~~
include/linux/spinlock_types.h:81:44: note: in definition of macro 'DEFINE_SPINLOCK'
81 | #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
| ^
>> mm/page_alloc.c:3005: warning: Function parameter or member 'mt' not described in '__putback_isolated_page'
vim +3005 mm/page_alloc.c
2995
2996 /**
2997 * __putback_isolated_page - Return a now-isolated page back where we got it
2998 * @page: Page that was isolated
2999 * @order: Order of the isolated page
3000 *
3001 * This function is meant to return a page pulled from the free lists via
3002 * __isolate_free_page back to the free lists they were pulled from.
3003 */
3004 void __putback_isolated_page(struct page *page, unsigned int order, int mt)
> 3005 {
3006 struct zone *zone = page_zone(page);
3007
3008 /* zone lock should be held when this function is called */
3009 lockdep_assert_held(&zone->lock);
3010
3011 /* Return isolated page to tail of freelist. */
3012 __free_one_page(page, page_to_pfn(page), zone, order, mt);
3013 }
3014
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
1
0