diff mbox series

sch_red: Fix a typo

Message ID 20210319044623.20396-1-unixbhaskar@gmail.com
State New
Headers show
Series sch_red: Fix a typo | expand

Commit Message

Bhaskar Chowdhury March 19, 2021, 4:46 a.m. UTC
s/recalcultion/recalculation/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 include/net/red.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.26.2
diff mbox series

Patch

diff --git a/include/net/red.h b/include/net/red.h
index 932f0d79d60c..6b418b69dc48 100644
--- a/include/net/red.h
+++ b/include/net/red.h
@@ -287,7 +287,7 @@  static inline unsigned long red_calc_qavg_from_idle_time(const struct red_parms
 	int  shift;

 	/*
-	 * The problem: ideally, average length queue recalcultion should
+	 * The problem: ideally, average length queue recalculation should
 	 * be done over constant clock intervals. This is too expensive, so
 	 * that the calculation is driven by outgoing packets.
 	 * When the queue is idle we have to model this clock by hand.