Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rmk/linux

Pull ARM fix from Russell King:

- clear stale KASan stack poison when a CPU resumes

* tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rmk/linux:
ARM: 9381/1: kasan: clear stale stack poison

+4
+4
arch/arm/kernel/sleep.S
··· 127 127 instr_sync 128 128 #endif 129 129 bl cpu_init @ restore the und/abt/irq banked regs 130 + #if defined(CONFIG_KASAN) && defined(CONFIG_KASAN_STACK) 131 + mov r0, sp 132 + bl kasan_unpoison_task_stack_below 133 + #endif 130 134 mov r0, #0 @ return zero on success 131 135 ldmfd sp!, {r4 - r11, pc} 132 136 ENDPROC(cpu_resume_after_mmu)