Re: [PATCH][NET_SCHED] sch_htb: htb_requeue fix

2008-02-09 Thread David Miller
From: Jarek Poplawski <[EMAIL PROTECTED]> Date: Fri, 8 Feb 2008 08:57:49 + > htb_requeue() enqueues skbs for which htb_classify() returns NULL. > This is wrong because such skbs could be handled by NET_CLS_ACT code, > and the decision could be different than earlier in htb_enqueue(). > So htb_

[PATCH][NET_SCHED] sch_htb: htb_requeue fix

2008-02-08 Thread Jarek Poplawski
htb_requeue() enqueues skbs for which htb_classify() returns NULL. This is wrong because such skbs could be handled by NET_CLS_ACT code, and the decision could be different than earlier in htb_enqueue(). So htb_requeue() is changed to work and look more like htb_enqueue(). Signed-off-by: Jarek Po