On Sat, Sep 19, 2026 at 08:04:26PM -0300, Victor Nogueira wrote:
The action notification paths size their skb from each action's
get_fill_size() callback, but three gaps remain: one callback undercounts
(TCA_MIRRED_BLOCKID), five actions have no callback at all, and the
TCA_ROOT_EXT_WARN_MSG attribute is unbudgeted.
Patch 1 fixes the mirred callback for TCA_MIRRED_BLOCKID.
Patch 2 adds get_fill_size() to act_simple, act_mpls, act_nat, act_skbmod
and act_connmark, the five actions that still lack one.
Patch 3 budgets TCA_ROOT_EXT_WARN_MSG.
Victor Nogueira (3):
net/sched: act_mirred: account for TCA_MIRRED_BLOCKID in get_fill_size
net/sched: add get_fill_size() to the five actions that lack one
net/sched: act_api: budget TCA_ROOT_EXT_WARN_MSG in notify skbs
For the series:
Reviewed-by: Simon Horman <horms@kernel.org>