Re: [PATCH v2 1/9] KVM: arm64: Enable UBSan instrumentation in nVHE hyp code
by kernel test robot
Hi Elena,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on arm64/for-next/core]
[also build test WARNING on v5.11-rc3 next-20210115]
[cannot apply to kvmarm/next soc/for-next arm/for-next xlnx/master]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Elena-Petrova/UBSan-Enablement-f...
base: https://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git for-next/core
config: arm64-allyesconfig (attached as .config)
compiler: aarch64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/9eaabf22215aee1257362a608a15658c5...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Elena-Petrova/UBSan-Enablement-for-hyp-nVHE-code/20210115-112509
git checkout 9eaabf22215aee1257362a608a15658c558d7fe5
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
arch/arm64/kvm/hyp/nvhe/ubsan.c:10:6: warning: no previous prototype for '__ubsan_handle_add_overflow' [-Wmissing-prototypes]
10 | void __ubsan_handle_add_overflow(void *_data, void *lhs, void *rhs) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:12:6: warning: no previous prototype for '__ubsan_handle_sub_overflow' [-Wmissing-prototypes]
12 | void __ubsan_handle_sub_overflow(void *_data, void *lhs, void *rhs) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:14:6: warning: no previous prototype for '__ubsan_handle_mul_overflow' [-Wmissing-prototypes]
14 | void __ubsan_handle_mul_overflow(void *_data, void *lhs, void *rhs) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:16:6: warning: no previous prototype for '__ubsan_handle_negate_overflow' [-Wmissing-prototypes]
16 | void __ubsan_handle_negate_overflow(void *_data, void *old_val) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:18:6: warning: no previous prototype for '__ubsan_handle_divrem_overflow' [-Wmissing-prototypes]
18 | void __ubsan_handle_divrem_overflow(void *_data, void *lhs, void *rhs) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:20:6: warning: no previous prototype for '__ubsan_handle_type_mismatch' [-Wmissing-prototypes]
20 | void __ubsan_handle_type_mismatch(struct type_mismatch_data *data, void *ptr) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> arch/arm64/kvm/hyp/nvhe/ubsan.c:22:6: warning: no previous prototype for '__ubsan_handle_type_mismatch_v1' [-Wmissing-prototypes]
22 | void __ubsan_handle_type_mismatch_v1(void *_data, void *ptr) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:24:6: warning: no previous prototype for '__ubsan_handle_out_of_bounds' [-Wmissing-prototypes]
24 | void __ubsan_handle_out_of_bounds(void *_data, void *index) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:26:6: warning: no previous prototype for '__ubsan_handle_shift_out_of_bounds' [-Wmissing-prototypes]
26 | void __ubsan_handle_shift_out_of_bounds(void *_data, void *lhs, void *rhs) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:28:6: warning: no previous prototype for '__ubsan_handle_builtin_unreachable' [-Wmissing-prototypes]
28 | void __ubsan_handle_builtin_unreachable(void *_data) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/ubsan.c:30:6: warning: no previous prototype for '__ubsan_handle_load_invalid_value' [-Wmissing-prototypes]
30 | void __ubsan_handle_load_invalid_value(void *_data, void *val) {}
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/__ubsan_handle_type_mismatch_v1 +22 arch/arm64/kvm/hyp/nvhe/ubsan.c
21
> 22 void __ubsan_handle_type_mismatch_v1(void *_data, void *ptr) {}
23
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
Re: [PATCH 11/21] objtool: Move unsuffixed symbol conversion to a helper function
by kernel test robot
Hi Josh,
I love your patch! Yet something to improve:
[auto build test ERROR on tip/master]
[also build test ERROR on linus/master v5.11-rc3 next-20210115]
[cannot apply to xen-tip/linux-next tip/x86/core]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Josh-Poimboeuf/objtool-vmlinux-o...
base: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 2c2adbc40b7276518921864053f3c02034b2290f
config: x86_64-rhel (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
# https://github.com/0day-ci/linux/commit/f06729b24980b0cdff19419510b17f5b4...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Josh-Poimboeuf/objtool-vmlinux-o-and-CLANG-LTO-support/20210115-125439
git checkout f06729b24980b0cdff19419510b17f5b493dc756
# save the attached .config to linux build tree
make W=1 ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
elf.c: In function 'read_symbols':
>> elf.c:409:8: error: unused variable 'coldstr' [-Werror=unused-variable]
409 | char *coldstr;
| ^~~~~~~
cc1: all warnings being treated as errors
make[4]: *** [tools/build/Makefile.build:96: tools/objtool/elf.o] Error 1
make[3]: *** [Makefile:59: tools/objtool/objtool-in.o] Error 2
--
elf.c: In function 'read_symbols':
>> elf.c:409:8: error: unused variable 'coldstr' [-Werror=unused-variable]
409 | char *coldstr;
| ^~~~~~~
cc1: all warnings being treated as errors
make[4]: *** [tools/build/Makefile.build:96: tools/objtool/elf.o] Error 1
make[3]: *** [Makefile:59: tools/objtool/objtool-in.o] Error 2
make[2]: *** [Makefile:68: objtool] Error 2
make[1]: *** [Makefile:1931: tools/objtool] Error 2
make[1]: Target 'modules_prepare' not remade because of errors.
make: *** [Makefile:185: __sub-make] Error 2
make: Target 'modules_prepare' not remade because of errors.
--
elf.c: In function 'read_symbols':
>> elf.c:409:8: error: unused variable 'coldstr' [-Werror=unused-variable]
409 | char *coldstr;
| ^~~~~~~
cc1: all warnings being treated as errors
make[4]: *** [tools/build/Makefile.build:96: tools/objtool/elf.o] Error 1
make[4]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:59: tools/objtool/objtool-in.o] Error 2
make[2]: *** [Makefile:68: objtool] Error 2
make[1]: *** [Makefile:1931: tools/objtool] Error 2
make[1]: Target 'prepare' not remade because of errors.
make: *** [Makefile:185: __sub-make] Error 2
make: Target 'prepare' not remade because of errors.
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
drivers/gpu/drm/rockchip/rockchip_vop_reg.c:1029:34: warning: unused variable 'vop_driver_dt_match'
by kernel test robot
Hi Robin,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 5ee88057889bbca5f5bb96031b62b3756b33e164
commit: b4ceb4a5359ed1c9ba4a20acf3a70d4bbead3248 iommu: Tidy up Kconfig for SoC IOMMUs
date: 6 months ago
config: x86_64-randconfig-r025-20210115 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 5b42fd8dd4e7e29125a09a41a33af7c9cb57d144)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit...
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout b4ceb4a5359ed1c9ba4a20acf3a70d4bbead3248
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/rockchip/rockchip_vop_reg.c:1029:34: warning: unused variable 'vop_driver_dt_match' [-Wunused-const-variable]
static const struct of_device_id vop_driver_dt_match[] = {
^
1 warning generated.
vim +/vop_driver_dt_match +1029 drivers/gpu/drm/rockchip/rockchip_vop_reg.c
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1028
a67719d182291b Mark Yao 2015-12-15 @1029 static const struct of_device_id vop_driver_dt_match[] = {
f7673453506035 Mark Yao 2015-12-15 1030 { .compatible = "rockchip,rk3036-vop",
f7673453506035 Mark Yao 2015-12-15 1031 .data = &rk3036_vop },
460c3b0029923a Sandy Huang 2017-11-14 1032 { .compatible = "rockchip,rk3126-vop",
460c3b0029923a Sandy Huang 2017-11-14 1033 .data = &rk3126_vop },
570913e0b1bebe Sandy Huang 2018-06-26 1034 { .compatible = "rockchip,px30-vop-big",
570913e0b1bebe Sandy Huang 2018-06-26 1035 .data = &px30_vop_big },
570913e0b1bebe Sandy Huang 2018-06-26 1036 { .compatible = "rockchip,px30-vop-lit",
570913e0b1bebe Sandy Huang 2018-06-26 1037 .data = &px30_vop_lit },
f4a6de855eae10 Mark Yao 2018-12-29 1038 { .compatible = "rockchip,rk3066-vop",
f4a6de855eae10 Mark Yao 2018-12-29 1039 .data = &rk3066_vop },
428e15cc41e360 Heiko Stuebner 2018-08-30 1040 { .compatible = "rockchip,rk3188-vop",
428e15cc41e360 Heiko Stuebner 2018-08-30 1041 .data = &rk3188_vop },
b51502add7afc5 Mark Yao 2016-08-15 1042 { .compatible = "rockchip,rk3288-vop",
b51502add7afc5 Mark Yao 2016-08-15 1043 .data = &rk3288_vop },
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1044 { .compatible = "rockchip,rk3368-vop",
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1045 .data = &rk3368_vop },
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1046 { .compatible = "rockchip,rk3366-vop",
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1047 .data = &rk3366_vop },
0a63bfd046bbc8 Mark Yao 2016-04-20 1048 { .compatible = "rockchip,rk3399-vop-big",
0a63bfd046bbc8 Mark Yao 2016-04-20 1049 .data = &rk3399_vop_big },
0a63bfd046bbc8 Mark Yao 2016-04-20 1050 { .compatible = "rockchip,rk3399-vop-lit",
0a63bfd046bbc8 Mark Yao 2016-04-20 1051 .data = &rk3399_vop_lit },
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1052 { .compatible = "rockchip,rk3228-vop",
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1053 .data = &rk3228_vop },
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1054 { .compatible = "rockchip,rk3328-vop",
eb5cb6aa9a72a7 Mark Yao 2017-07-26 1055 .data = &rk3328_vop },
a67719d182291b Mark Yao 2015-12-15 1056 {},
a67719d182291b Mark Yao 2015-12-15 1057 };
a67719d182291b Mark Yao 2015-12-15 1058 MODULE_DEVICE_TABLE(of, vop_driver_dt_match);
a67719d182291b Mark Yao 2015-12-15 1059
:::::: The code at line 1029 was first introduced by commit
:::::: a67719d182291bf62c6093545b9af27f0431cbeb drm/rockchip: vop: spilt register related into rockchip_reg_vop.c
:::::: TO: Mark Yao <mark.yao(a)rock-chips.com>
:::::: CC: Mark Yao <mark.yao(a)rock-chips.com>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
Re: [PATCH v2 2/2] media: rockchip: rkisp1: extend uapi array sizes
by kernel test robot
Hi Heiko,
I love your patch! Perhaps something to improve:
[auto build test WARNING on rockchip/for-next]
[also build test WARNING on linuxtv-media/master linus/master v5.11-rc3 next-20210114]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Heiko-Stuebner/media-rockchip-rk...
base: https://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git for-next
config: sparc-randconfig-r001-20210115 (attached as .config)
compiler: sparc-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/9a078d10ec53e5c1651ed5da0b37b0e4e...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Heiko-Stuebner/media-rockchip-rkisp1-carry-ip-version-information/20210115-124728
git checkout 9a078d10ec53e5c1651ed5da0b37b0e4eb34fc47
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=sparc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
In file included from include/linux/string.h:21,
from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from arch/sparc/include/asm/smp_32.h:15,
from arch/sparc/include/asm/smp.h:7,
from arch/sparc/include/asm/switch_to_32.h:5,
from arch/sparc/include/asm/switch_to.h:7,
from arch/sparc/include/asm/ptrace.h:120,
from arch/sparc/include/asm/thread_info_32.h:19,
from arch/sparc/include/asm/thread_info.h:7,
from include/linux/thread_info.h:56,
from include/asm-generic/preempt.h:5,
from ./arch/sparc/include/generated/asm/preempt.h:1,
from include/linux/preempt.h:78,
from include/linux/spinlock.h:51,
from include/linux/wait.h:9,
from include/linux/poll.h:8,
from include/media/v4l2-dev.h:13,
from include/media/v4l2-common.h:18,
from drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c:8:
drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c: In function 'rkisp1_stats_get_hst_meas':
>> arch/sparc/include/asm/string.h:18:29: warning: 'memset' used with length equal to number of elements without multiplication by element size [-Wmemset-elt-size]
18 | #define memset(s, c, count) __builtin_memset(s, c, count)
| ^~~~~~~~~~~~~~~~
drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c:239:2: note: in expansion of macro 'memset'
239 | memset(pbuf->params.hist.hist_bins, 0, RKISP1_CIF_ISP_HIST_BIN_N_MAX);
| ^~~~~~
vim +/memset +18 arch/sparc/include/asm/string.h
70a6fcf3283a0ac1 Al Viro 2016-01-17 16
70a6fcf3283a0ac1 Al Viro 2016-01-17 17 #define __HAVE_ARCH_MEMSET
70a6fcf3283a0ac1 Al Viro 2016-01-17 @18 #define memset(s, c, count) __builtin_memset(s, c, count)
70a6fcf3283a0ac1 Al Viro 2016-01-17 19
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
[tip:locking/core 3/7] ERROR: modpost: ".lockdep_init_map_type" undefined!
by kernel test robot
Hi Peter,
First bad commit (maybe != root cause):
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
head: 7e923e6a3ceb877497dd9ee70d71fa33b94f332b
commit: dfd5e3f5fe27bda91d5cc028c86ffbb7a0614489 [3/7] locking/lockdep: Mark local_lock_t
config: powerpc64-randconfig-s031-20210114 (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# apt-get install sparse
# sparse version: v0.6.3-208-g46a52ca4-dirty
# https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/commit/?id=df...
git remote add tip https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git
git fetch --no-tags tip locking/core
git checkout dfd5e3f5fe27bda91d5cc028c86ffbb7a0614489
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=powerpc64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>, old ones prefixed by <<):
ERROR: modpost: ".hrtimer_init" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".finish_wait" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__cpuhp_setup_state" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".mutex_lock_nested" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".simple_read_from_buffer" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".hrtimer_forward" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".ring_buffer_event_length" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".arch_local_irq_restore" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".prepare_to_wait_event" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".get_mm_exe_file" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".register_filesystem" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".down_read" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".unregister_filesystem" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_switch" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".flush_delayed_work" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".schedule" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".task_handoff_unregister" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".ppc_enable_pmcs" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__dynamic_pr_debug" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".task_handoff_register" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__this_cpu_preempt_check" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".find_vma" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__cpuhp_remove_state" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".nonseekable_open" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: "._raw_spin_lock_irqsave" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".get_tree_single" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".init_wait_entry" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__wake_up" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".get_dcookie" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".new_inode" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".ring_buffer_event_data" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".dcookie_register" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".dput" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".d_alloc_name" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".profile_pc" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".printk" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".up_write" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".lockdep_init_map_type" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".validate_sp" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__stack_chk_fail" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".mutex_unlock" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".vfree" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".release_pmc_hardware" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".simple_strtoul" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".hrtimer_cancel" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".cpus_read_unlock" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: "._copy_from_user" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".on_each_cpu" [arch/powerpc/oprofile/oprofile.ko] undefined!
ERROR: modpost: ".configfs_unregister_subsystem" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".printk" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".configfs_register_subsystem" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".__mutex_init" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".config_group_init" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".config_item_init_type_name" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".config_group_init_type_name" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".__kmalloc" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".kstrtoint" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".sprintf" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".memcpy" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [samples/configfs/configfs_sample.ko] undefined!
ERROR: modpost: ".__pci_register_driver" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".pci_enable_device" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".register_framebuffer" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".__kmalloc" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".ioremap" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".memset" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".pci_release_regions" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".framebuffer_alloc" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: "._dev_info" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: "._dev_err" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".pci_read_config_dword" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".pci_request_regions" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".iounmap" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".framebuffer_release" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".unregister_framebuffer" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [samples/vfio-mdev/mdpy-fb.ko] undefined!
ERROR: modpost: ".ntb_unregister_client" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".destroy_workqueue" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__ntb_register_client" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".debugfs_initialized" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".alloc_workqueue" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp1" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".printk" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ntb_default_port_number" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ntb_default_peer_port_count" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".debugfs_create_bool" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".debugfs_create_u8" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".debugfs_create_file" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".debugfs_create_dir" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ntb_link_event" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ntb_set_ctx" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__init_waitqueue_head" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ntb_default_peer_port_number" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".devm_ioremap_wc" [drivers/ntb/test/ntb_perf.ko] undefined!
>> ERROR: modpost: ".lockdep_init_map_type" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".devm_kmalloc" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".kstrtou8_from_user" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".wait_for_completion_interruptible" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".kstrtoint_from_user" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dma_unmap_resource" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".finish_wait" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".prepare_to_wait_event" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".init_wait_entry" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".refcount_warn_saturate" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dma_map_resource" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__dma_request_channel" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: "._memcpy_toio" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dma_release_channel" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".msleep" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".debug_dma_mapping_error" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dma_map_page_attrs" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dmaengine_get_unmap_data" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".schedule" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dmaengine_unmap_put" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ktime_get" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".get_random_bytes" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__kmalloc" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: "._dev_warn" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".complete_all" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__init_swait_queue_head" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dma_alloc_attrs" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp8" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".dma_free_attrs" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: "._dev_err" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_switch" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".flush_work" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ntb_clear_ctx" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".debugfs_remove" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".queue_work_on" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__stack_chk_fail" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".simple_read_from_buffer" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".scnprintf" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__arch_hweight64" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".cancel_work_sync" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__wake_up" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".usleep_range" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__dynamic_dev_dbg" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp4" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/ntb/test/ntb_perf.ko] undefined!
ERROR: modpost: ".ntb_unregister_client" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__ntb_register_client" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".debugfs_initialized" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".hrtimer_start_range_ns" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: "._raw_spin_unlock" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: "._raw_spin_lock" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: "._dev_err" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp8" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".ntb_default_port_number" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".ntb_default_peer_port_count" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".debugfs_create_atomic_t" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".debugfs_create_dir" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".ntb_link_event" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".ntb_set_ctx" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".ntb_default_peer_port_number" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp4" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".hrtimer_init" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__raw_spin_lock_init" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".devm_kmalloc" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__dynamic_dev_dbg" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".hrtimer_cancel" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".ntb_clear_ctx" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".debugfs_remove" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/ntb/test/ntb_pingpong.ko] undefined!
ERROR: modpost: ".pci_unregister_driver" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".__pci_register_driver" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".debugfs_create_dir" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".debugfs_initialized" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".printk" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".pci_read_config_dword" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".debugfs_create_file" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".snprintf" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".ntb_register_device" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".devm_request_threaded_irq" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".pci_alloc_irq_vectors_affinity" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".devm_hwmon_device_register_with_groups" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".__mutex_init" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".memset" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".pcim_iomap_table" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".pcim_iomap_regions_request_all" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".pci_set_master" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".pcim_enable_device" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: "._dev_warn" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".__stack_chk_fail" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: "._dev_err" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".dma_set_coherent_mask" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".dma_set_mask" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".__raw_spin_lock_init" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: "._dev_info" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".ntb_unregister_device" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
--
ERROR: modpost: ".ioread32" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp4" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/ntb/hw/idt/ntb_hw_idt.ko] undefined!
ERROR: modpost: "._raw_spin_unlock_irqrestore" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".__init_swait_queue_head" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp4" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".device_unregister" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".put_device" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp1" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".wait_for_completion" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".driver_register" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".get_device" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_switch" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".__raw_spin_lock_init" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".dev_set_name" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".device_register" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: "._raw_spin_lock_irqsave" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".driver_unregister" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".memset" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".bus_unregister" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".complete" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".bus_register" [drivers/ntb/ntb.ko] undefined!
ERROR: modpost: ".call_usermodehelper" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".cancel_delayed_work_sync" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "._raw_spin_unlock_irqrestore" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".del_timer_sync" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kmalloc_order" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__init_swait_queue_head" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".panic" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp4" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".device_add" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".snprintf" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__mutex_init" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kstrtou16" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".destroy_workqueue" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".init_timer_key" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp8" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".put_device" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp1" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "._dev_info" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".refcount_warn_saturate" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kmem_cache_free" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".flush_workqueue" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".sysfs_notify" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".queue_delayed_work_on" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".debugfs_create_file" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".finish_wait" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".mutex_lock_nested" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".ida_free" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".simple_read_from_buffer" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".sprintf" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__msecs_to_jiffies" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".driver_register" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".sysfs_streq" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__kmalloc" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".prepare_to_wait_event" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "._raw_spin_lock_irq" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".add_uevent_var" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".get_device" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_switch" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".scnprintf" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kmem_cache_create" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp2" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".debugfs_remove" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kmemdup" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".device_initialize" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__raw_spin_lock_init" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".schedule" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".debugfs_create_dir" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".dev_set_name" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".flush_work" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp2" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".device_del" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kstrdup" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "._raw_spin_lock_irqsave" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kstrtoll" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".alloc_workqueue" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "._dev_warn" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "._raw_spin_unlock_irq" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".init_wait_entry" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".wait_for_completion_interruptible_timeout" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".driver_unregister" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".memcpy" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".queue_work_on" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__wake_up" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kmem_cache_alloc" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kstrtobool" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".___ratelimit" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".add_timer" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "._dev_err" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".ida_destroy" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".wait_for_completion_interruptible" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".bus_unregister" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".printk" [drivers/greybus/greybus.ko] undefined!
>> ERROR: modpost: ".lockdep_init_map_type" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__dynamic_dev_dbg" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__stack_chk_fail" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".ida_alloc_range" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".mutex_unlock" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".complete" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".bus_register" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".kmem_cache_destroy" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: ".tifm_unregister_driver" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".tifm_register_driver" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".preempt_schedule" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".arch_local_irq_restore" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".preempt_count_sub" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".preempt_count_add" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_switch" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: "._raw_spin_unlock" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: "._raw_spin_lock" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".mod_timer" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".tifm_map_sg" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".memstick_add_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".tifm_has_ms_pif" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".tasklet_init" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".init_timer_key" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".memstick_alloc_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".eeh_check_failure" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".tifm_eject" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".printk" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__dynamic_dev_dbg" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__tasklet_schedule" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".tifm_unmap_sg" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".memstick_free_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".memstick_remove_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: "._raw_spin_unlock_irqrestore" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".memstick_next_req" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp2" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".del_timer" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: "._raw_spin_lock_irqsave" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".tasklet_kill" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: modpost: ".idr_destroy" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".class_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".destroy_workqueue" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".bus_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__class_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".bus_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".alloc_workqueue" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".driver_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".driver_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".mutex_destroy" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".device_del" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".flush_workqueue" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".preempt_schedule" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".debug_locks_off" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".idr_remove" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".device_add" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".preempt_count_sub" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".lock_release" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".debug_smp_processor_id" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: "._raw_spin_unlock" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".idr_alloc" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: "._raw_spin_lock" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".idr_preload" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".device_initialize" [drivers/memstick/core/memstick.ko] undefined!
>> ERROR: modpost: ".lockdep_init_map_type" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__mutex_init" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".device_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".device_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__init_swait_queue_head" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".dev_set_name" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__kmalloc" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".mutex_unlock" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".mutex_lock_nested" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".wait_for_completion" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__dynamic_dev_dbg" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".complete" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".memcpy" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".queue_work_on" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp1" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".sprintf" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".add_uevent_var" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".get_device" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".put_device" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: ".i2c_del_driver" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".i2c_register_driver" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".pmbus_read_word_data" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".pmbus_write_word_data" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".pmbus_clear_cache" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_switch" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".pmbus_read_byte_data" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".pmbus_write_byte" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".pmbus_get_driver_info" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".pmbus_do_probe" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".devm_kmalloc" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: "._dev_notice" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".strncasecmp" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".fortify_panic" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".strnlen" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: "._dev_info" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__stack_chk_fail" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: "._dev_err" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".i2c_smbus_read_block_data" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".udelay" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp8" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".ktime_get" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp2" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/hwmon/pmbus/zl6100.ko] undefined!
ERROR: modpost: ".i2c_del_driver" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".i2c_register_driver" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp2" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".pmbus_read_word_data" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".pmbus_get_driver_info" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_switch" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".pmbus_read_byte_data" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".pmbus_do_probe" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".devm_kmemdup" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/hwmon/pmbus/xdpe12284.ko] undefined!
ERROR: modpost: ".i2c_del_driver" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".i2c_register_driver" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".pmbus_do_probe" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".i2c_smbus_write_byte_data" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_cmp4" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".devm_kmalloc" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: "._dev_notice" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".of_device_get_match_data" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".strncasecmp" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".fortify_panic" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp8" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".strnlen" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: "._dev_info" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".__stack_chk_fail" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: "._dev_err" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".i2c_smbus_read_block_data" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/hwmon/pmbus/ucd9200.ko] undefined!
ERROR: modpost: ".i2c_del_driver" [drivers/hwmon/pmbus/tps40422.ko] undefined!
ERROR: modpost: ".i2c_register_driver" [drivers/hwmon/pmbus/tps40422.ko] undefined!
ERROR: modpost: ".pmbus_do_probe" [drivers/hwmon/pmbus/tps40422.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_pc" [drivers/hwmon/pmbus/tps40422.ko] undefined!
ERROR: modpost: ".i2c_del_driver" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".i2c_register_driver" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: "._dev_err" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".i2c_match_id" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".debugfs_create_file" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".debugfs_create_dir" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".pmbus_get_debugfs_dir" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".devm_kmalloc" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".pmbus_do_probe" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp1" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".of_device_get_match_data" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".__stack_chk_fail" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".bin2hex" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".i2c_smbus_read_block_data" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".simple_read_from_buffer" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".snprintf" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
ERROR: modpost: ".__sanitizer_cov_trace_const_cmp4" [drivers/hwmon/pmbus/q54sj108a2.ko] undefined!
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
kernel/livepatch/../sched/sched.h:1619:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 146620506274bd24d52fb1c589110a30eed8240b
commit: 4104a562e0ca62e971089db9d3c47794a0d7d4eb sched/core: Annotate curr pointer in rq with __rcu
date: 11 months ago
config: x86_64-randconfig-s032-20210115 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce:
# apt-get install sparse
# sparse version: v0.6.3-208-g46a52ca4-dirty
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit...
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout 4104a562e0ca62e971089db9d3c47794a0d7d4eb
# save the attached .config to linux build tree
make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
"sparse warnings: (new ones prefixed by >>)"
kernel/livepatch/transition.c: note: in included file:
>> kernel/livepatch/../sched/sched.h:1619:25: sparse: sparse: incompatible types in comparison expression (different address spaces):
kernel/livepatch/../sched/sched.h:1619:25: sparse: struct task_struct [noderef] <asn:4> *
>> kernel/livepatch/../sched/sched.h:1619:25: sparse: struct task_struct *
vim +1619 kernel/livepatch/../sched/sched.h
029632fbb7b7c9d8 kernel/sched.h Peter Zijlstra 2011-10-25 1616
029632fbb7b7c9d8 kernel/sched.h Peter Zijlstra 2011-10-25 1617 static inline int task_current(struct rq *rq, struct task_struct *p)
029632fbb7b7c9d8 kernel/sched.h Peter Zijlstra 2011-10-25 1618 {
029632fbb7b7c9d8 kernel/sched.h Peter Zijlstra 2011-10-25 @1619 return rq->curr == p;
029632fbb7b7c9d8 kernel/sched.h Peter Zijlstra 2011-10-25 1620 }
029632fbb7b7c9d8 kernel/sched.h Peter Zijlstra 2011-10-25 1621
:::::: The code at line 1619 was first introduced by commit
:::::: 029632fbb7b7c9d85063cc9eb470de6c54873df3 sched: Make separate sched*.c translation units
:::::: TO: Peter Zijlstra <a.p.zijlstra(a)chello.nl>
:::::: CC: Ingo Molnar <mingo(a)elte.hu>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
Re: [PATCH v2 2/2] media: rockchip: rkisp1: extend uapi array sizes
by kernel test robot
Hi Heiko,
I love your patch! Perhaps something to improve:
[auto build test WARNING on rockchip/for-next]
[also build test WARNING on linuxtv-media/master linus/master v5.11-rc3 next-20210114]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Heiko-Stuebner/media-rockchip-rk...
base: https://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git for-next
config: c6x-allyesconfig (attached as .config)
compiler: c6x-elf-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/9a078d10ec53e5c1651ed5da0b37b0e4e...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Heiko-Stuebner/media-rockchip-rkisp1-carry-ip-version-information/20210115-124728
git checkout 9a078d10ec53e5c1651ed5da0b37b0e4eb34fc47
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=c6x
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c: In function 'rkisp1_stats_get_hst_meas':
>> drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c:239:2: warning: 'memset' used with length equal to number of elements without multiplication by element size [-Wmemset-elt-size]
239 | memset(pbuf->params.hist.hist_bins, 0, RKISP1_CIF_ISP_HIST_BIN_N_MAX);
| ^~~~~~
vim +/memset +239 drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c
231
232 static void rkisp1_stats_get_hst_meas(struct rkisp1_stats *stats,
233 struct rkisp1_stat_buffer *pbuf)
234 {
235 struct rkisp1_device *rkisp1 = stats->rkisp1;
236 unsigned int i;
237
238 /* the global max can be bigger then the version-specific one */
> 239 memset(pbuf->params.hist.hist_bins, 0, RKISP1_CIF_ISP_HIST_BIN_N_MAX);
240
241 pbuf->meas_type |= RKISP1_CIF_ISP_STAT_HIST;
242 for (i = 0; i < RKISP1_CIF_ISP_HIST_BIN_N_MAX_V10; i++)
243 pbuf->params.hist.hist_bins[i] =
244 (u8)rkisp1_read(rkisp1,
245 RKISP1_CIF_ISP_HIST_BIN_0 + i * 4);
246 }
247
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
Re: [RPC PATCH bpf-next] bpf: implement new BPF_CGROUP_INET_SOCK_POST_CONNECT
by kernel test robot
Hi Stanislav,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on bpf-next/master]
url: https://github.com/0day-ci/linux/commits/Stanislav-Fomichev/bpf-implement...
base: https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git master
config: arm-randconfig-r014-20210115 (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/342141c74fe4ece77f9d9753918a77e66...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Stanislav-Fomichev/bpf-implement-new-BPF_CGROUP_INET_SOCK_POST_CONNECT/20210115-112524
git checkout 342141c74fe4ece77f9d9753918a77e66d9d3316
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
net/ipv4/af_inet.c: In function 'inet_dgram_connect':
>> net/ipv4/af_inet.c:579:9: error: implicit declaration of function 'BPF_CGROUP_RUN_PROG_INET_SOCK_POST_CONNECT_LOCKED'; did you mean 'BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK'? [-Werror=implicit-function-declaration]
579 | err = BPF_CGROUP_RUN_PROG_INET_SOCK_POST_CONNECT_LOCKED(sk);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK
net/ipv4/af_inet.c: In function 'inet_stream_connect':
>> net/ipv4/af_inet.c:730:9: error: implicit declaration of function 'BPF_CGROUP_RUN_PROG_INET_SOCK_POST_CONNECT'; did you mean 'BPF_CGROUP_RUN_PROG_INET6_CONNECT'? [-Werror=implicit-function-declaration]
730 | err = BPF_CGROUP_RUN_PROG_INET_SOCK_POST_CONNECT(sock->sk);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| BPF_CGROUP_RUN_PROG_INET6_CONNECT
cc1: some warnings being treated as errors
vim +579 net/ipv4/af_inet.c
557
558 int inet_dgram_connect(struct socket *sock, struct sockaddr *uaddr,
559 int addr_len, int flags)
560 {
561 struct sock *sk = sock->sk;
562 int err;
563
564 if (addr_len < sizeof(uaddr->sa_family))
565 return -EINVAL;
566 if (uaddr->sa_family == AF_UNSPEC)
567 return sk->sk_prot->disconnect(sk, flags);
568
569 if (BPF_CGROUP_PRE_CONNECT_ENABLED(sk)) {
570 err = sk->sk_prot->pre_connect(sk, uaddr, addr_len);
571 if (err)
572 return err;
573 }
574
575 if (!inet_sk(sk)->inet_num && inet_autobind(sk))
576 return -EAGAIN;
577 err = sk->sk_prot->connect(sk, uaddr, addr_len);
578 if (!err)
> 579 err = BPF_CGROUP_RUN_PROG_INET_SOCK_POST_CONNECT_LOCKED(sk);
580 return err;
581 }
582 EXPORT_SYMBOL(inet_dgram_connect);
583
584 static long inet_wait_for_connect(struct sock *sk, long timeo, int writebias)
585 {
586 DEFINE_WAIT_FUNC(wait, woken_wake_function);
587
588 add_wait_queue(sk_sleep(sk), &wait);
589 sk->sk_write_pending += writebias;
590
591 /* Basic assumption: if someone sets sk->sk_err, he _must_
592 * change state of the socket from TCP_SYN_*.
593 * Connect() does not allow to get error notifications
594 * without closing the socket.
595 */
596 while ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
597 release_sock(sk);
598 timeo = wait_woken(&wait, TASK_INTERRUPTIBLE, timeo);
599 lock_sock(sk);
600 if (signal_pending(current) || !timeo)
601 break;
602 }
603 remove_wait_queue(sk_sleep(sk), &wait);
604 sk->sk_write_pending -= writebias;
605 return timeo;
606 }
607
608 /*
609 * Connect to a remote host. There is regrettably still a little
610 * TCP 'magic' in here.
611 */
612 int __inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
613 int addr_len, int flags, int is_sendmsg)
614 {
615 struct sock *sk = sock->sk;
616 int err;
617 long timeo;
618
619 /*
620 * uaddr can be NULL and addr_len can be 0 if:
621 * sk is a TCP fastopen active socket and
622 * TCP_FASTOPEN_CONNECT sockopt is set and
623 * we already have a valid cookie for this socket.
624 * In this case, user can call write() after connect().
625 * write() will invoke tcp_sendmsg_fastopen() which calls
626 * __inet_stream_connect().
627 */
628 if (uaddr) {
629 if (addr_len < sizeof(uaddr->sa_family))
630 return -EINVAL;
631
632 if (uaddr->sa_family == AF_UNSPEC) {
633 err = sk->sk_prot->disconnect(sk, flags);
634 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
635 goto out;
636 }
637 }
638
639 switch (sock->state) {
640 default:
641 err = -EINVAL;
642 goto out;
643 case SS_CONNECTED:
644 err = -EISCONN;
645 goto out;
646 case SS_CONNECTING:
647 if (inet_sk(sk)->defer_connect)
648 err = is_sendmsg ? -EINPROGRESS : -EISCONN;
649 else
650 err = -EALREADY;
651 /* Fall out of switch with err, set for this state */
652 break;
653 case SS_UNCONNECTED:
654 err = -EISCONN;
655 if (sk->sk_state != TCP_CLOSE)
656 goto out;
657
658 if (BPF_CGROUP_PRE_CONNECT_ENABLED(sk)) {
659 err = sk->sk_prot->pre_connect(sk, uaddr, addr_len);
660 if (err)
661 goto out;
662 }
663
664 err = sk->sk_prot->connect(sk, uaddr, addr_len);
665 if (err < 0)
666 goto out;
667
668 sock->state = SS_CONNECTING;
669
670 if (!err && inet_sk(sk)->defer_connect)
671 goto out;
672
673 /* Just entered SS_CONNECTING state; the only
674 * difference is that return value in non-blocking
675 * case is EINPROGRESS, rather than EALREADY.
676 */
677 err = -EINPROGRESS;
678 break;
679 }
680
681 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
682
683 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
684 int writebias = (sk->sk_protocol == IPPROTO_TCP) &&
685 tcp_sk(sk)->fastopen_req &&
686 tcp_sk(sk)->fastopen_req->data ? 1 : 0;
687
688 /* Error code is set above */
689 if (!timeo || !inet_wait_for_connect(sk, timeo, writebias))
690 goto out;
691
692 err = sock_intr_errno(timeo);
693 if (signal_pending(current))
694 goto out;
695 }
696
697 /* Connection was closed by RST, timeout, ICMP error
698 * or another process disconnected us.
699 */
700 if (sk->sk_state == TCP_CLOSE)
701 goto sock_error;
702
703 /* sk->sk_err may be not zero now, if RECVERR was ordered by user
704 * and error was received after socket entered established state.
705 * Hence, it is handled normally after connect() return successfully.
706 */
707
708 sock->state = SS_CONNECTED;
709 err = 0;
710 out:
711 return err;
712
713 sock_error:
714 err = sock_error(sk) ? : -ECONNABORTED;
715 sock->state = SS_UNCONNECTED;
716 if (sk->sk_prot->disconnect(sk, flags))
717 sock->state = SS_DISCONNECTING;
718 goto out;
719 }
720 EXPORT_SYMBOL(__inet_stream_connect);
721
722 int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
723 int addr_len, int flags)
724 {
725 int err;
726
727 lock_sock(sock->sk);
728 err = __inet_stream_connect(sock, uaddr, addr_len, flags, 0);
729 if (!err)
> 730 err = BPF_CGROUP_RUN_PROG_INET_SOCK_POST_CONNECT(sock->sk);
731 release_sock(sock->sk);
732 return err;
733 }
734 EXPORT_SYMBOL(inet_stream_connect);
735
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months
[android-common:android-mainline 1/3] include/trace/hooks/cpufreq.h:17:10: error: passing argument 2 of '(({...}))' from incompatible pointer type
by kernel test robot
tree: https://android.googlesource.com/kernel/common android-mainline
head: 859b5a7b1f280b64f882b469f1a6f3d0c50c298c
commit: efab334061ff7ed8f9dd5e28f2c7bdb09e2a77ec [1/3] ANDROID: add vendor hooks to override show_cpufinfo_max_freq
config: i386-randconfig-c001-20210115 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
git remote add android-common https://android.googlesource.com/kernel/common
git fetch --no-tags android-common android-mainline
git checkout efab334061ff7ed8f9dd5e28f2c7bdb09e2a77ec
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
In file included from include/trace/hooks/cpufreq.h:10,
from drivers/android/vendor_hooks.c:27:
include/trace/hooks/cpufreq.h:16:18: warning: 'struct cpufreq_policy' declared inside parameter list will not be visible outside of this definition or declaration
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~~~~~~~
include/linux/tracepoint.h:235:32: note: in definition of macro '__DECLARE_TRACE'
235 | extern int __traceiter_##name(data_proto); \
| ^~~~~~~~~~
include/linux/tracepoint.h:413:4: note: in expansion of macro 'PARAMS'
413 | PARAMS(void *__data, proto), \
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:16:2: note: in expansion of macro 'TP_PROTO'
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~
include/trace/hooks/cpufreq.h:16:18: warning: 'struct cpufreq_policy' declared inside parameter list will not be visible outside of this definition or declaration
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~~~~~~~
include/linux/tracepoint.h:238:34: note: in definition of macro '__DECLARE_TRACE'
238 | static inline void trace_##name(proto) \
| ^~~~~
include/linux/tracepoint.h:411:24: note: in expansion of macro 'PARAMS'
411 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:16:2: note: in expansion of macro 'TP_PROTO'
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~
include/trace/hooks/cpufreq.h: In function 'trace_android_vh_show_max_freq':
>> include/trace/hooks/cpufreq.h:17:10: error: passing argument 2 of '(({...}))' from incompatible pointer type [-Werror=incompatible-pointer-types]
17 | TP_ARGS(policy, max_freq));
| ^~~~~~
| |
| struct cpufreq_policy *
include/linux/tracepoint.h:197:26: note: in definition of macro '__DO_TRACE'
197 | __DO_TRACE_CALL(name)(args); \
| ^~~~
include/linux/tracepoint.h:243:5: note: in expansion of macro 'TP_ARGS'
243 | TP_ARGS(data_args), \
| ^~~~~~~
include/linux/tracepoint.h:411:2: note: in expansion of macro '__DECLARE_TRACE'
411 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~~~~~~~~~~
include/linux/tracepoint.h:414:4: note: in expansion of macro 'PARAMS'
414 | PARAMS(__data, args))
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:17:2: note: in expansion of macro 'TP_ARGS'
17 | TP_ARGS(policy, max_freq));
| ^~~~~~~
include/trace/hooks/cpufreq.h:17:10: note: expected 'struct cpufreq_policy *' but argument is of type 'struct cpufreq_policy *'
17 | TP_ARGS(policy, max_freq));
| ^~~~~~
include/linux/tracepoint.h:197:26: note: in definition of macro '__DO_TRACE'
197 | __DO_TRACE_CALL(name)(args); \
| ^~~~
include/linux/tracepoint.h:243:5: note: in expansion of macro 'TP_ARGS'
243 | TP_ARGS(data_args), \
| ^~~~~~~
include/linux/tracepoint.h:411:2: note: in expansion of macro '__DECLARE_TRACE'
411 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~~~~~~~~~~
include/linux/tracepoint.h:414:4: note: in expansion of macro 'PARAMS'
414 | PARAMS(__data, args))
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:17:2: note: in expansion of macro 'TP_ARGS'
17 | TP_ARGS(policy, max_freq));
| ^~~~~~~
include/trace/hooks/cpufreq.h: At top level:
include/trace/hooks/cpufreq.h:16:18: warning: 'struct cpufreq_policy' declared inside parameter list will not be visible outside of this definition or declaration
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~~~~~~~
include/linux/tracepoint.h:210:44: note: in definition of macro '__DECLARE_TRACE_RCU'
210 | static inline void trace_##name##_rcuidle(proto) \
| ^~~~~
include/linux/tracepoint.h:251:28: note: in expansion of macro 'PARAMS'
251 | __DECLARE_TRACE_RCU(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~
include/linux/tracepoint.h:411:2: note: in expansion of macro '__DECLARE_TRACE'
411 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~~~~~~~~~~
include/linux/tracepoint.h:411:24: note: in expansion of macro 'PARAMS'
411 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:16:2: note: in expansion of macro 'TP_PROTO'
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~
include/trace/hooks/cpufreq.h: In function 'trace_android_vh_show_max_freq_rcuidle':
>> include/trace/hooks/cpufreq.h:17:10: error: passing argument 2 of '(({...}))' from incompatible pointer type [-Werror=incompatible-pointer-types]
17 | TP_ARGS(policy, max_freq));
| ^~~~~~
| |
| struct cpufreq_policy *
include/linux/tracepoint.h:197:26: note: in definition of macro '__DO_TRACE'
197 | __DO_TRACE_CALL(name)(args); \
| ^~~~
include/linux/tracepoint.h:215:5: note: in expansion of macro 'TP_ARGS'
215 | TP_ARGS(data_args), \
| ^~~~~~~
include/linux/tracepoint.h:251:2: note: in expansion of macro '__DECLARE_TRACE_RCU'
251 | __DECLARE_TRACE_RCU(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~~~~~~~~~~~~~~
include/linux/tracepoint.h:252:37: note: in expansion of macro 'PARAMS'
252 | PARAMS(cond), PARAMS(data_proto), PARAMS(data_args)) \
| ^~~~~~
include/linux/tracepoint.h:411:2: note: in expansion of macro '__DECLARE_TRACE'
411 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~~~~~~~~~~
include/linux/tracepoint.h:414:4: note: in expansion of macro 'PARAMS'
414 | PARAMS(__data, args))
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:17:2: note: in expansion of macro 'TP_ARGS'
17 | TP_ARGS(policy, max_freq));
| ^~~~~~~
include/trace/hooks/cpufreq.h:17:10: note: expected 'struct cpufreq_policy *' but argument is of type 'struct cpufreq_policy *'
17 | TP_ARGS(policy, max_freq));
| ^~~~~~
include/linux/tracepoint.h:197:26: note: in definition of macro '__DO_TRACE'
197 | __DO_TRACE_CALL(name)(args); \
| ^~~~
include/linux/tracepoint.h:215:5: note: in expansion of macro 'TP_ARGS'
215 | TP_ARGS(data_args), \
| ^~~~~~~
include/linux/tracepoint.h:251:2: note: in expansion of macro '__DECLARE_TRACE_RCU'
251 | __DECLARE_TRACE_RCU(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~~~~~~~~~~~~~~
include/linux/tracepoint.h:252:37: note: in expansion of macro 'PARAMS'
252 | PARAMS(cond), PARAMS(data_proto), PARAMS(data_args)) \
| ^~~~~~
include/linux/tracepoint.h:411:2: note: in expansion of macro '__DECLARE_TRACE'
411 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
| ^~~~~~~~~~~~~~~
include/linux/tracepoint.h:414:4: note: in expansion of macro 'PARAMS'
414 | PARAMS(__data, args))
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:17:2: note: in expansion of macro 'TP_ARGS'
17 | TP_ARGS(policy, max_freq));
| ^~~~~~~
include/trace/hooks/cpufreq.h: At top level:
include/trace/hooks/cpufreq.h:16:18: warning: 'struct cpufreq_policy' declared inside parameter list will not be visible outside of this definition or declaration
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~~~~~~~
include/linux/tracepoint.h:254:38: note: in definition of macro '__DECLARE_TRACE'
254 | register_trace_##name(void (*probe)(data_proto), void *data) \
| ^~~~~~~~~~
include/linux/tracepoint.h:413:4: note: in expansion of macro 'PARAMS'
413 | PARAMS(void *__data, proto), \
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:16:2: note: in expansion of macro 'TP_PROTO'
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~
include/trace/hooks/cpufreq.h:16:18: warning: 'struct cpufreq_policy' declared inside parameter list will not be visible outside of this definition or declaration
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~~~~~~~
include/linux/tracepoint.h:260:43: note: in definition of macro '__DECLARE_TRACE'
260 | register_trace_prio_##name(void (*probe)(data_proto), void *data,\
| ^~~~~~~~~~
include/linux/tracepoint.h:413:4: note: in expansion of macro 'PARAMS'
413 | PARAMS(void *__data, proto), \
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:16:2: note: in expansion of macro 'TP_PROTO'
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~
include/trace/hooks/cpufreq.h:16:18: warning: 'struct cpufreq_policy' declared inside parameter list will not be visible outside of this definition or declaration
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
| ^~~~~~~~~~~~~~
include/linux/tracepoint.h:267:40: note: in definition of macro '__DECLARE_TRACE'
267 | unregister_trace_##name(void (*probe)(data_proto), void *data) \
| ^~~~~~~~~~
include/linux/tracepoint.h:413:4: note: in expansion of macro 'PARAMS'
413 | PARAMS(void *__data, proto), \
| ^~~~~~
include/trace/hooks/vendor_hooks.h:12:22: note: in expansion of macro 'DECLARE_TRACE'
12 | #define DECLARE_HOOK DECLARE_TRACE
| ^~~~~~~~~~~~~
include/trace/hooks/cpufreq.h:16:2: note: in expansion of macro 'TP_PROTO'
16 | TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
vim +17 include/trace/hooks/cpufreq.h
14
15 DECLARE_HOOK(android_vh_show_max_freq,
> 16 TP_PROTO(struct cpufreq_policy *policy, unsigned int *max_freq),
> 17 TP_ARGS(policy, max_freq));
18
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 8 months