[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A97FDCD.10208@gmail.com>
Date: Fri, 28 Aug 2009 17:54:53 +0200
From: Eric Dumazet <eric.dumazet@...il.com>
To: David Miller <davem@...emloft.net>
CC: netdev@...r.kernel.org, tglx@...utronix.de
Subject: Re: [PATCH 2/2]: pkt_sched: Convert CBQ to tasklet_hrtimer.
David Miller a écrit :
> This code expects to run in softirq context, and bare hrtimers
> run in hw IRQ context.
>
> Signed-off-by: David S. Miller <davem@...emloft.net>
...
> sch->flags &= ~TCQ_F_THROTTLED;
> @@ -1214,7 +1216,7 @@ cbq_reset(struct Qdisc* sch)
> q->tx_class = NULL;
> q->tx_borrowed = NULL;
> qdisc_watchdog_cancel(&q->watchdog);
> - hrtimer_cancel(&q->delay_timer);
> + tasklet_hrtimer_cancel(&q->delay_timer);
> q->toplevel = TC_CBQ_MAXLEVEL;
> q->now = psched_get_time();
> q->now_rt = q->now;
David
I now have these dmesg warnings when playing with cbq
# tc qdisc del dev eth3 root
# tc qdisc add dev eth3 root handle 1: est 1sec 8sec cbq avpkt 1000 rate 1000Mbit bandwidth 1000Mbit
# tc qdisc del dev eth3 root
[12786.458485] Attempt to kill tasklet from interrupt
[12786.458522] Attempt to kill tasklet from interrupt
[12786.465261] Attempt to kill tasklet from interrupt
[12786.465286] Attempt to kill tasklet from interrupt
probably becauce cbq_reset() being called from interrupt context ?
Thanks
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists