Re: [PATCH v1 3/3] spi: lm70llp: Switch to use module_parport_driver()
by kernel test robot
Hi Andy,
I love your patch! Yet something to improve:
[auto build test ERROR on spi/for-next]
[also build test ERROR on linus/master v5.11 next-20210215]
[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/Andy-Shevchenko/parport-Introduc...
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
config: powerpc-randconfig-r034-20210215 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project c9439ca36342fb6013187d0a69aef92736951476)
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 powerpc cross compiling tool for clang build
# apt-get install binutils-powerpc-linux-gnu
# https://github.com/0day-ci/linux/commit/b436c5f6666ea5fb47d7b1826a66d4110...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Andy-Shevchenko/parport-Introduce-module_parport_driver-helper-macro/20210216-042909
git checkout b436c5f6666ea5fb47d7b1826a66d4110bb37072
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=powerpc
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 >>):
^
arch/powerpc/include/asm/io.h:537:62: note: expanded from macro '__do_outl'
#define __do_outl(val, port) writel(val,(PCI_IO_ADDR)_IO_BASE+port);
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-lm70llp.c:19:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:43:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(insb, (unsigned long p, void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:205:1: note: expanded from here
__do_insb
^
arch/powerpc/include/asm/io.h:556:56: note: expanded from macro '__do_insb'
#define __do_insb(p, b, n) readsb((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-lm70llp.c:19:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:45:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(insw, (unsigned long p, void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:207:1: note: expanded from here
__do_insw
^
arch/powerpc/include/asm/io.h:557:56: note: expanded from macro '__do_insw'
#define __do_insw(p, b, n) readsw((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-lm70llp.c:19:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:47:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(insl, (unsigned long p, void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:209:1: note: expanded from here
__do_insl
^
arch/powerpc/include/asm/io.h:558:56: note: expanded from macro '__do_insl'
#define __do_insl(p, b, n) readsl((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-lm70llp.c:19:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:49:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(outsb, (unsigned long p, const void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:211:1: note: expanded from here
__do_outsb
^
arch/powerpc/include/asm/io.h:559:58: note: expanded from macro '__do_outsb'
#define __do_outsb(p, b, n) writesb((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-lm70llp.c:19:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:51:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(outsw, (unsigned long p, const void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:213:1: note: expanded from here
__do_outsw
^
arch/powerpc/include/asm/io.h:560:58: note: expanded from macro '__do_outsw'
#define __do_outsw(p, b, n) writesw((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-lm70llp.c:19:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:53:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(outsl, (unsigned long p, const void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:215:1: note: expanded from here
__do_outsl
^
arch/powerpc/include/asm/io.h:561:58: note: expanded from macro '__do_outsl'
#define __do_outsl(p, b, n) writesl((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
~~~~~~~~~~~~~~~~~~~~~^
>> drivers/spi/spi-lm70llp.c:323:1: error: implicit declaration of function 'parport_add_driver' [-Werror,-Wimplicit-function-declaration]
module_parport_driver(spi_lm70llp_drv);
^
include/linux/parport.h:315:34: note: expanded from macro 'module_parport_driver'
module_driver(__parport_driver, parport_add_driver, parport_del_driver)
^
>> drivers/spi/spi-lm70llp.c:323:1: error: implicit declaration of function 'parport_del_driver' [-Werror,-Wimplicit-function-declaration]
include/linux/parport.h:315:54: note: expanded from macro 'module_parport_driver'
module_driver(__parport_driver, parport_add_driver, parport_del_driver)
^
drivers/spi/spi-lm70llp.c:323:1: note: did you mean 'parport_del_port'?
include/linux/parport.h:315:54: note: expanded from macro 'module_parport_driver'
module_driver(__parport_driver, parport_add_driver, parport_del_driver)
^
include/linux/parport.h:328:6: note: 'parport_del_port' declared here
void parport_del_port(struct parport *);
^
12 warnings and 2 errors generated.
vim +/parport_add_driver +323 drivers/spi/spi-lm70llp.c
316
317 static struct parport_driver spi_lm70llp_drv = {
318 .name = DRVNAME,
319 .match_port = spi_lm70llp_attach,
320 .detach = spi_lm70llp_detach,
321 .devmodel = true,
322 };
> 323 module_parport_driver(spi_lm70llp_drv);
324
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 7 months
[agd5f:drm-next 54/79] drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c:1140:16: warning: no previous prototype for 'amdgpu_ras_debugfs_create_ctrl_node'
by kernel test robot
tree: https://gitlab.freedesktop.org/agd5f/linux.git drm-next
head: 5c86a4a21df34ba7daf8fe361c26c7dd31333187
commit: eb14235668777baddfc77ce4f72ecfa2ea85ca55 [54/79] drm/amdgpu: do not keep debugfs dentry
config: alpha-randconfig-r034-20210215 (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
git remote add agd5f https://gitlab.freedesktop.org/agd5f/linux.git
git fetch --no-tags agd5f drm-next
git checkout eb14235668777baddfc77ce4f72ecfa2ea85ca55
# 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 >>):
>> drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c:1140:16: warning: no previous prototype for 'amdgpu_ras_debugfs_create_ctrl_node' [-Wmissing-prototypes]
1140 | struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/amdgpu_ras_debugfs_create_ctrl_node +1140 drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
1120
1121 /**
1122 * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1123 *
1124 * Normally when there is an uncorrectable error, the driver will reset
1125 * the GPU to recover. However, in the event of an unrecoverable error,
1126 * the driver provides an interface to reboot the system automatically
1127 * in that event.
1128 *
1129 * The following file in debugfs provides that interface:
1130 * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1131 *
1132 * Usage:
1133 *
1134 * .. code-block:: bash
1135 *
1136 * echo true > .../ras/auto_reboot
1137 *
1138 */
1139 /* debugfs begin */
> 1140 struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
1141 {
1142 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1143 struct dentry *dir;
1144 struct drm_minor *minor = adev_to_drm(adev)->primary;
1145
1146 dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1147 debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, dir, adev,
1148 &amdgpu_ras_debugfs_ctrl_ops);
1149 debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, dir, adev,
1150 &amdgpu_ras_debugfs_eeprom_ops);
1151
1152 /*
1153 * After one uncorrectable error happens, usually GPU recovery will
1154 * be scheduled. But due to the known problem in GPU recovery failing
1155 * to bring GPU back, below interface provides one direct way to
1156 * user to reboot system automatically in such case within
1157 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1158 * will never be called.
1159 */
1160 debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, dir, &con->reboot);
1161
1162 /*
1163 * User could set this not to clean up hardware's error count register
1164 * of RAS IPs during ras recovery.
1165 */
1166 debugfs_create_bool("disable_ras_err_cnt_harvest", 0644, dir,
1167 &con->disable_ras_err_cnt_harvest);
1168 return dir;
1169 }
1170
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 7 months
[linux-next:master 3291/11541] mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data391' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data391'
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head: 52a0bcb60e40f30211cb5cbbb0f582ec4e91d896
commit: d3a4e0f1b440a3c9f665fff796a9532c686a014a [3291/11541] MIPS: select ARCH_WANT_LD_ORPHAN_WARN
config: mips-randconfig-s031-20210215 (attached as .config)
compiler: mipsel-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-215-g0fb77bb6-dirty
# https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commi...
git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
git fetch --no-tags linux-next master
git checkout d3a4e0f1b440a3c9f665fff796a9532c686a014a
# 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=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 >>):
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data299' from `init/do_mounts_rd.o' being placed in section `.data.$Lubsan_data299'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data183' from `init/do_mounts_rd.o' being placed in section `.data.$Lubsan_data183'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `init/do_mounts_rd.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `init/do_mounts_rd.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `init/do_mounts_rd.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data142' from `init/calibrate.o' being placed in section `.data.$Lubsan_data142'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `init/calibrate.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data51' from `arch/mips/kernel/cmpxchg.o' being placed in section `.data.$Lubsan_data51'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `arch/mips/kernel/cmpxchg.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `arch/mips/kernel/cmpxchg.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data255' from `arch/mips/kernel/traps.o' being placed in section `.data.$Lubsan_data255'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data254' from `arch/mips/kernel/traps.o' being placed in section `.data.$Lubsan_data254'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `arch/mips/kernel/traps.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `arch/mips/kernel/traps.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `arch/mips/kernel/traps.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `arch/mips/kernel/cpu-probe.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `arch/mips/kernel/cpu-probe.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data279' from `arch/mips/kernel/cevt-r4k.o' being placed in section `.data.$Lubsan_data279'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `arch/mips/kernel/cevt-r4k.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `arch/mips/kernel/cevt-r4k.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data185' from `arch/mips/kernel/early_printk_8250.o' being placed in section `.data.$Lubsan_data185'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data184' from `arch/mips/kernel/early_printk_8250.o' being placed in section `.data.$Lubsan_data184'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `arch/mips/kernel/early_printk_8250.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `arch/mips/kernel/early_printk_8250.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data206' from `arch/mips/mm/page.o' being placed in section `.data.$Lubsan_data206'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data200' from `arch/mips/mm/page.o' being placed in section `.data.$Lubsan_data200'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data194' from `arch/mips/mm/page.o' being placed in section `.data.$Lubsan_data194'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data193' from `arch/mips/mm/page.o' being placed in section `.data.$Lubsan_data193'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data192' from `arch/mips/mm/page.o' being placed in section `.data.$Lubsan_data192'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `arch/mips/mm/page.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `arch/mips/mm/page.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `arch/mips/mm/tlbex.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `arch/mips/mm/tlbex.o' being placed in section `.data.$Lubsan_type0'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data391' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data391'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data390' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data390'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data378' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data378'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data377' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data377'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data376' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data376'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data375' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data375'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data191'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data190' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data190'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data187' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data187'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `arch/mips/mm/c-r4k.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data267' from `kernel/softirq.o' being placed in section `.data.$Lubsan_data267'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data264' from `kernel/softirq.o' being placed in section `.data.$Lubsan_data264'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/softirq.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/softirq.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/softirq.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data217' from `kernel/ptrace.o' being placed in section `.data.$Lubsan_data217'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/ptrace.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data302' from `kernel/signal.o' being placed in section `.data.$Lubsan_data302'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/signal.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/signal.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data310' from `kernel/sys.o' being placed in section `.data.$Lubsan_data310'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data309' from `kernel/sys.o' being placed in section `.data.$Lubsan_data309'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data308' from `kernel/sys.o' being placed in section `.data.$Lubsan_data308'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data307' from `kernel/sys.o' being placed in section `.data.$Lubsan_data307'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data306' from `kernel/sys.o' being placed in section `.data.$Lubsan_data306'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data305' from `kernel/sys.o' being placed in section `.data.$Lubsan_data305'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data304' from `kernel/sys.o' being placed in section `.data.$Lubsan_data304'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data303' from `kernel/sys.o' being placed in section `.data.$Lubsan_data303'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/sys.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/sys.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data385' from `kernel/sched/core.o' being placed in section `.data.$Lubsan_data385'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data384' from `kernel/sched/core.o' being placed in section `.data.$Lubsan_data384'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data171' from `kernel/sched/core.o' being placed in section `.data.$Lubsan_data171'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `kernel/sched/core.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/sched/core.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/sched/core.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/sched/core.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data386' from `kernel/sched/loadavg.o' being placed in section `.data.$Lubsan_data386'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data385' from `kernel/sched/loadavg.o' being placed in section `.data.$Lubsan_data385'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data384' from `kernel/sched/loadavg.o' being placed in section `.data.$Lubsan_data384'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/sched/loadavg.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/sched/loadavg.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data75' from `kernel/sched/fair.o' being placed in section `.data.$Lubsan_data75'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data74' from `kernel/sched/fair.o' being placed in section `.data.$Lubsan_data74'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `kernel/sched/fair.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/sched/fair.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data13' from `kernel/sched/rt.o' being placed in section `.data.$Lubsan_data13'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data10' from `kernel/sched/rt.o' being placed in section `.data.$Lubsan_data10'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/sched/rt.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/sched/rt.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data219' from `kernel/locking/lockdep.o' being placed in section `.data.$Lubsan_data219'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data215' from `kernel/locking/lockdep.o' being placed in section `.data.$Lubsan_data215'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/locking/lockdep.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data13' from `kernel/locking/lockdep.o' being placed in section `.data.$Lubsan_data13'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data10' from `kernel/locking/lockdep.o' being placed in section `.data.$Lubsan_data10'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/locking/lockdep.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/locking/lockdep.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data10' from `kernel/irq/irqdesc.o' being placed in section `.data.$Lubsan_data10'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/irq/irqdesc.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/irq/irqdesc.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data232' from `kernel/irq/manage.o' being placed in section `.data.$Lubsan_data232'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/irq/manage.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data187' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_data187'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data185' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_data185'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data184' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_data184'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data183' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_data183'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/irq/generic-chip.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data184' from `kernel/irq/autoprobe.o' being placed in section `.data.$Lubsan_data184'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data183' from `kernel/irq/autoprobe.o' being placed in section `.data.$Lubsan_data183'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/irq/autoprobe.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data183' from `kernel/irq/irqdomain.o' being placed in section `.data.$Lubsan_data183'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/irq/irqdomain.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data189' from `kernel/rcu/rcuscale.o' being placed in section `.data.$Lubsan_data189'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/rcu/rcuscale.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data189' from `kernel/dma/direct.o' being placed in section `.data.$Lubsan_data189'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `kernel/dma/direct.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `kernel/dma/direct.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/dma/direct.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/dma/direct.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `kernel/dma/debug.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data190' from `kernel/dma/debug.o' being placed in section `.data.$Lubsan_data190'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/dma/debug.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data10' from `kernel/time/timer.o' being placed in section `.data.$Lubsan_data10'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `kernel/time/timer.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/time/timer.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data290' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_data290'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data289' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_data289'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data288' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_data288'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data287' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_data287'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data286' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_data286'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data264' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_data264'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `kernel/time/hrtimer.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data285' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data285'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data284' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data284'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data283' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data283'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data282' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data282'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data281' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data281'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data280' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data280'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data279' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data279'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data278' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data278'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data277' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data277'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data276' from `kernel/time/timekeeping.o' being placed in section `.data.$Lubsan_data276'
--
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data285' from `drivers/scsi/atp870u.o' being placed in section `.data.$Lubsan_data285'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data284' from `drivers/scsi/atp870u.o' being placed in section `.data.$Lubsan_data284'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/scsi/atp870u.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/scsi/atp870u.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data308' from `drivers/scsi/myrs.o' being placed in section `.data.$Lubsan_data308'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data307' from `drivers/scsi/myrs.o' being placed in section `.data.$Lubsan_data307'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data285' from `drivers/scsi/myrs.o' being placed in section `.data.$Lubsan_data285'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data283' from `drivers/scsi/myrs.o' being placed in section `.data.$Lubsan_data283'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/scsi/myrs.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/scsi/myrs.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data283' from `drivers/scsi/hptiop.o' being placed in section `.data.$Lubsan_data283'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `drivers/scsi/hptiop.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/scsi/hptiop.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data305' from `drivers/scsi/wd719x.o' being placed in section `.data.$Lubsan_data305'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data304' from `drivers/scsi/wd719x.o' being placed in section `.data.$Lubsan_data304'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/scsi/wd719x.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data285' from `drivers/scsi/sd.o' being placed in section `.data.$Lubsan_data285'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data284' from `drivers/scsi/sd.o' being placed in section `.data.$Lubsan_data284'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data283' from `drivers/scsi/sd.o' being placed in section `.data.$Lubsan_data283'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `drivers/scsi/sd.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/scsi/sd.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/scsi/sd.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data287' from `drivers/scsi/sd_zbc.o' being placed in section `.data.$Lubsan_data287'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data285' from `drivers/scsi/sd_zbc.o' being placed in section `.data.$Lubsan_data285'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data283' from `drivers/scsi/sd_zbc.o' being placed in section `.data.$Lubsan_data283'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/scsi/sd_zbc.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `drivers/scsi/sd_zbc.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/scsi/sd_zbc.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data215' from `drivers/vfio/pci/vfio_pci_rdwr.o' being placed in section `.data.$Lubsan_data215'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data214' from `drivers/vfio/pci/vfio_pci_rdwr.o' being placed in section `.data.$Lubsan_data214'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/vfio/pci/vfio_pci_rdwr.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data212' from `drivers/vfio/pci/vfio_pci_config.o' being placed in section `.data.$Lubsan_data212'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/vfio/pci/vfio_pci_config.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/vfio/pci/vfio_pci_config.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data277' from `drivers/usb/core/usb.o' being placed in section `.data.$Lubsan_data277'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data276' from `drivers/usb/core/usb.o' being placed in section `.data.$Lubsan_data276'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/core/usb.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/core/usb.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data285' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_data285'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data282' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_data282'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data279' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_data279'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data278' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_data278'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data275' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_data275'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data274' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_data274'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/core/hub.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data278' from `drivers/usb/core/hcd.o' being placed in section `.data.$Lubsan_data278'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data277' from `drivers/usb/core/hcd.o' being placed in section `.data.$Lubsan_data277'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/core/hcd.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data194' from `drivers/usb/core/urb.o' being placed in section `.data.$Lubsan_data194'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/core/urb.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `drivers/usb/core/endpoint.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data185' from `drivers/usb/core/endpoint.o' being placed in section `.data.$Lubsan_data185'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/core/endpoint.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data214' from `drivers/usb/core/devio.o' being placed in section `.data.$Lubsan_data214'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/core/devio.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/core/devio.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data189' from `drivers/usb/core/devices.o' being placed in section `.data.$Lubsan_data189'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `drivers/usb/core/devices.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/core/devices.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data275' from `drivers/usb/mtu3/mtu3_host.o' being placed in section `.data.$Lubsan_data275'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data274' from `drivers/usb/mtu3/mtu3_host.o' being placed in section `.data.$Lubsan_data274'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/mtu3/mtu3_host.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data202' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data202'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data198' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data198'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data196' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data196'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data195' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data195'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data194' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data194'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data193' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data193'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data192' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data192'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data190' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data190'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data189' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data189'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type5' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_type5'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data187' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_data187'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/isp116x-hcd.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data204' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data204'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data203' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data203'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data202' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data202'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data201' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data201'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data200' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data200'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data199' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data199'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data198' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data198'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data197' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data197'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data196' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data196'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data195' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data195'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data193' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data193'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data192' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data192'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data190' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data190'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data189' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data189'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type5' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_type5'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data13' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_data13'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/isp1362-hcd.o' being placed in section `.data.$Lubsan_type0'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data222' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data222'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data204' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data204'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data203' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data203'
>> mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data202' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data202'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data195' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data195'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data194' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data194'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data193' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data193'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data192' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data192'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data49' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_data49'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type3' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_type3'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/host/xhci-mem.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data50' from `drivers/usb/host/xhci-mem.o' being placed in section `.data.$Lubsan_data50'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/host/xhci-mem.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/usb/host/xhci-mem.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci-mem.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data207' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data207'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data206' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data206'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data204' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data204'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data198' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data198'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data197' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data197'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data196' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data196'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data195' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data195'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data193' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data193'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data192' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data192'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci-ring.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data212' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data212'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data209' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data209'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data207' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data207'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data206' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data206'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data205' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data205'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data204' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data204'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data203' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data203'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data202' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data202'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data201' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data201'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data200' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data200'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data199' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data199'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data198' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data198'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data197' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data197'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data196' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data196'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data195' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data195'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data194' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data194'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data193' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data193'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data192' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_data192'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci-hub.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data185' from `drivers/usb/host/xhci-trace.o' being placed in section `.data.$Lubsan_data185'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci-trace.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data193' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data193'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data192' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data192'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data190' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data190'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data189' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data189'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data187' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data187'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data49' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_data49'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci-mtk-sch.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data185' from `drivers/usb/host/xhci-debugfs.o' being placed in section `.data.$Lubsan_data185'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci-debugfs.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data277' from `drivers/usb/host/xhci-mtk.o' being placed in section `.data.$Lubsan_data277'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/host/xhci-mtk.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data187' from `drivers/usb/c67x00/c67x00-hcd.o' being placed in section `.data.$Lubsan_data187'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `drivers/usb/c67x00/c67x00-hcd.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/c67x00/c67x00-hcd.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/c67x00/c67x00-hcd.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/c67x00/c67x00-sched.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `drivers/usb/c67x00/c67x00-sched.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data186' from `drivers/usb/c67x00/c67x00-sched.o' being placed in section `.data.$Lubsan_data186'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/c67x00/c67x00-sched.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data201' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data201'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data200' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data200'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data198' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data198'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data197' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data197'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data191' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data191'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data190' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data190'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data189' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data189'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data188' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_data188'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/misc/usbtest.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data183' from `drivers/usb/typec/altmodes/displayport.o' being placed in section `.data.$Lubsan_data183'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/usb/typec/altmodes/displayport.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/usb/typec/altmodes/displayport.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data215' from `drivers/usb/typec/tcpm/tcpm.o' being placed in section `.data.$Lubsan_data215'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data214' from `drivers/usb/typec/tcpm/tcpm.o' being placed in section `.data.$Lubsan_data214'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data213' from `drivers/usb/typec/tcpm/tcpm.o' being placed in section `.data.$Lubsan_data213'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data212' from `drivers/usb/typec/tcpm/tcpm.o' being placed in section `.data.$Lubsan_data212'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data211' from `drivers/usb/typec/tcpm/tcpm.o' being placed in section `.data.$Lubsan_data211'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type2' from `drivers/usb/typec/tcpm/tcpm.o' being placed in section `.data.$Lubsan_type2'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data214' from `drivers/input/input.o' being placed in section `.data.$Lubsan_data214'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data22' from `drivers/input/input.o' being placed in section `.data.$Lubsan_data22'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data16' from `drivers/input/input.o' being placed in section `.data.$Lubsan_data16'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data10' from `drivers/input/input.o' being placed in section `.data.$Lubsan_data10'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/input/input.o' being placed in section `.data.$Lubsan_type1'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type0' from `drivers/input/input.o' being placed in section `.data.$Lubsan_type0'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_data10' from `drivers/input/input-mt.o' being placed in section `.data.$Lubsan_data10'
mipsel-linux-ld: warning: orphan section `.data.$Lubsan_type1' from `drivers/input/input-mt.o' being placed in section `.data.$Lubsan_type1'
..
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 7 months
Re: [PATCH v1 2/3] spi: butterfly: Switch to use module_parport_driver()
by kernel test robot
Hi Andy,
I love your patch! Yet something to improve:
[auto build test ERROR on spi/for-next]
[also build test ERROR on linus/master v5.11 next-20210215]
[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/Andy-Shevchenko/parport-Introduc...
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
config: powerpc-randconfig-r034-20210215 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project c9439ca36342fb6013187d0a69aef92736951476)
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 powerpc cross compiling tool for clang build
# apt-get install binutils-powerpc-linux-gnu
# https://github.com/0day-ci/linux/commit/59847957f9c092e0c9530501dcaf0d0b5...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Andy-Shevchenko/parport-Introduce-module_parport_driver-helper-macro/20210216-042909
git checkout 59847957f9c092e0c9530501dcaf0d0b5e3f193a
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=powerpc
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 >>):
^
arch/powerpc/include/asm/io.h:537:62: note: expanded from macro '__do_outl'
#define __do_outl(val, port) writel(val,(PCI_IO_ADDR)_IO_BASE+port);
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-butterfly.c:15:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:43:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(insb, (unsigned long p, void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:211:1: note: expanded from here
__do_insb
^
arch/powerpc/include/asm/io.h:556:56: note: expanded from macro '__do_insb'
#define __do_insb(p, b, n) readsb((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-butterfly.c:15:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:45:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(insw, (unsigned long p, void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:213:1: note: expanded from here
__do_insw
^
arch/powerpc/include/asm/io.h:557:56: note: expanded from macro '__do_insw'
#define __do_insw(p, b, n) readsw((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-butterfly.c:15:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:47:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(insl, (unsigned long p, void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:215:1: note: expanded from here
__do_insl
^
arch/powerpc/include/asm/io.h:558:56: note: expanded from macro '__do_insl'
#define __do_insl(p, b, n) readsl((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-butterfly.c:15:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:49:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(outsb, (unsigned long p, const void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:217:1: note: expanded from here
__do_outsb
^
arch/powerpc/include/asm/io.h:559:58: note: expanded from macro '__do_outsb'
#define __do_outsb(p, b, n) writesb((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-butterfly.c:15:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:51:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(outsw, (unsigned long p, const void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:219:1: note: expanded from here
__do_outsw
^
arch/powerpc/include/asm/io.h:560:58: note: expanded from macro '__do_outsw'
#define __do_outsw(p, b, n) writesw((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
~~~~~~~~~~~~~~~~~~~~~^
In file included from drivers/spi/spi-butterfly.c:15:
In file included from include/linux/spi/spi.h:15:
In file included from include/linux/scatterlist.h:9:
In file included from arch/powerpc/include/asm/io.h:619:
arch/powerpc/include/asm/io-defs.h:53:1: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic]
DEF_PCI_AC_NORET(outsl, (unsigned long p, const void *b, unsigned long c),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
arch/powerpc/include/asm/io.h:616:3: note: expanded from macro 'DEF_PCI_AC_NORET'
__do_##name al; \
^~~~~~~~~~~~~~
<scratch space>:221:1: note: expanded from here
__do_outsl
^
arch/powerpc/include/asm/io.h:561:58: note: expanded from macro '__do_outsl'
#define __do_outsl(p, b, n) writesl((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
~~~~~~~~~~~~~~~~~~~~~^
>> drivers/spi/spi-butterfly.c:320:1: error: implicit declaration of function 'parport_add_driver' [-Werror,-Wimplicit-function-declaration]
module_parport_driver(butterfly_driver);
^
include/linux/parport.h:315:34: note: expanded from macro 'module_parport_driver'
module_driver(__parport_driver, parport_add_driver, parport_del_driver)
^
>> drivers/spi/spi-butterfly.c:320:1: error: implicit declaration of function 'parport_del_driver' [-Werror,-Wimplicit-function-declaration]
include/linux/parport.h:315:54: note: expanded from macro 'module_parport_driver'
module_driver(__parport_driver, parport_add_driver, parport_del_driver)
^
drivers/spi/spi-butterfly.c:320:1: note: did you mean 'parport_del_port'?
include/linux/parport.h:315:54: note: expanded from macro 'module_parport_driver'
module_driver(__parport_driver, parport_add_driver, parport_del_driver)
^
include/linux/parport.h:328:6: note: 'parport_del_port' declared here
void parport_del_port(struct parport *);
^
12 warnings and 2 errors generated.
vim +/parport_add_driver +320 drivers/spi/spi-butterfly.c
313
314 static struct parport_driver butterfly_driver = {
315 .name = "spi_butterfly",
316 .match_port = butterfly_attach,
317 .detach = butterfly_detach,
318 .devmodel = true,
319 };
> 320 module_parport_driver(butterfly_driver);
321
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 7 months