All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: next/master build: 230 builds: 3 failed, 227 passed, 391 warnings (next-20190709)
       [not found] <5d24a6be.1c69fb81.c03b6.0fc7@mx.google.com>
@ 2019-07-09 15:13 ` Mark Brown
  2019-07-09 20:37   ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2019-07-09 15:13 UTC (permalink / raw)
  To: Lecopzer Chen, Mark-PK Tsai, Andrew Morton, Pavel Tatashin,
	Oscar Salvador, Michal Hocko, Mike Rapoport
  Cc: kernel-build-reports, linux-mm, linux-kernel, linux-next

[-- Attachment #1: Type: text/plain, Size: 913 bytes --]

On Tue, Jul 09, 2019 at 07:37:50AM -0700, kernelci.org bot wrote:

Today's -next fails to build tinyconfig on arm64 and x86_64:

> arm64:
>     tinyconfig: (clang-8) FAIL
>     tinyconfig: (gcc-8) FAIL
> 
> x86_64:
>     tinyconfig: (gcc-8) FAIL

due to:

> tinyconfig (arm64, gcc-8) — FAIL, 0 errors, 0 warnings, 0 section mismatches
> 
> Section mismatches:
>     WARNING: vmlinux.o(.meminit.text+0x430): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
>     FATAL: modpost: Section mismatches detected.

(same error for all of them, the warning appears non-fatally in
other configs).  This is caused by f13d13caa6ef2 (mm/sparse.c:
fix memory leak of sparsemap_buf in aliged memory) which adds a
reference from the __meminit annotated sparse_buffer_alloc() to
the newly added __init annotated sparse_buffer_free().

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: next/master build: 230 builds: 3 failed, 227 passed, 391 warnings (next-20190709)
  2019-07-09 15:13 ` next/master build: 230 builds: 3 failed, 227 passed, 391 warnings (next-20190709) Mark Brown
