summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2008-10-30 21:48:28 +0000
committersobomax <sobomax@FreeBSD.org>2008-10-30 21:48:28 +0000
commitdafc63cd43bf0c7ea93a1deb268c4cfc08fbaa8b (patch)
tree53c341b456c4945540639124ec969e9e9e26ce59
parentae5a12cdf15120eb335030274f5cfa6220aec8d1 (diff)
downloadFreeBSD-src-dafc63cd43bf0c7ea93a1deb268c4cfc08fbaa8b.zip
FreeBSD-src-dafc63cd43bf0c7ea93a1deb268c4cfc08fbaa8b.tar.gz
Make it possible to compile kernel with KTR but without DDB.
-rw-r--r--sys/conf/files2
-rw-r--r--sys/kern/subr_stack.c6
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/conf/files b/sys/conf/files
index a80db30..fba04aa 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -1691,7 +1691,7 @@ kern/subr_sbuf.c standard
kern/subr_scanf.c standard
kern/subr_sleepqueue.c standard
kern/subr_smp.c standard
-kern/subr_stack.c optional ddb | stack
+kern/subr_stack.c optional ddb | stack | ktr
kern/subr_taskqueue.c standard
kern/subr_trap.c standard
kern/subr_turnstile.c standard
diff --git a/sys/kern/subr_stack.c b/sys/kern/subr_stack.c
index cf7c7ac..99e35ea 100644
--- a/sys/kern/subr_stack.c
+++ b/sys/kern/subr_stack.c
@@ -155,15 +155,18 @@ stack_sbuf_print_ddb(struct sbuf *sb, struct stack *st)
name, offset);
}
}
+#endif
#ifdef KTR
void
stack_ktr(u_int mask, const char *file, int line, struct stack *st, u_int depth,
int cheap)
{
+#ifdef DDB
const char *name;
long offset;
int i;
+#endif
KASSERT(st->depth <= STACK_MAX, ("bogus stack"));
if (cheap) {
@@ -180,6 +183,7 @@ stack_ktr(u_int mask, const char *file, int line, struct stack *st, u_int depth,
ktr_tracepoint(mask, file, line, "#2 %p %p %p %p %p %p",
st->pcs[12], st->pcs[13], st->pcs[14], st->pcs[15],
st->pcs[16], st->pcs[17]);
+#ifdef DDB
} else {
if (depth == 0 || st->depth < depth)
depth = st->depth;
@@ -188,10 +192,10 @@ stack_ktr(u_int mask, const char *file, int line, struct stack *st, u_int depth,
ktr_tracepoint(mask, file, line, "#%d %p at %s+%#lx",
i, st->pcs[i], (u_long)name, offset, 0, 0);
}
+#endif
}
}
#endif
-#endif
/*
* Two variants of stack symbol lookup -- one that uses the DDB interfaces
OpenPOWER on IntegriCloud