linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-09-14 02:12:45 to 2023-09-18 07:38:08 UTC [more...]

[PATCH v3 00/13] mm: jit/text allocator
 2023-09-18  7:29 UTC  (9+ messages)
` [PATCH v3 01/13] nios2: define virtual address space for modules
` [PATCH v3 02/13] mm: introduce execmem_text_alloc() and execmem_free()
` [PATCH v3 03/13] mm/execmem, arch: convert simple overrides of module_alloc to execmem
` [PATCH v3 04/13] mm/execmem, arch: convert remaining "
` [PATCH v3 05/13] modules, execmem: drop module_alloc
` [PATCH v3 06/13] mm/execmem: introduce execmem_data_alloc()
` [PATCH v3 07/13] arm64, execmem: extend execmem_params for generated code allocations
` [PATCH v3 08/13] riscv: "

[PATCH 00/26] KVM: vfio: Hide KVM internals from others
 2023-09-18  6:56 UTC  (28+ messages)
` [PATCH 01/26] vfio: Wrap KVM helpers with CONFIG_KVM instead of CONFIG_HAVE_KVM
` [PATCH 02/26] vfio: Move KVM get/put helpers to colocate it with other KVM related code
` [PATCH 03/26] virt: Declare and define vfio_file_set_kvm() iff CONFIG_KVM is enabled
` [PATCH 04/26] vfio: Add struct to hold KVM assets and dedup group vs. iommufd code
` [PATCH 05/26] vfio: KVM: Pass get/put helpers from KVM to VFIO, don't do circular lookup
` [PATCH 06/26] KVM: Drop CONFIG_KVM_VFIO and just look at KVM+VFIO
` [PATCH 07/26] x86/idt: Wrap KVM logic with CONFIG_KVM instead of CONFIG_HAVE_KVM
` [PATCH 08/26] KVM: x86: Stop selecting and depending on HAVE_KVM
` [PATCH 09/26] KVM: arm64: "
` [PATCH 10/26] KVM: s390: "
` [PATCH 11/26] KVM: MIPS: Make HAVE_KVM a MIPS-only Kconfig
` [PATCH 12/26] KVM: arm64: Move arm_{psci,hypercalls}.h to an internal KVM path
` [PATCH 13/26] KVM: arm64: Include KVM headers to get forward declarations
` [PATCH 14/26] KVM: arm64: Move ARM specific headers in include/kvm to arch directory
` [PATCH 15/26] KVM: Move include/kvm/iodev.h to include/linux as kvm_iodev.h
` [PATCH 16/26] KVM: MIPS: Stop adding virt/kvm to the arch include path
` [PATCH 17/26] KVM: PPC: "
` [PATCH 18/26] KVM: s390: "
` [PATCH 19/26] KVM: Standardize include paths across all architectures
` [PATCH 20/26] perf/x86: KVM: Have perf define a dedicated struct for getting guest PEBS data
` [PATCH 21/26] entry/kvm: Drop @vcpu param from arch_xfer_to_guest_mode_handle_work()
` [PATCH 22/26] entry/kvm: KVM: Move KVM details related to signal/-EINTR into KVM proper
` [PATCH 23/26] KVM: arm64: Move and consolidate "public" functions in asm/kvm_host.h
` [PATCH 24/26] powerpc/xics: Move declaration of xics_wake_cpu() out of kvm_ppc.h
` [PATCH 25/26] KVM: PPC: Rearrange code in kvm_ppc.h to isolate "public" information
` [PATCH 26/26] KVM: Hide KVM internal data structures and values from kernel at-large

[powerpc:fixes-test] BUILD SUCCESS 1174ea047a350ba2e1294131aa14046675ab45fd
 2023-09-18  1:52 UTC 

[powerpc:next-test] BUILD SUCCESS 7258f4986cbcf5f9c5e794f81721c8f46b1d40d1
 2023-09-18  1:53 UTC 

[powerpc:merge] BUILD SUCCESS f62b34b2c9b793a23afd472ca2fece44e95231d8
 2023-09-18  1:53 UTC 

[RFC PATCH v12 00/33] KVM: guest_memfd() and per-page attributes
 2023-09-18  1:14 UTC  (35+ messages)
