On 8/4/20 1:16 AM, Naresh Kamboju wrote: > On Tue, 4 Aug 2020 at 13:03, Greg Kroah-Hartman > <gregkh@xxxxxxxxxxxxxxxxxxx> wrote: >> >> This is the start of the stable review cycle for the 5.7.13 release. >> There are 121 patches in this series, all will be posted as a response >> to this one. If anyone has any issues with these being applied, please >> let me know. >> >> Responses should be made by Thu, 06 Aug 2020 07:23:45 +0000. >> Anything received after that time might be too late. >> >> The whole patch series can be found in one patch at: >> https://www.kernel.org/pub/linux/kernel/v5.x/stable-review/patch-5.7.13-rc2.gz >> or in the git tree and branch at: >> git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.7.y >> and the diffstat can be found below. >> >> thanks, >> >> greg k-h > > arm64 build broken. > > make -sk KBUILD_BUILD_USER=TuxBuild -C/linux -j16 ARCH=arm64 > CROSS_COMPILE=aarch64-linux-gnu- HOSTCC=gcc CC="sccache > aarch64-linux-gnu-gcc" O=build Image > # > In file included from ../include/linux/smp.h:67, > from ../include/linux/percpu.h:7, > from ../include/linux/prandom.h:12, > from ../include/linux/random.h:118, > from ../arch/arm64/include/asm/pointer_auth.h:6, > from ../arch/arm64/include/asm/processor.h:39, > from ../include/linux/mutex.h:19, > from ../include/linux/kernfs.h:12, > from ../include/linux/sysfs.h:16, > from ../include/linux/kobject.h:20, > from ../include/linux/of.h:17, > from ../include/linux/irqdomain.h:35, > from ../include/linux/acpi.h:13, > from ../include/acpi/apei.h:9, > from ../include/acpi/ghes.h:5, > from ../include/linux/arm_sdei.h:8, > from ../arch/arm64/kernel/asm-offsets.c:10: > ../arch/arm64/include/asm/smp.h:100:29: error: field ‘ptrauth_key’ has > incomplete type > 100 | struct ptrauth_keys_kernel ptrauth_key; > | ^~~~~~~~~~~ > make[2]: *** [../scripts/Makefile.build:100: > arch/arm64/kernel/asm-offsets.s] Error 1 > I didn't see that error after I applied Linus' patch on top of v5.8. On current mainline, I get the following error when trying to build sparc64:allmodconfig: include/linux/seqlock.h: In function 'write_seqcount_begin_nested': arch/sparc/include/asm/percpu_64.h:19:25: error: '__local_per_cpu_offset' undeclared This is caused by by commit 859247d39fb00 ("seqlock: lockdep assert non-preemptibility on seqcount_t write"). When trying to build arm64:defconfig, I get this error: Building arm64:defconfig ... failed -------------- Error log: Error: arch/arm64/boot/dts/intel/socfpga_agilex.dtsi:313.15-16 syntax error This is caused by commit d4ae4dd346cd493 ("arm64: dts: agilex: add nand clocks"). Sigh. Anyway, after reverting those two commits on mainline (v5.8-2483-gc0842fbc1b18), both arm64:defconfig and arm64:allmodconfig build for me (with gcc-9.3.0). Given that, I don't think this compile problem is seen in the upstream kernel. Guenter