1. 31 Mar, 2003 5 commits
    • James Bottomley's avatar
      Merge raven.il.steeleye.com:/home/jejb/BK/scsi-misc-2.5 · f4aa5d56
      James Bottomley authored
      into raven.il.steeleye.com:/home/jejb/BK/scsi-for-linus-2.5
      f4aa5d56
    • Douglas Gilbert's avatar
      scsi_debug version 1.69 for lk 2.5.66 · ec61600c
      Douglas Gilbert authored
      As people are using scsi_debug to simulate a large
      number of disks to play with the dev_t expansion,
      some problems have come to light.
      
      Changelog:
         - change num_devs to num_tgts
             so now the user can independently modify the
             number of hosts (add_host), the number of targets
             per host (num_tgts) and the number of luns per
             target (max_luns)
         - num_tgts sets scsi_host::max_id after allowance is
           made for the initiator's target id
         - max_luns default changed to 1 and it is sysfs
           writeable
         - REPORT LUN response cleaned up. Could now possibly
           generate a response indicatimg there were up to
           16,384 logical units available
         - clean up sense buffer generation
      
      Updated http://www.torque.net/sg/sdebug25.html
      ec61600c
    • Jens Axboe's avatar
      [PATCH] scsi queueing weirdness · 9e0206ab
      Jens Axboe authored
      The queueing logic in scsi_lib looks really odd right now.
      
      - Defers calling elv_next_request() until we actually think we can queue
        something. Always want to do that, request will have been marked
        REQ_STARTED after this, so block layer cannot touch it or merge to it.
      
      - Kill the queue empty check. If elv_next_request() returned a req,
        there's one to queue.
      9e0206ab
    • David S. Miller's avatar
      [PATCH] Check for disabled local interrupts in "might_sleep()" · d16263e9
      David S. Miller authored
      Self explanatory, as per the discussion last week.
      d16263e9
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/davem/net-2.5 · 2d4e1a0f
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      2d4e1a0f
  2. 30 Mar, 2003 14 commits
  3. 29 Mar, 2003 13 commits
  4. 28 Mar, 2003 8 commits
    • Dominik Brodowski's avatar
    • Dominik Brodowski's avatar
      [PCMCIA] generic suspend/resume capability · a3c1d44d
      Dominik Brodowski authored
      The socket drivers already offer suspend and resume
      capability. Integrate this with the driver model, based on a
      suggestion by Russell King.
      
      Also, remove two never-used functions from the socket drivers (to_ns).
      
       drivers/pcmcia/cs.c             |   70 ++++++++++++++++++++--------------------
       drivers/pcmcia/cs_internal.h    |    1
       drivers/pcmcia/hd64465_ss.c     |    2 +
       drivers/pcmcia/i82092.c         |   17 ++++++---
       drivers/pcmcia/i82365.c         |    2 +
       drivers/pcmcia/pci_socket.c     |   15 +-------
       drivers/pcmcia/sa1100_generic.c |    2 +
       drivers/pcmcia/sa1111_generic.c |   14 +-------
       drivers/pcmcia/tcic.c           |    7 +---
       include/pcmcia/ss.h             |    5 ++
       10 files changed, 64 insertions(+), 71 deletions(-)
      a3c1d44d
    • Tom Lendacky's avatar
      [IPSEC]: IPV6 AH/ESP fixes. · a0b78018
      Tom Lendacky authored
      a0b78018
    • Tom Lendacky's avatar
      [IPSEC]: Missing ipv6 policy checks. · c81baf47
      Tom Lendacky authored
      c81baf47
    • Martin J. Bligh's avatar
      [PATCH] remove warning for 3c509.c · 7b455189
      Martin J. Bligh authored
      Get this compile warning:
      drivers/net/3c509.c:207: warning: `el3_device_remove' declared `static' but never defined
      because the function definition is under
      "#if defined(CONFIG_EISA) || defined(CONFIG_MCA)".
      
      This patch puts the declaration under the same conditions.
      I'd be shocked if it wasn't correct ;-)
      
      M.
      7b455189
    • Paul Mackerras's avatar
      [PATCH] MACE ethernet driver update · 1951f269
      Paul Mackerras authored
      This patch updates the MACE ethernet driver, used on older powermacs,
      to remove the uses of save_flags/restore_flags/cli/sti and use a
      spinlock instead.
      
      Jeff, please send this on to Linus.
      
      Paul.
      1951f269
    • Dave Jones's avatar
      [PATCH] finish init_etherdev conversion for gt96100eth · b399c86d
      Dave Jones authored
      - No need to alloc dev->priv (due to init_etherdev usage)
      - No need to kfree dev->priv (kfree'd with (dev) already)
      b399c86d
    • Adrian Bunk's avatar
      [PATCH] fix .text.exit error in drivers/net/r8169.c · 30e5fd92
      Adrian Bunk authored
      In drivers/net/r8169.c the function rtl8169_remove_one is __devexit but
      the pointer to it didn't use __devexit_p resulting in a.text.exit
      compile error when !CONFIG_HOTPLUG.
      
      The fix is simple:
      30e5fd92