linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-07-23 00:02:00 to 2024-07-27 00:42:32 UTC [more...]

[PATCH v12 00/84] KVM: Stop grabbing references to PFNMAP'd pages
 2024-07-26 23:52 UTC  (72+ messages)
` [PATCH v12 01/84] KVM: arm64: Release pfn, i.e. put page, if copying MTE tags hits ZONE_DEVICE
` [PATCH v12 02/84] KVM: arm64: Disallow copying MTE to guest memory while KVM is dirty logging
` [PATCH v12 03/84] KVM: Drop KVM_ERR_PTR_BAD_PAGE and instead return NULL to indicate an error
` [PATCH v12 04/84] KVM: Allow calling kvm_release_page_{clean,dirty}() on a NULL page pointer
` [PATCH v12 05/84] KVM: Add kvm_release_page_unused() API to put pages that KVM never consumes
` [PATCH v12 06/84] KVM: x86/mmu: Skip the "try unsync" path iff the old SPTE was a leaf SPTE
` [PATCH v12 07/84] KVM: x86/mmu: Mark folio dirty when creating SPTE, not when zapping/modifying
` [PATCH v12 08/84] KVM: x86/mmu: Mark page/folio accessed only when zapping leaf SPTEs
` [PATCH v12 09/84] KVM: x86/mmu: Don't force flush if SPTE update clears Accessed bit
` [PATCH v12 10/84] KVM: x86/mmu: Use gfn_to_page_many_atomic() when prefetching indirect PTEs
` [PATCH v12 11/84] KVM: Rename gfn_to_page_many_atomic() to kvm_prefetch_pages()
` [PATCH v12 12/84] KVM: Drop @atomic param from gfn=>pfn and hva=>pfn APIs
` [PATCH v12 13/84] KVM: Annotate that all paths in hva_to_pfn() might sleep
` [PATCH v12 14/84] KVM: Replace "async" pointer in gfn=>pfn with "no_wait" and error code
` [PATCH v12 15/84] KVM: x86/mmu: Drop kvm_page_fault.hva, i.e. don't track intermediate hva
` [PATCH v12 16/84] KVM: Drop unused "hva" pointer from __gfn_to_pfn_memslot()
` [PATCH v12 17/84] KVM: Introduce kvm_follow_pfn() to eventually replace "gfn_to_pfn" APIs
` [PATCH v12 18/84] KVM: Remove pointless sanity check on @map param to kvm_vcpu_(un)map()
` [PATCH v12 19/84] KVM: Explicitly initialize all fields at the start of kvm_vcpu_map()
` [PATCH v12 20/84] KVM: Use NULL for struct page pointer to indicate mremapped memory
` [PATCH v12 21/84] KVM: nVMX: Rely on kvm_vcpu_unmap() to track validity of eVMCS mapping
` [PATCH v12 22/84] KVM: nVMX: Drop pointless msr_bitmap_map field from struct nested_vmx
` [PATCH v12 23/84] KVM: nVMX: Add helper to put (unmap) vmcs12 pages
` [PATCH v12 24/84] KVM: Use plain "struct page" pointer instead of single-entry array
` [PATCH v12 25/84] KVM: Provide refcounted page as output field in struct kvm_follow_pfn
` [PATCH v12 26/84] KVM: Move kvm_{set,release}_page_{clean,dirty}() helpers up in kvm_main.c
` [PATCH v12 27/84] KVM: pfncache: Precisely track refcounted pages
` [PATCH v12 28/84] KVM: Migrate kvm_vcpu_map() to kvm_follow_pfn()
` [PATCH v12 29/84] KVM: Pin (as in FOLL_PIN) pages during kvm_vcpu_map()
` [PATCH v12 30/84] KVM: nVMX: Mark vmcs12's APIC access page dirty when unmapping
` [PATCH v12 31/84] KVM: Pass in write/dirty to kvm_vcpu_map(), not kvm_vcpu_unmap()
` [PATCH v12 32/84] KVM: Get writable mapping for __kvm_vcpu_map() only when necessary
` [PATCH v12 33/84] KVM: Disallow direct access (w/o mmu_notifier) to unpinned pfn by default
` [PATCH v12 34/84] KVM: Add a helper to lookup a pfn without grabbing a reference
` [PATCH v12 35/84] KVM: x86: Use kvm_lookup_pfn() to check if retrying #PF is useful
` [PATCH v12 36/84] KVM: x86: Use kvm_lookup_pfn() to check if APIC access page was installed
` [PATCH v12 37/84] KVM: x86/mmu: Add "mmu" prefix fault-in helpers to free up generic names
` [PATCH v12 38/84] KVM: x86/mmu: Put direct prefetched pages via kvm_release_page_clean()
` [PATCH v12 39/84] KVM: x86/mmu: Add common helper to handle prefetching SPTEs
` [PATCH v12 40/84] KVM: x86/mmu: Add helper to "finish" handling a guest page fault
` [PATCH v12 41/84] KVM: x86/mmu: Mark pages/folios dirty at the origin of make_spte()
` [PATCH v12 42/84] KVM: Move declarations of memslot accessors up in kvm_host.h
` [PATCH v12 43/84] KVM: Add kvm_faultin_pfn() to specifically service guest page faults
` [PATCH v12 44/84] KVM: x86/mmu: Convert page fault paths to kvm_faultin_pfn()
` [PATCH v12 45/84] KVM: guest_memfd: Provide "struct page" as output from kvm_gmem_get_pfn()
` [PATCH v12 46/84] KVM: x86/mmu: Put refcounted pages instead of blindly releasing pfns
` [PATCH v12 47/84] KVM: x86/mmu: Don't mark unused faultin pages as accessed
` [PATCH v12 48/84] KVM: Move x86's API to release a faultin page to common KVM
` [PATCH v12 49/84] KVM: VMX: Hold mmu_lock until page is released when updating APIC access page
` [PATCH v12 50/84] KVM: VMX: Use __kvm_faultin_page() to get APIC access page/pfn
` [PATCH v12 51/84] KVM: PPC: e500: Mark "struct page" dirty in kvmppc_e500_shadow_map()
` [PATCH v12 52/84] KVM: PPC: e500: Mark "struct page" pfn accessed before dropping mmu_lock
` [PATCH v12 53/84] KVM: PPC: e500: Use __kvm_faultin_pfn() to handle page faults
` [PATCH v12 54/84] KVM: arm64: Mark "struct page" pfns accessed/dirty before dropping mmu_lock
` [PATCH v12 55/84] KVM: arm64: Use __kvm_faultin_pfn() to handle memory aborts
` [PATCH v12 56/84] KVM: RISC-V: Mark "struct page" pfns dirty iff a stage-2 PTE is installed
` [PATCH v12 57/84] KVM: RISC-V: Mark "struct page" pfns accessed before dropping mmu_lock
` [PATCH v12 58/84] KVM: RISC-V: Use kvm_faultin_pfn() when mapping pfns into the guest
` [PATCH v12 59/84] KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s HV
` [PATCH v12 60/84] KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s Radix
` [PATCH v12 61/84] KVM: PPC: Drop unused @kvm_ro param from kvmppc_book3s_instantiate_page()
` [PATCH v12 62/84] KVM: PPC: Book3S: Mark "struct page" pfns dirty/accessed after installing PTE
` [PATCH v12 63/84] KVM: PPC: Use kvm_faultin_pfn() to handle page faults on Book3s PR
` [PATCH v12 64/84] KVM: LoongArch: Mark "struct page" pfns dirty only in "slow" page fault path
` [PATCH v12 65/84] KVM: LoongArch: Mark "struct page" pfns accessed "
` [PATCH v12 66/84] KVM: LoongArch: Mark "struct page" pfn accessed before dropping mmu_lock
` [PATCH v12 67/84] KVM: LoongArch: Use kvm_faultin_pfn() to map pfns into the guest
` [PATCH v12 68/84] KVM: MIPS: Mark "struct page" pfns dirty only in "slow" page fault path
` [PATCH v12 69/84] KVM: MIPS: Mark "struct page" pfns accessed "
` [PATCH v12 70/84] KVM: MIPS: Mark "struct page" pfns accessed prior to dropping mmu_lock
` [PATCH v12 71/84] KVM: MIPS: Use kvm_faultin_pfn() to map pfns into the guest

[PATCH 07/20] soc/qman: test: Use kthread_run_on_cpu()
 2024-07-26 21:56 UTC 

[PATCH 04/15] block: add an API to atomically update queue limits
 2024-07-26 20:48 UTC 

[PATCH v2] PCI: Fix crash during pci_dev hot-unplug on pseries KVM guest
 2024-07-26 18:45 UTC  (15+ messages)

[PATCH v4 00/29] arm64: Permission Overlay Extension
 2024-07-26 17:39 UTC  (27+ messages)
` [PATCH v4 04/29] arm64: disable trapping of POR_EL0 to EL2
` [PATCH v4 06/29] arm64: context switch POR_EL0 register
` [PATCH v4 10/29] arm64: enable the Permission Overlay Extension for EL0
` [PATCH v4 13/29] arm64: convert protection key into vm_flags and pgprot values
` [PATCH v4 15/29] arm64: handle PKEY/POE faults
` [PATCH v4 17/29] arm64: implement PKEYS support
` [PATCH v4 18/29] arm64: add POE signal support
` [PATCH v4 19/29] arm64: enable PKEY support for CPUs with S1POE

[PATCH v1 0/3] mm: split PTE/PMD PT table Kconfig cleanups+clarifications
 2024-07-26 15:07 UTC  (4+ messages)
` [PATCH v1 1/3] mm: turn USE_SPLIT_PTE_PTLOCKS / USE_SPLIT_PTE_PTLOCKS into Kconfig options
` [PATCH v1 2/3] mm/hugetlb: enforce that PMD PT sharing has split PMD PT locks
` [PATCH v1 3/3] powerpc/8xx: document and enforce that split PT locks are not used

