1. 26 Jun, 2003 10 commits
  2. 25 Jun, 2003 8 commits
  3. 26 Jun, 2003 5 commits
  4. 25 Jun, 2003 2 commits
  5. 26 Jun, 2003 2 commits
  6. 25 Jun, 2003 1 commit
  7. 26 Jun, 2003 4 commits
  8. 25 Jun, 2003 8 commits
    • Andrew Morton's avatar
      [PATCH] Typo after 8250_cs update (SERIAL) · 508e50ca
      Andrew Morton authored
      From: Francois Romieu <romieu@fr.zoreil.com>
      
      s/GetConfiguration/GetConfigurationInfo/
      508e50ca
    • Andrew Morton's avatar
      [PATCH] export flush_tlb_all for drm modules · 8a8197fa
      Andrew Morton authored
      From: Jan Dittmer <j.dittmer@portrix.net>
      
      This adds an export for flush_tlb_all to i386_ksyms.c.  The drm modules
      miss this, when compiling for SMP.
      
      I changed Jan's patch to use EXPORT_SYMBOL_GPL.
      8a8197fa
    • Andrew Morton's avatar
      [PATCH] htree: set the dir index bit in the right place · 0509a1c2
      Andrew Morton authored
      From: Alex Tomas <bzzz@tmi.comex.ru>
      
      Don't set the directory's index flag until we know that we're doing ahead
      with the directory modification.
      0509a1c2
    • Andrew Morton's avatar
      [PATCH] NCR53C9x compile fix · 76046ffa
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      NCR53C9x SCSI: Fix compilation after breakage in 2.5.71
      76046ffa
    • Andrew Morton's avatar
      [PATCH] correct mail addresses for visws support · 234b111c
      Andrew Morton authored
      From: Andrey Panin <pazke@donpac.ru>
      
      this trivial patch changes mailing list address for visws subarch support
      along with some occurences of my old email addresses.
      234b111c
    • Andrew Morton's avatar
      [PATCH] ext3: fix memory leak · 508fc350
      Andrew Morton authored
      We need to unconditionally brelse() the buffer in there, because
      journal_remove_journal_head() leaves a ref behind.
      
      release_buffer_page() does that.  Call it all the time because we can usually
      strip the buffers and free the page even if it was not marked buffer_freed().
      
      Mainly affects data=journal mode
      508fc350
    • Andrew Morton's avatar
      [PATCH] ext3: fix page lock vs journal_start ranking bug · 30276fd6
      Andrew Morton authored
      ext3_block_truncate_page() is calling grab_cache_page() inside a JBD
      transaction.  This is wrong, because transactions nest inside lock_page().
      
      The deadlock is against shrink_list->ext3_journalled_writepage->journal_start.
      
      This was not noticed before because we never used to journal writepage() data
      in journalled-data mode.  And because the deadlock against
      generic_file_write() is covered up by i_sem.
      
      Rework things so that we lock the page prior to starting a transaction.
      30276fd6
    • Andrew Morton's avatar
      [PATCH] compat_sys_old_getrlimit() depends on · b70732ef
      Andrew Morton authored
      From: David Mosberger <davidm@napali.hpl.hp.com>
      
      compat_sys_old_getrlimit() depends on sys_old_getrlimit() and the patch
      below updates the guarding #ifdef accordingly.
      b70732ef