summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_device.c
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2008-10-23 15:53:51 +0000
committerdes <des@FreeBSD.org>2008-10-23 15:53:51 +0000
commit66f807ed8b3634dc73d9f7526c484e43f094c0ee (patch)
tree21e792ce590e1bcf9b343890605a1b4c6a9016b3 /sys/netgraph/ng_device.c
parenta779c60ce0a41cd14710a8a12cfa22955108b27a (diff)
downloadFreeBSD-src-66f807ed8b3634dc73d9f7526c484e43f094c0ee.zip
FreeBSD-src-66f807ed8b3634dc73d9f7526c484e43f094c0ee.tar.gz
Retire the MALLOC and FREE macros. They are an abomination unto style(9).
MFC after: 3 months
Diffstat (limited to 'sys/netgraph/ng_device.c')
-rw-r--r--sys/netgraph/ng_device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netgraph/ng_device.c b/sys/netgraph/ng_device.c
index 5db9218..eb094be 100644
--- a/sys/netgraph/ng_device.c
+++ b/sys/netgraph/ng_device.c
@@ -163,7 +163,7 @@ ng_device_constructor(node_p node)
DBG;
- MALLOC(priv, priv_p, sizeof(*priv), M_NETGRAPH, M_NOWAIT | M_ZERO);
+ priv = malloc(sizeof(*priv), M_NETGRAPH, M_NOWAIT | M_ZERO);
if (priv == NULL)
return (ENOMEM);
@@ -186,7 +186,7 @@ ng_device_constructor(node_p node)
mtx_destroy(&priv->ngd_mtx);
mtx_destroy(&priv->readq.ifq_mtx);
free_unr(ngd_unit, priv->unit);
- FREE(priv, M_NETGRAPH);
+ free(priv, M_NETGRAPH);
return(EINVAL);
}
/* XXX: race here? */
@@ -307,7 +307,7 @@ ng_device_disconnect(hook_p hook)
free_unr(ngd_unit, priv->unit);
- FREE(priv, M_NETGRAPH);
+ free(priv, M_NETGRAPH);
ng_rmnode_self(NG_HOOK_NODE(hook));
OpenPOWER on IntegriCloud