All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2024-07-26 21:57:55 to 2024-07-26 23:52:27 UTC [more...]

[PATCH v2 00/37] drm/nouveau: misc. cleanups and removal of unused apis
 2024-07-26 15:41 UTC  (8+ messages)
` [PATCH v2 02/37] drm/nouveau: handle pci/tegra drm_dev_{alloc, register} from common code

[PATCH v12 00/84] KVM: Stop grabbing references to PFNMAP'd pages
 2024-07-26 23:52 UTC  (79+ 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 v12 72/84] KVM: PPC: Remove extra get_page() to fix page refcount leak
` [PATCH v12 73/84] KVM: PPC: Use kvm_vcpu_map() to map guest memory to patch dcbz instructions
` [PATCH v12 74/84] KVM: Convert gfn_to_page() to use kvm_follow_pfn()
` [PATCH v12 75/84] KVM: Add support for read-only usage of gfn_to_page()
` [PATCH v12 76/84] KVM: arm64: Use __gfn_to_page() when copying MTE tags to/from userspace
` [PATCH v12 77/84] KVM: PPC: Explicitly require struct page memory for Ultravisor sharing
` [PATCH v12 78/84] KVM: Drop gfn_to_pfn() APIs now that all users are gone

[PATCH v3 0/5] Dump off-cpu samples directly
 2024-07-26 23:48 UTC  (3+ messages)
` [PATCH v3 1/5] perf record off-cpu: Add direct off-cpu event

[PATCH] test: if /proc/kallmodsyms does not exist, skip tests that require it
 2024-07-26 23:48 UTC 

[jgunthorpe:iommu_pt 24/25] drivers/iommu/generic_pt/fmt/amdv1.h:65:59: warning: comparison between 'enum <anonymous>' and 'enum <anonymous>'
 2024-07-26 23:46 UTC 

[PATCH v5 00/14] Add ISP 3A for StarFive
 2024-07-26 23:46 UTC  (6+ messages)
` [PATCH v5 01/14] media: starfive: Add JH7110 ISP module definitions
      ` 回复: "

perf_event_output payload capture flags?
 2024-07-26 23:45 UTC  (3+ messages)
  ` [EXTERNAL] "

[PATCH v3 bpf-next 0/3] introduce new VFS based BPF kfuncs
 2024-07-26 23:44 UTC  (9+ messages)
` [PATCH v3 bpf-next 1/3] bpf: "
` [PATCH v3 bpf-next 2/3] selftests/bpf: add negative tests for "
` [PATCH v3 bpf-next 3/3] selftests/bpf: add positive "

pull request: amdgpu: update DMCUB firmware to v0.0.227.0
 2024-07-26 23:37 UTC  (3+ messages)

[PATCH] ARM: bcm: Select ARM_GIC_V3 for ARCH_BRCMSTB
 2024-07-26 23:34 UTC 

[PATCH v2 00/49] KVM: x86: CPUID overhaul, fixes, and caching
 2024-07-26 23:34 UTC  (6+ messages)
` [PATCH v2 24/49] KVM: x86: #undef SPEC_CTRL_SSBD in cpuid.c to avoid macro collisions

[PATCH v2 0/5] This patchset reorganizes page_counter structures which helps to make
 2024-07-26 23:31 UTC  (5+ messages)
` [PATCH v2 3/5] mm: memcg: merge multiple page_counters into a single structure

[PATCH v2] drm/xe: Take ref to VM in delayed snapshot
 2024-07-26 23:31 UTC  (2+ messages)
` ✗ CI.FULL: failure for drm/xe: Take ref to VM in delayed snapshot (rev2)

[PATCH v5 00/20] x86/resctrl : Support AMD Assignable Bandwidth Monitoring Counters (ABMC)
 2024-07-26 23:22 UTC  (5+ messages)
` [PATCH v5 09/20] x86/resctrl: Initialize monitor counters bitmap
` [PATCH v5 15/20] x86/resctrl: Assign/unassign counters by default when ABMC is enabled

[RFC PATCH net-next v6 00/14] virtio/vsock: support datagrams
 2024-07-26 23:22 UTC  (4+ messages)
` [RFC PATCH net-next v6 07/14] virtio/vsock: add common datagram send path