` [RFC PATCH v12 01/33] KVM: Tweak kvm_hva_range and hva_handler_t to allow reusing for gfn ranges
` [RFC PATCH v12 02/33] KVM: Use gfn instead of hva for mmu_notifier_retry
` [RFC PATCH v12 06/33] KVM: Introduce KVM_SET_USER_MEMORY_REGION2
` [RFC PATCH v12 10/33] KVM: Set the stage for handling only shared mappings in mmu_notifier events
` [RFC PATCH v12 11/33] KVM: Introduce per-page memory attributes
` [RFC PATCH v12 14/33] KVM: Add KVM_CREATE_GUEST_MEMFD ioctl() for guest-specific backing memory
` [RFC PATCH v12 17/33] KVM: x86: Disallow hugepages when memory attributes are mixed
` [RFC PATCH v12 18/33] KVM: x86/mmu: Handle page fault for private memory
` [RFC PATCH v12 19/33] KVM: Drop superfluous __KVM_VCPU_MULTIPLE_ADDRESS_SPACE macro
` [RFC PATCH v12 20/33] KVM: Allow arch code to track number of memslot address spaces per VM
` [RFC PATCH v12 21/33] KVM: x86: Add support for "protected VMs" that can utilize private memory
` [RFC PATCH v12 22/33] KVM: selftests: Drop unused kvm_userspace_memory_region_find() helper
` [RFC PATCH v12 23/33] KVM: selftests: Convert lib's mem regions to KVM_SET_USER_MEMORY_REGION2
` [RFC PATCH v12 24/33] KVM: selftests: Add support for creating private memslots
` [RFC PATCH v12 25/33] KVM: selftests: Add helpers to convert guest memory b/w private and shared
` [RFC PATCH v12 26/33] KVM: selftests: Add helpers to do KVM_HC_MAP_GPA_RANGE hypercalls (x86)
` [RFC PATCH v12 27/33] KVM: selftests: Introduce VM "shape" to allow tests to specify the VM type
` [RFC PATCH v12 28/33] KVM: selftests: Add GUEST_SYNC[1-6] macros for synchronizing more data
` [RFC PATCH v12 29/33] KVM: selftests: Add x86-only selftest for private memory conversions
` [RFC PATCH v12 30/33] KVM: selftests: Add KVM_SET_USER_MEMORY_REGION2 helper
` [RFC PATCH v12 31/33] KVM: selftests: Expand set_memory_region_test to validate guest_memfd()
` [RFC PATCH v12 32/33] KVM: selftests: Add basic selftest for guest_memfd()
` [RFC PATCH v12 33/33] KVM: selftests: Test KVM exit behavior for private memory/access

[PATCH 5.15 421/511] perf vendor events: Update the JSON/events descriptions for power10 platform
 2023-09-17 19:14 UTC  (2+ messages)
` [PATCH 5.15 422/511] perf vendor events: Drop some of the JSON/events "

[PATCH 6.1 074/219] perf vendor events: Update the JSON/events descriptions for power10 platform
 2023-09-17 19:13 UTC  (4+ messages)
` [PATCH 6.1 075/219] perf vendor events: Drop some of the JSON/events "
` [PATCH 6.1 076/219] perf vendor events: Drop STORES_PER_INST metric event "
` [PATCH 6.1 080/219] perf test stat_bpf_counters_cgrp: Fix shellcheck issue about logical operators

[PATCH 6.5 084/285] perf vendor events: Update the JSON/events descriptions for power10 platform
 2023-09-17 19:11 UTC  (6+ messages)
` [PATCH 6.5 085/285] perf vendor events: Drop some of the JSON/events "
` [PATCH 6.5 086/285] perf vendor events: Drop STORES_PER_INST metric event "
` [PATCH 6.5 087/285] perf vendor events: Move JSON/events to appropriate files "
` [PATCH 6.5 088/285] perf vendor events: Update metric event names "
` [PATCH 6.5 097/285] perf test stat_bpf_counters_cgrp: Fix shellcheck issue about logical operators

[PATCH 0/3] powerpc: make fadump resilient with memory add/remove events
 2023-09-17  8:02 UTC  (4+ messages)
