Buildresult: powerpc-fixes/mpc85xx_defconfig+KVM/powerpc-gcc9 built on Feb 3 2021, 11:49
kisskb
Revisions
|
Branches
|
Compilers
|
Configs
|
Build Results
|
Build Failures
|
Status:
OK
Date/Time:
Feb 3 2021, 11:49
Duration:
0:04:15.429770
Builder:
ka2
Revision:
powerpc/64/signal: Fix regression in __kernel_sigtramp_rt64() semantics (
24321ac668e452a4942598533d267805f291fdc9)
Target:
powerpc-fixes/mpc85xx_defconfig+KVM/powerpc-gcc9
Branch:
powerpc-fixes
Compiler:
powerpc-gcc9
(powerpc64-linux-gcc (GCC) 9.2.0 / GNU ld (GNU Binutils) 2.32)
Config:
mpc85xx_defconfig+KVM
(
download
)
Log:
Download original
Possible warnings (5)
.config:4185:warning: override: reassigning to symbol PPC_E500MC .config:4186:warning: override: reassigning to symbol VIRTUALIZATION include/linux/err.h:22:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] arch/powerpc/boot/dts/fsl/mpc8541cds.dts:330.3-21: Warning (pci_device_bus_num): /pci@e0008000/i8259@19000:bus-range: PCI bus number 1 out of range, expected (0 - 0) arch/powerpc/boot/dts/fsl/mpc8555cds.dts:330.3-21: Warning (pci_device_bus_num): /pci@e0008000/i8259@19000:bus-range: PCI bus number 1 out of range, expected (0 - 0)
Full Log
# git rev-parse -q --verify 24321ac668e452a4942598533d267805f291fdc9^{commit} 24321ac668e452a4942598533d267805f291fdc9 already have revision, skipping fetch # git checkout -q -f -B kisskb 24321ac668e452a4942598533d267805f291fdc9 # git clean -qxdf # < git log -1 # commit 24321ac668e452a4942598533d267805f291fdc9 # Author: Raoni Fassina Firmino <raoni@linux.ibm.com> # Date: Mon Feb 1 17:05:05 2021 -0300 # # powerpc/64/signal: Fix regression in __kernel_sigtramp_rt64() semantics # # Commit 0138ba5783ae ("powerpc/64/signal: Balance return predictor # stack in signal trampoline") changed __kernel_sigtramp_rt64() VDSO and # trampoline code, and introduced a regression in the way glibc's # backtrace()[1] detects the signal-handler stack frame. Apart from the # practical implications, __kernel_sigtramp_rt64() was a VDSO function # with the semantics that it is a function you can call from userspace # to end a signal handling. Now this semantics are no longer valid. # # I believe the aforementioned change affects all releases since 5.9. # # This patch tries to fix both the semantics and practical aspect of # __kernel_sigtramp_rt64() returning it to the previous code, whilst # keeping the intended behaviour of 0138ba5783ae by adding a new symbol # to serve as the jump target from the kernel to the trampoline. Now the # trampoline has two parts, a new entry point and the old return point. # # [1] https://lists.ozlabs.org/pipermail/linuxppc-dev/2021-January/223194.html # # Fixes: 0138ba5783ae ("powerpc/64/signal: Balance return predictor stack in signal trampoline") # Cc: stable@vger.kernel.org # v5.9+ # Signed-off-by: Raoni Fassina Firmino <raoni@linux.ibm.com> # Acked-by: Nicholas Piggin <npiggin@gmail.com> # [mpe: Minor tweaks to change log formatting, add stable tag] # Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> # Link: https://lore.kernel.org/r/20210201200505.iz46ubcizipnkcxe@work-tp # < /opt/cross/kisskb/korg/gcc-9.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-9.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux-ld --version # < git log --format=%s --max-count=1 24321ac668e452a4942598533d267805f291fdc9 # < make -s -j 8 ARCH=powerpc O=/kisskb/build/powerpc-fixes_mpc85xx_defconfig+KVM_powerpc-gcc9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-9.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- mpc85xx_defconfig # Added to kconfig CONFIG_PPC_E500MC=y # Added to kconfig CONFIG_VIRTUALIZATION=y # Added to kconfig CONFIG_KVM_E500MC=y # Added to kconfig # < make -s -j 8 ARCH=powerpc O=/kisskb/build/powerpc-fixes_mpc85xx_defconfig+KVM_powerpc-gcc9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-9.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- help # make -s -j 8 ARCH=powerpc O=/kisskb/build/powerpc-fixes_mpc85xx_defconfig+KVM_powerpc-gcc9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-9.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- olddefconfig .config:4185:warning: override: reassigning to symbol PPC_E500MC .config:4186:warning: override: reassigning to symbol VIRTUALIZATION # make -s -j 8 ARCH=powerpc O=/kisskb/build/powerpc-fixes_mpc85xx_defconfig+KVM_powerpc-gcc9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-9.2.0-nolibc/powerpc64-linux/bin/powerpc64-linux- In file included from /kisskb/src/include/linux/kernel.h:10, from /kisskb/src/include/linux/list.h:9, from /kisskb/src/include/linux/module.h:12, from /kisskb/src/drivers/net/ethernet/freescale/fs_enet/mac-scc.c:15: /kisskb/src/drivers/net/ethernet/freescale/fs_enet/mac-scc.c: In function 'allocate_bd': /kisskb/src/include/linux/err.h:22:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 22 | #define IS_ERR_VALUE(x) unlikely((unsigned long)(void *)(x) >= (unsigned long)-MAX_ERRNO) | ^ /kisskb/src/include/linux/compiler.h:78:42: note: in definition of macro 'unlikely' 78 | # define unlikely(x) __builtin_expect(!!(x), 0) | ^ /kisskb/src/drivers/net/ethernet/freescale/fs_enet/mac-scc.c:139:6: note: in expansion of macro 'IS_ERR_VALUE' 139 | if (IS_ERR_VALUE(fep->ring_mem_addr)) | ^~~~~~~~~~~~ /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8541cds.dts:330.3-21: Warning (pci_device_bus_num): /pci@e0008000/i8259@19000:bus-range: PCI bus number 1 out of range, expected (0 - 0) /kisskb/src/arch/powerpc/boot/dts/fsl/mpc8555cds.dts:330.3-21: Warning (pci_device_bus_num): /pci@e0008000/i8259@19000:bus-range: PCI bus number 1 out of range, expected (0 - 0) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf2a578) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:42 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7025741 Bytes = 6861.08 KiB = 6.70 MiB Load Address: 00000000 Entry Point: 00000000 INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:43 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7058298 Bytes = 6892.87 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 0100031c Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:43 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7059980 Bytes = 6894.51 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:43 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7058283 Bytes = 6892.85 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:43 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7058287 Bytes = 6892.86 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:43 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7060258 Bytes = 6894.78 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:43 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7060183 Bytes = 6894.71 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:43 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7059731 Bytes = 6894.27 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) INFO: Uncompressed kernel (size 0xf3aca4) overlaps the address of the wrapper(0x400000) INFO: Fixing the link_address of wrapper to (0x1000000) Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:47 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7060237 Bytes = 6894.76 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:48 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7059901 Bytes = 6894.43 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:48 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7060176 Bytes = 6894.70 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 0100031c Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:48 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7058839 Bytes = 6893.40 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:49 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7060177 Bytes = 6894.70 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 0100031c Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:49 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7058960 Bytes = 6893.52 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 0100031c Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:49 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7059465 Bytes = 6894.01 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 0100031c Image Name: Linux-5.11.0-rc2-80904-g24321ac6 Created: Wed Feb 3 11:53:49 2021 Image Type: PowerPC Linux Kernel Image (gzip compressed) Data Size: 7059426 Bytes = 6893.97 KiB = 6.73 MiB Load Address: 01000000 Entry Point: 010002cc Completed OK # rm -rf /kisskb/build/powerpc-fixes_mpc85xx_defconfig+KVM_powerpc-gcc9 # Build took: 0:04:15.429770
© Michael Ellerman 2006-2018.