linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-03-19 11:45:25 to 2021-03-23 02:14:05 UTC [more...]

[PATCH v6 0/6] Support for H_RPT_INVALIDATE in PowerPC KVM
 2021-03-23  1:19 UTC  (3+ messages)
` [PATCH v6 1/6] KVM: PPC: Book3S HV: Fix comments of H_RPT_INVALIDATE arguments

[PATCH v3 00/41] KVM: PPC: Book3S: C-ify the P9 entry/exit code
 2021-03-23  1:43 UTC  (38+ messages)
` [PATCH v3 13/41] KVM: PPC: Book3S 64: Move interrupt early register setup to KVM
` [PATCH v3 14/41] KVM: PPC: Book3S 64: move bad_host_intr check to HV handler
` [PATCH v3 15/41] KVM: PPC: Book3S 64: Minimise hcall handler calling convention differences
` [PATCH v3 16/41] KVM: PPC: Book3S HV P9: Move radix MMU switching instructions together
` [PATCH v3 17/41] KVM: PPC: Book3S HV P9: implement kvmppc_xive_pull_vcpu in C
` [PATCH v3 18/41] KVM: PPC: Book3S HV P9: Move xive vcpu context management into kvmhv_p9_guest_entry
` [PATCH v3 19/41] KVM: PPC: Book3S HV P9: Stop handling hcalls in real-mode in the P9 path
` [PATCH v3 20/41] KVM: PPC: Book3S HV P9: Move setting HDEC after switching to guest LPCR
` [PATCH v3 21/41] KVM: PPC: Book3S HV P9: Use large decrementer for HDEC
` [PATCH v3 24/41] powerpc: add set_dec_or_work API for safely updating decrementer
` [PATCH v3 25/41] KVM: PPC: Book3S HV P9: Reduce irq_work vs guest decrementer races
` [PATCH v3 34/41] KVM: PPC: Book3S HV: Remove support for dependent threads mode on P9

[PATCH v11 0/6] KASAN for powerpc64 radix
 2021-03-23  1:21 UTC  (20+ messages)
` [PATCH v11 1/6] kasan: allow an architecture to disable inline instrumentation
` [PATCH v11 2/6] kasan: allow architectures to provide an outline readiness check
` [PATCH v11 3/6] kasan: define and use MAX_PTRS_PER_* for early shadow tables
` [PATCH v11 4/6] kasan: Document support on 32-bit powerpc
` [PATCH v11 5/6] powerpc/mm/kasan: rename kasan_init_32.c to init_32.c
` [PATCH v11 6/6] powerpc: Book3S 64-bit outline-only KASAN support

[PATCH v4 00/46] KVM: PPC: Book3S: C-ify the P9 entry/exit code
 2021-03-23  1:03 UTC  (47+ messages)
` [PATCH v4 01/46] KVM: PPC: Book3S HV: Nested move LPCR sanitising to sanitise_hv_regs
` [PATCH v4 02/46] KVM: PPC: Book3S HV: Add a function to filter guest LPCR bits
` [PATCH v4 03/46] KVM: PPC: Book3S HV: Disallow LPCR[AIL] to be set to 1 or 2
` [PATCH v4 04/46] KVM: PPC: Book3S HV: Prevent radix guests from setting LPCR[TC]
` [PATCH v4 05/46] KVM: PPC: Book3S HV: Remove redundant mtspr PSPB
` [PATCH v4 06/46] KVM: PPC: Book3S HV: remove unused kvmppc_h_protect argument
` [PATCH v4 07/46] KVM: PPC: Book3S HV: Fix CONFIG_SPAPR_TCE_IOMMU=n default hcalls
` [PATCH v4 08/46] powerpc/64s: Remove KVM handler support from CBE_RAS interrupts
` [PATCH v4 09/46] powerpc/64s: remove KVM SKIP test from instruction breakpoint handler
` [PATCH v4 10/46] KVM: PPC: Book3S HV: Ensure MSR[ME] is always set in guest MSR
` [PATCH v4 11/46] KVM: PPC: Book3S HV: Ensure MSR[HV] is always clear "
` [PATCH v4 12/46] KVM: PPC: Book3S 64: move KVM interrupt entry to a common entry point
` [PATCH v4 13/46] KVM: PPC: Book3S 64: Move GUEST_MODE_SKIP test into KVM
` [PATCH v4 14/46] KVM: PPC: Book3S 64: add hcall interrupt handler
` [PATCH v4 15/46] KVM: PPC: Book3S 64: Move hcall early register setup to KVM
` [PATCH v4 16/46] KVM: PPC: Book3S 64: Move interrupt "
` [PATCH v4 17/46] KVM: PPC: Book3S 64: move bad_host_intr check to HV handler
` [PATCH v4 18/46] KVM: PPC: Book3S 64: Minimise hcall handler calling convention differences
` [PATCH v4 19/46] KVM: PPC: Book3S HV P9: Move radix MMU switching instructions together
` [PATCH v4 20/46] KVM: PPC: Book3S HV P9: implement kvmppc_xive_pull_vcpu in C
` [PATCH v4 21/46] KVM: PPC: Book3S HV P9: Move xive vcpu context management into kvmhv_p9_guest_entry
` [PATCH v4 22/46] KVM: PPC: Book3S HV P9: Stop handling hcalls in real-mode in the P9 path
` [PATCH v4 23/46] KVM: PPC: Book3S HV P9: Move setting HDEC after switching to guest LPCR
` [PATCH v4 24/46] KVM: PPC: Book3S HV P9: Use large decrementer for HDEC
` [PATCH v4 25/46] KVM: PPC: Book3S HV P9: Use host timer accounting to avoid decrementer read
` [PATCH v4 26/46] KVM: PPC: Book3S HV P9: Reduce mftb per guest entry/exit
` [PATCH v4 27/46] powerpc: add set_dec_or_work API for safely updating decrementer
` [PATCH v4 28/46] KVM: PPC: Book3S HV P9: Reduce irq_work vs guest decrementer races
` [PATCH v4 29/46] KVM: PPC: Book3S HV P9: Implement the rest of the P9 path in C
` [PATCH v4 30/46] KVM: PPC: Book3S HV P9: inline kvmhv_load_hv_regs_and_go into __kvmhv_vcpu_entry_p9
` [PATCH v4 31/46] KVM: PPC: Book3S HV P9: Read machine check registers while MSR[RI] is 0
` [PATCH v4 32/46] KVM: PPC: Book3S HV P9: Improve exit timing accounting coverage
` [PATCH v4 33/46] KVM: PPC: Book3S HV P9: Move SPR loading after expiry time check
` [PATCH v4 34/46] KVM: PPC: Book3S HV P9: Add helpers for OS SPR handling
` [PATCH v4 35/46] KVM: PPC: Book3S HV P9: Switch to guest MMU context as late as possible
` [PATCH v4 36/46] KVM: PPC: Book3S HV: Implement radix prefetch workaround by disabling MMU
` [PATCH v4 37/46] KVM: PPC: Book3S HV: Remove support for dependent threads mode on P9
` [PATCH v4 38/46] KVM: PPC: Book3S HV: Remove radix guest support from P7/8 path
` [PATCH v4 39/46] KVM: PPC: Book3S HV: Remove virt mode checks from real mode handlers
` [PATCH v4 40/46] KVM: PPC: Book3S HV: Remove unused nested HV tests in XICS emulation
` [PATCH v4 41/46] KVM: PPC: Book3S HV P9: Allow all P9 processors to enable nested HV
` [PATCH v4 42/46] KVM: PPC: Book3S HV: small pseries_do_hcall cleanup
` [PATCH v4 43/46] KVM: PPC: Book3S HV: add virtual mode handlers for HPT hcalls and page faults
` [PATCH v4 44/46] KVM: PPC: Book3S HV P9: implement hash guest support
` [PATCH v4 45/46] KVM: PPC: Book3S HV P9: implement hash host / "
` [PATCH v4 46/46] KVM: PPC: Book3S HV: remove ISA v3.0 and v3.1 support from P7/8 path

remove the legacy ide driver
 2021-03-22 17:10 UTC  (26+ messages)
` [PATCH 01/10] alpha: use libata instead of "
` [PATCH 02/10] ARM: disable CONFIG_IDE in footbridge_defconfig
` [PATCH 08/10] MIPS: disable CONFIG_IDE in malta*_defconfig
` [PATCH 10/10] ide: remove the legacy ide driver

[PATCH] xsysace: Remove SYSACE driver
 2021-03-23  0:04 UTC  (2+ messages)

[PATCH 0/3] powerpc/mm/hash: Time improvements for memory hot(un)plug
 2021-03-22 23:45 UTC  (7+ messages)
` [PATCH 1/3] powerpc/mm/hash: Avoid resizing-down HPT on first memory hotplug
` [PATCH 2/3] powerpc/mm/hash: Avoid multiple HPT resize-ups on "
` [PATCH 3/3] powerpc/mm/hash: Avoid multiple HPT resize-downs on memory hotunplug

