Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8ed12fcc authored by Richard Weinberger's avatar Richard Weinberger
Browse files

um: Rename print_stack_trace to do_stack_trace



We cannot use print_stack_trace because the name conflicts
with linux/stacktrace.h.

Reported-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent af91706d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ struct stack_frame {
	unsigned long return_address;
};

static void print_stack_trace(unsigned long *sp, unsigned long bp)
static void do_stack_trace(unsigned long *sp, unsigned long bp)
{
	int reliable;
	unsigned long addr;
@@ -94,5 +94,5 @@ void show_stack(struct task_struct *task, unsigned long *stack)
	}
	printk(KERN_CONT "\n");

	print_stack_trace(sp, bp);
	do_stack_trace(sp, bp);
}