tools/hotplug: set mtu from bridge for tap interface
authorCharles Arnold <carnold@suse.com>
Mon, 16 Sep 2013 20:18:37 +0000 (14:18 -0600)
committerIan Campbell <ian.campbell@citrix.com>
Tue, 17 Sep 2013 14:26:27 +0000 (15:26 +0100)
With changeset 22885 support was added for setting the MTU in the vif-bridge
script for when a vif interface was set to 'online'.  The was not done for the
'add' operation.  The 'add' operation was added to the script for when tap
devices were specified (c/s 21944). With the setting of the MTU for the
'online' case was there a reason for omitting the 'add'?

This patch sets the MTU for both 'online' and 'add' in the vif-bridge script.

Signed-off-by: Charles Arnold <carnold@suse.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
tools/hotplug/Linux/vif-bridge
tools/hotplug/Linux/xen-network-common.sh

index 9a6f82a7168db7115c83c9166dea60f53e3b71c7..678262d0048832e5eaf226b3dddaa6603c7b3b36 100644 (file)
@@ -81,11 +81,7 @@ fi
 case "$command" in
     online)
         setup_virtual_bridge_port "$dev"
-        mtu="`ip link show $bridge | awk '/mtu/ { print $5 }'`"
-        if [ -n "$mtu" ] && [ "$mtu" -gt 0 ]
-        then
-                ip link set $dev mtu $mtu || :
-        fi
+        set_mtu $bridge $dev
         add_to_bridge "$bridge" "$dev"
         ;;
 
@@ -96,6 +92,7 @@ case "$command" in
 
     add)
         setup_virtual_bridge_port "$dev"
+        set_mtu $bridge $dev
         add_to_bridge "$bridge" "$dev"
         ;;
 esac
index 8cff156d29b94d3692392a8228ec86cb68cf0007..50b8711ccacb9f25d0b7b82ce740080aec08c59a 100644 (file)
@@ -132,3 +132,13 @@ add_to_bridge () {
     ip link set ${dev} up
 }
 
+# Usage: set_mtu bridge dev
+set_mtu () {
+    local bridge=$1
+    local dev=$2
+    mtu="`ip link show ${bridge}| awk '/mtu/ { print $5 }'`"
+    if [ -n "$mtu" ] && [ "$mtu" -gt 0 ]
+    then
+            ip link set ${dev} mtu $mtu || :
+    fi
+}