` [PATCH 1/3] "
` [PATCH 2/3] powerpc/fadump: add hotplug_ready sysfs interface
` [PATCH 3/3] Documentation/powerpc: update fadump implementation details

[PATCH tty v1 00/74] serial: wrappers for uart port lock
 2023-09-16 19:42 UTC  (10+ messages)
` [PATCH tty v1 47/74] serial: pmac_zilog: Use port lock wrappers
` [PATCH tty v1 72/74] serial: ucc_uart: "

[PATCH][next] net: spider_net: Use size_add() in call to struct_size()
 2023-09-16  0:21 UTC  (3+ messages)

[PATCH 1/3] PCI: layerscape: add function pointer for exit_from_l2()
 2023-09-15 18:43 UTC  (3+ messages)
` [PATCH 2/3] PCI: layerscape: add suspend/resume for ls1021a
` [PATCH 3/3] PCI: layerscape: add suspend/resume for ls1043a

[PATCH 1/3] core/device: Add function to return child node using name at substring "@"
 2023-09-15 18:00 UTC  (5+ messages)
` [PATCH 2/3] skiboot: Update IMC code to use dt_find_by_name_before_addr for checking dt nodes
` [PATCH 3/3] skiboot: Update IMC PMU node names for power10

[PATCH] ASoC: imx-audmix: Fix return error with devm_clk_get()
 2023-09-15 16:13 UTC  (3+ messages)

[PATCH v2] crypto: vmx: Improved AES/XTS performance of 6-way unrolling for ppc
 2023-09-15 14:28 UTC  (5+ messages)

[powerpc:topic/ppc-kvm] BUILD SUCCESS 476652297f94a2e5e5ef29e734b0da37ade94110
 2023-09-15 14:27 UTC 

[PATCH v2] arch: Reserve map_shadow_stack() syscall number for all architectures
 2023-09-15  3:23 UTC  (3+ messages)

[PATCH] powerpc/82xx: Select FSL_SOC
 2023-09-15  7:25 UTC  (5+ messages)

[PATCH] hwmon: (ibmpowernv) refactor deprecated strncpy
 2023-09-15  6:39 UTC  (4+ messages)

[PATCH] powerpc: add `cur_cpu_spec` symbol to vmcoreinfo
 2023-09-15  6:15 UTC  (8+ messages)

[PATCH V3 1/2] tools/perf: Add text_end to "struct dso" to save .text section size
 2023-09-15  5:38 UTC  (4+ messages)
` [PATCH V3 2/2] tools/perf/tests: Fix object code reading to skip address that falls out of text section

[PATCH V4 1/2] tools/perf: Add text_end to "struct dso" to save .text section size
 2023-09-15  5:37 UTC  (2+ messages)
` [PATCH V4 2/2] tools/perf/tests: Fix object code reading to skip address that falls out of text section

[V2 1/2] tools/perf: Add text_end to "struct dso" to save .text section size
 2023-09-15  5:18 UTC  (8+ messages)
` [V2 2/2] tools/perf/tests: Fix object code reading to skip address that falls out of text section

[PATCH v2] powerpc/dexcr: Move HASHCHK trap handler
 2023-09-15  3:46 UTC 

[PATCH 1/1] powerpc: fix a memory leak
 2023-09-15  2:05 UTC  (4+ messages)
  ` [PATCH v2 "

[RFC PATCH v11 12/29] KVM: Add KVM_CREATE_GUEST_MEMFD ioctl() for guest-specific backing memory
 2023-09-15  0:33 UTC  (7+ messages)

[PATCH v3 0/3] Kconfig: Add dependencies of POWER_RESET for pmac32
 2023-09-14 14:37 UTC  (6+ messages)
` [PATCH v3 1/3] powerpc/config: Cleanup pmac32_defconfig
` [PATCH v3 2/3] Kconfig: Add dependencies of POWER_RESET for pmac32
` [PATCH v3 3/3] powerpc/config: Simplify pmac32_defconfig

[PATCH 0/2] arch: Sync all syscall tables with 2 newly added system calls
 2023-09-14 12:26 UTC  (4+ messages)
