svn commit: r231765 - head/sys/netgraph
Gleb Smirnoff
glebius at FreeBSD.org
Wed Feb 15 15:06:04 UTC 2012
Author: glebius
Date: Wed Feb 15 15:06:03 2012
New Revision: 231765
URL: http://svn.freebsd.org/changeset/base/231765
Log:
Trim double empty lines.
Modified:
head/sys/netgraph/ng_base.c
Modified: head/sys/netgraph/ng_base.c
==============================================================================
--- head/sys/netgraph/ng_base.c Wed Feb 15 14:56:18 2012 (r231764)
+++ head/sys/netgraph/ng_base.c Wed Feb 15 15:06:03 2012 (r231765)
@@ -240,7 +240,6 @@ int ng_path_parse(char *addr, char **nod
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_it
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
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)
More information about the svn-src-head
mailing list