diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-03-21 11:35:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-03-21 11:35:10 -0700 |
commit | 88f30ac22733f8cd518e42702042cb1e1c2c08a7 (patch) | |
tree | e5991d76aca6cdcd3e870336cec544e39ee8abd3 /arch | |
parent | 35cbdaf75394e1061a9bd64b4698915c6db58512 (diff) | |
parent | 5f117033243488a0080f837540c27999aa31870e (diff) | |
download | linux-rpi-88f30ac22733f8cd518e42702042cb1e1c2c08a7.tar.gz linux-rpi-88f30ac22733f8cd518e42702042cb1e1c2c08a7.tar.bz2 linux-rpi-88f30ac22733f8cd518e42702042cb1e1c2c08a7.zip |
Merge tag 'x86_sev_for_v5.18_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 SEV fix from Borislav Petkov:
- Add a missing function section annotation
* tag 'x86_sev_for_v5.18_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/head64: Add missing __head annotation to sme_postprocess_startup()
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/head64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index de563db9cdcd..4f5ecbbaae77 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c @@ -126,7 +126,7 @@ static bool __head check_la57_support(unsigned long physaddr) } #endif -static unsigned long sme_postprocess_startup(struct boot_params *bp, pmdval_t *pmd) +static unsigned long __head sme_postprocess_startup(struct boot_params *bp, pmdval_t *pmd) { unsigned long vaddr, vaddr_end; int i; |