mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
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 <joestringer@nicira.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user