[ovs-dev] [PATCH 11/21] netlink: Simplify nl_msg_start_nested().

Jarno Rajahalme jarno at ovn.org
Fri Feb 24 00:19:18 UTC 2017


Since there is no data to copy nl_msg_put_unspec_uninit() may be used
directly, rather than via nl_msg_put_unspec().

Signed-off-by: Jarno Rajahalme <jarno at ovn.org>
---
 lib/netlink.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/netlink.c b/lib/netlink.c
index ad7d35a..f253f80 100644
--- a/lib/netlink.c
+++ b/lib/netlink.c
@@ -454,7 +454,7 @@ size_t
 nl_msg_start_nested(struct ofpbuf *msg, uint16_t type)
 {
     size_t offset = msg->size;
-    nl_msg_put_unspec(msg, type, NULL, 0);
+    nl_msg_put_unspec_uninit(msg, type, 0);
     return offset;
 }
 
-- 
2.1.4



More information about the dev mailing list