svn commit: r231764 - head/sys/netgraph

Gleb Smirnoff glebius at FreeBSD.org
Wed Feb 15 14:56:19 UTC 2012


Author: glebius
Date: Wed Feb 15 14:56:18 2012
New Revision: 231764
URL: http://svn.freebsd.org/changeset/base/231764

Log:
  Remove testing stuff, reducing kernel memory footprint by 1 Kb.
  
  Anyway, when we are building a LINT kernel, all these macros
  are tested via nodes.

Modified:
  head/sys/netgraph/ng_base.c

Modified: head/sys/netgraph/ng_base.c
==============================================================================
--- head/sys/netgraph/ng_base.c	Wed Feb 15 14:31:45 2012	(r231763)
+++ head/sys/netgraph/ng_base.c	Wed Feb 15 14:56:18 2012	(r231764)
@@ -3737,32 +3737,3 @@ ng_replace_retaddr(node_p here, item_p i
 		NGI_RETADDR(item) = ng_node2ID(here);
 	}
 }
-
-#define TESTING
-#ifdef TESTING
-/* just test all the macros */
-void
-ng_macro_test(item_p item);
-void
-ng_macro_test(item_p item)
-{
-	node_p node = NULL;
-	hook_p hook = NULL;
-	struct mbuf *m;
-	struct ng_mesg *msg;
-	ng_ID_t retaddr;
-	int	error;
-
-	NGI_GET_M(item, m);
-	NGI_GET_MSG(item, msg);
-	retaddr = NGI_RETADDR(item);
-	NG_SEND_DATA(error, hook, m, NULL);
-	NG_SEND_DATA_ONLY(error, hook, m);
-	NG_FWD_NEW_DATA(error, item, hook, m);
-	NG_FWD_ITEM_HOOK(error, item, hook);
-	NG_SEND_MSG_HOOK(error, node, msg, hook, retaddr);
-	NG_SEND_MSG_ID(error, node, msg, retaddr, retaddr);
-	NG_SEND_MSG_PATH(error, node, msg, ".:", retaddr);
-	NG_FWD_MSG_HOOK(error, node, item, hook, retaddr);
-}
-#endif /* TESTING */


More information about the svn-src-all mailing list