summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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