- 01 Apr, 2003 2 commits
-
-
Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Linus Torvalds authored
-
- 31 Mar, 2003 8 commits
-
-
http://linux-scsi.bkbits.net/scsi-for-linus-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
James Bottomley authored
into raven.il.steeleye.com:/home/jejb/BK/scsi-for-linus-2.5
-
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
-
Linus Torvalds authored
-
Linus Torvalds authored
depending on whether the constant is a hexadecimal one as opposed to a decimal one? Let's make it all explicit. There are probably more lurking around, these were found during development of my C checker tool.
-
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.
-
David S. Miller authored
Self explanatory, as per the discussion last week.
-
bk://kernel.bkbits.net/davem/net-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
- 30 Mar, 2003 14 commits
-
-
Paul Mielke authored
-
Harald Welte authored
-
Harald Welte authored
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/sparc-2.5
-
Christoph Hellwig authored
-
Randolph Chung authored
-
Randolph Chung authored
-
David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/net-2.5
-
bk://bk.arm.linux.org.uk/linux-2.5-pcmciaLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Russell King authored
The SA1100 PCMCIA structure didn't lend itself well to the device model. With this reorganisation, we end up with a reasonable structure which fits better with the driver model. It is now obvious that SA11x0-based socket drivers are separate from SA1111-based socket drivers, and are treated as two separate drivers by the driver model.
-
Andries E. Brouwer authored
Trying to read the overlong target of a /proc/*/fd/N file descriptor leads to a SIGSEGV inside the kernel, because the code doesn't check for an error pointer return from d_path.
-
Dominik Brodowski authored
Bug 516. Use schedule_delayed_work instead of a timer should fix this. Thanks to Andrew Morton and Russell King. (Added flush_scheduled_work() to ensure our delayed work completes before we free the pcmcia_bus_socket structure. --rmk)
-
- 29 Mar, 2003 13 commits
-
-
David S. Miller authored
-
Linus Torvalds authored
This adds support for i830 interrupt handling, and new improved lock context keying. See per-file comments for more detail, as this commit sadly mixes up a few different things (that's what you get for not tracking the changes at a fine enough granularity).
-
bk://ldm.bkbits.net/linux-2.5-coreLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/jgarzik/misc-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Jeff Garzik authored
Contributed by Andi Kleen
-
bk://kernel.bkbits.net/jgarzik/irda-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Jean Tourrilhes authored
o [CORRECT] Fix module refcounting (MOD_INC/DEC => .owner) o [FEATURE] Add hints to discovery (control channel)
-
Jean Tourrilhes authored
o [FEATURE] Make IrDA timers use mod_timer instead of add+del_timer
-
Jean Tourrilhes authored
o [FEATURE] Enable ZeroCopy Rx in irtty-sir/sir-dev (provided by the new SIR wrapper in 2.5.61).
-
Jean Tourrilhes authored
o [CORRECT] Don't do usb_clear_halt() on USB control pipe o [FEATURE] Cleanup and simplify the USB Rx path
-
Jean Tourrilhes authored
o [FEATURE] Fix the dynamic window code to properly send the pf bit. Increase perf by 40% for large packets at SIR.
-
Jean Tourrilhes authored
o [CRITICA] Fix remaining locking problem with discovery log o [CRITICA] Don't call expiry callback under spinlock o [FEATURE] Simplify/cleanup/optimise discovery/expiry code
-
Christoph Hellwig authored
-
- 28 Mar, 2003 3 commits
-
-
Dominik Brodowski authored
-
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(-)
-
Tom Lendacky authored
-