search for: failover_info

Displaying 5 results from an estimated 5 matches for "failover_info".

2018 Apr 20
2
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...evice *failover_dev); > + rx_handler_result_t (*handle_frame)(struct sk_buff **pskb); > +}; > + > +struct failover { > + struct list_head list; > + struct net_device __rcu *failover_dev; > + struct failover_ops __rcu *ops; > +}; > + > +/* failover state */ > +struct failover_info { > + /* primary netdev with same MAC */ > + struct net_device __rcu *primary_dev; > + > + /* standby netdev */ > + struct net_device __rcu *standby_dev; > + > + /* primary netdev stats */ > + struct rtnl_link_stats64 primary_stats; > + > + /* standby netdev stats */ &...
2018 Apr 20
2
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...evice *failover_dev); > + rx_handler_result_t (*handle_frame)(struct sk_buff **pskb); > +}; > + > +struct failover { > + struct list_head list; > + struct net_device __rcu *failover_dev; > + struct failover_ops __rcu *ops; > +}; > + > +/* failover state */ > +struct failover_info { > + /* primary netdev with same MAC */ > + struct net_device __rcu *primary_dev; > + > + /* standby netdev */ > + struct net_device __rcu *standby_dev; > + > + /* primary netdev stats */ > + struct rtnl_link_stats64 primary_stats; > + > + /* standby netdev stats */ &...
2018 Apr 20
0
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...hange)(struct net_device *slave_dev, + struct net_device *failover_dev); + rx_handler_result_t (*handle_frame)(struct sk_buff **pskb); +}; + +struct failover { + struct list_head list; + struct net_device __rcu *failover_dev; + struct failover_ops __rcu *ops; +}; + +/* failover state */ +struct failover_info { + /* primary netdev with same MAC */ + struct net_device __rcu *primary_dev; + + /* standby netdev */ + struct net_device __rcu *standby_dev; + + /* primary netdev stats */ + struct rtnl_link_stats64 primary_stats; + + /* standby netdev stats */ + struct rtnl_link_stats64 standby_stats; + + /* ag...
2018 Apr 20
0
[PATCH v7 net-next 2/4] net: Introduce generic failover module
...result_t (*handle_frame)(struct sk_buff **pskb); >> +}; >> + >> +struct failover { >> + struct list_head list; >> + struct net_device __rcu *failover_dev; >> + struct failover_ops __rcu *ops; >> +}; >> + >> +/* failover state */ >> +struct failover_info { >> + /* primary netdev with same MAC */ >> + struct net_device __rcu *primary_dev; >> + >> + /* standby netdev */ >> + struct net_device __rcu *standby_dev; >> + >> + /* primary netdev stats */ >> + struct rtnl_link_stats64 primary_stats; >> +...
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