Re: [PATCH for-9.2 v14 08/11] pcie_sriov: Remove num_vfs from PCIESriovPF

2024-08-21 Thread Yui Washizu
On 2024/08/13 15:14, Akihiko Odaki wrote: num_vfs is not migrated so use PCI_SRIOV_CTRL_VFE and PCI_SRIOV_NUM_VF instead. Signed-off-by: Akihiko Odaki --- include/hw/pci/pcie_sriov.h | 1 - hw/pci/pcie_sriov.c | 38 +++--- hw/pci/trace-events

Re: [PATCH for-9.2 v7 0/9] virtio-net: add support for SR-IOV emulation

2024-08-21 Thread Yui Washizu
SR-IOV related fixes and improvements". Regards, Yui Washizu Introduction This series is based on the RFC series submitted by Yui Washizu[1]. See also [2] for the context. This series enables SR-IOV emulation for virtio-net. It is useful to test SR-IOV support on the guest, or

Re: [PATCH RFC v4 0/7] virtio-net: add support for SR-IOV emulation

2024-07-31 Thread Yui Washizu
On 2024/07/15 14:15, Akihiko Odaki wrote: On 2024/05/16 11:00, Yui Washizu wrote: On 2024/04/28 18:05, Akihiko Odaki wrote: Based-on: <20240315-reuse-v9-0-67aa69af4...@daynix.com> ("[PATCH for 9.1 v9 00/11] hw/pci: SR-IOV related fixes and improvements") Introduction --

Re: [PATCH RFC v4 0/7] virtio-net: add support for SR-IOV emulation

2024-05-15 Thread Yui Washizu
On 2024/04/28 18:05, Akihiko Odaki wrote: Based-on: <20240315-reuse-v9-0-67aa69af4...@daynix.com> ("[PATCH for 9.1 v9 00/11] hw/pci: SR-IOV related fixes and improvements") Introduction This series is based on the RFC series submitted by Yui Washizu[1]. See

Re: [PATCH RFC v3 0/6] virtio-net: add support for SR-IOV emulation

2024-04-09 Thread Yui Washizu
On 2024/03/05 17:58, Akihiko Odaki wrote: Based-on: <20240228-reuse-v8-0-282660281...@daynix.com> ("[PATCH v8 00/15] hw/pci: SR-IOV related fixes and improvements") Introduction This series is based on the RFC series submitted by Yui Washizu[1]. See also [2]

Re: [PATCH RFC v2 00/12] virtio-net: add support for SR-IOV emulation

2023-12-19 Thread Yui Washizu
On 2023/12/10 13:05, Akihiko Odaki wrote: Introduction This series is based on the RFC series submitted by Yui Washizu[1]. See also [2] for the context. This series enables SR-IOV emulation for virtio-net. It is useful to test SR-IOV support on the guest, or to expose several

Re: [PATCH 00/14] virtio-net: add support for SR-IOV emulation

2023-12-04 Thread Yui Washizu
On 2023/12/02 17:08, Akihiko Odaki wrote: On 2023/12/02 17:00, Akihiko Odaki wrote: Introduction This series is based on the RFC series submitted by Yui Washizu[1]. See also [2] for the context. This series enables SR-IOV emulation for virtio-net. It is useful to test SR-IOV

Re: [RFC] Flexible SR-IOV support for virtio-net

2023-11-28 Thread Yui Washizu
mplementation to be merged into qemu ? Do you have a timeline for this plan ? Moreover, is there any way we can collaborate on the implementation you're planning ? Regards, Yui Washizu Regards, Akihiko Odaki [1] https://github.com/virtio-win/kvm-guest-drivers-windows [2] https://qemu.rea

Re: [RFC 0/1] virtio-net: add support for SR-IOV emulation

2023-09-05 Thread Yui Washizu
Hi Jason, On 2023/08/30 14:28, Yui Washizu wrote: On 2023/07/24 15:58, Jason Wang wrote: On Mon, Jul 24, 2023 at 10:32 AM Yui Washizu wrote: On 2023/07/20 11:20, Jason Wang wrote: On Wed, Jul 19, 2023 at 9:59 AM Yui Washizu wrote: This patch series is the first step towards enabling

Re: [RFC 0/1] virtio-net: add support for SR-IOV emulation

2023-08-29 Thread Yui Washizu
On 2023/07/24 15:58, Jason Wang wrote: On Mon, Jul 24, 2023 at 10:32 AM Yui Washizu wrote: On 2023/07/20 11:20, Jason Wang wrote: On Wed, Jul 19, 2023 at 9:59 AM Yui Washizu wrote: This patch series is the first step towards enabling hardware offloading of the L2 packet switching feature

Re: [RFC 0/1] virtio-net: add support for SR-IOV emulation

2023-07-28 Thread Yui Washizu
On 2023/07/24 15:58, Jason Wang wrote: On Mon, Jul 24, 2023 at 10:32 AM Yui Washizu wrote: On 2023/07/20 11:20, Jason Wang wrote: On Wed, Jul 19, 2023 at 9:59 AM Yui Washizu wrote: This patch series is the first step towards enabling hardware offloading of the L2 packet switching feature

Re: [RFC 0/1] virtio-net: add support for SR-IOV emulation

2023-07-23 Thread Yui Washizu
On 2023/07/20 11:20, Jason Wang wrote: On Wed, Jul 19, 2023 at 9:59 AM Yui Washizu wrote: This patch series is the first step towards enabling hardware offloading of the L2 packet switching feature on virtio-net device to host machine. We are considering that this hardware offloading

[RFC 0/1] virtio-net: add support for SR-IOV emulation

2023-07-19 Thread Yui Washizu
th1: eth2: #virtual VF created eth3: #virtual VF created Please note that communication between VF and PF/VF is not possible by this patch series itself. Yui Washizu (1): virtio-pci: add SR-IOV capability hw/pci/msix.c | 8 +++-- hw/pci/pci.c

[RFC 1/1] virtio-pci: add SR-IOV capability

2023-07-19 Thread Yui Washizu
the guest. Currently only virtio-net is supported. Also, the vendor ID and device ID remain the same for both the PF and VF, enabling existing guest PF drivers to be used in the VF without any modifications. Signed-off-by: Yui Washizu --- hw/pci/msix.c | 8 +++-- hw