X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=datapath%2Fvport-netdev.c;h=05d7696faa0ee59e72fa6389ffd4ae176b2bb47d;hb=04f68eb209dadedf204e8b7f378e43c76fd02f36;hp=4cca7fe860e02f9616b9188a66b6a730f6872cfb;hpb=a647150f01cf09eddc6d28bfec88b1bb8bab30df;p=openvswitch diff --git a/datapath/vport-netdev.c b/datapath/vport-netdev.c index 4cca7fe8..05d7696f 100644 --- a/datapath/vport-netdev.c +++ b/datapath/vport-netdev.c @@ -139,7 +139,7 @@ static struct vport *netdev_create(const struct vport_parms *parms) netdev_vport = netdev_vport_priv(vport); - netdev_vport->dev = dev_get_by_name(&init_net, parms->name); + netdev_vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), parms->name); if (!netdev_vport->dev) { err = -ENODEV; goto error_free_vport; @@ -423,7 +423,7 @@ const struct vport_ops ovs_netdev_vport_ops = { * In kernels earlier than 2.6.36, Open vSwitch cannot safely coexist with the * Linux bridge module, because there is only a single bridge hook function and * only a single br_port member in struct net_device, so this prevents loading - * both bridge and openvswitch_mod at the same time. + * both bridge and openvswitch at the same time. */ BRIDGE_MUTUAL_EXCLUSION; #endif