This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from dd1c3ed76f26 Merge tag 'xtensa-20190307' of git://github.com/jcmvbkbc/l [...] new ac09c5f43cf6 x86/boot: Build the command line parsing code unconditionally new de50ce20cd05 x86/boot: Copy kstrtoull() to boot/string.c new 3c98e71b42a7 x86/boot: Add "acpi_rsdp=" early parsing new 33f0df8d843d x86/boot: Search for RSDP in the EFI tables new 93a209aaaad4 x86/boot: Search for RSDP in memory new 3a63f70bf4c3 x86/boot: Early parse RSDP and save it in boot_params new 02a3e3cdb7f1 x86/boot: Parse SRAT table and count immovable memory regions new 690eaa532057 x86/boot/KASLR: Limit KASLR to extract the kernel in immov [...] new 82f9ed3a9330 x86/boot: Fix cmdline_find_option() prototype visibility new 82df8261c6a9 x86/boot: Fix randconfig build error due to MEMORY_HOTREMOVE new ccec81e4251f x86/kexec: Fill in acpi_rsdp_addr from the first kernel new f9d230e893e8 x86/boot: Correct RSDP parsing with 32-bit EFI new 6f913de3231e x86/boot/compressed/64: Do not read legacy ROM on EFI system new 37d18565e4c2 Merge branch 'x86-boot-for-linus' of git://git.kernel.org/ [...] new d071ae09a4a1 x86/build: Mark per-CPU symbols as absolute explicitly for LLD new 927185c124d6 x86/build: Specify elf_i386 linker emulation explicitly fo [...] new e6d7bc0bdf41 x86/build: Use the single-argument OUTPUT_FORMAT() linker [...] new ce02ef06fcf7 x86, retpolines: Raise limit for generating indirect calls [...] new f14b5f05cde1 Merge branch 'x86-build-for-linus' of git://git.kernel.org [...] new 345dca4ca7e6 x86/e820: Replace kmalloc() + memcpy() with kmemdup() new 2bc217c61685 x86/platform/UV: Replace kmalloc() and memset() with k[cz] [...] new 89da3446294a x86/insn-eval: Mark expected switch-case fall-through new 6fcebf1302b4 x86/kernel: Mark expected switch-case fall-throughs new fc5014cc5528 x86/asm-prototypes: Remove duplicate include <asm/page.h> new 2b0fc3742bc7 x86/events: Mark expected switch-case fall-throughs new 691b9ab6c967 x86/mm/tlb: Remove unused cpu variable new 439fbdf6a202 x86/trap: Remove useless declaration new 0a278662f531 x86/boot: Save several bytes in decompressor new fab940755d1d x86/hw_breakpoints, kprobes: Remove kprobes ifdeffery new 5a064d398fbe x86/asm/suspend: Drop ENTRY from local data new 8ad382dd11eb x86/resctrl: Remove duplicate MSR_MISC_FEATURE_CONTROL definition new 82434d23f36d x86/boot/compressed/64: Explain paging_prepare()'s return value new c81cd5c08d67 x86/mtrr: Remove unused variable new ba2ba356b2c8 x86/cpu_entry_area: Move percpu_setup_debug_store() to __i [...] new 653a561bb2fd x86/fpu: Move init_xstate_size() to __init section new 8e8a3cea7ea5 x86/mm/dump_pagetables: Remove the unused prev_pud variable new f91fecc09e49 x86/smpboot: Remove unused phys_id variable new 2e7614c0736d x86/uaccess: Remove unused __addr_ok() macro new bcd49c3dd172 Merge branch 'x86-cleanups-for-linus' of git://git.kernel. [...] new ee35b9b9f6d5 x86/traps: Have read_cr0() only once in the #NM handler new bae54dc4f353 x86/fpu: Get rid of CONFIG_AS_FXSAVEQ new dc14b5fe7d0a Merge tag 'v5.0-rc6' into x86/fpu, to pick up fixes new 2f7726f95557 x86/fpu: Track AVX-512 usage of tasks new 35a738fb5fd0 Merge branch 'x86-fpu-for-linus' of git://git.kernel.org/p [...] new 65f750e5457a x86/kdump: Export the SME mask to vmcoreinfo new f263245a0ce2 kdump: Document kernel data exported in the vmcoreinfo note new d2cb698f6896 Merge branch 'x86-kdump-for-linus' of git://git.kernel.org [...] new ad8cfb9c42ef mm/gup: Remove the 'write' parameter from gup_fast_permitted() new f86727f8bd65 Merge branch 'x86-mm-for-linus' of git://git.kernel.org/pu [...] new 1c034a2fe560 x86/defconfig: Enable EFI stub, mixed mode and BGRT new 60970c18aa95 Merge branch 'x86-platform-for-linus' of git://git.kernel. [...] new 30ad3e031d2f x86/platform/UV: Remove unnecessary #ifdef CONFIG_EFI new f816525d615f x86/platform/UV: Remove uv_bios_call_reentrant() new 8945d96f7b3e x86/platform/UV: Use efi_enabled() instead of test_bit() new 610cd4eadec4 Merge branch 'x86-uv-for-linus' of git://git.kernel.org/pu [...]
The 55 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/kdump/vmcoreinfo.txt | 495 ++++++++++++++++++++++++++++++ arch/x86/Makefile | 6 +- arch/x86/boot/Makefile | 2 +- arch/x86/boot/compressed/Makefile | 2 + arch/x86/boot/compressed/acpi.c | 338 ++++++++++++++++++++ arch/x86/boot/compressed/cmdline.c | 4 - arch/x86/boot/compressed/head_64.S | 11 +- arch/x86/boot/compressed/kaslr.c | 75 ++++- arch/x86/boot/compressed/misc.c | 3 + arch/x86/boot/compressed/misc.h | 23 +- arch/x86/boot/compressed/pgtable_64.c | 19 +- arch/x86/boot/compressed/vmlinux.lds.S | 2 +- arch/x86/boot/setup.ld | 2 +- arch/x86/boot/string.c | 141 +++++++++ arch/x86/boot/string.h | 1 + arch/x86/configs/i386_defconfig | 2 + arch/x86/configs/x86_64_defconfig | 3 + arch/x86/events/intel/core.c | 2 + arch/x86/events/intel/lbr.c | 1 + arch/x86/include/asm/asm-prototypes.h | 1 - arch/x86/include/asm/fpu/internal.h | 57 +--- arch/x86/include/asm/fpu/types.h | 7 + arch/x86/include/asm/pgtable_64.h | 3 +- arch/x86/include/asm/processor.h | 1 - arch/x86/include/asm/uaccess.h | 3 - arch/x86/include/asm/uv/bios.h | 5 - arch/x86/kernel/acpi/wakeup_32.S | 2 +- arch/x86/kernel/acpi/wakeup_64.S | 12 +- arch/x86/kernel/apic/io_apic.c | 2 + arch/x86/kernel/cpu/cacheinfo.c | 1 + arch/x86/kernel/cpu/mtrr/cleanup.c | 3 +- arch/x86/kernel/cpu/resctrl/pseudo_lock.c | 7 - arch/x86/kernel/e820.c | 9 +- arch/x86/kernel/fpu/xstate.c | 2 +- arch/x86/kernel/hw_breakpoint.c | 5 +- arch/x86/kernel/kexec-bzimage64.c | 4 +- arch/x86/kernel/kgdb.c | 1 + arch/x86/kernel/machine_kexec_64.c | 3 + arch/x86/kernel/smpboot.c | 7 +- arch/x86/kernel/traps.c | 5 +- arch/x86/kernel/uprobes.c | 1 + arch/x86/kernel/vmlinux.lds.S | 4 +- arch/x86/lib/insn-eval.c | 2 + arch/x86/mm/cpu_entry_area.c | 2 +- arch/x86/mm/dump_pagetables.c | 2 - arch/x86/mm/tlb.c | 3 - arch/x86/platform/uv/bios_uv.c | 16 +- arch/x86/platform/uv/tlb_uv.c | 8 +- arch/x86/realmode/rm/Makefile | 2 +- arch/x86/realmode/rm/realmode.lds.S | 2 +- include/linux/kprobes.h | 5 + mm/gup.c | 6 +- 52 files changed, 1165 insertions(+), 160 deletions(-) create mode 100644 Documentation/kdump/vmcoreinfo.txt create mode 100644 arch/x86/boot/compressed/acpi.c