The patch titled
     uml: x86_64 should copy %fs during fork
has been removed from the -mm tree.  Its filename was
     uml-x86_64-should-copy-%fs-during-fork.patch

This patch was dropped because it was merged into mainline or a subsystem tree

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: uml: x86_64 should copy %fs during fork
From: Jeff Dike <[EMAIL PROTECTED]>

%fs needs to be copied from parent to child during fork.

Tidied up some whitespace while I was here.

Signed-off-by: Jeff Dike <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 include/asm-um/processor-x86_64.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff -puN 
include/asm-um/processor-x86_64.h~uml-x86_64-should-copy-%fs-during-fork 
include/asm-um/processor-x86_64.h
--- a/include/asm-um/processor-x86_64.h~uml-x86_64-should-copy-%fs-during-fork
+++ a/include/asm-um/processor-x86_64.h
@@ -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"
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
git-kvm.patch
uml-update-defconfig.patch
random-add-async-notification-support-to-dev-random.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to