net: sched: extend action ops with put_dev callback
authorVlad Buslov <vladbu@mellanox.com>
Fri, 10 Aug 2018 17:51:52 +0000 (20:51 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sat, 11 Aug 2018 19:37:10 +0000 (12:37 -0700)
commit84a75b329be84c108a21ab9c02a52a9bf9e5a919
tree54e1878072e38345ae860567911a2b218935bf63
parent764e9a24480f6ffba5493fb21e6a7b030d6b8b67
net: sched: extend action ops with put_dev callback

As a preparation for removing dependency on rtnl lock from rules update
path, all users of shared objects must take reference while working with
them.

Extend action ops with put_dev() API to be used on net device returned by
get_dev().

Modify mirred action (only action that implements get_dev callback):
- Take reference to net device in get_dev.
- Implement put_dev API that releases reference to net device.

Signed-off-by: Vlad Buslov <vladbu@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