All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2024-10-10 18:11:23 to 2024-10-10 18:27:06 UTC [more...]

[PATCH v13 00/85] KVM: Stop grabbing references to PFNMAP'd pages
 2024-10-10 18:24 UTC  (150+ messages)
` [PATCH v13 01/85] KVM: Drop KVM_ERR_PTR_BAD_PAGE and instead return NULL to indicate an error
` [PATCH v13 02/85] KVM: Allow calling kvm_release_page_{clean,dirty}() on a NULL page pointer
` [PATCH v13 03/85] KVM: Add kvm_release_page_unused() API to put pages that KVM never consumes
` [PATCH v13 04/85] KVM: x86/mmu: Skip the "try unsync" path iff the old SPTE was a leaf SPTE
` [PATCH v13 05/85] KVM: x86/mmu: Don't overwrite shadow-present MMU SPTEs when prefaulting
` [PATCH v13 06/85] KVM: x86/mmu: Invert @can_unsync and renamed to @synchronizing
` [PATCH v13 07/85] KVM: x86/mmu: Mark new SPTE as Accessed when synchronizing existing SPTE
` [PATCH v13 08/85] KVM: x86/mmu: Mark folio dirty when creating SPTE, not when zapping/modifying
` [PATCH v13 09/85] KVM: x86/mmu: Mark page/folio accessed only when zapping leaf SPTEs
` [PATCH v13 10/85] KVM: x86/mmu: Use gfn_to_page_many_atomic() when prefetching indirect PTEs
` [PATCH v13 11/85] KVM: Rename gfn_to_page_many_atomic() to kvm_prefetch_pages()
` [PATCH v13 12/85] KVM: Drop @atomic param from gfn=>pfn and hva=>pfn APIs
` [PATCH v13 13/85] KVM: Annotate that all paths in hva_to_pfn() might sleep
` [PATCH v13 14/85] KVM: Return ERR_SIGPENDING from hva_to_pfn() if GUP returns -EGAIN
` [PATCH v13 15/85] KVM: Drop extra GUP (via check_user_page_hwpoison()) to detect poisoned page
` [PATCH v13 16/85] KVM: Replace "async" pointer in gfn=>pfn with "no_wait" and error code
` [PATCH v13 17/85] KVM: x86/mmu: Drop kvm_page_fault.hva, i.e. don't track intermediate hva
` [PATCH v13 18/85] KVM: Drop unused "hva" pointer from __gfn_to_pfn_memslot()
` [PATCH v13 19/85] KVM: Introduce kvm_follow_pfn() to eventually replace "gfn_to_pfn" APIs
` [PATCH v13 20/85] KVM: Remove pointless sanity check on @map param to kvm_vcpu_(un)map()
` [PATCH v13 21/85] KVM: Explicitly initialize all fields at the start of kvm_vcpu_map()
` [PATCH v13 22/85] KVM: Use NULL for struct page pointer to indicate mremapped memory
` [PATCH v13 23/85] KVM: nVMX: Rely on kvm_vcpu_unmap() to track validity of eVMCS mapping
` [PATCH v13 24/85] KVM: nVMX: Drop pointless msr_bitmap_map field from struct nested_vmx
` [PATCH v13 25/85] KVM: nVMX: Add helper to put (unmap) vmcs12 pages
` [PATCH v13 26/85] KVM: Use plain "struct page" pointer instead of single-entry array
` [PATCH v13 27/85] KVM: Provide refcounted page as output field in struct kvm_follow_pfn
` [PATCH v13 28/85] KVM: Move kvm_{set,release}_page_{clean,dirty}() helpers up in kvm_main.c
` [PATCH v13 29/85] KVM: pfncache: Precisely track refcounted pages
` [PATCH v13 30/85] KVM: Migrate kvm_vcpu_map() to kvm_follow_pfn()
` [PATCH v13 31/85] KVM: Pin (as in FOLL_PIN) pages during kvm_vcpu_map()
` [PATCH v13 32/85] KVM: nVMX: Mark vmcs12's APIC access page dirty when unmapping
` [PATCH v13 33/85] KVM: Pass in write/dirty to kvm_vcpu_map(), not kvm_vcpu_unmap()
` [PATCH v13 34/85] KVM: Get writable mapping for __kvm_vcpu_map() only when necessary
` [PATCH v13 35/85] KVM: Disallow direct access (w/o mmu_notifier) to unpinned pfn by default
` [PATCH v13 36/85] KVM: x86: Don't fault-in APIC access page during initial allocation
` [PATCH v13 37/85] KVM: x86/mmu: Add "mmu" prefix fault-in helpers to free up generic names
` [PATCH v13 38/85] KVM: x86/mmu: Put direct prefetched pages via kvm_release_page_clean()
` [PATCH v13 39/85] KVM: x86/mmu: Add common helper to handle prefetching SPTEs
` [PATCH v13 40/85] KVM: x86/mmu: Add helper to "finish" handling a guest page fault
` [PATCH v13 41/85] KVM: x86/mmu: Mark pages/folios dirty at the origin of make_spte()
` [PATCH v13 42/85] KVM: Move declarations of memslot accessors up in kvm_host.h
` [PATCH v13 43/85] KVM: Add kvm_faultin_pfn() to specifically service guest page faults
` [PATCH v13 44/85] KVM: x86/mmu: Convert page fault paths to kvm_faultin_pfn()
` [PATCH v13 45/85] KVM: guest_memfd: Pass index, not gfn, to __kvm_gmem_get_pfn()
` [PATCH v13 46/85] KVM: guest_memfd: Provide "struct page" as output from kvm_gmem_get_pfn()
` [PATCH v13 47/85] KVM: x86/mmu: Put refcounted pages instead of blindly releasing pfns
` [PATCH v13 48/85] KVM: x86/mmu: Don't mark unused faultin pages as accessed
` [PATCH v13 49/85] KVM: Move x86's API to release a faultin page to common KVM
` [PATCH v13 50/85] KVM: VMX: Hold mmu_lock until page is released when updating APIC access page
` [PATCH v13 51/85] KVM: VMX: Use __kvm_faultin_page() to get APIC access page/pfn
` [PATCH v13 52/85] KVM: PPC: e500: Mark "struct page" dirty in kvmppc_e500_shadow_map()
` [PATCH v13 53/85] KVM: PPC: e500: Mark "struct page" pfn accessed before dropping mmu_lock
` [PATCH v13 54/85] KVM: PPC: e500: Use __kvm_faultin_pfn() to handle page faults
` [PATCH v13 55/85] KVM: arm64: Mark "struct page" pfns accessed/dirty before dropping mmu_lock
` [PATCH v13 56/85] KVM: arm64: Use __kvm_faultin_pfn() to handle memory aborts
` [PATCH v13 57/85] KVM: RISC-V: Mark "struct page" pfns dirty iff a stage-2 PTE is installed
` [PATCH v13 58/85] KVM: RISC-V: Mark "struct page" pfns accessed before dropping mmu_lock
` [PATCH v13 59/85] KVM: RISC-V: Use kvm_faultin_pfn() when mapping pfns into the guest
` [PATCH v13 60/85] KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s HV
` [PATCH v13 61/85] KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s Radix
` [PATCH v13 62/85] KVM: PPC: Drop unused @kvm_ro param from kvmppc_book3s_instantiate_page()
` [PATCH v13 63/85] KVM: PPC: Book3S: Mark "struct page" pfns dirty/accessed after installing PTE
` [PATCH v13 64/85] KVM: PPC: Use kvm_faultin_pfn() to handle page faults on Book3s PR
` [PATCH v13 65/85] KVM: LoongArch: Mark "struct page" pfns dirty only in "slow" page fault path
` [PATCH v13 66/85] KVM: LoongArch: Mark "struct page" pfns accessed "
` [PATCH v13 67/85] KVM: LoongArch: Mark "struct page" pfn accessed before dropping mmu_lock
` [PATCH v13 68/85] KVM: LoongArch: Use kvm_faultin_pfn() to map pfns into the guest
` [PATCH v13 69/85] KVM: MIPS: Mark "struct page" pfns dirty only in "slow" page fault path
` [PATCH v13 70/85] KVM: MIPS: Mark "struct page" pfns accessed "
` [PATCH v13 71/85] KVM: MIPS: Mark "struct page" pfns accessed prior to dropping mmu_lock
` [PATCH v13 72/85] KVM: MIPS: Use kvm_faultin_pfn() to map pfns into the guest
` [PATCH v13 73/85] KVM: PPC: Remove extra get_page() to fix page refcount leak
` [PATCH v13 74/85] KVM: PPC: Use kvm_vcpu_map() to map guest memory to patch dcbz instructions
` [PATCH v13 75/85] KVM: Convert gfn_to_page() to use kvm_follow_pfn()
` [PATCH v13 76/85] KVM: Add support for read-only usage of gfn_to_page()
` [PATCH v13 77/85] KVM: arm64: Use __gfn_to_page() when copying MTE tags to/from userspace
` [PATCH v13 78/85] KVM: PPC: Explicitly require struct page memory for Ultravisor sharing
` [PATCH v13 79/85] KVM: Drop gfn_to_pfn() APIs now that all users are gone
` [PATCH v13 80/85] KVM: s390: Use kvm_release_page_dirty() to unpin "struct page" memory
` [PATCH v13 81/85] KVM: Make kvm_follow_pfn.refcounted_page a required field
` [PATCH v13 82/85] KVM: x86/mmu: Don't mark "struct page" accessed when zapping SPTEs
` [PATCH v13 83/85] KVM: arm64: Don't mark "struct page" accessed when making SPTE young
` [PATCH v13 84/85] KVM: Drop APIs that manipulate "struct page" via pfns
` [PATCH v13 85/85] KVM: Don't grab reference on VM_MIXEDMAP pfns that have a "struct page"

[PATCH for-9.2 0/7] docs/devel: Convert txt files to rST
 2024-10-10 18:25 UTC  (3+ messages)
` [PATCH 1/7] docs/devel/blkdebug: Convert to rST format

