1. 12 Nov, 2003 8 commits
  2. 11 Nov, 2003 16 commits
  3. 10 Nov, 2003 12 commits
  4. 09 Nov, 2003 4 commits
    • Andrew Morton's avatar
      [PATCH] compile fix for voyager with gcc-3.3 · 9ef63c5e
      Andrew Morton authored
      From: James Bottomley <James.Bottomley@SteelEye.com>
      
      The cpu_callout_map differs from the prototype in asm-i386/smp.h by a
      volatile.  gcc-3.3 now treats this as an error, so voyager support will
      only compile with older gcc's.  The fix is to remove the spurious volatile.
      9ef63c5e
    • Andrew Morton's avatar
      [PATCH] JBD: fix assertion failure · 3db7e2a8
      Andrew Morton authored
      This fixes a JBD assertion failure (goes BUG) in __journal_remove_journal_head().
      
      When the journal had aborted due to earlier internal consistency errors (or
      I/O errors) it is possible that we free journal_heads which still have
      attached copyout buffers.  So just free them up.
      3db7e2a8
    • Andrew Morton's avatar
      [PATCH] Fix RAID1 recovery · aec6795f
      Andrew Morton authored
      From: Mike Tran <mhtran@us.ibm.com>
      
      This fixes the RAID1 recovery problems; it seems to be a simple thinko:
      sync_request_write() is passing "ok=0" into md_done_sync().  Clearly, `ok'
      should be true here.
      
      (acked by neilb)
      aec6795f
    • Andrew Morton's avatar
      [PATCH] char dev request_module fix · ee61ba11
      Andrew Morton authored
      From: Rusty Russell <rusty@rustcorp.com.au>
      
      Module aliases are all of form "char-major-<major>-<minor>".  char_dev.c
      calls request_module with "char-major-<major>".
      ee61ba11