From: Ethan Jackson Date: Tue, 21 Aug 2012 22:44:58 +0000 (-0700) Subject: bridge: Deprecate the null interface type. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0faed34652f3d1a383510ce18540a743e0fb97f6;p=openvswitch bridge: Deprecate the null interface type. It's not entirely clear what problem the null interface type is trying to solve, nor how it could be of use to any controller. This patch deprecates it, and schedules its removal for February 2013. If there are concerns, please email dev@openvswitch.org. Signed-off-by: Ethan Jackson --- diff --git a/NEWS b/NEWS index 45e11764..872f8d0d 100644 --- a/NEWS +++ b/NEWS @@ -22,6 +22,8 @@ post-v1.8.0 February 2013. Please email dev@openvswitch.org with concerns. - The autopath action is deprecated and will be removed no earlier than February 2013. Please email dev@openvswitch.org with concerns. + - The null interface type is deprecated and will be removed no earlier + than February 2013. Please email dev@openvswitch.org with concerns. v1.8.0 - xx xxx xxxx diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 1fbbe32a..02257397 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -2525,7 +2525,12 @@ bridge_add_del_ports(struct bridge *br, if (iface) { iface->cfg = cfg; iface->type = type; - } else if (strcmp(type, "null")) { + } else if (!strcmp(type, "null")) { + VLOG_WARN_ONCE("%s: The null interface type is deprecated and" + " may be removed in February 2013. Please email" + " dev@openvswitch.org with concerns.", + cfg->name); + } else { bridge_queue_if_cfg(br, cfg, port); } } diff --git a/vswitchd/vswitch.xml b/vswitchd/vswitch.xml index b71a3087..a1b99f86 100644 --- a/vswitchd/vswitch.xml +++ b/vswitchd/vswitch.xml @@ -1215,7 +1215,8 @@
null
-
An ignored interface.
+
An ignored interface. Deprecated and slated for removal in + February 2013.