1. 17 May, 2005 17 commits
  2. 16 May, 2005 7 commits
  3. 12 May, 2005 4 commits
  4. 10 May, 2005 6 commits
  5. 09 May, 2005 2 commits
  6. 08 May, 2005 1 commit
    • Pierre Ossman's avatar
      [PATCH] MMC: wbsd update · 85bcc130
      Pierre Ossman authored
      Updates to the wbsd driver.
                                                                                      
      * Fix to handle DAT3 card detection.
      * Fixed bug which could cause large writes to stall in FIFO mode.
      * Plug 'n Play support. In most cases you need ACPI PNP for this to work.
      * Uses generic DMA API (ISA dependency removed).
      85bcc130
  7. 07 May, 2005 3 commits
    • Linus Torvalds's avatar
      Linux v2.6.12-rc4 · 88d7bd8c
      Linus Torvalds authored
      88d7bd8c
    • Jeff Dike's avatar
      [PATCH] uml: x86_64 fixes · 2d58cc9a
      Jeff Dike authored
      This fixes some x86_64 bugs -
      
      - maybe_map returns -1 on error instead of 0, which is interpreted as
        physical address 0
      
      - removed an include of ipc.h, which isn't needed
      
      - fixed the calculation of signal frame location
      
      - the signal delivery code is now immune to the stack expansion check
      
      - added a missing include
      Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
      Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      2d58cc9a
    • Bodo Stroesser's avatar
      [PATCH] uml: Fix process exit race · 0f7e663d
      Bodo Stroesser authored
      tt-mode closes switch_pipes in exit_thread_tt and kills processes in
      switch_to_tt, if the exit_state is EXIT_DEAD or EXIT_ZOMBIE.
      
      In very rare cases the exiting process can be scheduled out after having set
      exit_state and closed switch_pipes (from release_task it calls proc_pid_flush,
      which might sleep).  If this process is to be restarted, UML failes in
      switch_to_tt with:
      
         write of switch_pipe failed, err = 9
      
      We fix this by closing switch_pipes not in exit_thread_tt, but later in
      release_thread_tt.  Additionally, we set switch_pipe[0] = 0 after closing.
      switch_to_tt must not kill "from" process depending on its exit_state, but
      must kill it after release_thread was processed only, so it examines
      switch_pipe[0] for its decision.
      Signed-off-by: default avatarBodo Stroesser <bstroesser@fujitsu-siemens.com>
      Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
      Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      0f7e663d