summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_device.c
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2005-02-05 08:28:36 +0000
committerru <ru@FreeBSD.org>2005-02-05 08:28:36 +0000
commit690fdeacb33ba6e423217f4f5304034ef686e14f (patch)
treebfef15bd02ae3fbb3862287846c919bc7439e24a /sys/netgraph/ng_device.c
parent7fde123e3aaa0702eb5ae71dc1a8b48e04f7e654 (diff)
downloadFreeBSD-src-690fdeacb33ba6e423217f4f5304034ef686e14f.zip
FreeBSD-src-690fdeacb33ba6e423217f4f5304034ef686e14f.tar.gz
Create a per-module mutex on MOD_LOAD, and destroy it on MOD_UNLOAD.
(This fixes witness_destroy() panic after module unload.) OK'ed by: rwatson, julian
Diffstat (limited to 'sys/netgraph/ng_device.c')
-rw-r--r--sys/netgraph/ng_device.c25
1 files changed, 24 insertions, 1 deletions
diff --git a/sys/netgraph/ng_device.c b/sys/netgraph/ng_device.c
index ed81bdb..09b5492 100644
--- a/sys/netgraph/ng_device.c
+++ b/sys/netgraph/ng_device.c
@@ -63,6 +63,7 @@
#define ERROUT(x) do { error = (x); goto done; } while (0)
/* Netgraph methods */
+static int ng_device_mod_event(module_t, int, void *);
static ng_constructor_t ng_device_constructor;
static ng_rcvmsg_t ng_device_rcvmsg;
static ng_shutdown_t ng_device_shutdown;
@@ -74,6 +75,7 @@ static ng_disconnect_t ng_device_disconnect;
static struct ng_type ngd_typestruct = {
.version = NG_ABI_VERSION,
.name = NG_DEVICE_NODE_TYPE,
+ .mod_event = ng_device_mod_event,
.constructor = ng_device_constructor,
.rcvmsg = ng_device_rcvmsg,
.shutdown = ng_device_shutdown,
@@ -101,7 +103,6 @@ typedef struct ngd_private *priv_p;
/* List of all active nodes and mutex to protect it */
static SLIST_HEAD(, ngd_private) ngd_nodes = SLIST_HEAD_INITIALIZER(ngd_nodes);
static struct mtx ng_device_mtx;
-MTX_SYSINIT(ng_device, &ng_device_mtx, "ng_device", MTX_DEF);
/* Maximum number of NGD devices */
#define MAX_NGD 25 /* should be more than enough for now */
@@ -535,3 +536,25 @@ get_free_unit()
return (unit);
}
+
+/*
+ * Handle loading and unloading for this node type.
+ */
+static int
+ng_device_mod_event(module_t mod, int event, void *data)
+{
+ int error = 0;
+
+ switch (event) {
+ case MOD_LOAD:
+ mtx_init(&ng_device_mtx, "ng_device", NULL, MTX_DEF);
+ break;
+ case MOD_UNLOAD:
+ mtx_destroy(&ng_device_mtx);
+ break;
+ default:
+ error = EOPNOTSUPP;
+ break;
+ }
+ return (error);
+}
OpenPOWER on IntegriCloud