OSDN Git Service

net: sched: use get_dev() action API in flow_action infra
authorVlad Buslov <vladbu@mellanox.com>
Fri, 13 Sep 2019 15:28:41 +0000 (18:28 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Sep 2019 07:18:03 +0000 (09:18 +0200)
commit470d5060e6b3b8fae47d944601855e9ece7a2470
treeb91a0dfb567b5ed2878d5543014a65196f7fe7ae
parent4a5da47d5cb6aba3c26a5cc0dddfb2d577e851e9
net: sched: use get_dev() action API in flow_action infra

When filling in hardware intermediate representation tc_setup_flow_action()
directly obtains, checks and takes reference to dev used by mirred action,
instead of using act->ops->get_dev() API created specifically for this
purpose. In order to remove code duplication, refactor flow_action infra to
use action API when obtaining mirred action target dev. Extend get_dev()
with additional argument that is used to provide dev destructor to the
user.

Fixes: 5a6ff4b13d59 ("net: sched: take reference to action dev before calling offloads")
Signed-off-by: Vlad Buslov <vladbu@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/act_api.h
net/sched/act_mirred.c
net/sched/cls_api.c