[Intel-wired-lan] [PATCH v3 iwl-next 0/4] ice: Implement PTP support for E830 devices
 2024-07-26 23:16 UTC  (5+ messages)
` [Intel-wired-lan] [PATCH v3 iwl-next 4/4] ice: combine cross timestamp functions for E82x and E830

[PATCH v3 0/3] mm: memcg: page counters optimizations
 2024-07-26 23:11 UTC  (7+ messages)
` [PATCH v3 1/3] mm: memcg: don't call propagate_protected_usage() needlessly
` [PATCH v3 2/3] mm: page_counters: put page_counter_calculate_protection() under CONFIG_MEMCG
` [PATCH v3 3/3] mm: page_counters: initialize usage using ATOMIC_LONG_INIT() macro

[PATCH v4 0/4] PCI: Allow D3Hot for PCI bridges in Devicetree based platforms
 2024-07-26 23:06 UTC  (3+ messages)

[PATCH] boot: android: fix booting without a ramdisk
 2024-07-26 23:00 UTC 

[PATCH v2] drm/xe/uapi: Expose SIMD16 EU mask in topology query
 2024-07-26 23:00 UTC  (7+ messages)

WG14 paper for removing restrict from nptr in strtol(3)
 2024-07-26 22:59 UTC  (11+ messages)
  ` n3294 - The restrict function attribute as a replacement of the restrict qualifier

[PATCH 0/8] Update lpfc to revision 14.4.0.4
 2024-07-26 23:15 UTC  (9+ messages)
` [PATCH 1/8] lpfc: Change diagnostic log flag during receipt of unknown ELS cmds
` [PATCH 2/8] lpfc: Remove redundant vport assignment when building an abort request
` [PATCH 3/8] lpfc: Validate hdwq pointers before dereferencing in reset/errata paths
` [PATCH 4/8] lpfc: Fix unintentional double clearing of vmid_flag
` [PATCH 5/8] lpfc: Fix unsolicited FLOGI kref imbalance when in direct attached topology
` [PATCH 6/8] lpfc: Update PRLO handling "
` [PATCH 7/8] lpfc: Update lpfc version to 14.4.0.4
` [PATCH 8/8] lpfc: Copyright updates for 14.4.0.4 patches

[PATCH v3 0/7] arm64: hyperv: Support Virtual Trust Level Boot
 2024-07-26 22:59 UTC  (8+ messages)
` [PATCH v3 1/7] arm64: hyperv: Use SMC to detect hypervisor presence
` [PATCH v3 2/7] Drivers: hv: Enable VTL mode for arm64
` [PATCH v3 3/7] Drivers: hv: Provide arch-neutral implementation of get_vtl()
` [PATCH v3 4/7] arm64: hyperv: Boot in a Virtual Trust Level
` [PATCH v3 5/7] dt-bindings: bus: Add Hyper-V VMBus cache coherency and IRQs
` [PATCH v3 6/7] Drivers: hv: vmbus: Get the IRQ number from DT
` [PATCH v3 7/7] PCI: hv: Get vPCI MSI IRQ domain "

[DTrace-devel] [PATCH v2 2/2] tests, actions: fix tst.symmod.sh
 2024-07-26 22:59 UTC 

[PATCH 0/3] btrfs-progs: a more generic uuid tree rebuild ability
 2024-07-26 22:58 UTC  (5+ messages)
` [PATCH 3/3] btrfs-progs: introduce btrfs_rebuild_uuid_tree() for mkfs and btrfs-convert

[PATCH 00/46] btrfs: convert most of the data path to use folios
 2024-07-26 22:57 UTC  (2+ messages)

WARNING in implement
 2024-07-26 22:57 UTC  (2+ messages)
` [syzbot] [input?] [usb?] "

