Re: [PATCH] net_sched: sch_fq: use rb_entry()

2016-12-20 Thread David Miller
From: Geliang Tang Date: Tue, 20 Dec 2016 22:02:15 +0800 > To make the code clearer, use rb_entry() instead of container_of() to > deal with rbtree. > > Signed-off-by: Geliang Tang Applied.

Re: [PATCH] net_sched: sch_fq: use rb_entry()

2016-12-20 Thread Eric Dumazet
On Tue, 2016-12-20 at 22:02 +0800, Geliang Tang wrote: > To make the code clearer, use rb_entry() instead of container_of() to > deal with rbtree. > > Signed-off-by: Geliang Tang > --- > net/sched/sch_fq.c | 14 +++--- > 1 file changed, 7 insertions(+), 7 deletions(-) Acked-by: Eric Dum