Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 049b9fa3 authored by Cong Wang's avatar Cong Wang Committed by Greg Kroah-Hartman
Browse files

net_sched: fix a missing refcnt in tcindex_init()



[ Upstream commit a8eab6d35e22f4f21471f16147be79529cd6aaf7 ]

The initial refcnt of struct tcindex_data should be 1,
it is clear that I forgot to set it to 1 in tcindex_init().
This leads to a dec-after-zero warning.

Reported-by: default avatar <syzbot+8325e509a1bf83ec741d@syzkaller.appspotmail.com>
Fixes: 304e024216a8 ("net_sched: add a temporary refcnt for struct tcindex_data")
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Jiri Pirko <jiri@resnulli.us>
Cc: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: default avatarCong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1891d57f
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -151,6 +151,7 @@ static int tcindex_init(struct tcf_proto *tp)
	p->mask = 0xffff;
	p->mask = 0xffff;
	p->hash = DEFAULT_HASH_SIZE;
	p->hash = DEFAULT_HASH_SIZE;
	p->fall_through = 1;
	p->fall_through = 1;
	refcount_set(&p->refcnt, 1); /* Paired with tcindex_destroy_work() */


	rcu_assign_pointer(tp->root, p);
	rcu_assign_pointer(tp->root, p);
	return 0;
	return 0;