1. 12 7月, 2005 8 次提交
  2. 17 6月, 2005 2 次提交
  3. 14 6月, 2005 3 次提交
  4. 13 6月, 2005 1 次提交
  5. 09 6月, 2005 7 次提交
  6. 08 6月, 2005 3 次提交
  7. 07 6月, 2005 3 次提交
  8. 05 6月, 2005 1 次提交
    • B
      [PATCH] s390: uml ptrace fixes · c5c3a6d8
      Bodo Stroesser 提交于
      To make UML build and run on s390, I needed to do these two little
      changes:
      
      1) UML includes some of the subarch's (s390) headers. I had to
         change one of them with the following one-liner, to make this
         compile. AFAICS, this change doesn't break compilation of s390
         itself.
      
      2) UML needs to intercept syscalls via ptrace to invalidate the syscall,
         read syscall's parameters and write the result with the result of
         UML's syscall processing. Also, UML needs to make sure, that the host
         does no syscall restart processing. On i386 for example, this can be
         done by writing -1 to orig_eax on the 2nd syscall interception
         (orig_eax is the syscall number, which after the interception is used
         as a "interrupt was a syscall" flag only.
         Unfortunately, s390 holds syscall number and syscall result in gpr2 and
         its "interrupt was a syscall" flag (trap) is unreachable via ptrace.
         So I changed the host to set trap to -1, if the syscall number is changed
         to an invalid value on the first syscall interception.
      Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      c5c3a6d8
  9. 04 6月, 2005 2 次提交
    • M
      [PATCH] ARM: 2696/1: remove ';' in ELF_DATA define in asm-arm{,26}/elf.h · 718a30a5
      Mike Frysinger 提交于
      Patch from Mike Frysinger
      
      the ELF_DATA define in both arm asm subdirs of linux/include/ contain a
      semicolon at the end.  this of course will cause any code that tries to use
      ELF_DATA in assignment or comparison to fail.  no other arch has a semicolon
      in their ELF_DATA defines.
      
      Signed-off-by: Mike Frysinger
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      718a30a5
    • D
      [PATCH] ARM: 2692/1: Fix compile warnings in include/asm-arm/arch-ixp2000/io.h · 4ab5c01c
      Deepak Saxena 提交于
      Patch from Deepak Saxena
      
      This patch fixes the following warnings:
      include/asm/arch/io.h: In function `insw':
      include/asm/arch/io.h:78: warning: comparison of distinct pointer types
      lacks acast
      include/asm/arch/io.h:79: warning: comparison of distinct pointer types
      lacks acast
      include/asm/arch/io.h: In function `outsw':
      include/asm/arch/io.h:103: warning: comparison of distinct pointer types
      lacks a cast
      include/asm/arch/io.h:104: warning: comparison of distinct pointer types
      lacks a cast
      include/asm/arch/io.h: In function `inw':
      include/asm/arch/io.h:127: warning: comparison of distinct pointer types
      lacks a cast
      
      Signed-off-by: Deepak Saxena
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      4ab5c01c
  10. 03 6月, 2005 6 次提交
  11. 01 6月, 2005 4 次提交