search for: bypass_unregister_inst

Displaying 7 results from an estimated 7 matches for "bypass_unregister_inst".

2018 Apr 06
1
[RFC PATCH net-next v5 2/4] net: Introduce generic bypass module
...BYPASS) >+ >+struct bypass *bypass_register_driver(const struct bypass_ops *ops, >+ const struct net_device_ops *netdev_ops); >+void bypass_unregister_driver(struct bypass *bypass); >+ >+int bypass_register_instance(struct bypass *bypass, struct net_device *dev); >+int bypass_unregister_instance(struct bypass *bypass, struct net_device *dev); >+ >+int bypass_unregister_child(struct net_device *child_netdev); >+ >+#else >+ >+static inline >+struct bypass *bypass_register_driver(const struct bypass_ops *ops, >+ const struct net_device_ops *netdev_ops) &gt...
2018 Apr 05
0
[RFC PATCH net-next v5 2/4] net: Introduce generic bypass module
...+#if IS_ENABLED(CONFIG_NET_BYPASS) + +struct bypass *bypass_register_driver(const struct bypass_ops *ops, + const struct net_device_ops *netdev_ops); +void bypass_unregister_driver(struct bypass *bypass); + +int bypass_register_instance(struct bypass *bypass, struct net_device *dev); +int bypass_unregister_instance(struct bypass *bypass, struct net_device *dev); + +int bypass_unregister_child(struct net_device *child_netdev); + +#else + +static inline +struct bypass *bypass_register_driver(const struct bypass_ops *ops, + const struct net_device_ops *netdev_ops) +{ + return NULL; +} + +static inli...
2018 Apr 05
6
[RFC PATCH net-next v5 0/4] Enable virtio_net to act as a backup for a passthru device
The main motivation for this patch is to enable cloud service providers to provide an accelerated datapath to virtio-net enabled VMs in a transparent manner with no/minimal guest userspace changes. This also enables hypervisor controlled live migration to be supported with VMs that have direct attached SR-IOV VF devices. Patch 1 introduces a new feature bit VIRTIO_NET_F_BACKUP that can be used
2018 Apr 06
0
[RFC PATCH net-next v5 3/4] virtio_net: Extend virtio to use VF datapath when available
...d_netdev) >> + bypass_unregister_child(child_netdev); >> + >> + child_netdev = rtnl_dereference(vbi->backup_netdev); >> + if (child_netdev) >> + bypass_unregister_child(child_netdev); >> + >> + unregister_netdevice(bypass_netdev); >> + >> + bypass_unregister_instance(virtnet_bypass, bypass_netdev); >> + >> + rtnl_unlock(); >> + >> + free_netdev(bypass_netdev); >> +} >> + >> +/* END of functions supporting VIRTIO_NET_F_BACKUP feature. */ >> + >> static int virtnet_probe(struct virtio_device *vdev) >&gt...
2018 Apr 06
2
[RFC PATCH net-next v5 3/4] virtio_net: Extend virtio to use VF datapath when available
...erence(vbi->active_netdev); >+ if (child_netdev) >+ bypass_unregister_child(child_netdev); >+ >+ child_netdev = rtnl_dereference(vbi->backup_netdev); >+ if (child_netdev) >+ bypass_unregister_child(child_netdev); >+ >+ unregister_netdevice(bypass_netdev); >+ >+ bypass_unregister_instance(virtnet_bypass, bypass_netdev); >+ >+ rtnl_unlock(); >+ >+ free_netdev(bypass_netdev); >+} >+ >+/* END of functions supporting VIRTIO_NET_F_BACKUP feature. */ >+ > static int virtnet_probe(struct virtio_device *vdev) > { > int i, err = -ENOMEM; >@@ -2839,10...
2018 Apr 06
2
[RFC PATCH net-next v5 3/4] virtio_net: Extend virtio to use VF datapath when available
...erence(vbi->active_netdev); >+ if (child_netdev) >+ bypass_unregister_child(child_netdev); >+ >+ child_netdev = rtnl_dereference(vbi->backup_netdev); >+ if (child_netdev) >+ bypass_unregister_child(child_netdev); >+ >+ unregister_netdevice(bypass_netdev); >+ >+ bypass_unregister_instance(virtnet_bypass, bypass_netdev); >+ >+ rtnl_unlock(); >+ >+ free_netdev(bypass_netdev); >+} >+ >+/* END of functions supporting VIRTIO_NET_F_BACKUP feature. */ >+ > static int virtnet_probe(struct virtio_device *vdev) > { > int i, err = -ENOMEM; >@@ -2839,10...
2018 Apr 05
0
[RFC PATCH net-next v5 3/4] virtio_net: Extend virtio to use VF datapath when available
...nl_lock(); + + child_netdev = rtnl_dereference(vbi->active_netdev); + if (child_netdev) + bypass_unregister_child(child_netdev); + + child_netdev = rtnl_dereference(vbi->backup_netdev); + if (child_netdev) + bypass_unregister_child(child_netdev); + + unregister_netdevice(bypass_netdev); + + bypass_unregister_instance(virtnet_bypass, bypass_netdev); + + rtnl_unlock(); + + free_netdev(bypass_netdev); +} + +/* END of functions supporting VIRTIO_NET_F_BACKUP feature. */ + static int virtnet_probe(struct virtio_device *vdev) { int i, err = -ENOMEM; @@ -2839,10 +3432,15 @@ static int virtnet_probe(struct virt...