Module Name: src
Committed By: pgoyette
Date: Wed Nov 16 10:43:37 UTC 2016
Modified Files:
src/sbin/modstat: main.c
Log Message:
Add a description for the new MODULE_CLASS_BUFQ class.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sbin/modstat/main.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/modstat/main.c
diff -u src/sbin/modstat/main.c:1.23 src/sbin/modstat/main.c:1.24
--- src/sbin/modstat/main.c:1.23 Mon Sep 5 01:09:57 2016
+++ src/sbin/modstat/main.c Wed Nov 16 10:43:37 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.23 2016/09/05 01:09:57 sevan Exp $ */
+/* $NetBSD: main.c,v 1.24 2016/11/16 10:43:37 pgoyette Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: main.c,v 1.23 2016/09/05 01:09:57 sevan Exp $");
+__RCSID("$NetBSD: main.c,v 1.24 2016/11/16 10:43:37 pgoyette Exp $");
#endif /* !lint */
#include <sys/module.h>
@@ -54,7 +54,8 @@ static const char *classes[] = {
"vfs",
"driver",
"exec",
- "secmodel"
+ "secmodel",
+ "bufq"
};
const unsigned int class_max = __arraycount(classes);