search for: may_use_devlink

Displaying 20 results from an estimated 22 matches for "may_use_devlink".

2018 May 07
2
[PATCH net-next v10 2/4] net: Introduce generic failover module
...changed, 1130 insertions(+) > create mode 100644 include/net/net_failover.h > create mode 100644 net/core/net_failover.c > diff --git a/net/Kconfig b/net/Kconfig > index b62089fb1332..0540856676de 100644 > --- a/net/Kconfig > +++ b/net/Kconfig > @@ -429,6 +429,16 @@ config MAY_USE_DEVLINK > config PAGE_POOL > bool > > +config NET_FAILOVER > + tristate "Failover interface" > + default m Need some justification for default m (as opposed to n). > + help > + This provides a generic interface for paravirtual drivers to listen > + for...
2018 Apr 06
1
[RFC PATCH net-next v5 2/4] net: Introduce generic bypass module
..._unregister_child(struct net_device *child_netdev) >+{ >+ return 0; >+} >+ >+#endif >+ >+#endif /* _NET_BYPASS_H */ >diff --git a/net/Kconfig b/net/Kconfig >index 0428f12c25c2..994445f4a96a 100644 >--- a/net/Kconfig >+++ b/net/Kconfig >@@ -423,6 +423,24 @@ config MAY_USE_DEVLINK > on MAY_USE_DEVLINK to ensure they do not cause link errors when > devlink is a loadable module and the driver using it is built-in. > >+config NET_BYPASS >+ tristate "Bypass interface" >+ ---help--- >+ This provides a generic interface for paravirtual drive...
2018 Apr 05
0
[RFC PATCH net-next v5 2/4] net: Introduce generic bypass module
...v) +{ + return 0; +} + +static inline int bypass_unregister_child(struct net_device *child_netdev) +{ + return 0; +} + +#endif + +#endif /* _NET_BYPASS_H */ diff --git a/net/Kconfig b/net/Kconfig index 0428f12c25c2..994445f4a96a 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK on MAY_USE_DEVLINK to ensure they do not cause link errors when devlink is a loadable module and the driver using it is built-in. +config NET_BYPASS + tristate "Bypass interface" + ---help--- + This provides a generic interface for paravirtual drivers to listen + for netdev...
2018 Apr 20
2
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...gister(struct net_device *slave_dev) > +{ > + return 0; > +} > + > +#endif > + > +#endif /* _NET_FAILOVER_H */ > diff --git a/net/Kconfig b/net/Kconfig > index 0428f12c25c2..388b99dfee10 100644 > --- a/net/Kconfig > +++ b/net/Kconfig > @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK > on MAY_USE_DEVLINK to ensure they do not cause link errors when > devlink is a loadable module and the driver using it is built-in. > > +config NET_FAILOVER > + tristate "Failover interface" > + help > + This provides a generic interface for paravirtual...
2018 Apr 20
2
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...gister(struct net_device *slave_dev) > +{ > + return 0; > +} > + > +#endif > + > +#endif /* _NET_FAILOVER_H */ > diff --git a/net/Kconfig b/net/Kconfig > index 0428f12c25c2..388b99dfee10 100644 > --- a/net/Kconfig > +++ b/net/Kconfig > @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK > on MAY_USE_DEVLINK to ensure they do not cause link errors when > devlink is a loadable module and the driver using it is built-in. > > +config NET_FAILOVER > + tristate "Failover interface" > + help > + This provides a generic interface for paravirtual...
2018 Apr 11
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
..._slave_unregister(struct net_device *slave_netdev) >+{ >+ return 0; >+} >+ >+#endif >+ >+#endif /* _NET_BYPASS_H */ >diff --git a/net/Kconfig b/net/Kconfig >index 0428f12c25c2..994445f4a96a 100644 >--- a/net/Kconfig >+++ b/net/Kconfig >@@ -423,6 +423,24 @@ config MAY_USE_DEVLINK > on MAY_USE_DEVLINK to ensure they do not cause link errors when > devlink is a loadable module and the driver using it is built-in. > >+config NET_BYPASS >+ tristate "Bypass interface" >+ ---help--- >+ This provides a generic interface for paravirtual drive...
2018 Apr 11
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
..._slave_unregister(struct net_device *slave_netdev) >+{ >+ return 0; >+} >+ >+#endif >+ >+#endif /* _NET_BYPASS_H */ >diff --git a/net/Kconfig b/net/Kconfig >index 0428f12c25c2..994445f4a96a 100644 >--- a/net/Kconfig >+++ b/net/Kconfig >@@ -423,6 +423,24 @@ config MAY_USE_DEVLINK > on MAY_USE_DEVLINK to ensure they do not cause link errors when > devlink is a loadable module and the driver using it is built-in. > >+config NET_BYPASS >+ tristate "Bypass interface" >+ ---help--- >+ This provides a generic interface for paravirtual drive...
2018 Apr 10
0
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...ypass_master) +{ +} + +static inline +int bypass_slave_unregister(struct net_device *slave_netdev) +{ + return 0; +} + +#endif + +#endif /* _NET_BYPASS_H */ diff --git a/net/Kconfig b/net/Kconfig index 0428f12c25c2..994445f4a96a 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK on MAY_USE_DEVLINK to ensure they do not cause link errors when devlink is a loadable module and the driver using it is built-in. +config NET_BYPASS + tristate "Bypass interface" + ---help--- + This provides a generic interface for paravirtual drivers to listen + for netdev...
2018 Apr 20
0
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...r *failover) +{ +} + +static inline +int failover_slave_unregister(struct net_device *slave_dev) +{ + return 0; +} + +#endif + +#endif /* _NET_FAILOVER_H */ diff --git a/net/Kconfig b/net/Kconfig index 0428f12c25c2..388b99dfee10 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK on MAY_USE_DEVLINK to ensure they do not cause link errors when devlink is a loadable module and the driver using it is built-in. +config NET_FAILOVER + tristate "Failover interface" + help + This provides a generic interface for paravirtual drivers to listen + for netdev re...
2018 Apr 20
0
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...>> + return 0; >> +} >> + >> +#endif >> + >> +#endif /* _NET_FAILOVER_H */ >> diff --git a/net/Kconfig b/net/Kconfig >> index 0428f12c25c2..388b99dfee10 100644 >> --- a/net/Kconfig >> +++ b/net/Kconfig >> @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK >> on MAY_USE_DEVLINK to ensure they do not cause link errors when >> devlink is a loadable module and the driver using it is built-in. >> >> +config NET_FAILOVER >> + tristate "Failover interface" >> + help >> + This provides a gen...
2018 Apr 11
0
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...+{ >> + return 0; >> +} >> + >> +#endif >> + >> +#endif /* _NET_BYPASS_H */ >> diff --git a/net/Kconfig b/net/Kconfig >> index 0428f12c25c2..994445f4a96a 100644 >> --- a/net/Kconfig >> +++ b/net/Kconfig >> @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK >> on MAY_USE_DEVLINK to ensure they do not cause link errors when >> devlink is a loadable module and the driver using it is built-in. >> >> +config NET_BYPASS >> + tristate "Bypass interface" >> + ---help--- >> + This provides a generic...
2018 Apr 10
6
[RFC PATCH net-next v6 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 May 24
0
[PATCH net-next v12 1/5] net: Introduce generic failover module
...r_ops *ops); +void failover_unregister(struct failover *failover); +int failover_slave_unregister(struct net_device *slave_dev); + +#endif /* _FAILOVER_H */ diff --git a/net/Kconfig b/net/Kconfig index df8d45ef47d8..d581c4f0f1c4 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -430,6 +430,19 @@ config MAY_USE_DEVLINK config PAGE_POOL bool +config FAILOVER + tristate "Generic failover module" + help + The failover module provides a generic interface for paravirtual + drivers to register a netdev and a set of ops with a failover + instance. The ops are used as event handlers that get ca...
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 20
13
[PATCH net-next v7 0/4] Enable virtio_net to act as a standby 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_STANDBY that can be used
2018 May 07
9
[PATCH net-next v10 0/4] Enable virtio_net to act as a standby 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_STANDBY that can be used
2018 Apr 18
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...> + >> > +#endif >> > + >> > +#endif /* _NET_BYPASS_H */ >> > diff --git a/net/Kconfig b/net/Kconfig >> > index 0428f12c25c2..994445f4a96a 100644 >> > --- a/net/Kconfig >> > +++ b/net/Kconfig >> > @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK >> > on MAY_USE_DEVLINK to ensure they do not cause link errors when >> > devlink is a loadable module and the driver using it is built-in. >> > >> > +config NET_BYPASS >> > + tristate "Bypass interface" >> > + ---help--- >&g...
2018 Apr 18
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...> + >> > +#endif >> > + >> > +#endif /* _NET_BYPASS_H */ >> > diff --git a/net/Kconfig b/net/Kconfig >> > index 0428f12c25c2..994445f4a96a 100644 >> > --- a/net/Kconfig >> > +++ b/net/Kconfig >> > @@ -423,6 +423,24 @@ config MAY_USE_DEVLINK >> > on MAY_USE_DEVLINK to ensure they do not cause link errors when >> > devlink is a loadable module and the driver using it is built-in. >> > >> > +config NET_BYPASS >> > + tristate "Bypass interface" >> > + ---help--- >&g...
2018 May 07
0
[PATCH net-next v10 2/4] net: Introduce generic failover module
...id net_failover_unregister(struct net_failover *failover); +int net_failover_slave_unregister(struct net_device *slave_dev); + +#endif /* _NET_FAILOVER_H */ diff --git a/net/Kconfig b/net/Kconfig index b62089fb1332..0540856676de 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -429,6 +429,16 @@ config MAY_USE_DEVLINK config PAGE_POOL bool +config NET_FAILOVER + tristate "Failover interface" + default m + help + This provides a generic interface for paravirtual drivers to listen + for netdev register/unregister/link change events from pci ethernet + devices with the same MAC and takeov...
2018 Apr 25
5
[PATCH net-next v8 0/4] Enable virtio_net to act as a standby for a passthru device
This is another update based on feedback from MST and Stephen on the last patchset. Hopefully this series can be integrated and any further enhancements can be made on top of this patchset. v8: - Made the failover managment routines more robust by updating the feature bits/other fields in the failover netdev when slave netdevs are registered/unregistered. (mst) - added support for handling