linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
 messages from 2022-10-31 05:57:35 to 2022-11-03 08:49:40 UTC [more...]

[PATCH v6 00/25] powerpc: Syscall wrapper and register clearing
 2022-11-03  8:48 UTC  (13+ messages)
` [PATCH v6 09/25] asm-generic: compat: Support BE for long long args in 32-bit ABIs
  ` [PATCH] asm-generic: compat: fix compat_arg_u64 and compat_arg_u64_dual
` [PATCH v6 21/25] powerpc: Provide syscall wrapper
  ` [PATCH] powerpc/32: fix syscall wrappers with 64-bit arguments
` [PATCH v6 22/25] powerpc/64s: Clear user GPRs in syscall interrupt entry

[PATCH v3 1/3] powerpc: Add common pud_pfn stub for all platforms
 2022-11-03  8:43 UTC  (7+ messages)
` [PATCH v3 2/3] powerpc: mm: add p{te,md,ud}_user_accessible_page helpers
` [PATCH v3 3/3] powerpc: mm: support page table check

[PATCH v5 0/2] powerpc module arch checks
 2022-11-03  8:35 UTC  (6+ messages)
` [PATCH v5 1/2] module: add module_elf_check_arch for module-specific checks
` [PATCH v5 2/2] powerpc/64: Add module check for ELF ABI version

[RFC PATCH 00/19] Remove STACK_FRAME_OVERHEAD
 2022-11-03  8:26 UTC  (20+ messages)
` [RFC PATCH 02/19] powerpc: Rearrange copy_thread child stack creation
` [RFC PATCH 03/19] powerpc/64: Remove asm interrupt tracing call helpers
` [RFC PATCH 04/19] powerpc/pseries: hvcall stack frame overhead
` [RFC PATCH 05/19] powerpc/32: Use load and store multiple in GPR save/restore macros
` [RFC PATCH 06/19] powerpc: simplify ppc_save_regs
` [RFC PATCH 07/19] powerpc: add definition for pt_regs offset within an interrupt frame
` [RFC PATCH 08/19] powerpc: add a definition for the marker offset within the "
` [RFC PATCH 09/19] powerpc: Rename STACK_FRAME_MARKER and derive it from frame offset
` [RFC PATCH 10/19] powerpc: add a define for the user interrupt frame size
` [RFC PATCH 11/19] powerpc: add a define for the switch frame size and regs offset
` [RFC PATCH 12/19] powerpc: copy_thread fill in interrupt frame marker and back chain
` [RFC PATCH 13/19] powerpc: copy_thread add a back chain to the switch stack frame
` [RFC PATCH 14/19] powerpc: split validate_sp into two functions
` [RFC PATCH 15/19] powerpc: allow minimum sized kernel stack frames
` [RFC PATCH 16/19] powerpc/64: ELFv2 use minimal stack frames in int and switch frame sizes
` [RFC PATCH 17/19] powerpc: remove STACK_FRAME_OVERHEAD
` [RFC PATCH 18/19] powerpc: change stack marker memory operations to 32-bit
` [RFC PATCH 19/19] powerpc/64: ELFv2 use reserved word in the stack frame for the regs marker

[PATCH v2] random: do not include <asm/archrandom.h> from random.h
 2022-11-03  8:23 UTC  (2+ messages)

[PATCH] powerpc: Interrupt handler stack randomisation
 2022-11-03  7:52 UTC  (2+ messages)

[PATCH] powerpc/8xx: Fix warning in hw_breakpoint_handler()
 2022-11-03  7:47 UTC  (2+ messages)

[PATCH] powerpc/kernel: fix repeated words in comments
 2022-11-03  7:40 UTC  (2+ messages)

[PATCH v3 -next] powerpc/powermac: Fix symbol not declared warnings
 2022-11-03  7:38 UTC  (2+ messages)

[PATCH 00/44] KVM: Rework kvm_init() and hardware enabling
 2022-11-03  7:25 UTC  (52+ messages)
` [PATCH 01/44] KVM: Register /dev/kvm as the _very_ last thing during initialization
` [PATCH 02/44] KVM: Initialize IRQ FD after arch hardware setup
` [PATCH 03/44] KVM: Allocate cpus_hardware_enabled "
` [PATCH 04/44] KVM: Teardown VFIO ops earlier in kvm_exit()
` [PATCH 05/44] KVM: s390: Unwind kvm_arch_init() piece-by-piece() if a step fails
` [PATCH 06/44] KVM: s390: Move hardware setup/unsetup to init/exit
` [PATCH 07/44] KVM: x86: Do timer initialization after XCR0 configuration
` [PATCH 08/44] KVM: x86: Move hardware setup/unsetup to init/exit
` [PATCH 09/44] KVM: Drop arch hardware (un)setup hooks
` [PATCH 10/44] KVM: VMX: Clean up eVMCS enabling if KVM initialization fails
` [PATCH 11/44] KVM: x86: Move guts of kvm_arch_init() to standalone helper
` [PATCH 12/44] KVM: VMX: Do _all_ initialization before exposing /dev/kvm to userspace
` [PATCH 13/44] KVM: x86: Serialize vendor module initialization (hardware setup)
` [PATCH 14/44] KVM: arm64: Simplify the CPUHP logic
` [PATCH 15/44] KVM: arm64: Free hypervisor allocations if vector slot init fails
` [PATCH 16/44] KVM: arm64: Unregister perf callbacks if hypervisor finalization fails
` [PATCH 17/44] KVM: arm64: Do arm/arch initialiation without bouncing through kvm_init()
` [PATCH 18/44] KVM: arm64: Mark kvm_arm_init() and its unique descendants as __init
` [PATCH 19/44] KVM: MIPS: Hardcode callbacks to hardware virtualization extensions
` [PATCH 20/44] KVM: MIPS: Setup VZ emulation? directly from kvm_mips_init()
` [PATCH 21/44] KVM: MIPS: Register die notifier prior to kvm_init()
` [PATCH 22/44] KVM: RISC-V: Do arch init directly in riscv_kvm_init()
` [PATCH 23/44] KVM: RISC-V: Tag init functions and data with __init, __ro_after_init
` [PATCH 24/44] KVM: PPC: Move processor compatibility check to module init
` [PATCH 25/44] KVM: s390: Do s390 specific init without bouncing through kvm_init()
` [PATCH 26/44] KVM: s390: Mark __kvm_s390_init() and its descendants as __init
` [PATCH 27/44] KVM: Drop kvm_arch_{init,exit}() hooks
` [PATCH 28/44] KVM: VMX: Make VMCS configuration/capabilities structs read-only after init
` [PATCH 29/44] KVM: x86: Do CPU compatibility checks in x86 code
` [PATCH 30/44] KVM: Drop kvm_arch_check_processor_compat() hook
` [PATCH 31/44] KVM: x86: Use KBUILD_MODNAME to specify vendor module name
` [PATCH 32/44] KVM: x86: Unify pr_fmt to use module name for all KVM modules
` [PATCH 33/44] KVM: x86: Do VMX/SVM support checks directly in vendor code
` [PATCH 34/44] KVM: VMX: Shuffle support checks and hardware enabling code around
` [PATCH 35/44] KVM: SVM: Check for SVM support in CPU compatibility checks
` [PATCH 36/44] KVM: x86: Do compatibility checks when onlining CPU
` [PATCH 37/44] KVM: Rename and move CPUHP_AP_KVM_STARTING to ONLINE section
` [PATCH 38/44] KVM: Disable CPU hotplug during hardware enabling
` [PATCH 39/44] KVM: Drop kvm_count_lock and instead protect kvm_usage_count with kvm_lock
` [PATCH 40/44] KVM: Remove on_each_cpu(hardware_disable_nolock) in kvm_exit()
` [PATCH 41/44] KVM: Use a per-CPU variable to track which CPUs have enabled virtualization
` [PATCH 42/44] KVM: Make hardware_enable_failed a local variable in the "enable all" path
` [PATCH 43/44] KVM: Register syscore (suspend/resume) ops early in kvm_init()
` [PATCH 44/44] KVM: Opt out of generic hardware enabling on s390 and PPC

[PATCH v2 -next] powerpc/powermac: Fix symbol not declared warnings
 2022-11-03  7:08 UTC  (4+ messages)

[PATCH] perf test bpf: Skip test if kernel-debuginfo is not present
 2022-11-03  6:57 UTC  (2+ messages)

[PATCH v2] powerpc/hv-gpci: Fix hv_gpci event list
 2022-11-03  6:47 UTC  (2+ messages)

[PATCH v9 0/7] Use per-CPU temporary mappings for patching on Radix MMU
 2022-11-03  3:10 UTC  (21+ messages)
` [PATCH v9 2/7] powerpc/code-patching: Handle RWX patching initialisation error
` [PATCH v9 3/7] powerpc/code-patching: Use WARN_ON and fix check in poking_init
` [PATCH v9 4/7] powerpc/code-patching: Verify instruction patch succeeded
` [PATCH v9 5/7] powerpc/tlb: Add local flush for page given mm_struct and psize
` [PATCH v9 6/7] powerpc/code-patching: Use temporary mm for Radix MMU
` [PATCH v9 7/7] powerpc/code-patching: Consolidate and cache per-cpu patching context

[GIT PULL] Please pull powerpc/linux.git powerpc-6.1-4 tag
 2022-11-03  2:09 UTC 

Issues with the first PowerPC updates for the kernel 6.1
 2022-11-03  0:08 UTC  (3+ messages)
` Issues with the first PowerPC updates for the kernel 6.1 #forregzbot

[PATCH v5 00/16] objtool: Enable and implement --mcount option on powerpc
 2022-11-03  0:01 UTC  (7+ messages)
` [PATCH v5 02/16] powerpc: Override __ALIGN and __ALIGN_STR macros
` [PATCH v5 06/16] powerpc: Fix objtool unannotated intra-function call warnings on PPC32

[PATCH 1/4] powerpc/64: Add INTERRUPT_SANITIZE_REGISTERS Kconfig
 2022-11-02 22:45 UTC  (4+ messages)
` [PATCH 2/4] powerpc/64s: Clear gprs on interrupt routine entry on Book3S
` [PATCH 3/4] powerpc/64e: Clear gprs on interrupt routine entry on Book3E
` [PATCH 4/4] powerpc/64s: Sanitise user registers on interrupt in pseries

[PATCH v1 0/6] mm/autonuma: replace savedwrite infrastructure
 2022-11-02 21:22 UTC  (8+ messages)
` [PATCH v1 1/6] mm/mprotect: allow clean exclusive anon pages to be writable
` [PATCH v1 2/6] mm/mprotect: minor can_change_pte_writable() cleanups
` [PATCH v1 3/6] mm/huge_memory: try avoiding write faults when changing PMD protection
` [PATCH v1 4/6] mm/autonuma: use can_change_(pte|pmd)_writable() to replace savedwrite
` [PATCH v1 5/6] mm: remove unused savedwrite infrastructure
` [PATCH v1 6/6] selftests/vm: anon_cow: add mprotect() optimization tests

[PATCH v3 0/2] Fix /proc/cpuinfo cpumask warning
 2022-11-02 18:44 UTC  (11+ messages)
` [PATCH v3 2/2] x86: "

