This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from d723b99ec9e5 Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm [...] new 8979ef70850e opp: Put opp table in dev_pm_opp_set_rate() for empty tables new d4ec88d20558 opp: Put opp table in dev_pm_opp_set_rate() if _set_opp_bw [...] new a4501bac0e55 opp: Enable resources again if they were disabled earlier new cc15fd9892e2 Merge branch 'opp/fixes' of git://git.kernel.org/pub/scm/l [...] new 985c788b6da4 Merge tag 'pm-5.9-rc2' of git://git.kernel.org/pub/scm/lin [...] new 6163a985e50c efi: avoid error message when booting under Xen new ee87e1557c42 Fix build error when CONFIG_ACPI is not set/enabled: new c0a4f5b354dc Merge tag 'for-linus-5.9-rc2-tag' of git://git.kernel.org/ [...] new cc7f3f72dc2a RISC-V: Add mechanism to provide custom IPI operations new 2ac6795fcc08 clocksource/drivers: Add CLINT timer driver new 2bc3fc877aa9 RISC-V: Remove CLINT related code from timer and arch new a2770b57d083 dt-bindings: timer: Add CLINT bindings new fc26f5bbf194 riscv: Add SiFive drivers to rv32_defconfig new f22c5579a7d6 Merge tag 'riscv-for-linus-5.9-rc2' of git://git.kernel.or [...] new 00c54a80cd36 mailmap: add Andi Kleen new d5a1695977cf hugetlb_cgroup: convert comma to semicolon new f3f99d63a815 khugepaged: adjust VM_BUG_ON_MM() in __khugepaged_enter() new e47110e90584 mm/vunmap: add cond_resched() in vunmap_pmd_range new 86f54bb7e4ff mm/rodata_test.c: fix missing function declaration new bcf85fcedfdd romfs: fix uninitialized memory leak in romfs_dev_read() new 71e843295c68 kernel/relay.c: fix memleak on destroy relay channel new c17c3dc9d08b uprobes: __replace_page() avoid BUG in munlock_vma_page() new f26044c83e6e squashfs: avoid bio_alloc() failure with 1Mbyte blocks new e08d3fdfe2da mm: include CMA pages in lowmem_reserve at boot new 88e8ac11d2ea mm, page_alloc: fix core hung in free_pcppages_bulk() new 349111f050b5 Merge branch 'akpm' (patches from Andrew) new b711d4eaf0c4 io_uring: find and cancel head link async work on files exit new 3b2a4439e0ae io_uring: get rid of kiocb_wait_page_queue_init() new 8452fd0ce657 io_uring: cleanup io_import_iovec() of pre-mapped request new fc666777da9d io_uring: use system_unbound_wq for ring exit work new bb175342aa64 io_uring: fix racy req->flags modification new f261c16861b8 io_uring: comment on kfree(iovec) checks new 867a23eab528 io_uring: kill extra iovec=NULL in import_iovec() new f873db9acd3c Merge tag 'io_uring-5.9-2020-08-21' of git://git.kernel.dk [...]
The 34 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: .mailmap | 1 + .../devicetree/bindings/timer/sifive,clint.yaml | 60 ++++++ arch/riscv/Kconfig | 2 +- arch/riscv/Kconfig.socs | 2 + arch/riscv/configs/nommu_virt_defconfig | 7 +- arch/riscv/configs/rv32_defconfig | 5 + arch/riscv/include/asm/clint.h | 39 ---- arch/riscv/include/asm/smp.h | 19 ++ arch/riscv/include/asm/timex.h | 28 +-- arch/riscv/kernel/Makefile | 2 +- arch/riscv/kernel/clint.c | 44 ---- arch/riscv/kernel/sbi.c | 14 ++ arch/riscv/kernel/setup.c | 2 - arch/riscv/kernel/smp.c | 44 ++-- arch/riscv/kernel/smpboot.c | 4 +- arch/x86/pci/xen.c | 1 + drivers/clocksource/Kconfig | 12 +- drivers/clocksource/Makefile | 1 + drivers/clocksource/timer-clint.c | 226 +++++++++++++++++++++ drivers/clocksource/timer-riscv.c | 17 +- drivers/opp/core.c | 19 +- drivers/video/fbdev/efifb.c | 2 +- fs/io_uring.c | 173 +++++++--------- fs/romfs/storage.c | 4 +- fs/squashfs/block.c | 6 +- include/linux/cpuhotplug.h | 1 + kernel/events/uprobes.c | 2 +- kernel/relay.c | 1 + mm/hugetlb_cgroup.c | 4 +- mm/khugepaged.c | 2 +- mm/page_alloc.c | 7 +- mm/rodata_test.c | 1 + mm/vmalloc.c | 2 + 33 files changed, 490 insertions(+), 264 deletions(-) create mode 100644 Documentation/devicetree/bindings/timer/sifive,clint.yaml delete mode 100644 arch/riscv/include/asm/clint.h delete mode 100644 arch/riscv/kernel/clint.c create mode 100644 drivers/clocksource/timer-clint.c