linux-next: duplicate patch in the risc-v tree
 2024-07-26 22:55 UTC  (2+ messages)

stable backport: wifi: mac80211: track capability/opmode NSS separately
 2024-07-26 22:54 UTC 

[PATCH] wifi: rfkill: Correct parameter type for rfkill_set_hw_state_reason()
 2024-07-26 22:51 UTC  (2+ messages)

[PATCH 0/3] selftests/bpf: convert test_dev_cgroup to test_progs
 2024-07-26 22:49 UTC  (4+ messages)
` [PATCH 2/3] "

[PATCH] drm/xe: Prime userptr notifier lock with reclaim
 2024-07-26 22:49 UTC  (8+ messages)
` ✓ CI.Patch_applied: success for "
` ✓ CI.checkpatch: "
` ✓ CI.KUnit: "
` ✓ CI.Build: "
` ✓ CI.Hooks: "
` ✓ CI.checksparse: "
` ✓ CI.BAT: "

[PATCH 0/7] minmax: reduce compilation time
 2024-07-26 22:48 UTC  (9+ messages)

[PATCH 1/4] module: Add module_subinit{_noexit} and module_subeixt helper macros
 2024-07-26 22:45 UTC  (12+ messages)
                  ` [f2fs-dev] "

[RFC PATCH v9 00/11] bpf qdisc
 2024-07-26 22:45 UTC  (9+ messages)
` [RFC PATCH v9 03/11] bpf: Allow struct_ops prog to return referenced kptr
` [RFC PATCH v9 07/11] bpf: net_sched: Allow more optional operators in Qdisc_ops

[PATCH v2 3/7] Generate clearer error message when dtrace is run not as root
 2024-07-26 22:44 UTC  (2+ messages)
` [DTrace-devel] "

[jgunthorpe:iommu_pt 2/25] drivers/iommu/amd/iommu.c:2277:13: warning: variable 'ret' set but not used
 2024-07-26 22:43 UTC 

[PATCH] http: do not ignore proxy path
 2024-07-26 22:43 UTC  (3+ messages)

[PATCH v2 i-g-t v2] tests/core_setmaster: Change break to continue in tweak_perm function
 2024-07-26 22:42 UTC  (2+ messages)
