[PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump

Subsystems: networking [general], tc subsystem, the rest

STALE4569d

3 messages, 2 authors, 2014-03-10 · open the first message on its own page

[PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump

From: Eric Dumazet <hidden>
Date: 2014-03-08 02:01:06

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;

Re: [PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump

From: David Miller <davem@davemloft.net>
Date: 2014-03-10 19:32:07

From: Eric Dumazet <redacted>
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.

Re: [PATCH net-next] pkt_sched: add cond_resched() to class and qdisc dump

From: Eric Dumazet <hidden>
Date: 2014-03-10 20:12:26

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
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help