# git rev-parse -q --verify a1833a54033e4ca760ad58fa2a6469ad59b3fa1a^{commit} a1833a54033e4ca760ad58fa2a6469ad59b3fa1a already have revision, skipping fetch # git checkout -q -f -B kisskb a1833a54033e4ca760ad58fa2a6469ad59b3fa1a # git clean -qxdf # < git log -1 # commit a1833a54033e4ca760ad58fa2a6469ad59b3fa1a # Author: Linus Torvalds # Date: Sun Jul 25 11:06:37 2021 -0700 # # smpboot: fix duplicate and misplaced inlining directive # # gcc doesn't care, but clang quite reasonably pointed out that the recent # commit e9ba16e68cce ("smpboot: Mark idle_init() as __always_inlined to # work around aggressive compiler un-inlining") did some really odd # things: # # kernel/smpboot.c:50:20: warning: duplicate 'inline' declaration specifier [-Wduplicate-decl-specifier] # static inline void __always_inline idle_init(unsigned int cpu) # ^ # # which not only has that duplicate inlining specifier, but the new # __always_inline was put in the wrong place of the function definition. # # We put the storage class specifiers (ie things like "static" and # "extern") first, and the type information after that. And while the # compiler may not care, we put the inline specifier before the types. # # So it should be just # # static __always_inline void idle_init(unsigned int cpu) # # instead. # # Cc: Ingo Molnar # Cc: Thomas Gleixner # Signed-off-by: Linus Torvalds # < /opt/cross/kisskb/korg/gcc-4.9.4-nolibc/mips-linux/bin/mips-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-4.9.4-nolibc/mips-linux/bin/mips-linux-ld --version # < git log --format=%s --max-count=1 a1833a54033e4ca760ad58fa2a6469ad59b3fa1a # < make -s -j 32 ARCH=mips O=/kisskb/build/linus_malta_defconfig_mips-gcc4.9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-4.9.4-nolibc/mips-linux/bin/mips-linux- malta_defconfig # < make -s -j 32 ARCH=mips O=/kisskb/build/linus_malta_defconfig_mips-gcc4.9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-4.9.4-nolibc/mips-linux/bin/mips-linux- help # make -s -j 32 ARCH=mips O=/kisskb/build/linus_malta_defconfig_mips-gcc4.9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-4.9.4-nolibc/mips-linux/bin/mips-linux- olddefconfig # make -s -j 32 ARCH=mips O=/kisskb/build/linus_malta_defconfig_mips-gcc4.9 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-4.9.4-nolibc/mips-linux/bin/mips-linux- /kisskb/src/net/sched/sch_frag.c: In function 'sch_fragment': /kisskb/src/net/sched/sch_frag.c:93:10: warning: missing braces around initializer [-Wmissing-braces] struct rtable sch_frag_rt = { 0 }; ^ /kisskb/src/net/sched/sch_frag.c:93:10: warning: (near initialization for 'sch_frag_rt.dst') [-Wmissing-braces] Completed OK # rm -rf /kisskb/build/linus_malta_defconfig_mips-gcc4.9 # Build took: 0:02:41.700157