diff options
| author | Linus Torvalds <[email protected]> | 2016-10-28 11:28:14 -0700 | 
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2016-10-28 11:28:14 -0700 | 
| commit | c38c04c630a5fb626e93b7530671a67feab9596c (patch) | |
| tree | 71785da6c999336560c4f1482afc13d20acb5549 /arch/x86/kernel/cpu/microcode/amd.c | |
| parent | a8006bd915095c40098bfcb684cc2bdfb414dc0d (diff) | |
| parent | 1c27f646b18fb56308dff82784ca61951bad0b48 (diff) | |
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fixes from Ingo Molnar:
 "Misc fixes: three build fixes, an unwinder fix and a microcode loader
  fix"
* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  x86/microcode/AMD: Fix more fallout from CONFIG_RANDOMIZE_MEMORY=y
  x86: Fix export for mcount and __fentry__
  x86/quirks: Hide maybe-uninitialized warning
  x86/build: Fix build with older GCC versions
  x86/unwind: Fix empty stack dereference in guess unwinder
Diffstat (limited to 'arch/x86/kernel/cpu/microcode/amd.c')
| -rw-r--r-- | arch/x86/kernel/cpu/microcode/amd.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c index 620ab06bcf45..017bda12caae 100644 --- a/arch/x86/kernel/cpu/microcode/amd.c +++ b/arch/x86/kernel/cpu/microcode/amd.c @@ -429,7 +429,7 @@ int __init save_microcode_in_initrd_amd(void)  	 * We need the physical address of the container for both bitness since  	 * boot_params.hdr.ramdisk_image is a physical address.  	 */ -	cont    = __pa(container); +	cont    = __pa_nodebug(container);  	cont_va = container;  #endif |