|
|
Subscribe / Log in / New account

fix x86-64 show_regs() loop

From:  Mikael Pettersson <mikpe@csd.uu.se>
To:  ak@suse.de
Subject:  [PATCH][2.4.22-pre3] fix x86-64 show_regs() loop
Date:  Mon, 7 Jul 2003 00:39:40 +0200 (MEST)
Cc:  linux-kernel@vger.kernel.org

show_regs() should call __show_regs() not itself.

/Mikael

--- linux-2.4.22-pre3/arch/x86_64/kernel/process.c.~1~	2003-07-06 18:37:43.000000000 +0200
+++ linux-2.4.22-pre3/arch/x86_64/kernel/process.c	2003-07-06 19:21:07.000000000 +0200
@@ -366,7 +366,7 @@
 
 void show_regs(struct pt_regs * regs)
 {
-	show_regs(regs);
+	__show_regs(regs);
 	show_trace(&regs->rsp);
 }
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Copyright © 2003, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds