Skip to content

Commit

Permalink
tools: hv: set allow-hotplug for VF on Ubuntu
Browse files Browse the repository at this point in the history
On HyperV, the VF interface can be offered by a host at any time.
Mark the VF interface as hotplug, to make sure it will be brought up
automatically when it is registered.

Signed-off-by: Simon Xiao <sixiao@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
sixiao@microsoft.com authored and David S. Miller committed Jun 2, 2017
1 parent 4c1588a commit a22431a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/hv/bondvf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ function create_eth_cfg_ubuntu {
local fn=$cfgdir/interfaces

del_eth_cfg_ubuntu $1

echo $'\n'auto $1 >>$fn
echo iface $1 inet manual >>$fn
echo bond-master $2 >>$fn
Expand All @@ -143,7 +142,10 @@ function create_eth_cfg_ubuntu {
function create_eth_cfg_pri_ubuntu {
local fn=$cfgdir/interfaces

create_eth_cfg_ubuntu $1 $2
del_eth_cfg_ubuntu $1
echo $'\n'allow-hotplug $1 >>$fn
echo iface $1 inet manual >>$fn
echo bond-master $2 >>$fn
echo bond-primary $1 >>$fn
}

Expand Down

0 comments on commit a22431a

Please sign in to comment.