* [uml-devel] [RFC PATCH 1/9] SKAS4 - Fix x86_64 arch_copy_thread
@ 2008-01-09 22:09 Jeff Dike
0 siblings, 0 replies; only message in thread
From: Jeff Dike @ 2008-01-09 22:09 UTC (permalink / raw)
To: uml-devel
Fix a bug which will be important later. x86_64 copy_thread needs to
copy %fs from parent to child.
Got rid of some extraneous tabs while I was here.
Index: linux-2.6-skas4/include/asm-um/processor-x86_64.h
===================================================================
--- linux-2.6-skas4.orig/include/asm-um/processor-x86_64.h 2008-01-08 11:33:48.000000000 -0500
+++ linux-2.6-skas4/include/asm-um/processor-x86_64.h 2008-01-08 11:34:23.000000000 -0500
@@ -26,7 +26,7 @@ static inline void rep_nop(void)
#define cpu_relax() rep_nop()
#define INIT_ARCH_THREAD { .debugregs = { [ 0 ... 7 ] = 0 }, \
- .debugregs_seq = 0, \
+ .debugregs_seq = 0, \
.fs = 0, \
.faultinfo = { 0, 0, 0 } }
@@ -37,6 +37,7 @@ static inline void arch_flush_thread(str
static inline void arch_copy_thread(struct arch_thread *from,
struct arch_thread *to)
{
+ to->fs = from->fs;
}
#include "asm/arch/user.h"
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-09 22:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-09 22:09 [uml-devel] [RFC PATCH 1/9] SKAS4 - Fix x86_64 arch_copy_thread Jeff Dike
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.