search for: update_link

Displaying 8 results from an estimated 8 matches for "update_link".

2000 Feb 29
0
automount, samba, desktop.ini issues
Program: update_links.pl Author: Ryan Wyler <ryan@nhorizon.net> Problem this program solves: Windows machines taking a LONG time to browse shares of automount points which include directories that are inaccessable to the samba server. Explanation: We have our samba shares setup to mount the unix automount d...
2018 Apr 06
1
[RFC PATCH net-next v5 2/4] net: Introduce generic bypass module
...t net_device *bypass_netdev, >+ struct net_device *child_netdev); >+ int (*unregister_child)(struct net_device *bypass_netdev, >+ struct net_device *child_netdev); >+ int (*release_child)(struct net_device *bypass_netdev, >+ struct net_device *child_netdev); >+ int (*update_link)(struct net_device *bypass_netdev, >+ struct net_device *child_netdev); >+ rx_handler_result_t (*handle_frame)(struct sk_buff **pskb); >+}; >+ >+struct bypass_instance { >+ struct list_head list; >+ struct net_device __rcu *bypass_netdev; >+ struct bypass *bypass; >+...
2018 Apr 05
0
[RFC PATCH net-next v5 2/4] net: Introduce generic bypass module
...int (*join_child)(struct net_device *bypass_netdev, + struct net_device *child_netdev); + int (*unregister_child)(struct net_device *bypass_netdev, + struct net_device *child_netdev); + int (*release_child)(struct net_device *bypass_netdev, + struct net_device *child_netdev); + int (*update_link)(struct net_device *bypass_netdev, + struct net_device *child_netdev); + rx_handler_result_t (*handle_frame)(struct sk_buff **pskb); +}; + +struct bypass_instance { + struct list_head list; + struct net_device __rcu *bypass_netdev; + struct bypass *bypass; +}; + +struct bypass { + struct list_...
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
...t;max_mtu; >> + } >> + } >> + >> + dev_put(child_netdev); >> + >> + netdev_info(bypass_netdev, "child:%s unregistered\n", >> + child_netdev->name); >> + >> + return 0; >> +} >> + >> +static int virtnet_bypass_update_link(struct net_device *bypass_netdev, >> + struct net_device *child_netdev) >> +{ >> + struct net_device *active_netdev, *backup_netdev; >> + struct virtnet_bypass_info *vbi; >> + >> + if (!netif_running(bypass_netdev)) >> + return 0; >> + >&...
2018 Apr 06
2
[RFC PATCH net-next v5 3/4] virtio_net: Extend virtio to use VF datapath when available
...in_mtu; >+ bypass_netdev->max_mtu = backup_netdev->max_mtu; >+ } >+ } >+ >+ dev_put(child_netdev); >+ >+ netdev_info(bypass_netdev, "child:%s unregistered\n", >+ child_netdev->name); >+ >+ return 0; >+} >+ >+static int virtnet_bypass_update_link(struct net_device *bypass_netdev, >+ struct net_device *child_netdev) >+{ >+ struct net_device *active_netdev, *backup_netdev; >+ struct virtnet_bypass_info *vbi; >+ >+ if (!netif_running(bypass_netdev)) >+ return 0; >+ >+ vbi = netdev_priv(bypass_netdev); >+...
2018 Apr 06
2
[RFC PATCH net-next v5 3/4] virtio_net: Extend virtio to use VF datapath when available
...in_mtu; >+ bypass_netdev->max_mtu = backup_netdev->max_mtu; >+ } >+ } >+ >+ dev_put(child_netdev); >+ >+ netdev_info(bypass_netdev, "child:%s unregistered\n", >+ child_netdev->name); >+ >+ return 0; >+} >+ >+static int virtnet_bypass_update_link(struct net_device *bypass_netdev, >+ struct net_device *child_netdev) >+{ >+ struct net_device *active_netdev, *backup_netdev; >+ struct virtnet_bypass_info *vbi; >+ >+ if (!netif_running(bypass_netdev)) >+ return 0; >+ >+ vbi = netdev_priv(bypass_netdev); >+...
2018 Apr 05
0
[RFC PATCH net-next v5 3/4] virtio_net: Extend virtio to use VF datapath when available
...+ bypass_netdev->min_mtu = backup_netdev->min_mtu; + bypass_netdev->max_mtu = backup_netdev->max_mtu; + } + } + + dev_put(child_netdev); + + netdev_info(bypass_netdev, "child:%s unregistered\n", + child_netdev->name); + + return 0; +} + +static int virtnet_bypass_update_link(struct net_device *bypass_netdev, + struct net_device *child_netdev) +{ + struct net_device *active_netdev, *backup_netdev; + struct virtnet_bypass_info *vbi; + + if (!netif_running(bypass_netdev)) + return 0; + + vbi = netdev_priv(bypass_netdev); + + active_netdev = rtnl_dereference(vbi-...