virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-09-19 07:33:01 to 2025-09-25 10:37:53 UTC [more...]

[PATCH V7 00/19] virtio_ring in order support
 2025-09-25 10:36 UTC  (8+ messages)
` [PATCH V7 01/19] virtio_ring: rename virtqueue_reinit_xxx to virtqueue_reset_xxx()
` [PATCH V7 02/19] virtio_ring: switch to use vring_virtqueue in virtqueue_poll variants
` [PATCH V7 03/19] virtio_ring: unify logic of virtqueue_poll() and more_used()
` [PATCH V7 04/19] virtio_ring: switch to use vring_virtqueue for virtqueue resize variants
` [PATCH V7 05/19] virtio_ring: switch to use vring_virtqueue for virtqueue_kick_prepare variants
` [PATCH V7 06/19] virtio_ring: switch to use vring_virtqueue for virtqueue_add variants
` [PATCH V7 07/19] virtio: switch to use vring_virtqueue for virtqueue_get variants

[PATCH net-next v3 00/11] virtio_net: Add ethtool flow rules support
 2025-09-25 10:35 UTC  (21+ messages)
` [PATCH net-next v3 01/11] virtio-pci: Expose generic device capability operations
` [PATCH net-next v3 02/11] virtio-pci: Expose object create and destroy API
` [PATCH net-next v3 03/11] virtio_net: Create virtio_net directory
` [PATCH net-next v3 04/11] virtio_net: Query and set flow filter caps
` [PATCH net-next v3 05/11] virtio_net: Create a FF group for ethtool steering
` [PATCH net-next v3 06/11] virtio_net: Implement layer 2 ethtool flow rules
` [PATCH net-next v3 07/11] virtio_net: Use existing classifier if possible
` [PATCH net-next v3 08/11] virtio_net: Implement IPv4 ethtool flow rules
` [PATCH net-next v3 09/11] virtio_net: Add support for IPv6 ethtool steering
` [PATCH net-next v3 10/11] virtio_net: Add support for TCP and UDP ethtool rules
` [PATCH net-next v3 11/11] virtio_net: Add get ethtool flow rules ops

[PATCH v4 0/6] Add multiple address spaces support to VDUSE
 2025-09-25  9:13 UTC  (7+ messages)
` [PATCH v4 1/6] vduse: make domain_lock an rwlock
` [PATCH v4 2/6] vduse: add v1 API definition
` [PATCH v4 3/6] vduse: add vq group support
` [PATCH v4 4/6] vduse: return internal vq group struct as map token
` [PATCH v4 5/6] vduse: add vq group asid support
` [PATCH v4 6/6] vduse: bump version number

[PATCH net 0/2] fixes two virtio-net related bugs
 2025-09-25  7:19 UTC  (6+ messages)
` [PATCH net 1/2] virtio-net: fix incorrect flags recording in big mode
` [PATCH net 2/2] virtio-net: correct hdr_len handling for VIRTIO_NET_F_GUEST_HDRLEN
` [syzbot ci] Re: fixes two virtio-net related bugs
    `  "

[PATCH V7 0/2] Use virtio map API for VDUSE
 2025-09-25  6:54 UTC  (4+ messages)
` [PATCH V7 1/2] vdpa: introduce map ops
` [PATCH V7 2/2] vduse: switch to use virtio map API instead of DMA API

[PATCH net] vhost: vringh: Fix copy_to_iter return value check
 2025-09-25  6:04 UTC 

[PATCH] vduse: Use fixed 4KB bounce pages for arm64 64KB page size
 2025-09-25  3:13 UTC  (9+ messages)
  `  "

[PATCH v1 net-next 0/3] virtio_net: Implement VIRTIO_NET_F_OUT_NET_HEADER from virtio spec 1.4
 2025-09-25  1:07 UTC  (8+ messages)
` [PATCH v1 net-next 1/3] net: implement virtio helper to handle outer nw offset
` [PATCH v1 net-next 2/3] virtio_net: enable outer nw header offset support
` [PATCH v1 net-next 3/3] vhost/net: "

[PATCH v4 0/7] Disable ATS via iommu during PCI resets
 2025-09-24 21:02 UTC  (25+ messages)
` [PATCH v4 1/7] iommu/arm-smmu-v3: Add release_domain to attach prior to release_dev()
` [PATCH v4 4/7] iommu: Pass in old domain to attach_dev callback functions
` [PATCH v4 5/7] iommu: Add iommu_get_domain_for_dev_locked() helper
` [PATCH v4 6/7] iommu: Introduce iommu_dev_reset_prepare() and iommu_dev_reset_done()

[PATCH v4 0/4] arm-smmu: select suitable MSI IOVA
 2025-09-24 18:59 UTC  (11+ messages)
` [PATCH v4 2/4] iommu/of: fix device tree configuration for PCI devices
` [PATCH v4 3/4] arm-smmu: select suitable MSI IOVA

[PATCH v2 00/21] paravirt: cleanup and reorg
 2025-09-24 17:08 UTC  (3+ messages)
