From 63016faef531b23d8211d03420ab9a8f4b826b52 Mon Sep 17 00:00:00 2001 From: Joe Stringer Date: Tue, 21 Jan 2014 11:29:24 -0800 Subject: [PATCH] dpif-linux: Fix flow_dump_next annotation. The 'dpif_' parameter of dpif_linux_flow_dump_next() was marked as OVS_UNUSED, even though it's passed down to dpif_linux_flow_get__(). Signed-off-by: Joe Stringer Signed-off-by: Ben Pfaff --- lib/dpif-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpif-linux.c b/lib/dpif-linux.c index 497a5bd86..933c872e9 100644 --- a/lib/dpif-linux.c +++ b/lib/dpif-linux.c @@ -1014,7 +1014,7 @@ dpif_linux_flow_dump_start(const struct dpif *dpif_, void **statep) } static int -dpif_linux_flow_dump_next(const struct dpif *dpif_ OVS_UNUSED, void *state_, +dpif_linux_flow_dump_next(const struct dpif *dpif_, void *state_, const struct nlattr **key, size_t *key_len, const struct nlattr **mask, size_t *mask_len, const struct nlattr **actions, size_t *actions_len, -- 2.20.1