Samudrala, Sridhar
2018-Jan-22 23:27 UTC
[virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
On 1/22/2018 1:31 PM, Michael S. Tsirkin wrote:> On Wed, Jan 17, 2018 at 01:49:58PM -0800, Alexander Duyck wrote: >> On Wed, Jan 17, 2018 at 11:57 AM, Michael S. Tsirkin <mst at redhat.com> wrote: >>> On Wed, Jan 17, 2018 at 11:25:41AM -0800, Samudrala, Sridhar wrote: >>>> >>>> On 1/17/2018 11:02 AM, Michael S. Tsirkin wrote: >>>>> On Wed, Jan 17, 2018 at 10:15:52AM -0800, Alexander Duyck wrote: >>>>>> On Thu, Jan 11, 2018 at 9:58 PM, Sridhar Samudrala >>>>>> <sridhar.samudrala at intel.com> wrote: >>>>>>> This feature bit can be used by hypervisor to indicate virtio_net device to >>>>>>> act as a backup for another device with the same MAC address. >>>>>>> >>>>>>> Signed-off-by: Sridhar Samudrala <sridhar.samudrala at intel.com> >>>>>>> --- >>>>>>> drivers/net/virtio_net.c | 2 +- >>>>>>> include/uapi/linux/virtio_net.h | 3 +++ >>>>>>> 2 files changed, 4 insertions(+), 1 deletion(-) >>>>>>> >>>>>>> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c >>>>>>> index 12dfc5fee58e..f149a160a8c5 100644 >>>>>>> --- a/drivers/net/virtio_net.c >>>>>>> +++ b/drivers/net/virtio_net.c >>>>>>> @@ -2829,7 +2829,7 @@ static struct virtio_device_id id_table[] = { >>>>>>> VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ >>>>>>> VIRTIO_NET_F_CTRL_MAC_ADDR, \ >>>>>>> VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \ >>>>>>> - VIRTIO_NET_F_SPEED_DUPLEX >>>>>>> + VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_BACKUP >>>>>>> >>>>>>> static unsigned int features[] = { >>>>>>> VIRTNET_FEATURES, >>>>>>> diff --git a/include/uapi/linux/virtio_net.h b/include/uapi/linux/virtio_net.h >>>>>>> index 5de6ed37695b..c7c35fd1a5ed 100644 >>>>>>> --- a/include/uapi/linux/virtio_net.h >>>>>>> +++ b/include/uapi/linux/virtio_net.h >>>>>>> @@ -57,6 +57,9 @@ >>>>>>> * Steering */ >>>>>>> #define VIRTIO_NET_F_CTRL_MAC_ADDR 23 /* Set MAC address */ >>>>>>> >>>>>>> +#define VIRTIO_NET_F_BACKUP 62 /* Act as backup for another device >>>>>>> + * with the same MAC. >>>>>>> + */ >>>>>>> #define VIRTIO_NET_F_SPEED_DUPLEX 63 /* Device set linkspeed and duplex */ >>>>>>> >>>>>>> #ifndef VIRTIO_NET_NO_LEGACY >>>>>> I'm not a huge fan of the name "backup" since that implies that the >>>>>> Virtio interface is only used if the VF is not present, and there are >>>>>> multiple instances such as dealing with east/west or >>>>>> broadcast/multicast traffic where it may be desirable to use the >>>>>> para-virtual interface rather then deal with PCI overhead/bottleneck >>>>>> to send the packet. >>>>> Right now hypervisors mostly expect that yes, only one at a time is >>>>> used. E.g. if you try to do multicast sending packets on both VF and >>>>> virtio then you will end up with two copies of each packet. >>>> I think we want to use only 1 interface to send out any packet. In case of >>>> broadcast/multicasts it would be an optimization to send them via virtio and >>>> this patch series adds that optimization. >>> Right that's what I think we should rather avoid for now. >>> >>> It's *not* an optimization if there's a single VM on this host, >>> or if a specific multicast group does not have any VMs on same >>> host. >> Agreed. In my mind this is something that is controlled by the >> pass-thru interface once it is enslaved. > It would be pretty tricky to control through the PT > interface since a PT interface pretends to be a physical > device, which has no concept of VMs. > >>> I'd rather we just sent everything out on the PT if that's >>> there. The reason we have virtio in the picture is just so >>> we can migrate without downtime. >> I wasn't saying we do that in all cases. That would be something that >> would have to be decided by the pass-thru interface. Ideally the >> virtio would provide just enough information to get itself into the >> bond and I see this being the mechanism for it to do so. From there >> the complexity mostly lies in the pass-thru interface to configure the >> correct transmit modes if for example you have multiple pass-thru >> interfaces or a more complex traffic setup due to things like >> SwitchDev. >> >> In my mind we go the bonding route and there are few use cases for all >> of this. First is the backup case that is being addressed here. That >> becomes your basic "copy netvsc" approach for this which would be >> default. It is how we would handle basic pass-thru back-up paths. If >> the host decides to send multicast/broadcast traffic from the host up >> through it that is a host side decision. I am okay with our default >> transmit behavior from the guest being to send everything through the >> pass-thru interface. All the virtio would be doing is advertising that >> it is a side channel for some sort of bond with another interface. By >> calling it a side channel it implies that it isn't the direct channel >> for the interface, but it is an alternative communications channel for >> things like backup, and other future uses. >> >> There end up being a few different "phase 2" concepts I have floating >> around which I want to avoid limiting. Solving the east/west problem >> is an example. In my mind that just becomes a bonding Tx mode that is >> controlled via the pass-thru interface. The VF could black-list the >> local addresses so that they instead fall into the virtio interface. >> In addition I seem to recall watching a presentation from Mellanox >> where they were talking about a VF per NUMA node in a system which >> would imply multiple VFs with the same MAC address. I'm not sure how >> the current patch handles that. Obviously that would require a more >> complex load balancing setup. The bonding solution ends up being a way >> to resolve that so that they could just have it take care of picking >> the right Tx queue based on the NUMA affinity and fall back to the >> virtio/netvsc when those fail. > The way I see it, we'd need to pass a bunch of extra information > host to guest, and we'd have to use a PV interface for it. > When we do this, we'll need to have another > feature bit, and we can call it SIDE_CHANNEL or whatever. > > >>>> In the receive path, the broadcasts should only go the PF and reach the VM >>>> via vitio so that the VM doesn't see duplicate broadcasts. >>>> >>>> >>>>> To me the east/west scenario looks like you want something >>>>> more similar to a bridge on top of the virtio/PT pair. >>>>> >>>>> So I suspect that use-case will need a separate configuration bit, >>>>> and possibly that's when you will want something more powerful >>>>> such as a full bridge. >>>> east-west optimization of unicasts would be a harder problem to solve as >>>> somehow the hypervisor needs to indicate the VM about the local dest. macs >>> Using a bridge with a dedicated device for east/west would let >>> bridge use standard learning techniques for that perhaps? >> I'm not sure about having the guest have to learn. > It's certainly a way to do this, but certainly not the only one. > >> In my mind the VF >> should know who is local and who isn't. > Right. But note that these things change. > >> In the case of SwitchDev it >> should be possible for the port representors and the switch to provide >> data on which interfaces are bonded on the host side and which aren't. >> With that data it would be pretty easy to just put together a list of >> addresses that would prefer to go the para-virtual route instead of >> being transmitted through physical hardware. >> >> In addition a bridge implies much more overhead since normally a >> bridge can receive a packet in on one interface and transmit it on >> another. We don't really need that. This is more of a VEPA type setup >> and doesn't need to be anything all that complex. You could probably >> even handle the Tx queue selection via a simple eBPF program and map >> since the input for whatever is used to select Tx should be pretty >> simple, destination MAC, source NUMA node, etc, and the data-set >> shouldn't be too large. > That sounds interesting. A separate device might make this kind of setup > a bit easier. Sridhar, did you look into creating a separate device for > the virtual bond device at all? It does not have to be in a separate > module, that kind of refactoring can come later, but once we commit to > using the same single device as virtio, we can't change that.No. I haven't looked into creating a separate device. If we are going to create a new device, i guess it has to be of a new device type with its own driver. As we are using virtio_net to control and manage the VF data path, it is not clear to me what is the advantage of creating a new device rather than extending virtio_net to manage the VF datapath via transparent bond mechanism. Thanks Sridhar
Stephen Hemminger
2018-Jan-23 00:02 UTC
[virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
On Mon, 22 Jan 2018 15:27:40 -0800 "Samudrala, Sridhar" <sridhar.samudrala at intel.com> wrote:> On 1/22/2018 1:31 PM, Michael S. Tsirkin wrote: > > On Wed, Jan 17, 2018 at 01:49:58PM -0800, Alexander Duyck wrote: > >> On Wed, Jan 17, 2018 at 11:57 AM, Michael S. Tsirkin <mst at redhat.com> wrote: > >>> On Wed, Jan 17, 2018 at 11:25:41AM -0800, Samudrala, Sridhar wrote: > >>>> > >>>> On 1/17/2018 11:02 AM, Michael S. Tsirkin wrote: > >>>>> On Wed, Jan 17, 2018 at 10:15:52AM -0800, Alexander Duyck wrote: > >>>>>> On Thu, Jan 11, 2018 at 9:58 PM, Sridhar Samudrala > >>>>>> <sridhar.samudrala at intel.com> wrote: > >>>>>>> This feature bit can be used by hypervisor to indicate virtio_net device to > >>>>>>> act as a backup for another device with the same MAC address. > >>>>>>> > >>>>>>> Signed-off-by: Sridhar Samudrala <sridhar.samudrala at intel.com> > >>>>>>> --- > >>>>>>> drivers/net/virtio_net.c | 2 +- > >>>>>>> include/uapi/linux/virtio_net.h | 3 +++ > >>>>>>> 2 files changed, 4 insertions(+), 1 deletion(-) > >>>>>>> > >>>>>>> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c > >>>>>>> index 12dfc5fee58e..f149a160a8c5 100644 > >>>>>>> --- a/drivers/net/virtio_net.c > >>>>>>> +++ b/drivers/net/virtio_net.c > >>>>>>> @@ -2829,7 +2829,7 @@ static struct virtio_device_id id_table[] = { > >>>>>>> VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ > >>>>>>> VIRTIO_NET_F_CTRL_MAC_ADDR, \ > >>>>>>> VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \ > >>>>>>> - VIRTIO_NET_F_SPEED_DUPLEX > >>>>>>> + VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_BACKUP > >>>>>>> > >>>>>>> static unsigned int features[] = { > >>>>>>> VIRTNET_FEATURES, > >>>>>>> diff --git a/include/uapi/linux/virtio_net.h b/include/uapi/linux/virtio_net.h > >>>>>>> index 5de6ed37695b..c7c35fd1a5ed 100644 > >>>>>>> --- a/include/uapi/linux/virtio_net.h > >>>>>>> +++ b/include/uapi/linux/virtio_net.h > >>>>>>> @@ -57,6 +57,9 @@ > >>>>>>> * Steering */ > >>>>>>> #define VIRTIO_NET_F_CTRL_MAC_ADDR 23 /* Set MAC address */ > >>>>>>> > >>>>>>> +#define VIRTIO_NET_F_BACKUP 62 /* Act as backup for another device > >>>>>>> + * with the same MAC. > >>>>>>> + */ > >>>>>>> #define VIRTIO_NET_F_SPEED_DUPLEX 63 /* Device set linkspeed and duplex */ > >>>>>>> > >>>>>>> #ifndef VIRTIO_NET_NO_LEGACY > >>>>>> I'm not a huge fan of the name "backup" since that implies that the > >>>>>> Virtio interface is only used if the VF is not present, and there are > >>>>>> multiple instances such as dealing with east/west or > >>>>>> broadcast/multicast traffic where it may be desirable to use the > >>>>>> para-virtual interface rather then deal with PCI overhead/bottleneck > >>>>>> to send the packet. > >>>>> Right now hypervisors mostly expect that yes, only one at a time is > >>>>> used. E.g. if you try to do multicast sending packets on both VF and > >>>>> virtio then you will end up with two copies of each packet. > >>>> I think we want to use only 1 interface to send out any packet. In case of > >>>> broadcast/multicasts it would be an optimization to send them via virtio and > >>>> this patch series adds that optimization. > >>> Right that's what I think we should rather avoid for now. > >>> > >>> It's *not* an optimization if there's a single VM on this host, > >>> or if a specific multicast group does not have any VMs on same > >>> host. > >> Agreed. In my mind this is something that is controlled by the > >> pass-thru interface once it is enslaved. > > It would be pretty tricky to control through the PT > > interface since a PT interface pretends to be a physical > > device, which has no concept of VMs. > > > >>> I'd rather we just sent everything out on the PT if that's > >>> there. The reason we have virtio in the picture is just so > >>> we can migrate without downtime. > >> I wasn't saying we do that in all cases. That would be something that > >> would have to be decided by the pass-thru interface. Ideally the > >> virtio would provide just enough information to get itself into the > >> bond and I see this being the mechanism for it to do so. From there > >> the complexity mostly lies in the pass-thru interface to configure the > >> correct transmit modes if for example you have multiple pass-thru > >> interfaces or a more complex traffic setup due to things like > >> SwitchDev. > >> > >> In my mind we go the bonding route and there are few use cases for all > >> of this. First is the backup case that is being addressed here. That > >> becomes your basic "copy netvsc" approach for this which would be > >> default. It is how we would handle basic pass-thru back-up paths. If > >> the host decides to send multicast/broadcast traffic from the host up > >> through it that is a host side decision. I am okay with our default > >> transmit behavior from the guest being to send everything through the > >> pass-thru interface. All the virtio would be doing is advertising that > >> it is a side channel for some sort of bond with another interface. By > >> calling it a side channel it implies that it isn't the direct channel > >> for the interface, but it is an alternative communications channel for > >> things like backup, and other future uses. > >> > >> There end up being a few different "phase 2" concepts I have floating > >> around which I want to avoid limiting. Solving the east/west problem > >> is an example. In my mind that just becomes a bonding Tx mode that is > >> controlled via the pass-thru interface. The VF could black-list the > >> local addresses so that they instead fall into the virtio interface. > >> In addition I seem to recall watching a presentation from Mellanox > >> where they were talking about a VF per NUMA node in a system which > >> would imply multiple VFs with the same MAC address. I'm not sure how > >> the current patch handles that. Obviously that would require a more > >> complex load balancing setup. The bonding solution ends up being a way > >> to resolve that so that they could just have it take care of picking > >> the right Tx queue based on the NUMA affinity and fall back to the > >> virtio/netvsc when those fail. > > The way I see it, we'd need to pass a bunch of extra information > > host to guest, and we'd have to use a PV interface for it. > > When we do this, we'll need to have another > > feature bit, and we can call it SIDE_CHANNEL or whatever. > > > > > >>>> In the receive path, the broadcasts should only go the PF and reach the VM > >>>> via vitio so that the VM doesn't see duplicate broadcasts. > >>>> > >>>> > >>>>> To me the east/west scenario looks like you want something > >>>>> more similar to a bridge on top of the virtio/PT pair. > >>>>> > >>>>> So I suspect that use-case will need a separate configuration bit, > >>>>> and possibly that's when you will want something more powerful > >>>>> such as a full bridge. > >>>> east-west optimization of unicasts would be a harder problem to solve as > >>>> somehow the hypervisor needs to indicate the VM about the local dest. macs > >>> Using a bridge with a dedicated device for east/west would let > >>> bridge use standard learning techniques for that perhaps? > >> I'm not sure about having the guest have to learn. > > It's certainly a way to do this, but certainly not the only one. > > > >> In my mind the VF > >> should know who is local and who isn't. > > Right. But note that these things change. > > > >> In the case of SwitchDev it > >> should be possible for the port representors and the switch to provide > >> data on which interfaces are bonded on the host side and which aren't. > >> With that data it would be pretty easy to just put together a list of > >> addresses that would prefer to go the para-virtual route instead of > >> being transmitted through physical hardware. > >> > >> In addition a bridge implies much more overhead since normally a > >> bridge can receive a packet in on one interface and transmit it on > >> another. We don't really need that. This is more of a VEPA type setup > >> and doesn't need to be anything all that complex. You could probably > >> even handle the Tx queue selection via a simple eBPF program and map > >> since the input for whatever is used to select Tx should be pretty > >> simple, destination MAC, source NUMA node, etc, and the data-set > >> shouldn't be too large. > > That sounds interesting. A separate device might make this kind of setup > > a bit easier. Sridhar, did you look into creating a separate device for > > the virtual bond device at all? It does not have to be in a separate > > module, that kind of refactoring can come later, but once we commit to > > using the same single device as virtio, we can't change that. > > No. I haven't looked into creating a separate device. If we are going to > create a new > device, i guess it has to be of a new device type with its own driver. > > As we are using virtio_net to control and manage the VF data path, it is > not clear to me > what is the advantage of creating a new device rather than extending > virtio_net to manage > the VF datapath via transparent bond mechanism. > > Thanks > Sridhar > >The requirement with Azure accelerated network was that a stock distribution image from the store must be able to run unmodified and get accelerated networking. Not sure if other environments need to work the same, but it would be nice. That meant no additional setup scripts (aka no bonding) and also it must work transparently with hot-plug. Also there are diverse set of environments: openstack, cloudinit, network manager and systemd. The solution had to not depend on any one of them, but also not break any of them.
Michael S. Tsirkin
2018-Jan-23 00:05 UTC
[virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
On Mon, Jan 22, 2018 at 03:27:40PM -0800, Samudrala, Sridhar wrote:> > > You could probably > > > even handle the Tx queue selection via a simple eBPF program and map > > > since the input for whatever is used to select Tx should be pretty > > > simple, destination MAC, source NUMA node, etc, and the data-set > > > shouldn't be too large. > > That sounds interesting. A separate device might make this kind of setup > > a bit easier. Sridhar, did you look into creating a separate device for > > the virtual bond device at all? It does not have to be in a separate > > module, that kind of refactoring can come later, but once we commit to > > using the same single device as virtio, we can't change that. > > No. I haven't looked into creating a separate device. If we are going to > create a new > device, i guess it has to be of a new device type with its own driver.Well not necessarily - just a separate netdev ops. Kind of like e.g. vlans share a driver with the main driver.> As we are using virtio_net to control and manage the VF data path, it is not > clear to me > what is the advantage of creating a new device rather than extending > virtio_net to manage > the VF datapath via transparent bond mechanism. > > Thanks > SridharSo that XDP redirect actions can differentiate between virtio, PT device and the bond. Without it there's no way to redirect to virtio specifically. -- MST
Jakub Kicinski
2018-Jan-23 00:16 UTC
[virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
On Tue, 23 Jan 2018 02:05:48 +0200, Michael S. Tsirkin wrote:> > As we are using virtio_net to control and manage the VF data path, it is not > > clear to me > > what is the advantage of creating a new device rather than extending > > virtio_net to manage > > the VF datapath via transparent bond mechanism. > > So that XDP redirect actions can differentiate between virtio, PT > device and the bond. Without it there's no way to redirect > to virtio specifically.Let's make a list :P separate netdev: 1. virtio device being a bond master is confusing/unexpected. 2. virtio device being both a master and a slave is confusing. 3. configuration of a master may have different semantics than configuration of a slave. 4. two para-virt devices may create a loop (or rather will be bound to each other indeterministically, depending on which spawns first). 5. there is no user configuration AFAIR in existing patch, VM admin won't be able to prevent the bond. Separate netdev we can make removable even if it's spawned automatically. 6. XDP redirect use-case (or any explicit use of the virtio slave) (from MST) independent driver: 7. code reuse. separate device: 8. bond any netdev with any netdev. 9. reuse well-known device driver model. a. natural anchor for hypervisor configuration (switchdev etc.) b. next-gen silicon may be able to disguise as virtio device, and the loop check in virtio driver will prevent the legitimate bond it such case. AFAIU that's one of the goals of next-gen virtio spec as well.
Samudrala, Sridhar
2018-Jan-23 01:34 UTC
[virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
On 1/22/2018 4:05 PM, Michael S. Tsirkin wrote:> On Mon, Jan 22, 2018 at 03:27:40PM -0800, Samudrala, Sridhar wrote: >>>> You could probably >>>> even handle the Tx queue selection via a simple eBPF program and map >>>> since the input for whatever is used to select Tx should be pretty >>>> simple, destination MAC, source NUMA node, etc, and the data-set >>>> shouldn't be too large. >>> That sounds interesting. A separate device might make this kind of setup >>> a bit easier. Sridhar, did you look into creating a separate device for >>> the virtual bond device at all? It does not have to be in a separate >>> module, that kind of refactoring can come later, but once we commit to >>> using the same single device as virtio, we can't change that. >> No. I haven't looked into creating a separate device. If we are going to >> create a new >> device, i guess it has to be of a new device type with its own driver. > Well not necessarily - just a separate netdev ops. > Kind of like e.g. vlans share a driver with the main driver.Not sure what you meant by vlans sharing a driver with the main driver. IIUC, vlans are supported via 802.1q driver and? creates a netdev of type 'vlan' with vlan_netdev_ops> >> As we are using virtio_net to control and manage the VF data path, it is not >> clear to me >> what is the advantage of creating a new device rather than extending >> virtio_net to manage >> the VF datapath via transparent bond mechanism. >> >> Thanks >> Sridhar > So that XDP redirect actions can differentiate between virtio, PT > device and the bond. Without it there's no way to redirect > to virtio specifically.I guess this usecase is for a guest admin to add bpf programs to VF netdev and redirect frames to virtio.? How does bond enable this feature? Thanks Sridhar
Samudrala, Sridhar
2018-Jan-23 01:37 UTC
[virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
On 1/22/2018 4:02 PM, Stephen Hemminger wrote:> >>> >>>> In the case of SwitchDev it >>>> should be possible for the port representors and the switch to provide >>>> data on which interfaces are bonded on the host side and which aren't. >>>> With that data it would be pretty easy to just put together a list of >>>> addresses that would prefer to go the para-virtual route instead of >>>> being transmitted through physical hardware. >>>> >>>> In addition a bridge implies much more overhead since normally a >>>> bridge can receive a packet in on one interface and transmit it on >>>> another. We don't really need that. This is more of a VEPA type setup >>>> and doesn't need to be anything all that complex. You could probably >>>> even handle the Tx queue selection via a simple eBPF program and map >>>> since the input for whatever is used to select Tx should be pretty >>>> simple, destination MAC, source NUMA node, etc, and the data-set >>>> shouldn't be too large. >>> That sounds interesting. A separate device might make this kind of setup >>> a bit easier. Sridhar, did you look into creating a separate device for >>> the virtual bond device at all? It does not have to be in a separate >>> module, that kind of refactoring can come later, but once we commit to >>> using the same single device as virtio, we can't change that. >> No. I haven't looked into creating a separate device. If we are going to >> create a new >> device, i guess it has to be of a new device type with its own driver. >> >> As we are using virtio_net to control and manage the VF data path, it is >> not clear to me >> what is the advantage of creating a new device rather than extending >> virtio_net to manage >> the VF datapath via transparent bond mechanism. >> >> Thanks >> Sridhar >> >> > The requirement with Azure accelerated network was that a stock distribution image from the > store must be able to run unmodified and get accelerated networking. > Not sure if other environments need to work the same, but it would be nice. > > That meant no additional setup scripts (aka no bonding) and also it must > work transparently with hot-plug. Also there are diverse set of environments: > openstack, cloudinit, network manager and systemd. The solution had to not depend > on any one of them, but also not break any of them.Yes. Cloud Service Providers using KVM as hypervisor have a similar requirement to provide accelerated networking with VM images that support virtio_net. Thanks Sridhar
Reasonably Related Threads
- [virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
- [virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
- [virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
- [virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit
- [virtio-dev] [RFC PATCH net-next v2 1/2] virtio_net: Introduce VIRTIO_NET_F_BACKUP feature bit