X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=datapath%2Fdp_dev.c;h=2bbd6fecf8d05a52f851b3562b2ad9663a1fbff8;hb=ce640333ea5ad7178a45b1d242af7cad9ca99976;hp=5b434c1f9a5429b21f041bd3ae9b611135ec1229;hpb=81eec36e0200a149f7e239b717cdf93378f6107a;p=openvswitch diff --git a/datapath/dp_dev.c b/datapath/dp_dev.c index 5b434c1f..2bbd6fec 100644 --- a/datapath/dp_dev.c +++ b/datapath/dp_dev.c @@ -214,8 +214,8 @@ do_setup(struct net_device *netdev) netdev->dev_addr[1] = 0x23; netdev->dev_addr[2] = 0x20; - /* Set the top bits to indicate random Nicira address. */ - netdev->dev_addr[3] |= 0xc0; + /* Set the top bit to indicate random Nicira address. */ + netdev->dev_addr[3] |= 0x80; } /* Create a datapath device associated with 'dp'. If 'dp_name' is null,