summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/netgraph.h
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2011-10-27 09:43:25 +0000
committerglebius <glebius@FreeBSD.org>2011-10-27 09:43:25 +0000
commit73f8c1969fba5d84c113453e480f9b1d095a4a0a (patch)
treec5c983134cab938e28bb1bc07b6a85364007286f /sys/netgraph/netgraph.h
parentbb1ea2838eca06c71027900f18b2b4b53e7bc9f8 (diff)
downloadFreeBSD-src-73f8c1969fba5d84c113453e480f9b1d095a4a0a.zip
FreeBSD-src-73f8c1969fba5d84c113453e480f9b1d095a4a0a.tar.gz
- If KDB & NETGRAPH_DEBUG are on, print traces on discovered failed
invariants. - Reduce tautology in NETGRAPH_DEBUG output.
Diffstat (limited to 'sys/netgraph/netgraph.h')
-rw-r--r--sys/netgraph/netgraph.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netgraph/netgraph.h b/sys/netgraph/netgraph.h
index 7b67c94e..09ee09e 100644
--- a/sys/netgraph/netgraph.h
+++ b/sys/netgraph/netgraph.h
@@ -57,6 +57,7 @@
#ifdef HAVE_KERNEL_OPTION_HEADERS
#include "opt_netgraph.h"
+#include "opt_kdb.h"
#endif
/* debugging options */
@@ -190,7 +191,7 @@ static __inline void
_chkhook(hook_p hook, char *file, int line)
{
if (hook->hk_magic != HK_MAGIC) {
- printf("Accessing freed hook ");
+ printf("Accessing freed ");
dumphook(hook, file, line);
}
hook->lastline = line;
@@ -458,7 +459,7 @@ static __inline void
_chknode(node_p node, char *file, int line)
{
if (node->nd_magic != ND_MAGIC) {
- printf("Accessing freed node ");
+ printf("Accessing freed ");
dumpnode(node, file, line);
}
node->lastline = line;
OpenPOWER on IntegriCloud