datapath: Increase default MTU on patch ports
authorJustin Pettit <jpettit@nicira.com>
Tue, 14 Sep 2010 15:36:55 +0000 (08:36 -0700)
committerJustin Pettit <jpettit@nicira.com>
Tue, 14 Sep 2010 20:29:48 +0000 (13:29 -0700)
The default MTU on patch ports was 1500, which would cause jumbo frames
to get dropped between the ends of the patch.  It also dropped the MTU
of attached bridges to no more that 1500 bytes.  This patch increases
the default MTU to 65535.  Long term, we should eliminate MTU on patch
ports entirely.

Signed-off-by: Justin Pettit <jpettit@nicira.com>
datapath/vport-patch.c

index d55a1bf..62fd71f 100644 (file)
@@ -136,7 +136,10 @@ static struct vport *patch_create(const char *name, const void __user *config)
        }
 
        vport_gen_rand_ether_addr(patch_vport->devconf->eth_addr);
-       patch_vport->devconf->mtu = ETH_DATA_LEN;
+
+    /* Make the default MTU fairly large so that it doesn't become the
+     * bottleneck on systems using jumbo frames. */
+       patch_vport->devconf->mtu = 65535;
 
        return vport;