Commit 36b4b92b authored by Jakub Kicinski's avatar Jakub Kicinski Committed by David S. Miller
Browse files

nfp: allow explicitly selected delayed stats



NFP flower offload uses delayed stats. Kernel recently gained
the ability to specify stats types. Make nfp accept DELAYED
stats, not just the catch all "any".

Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 53eca1f3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1207,7 +1207,8 @@ int nfp_flower_compile_action(struct nfp_app *app,
	bool pkt_host = false;
	u32 csum_updated = 0;

	if (!flow_action_basic_hw_stats_check(&flow->rule->action, extack))
	if (!flow_action_hw_stats_check(&flow->rule->action, extack,
					FLOW_ACTION_HW_STATS_DELAYED_BIT))
		return -EOPNOTSUPP;

	memset(nfp_flow->action_data, 0, NFP_FL_MAX_A_SIZ);