[RFC PATCH v2 0/8] Generic IPI sending tracepoint
 2022-11-02 18:33 UTC  (9+ messages)
` [RFC PATCH v2 1/8] DO-NOT-MERGE: tracing: Add __cpumask to denote a trace event field that is a cpumask_t
` [RFC PATCH v2 2/8] trace: Add trace_ipi_send_cpumask()
` [RFC PATCH v2 3/8] sched, smp: Trace IPIs sent via send_call_function_single_ipi()
` [RFC PATCH v2 4/8] smp: Trace IPIs sent via arch_send_call_function_ipi_mask()
` [RFC PATCH v2 5/8] irq_work: Trace self-IPIs sent via arch_irq_work_raise()
` [RFC PATCH v2 6/8] treewide: Trace IPIs sent via smp_send_reschedule()
` [RFC PATCH v2 7/8] smp: reword smp call IPI comment
` [RFC PATCH v2 8/8] sched, smp: Trace smp callback causing an IPI

[PATCH v2] mm, hwpoison: Try to recover from copy-on write faults
 2022-11-02 14:30 UTC  (10+ messages)
` [PATCH v3 0/2] Copy-on-write poison recovery
  ` [PATCH v3 1/2] mm, hwpoison: Try to recover from copy-on write faults
  ` [PATCH v4 0/2] Copy-on-write poison recovery
    ` [PATCH v4 1/2] mm, hwpoison: Try to recover from copy-on write faults
    ` [PATCH v4 2/2] mm, hwpoison: When copy-on-write hits poison, take page offline

[PATCH] powerpc/boot: Fix compilation of uImage for e500 platforms
 2022-11-02 14:05 UTC  (10+ messages)
` [PATCH v3] powerpc/boot: Don't always pass -mcpu=powerpc when building 32-bit uImage

[PATCH] powerpc: Fix some kernel-doc warnings
 2022-11-02 14:03 UTC  (2+ messages)

[PATCH v2] powerpc/fsl_rio: add missing of_node_put() in fsl_rio_setup()
 2022-11-02 13:57 UTC  (3+ messages)

[PATCH] mm: remove kern_addr_valid() completely
 2022-11-01 17:47 UTC  (2+ messages)

[PATCH v2 0/2] gpiolib: more cleanups to get rid of of_node
 2022-11-02 11:01 UTC  (3+ messages)

