Acked-by: Mark Michelson <[email protected]> On 11/1/24 09:29, Dumitru Ceara wrote:
Fixes: fb96ae36793a ("controller: Merge the mac-cache and mac-learn.") Signed-off-by: Dumitru Ceara <[email protected]> --- controller/pinctrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)diff --git a/controller/pinctrl.c b/controller/pinctrl.c index b891435c12..dfb3130aa2 100644 --- a/controller/pinctrl.c +++ b/controller/pinctrl.c @@ -8981,7 +8981,7 @@ static void pinctrl_handle_put_fdb(const struct flow *md, const struct flow *headers) OVS_REQUIRES(pinctrl_mutex) { - if (hmap_count(&put_mac_bindings) >= MAX_FDB_ENTRIES) { + if (hmap_count(&put_fdbs) >= MAX_FDB_ENTRIES) { COVERAGE_INC(pinctrl_drop_put_mac_binding); return; }
_______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