[PATCH v2 0/5] dt-bindings: mfd: convert zii,rave-sp.txt and child txt to yaml format
 2024-10-10 18:26 UTC  (7+ messages)
` [PATCH v2 1/5] dt-bindings: input: convert zii,rave-sp-pwrbutton.txt to yaml
` [PATCH v2 3/5] dt-bindings: nvmem: convert zii,rave-sp-eeprom.txt to yaml format
` [PATCH v2 4/5] dt-bindings: watchdog: convert zii,rave-sp-wdt.txt "

[PATCHSET sched_ext/for-6.12-fixes] sched_ext: Fix RCU and other stalls while iterating tasks during enable/disable
 2024-10-10 18:26 UTC  (4+ messages)
` [PATCH 4/6] sched_ext: bypass mode shouldn't depend on ops.select_cpu()

[PATCH 1/4] power: pmic: Support pmic pf5300
 2024-10-10 18:25 UTC  (2+ messages)

[PATCH][next][V2] octeontx2-af: Fix potential integer overflows on integer shifts
 2024-10-10 18:25 UTC  (2+ messages)

[PATCH 1/2] power: pmic: Support pmic pf0900
 2024-10-10 18:25 UTC  (4+ messages)
` [PATCH 2/2] power: regulator: "

[PATCH] mtd: spi-nor: Clear Winbond SR3 WPS bit on boot
 2024-10-10 18:25 UTC  (2+ messages)

[Buildroot] [PATCH 1/2] package/tini: restore use as docker-init
 2024-10-10 18:25 UTC  (2+ messages)

[PATCH v4 00/28] DCD: Add support for Dynamic Capacity Devices (DCD)
 2024-10-10 18:25 UTC  (3+ messages)
` [PATCH v4 19/28] cxl/mem: Configure dynamic capacity interrupts

