1. 15 Jun, 2003 8 commits
    • Stelian Pop's avatar
      [PATCH] meye driver update · e8bae927
      Stelian Pop authored
      * replace the pci_alloc_consistent calls with dma_alloc_coherent
        because we want to do the allocations at GFP_KERNEL priority and
        not GFP_ATOMIC because we request quite a bit of memory and the
        allocation fails quite frequently.
      
        It would be better to have a pci_alloc_consistent with an extra
        parameter (priority) but since we haven't, and the meye driver is
        supposed to work only on ix86 platforms we can safely do the
        change.
      
      * fix the DMA engine stop request. The hard freezes encountered
        when using this driver and repeatedly opening/closing the device
        have been tracked down to this particular piece of code. The new
        version seems to work way better, I haven't had a single freeze
        since the change.
      
      * fix the irq handler prototype (irqreturn_t changes).
      e8bae927
    • Stelian Pop's avatar
      [PATCH] sonypi driver update · aa3432a2
      Stelian Pop authored
      * fix a hang problem when loading the driver on (at least) a
        PCG-FX105k. Thanks to Jozef Kruger for reporting the problem
        and testing different versions of this fix.
      
      * fix a .text.exit problem in the sonypi driver related to the
        recent PM changes (thanks to Adrian Bunk for the patch).
      
      * fix the irq handling reports (make sonypi always report IRQ_HANDLED)
        because there *are* events belonging to the sonypi device which
        are not (yet) recognized by the driver and we don't want those
        to pollute the logs...
      
      * test if the ACPI subsystem is not disabled before trying to
        use its ec_read/ec_write methods.
      
      * fix the hangs when enabling bluetooth (thanks to Daniel K. for
        the patch).
      
      * other miscellaneous small fixes.
      aa3432a2
    • Brian Gerst's avatar
      [PATCH] small cleanup for powernow-k7 · b6385562
      Brian Gerst authored
      Use local_irq_[disable|enable]() instead of hand-coded asm.
      b6385562
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/davem/sparc-2.5 · 7996bc4a
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      7996bc4a
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/davem/net-2.5 · 2f73086e
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      2f73086e
    • Trond Myklebust's avatar
      [PATCH] Fix rpc dentry list usage · 1f4b4edf
      Trond Myklebust authored
      This fixes the problems with NFS that got triggered by the list
      poisoning.
      
      The problem is that whereas using the dentry->d_hash list for private
      purposes was previously harmless, it is not allowed with the RCU lists,
      because we depend on the unhashed node continuing to point back to the
      original list.
      
      So keep a small vector of dentries around instead of using the d_hash
      list to keep track of them.
      1f4b4edf
    • David S. Miller's avatar
      [SPARC64]: Update defconfig. · 6d51ca2f
      David S. Miller authored
      6d51ca2f
    • David S. Miller's avatar
  2. 14 Jun, 2003 14 commits
  3. 15 Jun, 2003 3 commits
  4. 14 Jun, 2003 15 commits
    • Andrew Morton's avatar
      [PATCH] new eepro100 PDI ID · b8f2d737
      Andrew Morton authored
      From: Tom Alsberg <alsbergt@cs.huji.ac.il>
      
      Add support for a new eepro100 PCI ID.
      b8f2d737
    • Andrew Morton's avatar
      [PATCH] efs typo fix · 56d70ccb
      Andrew Morton authored
      It's using "||" instead of "|".  Makes slab go BUG.
      56d70ccb
    • Andrew Morton's avatar
      [PATCH] Parenthesisation fix in es1371 · afde3458
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      Fix parenthesisation in a combined assign-and-check-error statement.
      afde3458
    • Andrew Morton's avatar
      [PATCH] Parenthesisation fix in jffs · 0fae490d
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      Fix parenthesisation in a combined assign-and-check-error statement.
      0fae490d
    • Andrew Morton's avatar
      [PATCH] Parenthesisation fix in dpt_i2o · 12bac367
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      Fix parenthesisation in a combined assign-and-check-error statement.
      12bac367
    • Andrew Morton's avatar
      [PATCH] Fix sign handling bugs in aacraid · bf470875
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      As we'll be checking `status' for errors, it had better not be unsigned.
      bf470875
    • Andrew Morton's avatar
      [PATCH] Fix sign handling bugs in tun · 550fef0d
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      Fix a check for underflow.
      550fef0d
    • Andrew Morton's avatar
      [PATCH] Fix sign handling bugs in mpt fusion · be3286f5
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      Don't compare unsigned value for < 0.
      be3286f5
    • Andrew Morton's avatar
      [PATCH] Fix sign handling bugs in epca · f52e7cca
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      Don't check unsigned values for <= 0.
      f52e7cca
    • Andrew Morton's avatar
      [PATCH] Fix sign handling bugs in Decnet · 663c17b6
      Andrew Morton authored
      From: Ravikiran G Thirumalai <kiran@in.ibm.com>
      
      Fix decnet ioctl(TIOCOUTQ).
      663c17b6
    • Andrew Morton's avatar
      [PATCH] make pid_max readable · 22547331
      Andrew Morton authored
      From: Albert Cahalan <albert@users.sourceforge.net>
      
      This is needed so that apps can set appropriate column widths for PID
      display.
      22547331
    • Andrew Morton's avatar
      [PATCH] dm: Repair persistent minors · 3cb6ce4f
      Andrew Morton authored
      From: Joe Thornber <thornber@sistina.com>
      
      Split the dm_create() function into two variants, depending on whether you
      want the device to have a specific minor number.  This avoids the broken
      overloading of the minor argument to the old dm_create().
      3cb6ce4f
    • Andrew Morton's avatar
      [PATCH] tmpfs: revert license to 2.4 version · 9cde68fc
      Andrew Morton authored
      From: Hugh Dickins <hugh@veritas.com>, Christoph Rohland <cr@sap.com>
      
      Switches the long GPL blurb which Hugh took from the 2.4-ac version of
      mm/shmem.c, back to the original oneliner (as in 2.4.current).
      
      Christoph spotted that the long blurb says "either version 2 of the License,
      or (at your option) any later version", whereas he intended it be as COPYING
      says, version 2 period.  Hugh and Christoph are happier with known version 2
      than undefined future variants.
      9cde68fc
    • Andrew Morton's avatar
      [PATCH] remove anon_hash_chain · d009e569
      Andrew Morton authored
      From: James Morris <jmorris@intercode.com.au>
      
      This patch against current bk removes anon_hash_chain from fs/inode.c, as
      all inodes in the 2.5 kernel must be associated with a superblock, and the
      anon hash is no longer needed.
      
      (akpm: Well there's one inode with a null i_sb: swapper_inode.  But it
      shouldn't get here and if it does, we'll fix it by other means).
      d009e569
    • Andrew Morton's avatar
      [PATCH] arcnet oops fix · 2631b953
      Andrew Morton authored
      From: Dipankar Sarma <dipankar@in.ibm.com>
      
      Forward-port of a fix Alan merged into 2.4.21-pre.  It fixes arcnet oopses
      with raw sockets.
      2631b953