diff options
author | Thomas Haller <thaller@redhat.com> | 2018-04-05 11:21:59 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-04-06 18:36:57 +0200 |
commit | 78d03833fcbfc33ab36e86a79f4f58480811ad8d (patch) | |
tree | dea51d25899999eb9a158ff774261386975a42bd | |
parent | 81496b315e103ec69845a56771169fd2d33d75e4 (diff) | |
download | NetworkManager-78d03833fcbfc33ab36e86a79f4f58480811ad8d.tar.gz |
platform: enable parsing tun/tap properties from netlink
Now that the kernel patches are merged to mainline (rc), enable accepting
tun/tap link properties from netlink.
https://bugzilla.redhat.com/show_bug.cgi?id=1547213
-rw-r--r-- | src/platform/nm-linux-platform.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c index 787fdb19bd..96d8367ecb 100644 --- a/src/platform/nm-linux-platform.c +++ b/src/platform/nm-linux-platform.c @@ -1396,10 +1396,6 @@ _parse_lnk_tun (const char *kind, struct nlattr *info_data) NMPObject *obj; NMPlatformLnkTun *props; - /* FIXME: the netlink API is not yet part of a released kernel version - * Disable it for now, until we are sure it is stable. */ - return NULL; - if (!info_data || !nm_streq0 (kind, "tun")) return NULL; |