1. 25 Mar, 2004 22 commits
  2. 24 Mar, 2004 16 commits
  3. 23 Mar, 2004 2 commits
    • Paul Mackerras's avatar
      [PATCH] fix ppc32 sys_swapcontext · db80df6e
      Paul Mackerras authored
      This fixes a bug in the swapcontext system call on ppc32.
      
      On ppc32, the system call entry only saves the volatile registers,
      except in the case of a few system calls (e.g.  fork) which need all the
      registers saved.  Swapcontext needs all the registers but we weren't
      saving them all. So fixes that.
      db80df6e
    • Paul Mackerras's avatar
      [PATCH] Threaded core dumps for PPC32 · 86854297
      Paul Mackerras authored
      At the moment, ppc32 kernels will oops if a threaded program tries to
      dump core.  We call dump_fpu with a NULL regs pointer, which it tries
      to dereference.
      
      This fixes the issue by implementing the hooks used in doing threaded
      core dumps properly.
      86854297