[PATCH] powerpc: replace ternary operator with min()
 2022-11-02  9:23 UTC  (3+ messages)

[PATCH 1/2] tools/perf: Fix printing os->prefix in CSV metrics output
 2022-11-02  8:37 UTC  (4+ messages)
` [PATCH 2/2] tools/perf: Fix printing field separator "

[PATCH 0/5] powerpc/kprobes: preempt related changes and cleanups
 2022-11-02  8:36 UTC  (3+ messages)
` [PATCH 5/5] powerpc/kprobes: Remove unnecessary headers from kprobes

[PATCH -next v2] powerpc/mpic_msgr: fix cast removes address space of expression warnings
 2022-11-02  8:34 UTC  (2+ messages)

[PATCH] [perf/core: Update sample_flags for raw_data in perf_output_sample
 2022-11-02  8:19 UTC  (3+ messages)

[PATCH 5.15 098/132] perf vendor events power10: Fix hv-24x7 metric events
 2022-11-02  2:33 UTC 

[PATCH 6.0 201/240] perf vendor events power10: Fix hv-24x7 metric events
 2022-11-02  2:32 UTC 

[PATCH v8 0/9] phy: Add support for Lynx 10G SerDes
 2022-11-01 23:41 UTC  (11+ messages)
` [PATCH v8 4/9] phy: fsl: Add Lynx 10G SerDes driver

[PATCH 0/7] powerpc/85xx: p2020: Create one unified machine description
 2022-11-01 23:25 UTC  (7+ messages)
` [PATCH 2/7] powerpc/85xx: Mark mpc85xx_ds_pic_init() as static

[PATCH] powerpc: dts: turris1x.dts: Add channel labels for temperature sensor
 2022-11-01 22:43 UTC  (4+ messages)

[PATCH 1/2] powerpc/pci: Allow to disable filling deprecated pci-OF-bus-map
 2022-11-01 22:26 UTC  (3+ messages)

[PATCH] powerpc/fsl-pci: Choose PCI host bridge with alias pci0 as the primary
 2022-11-01 22:19 UTC  (3+ messages)

[PATCH v3] i2c/pasemi: PASemi I2C controller IRQ enablement
 2022-11-01 20:06 UTC  (6+ messages)

[powerpc:fixes-test] BUILD SUCCESS 02a771c9a68a9f08cce4ec5e324fb1bc4dce7202
 2022-11-01 18:36 UTC 

Issues with the first PowerPC updates for the kernel 6.1
 2022-11-01 16:46 UTC  (4+ messages)

[PATCH 0/3] Add support for MICFIL on i.MX93 platform
 2022-11-01 14:33 UTC  (8+ messages)
` [PATCH 1/3] ASoC: dt-bindings: fsl,micfil: Add compatible string for "
` [PATCH 2/3] ASoC: fsl_micfil: Add support "
` [PATCH 3/3] ASoC: fsl_micfil: Add support when using eDMA

[PATCH] powerpc/32: Select ARCH_SPLIT_ARG64
 2022-11-01 12:25 UTC  (2+ messages)

[PATCH] powerpc/64e: Fix amdgpu build on Book3E w/o AltiVec
 2022-11-01 12:25 UTC  (2+ messages)

[PATCH] Change maintainers for vnic driver
 2022-11-01  3:10 UTC  (2+ messages)

[PATCH net-next v7 00/10] net: dpaa: Convert to phylink
 2022-10-31 22:19 UTC  (6+ messages)
` [PATCH net-next v7 08/10] powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G

[PATCH v4 0/2] mm: arm64: bring up BATCHED_UNMAP_TLB_FLUSH
 2022-10-31 18:36 UTC  (11+ messages)
` [PATCH v4 2/2] arm64: support batched/deferred tlb shootdown during page reclamation

[PATCH v3 0/5] PCI: Remove unnecessary <linux/of_irq.h> includes
 2022-10-31 16:58 UTC  (7+ messages)
` [PATCH v3 1/5] PCI: altera-msi: Include <linux/irqdomain.h> explicitly
` [PATCH v3 2/5] PCI: microchip: "
` [PATCH v3 3/5] PCI: mvebu: "
` [PATCH v3 4/5] PCI: xgene-msi: "
` [PATCH v3 5/5] PCI: Remove unnecessary <linux/of_irq.h> includes

[PATCH v2 4/4] PCI: Remove unnecessary <linux/of_irq.h> includes
 2022-10-31  8:30 UTC  (2+ messages)

[PATCH] powerpc/pseries/eeh: Fix some kernel-doc warnings
 2022-10-31  6:37 UTC 


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).