Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
87 revisions left to test after this (roughly 7 steps)
  • Loading branch information
carlfriedrich committed Apr 5, 2024
1 parent e833a0e commit d843911
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion WSL2-Linux-Kernel
Submodule WSL2-Linux-Kernel updated 96 files
+174 −0 Documentation/x86/boot.rst
+7 −11 MAINTAINERS
+12 −41 arch/x86/Kconfig
+16 −9 arch/x86/Kconfig.cpu
+1 −0 arch/x86/Makefile_32.cpu
+1 −1 arch/x86/boot/Makefile
+2 −2 arch/x86/boot/compressed/Makefile
+12 −0 arch/x86/boot/compressed/kaslr.c
+22 −0 arch/x86/boot/compressed/kernel_info.S
+2 −1 arch/x86/boot/header.S
+5 −0 arch/x86/boot/tools/build.c
+0 −1 arch/x86/configs/x86_64_defconfig
+3 −5 arch/x86/entry/syscall_32.c
+10 −4 arch/x86/entry/syscall_64.c
+4 −4 arch/x86/entry/syscalls/syscall_32.tbl
+13 −3 arch/x86/hyperv/hv_apic.c
+6 −0 arch/x86/hyperv/hv_init.c
+3 −2 arch/x86/ia32/ia32_signal.c
+0 −57 arch/x86/include/asm/calgary.h
+1 −0 arch/x86/include/asm/cpufeatures.h
+8 −1 arch/x86/include/asm/crash.h
+1 −1 arch/x86/include/asm/disabled-features.h
+1 −1 arch/x86/include/asm/fixmap.h
+5 −0 arch/x86/include/asm/hyperv-tlfs.h
+0 −10 arch/x86/include/asm/kexec.h
+2 −0 arch/x86/include/asm/module.h
+0 −7 arch/x86/include/asm/pci.h
+0 −28 arch/x86/include/asm/pci_64.h
+24 −22 arch/x86/include/asm/pgtable-3level.h
+9 −1 arch/x86/include/asm/processor.h
+0 −10 arch/x86/include/asm/purgatory.h
+0 −64 arch/x86/include/asm/rio.h
+58 −18 arch/x86/include/asm/syscall_wrapper.h
+0 −35 arch/x86/include/asm/tce.h
+15 −0 arch/x86/include/asm/trace/hyperv.h
+2 −2 arch/x86/include/asm/umip.h
+1 −1 arch/x86/include/asm/uv/bios.h
+14 −2 arch/x86/include/asm/uv/uv.h
+20 −41 arch/x86/include/asm/uv/uv_hub.h
+31 −10 arch/x86/include/uapi/asm/bootparam.h
+1 −2 arch/x86/kernel/Makefile
+1 −1 arch/x86/kernel/apic/apic.c
+14 −11 arch/x86/kernel/apic/io_apic.c
+163 −21 arch/x86/kernel/apic/x2apic_uv_x.c
+3 −2 arch/x86/kernel/cpu/common.c
+4 −4 arch/x86/kernel/cpu/intel.c
+6 −1 arch/x86/kernel/cpu/mshyperv.c
+21 −1 arch/x86/kernel/cpu/rdrand.c
+36 −92 arch/x86/kernel/crash.c
+11 −0 arch/x86/kernel/e820.c
+13 −9 arch/x86/kernel/fpu/xstate.c
+104 −32 arch/x86/kernel/jailhouse.c
+17 −4 arch/x86/kernel/kdebugfs.c
+24 −7 arch/x86/kernel/ksysfs.c
+0 −47 arch/x86/kernel/machine_kexec_64.c
+0 −1,586 arch/x86/kernel/pci-calgary_64.c
+0 −6 arch/x86/kernel/pci-dma.c
+9 −3 arch/x86/kernel/setup.c
+0 −177 arch/x86/kernel/tce_64.c
+0 −5 arch/x86/kernel/traps.c
+6 −6 arch/x86/kernel/umip.c
+1 −1 arch/x86/kernel/uprobes.c
+23 −1 arch/x86/kernel/x86_init.c
+4 −2 arch/x86/math-emu/fpu_system.h
+3 −3 arch/x86/math-emu/reg_ld_str.c
+1 −1 arch/x86/mm/Makefile
+11 −0 arch/x86/mm/ioremap.c
+1 −1 arch/x86/mm/numa.c
+4 −4 arch/x86/mm/pat.c
+10 −10 arch/x86/mm/pat_internal.h
+185 −0 arch/x86/mm/pat_interval.c
+0 −268 arch/x86/mm/pat_rbtree.c
+2 −2 arch/x86/mm/pgtable.c
+5 −4 arch/x86/platform/uv/bios_uv.c
+0 −19 arch/x86/purgatory/purgatory.c
+2 −0 arch/x86/realmode/init.c
+1 −0 arch/x86/realmode/rm/realmode.lds.S
+2 −2 arch/x86/tools/gen-insn-attr-x86.awk
+1 −3 drivers/char/ipmi/bt-bmc.c
+12 −25 drivers/char/ipmi/ipmb_dev_int.c
+24 −31 drivers/char/ipmi/ipmi_msghandler.c
+13 −27 drivers/char/ipmi/ipmi_si_intf.c
+124 −30 drivers/clocksource/hyperv_timer.c
+2 −2 drivers/hv/hv.c
+14 −16 drivers/hv/vmbus_drv.c
+2 −2 drivers/i3c/master.c
+2 −0 drivers/pcmcia/cardbus.c
+1 −0 drivers/pcmcia/cistpl.c
+16 −18 drivers/pcmcia/i82092.c
+0 −2 drivers/pcmcia/i82092aa.h
+1 −2 drivers/pcmcia/yenta_socket.c
+4 −3 include/clocksource/hyperv_timer.h
+1 −0 include/linux/cpuhotplug.h
+8 −4 include/linux/ipmi_smi.h
+1 −1 tools/arch/x86/include/asm/disabled-features.h
+2 −2 tools/arch/x86/tools/gen-insn-attr-x86.awk
2 changes: 2 additions & 0 deletions bisect.log
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ git bisect bad 3f1b210a7f97f7e75c56174ada476fba2d36f340
git bisect bad 77a05940eee7e9891cd6add7a690a3e762ee21b0
# bad: [1d87200446f1d10dfe9672ca8edb027a82612f8c] Merge branch 'x86-asm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
git bisect bad 1d87200446f1d10dfe9672ca8edb027a82612f8c
# good: [a86f69d3349569a610eb9ff3b9e4bd1c40fe62f2] Merge tag 'spi-v5.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
git bisect good a86f69d3349569a610eb9ff3b9e4bd1c40fe62f2

0 comments on commit d843911

Please sign in to comment.