From faf70df4805e3da546c9667ee0bff1052617964c Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Wed, 24 Feb 2016 17:37:50 +0100 Subject: [PATCH] device: the veth should have the same priority as ethernet It's supposed to be a virtual ethernet. --- src/devices/nm-device.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c index 641b429eb..5e089089c 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -778,6 +778,7 @@ nm_device_get_priority (NMDevice *self) switch (nm_device_get_device_type (self)) { /* 50 is reserved for VPN (NM_VPN_ROUTE_METRIC_DEFAULT) */ case NM_DEVICE_TYPE_ETHERNET: + case NM_DEVICE_TYPE_VETH: return 100; case NM_DEVICE_TYPE_INFINIBAND: return 150; @@ -803,8 +804,6 @@ nm_device_get_priority (NMDevice *self) return 600; case NM_DEVICE_TYPE_OLPC_MESH: return 650; - case NM_DEVICE_TYPE_VETH: - return 665; case NM_DEVICE_TYPE_IP_TUNNEL: return 675; case NM_DEVICE_TYPE_MODEM: