Commit 77fded5
west.yml: update zephyr to 217a5ac0ca46
Total of 1024 commits.
Changes include:
19fa644e348c arch: xtensa: semihost: Account for NULL terminator in path
length
a53ab458d532 arch: xtensa: semihost: Add QEMU target support
9a8657193a2e arch: xtensa: semihost: Add simulator support
03263c5213a0 kernel: heap: add BLOCKING trace and fix EXIT ordering in
k_heap_realloc
2f58de062669 kernel: stack: move BLOCKING trace to after K_NO_WAIT check
in k_stack_pop
8dbe9770901a kernel: mailbox: emit tracing EXIT on async-send
matched-receiver path
d01ea12e787e kernel: queue: remove spurious BLOCKING trace in
queue_insert
5ca3c912b29b kernel: userspace: Add k_object_access_revoke_others
24b75db466f6 llext: add CONFIG_LLEXT_CUSTOM_HEAP_PLACEMENT
edcfe755ae87 logging: fix unaligned access in z_log_msg_enqueue
33d43d093371 xtensa: ptables: fix dangling memory domains
4d5f470290ae soc: arch: select SCHED_IPI_SUPPORTED if SMP
243012c33c97 kernel: move thread_entry from lib/os to kernel
c60e0e943605 kernel: move userspace sem into kernel/sys
b572cb23fc8b kernel: userspace: move mutex/user_work to userspace
85ca9bb992e2 kernel: move smp code into smp/
974dbbf2c0f6 kernel: move userspace kconfigs into own file
d8a1960c8bae kernel: reorg mem domain kconfig
eb294b7a1eb9 kernel: move userspace code to own folder
bac294c90f4c xtensa: remove mem_manage.c
b72e6dcdba50 soc: intel_adsp/ace: add custom memory range check code
d6d419264421 include: drivers: dai: Use DEVICE_API_GET
eeb0a701f1e9 doc: dmic: improve main DMIC documentation page
bd556f218bf8 scripts: runners: xtensa: ignore SIGINT while GDB is
running
e0c2585bebf1 include: drivers: i2s: Use DEVICE_API_GET
Zephyr kernel Kconfig was restructured: SCHED_CPU_MASK and
SCHED_CPU_MASK_PIN_ONLY were moved from kernel/Kconfig into
kernel/smp/Kconfig inside an "if SMP" block (commits by Anas Nashif
reorganizing kernel sources into kernel/smp/ and kernel/userspace/
subdirectories). This makes CONFIG_SCHED_CPU_MASK unavailable on
non-SMP platforms (IMX, native_sim/fuzzers, LP64-WIP), causing
k_thread_cpu_pin(), k_thread_cpu_mask_clear() and
k_thread_cpu_mask_enable() to be undeclared.
Fix: guard all k_thread_cpu_pin/k_thread_cpu_mask_* call sites with
CONFIG_SCHED_CPU_MASK ifdef. On single-core platforms thread pinning
is a no-op.
Affected files:
src/ipc/ipc-common.c (k_thread_cpu_pin)
src/schedule/zephyr_twb_schedule.c (k_thread_cpu_pin)
src/schedule/zephyr_dp_schedule_thread.c (k_thread_cpu_pin)
src/schedule/zephyr_dp_schedule_application.c (k_thread_cpu_pin)
src/debug/debug_stream/debug_stream_thread_info.c (k_thread_cpu_pin)
src/audio/module_adapter/library/userspace_proxy.c (k_thread_cpu_pin)
src/schedule/zephyr_domain.c (k_thread_cpu_mask_clear/enable)
src/schedule/zephyr_dma_domain.c (k_thread_cpu_mask_clear/enable)
zephyr/edf_schedule.c (k_thread_cpu_mask_clear/enable)
Signed-off-by: Tomasz Leman <tomasz.m.leman@intel.com>1 parent 0a87dc3 commit 77fded5
10 files changed
Lines changed: 21 additions & 1 deletion
File tree
- src
- audio/module_adapter/library
- debug/debug_stream
- ipc
- schedule
- zephyr
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
220 | 220 | | |
221 | 221 | | |
222 | 222 | | |
| 223 | + | |
223 | 224 | | |
224 | 225 | | |
225 | 226 | | |
226 | 227 | | |
227 | 228 | | |
228 | 229 | | |
| 230 | + | |
229 | 231 | | |
230 | 232 | | |
231 | 233 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
367 | 367 | | |
368 | 368 | | |
369 | 369 | | |
| 370 | + | |
370 | 371 | | |
371 | 372 | | |
372 | 373 | | |
373 | 374 | | |
374 | 375 | | |
375 | 376 | | |
| 377 | + | |
376 | 378 | | |
377 | 379 | | |
378 | 380 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
337 | 337 | | |
338 | 338 | | |
339 | 339 | | |
| 340 | + | |
340 | 341 | | |
| 342 | + | |
341 | 343 | | |
342 | 344 | | |
343 | 345 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
461 | 461 | | |
462 | 462 | | |
463 | 463 | | |
| 464 | + | |
464 | 465 | | |
465 | 466 | | |
| 467 | + | |
466 | 468 | | |
467 | 469 | | |
468 | 470 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
216 | 216 | | |
217 | 217 | | |
218 | 218 | | |
| 219 | + | |
219 | 220 | | |
220 | 221 | | |
| 222 | + | |
221 | 223 | | |
222 | 224 | | |
223 | 225 | | |
| |||
330 | 332 | | |
331 | 333 | | |
332 | 334 | | |
| 335 | + | |
333 | 336 | | |
334 | 337 | | |
| 338 | + | |
335 | 339 | | |
336 | 340 | | |
337 | 341 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
493 | 493 | | |
494 | 494 | | |
495 | 495 | | |
| 496 | + | |
496 | 497 | | |
497 | 498 | | |
498 | 499 | | |
499 | 500 | | |
500 | 501 | | |
501 | 502 | | |
| 503 | + | |
502 | 504 | | |
503 | 505 | | |
504 | 506 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
287 | 287 | | |
288 | 288 | | |
289 | 289 | | |
| 290 | + | |
290 | 291 | | |
291 | 292 | | |
292 | 293 | | |
293 | 294 | | |
294 | 295 | | |
295 | 296 | | |
| 297 | + | |
296 | 298 | | |
297 | 299 | | |
298 | 300 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
441 | 441 | | |
442 | 442 | | |
443 | 443 | | |
| 444 | + | |
444 | 445 | | |
445 | 446 | | |
446 | 447 | | |
447 | 448 | | |
448 | 449 | | |
449 | 450 | | |
450 | 451 | | |
| 452 | + | |
451 | 453 | | |
452 | 454 | | |
453 | 455 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | | - | |
| 46 | + | |
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
| 116 | + | |
116 | 117 | | |
117 | 118 | | |
| 119 | + | |
118 | 120 | | |
119 | 121 | | |
120 | 122 | | |
| |||
0 commit comments