lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <625a6618-bb59-8ccc-bf1c-e29ac556b590@redhat.com>
Date:   Tue, 27 Apr 2021 10:43:59 +0800
From:   Jason Wang <jasowang@...hat.com>
To:     Arkadiusz Kudan <arkadiusz.kudan@...ilime.com>,
        virtualization@...ts.linux-foundation.org
Cc:     mst@...hat.com, netdev@...r.kernel.org,
        Miroslaw Walukiewicz <Miroslaw.Walukiewicz@...el.com>
Subject: Re: [PATCH] virtio-net: enable SRIOV


在 2021/4/26 下午6:21, Arkadiusz Kudan 写道:
> With increasing interest for virtio, NIC have appeared that provide
> SRIOV with PF appearing in the host as a virtio network device
> and probably more similiar NICs will emerge.
> igb_uio of DPDK or pci-pf-stub can be used to provide SRIOV,
> however there are hypervisors/VMMs that require VFs, which are
> to be PCI passthrued to a VM, to have its PF with network
> representation in the kernel. For virtio-net based PFs,
> virtio-net could do that by providing both SRIOV interface and
> netdev representation.
>
> Enable SRIOV via VIRTIO_F_SR_IOV feature bit if the device
> supports it.
>
> Signed-off-by: Arkadiusz Kudan <arkadiusz.kudan@...ilime.com>
> Signed-off-by: Miroslaw Walukiewicz <Miroslaw.Walukiewicz@...el.com>
> ---
>   drivers/net/virtio_net.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> index 0824e6999e49..a03aa7e99689 100644
> --- a/drivers/net/virtio_net.c
> +++ b/drivers/net/virtio_net.c
> @@ -3249,6 +3249,7 @@ static struct virtio_device_id id_table[] = {
>   
>   static unsigned int features[] = {
>   	VIRTNET_FEATURES,
> +	VIRTIO_F_SR_IOV,
>   };


So I'm suprised that it needs to be enabled per device. We had:

static void vp_transport_features(struct virtio_device *vdev, u64 features)
{
         struct virtio_pci_device *vp_dev = to_vp_device(vdev);
         struct pci_dev *pci_dev = vp_dev->pci_dev;

         if ((features & BIT_ULL(VIRTIO_F_SR_IOV)) &&
                         pci_find_ext_capability(pci_dev, 
PCI_EXT_CAP_ID_SRIOV))
                 __virtio_set_bit(vdev, VIRTIO_F_SR_IOV);
}

And I had used this driver for SRIOV virtio-pci hardware for more than 
one year.

Thanks


>   
>   static unsigned int features_legacy[] = {

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