Buildresult: linus/bigsur_defconfig/mips-gcc13 built on Nov 21, 07:58
kisskb
Revisions
|
Branches
|
Compilers
|
Configs
|
Build Results
|
Build Failures
|
Status:
OK
Date/Time:
Nov 21, 07:58
Duration:
0:01:30.645630
Builder:
alpine2
Revision:
Merge tag 'sched_ext-for-6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext (
8f7c8b88bda4988f44e595a760438febf51c92c8)
Target:
linus/bigsur_defconfig/mips-gcc13
Branch:
linus
Compiler:
mips-gcc13
(mips-linux-gcc (GCC) 13.1.0 / GNU ld (GNU Binutils) 2.40)
Config:
bigsur_defconfig
(
download
)
Log:
Download original
Possible warnings (15)
arch/mips/sibyte/bcm1480/time.c:10:13: warning: no previous prototype for 'plat_time_init' [-Wmissing-prototypes] arch/mips/sibyte/bcm1480/setup.c:104:13: warning: no previous prototype for 'bcm1480_setup' [-Wmissing-prototypes] arch/mips/sibyte/bcm1480/irq.c:200:13: warning: no previous prototype for 'init_bcm1480_irqs' [-Wmissing-prototypes] arch/mips/sibyte/swarm/setup.c:59:5: warning: no previous prototype for 'swarm_be_handler' [-Wmissing-prototypes] arch/mips/sibyte/bcm1480/smp.c:49:6: warning: no previous prototype for 'bcm1480_smp_init' [-Wmissing-prototypes] arch/mips/sibyte/bcm1480/smp.c:158:6: warning: no previous prototype for 'bcm1480_mailbox_interrupt' [-Wmissing-prototypes] arch/mips/sibyte/swarm/rtc_xicor1241.c:108:5: warning: no previous prototype for 'xicor_set_time' [-Wmissing-prototypes] arch/mips/sibyte/swarm/rtc_xicor1241.c:167:10: warning: no previous prototype for 'xicor_get_time' [-Wmissing-prototypes] arch/mips/sibyte/swarm/rtc_xicor1241.c:203:5: warning: no previous prototype for 'xicor_probe' [-Wmissing-prototypes] arch/mips/sibyte/swarm/rtc_m41t81.c:139:5: warning: no previous prototype for 'm41t81_set_time' [-Wmissing-prototypes] arch/mips/sibyte/swarm/rtc_m41t81.c:186:10: warning: no previous prototype for 'm41t81_get_time' [-Wmissing-prototypes] arch/mips/sibyte/swarm/rtc_m41t81.c:219:5: warning: no previous prototype for 'm41t81_probe' [-Wmissing-prototypes] arch/mips/mm/cerr-sb1.c:165:17: warning: no previous prototype for 'sb1_cache_error' [-Wmissing-prototypes] arch/mips/kernel/cevt-bcm1480.c:96:6: warning: no previous prototype for 'sb1480_clockevent_init' [-Wmissing-prototypes] arch/mips/kernel/csrc-bcm1480.c:37:13: warning: no previous prototype for 'sb1480_clocksource_init' [-Wmissing-prototypes]
Full Log
# git rev-parse -q --verify 8f7c8b88bda4988f44e595a760438febf51c92c8^{commit} 8f7c8b88bda4988f44e595a760438febf51c92c8 already have revision, skipping fetch # git checkout -q -f -B kisskb 8f7c8b88bda4988f44e595a760438febf51c92c8 # git clean -qxdf # < git log -1 # commit 8f7c8b88bda4988f44e595a760438febf51c92c8 # Merge: 7586d5276515 6b8950ef993b # Author: Linus Torvalds <torvalds@linux-foundation.org> # Date: Wed Nov 20 10:08:00 2024 -0800 # # Merge tag 'sched_ext-for-6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext # # Pull sched_ext updates from Tejun Heo: # # - Improve the default select_cpu() implementation making it topology # aware and handle WAKE_SYNC better. # # - set_arg_maybe_null() was used to inform the verifier which ops args # could be NULL in a rather hackish way. Use the new __nullable CFI # stub tags instead. # # - On Sapphire Rapids multi-socket systems, a BPF scheduler, by # hammering on the same queue across sockets, could live-lock the # system to the point where the system couldn't make reasonable forward # progress. # # This could lead to soft-lockup triggered resets or stalling out # bypass mode switch and thus BPF scheduler ejection for tens of # minutes if not hours. After trying a number of mitigations, the # following set worked reliably: # # - Injecting artificial cpu_relax() loops in two places while # sched_ext is trying to turn on the bypass mode. # # - Triggering scheduler ejection when soft-lockup detection is # imminent (a quarter of threshold left). # # While not the prettiest, the impact both in terms of code complexity # and overhead is minimal. # # - A common complaint on the API is the overuse of the word "dispatch" # and the confusion around "consume". This is due to how the dispatch # queues became more generic over time. Rename the affected kfuncs for # clarity. Thanks to BPF's compatibility features, this change can be # made in a way that's both forward and backward compatible. The # compatibility code will be dropped in a few releases. # # - Other misc changes # # * tag 'sched_ext-for-6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext: (21 commits) # sched_ext: Replace scx_next_task_picked() with switch_class() in comment # sched_ext: Rename scx_bpf_dispatch[_vtime]_from_dsq*() -> scx_bpf_dsq_move[_vtime]*() # sched_ext: Rename scx_bpf_consume() to scx_bpf_dsq_move_to_local() # sched_ext: Rename scx_bpf_dispatch[_vtime]() to scx_bpf_dsq_insert[_vtime]() # sched_ext: scx_bpf_dispatch_from_dsq_set_*() are allowed from unlocked context # sched_ext: add a missing rcu_read_lock/unlock pair at scx_select_cpu_dfl() # sched_ext: Clarify sched_ext_ops table for userland scheduler # sched_ext: Enable the ops breather and eject BPF scheduler on softlockup # sched_ext: Avoid live-locking bypass mode switching # sched_ext: Fix incorrect use of bitwise AND # sched_ext: Do not enable LLC/NUMA optimizations when domains overlap # sched_ext: Introduce NUMA awareness to the default idle selection policy # sched_ext: Replace set_arg_maybe_null() with __nullable CFI stub tags # sched_ext: Rename CFI stubs to names that are recognized by BPF # sched_ext: Introduce LLC awareness to the default idle selection policy # sched_ext: Clarify ops.select_cpu() for single-CPU tasks # sched_ext: improve WAKE_SYNC behavior for default idle CPU selection # sched_ext: Use btf_ids to resolve task_struct # sched/ext: Use tg_cgroup() to elieminate duplicate code # sched/ext: Fix unmatch trailing comment of CONFIG_EXT_GROUP_SCHED # ... # < /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/mips-linux/bin/mips-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/mips-linux/bin/mips-linux-ld --version # < git log --format=%s --max-count=1 8f7c8b88bda4988f44e595a760438febf51c92c8 # make -s -j 160 ARCH=mips O=/kisskb/build/linus_bigsur_defconfig_mips-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/mips-linux/bin/mips-linux- bigsur_defconfig # < make -s -j 160 ARCH=mips O=/kisskb/build/linus_bigsur_defconfig_mips-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/mips-linux/bin/mips-linux- help # make -s -j 160 ARCH=mips O=/kisskb/build/linus_bigsur_defconfig_mips-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/mips-linux/bin/mips-linux- olddefconfig # make -s -j 160 ARCH=mips O=/kisskb/build/linus_bigsur_defconfig_mips-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/mips-linux/bin/mips-linux- /kisskb/src/arch/mips/sibyte/bcm1480/time.c:10:13: warning: no previous prototype for 'plat_time_init' [-Wmissing-prototypes] 10 | void __init plat_time_init(void) | ^~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/bcm1480/setup.c:104:13: warning: no previous prototype for 'bcm1480_setup' [-Wmissing-prototypes] 104 | void __init bcm1480_setup(void) | ^~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/bcm1480/irq.c:200:13: warning: no previous prototype for 'init_bcm1480_irqs' [-Wmissing-prototypes] 200 | void __init init_bcm1480_irqs(void) | ^~~~~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/swarm/setup.c:59:5: warning: no previous prototype for 'swarm_be_handler' [-Wmissing-prototypes] 59 | int swarm_be_handler(struct pt_regs *regs, int is_fixup) | ^~~~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/bcm1480/smp.c:49:6: warning: no previous prototype for 'bcm1480_smp_init' [-Wmissing-prototypes] 49 | void bcm1480_smp_init(void) | ^~~~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/bcm1480/smp.c:158:6: warning: no previous prototype for 'bcm1480_mailbox_interrupt' [-Wmissing-prototypes] 158 | void bcm1480_mailbox_interrupt(void) | ^~~~~~~~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/swarm/rtc_xicor1241.c:108:5: warning: no previous prototype for 'xicor_set_time' [-Wmissing-prototypes] 108 | int xicor_set_time(time64_t t) | ^~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/swarm/rtc_xicor1241.c:167:10: warning: no previous prototype for 'xicor_get_time' [-Wmissing-prototypes] 167 | time64_t xicor_get_time(void) | ^~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/swarm/rtc_xicor1241.c:203:5: warning: no previous prototype for 'xicor_probe' [-Wmissing-prototypes] 203 | int xicor_probe(void) | ^~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/swarm/rtc_m41t81.c:139:5: warning: no previous prototype for 'm41t81_set_time' [-Wmissing-prototypes] 139 | int m41t81_set_time(time64_t t) | ^~~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/swarm/rtc_m41t81.c:186:10: warning: no previous prototype for 'm41t81_get_time' [-Wmissing-prototypes] 186 | time64_t m41t81_get_time(void) | ^~~~~~~~~~~~~~~ /kisskb/src/arch/mips/sibyte/swarm/rtc_m41t81.c:219:5: warning: no previous prototype for 'm41t81_probe' [-Wmissing-prototypes] 219 | int m41t81_probe(void) | ^~~~~~~~~~~~ /kisskb/src/arch/mips/mm/cerr-sb1.c:165:17: warning: no previous prototype for 'sb1_cache_error' [-Wmissing-prototypes] 165 | asmlinkage void sb1_cache_error(void) | ^~~~~~~~~~~~~~~ /kisskb/src/arch/mips/kernel/cevt-bcm1480.c:96:6: warning: no previous prototype for 'sb1480_clockevent_init' [-Wmissing-prototypes] 96 | void sb1480_clockevent_init(void) | ^~~~~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/mips/kernel/csrc-bcm1480.c:37:13: warning: no previous prototype for 'sb1480_clocksource_init' [-Wmissing-prototypes] 37 | void __init sb1480_clocksource_init(void) | ^~~~~~~~~~~~~~~~~~~~~~~ Completed OK # rm -rf /kisskb/build/linus_bigsur_defconfig_mips-gcc13 # Build took: 0:01:30.645630
© Michael Ellerman 2006-2018.