Module Name: src Committed By: knakahara Date: Wed Dec 15 07:47:22 UTC 2021
Modified Files: src/sys/net: pktqueue.c Log Message: Fix typo in comment. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/net/pktqueue.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/net/pktqueue.c diff -u src/sys/net/pktqueue.c:1.14 src/sys/net/pktqueue.c:1.15 --- src/sys/net/pktqueue.c:1.14 Mon Oct 11 05:13:11 2021 +++ src/sys/net/pktqueue.c Wed Dec 15 07:47:22 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: pktqueue.c,v 1.14 2021/10/11 05:13:11 knakahara Exp $ */ +/* $NetBSD: pktqueue.c,v 1.15 2021/12/15 07:47:22 knakahara Exp $ */ /*- * Copyright (c) 2014 The NetBSD Foundation, Inc. @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: pktqueue.c,v 1.14 2021/10/11 05:13:11 knakahara Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pktqueue.c,v 1.15 2021/12/15 07:47:22 knakahara Exp $"); #ifdef _KERNEL_OPT #include "opt_net_mpsafe.h" @@ -276,8 +276,8 @@ pktq_rps_hash_toeplitz(const struct mbuf } /* - * topelitz without curcpu. - * Generally, this has better performance than topelitz. + * toeplitz without curcpu. + * Generally, this has better performance than toeplitz. */ static uint32_t pktq_rps_hash_toeplitz_othercpus(const struct mbuf *m)