summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_base.c
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2012-02-15 15:06:03 +0000
committerglebius <glebius@FreeBSD.org>2012-02-15 15:06:03 +0000
commitc02e9e2ec5007f7ff2c0ff2d53cc193a64f73f84 (patch)
treed91ac14aec9dcf04de5b1a151cd5d6816ea5945d /sys/netgraph/ng_base.c
parent0db37683e2cf9ef7a79f99e461af2bfb261a572e (diff)
downloadFreeBSD-src-c02e9e2ec5007f7ff2c0ff2d53cc193a64f73f84.zip
FreeBSD-src-c02e9e2ec5007f7ff2c0ff2d53cc193a64f73f84.tar.gz
Trim double empty lines.
Diffstat (limited to 'sys/netgraph/ng_base.c')
-rw-r--r--sys/netgraph/ng_base.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/netgraph/ng_base.c b/sys/netgraph/ng_base.c
index 2055520..d8a321f 100644
--- a/sys/netgraph/ng_base.c
+++ b/sys/netgraph/ng_base.c
@@ -240,7 +240,6 @@ int ng_path_parse(char *addr, char **node, char **path, char **hook);
void ng_rmnode(node_p node, hook_p dummy1, void *dummy2, int dummy3);
void ng_unname(node_p node);
-
/* Our own netgraph malloc type */
MALLOC_DEFINE(M_NETGRAPH, "netgraph", "netgraph structures and ctrl messages");
MALLOC_DEFINE(M_NETGRAPH_MSG, "netgraph_msg", "netgraph name storage");
@@ -341,7 +340,6 @@ ng_alloc_node(void)
#define NG_ALLOC_HOOK(hook) do { (hook) = ng_alloc_hook(); } while (0)
#define NG_ALLOC_NODE(node) do { (node) = ng_alloc_node(); } while (0)
-
#define NG_FREE_HOOK(hook) \
do { \
mtx_lock(&ng_nodelist_mtx); \
@@ -1206,7 +1204,6 @@ ng_newtype(struct ng_type *tp)
return (EEXIST);
}
-
/* Link in new type */
TYPELIST_WLOCK();
LIST_INSERT_HEAD(&ng_typelist, tp, types);
@@ -3275,7 +3272,6 @@ SYSCTL_PROC(_debug, OID_AUTO, ng_dump_items, CTLTYPE_INT | CTLFLAG_RW,
0, sizeof(int), sysctl_debug_ng_dump_items, "I", "Number of allocated items");
#endif /* NETGRAPH_DEBUG */
-
/***********************************************************************
* Worklist routines
**********************************************************************/
@@ -3359,7 +3355,6 @@ ng_worklist_add(node_p node)
}
}
-
/***********************************************************************
* Externally useable functions to set up a queue item ready for sending
***********************************************************************/
@@ -3440,8 +3435,6 @@ ng_package_msg(struct ng_mesg *msg, int flags)
return (item);
}
-
-
#define SET_RETADDR(item, here, retaddr) \
do { /* Data or fn items don't have retaddrs */ \
if ((item->el_flags & NGQF_TYPE) == NGQF_MESG) { \
@@ -3667,7 +3660,6 @@ ng_callout_trampoline(void *arg)
CURVNET_RESTORE();
}
-
int
ng_callout(struct callout *c, node_p node, hook_p hook, int ticks,
ng_item_fn *fn, void * arg1, int arg2)
OpenPOWER on IntegriCloud