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 'hardening-v6.1-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux

Pull kernel hardening fix from Kees Cook:

- Fix !SMP placement of '.data..decrypted' section (Nathan Chancellor)

* tag 'hardening-v6.1-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
vmlinux.lds.h: Fix placement of '.data..decrypted' section

+1 -1
+1 -1
include/asm-generic/vmlinux.lds.h
··· 347 347 #define DATA_DATA \ 348 348 *(.xiptext) \ 349 349 *(DATA_MAIN) \ 350 + *(.data..decrypted) \ 350 351 *(.ref.data) \ 351 352 *(.data..shared_aligned) /* percpu related */ \ 352 353 MEM_KEEP(init.data*) \ ··· 996 995 #ifdef CONFIG_AMD_MEM_ENCRYPT 997 996 #define PERCPU_DECRYPTED_SECTION \ 998 997 . = ALIGN(PAGE_SIZE); \ 999 - *(.data..decrypted) \ 1000 998 *(.data..percpu..decrypted) \ 1001 999 . = ALIGN(PAGE_SIZE); 1002 1000 #else