Module Name: src
Committed By: pgoyette
Date: Tue Jan 23 22:08:55 UTC 2018
Modified Files:
src/sys/kern: subr_bufq.c
Log Message:
Fix a comment. NFC
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/kern/subr_bufq.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_bufq.c
diff -u src/sys/kern/subr_bufq.c:1.25 src/sys/kern/subr_bufq.c:1.26
--- src/sys/kern/subr_bufq.c:1.25 Fri Nov 18 02:37:33 2016
+++ src/sys/kern/subr_bufq.c Tue Jan 23 22:08:55 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_bufq.c,v 1.25 2016/11/18 02:37:33 pgoyette Exp $ */
+/* $NetBSD: subr_bufq.c,v 1.26 2018/01/23 22:08:55 pgoyette Exp $ */
/* NetBSD: subr_disk.c,v 1.70 2005/08/20 12:00:01 yamt Exp $ */
/*-
@@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_bufq.c,v 1.25 2016/11/18 02:37:33 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_bufq.c,v 1.26 2018/01/23 22:08:55 pgoyette Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -178,7 +178,7 @@ bufq_alloc(struct bufq_state **bufqp, co
if (strategy == BUFQ_STRAT_ANY || found_exact)
break;
- /* Try to autoload device module */
+ /* Try to autoload the bufq strategy module */
strlcpy(module_name, "bufq_", sizeof(module_name));
strlcat(module_name, strategy, sizeof(module_name));
mutex_exit(&bufq_mutex);