minimum curl version effectively changed
 2024-10-10 18:24 UTC 

[PATCH v6 0/3] add support for ad777x family
 2024-10-10 18:25 UTC  (6+ messages)
` [PATCH v6 3/3] drivers: iio: adc: "

[PATCH] checkout: refer to other-worktree branch, not ref
 2024-10-10 18:23 UTC  (3+ messages)

Precision Die Casting for Optimal Product Quality
 2024-10-10 17:53 UTC 

[PATCH 00/24] Complete EEVDF
 2024-10-10 18:23 UTC  (7+ messages)
` [PATCH 17/24] sched/fair: Implement delayed dequeue

[PATCH] media: uvcvideo: Stop stream during unregister
 2024-10-10 18:23 UTC  (5+ messages)

[PATCH 1/4] xfrm: Add support for per cpu xfrm state handling
 2024-10-10 18:22 UTC  (2+ messages)

[PATCH 0/6] iio: adc: ad7380: fix several supplies issues
 2024-10-10 18:22 UTC  (4+ messages)
` [PATCH 2/6] dt-bindings: iio: adc: ad7380: fix ad7380-4 reference supply

[PATCH 0/5] Add new headers for Hyper-V Dom0
 2024-10-10 18:21 UTC  (6+ messages)
` [PATCH 2/5] hyperv: Remove unnecessary #includes
` [PATCH 3/5] hyperv: Add new Hyper-V headers

[PATCH v3] vfio: combine container_create and group_bind
 2024-10-10 18:21 UTC  (2+ messages)

[PATCH][next] ASoC: max98388: Fix missing increment of variable slot_found
 2024-10-10 18:20 UTC 

[PATCH v7 0/4] Introduce pcim_alloc_irq_vectors()
 2024-10-10 18:20 UTC  (2+ messages)

[PATCH 0/7] Lazy preemption bits
 2024-10-10 18:19 UTC  (4+ messages)
` [PATCH 1/7] sched: warn for high latency with TIF_NEED_RESCHED_LAZY

