Re: [PATCH 2/2] selftests/fpu: Add an FPU selftest
by kernel test robot
In-Reply-To: <20200619174127.22304-3-bp(a)alien8.de>
References: <20200619174127.22304-3-bp(a)alien8.de>
TO: Borislav Petkov <bp(a)alien8.de>
TO: X86 ML <x86(a)kernel.org>
CC: jpa(a)kernelbug.mail.kapsi.fi
CC: Dave Hansen <dave.hansen(a)intel.com>
CC: LKML <linux-kernel(a)vger.kernel.org>
Hi Borislav,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on kselftest/next]
[also build test ERROR on tip/auto-latest linus/master v5.8-rc1 next-20200618]
[cannot apply to 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 as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Borislav-Petkov/x86-FPU-FPU-sani...
base: https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git next
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 487ca07fcc75d52755c9fe2ee05bcb3b6eeeec44)
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
# 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 errors (new ones prefixed by >>):
>> ld.lld: error: undefined symbol: __adddf3
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
--
>> ld.lld: error: undefined symbol: __muldf3
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
--
>> ld.lld: error: undefined symbol: __divdf3
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
--
>> ld.lld: error: undefined symbol: __gtdf2
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
>>> referenced by test_fpu.c
>>> test_fpu.o:(test_fpu_get) in archive lib/built-in.a
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 3 months
Re: [RFC PATCH v1 1/2] ufs: support various values per device
by kernel test robot
Hi Kiwoong,
[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on scsi/for-next]
[also build test WARNING on mkp-scsi/for-next v5.8-rc1 next-20200618]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Kiwoong-Kim/support-various-valu...
base: https://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git for-next
config: alpha-allyesconfig (attached as .config)
compiler: alpha-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
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=alpha
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 >>, old ones prefixed by <<):
>> drivers/scsi/ufs/ufshcd.c:6941:6: warning: no previous prototype for 'ufshcd_set_dev_values' [-Wmissing-prototypes]
6941 | void ufshcd_set_dev_values(struct ufs_hba *hba, struct ufs_dev_value *value)
| ^~~~~~~~~~~~~~~~~~~~~
vim +/ufshcd_set_dev_values +6941 drivers/scsi/ufs/ufshcd.c
6940
> 6941 void ufshcd_set_dev_values(struct ufs_hba *hba, struct ufs_dev_value *value)
6942 {
6943 struct ufs_dev_value *f;
6944 struct ufs_dev_info *dev_info = &hba->dev_info;
6945
6946 if (!value)
6947 return;
6948
6949 for (f = value; f->val; f++) {
6950 if ((f->wmanufacturerid == dev_info->wmanufacturerid ||
6951 f->wmanufacturerid == UFS_ANY_VENDOR) &&
6952 ((dev_info->model &&
6953 STR_PRFX_EQUAL(f->model, dev_info->model)) ||
6954 !strcmp(f->model, UFS_ANY_MODEL))) {
6955 f->enable = true;
6956 hba->dev_value[f->key] = f->val;
6957 }
6958 }
6959 }
6960 EXPORT_SYMBOL_GPL(ufshcd_set_dev_values);
6961
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 3 months
Re: [RFC PATCH v2] sched_pair_cpu: Introduce scheduler task pairing system call
by kernel test robot
Hi Mathieu,
[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on tip/sched/core]
[also build test WARNING on linux/master linus/master v5.8-rc1]
[cannot apply to tip/x86/asm next-20200618]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Mathieu-Desnoyers/sched_pair_cpu...
base: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 87e867b4269f29dac8190bca13912d08163a277f
config: mips-randconfig-r004-20200619 (attached as .config)
compiler: mipsel-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
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=mips
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 >>, old ones prefixed by <<):
>> <stdin>:1523:2: warning: #warning syscall sched_pair_cpu not implemented [-Wcpp]
--
>> <stdin>:1523:2: warning: #warning syscall sched_pair_cpu not implemented [-Wcpp]
--
arch/mips/kernel/asm-offsets.c:26:6: warning: no previous prototype for 'output_ptreg_defines' [-Wmissing-prototypes]
26 | void output_ptreg_defines(void)
| ^~~~~~~~~~~~~~~~~~~~
arch/mips/kernel/asm-offsets.c:78:6: warning: no previous prototype for 'output_task_defines' [-Wmissing-prototypes]
78 | void output_task_defines(void)
| ^~~~~~~~~~~~~~~~~~~
arch/mips/kernel/asm-offsets.c:93:6: warning: no previous prototype for 'output_thread_info_defines' [-Wmissing-prototypes]
93 | void output_thread_info_defines(void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
arch/mips/kernel/asm-offsets.c:110:6: warning: no previous prototype for 'output_thread_defines' [-Wmissing-prototypes]
110 | void output_thread_defines(void)
| ^~~~~~~~~~~~~~~~~~~~~
arch/mips/kernel/asm-offsets.c:181:6: warning: no previous prototype for 'output_mm_defines' [-Wmissing-prototypes]
181 | void output_mm_defines(void)
| ^~~~~~~~~~~~~~~~~
arch/mips/kernel/asm-offsets.c:220:6: warning: no previous prototype for 'output_sc_defines' [-Wmissing-prototypes]
220 | void output_sc_defines(void)
| ^~~~~~~~~~~~~~~~~
arch/mips/kernel/asm-offsets.c:255:6: warning: no previous prototype for 'output_signal_defined' [-Wmissing-prototypes]
255 | void output_signal_defined(void)
| ^~~~~~~~~~~~~~~~~~~~~
arch/mips/kernel/asm-offsets.c:334:6: warning: no previous prototype for 'output_pm_defines' [-Wmissing-prototypes]
334 | void output_pm_defines(void)
| ^~~~~~~~~~~~~~~~~
>> <stdin>:1523:2: warning: #warning syscall sched_pair_cpu not implemented [-Wcpp]
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 3 months
[ti:ti-android-linux-5.4.y 4/22] socket.c:undefined reference to `wext_handle_ioctl'
by kernel test robot
tree: git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git ti-android-linux-5.4.y
head: 68f160383714b291431d734133a416eacc193a0a
commit: d394a05425c20167f6bc94483d4d8ee1efecb749 [4/22] Merged TI feature ti_linux_base_android into ti-android-linux-5.4.y
config: s390-allyesconfig (attached as .config)
compiler: s390-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
git checkout d394a05425c20167f6bc94483d4d8ee1efecb749
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=s390
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 >>):
s390-linux-ld: net/socket.o: in function `sock_ioctl':
>> socket.c:(.text+0x13aa): undefined reference to `wext_handle_ioctl'
s390-linux-ld: net/socket.o: in function `compat_sock_ioctl':
>> socket.c:(.text+0x2b40): undefined reference to `compat_wext_handle_ioctl'
s390-linux-ld: net/core/net-procfs.o: in function `dev_proc_net_exit':
>> net-procfs.c:(.text+0x86a): undefined reference to `wext_proc_exit'
s390-linux-ld: net/core/net-procfs.o: in function `dev_proc_net_init':
>> net-procfs.c:(.text+0x9bc): undefined reference to `wext_proc_init'
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 3 months
ERROR: modpost: "__mulsi3" undefined!
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 4333a9b0b67bb4e8bcd91bdd80da80b0ec151162
commit: f23efcbcc523b09c2ee359a35eb3897dc1764fd3 crypto: ctr - no longer needs CRYPTO_SEQIV
date: 7 weeks ago
config: openrisc-randconfig-c003-20200620 (attached as .config)
compiler: or1k-linux-gcc (GCC) 9.3.0
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: "__mulsi3" [drivers/usb/core/usbcore.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/usb/gadget/legacy/g_zero.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/usb/gadget/function/usb_f_uvc.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/usb/gadget/function/usb_f_ncm.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/usb/gadget/function/usb_f_ss_lb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/usb/lan78xx.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/usb/pegasus.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/slip/slhc.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/virtio_net.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/macvlan.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/wimax/i2400m/i2400m.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/caif/caif_hsi.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/caif/cfspi_slave.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/team/team_mode_loadbalance.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/phy/marvell10g.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/net/phy/aquantia.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/spi/spi-sifive.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/tests/mtd_nandbiterrs.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/tests/mtd_torturetest.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/tests/mtd_subpagetest.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/tests/mtd_stresstest.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/tests/mtd_speedtest.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/tests/mtd_pagetest.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/tests/mtd_oobtest.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/nand/raw/diskonchip.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/maps/physmap.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/lpddr/lpddr_cmds.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/lpddr/qinfo_probe.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/chips/cfi_cmdset_0001.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/mtd/chips/cfi_cmdset_0020.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/echo/echo.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/c2port/core.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/isl29020.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/isl29003.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/apds990x.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/bh1770glc.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/arc/arcpgu.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/etnaviv/etnaviv.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/virtio/virtio-gpu.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/vgem/vgem.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/scheduler/gpu-sched.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/drm_mipi_dbi.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/drm.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/selftests/test-drm_modeset.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/selftests/test-drm_mm.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/drm_kms_helper.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/tiny/st7586.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/tiny/gm12u320.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/bridge/ti-tfp410.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/bridge/ti-sn65dsi86.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/bridge/tc358767.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/bridge/synopsys/dw-hdmi.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/panel/panel-tpo-tpg110.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/panel/panel-samsung-s6e8aa0.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/panel/panel-samsung-ld9040.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/panel/panel-rocktech-jh057n00900.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/panel/panel-ilitek-ili9322.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/panel/panel-simple.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/panel/panel-arm-versatile.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/i2c/tda998x.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpu/drm/i2c/ch7006.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/wm8994-regulator.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/vctrl-regulator.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/mpq7920.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/mp886x.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/mcp16502.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/max1586.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/max14577-regulator.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/lp872x.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/lp3972.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/lp3971.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/isl9305.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/hi6421-regulator.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/ad5398.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/regulator/88pg86x.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/char/ipmi/ipmi_si.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/uvesafb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/ocfb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/s1d13xxxfb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/metronomefb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/goldfishfb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/core/sysimgblt.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/core/syscopyarea.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/core/sysfillrect.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/core/cfbimgblt.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/core/cfbcopyarea.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/core/cfbfillrect.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/fbdev/core/fb.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/video/backlight/adp8860_bl.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/gpio/gpio-max3191x.ko] undefined!
ERROR: modpost: "__mulsi3" [drivers/pinctrl/pinctrl-mcp23s08.ko] undefined!
>> ERROR: modpost: "__mulsi3" [crypto/jitterentropy_rng.ko] undefined!
ERROR: modpost: "__mulsi3" [fs/autofs/autofs4.ko] undefined!
ERROR: modpost: "__mulsi3" [kernel/locking/test-ww_mutex.ko] undefined!
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 3 months
[android-goldfish:android-5.4 5596/9999] include/linux/compiler.h:350:38: error: call to '__compiletime_assert_2084' declared with attribute error: BUILD_BUG_ON failed: PAGE_SIZE != INCFS_DATA_FILE_BLOCK_SIZE
by kernel test robot
Hi Eugene,
FYI, the error/warning still remains.
tree: https://android.googlesource.com/kernel/goldfish android-5.4
head: 5eb96e454e88c2666ba10b3f07661431132e3ef4
commit: 1be052b20ba04b635cf87bcff80de5314697953e [5596/9999] ANDROID: Initial commit of Incremental FS
config: ia64-allmodconfig (attached as .config)
compiler: ia64-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
git checkout 1be052b20ba04b635cf87bcff80de5314697953e
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=ia64
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 >>):
fs/incfs/vfs.c:2058:16: warning: no previous prototype for 'incfs_mount_fs' [-Wmissing-prototypes]
2058 | struct dentry *incfs_mount_fs(struct file_system_type *type, int flags,
| ^~~~~~~~~~~~~~
fs/incfs/vfs.c:2177:6: warning: no previous prototype for 'incfs_kill_sb' [-Wmissing-prototypes]
2177 | void incfs_kill_sb(struct super_block *sb)
| ^~~~~~~~~~~~~
In file included from arch/ia64/include/uapi/asm/gcc_intrin.h:11,
from arch/ia64/include/asm/gcc_intrin.h:10,
from arch/ia64/include/uapi/asm/intrinsics.h:20,
from arch/ia64/include/asm/intrinsics.h:11,
from arch/ia64/include/asm/current.h:10,
from include/linux/sched.h:12,
from include/linux/blkdev.h:5,
from fs/incfs/vfs.c:6:
fs/incfs/vfs.c: In function 'incfs_mount_fs':
>> include/linux/compiler.h:350:38: error: call to '__compiletime_assert_2084' declared with attribute error: BUILD_BUG_ON failed: PAGE_SIZE != INCFS_DATA_FILE_BLOCK_SIZE
350 | _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
| ^
include/linux/compiler.h:331:4: note: in definition of macro '__compiletime_assert'
331 | prefix ## suffix(); \
| ^~~~~~
include/linux/compiler.h:350:2: note: in expansion of macro '_compiletime_assert'
350 | _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
| ^~~~~~~~~~~~~~~~~~~
include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert'
39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg)
| ^~~~~~~~~~~~~~~~~~
include/linux/build_bug.h:50:2: note: in expansion of macro 'BUILD_BUG_ON_MSG'
50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
| ^~~~~~~~~~~~~~~~
fs/incfs/vfs.c:2084:2: note: in expansion of macro 'BUILD_BUG_ON'
2084 | BUILD_BUG_ON(PAGE_SIZE != INCFS_DATA_FILE_BLOCK_SIZE);
| ^~~~~~~~~~~~
vim +/__compiletime_assert_2084 +350 include/linux/compiler.h
9a8ab1c39970a4 Daniel Santos 2013-02-21 336
9a8ab1c39970a4 Daniel Santos 2013-02-21 337 #define _compiletime_assert(condition, msg, prefix, suffix) \
9a8ab1c39970a4 Daniel Santos 2013-02-21 338 __compiletime_assert(condition, msg, prefix, suffix)
9a8ab1c39970a4 Daniel Santos 2013-02-21 339
9a8ab1c39970a4 Daniel Santos 2013-02-21 340 /**
9a8ab1c39970a4 Daniel Santos 2013-02-21 341 * compiletime_assert - break build and emit msg if condition is false
9a8ab1c39970a4 Daniel Santos 2013-02-21 342 * @condition: a compile-time constant condition to check
9a8ab1c39970a4 Daniel Santos 2013-02-21 343 * @msg: a message to emit if condition is false
9a8ab1c39970a4 Daniel Santos 2013-02-21 344 *
9a8ab1c39970a4 Daniel Santos 2013-02-21 345 * In tradition of POSIX assert, this macro will break the build if the
9a8ab1c39970a4 Daniel Santos 2013-02-21 346 * supplied condition is *false*, emitting the supplied error message if the
9a8ab1c39970a4 Daniel Santos 2013-02-21 347 * compiler has support to do so.
9a8ab1c39970a4 Daniel Santos 2013-02-21 348 */
9a8ab1c39970a4 Daniel Santos 2013-02-21 349 #define compiletime_assert(condition, msg) \
9a8ab1c39970a4 Daniel Santos 2013-02-21 @350 _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
9a8ab1c39970a4 Daniel Santos 2013-02-21 351
:::::: The code at line 350 was first introduced by commit
:::::: 9a8ab1c39970a4938a72d94e6fd13be88a797590 bug.h, compiler.h: introduce compiletime_assert & BUILD_BUG_ON_MSG
:::::: TO: Daniel Santos <daniel.santos(a)pobox.com>
:::::: CC: Linus Torvalds <torvalds(a)linux-foundation.org>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 3 months
cc1: warning: drivers/staging/media/atomisp//pci/hive_isp_css_include/memory_access/: No such file or directory
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 4333a9b0b67bb4e8bcd91bdd80da80b0ec151162
commit: 08fef4fa947ba75cbf59d67c6be75223c6471a88 media: atomisp: get rid of memory_access.c
date: 9 days ago
config: i386-allyesconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-13) 9.3.0
reproduce (this is a W=1 build):
git checkout 08fef4fa947ba75cbf59d67c6be75223c6471a88
# 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 warnings (new ones prefixed by >>, old ones prefixed by <<):
>> cc1: warning: drivers/staging/media/atomisp//pci/hive_isp_css_include/memory_access/: No such file or directory [-Wmissing-include-dirs]
--
>> cc1: warning: drivers/staging/media/atomisp//pci/hive_isp_css_include/memory_access/: No such file or directory [-Wmissing-include-dirs]
In file included from include/linux/uuid.h:12,
from include/linux/mod_devicetable.h:13,
from include/linux/pci.h:27,
from drivers/staging/media/atomisp/pci/atomisp_ioctl.c:21:
In function 'strncpy',
inlined from 'atomisp_enum_input' at drivers/staging/media/atomisp/pci/atomisp_ioctl.c:575:2:
include/linux/string.h:282:9: warning: '__builtin_strncpy' output may be truncated copying 31 bytes from a string of length 31 [-Wstringop-truncation]
282 | return __builtin_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In function 'strncpy',
inlined from 'atomisp_enum_input' at drivers/staging/media/atomisp/pci/atomisp_ioctl.c:595:4:
include/linux/string.h:282:9: warning: '__builtin_strncpy' output may be truncated copying between 1 and 30 bytes from a string of length 31 [-Wstringop-truncation]
282 | return __builtin_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
>> cc1: warning: drivers/staging/media/atomisp//pci/hive_isp_css_include/memory_access/: No such file or directory [-Wmissing-include-dirs]
drivers/staging/media/atomisp/pci/atomisp_v4l2.c:762:12: warning: 'atomisp_mrfld_power' defined but not used [-Wunused-function]
762 | static int atomisp_mrfld_power(struct atomisp_device *isp, bool enable)
| ^~~~~~~~~~~~~~~~~~~
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 3 months