` [PATCH 2/2] arch: Reserve map_shadow_stack() syscall number for all architectures

[PATCH] powerpc: Export kvm_guest static key, for bcachefs six locks
 2023-09-14 19:50 UTC  (3+ messages)

[PATCH V3] tools/perf: Add includes for detected configs in Makefile.perf
 2023-09-14 17:19 UTC  (4+ messages)

[PATCH 1/2] tools/perf: Add new CONFIG_SHELLCHECK for detecting shellcheck binary
 2023-09-14 17:18 UTC  (2+ messages)
` [PATCH 2/2] tools/perf: Add perf binary dependent rule for shellcheck log in Makefile.perf

[PATCH v2] ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link
 2023-09-14 14:34 UTC  (3+ messages)

[PATCH] powerpc/dexcr: Move HASHCHK trap handler
 2023-09-14 13:55 UTC  (2+ messages)

KASAN debug kernel fails to boot at early stage when CONFIG_SMP=y is set (kernel 6.5-rc5, PowerMac G4 3,6)
 2023-09-14 12:33 UTC  (27+ messages)

[PATCH v7 0/3 RESEND] generic and PowerPC SED Opal keystore
 2023-09-14 11:58 UTC  (6+ messages)
` [PATCH v7 3/3 RESEND] powerpc/pseries: PLPKS SED Opal keystore support

[RFC PATCH v3 0/9] Add audio support in v4l2 framework
 2023-09-14 10:17 UTC  (11+ messages)
` [RFC PATCH v3 1/9] ASoC: fsl_asrc: define functions for memory to memory usage
` [RFC PATCH v3 2/9] ASoC: fsl_easrc: "
` [RFC PATCH v3 3/9] ASoC: fsl_asrc: move fsl_asrc_common.h to include/sound
` [RFC PATCH v3 4/9] ASoC: fsl_asrc: register m2m platform device
` [RFC PATCH v3 5/9] ASoC: fsl_easrc: "
` [RFC PATCH v3 6/9] media: v4l2: Add audio capture and output support
` [RFC PATCH v3 7/9] media: uapi: Add V4L2_CID_USER_IMX_ASRC_RATIO_MOD control
` [RFC PATCH v3 8/9] media: audm2m: add virtual driver for audio memory to memory
` [RFC PATCH v3 9/9] media: imx-asrc: Add memory to memory driver

[PATCH v4 0/8] bpf powerpc: Add BPF_PROBE_MEM support in powerpc JIT compiler
 2023-09-14  8:23 UTC  (4+ messages)
` [PATCH v4 8/8] bpf ppc32: Access only if addr is kernel address

[PATCH v2 0/3] Add dependencies of POWER_RESET for MIPS Malta, x86, and PowerMac
 2023-09-14  7:28 UTC  (6+ messages)
` [PATCH v2 1/3] kconfig: add dependencies of POWER_RESET for mips malta

[PATCH v3 1/2] vmcore: remove dependency with is_kdump_kernel() for exporting vmcore
 2023-09-14  4:41 UTC  (4+ messages)
` [PATCH v3 2/2] powerpc/fadump: make is_kdump_kernel() return false when fadump is active

[PATCH v5 00/11] KVM: PPC: Nested APIv2 guest support
 2023-09-14  3:06 UTC  (12+ messages)
` [PATCH v5 01/11] KVM: PPC: Always use the GPR accessors
` [PATCH v5 02/11] KVM: PPC: Introduce FPR/VR accessor functions
` [PATCH v5 03/11] KVM: PPC: Rename accessor generator macros
` [PATCH v5 04/11] KVM: PPC: Use accessors for VCPU registers
` [PATCH v5 05/11] KVM: PPC: Use accessors for VCORE registers
` [PATCH v5 06/11] KVM: PPC: Book3S HV: Use accessors for VCPU registers
` [PATCH v5 07/11] KVM: PPC: Book3S HV: Introduce low level MSR accessor
` [PATCH v5 08/11] KVM: PPC: Add helper library for Guest State Buffers
` [PATCH v5 09/11] KVM: PPC: Book3s HV: Hold LPIDs in an unsigned long
` [PATCH v5 10/11] KVM: PPC: Add support for nestedv2 guests
` [PATCH v5 11/11] docs: powerpc: Document nested KVM on POWER


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