Module Name:    src
Committed By:   wiz
Date:           Mon Feb  8 09:31:05 UTC 2021

Modified Files:
        src/sys/kern: subr_pcq.c

Log Message:
Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/kern/subr_pcq.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/kern/subr_pcq.c
diff -u src/sys/kern/subr_pcq.c:1.12 src/sys/kern/subr_pcq.c:1.13
--- src/sys/kern/subr_pcq.c:1.12	Tue Jan 12 19:36:39 2021
+++ src/sys/kern/subr_pcq.c	Mon Feb  8 09:31:05 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_pcq.c,v 1.12 2021/01/12 19:36:39 skrll Exp $	*/
+/*	$NetBSD: subr_pcq.c,v 1.13 2021/02/08 09:31:05 wiz Exp $	*/
 
 /*-
  * Copyright (c) 2009, 2019 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_pcq.c,v 1.12 2021/01/12 19:36:39 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_pcq.c,v 1.13 2021/02/08 09:31:05 wiz Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -124,7 +124,7 @@ pcq_put(pcq_t *pcq, void *item)
 	/*
 	 * Synchronization activity to wake up the consumer will ensure
 	 * that the update to pcq_items[] is visible before the wakeup
-	 * arrives.  So, we do not need an additonal memory barrier here.
+	 * arrives.  So, we do not need an additional memory barrier here.
 	 */
 	return true;
 }

Reply via email to