dpif-linux: Fix flow_dump_next annotation.
authorJoe Stringer <joestringer@nicira.com>
Tue, 21 Jan 2014 19:29:24 +0000 (11:29 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 23 Jan 2014 16:42:40 +0000 (08:42 -0800)
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 <joestringer@nicira.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/dpif-linux.c

index 497a5bd..933c872 100644 (file)
@@ -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,