[PATCH] powerpc/asm: Fix a typo
 2021-03-22 23:48 UTC  (3+ messages)

[PATCH 00/10] Move 64e to new interrupt return code
 2021-03-22 23:45 UTC  (2+ messages)

[PATCH 1/1] hotplug-cpu.c: show 'last online CPU' error in dlpar_cpu_remove()
 2021-03-22 23:30 UTC  (4+ messages)

[PATCH next v1 0/3] printk: remove safe buffers
 2021-03-22 21:58 UTC  (6+ messages)
` [PATCH next v1 2/3] "

[PATCH 1/1] powerpc/iommu: Enable remaining IOMMU Pagesizes present in LoPAR
 2021-03-22 19:09 UTC 

[PATCH] powerpc: kernel: Trivial spelling fixes throughout the file head_fsl_booke.S
 2021-03-22 18:50 UTC  (2+ messages)

[PATCH] docs: powerpc: Fix a typo
 2021-03-22 18:49 UTC  (2+ messages)

[PATCH] powerpc/8xx: Fix a typo
 2021-03-22 18:43 UTC  (2+ messages)

[RFC PATCH 0/8] WIP support for the LLVM integrated assembler
 2021-03-22 18:11 UTC  (5+ messages)
` [RFC PATCH 6/8] powerpc/mm/book3s64/hash: drop pre 2.06 tlbiel for clang

