1. 01 Jul, 2004 4 commits
    • Mika Kukkonen's avatar
    • Andrea Arcangeli's avatar
      [PATCH] zombie with CLONE_THREAD and strace · 1e1e19c0
      Andrea Arcangeli authored
      'strace' shows a problem with a missing release_task for self-reaping
      clones that have been traced.  We need to defer releasing them until the
      tracer is done with them, but if the tracer dies, we need to handle that
      case gracefully too. 
      
      We do that by having 'forget_original_parent()' generate a list of tasks
      to release when this case happens.
      
      Patch based on discussions on linux-kernel, and suggestions from Roland
      McGrath <roland@redhat.com>.
      1e1e19c0
    • Peter Osterlund's avatar
      [PATCH] Can't open CDROM device for writing · 82bd5317
      Peter Osterlund authored
      Opening a CDROM device for writing no longer works, because cdrom_open()
      returns -EROFS even if cdrom_open_write() succeeds.
      
      This fixes it. 
      Signed-off-by: default avatarPeter Osterlund <petero2@telia.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      82bd5317
    • Ingo Molnar's avatar
      [PATCH] enable SMP Opterons boot an NX-enabled x86 kernel · d3cc42fb
      Ingo Molnar authored
      This fixes a corner-case NX bug: the x86 SMP kernel doesnt boot on SMP
      Opterons if NX is enabled [and mem=nopentium is specified], due to
      kernel-space NX protection preventing the SMP trampoline from being
      executable. 
      
      Since the SMP trampoline is a rare case of 'dynamic code' executed by
      the kernel (it has to be below 640K so it cannot be part of the kernel
      text itself), i've added the necessary infrastructure to enable/disable
      executability of specific kernel pages. 
      
      We cannot simply disable NX via the MSR because we've got the NX bits in
      the kernel pagetables, which are set up before we do the SMP bootup. 
      The NX bit in the pagetables is undefined if EFER.NXE is 0, so we cannot
      count on NX-capable CPUs not faulting when they encounter them. 
      
      I've tested the x86 kernel on a non-NX SMP x86 box and on an NX UP box,
      on which i've also tested a simulated SMP trampoline, it all works fine. 
      
      - add infrastructure to enable/disable executability of kernel pages
      
      - make the SMP trampoline page executable.
      Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      d3cc42fb
  2. 30 Jun, 2004 25 commits
  3. 01 Jul, 2004 1 commit
  4. 30 Jun, 2004 10 commits