mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
dpif-netdev: Remove OVS_UNUSED flag in functions for ct_zone limits.
The dpif is used, so remove the OVS_UNUSED flag.
Fixes: a7f33fdbfb
("conntrack: Support zone limits.")
Signed-off-by: linhuang <linhuang@ruijie.com.cn>
Reviewed-by: David Marchand <david.marchand@redhat.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
This commit is contained in:
@@ -8429,7 +8429,7 @@ dpif_netdev_ct_get_tcp_seq_chk(struct dpif *dpif, bool *enabled)
|
||||
}
|
||||
|
||||
static int
|
||||
dpif_netdev_ct_set_limits(struct dpif *dpif OVS_UNUSED,
|
||||
dpif_netdev_ct_set_limits(struct dpif *dpif,
|
||||
const uint32_t *default_limits,
|
||||
const struct ovs_list *zone_limits)
|
||||
{
|
||||
@@ -8454,7 +8454,7 @@ dpif_netdev_ct_set_limits(struct dpif *dpif OVS_UNUSED,
|
||||
}
|
||||
|
||||
static int
|
||||
dpif_netdev_ct_get_limits(struct dpif *dpif OVS_UNUSED,
|
||||
dpif_netdev_ct_get_limits(struct dpif *dpif,
|
||||
uint32_t *default_limit,
|
||||
const struct ovs_list *zone_limits_request,
|
||||
struct ovs_list *zone_limits_reply)
|
||||
@@ -8494,7 +8494,7 @@ dpif_netdev_ct_get_limits(struct dpif *dpif OVS_UNUSED,
|
||||
}
|
||||
|
||||
static int
|
||||
dpif_netdev_ct_del_limits(struct dpif *dpif OVS_UNUSED,
|
||||
dpif_netdev_ct_del_limits(struct dpif *dpif,
|
||||
const struct ovs_list *zone_limits)
|
||||
{
|
||||
int err = 0;
|
||||
|
Reference in New Issue
Block a user