* [PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump
@ 2014-03-08 2:01 Eric Dumazet
2014-03-10 19:32 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Eric Dumazet @ 2014-03-08 2:01 UTC (permalink / raw)
To: David Miller; +Cc: netdev
From: Eric Dumazet <edumazet@google.com>
We have seen delays of more than 50ms in class or qdisc dumps, in case
device is under high TX stress.
Add cond_resched() to give a chance to higher prio tasks to get cpu.
Signed-off-by: Eric Dumazet <edumazet@google.com>
---
Google-Bug-Id: 13317737
net/sched/sch_api.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c
index 1313145e3b86..15974e38cada 100644
--- a/net/sched/sch_api.c
+++ b/net/sched/sch_api.c
@@ -1303,6 +1303,7 @@ static int tc_fill_qdisc(struct sk_buff *skb, struct Qdisc *q, u32 clid,
struct gnet_dump d;
struct qdisc_size_table *stab;
+ cond_resched();
nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
if (!nlh)
goto out_nlmsg_trim;
@@ -1617,6 +1618,7 @@ static int tc_fill_tclass(struct sk_buff *skb, struct Qdisc *q,
struct gnet_dump d;
const struct Qdisc_class_ops *cl_ops = q->ops->cl_ops;
+ cond_resched();
nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
if (!nlh)
goto out_nlmsg_trim;
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump
2014-03-08 2:01 [PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump Eric Dumazet
@ 2014-03-10 19:32 ` David Miller
2014-03-10 20:12 ` Eric Dumazet
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2014-03-10 19:32 UTC (permalink / raw)
To: eric.dumazet; +Cc: netdev
From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Fri, 07 Mar 2014 18:01:04 -0800
> From: Eric Dumazet <edumazet@google.com>
>
> We have seen delays of more than 50ms in class or qdisc dumps, in case
> device is under high TX stress.
>
> Add cond_resched() to give a chance to higher prio tasks to get cpu.
>
> Signed-off-by: Eric Dumazet <edumazet@google.com>
Is it OK to sleep (or rather: cond_resched()) in an RCU region?
That's what will potentially happen via tc_dump_qdisc() it seems.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump
2014-03-10 19:32 ` David Miller
@ 2014-03-10 20:12 ` Eric Dumazet
0 siblings, 0 replies; 3+ messages in thread
From: Eric Dumazet @ 2014-03-10 20:12 UTC (permalink / raw)
To: David Miller; +Cc: netdev
On Mon, 2014-03-10 at 15:32 -0400, David Miller wrote:
> Is it OK to sleep (or rather: cond_resched()) in an RCU region?
> That's what will potentially happen via tc_dump_qdisc() it seems.
Hmpf, you are right I forgot this.
RTNL protects us in tc_dump_qdisc().
I need to remove this useless rcu protection.
Thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-03-10 20:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-08 2:01 [PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump Eric Dumazet
2014-03-10 19:32 ` David Miller
2014-03-10 20:12 ` Eric Dumazet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).