Buildresult: powerpc-next-rand/powerpc-randconfig+ppc64le/powerpc-gcc11 built on Oct 21 2021, 23:53
kisskb
Revisions
|
Branches
|
Compilers
|
Configs
|
Build Results
|
Build Failures
|
Status:
Failed
Date/Time:
Oct 21 2021, 23:53
Duration:
0:09:57.379531
Builder:
blade46
Revision:
powerpc/32: Don't use a struct based type for pte_t (
2974d421aac1374d3269fe4f1fba2068aa33134d)
Target:
powerpc-next-rand/powerpc-randconfig+ppc64le/powerpc-gcc11
Branch:
powerpc-next-rand
Compiler:
powerpc-gcc11
(powerpc64-linux-gcc (GCC) 11.1.0 / GNU ld (GNU Binutils) 2.36.1)
Config:
randconfig+ppc64le
(
download
)
Log:
Download original
Possible errors
arch/powerpc/mm/slice.c:639:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] cc1: all warnings being treated as errors make[3]: *** [scripts/Makefile.build:277: arch/powerpc/mm/slice.o] Error 1 make[2]: *** [scripts/Makefile.build:540: arch/powerpc/mm] Error 2 make[1]: *** [Makefile:1868: arch/powerpc] Error 2 fs/ext4/move_extent.c:227:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] cc1: all warnings being treated as errors make[3]: *** [scripts/Makefile.build:277: fs/ext4/move_extent.o] Error 1 fs/fat/dir.c:1195:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] fs/fat/fatent.c:633:1: error: the frame size of 1104 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] fs/fat/fatent.c:551:1: error: the frame size of 1168 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] cc1: all warnings being treated as errors make[3]: *** [scripts/Makefile.build:277: fs/fat/fatent.o] Error 1 fs/fat/dir.c:1279:1: error: the frame size of 1088 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] cc1: all warnings being treated as errors make[3]: *** [scripts/Makefile.build:277: fs/fat/dir.o] Error 1 make[2]: *** [scripts/Makefile.build:540: fs/fat] Error 2 make[2]: *** [scripts/Makefile.build:540: fs/ext4] Error 2 fs/ntfs3/fsntfs.c:775:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] cc1: all warnings being treated as errors make[3]: *** [scripts/Makefile.build:277: fs/ntfs3/fsntfs.o] Error 1 make[2]: *** [scripts/Makefile.build:540: fs/ntfs3] Error 2 make[1]: *** [Makefile:1868: fs] Error 2 drivers/media/common/saa7146/saa7146_hlp.c:465:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] cc1: all warnings being treated as errors make[5]: *** [scripts/Makefile.build:277: drivers/media/common/saa7146/saa7146_hlp.o] Error 1 make[4]: *** [scripts/Makefile.build:540: drivers/media/common/saa7146] Error 2 make[3]: *** [scripts/Makefile.build:540: drivers/media/common] Error 2 make[2]: *** [scripts/Makefile.build:540: drivers/media] Error 2 make[1]: *** [Makefile:1868: drivers] Error 2 make: *** [Makefile:219: __sub-make] Error 2
Possible warnings (5)
warning: The last gc run reported the following. Please correct the root cause warning: There are too many unreachable loose objects; run 'git prune' to remove them. .config:5668:warning: override: reassigning to symbol STANDALONE .config:5673:warning: override: reassigning to symbol PPC64 .config:5681:warning: override: reassigning to symbol UBSAN
Full Log
# git rev-parse -q --verify 2974d421aac1374d3269fe4f1fba2068aa33134d^{commit} # git fetch -q -n -f git://gitlab.ozlabs.ibm.com/linuxppc/linux.git next-test warning: The last gc run reported the following. Please correct the root cause and remove .git/gc.log. Automatic cleanup will not be performed until the file is removed. warning: There are too many unreachable loose objects; run 'git prune' to remove them. # git rev-parse -q --verify 2974d421aac1374d3269fe4f1fba2068aa33134d^{commit} 2974d421aac1374d3269fe4f1fba2068aa33134d # git checkout -q -f -B kisskb 2974d421aac1374d3269fe4f1fba2068aa33134d # git clean -qxdf # < git log -1 # commit 2974d421aac1374d3269fe4f1fba2068aa33134d # Author: Christophe Leroy <christophe.leroy@csgroup.eu> # Date: Fri Sep 17 15:57:31 2021 +0200 # # powerpc/32: Don't use a struct based type for pte_t # # Long time ago we had a config item called STRICT_MM_TYPECHECKS # to build the kernel with pte_t defined as a structure in order # to perform additional build checks or build it with pte_t # defined as a simple type in order to get simpler generated code. # # Commit 670eea924198 ("powerpc/mm: Always use STRICT_MM_TYPECHECKS") # made the struct based definition the only one, considering that the # generated code was similar in both cases. # # That's right on ppc64 because the ABI is such that the content of a # struct having a single simple type element is passed as register, # but on ppc32 such a structure is passed via the stack like any # structure. # # Simple test function: # # pte_t test(pte_t pte) # { # return pte; # } # # Before this patch we get # # c00108ec <test>: # c00108ec: 81 24 00 00 lwz r9,0(r4) # c00108f0: 91 23 00 00 stw r9,0(r3) # c00108f4: 4e 80 00 20 blr # # So, for PPC32, restore the simple type behaviour we got before # commit 670eea924198, but instead of adding a config option to # activate type check, do it when __CHECKER__ is set so that type # checking is performed by 'sparse' and provides feedback like: # # arch/powerpc/mm/pgtable.c:466:16: warning: incorrect type in return expression (different base types) # arch/powerpc/mm/pgtable.c:466:16: expected unsigned long # arch/powerpc/mm/pgtable.c:466:16: got struct pte_t [usertype] x # # With this patch we now get # # c0010890 <test>: # c0010890: 4e 80 00 20 blr # # Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> # [mpe: Define STRICT_MM_TYPECHECKS rather than repeating the condition] # Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> # Link: https://lore.kernel.org/r/c904599f33aaf6bb7ee2836a9ff8368509e0d78d.1631887042.git.christophe.leroy@csgroup.eu # < /opt/cross/kisskb/korg/gcc-11.1.0-nolibc/powerpc64-linux/bin/powerpc64-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-11.1.0-nolibc/powerpc64-linux/bin/powerpc64-linux-ld --version # < git log --format=%s --max-count=1 2974d421aac1374d3269fe4f1fba2068aa33134d # < make -s -j 32 ARCH=powerpc O=/kisskb/build/powerpc-next-rand_powerpc-randconfig+ppc64le_powerpc-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/powerpc64-linux/bin/powerpc64-linux- randconfig # Added to kconfig CONFIG_STANDALONE=y # Added to kconfig CONFIG_BUILD_DOCSRC=n # Added to kconfig CONFIG_MODULE_SIG=n # Added to kconfig CONFIG_CPU_BIG_ENDIAN=n # Added to kconfig CONFIG_CPU_LITTLE_ENDIAN=y # Added to kconfig CONFIG_PPC64=y # Added to kconfig CONFIG_PPC_BOOK3E_64=n # Added to kconfig CONFIG_PPC_BOOK3S_64=y # Added to kconfig CONFIG_PPC_DISABLE_WERROR=y # Added to kconfig CONFIG_SECTION_MISMATCH_WARN_ONLY=y # Added to kconfig CONFIG_PREVENT_FIRMWARE_BUILD=y # Added to kconfig CONFIG_LD_HEAD_STUB_CATCH=y # Added to kconfig CONFIG_TRIM_UNUSED_KSYMS=n # Added to kconfig CONFIG_UBSAN=n # < make -s -j 32 ARCH=powerpc O=/kisskb/build/powerpc-next-rand_powerpc-randconfig+ppc64le_powerpc-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/powerpc64-linux/bin/powerpc64-linux- help # make -s -j 32 ARCH=powerpc O=/kisskb/build/powerpc-next-rand_powerpc-randconfig+ppc64le_powerpc-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/powerpc64-linux/bin/powerpc64-linux- olddefconfig .config:5668:warning: override: reassigning to symbol STANDALONE .config:5673:warning: override: reassigning to symbol PPC64 .config:5681:warning: override: reassigning to symbol UBSAN # make -s -j 32 ARCH=powerpc O=/kisskb/build/powerpc-next-rand_powerpc-randconfig+ppc64le_powerpc-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/powerpc64-linux/bin/powerpc64-linux- /kisskb/src/arch/powerpc/mm/slice.c: In function 'slice_get_unmapped_area': /kisskb/src/arch/powerpc/mm/slice.c:639:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 639 | } | ^ cc1: all warnings being treated as errors make[3]: *** [/kisskb/src/scripts/Makefile.build:277: arch/powerpc/mm/slice.o] Error 1 make[3]: *** Waiting for unfinished jobs.... make[2]: *** [/kisskb/src/scripts/Makefile.build:540: arch/powerpc/mm] Error 2 make[2]: *** Waiting for unfinished jobs.... make[1]: *** [/kisskb/src/Makefile:1868: arch/powerpc] Error 2 make[1]: *** Waiting for unfinished jobs.... /kisskb/src/fs/ext4/move_extent.c: In function 'mext_page_mkuptodate': /kisskb/src/fs/ext4/move_extent.c:227:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 227 | } | ^ cc1: all warnings being treated as errors make[3]: *** [/kisskb/src/scripts/Makefile.build:277: fs/ext4/move_extent.o] Error 1 make[3]: *** Waiting for unfinished jobs.... /kisskb/src/fs/fat/dir.c: In function 'fat_alloc_new_dir': /kisskb/src/fs/fat/dir.c:1195:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 1195 | } | ^ /kisskb/src/fs/fat/fatent.c: In function 'fat_free_clusters': /kisskb/src/fs/fat/fatent.c:633:1: error: the frame size of 1104 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 633 | } | ^ /kisskb/src/fs/fat/fatent.c: In function 'fat_alloc_clusters': /kisskb/src/fs/fat/fatent.c:551:1: error: the frame size of 1168 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 551 | } | ^ cc1: all warnings being treated as errors make[3]: *** [/kisskb/src/scripts/Makefile.build:277: fs/fat/fatent.o] Error 1 make[3]: *** Waiting for unfinished jobs.... /kisskb/src/fs/fat/dir.c: In function 'fat_add_new_entries': /kisskb/src/fs/fat/dir.c:1279:1: error: the frame size of 1088 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 1279 | } | ^ cc1: all warnings being treated as errors make[3]: *** [/kisskb/src/scripts/Makefile.build:277: fs/fat/dir.o] Error 1 make[2]: *** [/kisskb/src/scripts/Makefile.build:540: fs/fat] Error 2 make[2]: *** Waiting for unfinished jobs.... make[2]: *** [/kisskb/src/scripts/Makefile.build:540: fs/ext4] Error 2 /kisskb/src/fs/ntfs3/fsntfs.c: In function 'ntfs_clear_mft_tail': /kisskb/src/fs/ntfs3/fsntfs.c:775:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 775 | } | ^ cc1: all warnings being treated as errors make[3]: *** [/kisskb/src/scripts/Makefile.build:277: fs/ntfs3/fsntfs.o] Error 1 make[3]: *** Waiting for unfinished jobs.... make[2]: *** [/kisskb/src/scripts/Makefile.build:540: fs/ntfs3] Error 2 make[1]: *** [/kisskb/src/Makefile:1868: fs] Error 2 /kisskb/src/drivers/media/common/saa7146/saa7146_hlp.c: In function 'calculate_clipping_registers_rect.constprop.isra': /kisskb/src/drivers/media/common/saa7146/saa7146_hlp.c:465:1: error: the frame size of 1040 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 465 | } | ^ cc1: all warnings being treated as errors make[5]: *** [/kisskb/src/scripts/Makefile.build:277: drivers/media/common/saa7146/saa7146_hlp.o] Error 1 make[5]: *** Waiting for unfinished jobs.... make[4]: *** [/kisskb/src/scripts/Makefile.build:540: drivers/media/common/saa7146] Error 2 make[4]: *** Waiting for unfinished jobs.... make[3]: *** [/kisskb/src/scripts/Makefile.build:540: drivers/media/common] Error 2 make[3]: *** Waiting for unfinished jobs.... make[2]: *** [/kisskb/src/scripts/Makefile.build:540: drivers/media] Error 2 make[2]: *** Waiting for unfinished jobs.... make[1]: *** [/kisskb/src/Makefile:1868: drivers] Error 2 make: *** [Makefile:219: __sub-make] Error 2 Command 'make -s -j 32 ARCH=powerpc O=/kisskb/build/powerpc-next-rand_powerpc-randconfig+ppc64le_powerpc-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/powerpc64-linux/bin/powerpc64-linux- ' returned non-zero exit status 2 # rm -rf /kisskb/build/powerpc-next-rand_powerpc-randconfig+ppc64le_powerpc-gcc11 # Build took: 0:09:57.379531
© Michael Ellerman 2006-2018.