[PATCH] perf vendor events power10: Update JSON/events
 2024-07-26 14:08 UTC  (4+ messages)

[PATCH 1/2] MAINTAINERS: Mark powerpc Cell as orphaned
 2024-07-26 13:15 UTC  (4+ messages)
` [PATCH 2/2] MAINTAINERS: Mark powerpc spufs "

[PATCH V8 00/15] Add data type profiling support for powerpc
 2024-07-26 12:35 UTC  (12+ messages)
` [PATCH V8 03/15] tools/perf: Update TYPE_STATE_MAX_REGS to include max of regs in powerpc
` [PATCH V8 04/15] tools/perf: Add disasm_line__parse to parse raw instruction for powerpc
` [PATCH V8 14/15] tools/perf: Add support to use libcapstone in powerpc

[PATCH v3 0/8] mm/mprotect: Fix dax puds
 2024-07-26 11:56 UTC  (7+ messages)
` [PATCH v3 8/8] mm/mprotect: fix dax pud handlings

[PATCH v2 00/25] mm: introduce numa_memblks
 2024-07-26  9:40 UTC  (30+ messages)
` [PATCH v2 01/25] mm: move kernel/numa.c to mm/
` [PATCH v2 02/25] MIPS: sgi-ip27: make NODE_DATA() the same as on all other architectures
` [PATCH v2 03/25] MIPS: sgi-ip27: ensure node_possible_map only contains valid nodes
` [PATCH v2 04/25] MIPS: sgi-ip27: drop HAVE_ARCH_NODEDATA_EXTENSION
` [PATCH v2 05/25] MIPS: loongson64: rename __node_data to node_data
` [PATCH v2 06/25] MIPS: loongson64: drop HAVE_ARCH_NODEDATA_EXTENSION
` [PATCH v2 07/25] mm: drop CONFIG_HAVE_ARCH_NODEDATA_EXTENSION
` [PATCH v2 08/25] arch, mm: move definition of node_data to generic code
` [PATCH v2 09/25] arch, mm: pull out allocation of NODE_DATA "
` [PATCH v2 10/25] x86/numa: simplify numa_distance allocation
` [PATCH v2 11/25] x86/numa: use get_pfn_range_for_nid to verify that node spans memory
` [PATCH v2 12/25] x86/numa: move FAKE_NODE_* defines to numa_emu
` [PATCH v2 13/25] x86/numa_emu: simplify allocation of phys_dist
` [PATCH v2 14/25] x86/numa_emu: split __apicid_to_node update to a helper function
` [PATCH v2 15/25] x86/numa_emu: use a helper function to get MAX_DMA32_PFN
` [PATCH v2 16/25] x86/numa: numa_{add,remove}_cpu: make cpu parameter unsigned
` [PATCH v2 17/25] mm: introduce numa_memblks
` [PATCH v2 18/25] mm: move numa_distance and related code from x86 to numa_memblks
` [PATCH v2 19/25] mm: introduce numa_emulation
` [PATCH v2 20/25] mm: numa_memblks: introduce numa_memblks_init
` [PATCH v2 21/25] mm: numa_memblks: make several functions and variables static
` [PATCH v2 22/25] mm: numa_memblks: use memblock_{start,end}_of_DRAM() when sanitizing meminfo
` [PATCH v2 23/25] arch_numa: switch over to numa_memblks
` [PATCH v2 24/25] mm: make range-to-target_node lookup facility a part of numa_memblks
` [PATCH v2 25/25] docs: move numa=fake description to kernel-parameters.txt

