diff options
author | Alexey Khoroshilov <[email protected]> | 2017-03-05 03:01:55 +0300 |
---|---|---|
committer | David S. Miller <[email protected]> | 2017-03-07 14:13:03 -0800 |
commit | 6c4dc75c251721f517e9daeb5370ea606b5b35ce (patch) | |
tree | f4f6e12207a9c5262e499b4639fdc9509e4c9d36 | |
parent | 72c3fbf8dc90988bd04123b88b70ffffa206582d (diff) |
net/sched: act_skbmod: remove unneeded rcu_read_unlock in tcf_skbmod_dump
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Alexey Khoroshilov <[email protected]>
Acked-by: Jamal Hadi Salim <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/sched/act_skbmod.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/sched/act_skbmod.c b/net/sched/act_skbmod.c index 3b7074e23024..c736627f8f4a 100644 --- a/net/sched/act_skbmod.c +++ b/net/sched/act_skbmod.c @@ -228,7 +228,6 @@ static int tcf_skbmod_dump(struct sk_buff *skb, struct tc_action *a, return skb->len; nla_put_failure: - rcu_read_unlock(); nlmsg_trim(skb, b); return -1; } |