This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from bbe85027ce80 Merge tag 'xfs-5.10-merge-5' of git://git.kernel.org/pub/s [...] new a27bc11f4b7c m68knommu: switch to using asm-generic/uaccess.h new 006967471c8b m68knommu: fix sparse warnings in signal code new 322c512f476f m68knommu: include SDHC support only when hardware has it new 9f5fd809d7a0 serial: mcf: add sysrq capability new d3876ff74437 Merge tag 'm68knommu-for-v5.10' of git://git.kernel.org/pu [...] new 4363287178a8 riscv/mm: Simplify retry logic in do_page_fault() new cac4d1dc85be riscv/mm/fault: Move no context handling to no_context() new a51271d99cdd riscv/mm/fault: Move bad area handling to bad_area() new ac416a724f11 riscv/mm/fault: Move vmalloc fault handling to vmalloc_fault() new bda281d5bfb7 riscv/mm/fault: Simplify fault error handling new 6c11ffbfd849 riscv/mm/fault: Move fault error handling to mm_fault_error() new 7a75f3d47a0b riscv/mm/fault: Simplify mm_fault_error() new 6747430197ed riscv/mm/fault: Move FAULT_FLAG_WRITE handling in do_page_fault() new afb8c6fee8ce riscv/mm/fault: Move access error check to function new baf7cbd94b56 riscv: Set more data to cacheinfo new b5fca7c55f9f riscv: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO new 38f5bd23deae riscv: Add cache information in AUX vector new 2baa6d9506f2 riscv/mm/fault: Fix inline placement in vmalloc_fault() de [...] new a960c1323749 riscv/mm/fault: Set FAULT_FLAG_INSTRUCTION flag in do_page [...] new 54701a0d12e2 RISC-V: Fix duplicate included thread_info.h new 8a3f30c4319d Merge tag 'efi-riscv-shared-for-v5.10' of ssh://gitolite.k [...] new 8f3a2b4a96dc RISC-V: Move DT mapping outof fixmap new 6262f661ff5d RISC-V: Add early ioremap support new e8dcb61f2ade RISC-V: Implement late mapping page table allocation functions new cb7d2dd5612a RISC-V: Add PE/COFF header for EFI stub new d7071743db31 RISC-V: Add EFI stub support. new b91540d52a08 RISC-V: Add EFI runtime services new de22d2107ced RISC-V: Add page table dump support for uefi new 270315b8235e Merge tag 'riscv-for-linus-5.10-mw0' of git://git.kernel.o [...]
The 29 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: arch/m68k/Kconfig | 1 + arch/m68k/coldfire/device.c | 6 +- arch/m68k/include/asm/uaccess.h | 398 +++++++++++++++++++++++++++++- arch/m68k/include/asm/uaccess_mm.h | 390 ----------------------------- arch/m68k/include/asm/uaccess_no.h | 160 ------------ arch/m68k/kernel/signal.c | 6 +- arch/riscv/Kconfig | 25 ++ arch/riscv/Makefile | 1 + arch/riscv/configs/defconfig | 1 + arch/riscv/include/asm/Kbuild | 1 + arch/riscv/include/asm/cacheinfo.h | 5 + arch/riscv/include/asm/efi.h | 55 +++++ arch/riscv/include/asm/elf.h | 13 + arch/riscv/include/asm/fixmap.h | 16 +- arch/riscv/include/asm/io.h | 1 + arch/riscv/include/asm/mmu.h | 2 + arch/riscv/include/asm/pgtable.h | 5 + arch/riscv/include/asm/sections.h | 13 + arch/riscv/include/uapi/asm/auxvec.h | 24 ++ arch/riscv/kernel/Makefile | 2 + arch/riscv/kernel/cacheinfo.c | 98 ++++++-- arch/riscv/kernel/efi-header.S | 111 +++++++++ arch/riscv/kernel/efi.c | 96 +++++++ arch/riscv/kernel/head.S | 18 +- arch/riscv/kernel/head.h | 2 - arch/riscv/kernel/image-vars.h | 51 ++++ arch/riscv/kernel/setup.c | 18 +- arch/riscv/kernel/vmlinux.lds.S | 23 +- arch/riscv/mm/fault.c | 356 ++++++++++++++------------ arch/riscv/mm/init.c | 190 ++++++++++---- arch/riscv/mm/ptdump.c | 48 +++- drivers/firmware/efi/Kconfig | 3 +- drivers/firmware/efi/Makefile | 2 + drivers/firmware/efi/libstub/Makefile | 10 + drivers/firmware/efi/libstub/efi-stub.c | 11 +- drivers/firmware/efi/libstub/riscv-stub.c | 109 ++++++++ drivers/firmware/efi/riscv-runtime.c | 143 +++++++++++ 37 files changed, 1614 insertions(+), 800 deletions(-) delete mode 100644 arch/m68k/include/asm/uaccess_mm.h delete mode 100644 arch/m68k/include/asm/uaccess_no.h create mode 100644 arch/riscv/include/asm/efi.h create mode 100644 arch/riscv/include/asm/sections.h create mode 100644 arch/riscv/kernel/efi-header.S create mode 100644 arch/riscv/kernel/efi.c create mode 100644 arch/riscv/kernel/image-vars.h create mode 100644 drivers/firmware/efi/libstub/riscv-stub.c create mode 100644 drivers/firmware/efi/riscv-runtime.c