This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from aedc0650f913 Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt [...] new ea25a153ee06 ARC: regenerate nSIM and HAPS defconfigs new 4c36543e50a1 ARC: HAPS: cleanup defconfigs from unused IO-related options new 3696fc9774c5 ARC: HAPS: use same UART configuration everywhere new 14fa486f5ae3 ARC: HAPS: add HIGHMEM memory zone to DTS new 8ae5bb05d7f4 ARC: HAPS: cleanup defconfigs from unused ETH drivers new 1681baa713aa ARC: merge HAPS-HS with nSIM-HS configs new 9c6375f77b09 ARC: nSIM_700: switch to DW UART usage new 7b491c0b6259 ARC: nSIM_700: remove unused network options new cfd9d70a855e ARCv2: mm: TLB Miss optim: SMP builds can cache pgd pointe [...] new 0fb1f35ed9cc ARCv2: mm: TLB Miss optim: Use double world load/stores LDD/STD new f4e2f7cc6999 ARC: mm: TLB Miss optim: avoid re-reading ECR new ad4c40e937f6 ARC: mm: tlb flush optim: Make TLBWriteNI fallback to TLBW [...] new 1355ea2e603d ARC: mm: tlb flush optim: elide repeated uTLB invalidate in loop new 2f4ecf68a048 ARC: mm: tlb flush optim: elide redundant uTLB invalidates [...] new f091d5a42644 ARC: ARCv2: jump label: implement jump label patching new 93c53f2397fb ARC: [plat-axs10x]: use pgu pll instead of fixed clock new e1b2743d7052 ARC: [plat-axs10x]: remove hardcoded video mode from bootargs new 9fbea0b7e842 ARC: add kmemleak support new 056df578c2dc Merge tag 'arc-5.5-rc1' of git://git.kernel.org/pub/scm/li [...] new 02a65a0bfbef tracing: Fix __print_hex_dump scope new 6c3edaf9fd6a tracing: Introduce trace event injection new a356646a5685 tracing: Do not create directories if lockdown is in affect new 2f13437b8917 Merge tag 'trace-v5.5-2' of git://git.kernel.org/pub/scm/l [...]
The 23 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/arc/Kconfig | 9 + arch/arc/Makefile | 2 +- arch/arc/boot/dts/axc001.dtsi | 6 + arch/arc/boot/dts/axs101.dts | 2 +- arch/arc/boot/dts/axs103_idu.dts | 2 +- arch/arc/boot/dts/axs10x_mb.dtsi | 11 +- arch/arc/boot/dts/haps_hs.dts | 15 +- arch/arc/boot/dts/haps_hs_idu.dts | 1 - arch/arc/boot/dts/nsim_700.dts | 36 ++-- arch/arc/boot/dts/nsim_hs.dts | 67 ------- arch/arc/boot/dts/nsim_hs_idu.dts | 65 ------- arch/arc/configs/haps_hs_defconfig | 30 +-- arch/arc/configs/haps_hs_smp_defconfig | 32 +--- arch/arc/configs/nsim_700_defconfig | 19 +- arch/arc/configs/nsim_hs_defconfig | 60 ------ arch/arc/configs/nsim_hs_smp_defconfig | 58 ------ arch/arc/include/asm/cache.h | 2 + arch/arc/include/asm/entry-compact.h | 4 +- arch/arc/include/asm/jump_label.h | 72 +++++++ arch/arc/include/asm/mmu.h | 6 + arch/arc/include/asm/mmu_context.h | 2 +- arch/arc/include/asm/pgtable.h | 2 +- arch/arc/kernel/Makefile | 1 + arch/arc/kernel/jump_label.c | 170 +++++++++++++++++ arch/arc/mm/tlb.c | 81 +++----- arch/arc/mm/tlbex.S | 18 +- arch/arc/plat-sim/platform.c | 1 - include/trace/trace_events.h | 1 + kernel/trace/Kconfig | 9 + kernel/trace/Makefile | 1 + kernel/trace/ring_buffer.c | 6 + kernel/trace/trace.c | 17 ++ kernel/trace/trace.h | 1 + kernel/trace/trace_events.c | 6 + kernel/trace/trace_events_inject.c | 331 +++++++++++++++++++++++++++++++++ 35 files changed, 735 insertions(+), 411 deletions(-) delete mode 100644 arch/arc/boot/dts/nsim_hs.dts delete mode 100644 arch/arc/boot/dts/nsim_hs_idu.dts delete mode 100644 arch/arc/configs/nsim_hs_defconfig delete mode 100644 arch/arc/configs/nsim_hs_smp_defconfig create mode 100644 arch/arc/include/asm/jump_label.h create mode 100644 arch/arc/kernel/jump_label.c create mode 100644 kernel/trace/trace_events_inject.c