git: 43ed131b802c - stable/12 - netpfil: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 06 Sep 2022 05:48:14 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=43ed131b802c77744cbe91b70018b9637d53e560
commit 43ed131b802c77744cbe91b70018b9637d53e560
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-09-03 17:18:54 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-09-06 05:45:49 +0000
netpfil: Fix a typo in a source code comment
- s/intergers/integers/
While here, fix some whitespace issues.
(cherry picked from commit fd2235ffdca586a007667c3be8c1ed2944e4fe3a)
---
sys/netpfil/ipfw/dn_aqm_codel.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/sys/netpfil/ipfw/dn_aqm_codel.c b/sys/netpfil/ipfw/dn_aqm_codel.c
index 47ed971c6ba5..d8a322ff115a 100644
--- a/sys/netpfil/ipfw/dn_aqm_codel.c
+++ b/sys/netpfil/ipfw/dn_aqm_codel.c
@@ -136,7 +136,7 @@ SYSCTL_PROC(_net_inet_ip_dummynet_codel, OID_AUTO, interval,
* http://betterexplained.com/articles/
* understanding-quakes-fast-inverse-square-root/
*/
-aqm_time_t
+aqm_time_t
control_law(struct codel_status *cst, struct dn_aqm_codel_parms *cprms,
aqm_time_t t)
{
@@ -153,10 +153,10 @@ control_law(struct codel_status *cst, struct dn_aqm_codel_parms *cprms,
}
/* newguess = g(1.5 - 0.5*c*g^2)
- * Multiplying both sides by 2 to make all the constants intergers
+ * Multiplying both sides by 2 to make all the constants integers
* newguess * 2 = g(3 - c*g^2) g=old guess, c=count
* So, newguess = newguess /2
- * Fixed point operations are used here.
+ * Fixed point operations are used here.
*/
/* Calculate g^2 */
@@ -164,14 +164,14 @@ control_law(struct codel_status *cst, struct dn_aqm_codel_parms *cprms,
/* Calculate (3 - c*g^2) i.e. (3 - c * temp) */
temp = (3ULL<< (FIX_POINT_BITS*2)) - (count * temp);
- /*
- * Divide by 2 because we multiplied the original equation by two
- * Also, we shift the result by 8 bits to prevent overflow.
+ /*
+ * Divide by 2 because we multiplied the original equation by two
+ * Also, we shift the result by 8 bits to prevent overflow.
* */
- temp >>= (1 + 8);
+ temp >>= (1 + 8);
/* Now, temp = (1.5 - 0.5*c*g^2)
- * Calculate g (1.5 - 0.5*c*g^2) i.e. g * temp
+ * Calculate g (1.5 - 0.5*c*g^2) i.e. g * temp
*/
temp = (cst->isqrt * temp) >> (FIX_POINT_BITS + FIX_POINT_BITS - 8);
cst->isqrt = temp;