` ✓ CI.xeFULL: success for tests/core_setmaster: Change break to continue in tweak_perm function (rev2)

[REGRESSION][BISECTED] Early boot hangs since f0551af02130
 2024-07-26 22:40 UTC  (8+ messages)

[PATCH 00/20] kthread: Introduce preferred affinity
 2024-07-26 22:40 UTC  (8+ messages)
` [PATCH 07/20] soc/qman: test: Use kthread_run_on_cpu()
` [RFC PATCH 12/20] kthread: Implement preferred affinity
` [RFC PATCH 19/20] treewide: Introduce kthread_run_worker[_on_cpu]()
` [RFC PATCH 20/20] rcu: Use kthread preferred affinity for RCU exp kworkers

[PATCH v2 0/3] Binding and driver for voltage controlled oscillators
 2024-07-26 22:39 UTC  (10+ messages)
` [PATCH v2 1/3] dt-bindings: clocks: add binding for voltage-controlled-oscillators
` [PATCH v2 2/3] clk: add driver for voltage controlled oscillators

[PATCH v1] target/s390x: move @deprecated-props to CpuModelExpansion Info
 2024-07-26 22:38 UTC  (3+ messages)

[PATCH] power: supply: qcom_battmgr: Ignore extra __le32 in info payload
 2024-07-26 22:39 UTC  (2+ messages)

[PATCH 1/2] power: supply: axp288_charger: Fix constant_charge_voltage writes
 2024-07-26 22:39 UTC  (2+ messages)

[PATCH] power: supply: qcom_battmgr: return EAGAIN when firmware service is not up
 2024-07-26 22:39 UTC  (2+ messages)

[PATCH 1/3] wired: Update to the new l_netlink_send API
 2024-07-26 22:37 UTC  (3+ messages)
` [PATCH 2/3] netdev: "
` [PATCH 3/3] monitor: Update to the new ell "

[PATCH] eal: add support for TRNG with Arm RNG feature
 2024-07-26 22:33 UTC  (4+ messages)

[PATCH 5/5] arm64: dts: rockchip: Add GameForce Ace
 2024-07-26 22:33 UTC 

[PATCH v8] btrfs: prefer to allocate larger folio for metadata
 2024-07-26 22:32 UTC  (3+ messages)

[PATCH 0/2] Add driver for Sharp Memory LCD
 2024-07-26 22:12 UTC  (5+ messages)
` [PATCH v2 "
  ` [PATCH v2 2/2] drm/tiny: "

[PATCH bpf-next] xsk: Try to make xdp_umem_reg extension a bit more future-proof
 2024-07-26 22:20 UTC 

[PATCH nfs-utils v6 0/3] nfsdctl: add a new nfsdctl tool to nfs-utils
 2024-07-26 22:20 UTC  (5+ messages)

ZSTD compression-level when CONFIG_MODULE_COMPRESS_ZSTD=y
 2024-07-26 22:18 UTC  (4+ messages)

[PATCH] drm/amdkfd: Fix compile error if HMM support not enabled
 2024-07-26 22:18 UTC  (2+ messages)

[PATCH v2 0/5] hwmon: (max1668) Modernize driver
 2024-07-26 22:16 UTC  (6+ messages)
` [PATCH v2 1/5] hwmon: (max1668) Reorder include files to alphabetic order
` [PATCH v2 2/5] hwmon: (max1668) Use BIT macro
` [PATCH v2 3/5] hwmon: (max1668) Convert to use regmap
` [PATCH v2 4/5] hwmon: (max1668) Replace chip type with number of channels
` [PATCH v2 5/5] hwmon: (max1668) Convert to use with_info hwmon API

[PATCH 3/6] nfsd: Move error code mapping to per-version xdr code
 2024-07-26 22:07 UTC  (2+ messages)

[PATCH v3 00/10] usb: gadget: uvc: effectively fill the udc isoc pipeline with available video buffers
 2024-07-26 22:02 UTC  (11+ messages)
` [PATCH v3 01/10] usb: gadget: uvc: always set interrupt on zero length requests
` [PATCH v3 02/10] usb: gadget: uvc: only enqueue zero length requests in potential underrun
` [PATCH v3 03/10] usb: gadget: uvc: remove pump worker and enqueue all buffers per frame in qbuf
` [PATCH v3 04/10] usb: gadget: uvc: rework to enqueue in pump worker from encoded queue
` [PATCH v3 05/10] usb: gadget: uvc: remove uvc_video_ep_queue_initial_requests
` [PATCH v3 06/10] usb: gadget: uvc: set req_size once when the vb2 queue is calculated
` [PATCH v3 07/10] usb: gadget: uvc: add g_parm and s_parm for frame interval
` [PATCH v3 08/10] usb: gadget: uvc: set req_size and n_requests based on the "
` [PATCH v3 09/10] usb: gadget: uvc: set req_length based on payload by nreqs instead of req_size
` [PATCH v3 10/10] usb: gadget: uvc: add min g_ctrl vidioc and set min buffs to 4

[PATCH v2] drm/xe: Faster devcoredump
 2024-07-26 22:01 UTC  (2+ messages)

[PATCH] Input: atkbd - fix LED state at suspend/resume
 2024-07-26 22:01 UTC  (3+ messages)

[linux-next:master 13643/13921] arch/arm/boot/dts/qcom/qcom-ipq8064-ap148.dtb: sata@29000000: clock-names:0: 'slave_iface' was expected
 2024-07-26 22:00 UTC 

[PATCH 0/2] improving dynamic zswap shrinker protection scheme
 2024-07-26 21:58 UTC  (3+ messages)
` [PATCH 1/2] zswap: implement a second chance algorithm for dynamic zswap shrinker


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.