diff options
author | sixiao@microsoft.com <sixiao@microsoft.com> | 2017-05-31 10:28:13 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-02 14:16:15 -0400 |
commit | a22431a323cf47d16ea3edb9b691043f15345652 (patch) | |
tree | 9d57da82ece5c71da7969ffb9881e338c347f3ad | |
parent | 4c1588a27991c9047cbd3a109632597514722e47 (diff) | |
download | linux-a22431a323cf47d16ea3edb9b691043f15345652.tar.gz linux-a22431a323cf47d16ea3edb9b691043f15345652.tar.bz2 linux-a22431a323cf47d16ea3edb9b691043f15345652.zip |
tools: hv: set allow-hotplug for VF on Ubuntu
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>
-rwxr-xr-x | tools/hv/bondvf.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/hv/bondvf.sh b/tools/hv/bondvf.sh index 112deba8c4e9..8abd46e007dc 100755 --- a/tools/hv/bondvf.sh +++ b/tools/hv/bondvf.sh @@ -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 @@ -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 } |