]> git.pld-linux.org Git - packages/kernel.git/commitdiff
- fixes for non-ix86 archs
authorJan Rękorajski <baggins@pld-linux.org>
Mon, 30 Jun 2003 16:19:42 +0000 (16:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    linux-2.4.20-uml-host-skas3.patch -> 1.5

linux-2.4.20-uml-host-skas3.patch

index abcd375e4e0556d7d290579fdce1ada580f69820..c5e161269d83f16689c89d8ab47ac86bbedad70c 100644 (file)
@@ -285,3 +285,25 @@ diff -Naur host/include/asm-i386/ptrace.h host-ptrace/include/asm-i386/ptrace.h
  
  #endif
  
+--- linux-2.4.21/arch/ppc/kernel/syscalls.c.orig       Mon Jun 30 18:15:41 2003
++++ linux-2.4.21/arch/ppc/kernel/syscalls.c    Mon Jun 30 18:15:47 2003
+@@ -189,7 +189,7 @@
+       }
+       down_write(&current->mm->mmap_sem);
+-      ret = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
++      ret = do_mmap_pgoff(current->mm, file, addr, len, prot, flags, pgoff);
+       up_write(&current->mm->mmap_sem);
+       if (file)
+               fput(file);
+--- linux-2.4.21/arch/ia64/kernel/sys_ia64.c.orig      Mon Jun 30 18:19:24 2003
++++ linux-2.4.21/arch/ia64/kernel/sys_ia64.c   Mon Jun 30 18:19:48 2003
+@@ -219,7 +219,7 @@
+       }
+       down_write(&current->mm->mmap_sem);
+-      addr = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
++      addr = do_mmap_pgoff(current->mm, file, addr, len, prot, flags, pgoff);
+       up_write(&current->mm->mmap_sem);
+ out:  if (file)
This page took 1.859396 seconds and 4 git commands to generate.