Cake - FQ_codel the next generation
 help / color / mirror / Atom feed
* [Cake] [PATCH net-next] net: sched: cake: Optimize number of calls to cake_heapify()
@ 2024-04-06 23:55 Kuan-Wei Chiu
  2024-04-07 16:10 ` Toke Høiland-Jørgensen
  0 siblings, 1 reply; 4+ messages in thread
From: Kuan-Wei Chiu @ 2024-04-06 23:55 UTC (permalink / raw)
  To: toke
  Cc: jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni, jserv,
	cake, netdev, linux-kernel, Kuan-Wei Chiu

Improve the max-heap construction process by reducing unnecessary
heapify operations. Specifically, adjust the starting condition from
n / 2 to n / 2 - 1 in the loop that iterates over all non-leaf
elements.

Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com>
---
 net/sched/sch_cake.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/sched/sch_cake.c b/net/sched/sch_cake.c
index edee926ccde8..2eabc4dc5b79 100644
--- a/net/sched/sch_cake.c
+++ b/net/sched/sch_cake.c
@@ -1512,7 +1512,7 @@ static unsigned int cake_drop(struct Qdisc *sch, struct sk_buff **to_free)
 	if (!q->overflow_timeout) {
 		int i;
 		/* Build fresh max-heap */
-		for (i = CAKE_MAX_TINS * CAKE_QUEUES / 2; i >= 0; i--)
+		for (i = CAKE_MAX_TINS * CAKE_QUEUES / 2 - 1; i >= 0; i--)
 			cake_heapify(q, i);
 	}
 	q->overflow_timeout = 65535;
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-04-08 13:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-06 23:55 [Cake] [PATCH net-next] net: sched: cake: Optimize number of calls to cake_heapify() Kuan-Wei Chiu
2024-04-07 16:10 ` Toke Høiland-Jørgensen
2024-04-08 11:14   ` Kuan-Wei Chiu
2024-04-08 13:00     ` Toke Høiland-Jørgensen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox