0.pre8.76
authorDaniel Barlow <dan@telent.net>
Sat, 19 Apr 2003 23:19:16 +0000 (23:19 +0000)
committerDaniel Barlow <dan@telent.net>
Sat, 19 Apr 2003 23:19:16 +0000 (23:19 +0000)
SMP fix fix: whatever new-fangled C-like language the compiler
on SuSE accepts is clearly a superset of the C wot I learnt at
school.  That or I mangled the patch while hand-applying it.

src/runtime/x86-linux-os.c
version.lisp-expr

index b952e6a..9b46107 100644 (file)
@@ -72,10 +72,11 @@ int arch_os_thread_init(struct thread *thread) {
        1, 0, 0, /* index, address, length filled in later */
        1, MODIFY_LDT_CONTENTS_DATA, 0, 0, 0, 1
     }; 
+    int n;
     get_spinlock(&modify_ldt_lock,thread);
-
+    n=modify_ldt(0,local_ldt_copy,sizeof local_ldt_copy);
     /* get next free ldt entry */
-    int n=modify_ldt(0,local_ldt_copy,sizeof local_ldt_copy);
+
     if(n) {
        u32 *p;
        for(n=0,p=local_ldt_copy;*p;p+=LDT_ENTRY_SIZE/sizeof(u32))
@@ -89,6 +90,7 @@ int arch_os_thread_init(struct thread *thread) {
        modify_ldt_lock=0;
        /* modify_ldt call failed: something magical is not happening */
        return -1;
+    }
     __asm__ __volatile__ ("movw %w0, %%fs" : : "q" 
                          ((n << 3) /* selector number */
                           + (1 << 2) /* TI set = LDT */
index 4f508fa..073c5ef 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.pre8.74"
+"0.pre8.76"