[PATCH v2 0/8] Implement EBPF on powerpc32
 2021-03-22 17:53 UTC  (10+ messages)
` [PATCH v2 1/8] powerpc/bpf: Remove classical BPF support for PPC32
` [PATCH v2 2/8] powerpc/bpf: Change register numbering for bpf_set/is_seen_register()
` [PATCH v2 3/8] powerpc/bpf: Move common helpers into bpf_jit.h
` [PATCH v2 4/8] powerpc/bpf: Move common functions into bpf_jit_comp.c
` [PATCH v2 5/8] powerpc/bpf: Change values of SEEN_ flags
` [PATCH v2 6/8] powerpc/asm: Add some opcodes in asm/ppc-opcode.h for PPC32 eBPF
` [PATCH v2 7/8] powerpc/bpf: Implement extended BPF on PPC32
` [PATCH v2 8/8] powerpc/bpf: Reallocate BPF registers to volatile registers when possible "

remove the nvlink2 pci_vfio subdriver
 2021-03-22 17:46 UTC  (5+ messages)
` [PATCH 1/2] vfio/pci: remove vfio_pci_nvlink2
` [PATCH 2/2] powerpc/powernv: remove the nvlink support

[PATCH] PCI: layerscape: Correct syntax by changing comma to semicolon
 2021-03-22 17:25 UTC  (3+ messages)

[PATCH] cxl: Fix couple of spellings
 2021-03-22 15:24 UTC  (3+ messages)

[PATCH v7] powerpc/irq: Inline call_do_irq() and call_do_softirq()
 2021-03-22 15:25 UTC  (2+ messages)

[PATCH -next] pci/controller/dwc: convert comma to semicolon
 2021-03-22 15:25 UTC  (8+ messages)

[PATCH V2 0/5] powerpc/perf: Export processor pipeline stage cycles information
 2021-03-22 14:57 UTC  (6+ messages)
