X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=xenserver%2Fetc_xensource_scripts_vif;h=3a209f9b4ae315d732483d0d6fb8f9f4eb1323d5;hb=83d3917d5405478bfa40aaf9debd66ea833c3b55;hp=d042875fe888dc41a9f9b851211b2d7354c40f6c;hpb=31afafc599ec9806e7a56e947a6ca0cd7af055f1;p=openvswitch diff --git a/xenserver/etc_xensource_scripts_vif b/xenserver/etc_xensource_scripts_vif index d042875f..3a209f9b 100755 --- a/xenserver/etc_xensource_scripts_vif +++ b/xenserver/etc_xensource_scripts_vif @@ -24,7 +24,6 @@ BRCTL="/usr/sbin/brctl" IP="/sbin/ip" vsctl="/usr/bin/ovs-vsctl" -dump_vif_details="/usr/share/vswitch/scripts/dump-vif-details" handle_promiscuous() { @@ -103,6 +102,32 @@ handle_vswitch_vif_details() fi } +xs550_set_internal_network_uuid() +{ + . /etc/xensource-inventory + if test "$PRODUCT_VERSION" = "5.5.0" || test "${BUILD_NUMBER%p}" -le 26131 + then + # vNetManager needs to know the network UUID(s) associated with each + # datapath. Normally interface-reconfigure adds them, but XAPI does + # not use interface-reconfigure for internal networks. Instead, XAPI + # calls the addbr ioctl internally, so we have to do it here instead + # for internal networks. This is only acceptable because xapi is lazy + # about creating internal networks: it only creates one just before it + # adds the first vif to it. There may still be a brief delay between + # the initial ovs-vswitchd connection to vNetManager and setting this + # configuration variable, but vNetManager can tolerate that. + local bridge=$1 + local net_uuid=$(xenstore-read "${PRIVATE}/network-uuid" 2>/dev/null) + if [ -n "${net_uuid}" ] ; then + logger -t scripts-vif "${bridge} xs-network-uuids ${net_uuid}" + echo "-- br-set-external-id $bridge xs-network-uuids ${net_uuid}" + fi + else + # XAPI after 5.5.0 sets the network external ids itself, via ovs-vsctl. + : + fi +} + add_to_bridge() { local address=$(xenstore-read "${PRIVATE}/bridge-MAC") @@ -133,7 +158,7 @@ add_to_bridge() local vif_details=$(handle_vswitch_vif_details) fi - $vsctl -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details + $vsctl -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details $(xs550_set_internal_network_uuid $bridge) ;; esac @@ -147,7 +172,10 @@ remove_from_bridge() # Nothing to do ;; vswitch) - $vsctl del-port $bridge $dev + # If ovs-brcompatd is running, it might already have deleted the + # port. Use --if-exists to suppress the error that would otherwise + # arise in that case. + $vsctl -- --if-exists del-port $dev ;; esac }