net/mlx5: fix flow age event triggering
authorMichael Baum <michaelba@nvidia.com>
Thu, 29 Apr 2021 09:55:41 +0000 (12:55 +0300)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 30 Apr 2021 10:41:07 +0000 (12:41 +0200)
commit447d4d797d21b35185d511b7c280d7fe171b29bd
treeb6b02620f72ed6d5d4bd239cb30adf8de2095bbd
parentcc492aa5951386ac59a6135902435c3f94e56172
net/mlx5: fix flow age event triggering

A FLOW_AGE event should be invoked when a new aged-out flow is detected
by the PMD after the last user get-aged query calling.
The PMD manages 2 flags for this information and check them in order to
decide if an event should be invoked:
MLX5_AGE_EVENT_NEW - a new aged-out flow was detected. after the last
check.
MLX5_AGE_TRIGGER - get-aged query was called after the last aged-out
flow.
The 2 flags were unset after the event invoking.

When the user calls get-aged query from the event callback, the TRIGGER
flag was set inside the user callback and unset directly after the
callback what may stop the event invoking forever.

Unset the TRIGGER flag before the event invoking in order to allow set
it by the user callback.

Fixes: f935ed4b645a ("net/mlx5: support flow hit action for aging")
Cc: stable@dpdk.org
Reported-by: David Bouyeure <david.bouyeure@fraudbuster.mobi>
Signed-off-by: Michael Baum <michaelba@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
drivers/net/mlx5/mlx5.c
drivers/net/mlx5/mlx5.h