` [PATCH V2 1/5] powerpc/perf: Expose processor pipeline stage cycles using PERF_SAMPLE_WEIGHT_STRUCT
` [PATCH V2 2/5] tools/perf: Add dynamic headers for perf report columns
` [PATCH V2 3/5] tools/perf: Add powerpc support for PERF_SAMPLE_WEIGHT_STRUCT
` [PATCH V2 4/5] tools/perf: Support pipeline stage cycles for powerpc
` [PATCH V2 5/5] tools/perf: Display sort dimension p_stage_cyc only on supported archs

[PATCH v2 3/6] mm/mremap: Use pmd/pud_poplulate to update page table entries
 2021-03-22 14:42 UTC  (2+ messages)
` [mm/mremap] c10e9d3441: Bad_pagetable:#[##]

[PATCH] ASoC: fsl_sai: Don't use devm_regmap_init_mmio_clk
 2021-03-22 13:00 UTC  (2+ messages)

[PATCH] powerpc/iommu/debug: Remove redundant NULL check
 2021-03-22  9:43 UTC 

[PATCH 1/6] powerpc/mm/64s: Add _PAGE_KERNEL_ROX
 2021-03-22  9:07 UTC  (11+ messages)
` [PATCH 5/6] powerpc/mm/64s/hash: Add real-mode change_memory_range() for hash LPAR

[PATCH] powerpc/numa: Fix topology_physical_package_id() on pSeries
 2021-03-22  5:19 UTC  (2+ messages)

Advice needed on SMP regression after cpu_core_mask change
 2021-03-22  3:16 UTC  (4+ messages)

[PATCH] powerpc/mm: Revert "powerpc/mm: Remove DEBUG_VM_PGTABLE support on powerpc"
 2021-03-22  4:00 UTC  (3+ messages)

[GIT PULL] Please pull powerpc/linux.git powerpc-5.12-4 tag
 2021-03-21 18:45 UTC  (2+ messages)

[PATCH] crypto: nx: fix incorrect kernel-doc comment syntax in files
 2021-03-21 17:34 UTC  (2+ messages)

[PATCH] powerpc: epapr: A typo fix
 2021-03-20 22:41 UTC  (2+ messages)

[for-stable-4.19 PATCH 0/2] Backport patches to fix KASAN+LKDTM with recent clang on ARM64
 2021-03-19 22:48 UTC  (6+ messages)
` [for-stable-4.19 PATCH 1/2] vmlinux.lds.h: Create section for protection against instrumentation

[PATCH 00/36] [Set 4] Rid W=1 warnings in SCSI
 2021-03-19  8:10 UTC  (3+ messages)

[PATCH] crypto: vmx: fix incorrect kernel-doc comment syntax in files
 2021-03-20 20:25 UTC 

[for-stable-4.19 PATCH v2 0/2] Backport patches to fix KASAN+LKDTM with recent clang on ARM64
 2021-03-20 10:57 UTC  (4+ messages)
` [for-stable-4.19 PATCH v2 1/2] vmlinux.lds.h: Create section for protection against instrumentation
  ` Patch "vmlinux.lds.h: Create section for protection against instrumentation" has been added to the 4.19-stable tree

[PATCH 0/2] Fix EH race and MQ support
 2021-03-19 21:12 UTC  (5+ messages)
` [PATCH 1/2] ibmvfc: fix potential race in ibmvfc_wait_for_ops
` [PATCH 2/2] ibmvfc: make ibmvfc_wait_for_ops MQ aware

[PATCH 0/6] mm: some config cleanups
 2021-03-19 18:35 UTC  (2+ messages)

Clang: powerpc: kvm/book3s_hv_nested.c:264:6: error: stack frame size of 2480 bytes in function 'kvmhv_enter_nested_guest'
 2021-03-19 17:01 UTC  (2+ messages)

[PATCH RFC 2/3] mm: remove xlate_dev_kmem_ptr()
 2021-03-19 14:54 UTC  (2+ messages)

[PATCH V2] mm/memtest: Add ARCH_USE_MEMTEST
 2021-03-19 12:34 UTC  (2+ messages)

[PATCH v3 00/32] powerpc/64: interrupts and syscalls series
 2021-03-19 11:44 UTC  (5+ messages)
` [PATCH v3 28/32] powerpc/64s: interrupt implement exit logic in C


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).