@ 2019-07-09 20:37   ` Andrew Morton
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2019-07-09 20:37 UTC (permalink / raw)
  To: Mark Brown
  Cc: Lecopzer Chen, Mark-PK Tsai, Pavel Tatashin, Oscar Salvador,
	Michal Hocko, Mike Rapoport, kernel-build-reports, linux-mm,
	linux-kernel, linux-next

On Tue, 9 Jul 2019 16:13:33 +0100 Mark Brown <broonie@kernel.org> wrote:

> On Tue, Jul 09, 2019 at 07:37:50AM -0700, kernelci.org bot wrote:
> 
> Today's -next fails to build tinyconfig on arm64 and x86_64:
> 
> > arm64:
> >     tinyconfig: (clang-8) FAIL
> >     tinyconfig: (gcc-8) FAIL
> > 
> > x86_64:
> >     tinyconfig: (gcc-8) FAIL
> 
> due to:
> 
> > tinyconfig (arm64, gcc-8) — FAIL, 0 errors, 0 warnings, 0 section mismatches
> > 
> > Section mismatches:
> >     WARNING: vmlinux.o(.meminit.text+0x430): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
> >     FATAL: modpost: Section mismatches detected.
> 
> (same error for all of them, the warning appears non-fatally in
> other configs).  This is caused by f13d13caa6ef2 (mm/sparse.c:
> fix memory leak of sparsemap_buf in aliged memory) which adds a
> reference from the __meminit annotated sparse_buffer_alloc() to
> the newly added __init annotated sparse_buffer_free().

Thanks.  Arnd just fixed this:

From: Arnd Bergmann <arnd@arndb.de>
Subject: mm/sparse.c: mark sparse_buffer_free as __meminit

Calling an __init function from a __meminit function is not allowed:

WARNING: vmlinux.o(.meminit.text+0x30ff): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
The function __meminit sparse_buffer_alloc() references
a function __init sparse_buffer_free().
If sparse_buffer_free is only used by sparse_buffer_alloc then
annotate sparse_buffer_free with a matching annotation.

Downgrade the annotation to __meminit for both, as they may be
used in the hotplug case.

Link: http://lkml.kernel.org/r/20190709185528.3251709-1-arnd@arndb.de
Fixes: mmotm ("mm/sparse.c: fix memory leak of sparsemap_buf in aliged memory")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Lecopzer Chen <lecopzer.chen@mediatek.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/sparse.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/mm/sparse.c~mm-sparse-fix-memory-leak-of-sparsemap_buf-in-aliged-memory-fix
+++ a/mm/sparse.c
@@ -428,7 +428,7 @@ struct page __init *sparse_mem_map_popul
 static void *sparsemap_buf __meminitdata;
 static void *sparsemap_buf_end __meminitdata;
 
-static inline void __init sparse_buffer_free(unsigned long size)
+static inline void __meminit sparse_buffer_free(unsigned long size)
 {
 	WARN_ON(!sparsemap_buf || size == 0);
 	memblock_free_early(__pa(sparsemap_buf), size);
_


^ permalink raw reply	[flat|nested] 3+ messages in thread

* next/master build: 230 builds: 3 failed, 227 passed, 391 warnings (next-20190709)
@ 2019-07-09 14:37 kernelci.org bot
  0 siblings, 0 replies; 3+ messages in thread
From: kernelci.org bot @ 2019-07-09 14:37 UTC (permalink / raw)
  To: linux-next

next/master build: 230 builds: 3 failed, 227 passed, 391 warnings (next-20190709)

Full Build Summary: https://kernelci.org/build/next/branch/master/kernel/next-20190709/

Tree: next
Branch: master
Git Describe: next-20190709
Git Commit: 4608a726c66807c27bc7d91bdf8a288254e29985
Git URL: git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
Built: 7 unique architectures

Build Failures Detected:

arm64:
    tinyconfig: (clang-8) FAIL
    tinyconfig: (gcc-8) FAIL

x86_64:
    tinyconfig: (gcc-8) FAIL

Warnings Detected:

arc:

arm64:
    allmodconfig (clang-8): 56 warnings
    allmodconfig (gcc-8): 44 warnings
    defconfig (clang-8): 3 warnings
    defconfig (clang-8): 3 warnings
    defconfig (clang-8): 3 warnings
    defconfig (clang-8): 3 warnings

arm:
    allmodconfig (gcc-8): 12 warnings
    multi_v7_defconfig (gcc-8): 7 warnings
    multi_v7_defconfig (gcc-8): 7 warnings
    multi_v7_defconfig (gcc-8): 10 warnings
    multi_v7_defconfig (gcc-8): 7 warnings
    multi_v7_defconfig (gcc-8): 7 warnings

i386:

mips:
    32r2el_defconfig (gcc-8): 3 warnings
    32r2el_defconfig (gcc-8): 3 warnings
    allnoconfig (gcc-8): 1 warning
    ar7_defconfig (gcc-8): 2 warnings
    ath25_defconfig (gcc-8): 2 warnings
    ath79_defconfig (gcc-8): 2 warnings
    bcm47xx_defconfig (gcc-8): 2 warnings
    bcm63xx_defconfig (gcc-8): 1 warning
    bigsur_defconfig (gcc-8): 6 warnings
    bmips_be_defconfig (gcc-8): 1 warning
    bmips_stb_defconfig (gcc-8): 1 warning
    capcella_defconfig (gcc-8): 2 warnings
    cavium_octeon_defconfig (gcc-8): 6 warnings
    ci20_defconfig (gcc-8): 2 warnings
    cobalt_defconfig (gcc-8): 2 warnings
    db1xxx_defconfig (gcc-8): 2 warnings
    decstation_64_defconfig (gcc-8): 6 warnings
    decstation_defconfig (gcc-8): 2 warnings
    decstation_r4k_defconfig (gcc-8): 2 warnings
    e55_defconfig (gcc-8): 2 warnings
    fuloong2e_defconfig (gcc-8): 6 warnings
    gcw0_defconfig (gcc-8): 1 warning
    gpr_defconfig (gcc-8): 2 warnings
    ip22_defconfig (gcc-8): 2 warnings
    ip27_defconfig (gcc-8): 6 warnings
    ip28_defconfig (gcc-8): 6 warnings
    ip32_defconfig (gcc-8): 6 warnings
    jazz_defconfig (gcc-8): 2 warnings
    jmr3927_defconfig (gcc-8): 1 warning
    lasat_defconfig (gcc-8): 1 warning
    lemote2f_defconfig (gcc-8): 6 warnings
    loongson1b_defconfig (gcc-8): 2 warnings
    loongson1c_defconfig (gcc-8): 2 warnings
    loongson3_defconfig (gcc-8): 6 warnings
    malta_defconfig (gcc-8): 2 warnings
    malta_kvm_defconfig (gcc-8): 2 warnings
    malta_kvm_guest_defconfig (gcc-8): 2 warnings
    malta_qemu_32r6_defconfig (gcc-8): 4 warnings
    maltaaprp_defconfig (gcc-8): 2 warnings
    maltasmvp_defconfig (gcc-8): 2 warnings
    maltasmvp_eva_defconfig (gcc-8): 2 warnings
    maltaup_defconfig (gcc-8): 2 warnings
    maltaup_xpa_defconfig (gcc-8): 2 warnings
    markeins_defconfig (gcc-8): 2 warnings
    mips_paravirt_defconfig (gcc-8): 6 warnings
    mpc30x_defconfig (gcc-8): 2 warnings
    msp71xx_defconfig (gcc-8): 2 warnings
    mtx1_defconfig (gcc-8): 2 warnings
    nlm_xlp_defconfig (gcc-8): 6 warnings
    nlm_xlr_defconfig (gcc-8): 2 warnings
    omega2p_defconfig (gcc-8): 1 warning
    pic32mzda_defconfig (gcc-8): 2 warnings
    pistachio_defconfig (gcc-8): 2 warnings
    pnx8335_stb225_defconfig (gcc-8): 2 warnings
    qi_lb60_defconfig (gcc-8): 3 warnings
    rb532_defconfig (gcc-8): 3 warnings
    rbtx49xx_defconfig (gcc-8): 2 warnings
    rm200_defconfig (gcc-8): 2 warnings
    rt305x_defconfig (gcc-8): 2 warnings
    sb1250_swarm_defconfig (gcc-8): 4 warnings
    tb0219_defconfig (gcc-8): 2 warnings
    tb0226_defconfig (gcc-8): 2 warnings
    tb0287_defconfig (gcc-8): 2 warnings
    tinyconfig (gcc-8): 1 warning
    vocore2_defconfig (gcc-8): 1 warning
    workpad_defconfig (gcc-8): 2 warnings
    xway_defconfig (gcc-8): 2 warnings

riscv:
    rv32_defconfig (gcc-8): 4 warnings

x86_64:
    allmodconfig (gcc-8): 48 warnings
    tinyconfig (gcc-8): 1 warning


Warnings summary:

    170  <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    20   1 warning generated.
    9    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    6    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:129.4-18: Warning (reg_format): /mdio-bus-mux/mdio@200:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
    6    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #size-cells value
    6    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #address-cells value
    6    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
    6    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
    6    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
    6    2 warnings generated.
    5    drivers/net/wireless/ath/ath10k/mac.c:7528:7: warning: variable 'vht_pfr' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
    5    drivers/net/wireless/ath/ath10k/mac.c:7483:12: note: initialize the variable 'vht_pfr' to silence this warning
    3    include/linux/string.h:400:9: warning: 'rec_seq' may be used uninitialized in this function [-Wmaybe-uninitialized]
    2    drivers/watchdog/jz4740_wdt.c:165:6: warning: unused variable 'ret' [-Wunused-variable]
    2    drivers/net/wireless/realtek/rtl818x/rtl8180/rtl8225se.c:428:1: warning: the frame size of 4208 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    2    drivers/media/dvb-frontends/stv090x.c:3419:1: warning: the frame size of 5280 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    2    drivers/media/dvb-frontends/stv090x.c:2125:1: warning: the frame size of 2096 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    2    drivers/media/dvb-frontends/stv0367.c:1902:1: warning: the frame size of 3296 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    2    drivers/media/dvb-frontends/cxd2841er.c:3630:1: warning: the frame size of 2784 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    2    drivers/gpu/drm/tinydrm/ili9225.c:289:1: warning: the frame size of 2720 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    2    <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp]
    2    <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp]
    1    {standard input}:134: Warning: macro instruction expanded into multiple instructions
    1    {standard input}:131: Warning: macro instruction expanded into multiple instructions
    1    warning: same module names found:
    1    net/wireless/nl80211.c:6481:1: warning: the frame size of 2128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/wireless/nl80211.c:6481:1: warning: the frame size of 2112 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/wireless/nl80211.c:5117:1: warning: the frame size of 2784 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/wireless/nl80211.c:5117:1: warning: the frame size of 2776 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/wireless/nl80211.c:2363:1: warning: the frame size of 4640 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/wireless/nl80211.c:2363:1: warning: the frame size of 4584 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/wireless/nl80211.c:1732:1: warning: the frame size of 2280 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/wireless/nl80211.c:1732:1: warning: the frame size of 2272 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/nfc/hci/llc_shdlc.c:687:34: warning: variable 'connect_wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    net/nfc/hci/command.c:59:34: warning: variable 'ew_wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    net/ieee802154/nl802154.c:548:1: warning: the frame size of 2256 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/ieee802154/nl802154.c:548:1: warning: the frame size of 2224 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/caif/cfctrl.c:549:1: warning: the frame size of 2608 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/caif/cfctrl.c:549:1: warning: the frame size of 2512 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/bridge/br_netlink.c:1505:1: warning: the frame size of 2696 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    net/bridge/br_netlink.c:1505:1: warning: the frame size of 2688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    mm/shmem.c:2732:35: warning: variable 'shmem_falloc_waitq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    lib/ubsan.o: warning: objtool: ubsan_type_mismatch_common()+0x59: call to stackleak_track_stack() with UACCESS enabled
    1    fs/proc/proc_sysctl.c:701:35: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/proc/base.c:1876:35: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/ocfs2/xattr.c:3678:1: warning: the frame size of 2352 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/xattr.c:3678:1: warning: the frame size of 2224 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/super.c:1186:1: warning: the frame size of 3184 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/super.c:1186:1: warning: the frame size of 3176 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/namei.c:2050:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/namei.c:1677:1: warning: the frame size of 2616 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/namei.c:1677:1: warning: the frame size of 2592 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/dlm/dlmrecovery.c:737:1: warning: the frame size of 2112 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/dlm/dlmrecovery.c:737:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/dir.c:3080:1: warning: the frame size of 2056 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/aops.c:1892:1: warning: the frame size of 2128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/ocfs2/aops.c:1892:1: warning: the frame size of 2112 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    fs/nfs/dir.c:455:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/nfs/dir.c:1583:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/namei.c:3136:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/namei.c:1646:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/fuse/readdir.c:161:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/cifs/readdir.c:83:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    fs/afs/dir_silly.c:205:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c:2764:1: warning: the frame size of 2792 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c:2764:1: warning: the frame size of 2064 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/scsi/lpfc/lpfc_sli.c:11850:34: warning: variable 'done_q' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/scsi/lpfc/lpfc_scsi.c:4559:34: warning: variable 'waitq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/scsi/bfa/bfad_im.c:378:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/scsi/bfa/bfad_im.c:301:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/net/wireless/ralink/rt2x00/rt73usb.c:1283:1: warning: the frame size of 2656 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/wireless/ralink/rt2x00/rt2500usb.c:880:1: warning: the frame size of 2472 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:26023:1: warning: the frame size of 2528 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:26023:1: warning: the frame size of 2440 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16894:1: warning: the frame size of 3136 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16894:1: warning: the frame size of 3128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16552:1: warning: the frame size of 3168 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16552:1: warning: the frame size of 3152 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/usb/lan78xx.c:2663:34: warning: variable 'unlink_wakeup' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/net/ethernet/ti/davinci_cpdma.c:1164:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
    1    drivers/net/ethernet/ti/davinci_cpdma.c:1114:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
    1    drivers/net/ethernet/ti/davinci_cpdma.c:1047:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
    1    drivers/net/ethernet/rocker/rocker_ofdpa.c:560:1: warning: the frame size of 2360 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/ethernet/rocker/rocker_ofdpa.c:560:1: warning: the frame size of 2352 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c:251:2: warning: variable 'rec_seq_sz' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
    1    drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c:239:16: note: initialize the variable 'rec_seq_sz' to silence this warning
    1    drivers/net/bonding/bond_netlink.c:686:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/net/bonding/bond_netlink.c:686:1: warning: the frame size of 2072 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/mtd/nand/raw/au1550nd.c:443:57: warning: pointer type mismatch in conditional expression
    1    drivers/misc/mic/vop/vop_vringh.c:399:34: warning: variable 'wake' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/misc/mic/vop/vop_vringh.c:155:34: warning: variable 'wake' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/misc/habanalabs/goya/goya.c:698:21: warning: format '%llx' expects argument of type 'long long unsigned int', but argument 4 has type 'dma_addr_t' {aka 'unsigned int'} [-Wformat=]
    1    drivers/media/tuners/r820t.c:1327:1: warning: the frame size of 2848 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/tuners/r820t.c:1327:1: warning: the frame size of 2840 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/pci/saa7134/saa7134-cards.c:8074:1: warning: the frame size of 2144 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/pci/saa7134/saa7134-cards.c:8074:1: warning: the frame size of 2128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/i2c/tvp5150.c:253:1: warning: the frame size of 3968 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/i2c/tvp5150.c:253:1: warning: the frame size of 3952 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/i2c/mt9t112.c:480:1: warning: the frame size of 2096 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:4568:1: warning: the frame size of 2104 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:4568:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:4253:1: warning: the frame size of 2808 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:4253:1: warning: the frame size of 2784 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:3078:1: warning: the frame size of 5888 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:3078:1: warning: the frame size of 5880 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:2496:1: warning: the frame size of 2328 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:2496:1: warning: the frame size of 2320 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:2057:1: warning: the frame size of 2576 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:2057:1: warning: the frame size of 2568 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1940:1: warning: the frame size of 3288 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1940:1: warning: the frame size of 3280 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1842:1: warning: the frame size of 3016 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1842:1: warning: the frame size of 3008 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1583:1: warning: the frame size of 5320 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1583:1: warning: the frame size of 5312 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1195:1: warning: the frame size of 2088 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1195:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1152:1: warning: the frame size of 2088 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1152:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1111:1: warning: the frame size of 2088 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/stv090x.c:1111:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/cxd2841er.c:3123:1: warning: the frame size of 2736 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/media/dvb-frontends/cxd2841er.c:3123:1: warning: the frame size of 2720 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/gpu/host1x/syncpt.c:208:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/gpu/drm/panel/panel-sitronix-st7701.c:198:1: warning: the frame size of 2096 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/gpu/drm/panel/panel-sitronix-st7701.c:198:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c:995:39: warning: implicit conversion from enumeration type 'PPCLK_e' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    1    drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c:1031:39: warning: implicit conversion from enumeration type 'PPCLK_e' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    1    drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c:1016:39: warning: implicit conversion from enumeration type 'PPCLK_e' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    1    drivers/gpu/drm/amd/amdgpu/../powerplay/amdgpu_smu.c:1390:30: warning: implicit conversion from enumeration type 'enum pp_clock_type' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    1    drivers/gpu/drm/amd/amdgpu/../powerplay/amdgpu_smu.c:1389:30: warning: implicit conversion from enumeration type 'enum pp_clock_type' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    1    drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_pp_smu.c:421:14: warning: implicit conversion from enumeration type 'enum amd_pp_clock_type' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    1    drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_pp_smu.c:336:8: warning: implicit conversion from enumeration type 'enum smu_clk_type' to different enumeration type 'enum amd_pp_clock_type' [-Wenum-conversion]
    1    drivers/bluetooth/bluecard_cs.c:282:36: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1    drivers/ata/pata_rb532_cf.c:161:24: warning: unused variable 'info' [-Wunused-variable]
    1    arch/x86/kvm/x86.c:4344:1: warning: the frame size of 2160 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    arch/x86/kernel/cpu/mshyperv.c:342:1: warning: the frame size of 2856 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    1    3 warnings generated.
    1    /tmp/ccSFTFbs.s:18191: Warning: using r15 results in unpredictable behaviour
    1    /tmp/ccSFTFbs.s:18119: Warning: using r15 results in unpredictable behaviour
    1    .config:1176:warning: override: UNWINDER_GUESS changes choice state

Section mismatches summary:

    3    FATAL: modpost: Section mismatches detected.
    1    WARNING: vmlinux.o(.meminit.text+0xadcb): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    1    WARNING: vmlinux.o(.meminit.text+0x5c0): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    1    WARNING: vmlinux.o(.meminit.text+0x430): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    1    WARNING: vmlinux.o(.meminit.text+0x33ba): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    1    WARNING: vmlinux.o(.meminit.text+0x2da4): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    1    WARNING: vmlinux.o(.meminit.text+0x27e7): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    1    WARNING: vmlinux.o(.meminit.text+0x2360): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    1    WARNING: vmlinux.o(.meminit.text+0x1a9f): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()

================================================================================

Detailed per-defconfig build reports:

--------------------------------------------------------------------------------
32r2el_defconfig (mips, gcc-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
32r2el_defconfig+kselftest (mips, gcc-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
acs5k_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
acs5k_tiny_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
allmodconfig (arm, gcc-8) — PASS, 0 errors, 12 warnings, 0 section mismatches

Warnings:
    /tmp/ccSFTFbs.s:18119: Warning: using r15 results in unpredictable behaviour
    /tmp/ccSFTFbs.s:18191: Warning: using r15 results in unpredictable behaviour
    drivers/misc/habanalabs/goya/goya.c:698:21: warning: format '%llx' expects argument of type 'long long unsigned int', but argument 4 has type 'dma_addr_t' {aka 'unsigned int'} [-Wformat=]
    include/linux/string.h:400:9: warning: 'rec_seq' may be used uninitialized in this function [-Wmaybe-uninitialized]
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    warning: same module names found:
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:129.4-18: Warning (reg_format): /mdio-bus-mux/mdio@200:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #address-cells value
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #size-cells value

--------------------------------------------------------------------------------
allmodconfig (arm64, clang-8) — PASS, 0 errors, 56 warnings, 0 section mismatches

Warnings:
    mm/shmem.c:2732:35: warning: variable 'shmem_falloc_waitq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    fs/proc/base.c:1876:35: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    fs/proc/proc_sysctl.c:701:35: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    fs/namei.c:1646:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    fs/namei.c:3136:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    2 warnings generated.
    fs/afs/dir_silly.c:205:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    drivers/bluetooth/bluecard_cs.c:282:36: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    fs/cifs/readdir.c:83:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    fs/fuse/readdir.c:161:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    fs/nfs/dir.c:455:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    fs/nfs/dir.c:1583:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    2 warnings generated.
    drivers/gpu/drm/amd/amdgpu/../powerplay/amdgpu_smu.c:1389:30: warning: implicit conversion from enumeration type 'enum pp_clock_type' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    drivers/gpu/drm/amd/amdgpu/../powerplay/amdgpu_smu.c:1390:30: warning: implicit conversion from enumeration type 'enum pp_clock_type' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    2 warnings generated.
    drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c:995:39: warning: implicit conversion from enumeration type 'PPCLK_e' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c:1016:39: warning: implicit conversion from enumeration type 'PPCLK_e' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c:1031:39: warning: implicit conversion from enumeration type 'PPCLK_e' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    3 warnings generated.
    drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_pp_smu.c:336:8: warning: implicit conversion from enumeration type 'enum smu_clk_type' to different enumeration type 'enum amd_pp_clock_type' [-Wenum-conversion]
    drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_pp_smu.c:421:14: warning: implicit conversion from enumeration type 'enum amd_pp_clock_type' to different enumeration type 'enum smu_clk_type' [-Wenum-conversion]
    2 warnings generated.
    drivers/gpu/host1x/syncpt.c:208:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    net/nfc/hci/command.c:59:34: warning: variable 'ew_wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    net/nfc/hci/llc_shdlc.c:687:34: warning: variable 'connect_wq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    drivers/misc/mic/vop/vop_vringh.c:155:34: warning: variable 'wake' is uninitialized when used within its own initialization [-Wuninitialized]
    drivers/misc/mic/vop/vop_vringh.c:399:34: warning: variable 'wake' is uninitialized when used within its own initialization [-Wuninitialized]
    2 warnings generated.
    drivers/net/usb/lan78xx.c:2663:34: warning: variable 'unlink_wakeup' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    drivers/net/wireless/ath/ath10k/mac.c:7528:7: warning: variable 'vht_pfr' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
    drivers/net/wireless/ath/ath10k/mac.c:7483:12: note: initialize the variable 'vht_pfr' to silence this warning
    1 warning generated.
    drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c:251:2: warning: variable 'rec_seq_sz' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
    drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c:239:16: note: initialize the variable 'rec_seq_sz' to silence this warning
    1 warning generated.
    drivers/scsi/bfa/bfad_im.c:301:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    drivers/scsi/bfa/bfad_im.c:378:34: warning: variable 'wq' is uninitialized when used within its own initialization [-Wuninitialized]
    2 warnings generated.
    drivers/scsi/lpfc/lpfc_sli.c:11850:34: warning: variable 'done_q' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    drivers/scsi/lpfc/lpfc_scsi.c:4559:34: warning: variable 'waitq' is uninitialized when used within its own initialization [-Wuninitialized]
    1 warning generated.
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    1 warning generated.

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0x2360): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()

--------------------------------------------------------------------------------
allmodconfig (x86_64, gcc-8) — PASS, 0 errors, 48 warnings, 0 section mismatches

Warnings:
    arch/x86/kernel/cpu/mshyperv.c:342:1: warning: the frame size of 2856 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    arch/x86/kvm/x86.c:4344:1: warning: the frame size of 2160 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/dlm/dlmrecovery.c:737:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/aops.c:1892:1: warning: the frame size of 2112 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/dir.c:3080:1: warning: the frame size of 2056 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/namei.c:1677:1: warning: the frame size of 2616 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/super.c:1186:1: warning: the frame size of 3176 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/xattr.c:3678:1: warning: the frame size of 2224 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/bridge/br_netlink.c:1505:1: warning: the frame size of 2696 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/caif/cfctrl.c:549:1: warning: the frame size of 2608 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    lib/ubsan.o: warning: objtool: ubsan_type_mismatch_common()+0x59: call to stackleak_track_stack() with UACCESS enabled
    net/ieee802154/nl802154.c:548:1: warning: the frame size of 2224 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/gpu/drm/panel/panel-sitronix-st7701.c:198:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/gpu/drm/tinydrm/ili9225.c:289:1: warning: the frame size of 2720 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:1732:1: warning: the frame size of 2280 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:6481:1: warning: the frame size of 2112 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:2363:1: warning: the frame size of 4584 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:5117:1: warning: the frame size of 2776 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/i2c/tvp5150.c:253:1: warning: the frame size of 3952 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1842:1: warning: the frame size of 3016 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:2125:1: warning: the frame size of 2096 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:2496:1: warning: the frame size of 2328 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:4568:1: warning: the frame size of 2104 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1940:1: warning: the frame size of 3288 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1583:1: warning: the frame size of 5320 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1111:1: warning: the frame size of 2088 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1195:1: warning: the frame size of 2088 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:4253:1: warning: the frame size of 2808 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1152:1: warning: the frame size of 2088 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:2057:1: warning: the frame size of 2568 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:3078:1: warning: the frame size of 5880 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:3419:1: warning: the frame size of 5280 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv0367.c:1902:1: warning: the frame size of 3296 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/cxd2841er.c:3123:1: warning: the frame size of 2720 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/cxd2841er.c:3630:1: warning: the frame size of 2784 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/pci/saa7134/saa7134-cards.c:8074:1: warning: the frame size of 2128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/tuners/r820t.c:1327:1: warning: the frame size of 2840 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/bonding/bond_netlink.c:686:1: warning: the frame size of 2072 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16552:1: warning: the frame size of 3152 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16894:1: warning: the frame size of 3128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:26023:1: warning: the frame size of 2440 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    include/linux/string.h:400:9: warning: 'rec_seq' may be used uninitialized in this function [-Wmaybe-uninitialized]
    drivers/net/ethernet/rocker/rocker_ofdpa.c:560:1: warning: the frame size of 2360 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/realtek/rtl818x/rtl8180/rtl8225se.c:428:1: warning: the frame size of 4208 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/ralink/rt2x00/rt2500usb.c:880:1: warning: the frame size of 2472 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/ralink/rt2x00/rt73usb.c:1283:1: warning: the frame size of 2656 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c:2764:1: warning: the frame size of 2792 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0xadcb): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()

--------------------------------------------------------------------------------
allmodconfig (arm64, gcc-8) — PASS, 0 errors, 44 warnings, 0 section mismatches

Warnings:
    net/bridge/br_netlink.c:1505:1: warning: the frame size of 2688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/caif/cfctrl.c:549:1: warning: the frame size of 2512 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/ieee802154/nl802154.c:548:1: warning: the frame size of 2256 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/dlm/dlmrecovery.c:737:1: warning: the frame size of 2112 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/aops.c:1892:1: warning: the frame size of 2128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/namei.c:2050:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/namei.c:1677:1: warning: the frame size of 2592 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/super.c:1186:1: warning: the frame size of 3184 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    fs/ocfs2/xattr.c:3678:1: warning: the frame size of 2352 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/gpu/drm/panel/panel-sitronix-st7701.c:198:1: warning: the frame size of 2096 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:1732:1: warning: the frame size of 2272 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:6481:1: warning: the frame size of 2128 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:2363:1: warning: the frame size of 4640 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    net/wireless/nl80211.c:5117:1: warning: the frame size of 2784 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/gpu/drm/tinydrm/ili9225.c:289:1: warning: the frame size of 2720 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/i2c/tvp5150.c:253:1: warning: the frame size of 3968 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/i2c/mt9t112.c:480:1: warning: the frame size of 2096 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1842:1: warning: the frame size of 3008 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:2125:1: warning: the frame size of 2096 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:2496:1: warning: the frame size of 2320 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:4568:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1940:1: warning: the frame size of 3280 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1583:1: warning: the frame size of 5312 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1111:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1195:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:4253:1: warning: the frame size of 2784 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:1152:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:2057:1: warning: the frame size of 2576 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:3078:1: warning: the frame size of 5888 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv090x.c:3419:1: warning: the frame size of 5280 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/stv0367.c:1902:1: warning: the frame size of 3296 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/cxd2841er.c:3123:1: warning: the frame size of 2736 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/dvb-frontends/cxd2841er.c:3630:1: warning: the frame size of 2784 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/pci/saa7134/saa7134-cards.c:8074:1: warning: the frame size of 2144 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/media/tuners/r820t.c:1327:1: warning: the frame size of 2848 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/bonding/bond_netlink.c:686:1: warning: the frame size of 2080 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    include/linux/string.h:400:9: warning: 'rec_seq' may be used uninitialized in this function [-Wmaybe-uninitialized]
    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16552:1: warning: the frame size of 3168 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:16894:1: warning: the frame size of 3136 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c:26023:1: warning: the frame size of 2528 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/wireless/realtek/rtl818x/rtl8180/rtl8225se.c:428:1: warning: the frame size of 4208 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/net/ethernet/rocker/rocker_ofdpa.c:560:1: warning: the frame size of 2352 bytes is larger than 2048 bytes [-Wframe-larger-than=]
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c:2764:1: warning: the frame size of 2064 bytes is larger than 2048 bytes [-Wframe-larger-than=]

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0x2da4): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()

--------------------------------------------------------------------------------
allnoconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
allnoconfig (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
allnoconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
allnoconfig (riscv, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
allnoconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
allnoconfig (arm64, clang-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
allnoconfig (x86_64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
allnoconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
am200epdkit_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
ar7_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
aspeed_g4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
aspeed_g5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
assabet_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
at91_dt_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
ath25_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
ath79_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
axm55xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
axs103_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
axs103_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
badge4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
bcm2835_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
bcm47xx_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
bcm63xx_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
bigsur_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
bmips_be_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
bmips_stb_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
capcella_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
cavium_octeon_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
cerfcube_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
ci20_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    drivers/watchdog/jz4740_wdt.c:165:6: warning: unused variable 'ret' [-Wunused-variable]

--------------------------------------------------------------------------------
clps711x_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
cm_x2xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
cm_x300_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
cns3420vb_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
cobalt_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
colibri_pxa270_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
colibri_pxa300_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
collie_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
corgi_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
davinci_all_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
db1xxx_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    drivers/mtd/nand/raw/au1550nd.c:443:57: warning: pointer type mismatch in conditional expression

--------------------------------------------------------------------------------
decstation_64_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
decstation_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
decstation_r4k_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
defconfig (riscv, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
defconfig (arm64, clang-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    drivers/net/wireless/ath/ath10k/mac.c:7528:7: warning: variable 'vht_pfr' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
    drivers/net/wireless/ath/ath10k/mac.c:7483:12: note: initialize the variable 'vht_pfr' to silence this warning
    1 warning generated.

--------------------------------------------------------------------------------
defconfig (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
defconfig+CONFIG_CPU_BIG_ENDIAN=y (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
defconfig+CONFIG_CPU_BIG_ENDIAN=y (arm64, clang-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    drivers/net/wireless/ath/ath10k/mac.c:7528:7: warning: variable 'vht_pfr' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
    drivers/net/wireless/ath/ath10k/mac.c:7483:12: note: initialize the variable 'vht_pfr' to silence this warning
    1 warning generated.

--------------------------------------------------------------------------------
defconfig+CONFIG_RANDOMIZE_BASE=y (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
defconfig+CONFIG_RANDOMIZE_BASE=y (arm64, clang-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    drivers/net/wireless/ath/ath10k/mac.c:7528:7: warning: variable 'vht_pfr' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
    drivers/net/wireless/ath/ath10k/mac.c:7483:12: note: initialize the variable 'vht_pfr' to silence this warning
    1 warning generated.

--------------------------------------------------------------------------------
defconfig+kselftest (riscv, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
defconfig+kselftest (arm64, clang-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    drivers/net/wireless/ath/ath10k/mac.c:7528:7: warning: variable 'vht_pfr' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
    drivers/net/wireless/ath/ath10k/mac.c:7483:12: note: initialize the variable 'vht_pfr' to silence this warning
    1 warning generated.

--------------------------------------------------------------------------------
defconfig+kselftest (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
dove_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
e55_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
ebsa110_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
efm32_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
em_x270_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
ep93xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
eseries_pxa_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
exynos_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
ezx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
footbridge_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
fuloong2e_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
gcw0_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
gemini_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
gpr_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
h3600_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
h5000_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
hackkit_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
haps_hs_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
haps_hs_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
hisi_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
hsdk_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
i386_defconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
i386_defconfig+kselftest (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
imote2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
imx_v4_v5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
imx_v6_v7_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
integrator_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
iop13xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
iop32x_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
iop33x_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
ip22_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
ip27_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
ip28_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
ip32_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
ixp4xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
jazz_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
jmr3927_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
jornada720_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
keystone_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
ks8695_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
lart_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
lasat_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
lemote2f_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
loongson1b_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
loongson1c_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
loongson3_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
lpc18xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
lpc32xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
lpd270_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
lubbock_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
magician_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
mainstone_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
malta_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
malta_kvm_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
malta_kvm_guest_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
malta_qemu_32r6_defconfig (mips, gcc-8) — PASS, 0 errors, 4 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    {standard input}:131: Warning: macro instruction expanded into multiple instructions
    {standard input}:134: Warning: macro instruction expanded into multiple instructions
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
maltaaprp_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
maltasmvp_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
maltasmvp_eva_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
maltaup_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
maltaup_xpa_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
markeins_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
milbeaut_m10v_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
mini2440_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
mips_paravirt_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
mmp2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
moxart_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
mpc30x_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
mps2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
msp71xx_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
mtx1_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
multi_v4t_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
multi_v5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
multi_v7_defconfig (arm, gcc-8) — PASS, 0 errors, 7 warnings, 0 section mismatches

Warnings:
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:129.4-18: Warning (reg_format): /mdio-bus-mux/mdio@200:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #address-cells value
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #size-cells value

--------------------------------------------------------------------------------
multi_v7_defconfig+CONFIG_CPU_BIG_ENDIAN=y (arm, gcc-8) — PASS, 0 errors, 7 warnings, 0 section mismatches

Warnings:
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:129.4-18: Warning (reg_format): /mdio-bus-mux/mdio@200:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #address-cells value
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #size-cells value

--------------------------------------------------------------------------------
multi_v7_defconfig+CONFIG_EFI=y+CONFIG_ARM_LPAE=y (arm, gcc-8) — PASS, 0 errors, 10 warnings, 0 section mismatches

Warnings:
    drivers/net/ethernet/ti/davinci_cpdma.c:1047:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
    drivers/net/ethernet/ti/davinci_cpdma.c:1114:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
    drivers/net/ethernet/ti/davinci_cpdma.c:1164:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:129.4-18: Warning (reg_format): /mdio-bus-mux/mdio@200:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #address-cells value
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #size-cells value

--------------------------------------------------------------------------------
multi_v7_defconfig+CONFIG_SMP=n (arm, gcc-8) — PASS, 0 errors, 7 warnings, 0 section mismatches

Warnings:
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:129.4-18: Warning (reg_format): /mdio-bus-mux/mdio@200:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #address-cells value
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #size-cells value

--------------------------------------------------------------------------------
multi_v7_defconfig+kselftest (arm, gcc-8) — PASS, 0 errors, 7 warnings, 0 section mismatches

Warnings:
    drivers/watchdog/digicolor_wdt.c:121:6: warning: unused variable 'ret' [-Wunused-variable]
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:129.4-18: Warning (reg_format): /mdio-bus-mux/mdio@200:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #address-cells value
    arch/arm/boot/dts/bcm47094-linksys-panamera.dts:128.22-132.5: Warning (avoid_default_addr_size): /mdio-bus-mux/mdio@200: Relying on default #size-cells value

--------------------------------------------------------------------------------
mv78xx0_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
mvebu_v5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
mvebu_v7_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
mxs_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
neponset_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
netwinder_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nhk8815_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nlm_xlp_defconfig (mips, gcc-8) — PASS, 0 errors, 6 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
nlm_xlr_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
nsim_hs_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nsim_hs_defconfig+kselftest (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nsim_hs_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nsimosci_hs_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nuc910_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nuc950_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
nuc960_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
omap1_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
omap2plus_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
omega2p_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
orion5x_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
oxnas_v6_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
palmz72_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pcm027_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pic32mzda_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
pistachio_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
pleb_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pnx8335_stb225_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
prima2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pxa168_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pxa255-idp_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pxa3xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pxa910_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
pxa_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
qcom_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
qi_lb60_defconfig (mips, gcc-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    drivers/watchdog/jz4740_wdt.c:165:6: warning: unused variable 'ret' [-Wunused-variable]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
rb532_defconfig (mips, gcc-8) — PASS, 0 errors, 3 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    drivers/ata/pata_rb532_cf.c:161:24: warning: unused variable 'info' [-Wunused-variable]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
rbtx49xx_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
realview_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
rm200_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
rpc_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
rt305x_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
rv32_defconfig (riscv, gcc-8) — PASS, 0 errors, 4 warnings, 0 section mismatches

Warnings:
    <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp]
    <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp]
    <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp]
    <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp]

--------------------------------------------------------------------------------
s3c2410_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
s3c6400_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
s5pv210_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
sama5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
sb1250_swarm_defconfig (mips, gcc-8) — PASS, 0 errors, 4 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
shannon_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
shmobile_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
simpad_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
socfpga_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
spear13xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
spear3xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
spear6xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
spitz_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
stm32_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
sunxi_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tango4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tb0219_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
tb0226_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
tb0287_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
tct_hammer_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tegra_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tinyconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tinyconfig (arm64, gcc-8) — FAIL, 0 errors, 0 warnings, 0 section mismatches

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0x430): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    FATAL: modpost: Section mismatches detected.

--------------------------------------------------------------------------------
tinyconfig (x86_64, gcc-8) — FAIL, 0 errors, 1 warning, 0 section mismatches

Warnings:
    .config:1176:warning: override: UNWINDER_GUESS changes choice state

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0x1a9f): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    FATAL: modpost: Section mismatches detected.

--------------------------------------------------------------------------------
tinyconfig (riscv, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tinyconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tinyconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
tinyconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
tinyconfig (arm64, clang-8) — FAIL, 0 errors, 0 warnings, 0 section mismatches

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0x5c0): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()
    FATAL: modpost: Section mismatches detected.

--------------------------------------------------------------------------------
trizeps4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
u300_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
u8500_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
versatile_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
vexpress_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
vf610m4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
viper_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
vocore2_defconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
vt8500_v6_v7_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
workpad_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
x86_64_defconfig (x86_64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0x27e7): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()

--------------------------------------------------------------------------------
x86_64_defconfig+kselftest (x86_64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

Section mismatches:
    WARNING: vmlinux.o(.meminit.text+0x33ba): Section mismatch in reference from the function sparse_buffer_alloc() to the function .init.text:sparse_buffer_free()

--------------------------------------------------------------------------------
xcep_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
xway_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
    <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]

--------------------------------------------------------------------------------
zeus_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

--------------------------------------------------------------------------------
zx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches

---
For more info write to <info@kernelci.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-07-09 20:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <5d24a6be.1c69fb81.c03b6.0fc7@mx.google.com>
2019-07-09 15:13 ` next/master build: 230 builds: 3 failed, 227 passed, 391 warnings (next-20190709) Mark Brown
2019-07-09 20:37   ` Andrew Morton
2019-07-09 14:37 kernelci.org bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.