Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1465814 > unrolled thread

[PATCH 4/8] x86/dumpstack: remove extra brackets around "<EOE>"

Started byJosh Poimboeuf <jpoimboe@redhat.com>
First post2016-08-19 03:40 +0200
Last post2016-08-19 03:40 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 4/8] x86/dumpstack: remove extra brackets around "<EOE>" Josh Poimboeuf <jpoimboe@redhat.com> - 2016-08-19 03:40 +0200

#1465814 — [PATCH 4/8] x86/dumpstack: remove extra brackets around "<EOE>"

FromJosh Poimboeuf <jpoimboe@redhat.com>
Date2016-08-19 03:40 +0200
Subject[PATCH 4/8] x86/dumpstack: remove extra brackets around "<EOE>"
Message-ID<s7GWS-7sc-43@gated-at.bofh.it>
When starting the dump of an exception stack, it shows "<<EOE>>" instead
of "<EOE>".  print_trace_stack() already adds brackets, no need to add
them again.

Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
---
 arch/x86/kernel/dumpstack_64.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/dumpstack_64.c b/arch/x86/kernel/dumpstack_64.c
index 9ee4520..daf9f63 100644
--- a/arch/x86/kernel/dumpstack_64.c
+++ b/arch/x86/kernel/dumpstack_64.c
@@ -202,7 +202,7 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs,
 
 			bp = ops->walk_stack(task, stack, bp, ops,
 					     data, stack_end, &graph);
-			ops->stack(data, "<EOE>");
+			ops->stack(data, "EOE");
 			/*
 			 * We link to the next stack via the
 			 * second-to-last pointer (index -2 to end) in the
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web