[kvm-unit-tests PATCH] build: retain intermediate .aux.o targets
 2024-07-26  9:05 UTC  (7+ messages)

PCI: Work around PCIe link training failures
 2024-07-26  8:04 UTC  (3+ messages)

[GIT PULL] sysctl constification changes for v6.11-rc1
 2024-07-25 20:37 UTC  (3+ messages)

[PATCH v5 0/1] Add XSAVE layout description to Core files for debuggers to support varying XSAVE layouts
 2024-07-25 16:10 UTC  (2+ messages)
` [PATCH v5 1/1] x86/elf: Add a new .note section containing xfeatures buffer layout info to x86 core files

[PATCH] ASoC: fsl-asoc-card: Dynamically allocate memory for snd_soc_dai_link_components
 2024-07-25 15:39 UTC  (2+ messages)

move features flags into queue_limits v2
 2024-07-25 13:00 UTC  (4+ messages)
` [PATCH 14/26] block: move the nonrot flag to queue_limits

[PATCH v3] of: remove internal arguments from of_property_for_each_u32()
 2024-07-25  7:56 UTC  (2+ messages)

[PATCH RFC v2 0/5] arm64: support DMA zone starting above 4GB
 2024-07-25 11:49 UTC  (4+ messages)
` [PATCH RFC v2 2/5] of: get dma area lower limit

[PATCH 0/2] ASoC: fsl_micfil: Check the difference for i.MX8 and i.MX9
 2024-07-25  8:54 UTC  (3+ messages)
` [PATCH 1/2] ASoC: fsl_micfil: Expand the range of FIFO watermark mask
` [PATCH 2/2] ASoC: fsl_micfil: Differentiate register access permission for platforms

[PATCH] powerpc/ftrace: restore r2 to caller's stack on livepatch sibling call
 2024-07-24 18:33 UTC 

[PATCH v2] of: remove internal arguments from of_property_for_each_u32()
 2024-07-24 13:53 UTC  (4+ messages)

[PATCH 00/14] replace call_rcu by kfree_rcu for simple kmem_cache_free callback
 2024-07-24 14:40 UTC  (12+ messages)

[PATCH v2 17/16] xz: Remove XZ_EXTERN and extern from functions
 2024-07-24 12:44 UTC  (2+ messages)

[PATCH v2 0/5] kallsyms: Emit symbol for holes in text and fix weak function issue
 2024-07-24  5:11 UTC  (8+ messages)
` [PATCH v2 1/5] kallsyms: Emit symbol at the holes in the text
` [PATCH v2 2/5] module: kallsyms: Determine exact function size
` [PATCH v2 3/5] ftrace: Skip invalid __fentry__ in ftrace_process_locs()
` [PATCH v2 4/5] ftrace: Fix possible out-of-bound issue "
` [PATCH v2 5/5] ftrace: Revert the FTRACE_MCOUNT_MAX_OFFSET workaround

[PATCH v2] cpufreq: powerpc: add missing MODULE_DESCRIPTION() macros
 2024-07-24  4:39 UTC  (3+ messages)

[PATCH v4 0/1] Add XSAVE layout description to Core files for debuggers to support varying XSAVE layouts
 2024-07-23 22:58 UTC  (4+ messages)
` [PATCH v4 1/1] x86/elf: Add a new .note section containing xfeatures buffer layout info to x86 core files

[PATCH RFC 0/6] mm: THP-agnostic refactor on huge mappings
 2024-07-23 21:22 UTC  (6+ messages)

[PATCH v5 17/21] mm/mmap: Relocate arch_unmap() to vms_complete_munmap_vmas()
 2024-07-23 14:11 UTC  (3+ messages)

[PATCH 0/2] Make ELOG log and trace consistently with GHES
 2024-07-23 13:43 UTC  (2+ messages)

[PATCH 00/17] mm: introduce numa_memblks
 2024-07-23  0:15 UTC  (3+ messages)
` [PATCH 04/17] arch, mm: move definition of node_data to generic code


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