[PATCH v1 00/15] io_uring zero copy rx
 2024-10-10 18:19 UTC  (14+ messages)
` [PATCH v1 11/15] io_uring/zcrx: implement zerocopy receive pp memory provider

[PATCH v3] irqchip/renesas-rzg2l: Fix missing put_device
 2024-10-10 18:18 UTC  (4+ messages)

[PATCH 00/11] STM32 DMA3 updates for STM32MP25
 2024-10-10 18:16 UTC  (7+ messages)
` [PATCH 01/11] dt-bindings: dma: stm32-dma3: prevent packing/unpacking mode
` [PATCH 04/11] dt-bindings: dma: stm32-dma3: prevent linked-list refactoring
` [PATCH 06/11] dt-bindings: dma: stm32-dma3: introduce st,axi-max-burst-len property

[PATCH 0/3] introduce PIDFD_SELF* sentinels
 2024-10-10 18:15 UTC  (4+ messages)
` [PATCH 1/3] pidfd: extend pidfd_get_pid() and de-duplicate pid lookup
` [PATCH 2/3] pidfd: add PIDFD_SELF* sentinels to refer to own thread/process
` [PATCH 3/3] selftests: pidfd: add tests for PIDFD_SELF_*

[PATCH v3 0/2] gdbstub: Introduce ldtul_$endian_p() helpers
 2024-10-10 18:15 UTC  (3+ messages)
` [PATCH v3 2/2] gdbstub/helpers: "

[PATCH v1 1/1] iio: Convert unsigned to unsigned int
 2024-10-10 18:15 UTC 

[PATCH v5] drm/i915/selftests: Implement frequency logging for energy reading validation
 2024-10-10 18:15 UTC  (2+ messages)

[PATCH v2 0/3]clk: at91: add sama7d65 clock support
 2024-10-10 18:13 UTC  (2+ messages)

[PATCH] iio: imu: bmi323: remove redundant register definition
 2024-10-10 18:13 UTC  (2+ messages)

[PATCH 0/1] drm/xe: enable lite restore
 2024-10-10 18:13 UTC  (2+ messages)
` ✓ CI.BAT: success for drm/xe: enable lite restore (rev2)

[PATCH 0/2] add function to set dedicated queue size
 2024-10-10 18:13 UTC  (3+ messages)
` [PATCH 2/2] net/bonding: add command "

[PATCH 0/4] iio: frequecy: adf4371: minor improvements
 2024-10-10 18:12 UTC  (2+ messages)

[PATCH][next] mm/execmem: Remove logically deadcode in execmem.c
 2024-10-10 18:10 UTC 

[PATCH 00/12] btrfs reads through iomap
 2024-10-10 18:12 UTC  (4+ messages)
` [PATCH 04/12] iomap: include iomap_read_end_io() in header

[PATCH v5 0/7] drm/mgag200: Implement VBLANK support
 2024-10-10 18:12 UTC  (9+ messages)

[PATCH v2 0/3] clang-format: fix rules to make the CI job cleaner
 2024-10-10 18:11 UTC  (3+ messages)
` [PATCH v2 1/3] clang-format: change column limit to 96 characters


This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.