I get a couple errors on x64 with BMQ: kernel/sched/pelt.c: In function ‘update_irq_load_avg’: kernel/sched/pelt.c:445:12: error: implicit declaration of function ‘cap_scale’ [-Werror=implicit-function-declaration] 445 | running = cap_scale(running, arch_scale_freq_capacity(cpu_of(rq))); [^~[point to "cap_scale"] kernel/sched/pelt.c:470:3: error: implicit declaration of function ‘trace_pelt_irq_tp’ [-Werror=implicit-function-declaration] 470 | trace_pelt_irq_tp(rq); [^~points to "trace_pelt_irq_tp"]
Thank you very much.
ReplyDeleteI get a couple errors on x64 with BMQ:
ReplyDeletekernel/sched/pelt.c: In function ‘update_irq_load_avg’:
kernel/sched/pelt.c:445:12: error: implicit declaration of function ‘cap_scale’ [-Werror=implicit-function-declaration]
445 | running = cap_scale(running, arch_scale_freq_capacity(cpu_of(rq)));
[^~[point to "cap_scale"]
kernel/sched/pelt.c:470:3: error: implicit declaration of function ‘trace_pelt_irq_tp’ [-Werror=implicit-function-declaration]
470 | trace_pelt_irq_tp(rq);
[^~points to "trace_pelt_irq_tp"]
x86-UP BMQ built fine though ;-)
DeleteIt has been fixed at https://gitlab.com/alfredchen/linux-prjc/-/issues/16
DeleteAnd fixed with:
Deletehttps://gitlab.com/alfredchen/linux-prjc/-/commit/12a53f3186.patch
;-) Thanks Alfred!