` [PATCH v2 10/21] riscv/paravirt: Use common code for paravirt_steal_clock()

[PATCH net-next v5 0/8] TUN/TAP & vhost_net: netdev queue flow control to avoid ptr_ring tail drop
 2025-09-24  9:00 UTC  (32+ messages)
` [PATCH net-next v5 1/8] __ptr_ring_full_next: Returns if ring will be full after next insertion
` [PATCH net-next v5 2/8] Move the decision of invalidation out of __ptr_ring_discard_one
` [PATCH net-next v5 3/8] TUN, TAP & vhost_net: Stop netdev queue before reaching a full ptr_ring
` [PATCH net-next v5 4/8] TUN & TAP: Wake netdev queue after consuming an entry
` [PATCH net-next v5 5/8] TUN & TAP: Provide ptr_ring_consume_batched wrappers for vhost_net
` [PATCH net-next v5 6/8] TUN & TAP: Provide ptr_ring_unconsume "
` [PATCH net-next v5 7/8] TUN & TAP: Methods to determine whether file is TUN/TAP "
` [PATCH net-next v5 8/8] vhost_net: Replace rx_ring with calls of TUN/TAP wrappers

[PATCH 0/9] Remove DMA .map_page and .unmap_page callbacks
 2025-09-24  7:32 UTC  (7+ messages)
` [PATCH 1/9] alpha: Convert mapping routine to rely on physical address

[PATCH V6 00/19] virtio_ring in order support
 2025-09-24  5:53 UTC  (31+ messages)
` [PATCH V6 06/19] virtio_ring: switch to use vring_virtqueue for virtqueue_add variants
` [PATCH V6 07/19] virtio: "
` [PATCH V6 13/19] virtio_ring: introduce virtqueue ops
` [PATCH V6 14/19] virtio_ring: determine descriptor flags at one time
` [PATCH V6 15/19] virtio_ring: factor out core logic of buffer detaching
` [PATCH V6 16/19] virtio_ring: factor out core logic for updating last_used_idx
` [PATCH V6 17/19] virtio_ring: factor out split indirect detaching logic
` [PATCH V6 18/19] virtio_ring: factor out split "
` [PATCH V6 19/19] virtio_ring: add in order support

[PATCH v3 0/6] Add multiple address spaces support to VDUSE
 2025-09-24  1:10 UTC  (14+ messages)
` [PATCH v3 1/6] vduse: make domain_lock an rwlock
` [PATCH v3 2/6] vduse: add v1 API definition
` [PATCH v3 3/6] vduse: add vq group support
` [PATCH v3 4/6] vduse: return internal vq group struct as map token
` [PATCH v3 5/6] vduse: add vq group asid support
` [PATCH v3 6/6] vduse: bump version number

[PATCH] vhost: vringh: Fix copy_to_iter return value check
 2025-09-24  0:54 UTC  (2+ messages)

[PATCH v6 00/16] dma-mapping: migrate to physical address-based API
 2025-09-23 22:35 UTC  (10+ messages)

[PATCH v10 0/3] Virtio SPI Linux driver
 2025-09-23 11:25 UTC  (2+ messages)

[PATCH 5.10] gpu/drm/virtio: fix error return in vgdev_output_init()
 2025-09-22 14:44 UTC 

[mst-vhost:vhost 41/44] drivers/vdpa/pds/vdpa_dev.c:590:19: error: incompatible function pointer types initializing 's64 (*)(struct vdpa_device *, u16)' (aka 'long long (*)(struct vdpa_device *, unsigned short)') with an expression of type 'u32 (struct vdpa_device *, u16)' (aka 
 2025-09-22  6:02 UTC  (3+ messages)

[PATCH V6 0/9] Refine virtio mapping API
 2025-09-22  1:06 UTC  (12+ messages)
` [PATCH V6 3/9] virtio: rename dma helpers
` [PATCH V6 6/9] virtio: introduce map ops in virtio core
` [PATCH V6 8/9] vdpa: introduce map ops

[PATCH V5 0/9] Refine virtio mapping API
 2025-09-21 21:42 UTC  (7+ messages)
` [PATCH V5 1/9] virtio_ring: constify virtqueue pointer for DMA helpers
` [PATCH V5 5/9] virtio_ring: rename dma_handle to map_handle

[PATCH] vhost: vringh: Modify the return value check
 2025-09-21 21:41 UTC  (3+ messages)

[PATCH v2 0/3] vhost_task: Fix a bug where KVM wakes an exited task
 2025-09-21 21:40 UTC  (9+ messages)
        ` [PATCH] vhost: Take a reference on the task that is reference in struct vhost_task

[PATCH v3 0/6] Add multiple address spaces support to VDUSE
 2025-09-19  9:36 UTC  (4+ messages)
` [PATCH v3 1/6] vduse: make domain_lock an rwlock
` [PATCH v3 2/6] vduse: add v1 API definition

[PATCH net] virtio-net: fix incorrect flags recording in big mode
 2025-09-19  8:08 UTC  (4+ messages)


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