- 05 Feb, 2004 40 commits
-
-
Andrew Morton authored
From: anton@samba.org Fix up iseries updatepp, from Ben Herrenschmidt
-
Andrew Morton authored
From: anton@samba.org fix up hvc console dev/devfs name, from Milton Miller
-
Andrew Morton authored
From: anton@samba.org From: Hollis Blanchard <hollisb@us.ibm.com> move hypervisor console code into its own file
-
bk://gkernel.bkbits.net/net-drivers-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Jeff Garzik authored
into redhat.com:/spare/repo/net-drivers-2.5
-
Bartlomiej Zolnierkiewicz authored
TCQ code is host independent so remove redundant ide_dma_queued_* ops from ide_hwif_t. If we ever decide to bring back TCQ support this will fix OOPS in ide-disk driver with CONFIG_BLK_DEV_IDE_TCQ_DEFAULT=y and icside/sgiioc4 host drivers (it will also enable TCQ support for these host drivers). Acked by Jens.
-
Bartlomiej Zolnierkiewicz authored
First introduced in kernel 2.3.99-pre3 (added to ide_dmaproc) and never used.
-
Bartlomiej Zolnierkiewicz authored
Introduced in kernel 2.5.63 and never used.
-
Bartlomiej Zolnierkiewicz authored
Introduced in kernel 2.5.35 and never used.
-
Bartlomiej Zolnierkiewicz authored
Fix CONFIG_HPT34X_AUTODMA to depend directly on CONFIG_EXPERIMENTAL and finally remove CONFIG_IDEDMA_PCI_WIP.
-
Bartlomiej Zolnierkiewicz authored
Leftover after switch to IDE DMA Model-Firmware blacklist in kernel 2.5.63.
-
Bartlomiej Zolnierkiewicz authored
Some devices need more time to become non-busy after command completion, so use the same timeout in wait_drive_not_busy() (called from task_in_intr() if CONFIG_IDE_TASKFILE_IO=y) as in drive_cmd_intr(). Thanks to Mark Haverkamp <markh@osdl.org> for help in fixing this.
-
bk://kernel.bkbits.net/davem/net-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
David S. Miller authored
into nuts.davemloft.net:/disk1/BK/net-2.6
-
bk://kernel.bkbits.net/davem/net-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Alexander Viro authored
* don't take the unnecessary ->host_lock around ->scsi_done() call.
-
Alexander Viro authored
* switched to proper parport_driver.
-
Alexander Viro authored
* switched to use ->hostdata to get ppa_struct from Scsi_Host, end of messing with ppa_hosts[]
-
Alexander Viro authored
* fixed missing wakeups in ppa_pb_claim()/ppa_wakeup() - if the former had been called just as current holder of port was giving it up, we could set "I'm waiting" flag too late. Cleaned up the timeout logics.
-
Alexander Viro authored
* starting to kill ppa_detect - we move the "probe a single port" logics into a separate function and shift scanning into ppa_driver_init(). Later that will give us a parport_driver ->attach().
-
Alexander Viro authored
* killed include of scsi_module.h and switched from scsi_register() to scsi_alloc_host(). We still keep the old detect logics at that point, it will be gone later.
-
Alexander Viro authored
* killed ppa_pb_claim() call in ppa_init()
-
Alexander Viro authored
* switched ppa to passing around references to ppa_struct instead of host numbers.
-
Alexander Viro authored
* ppa.c fed through Lindent, functions unused elsewhere (by now - all of them) made static.
-
Alexander Viro authored
* switched to proper parport_driver.
-
Alexander Viro authored
* switched to use ->hostdata to get imm_struct from Scsi_Host, end of messing with imm_hosts[]
-
Alexander Viro authored
* fixed missing wakeups in imm_pb_claim()/imm_wakeup() - if the former had been called just as current holder of port was giving it up, we could set "I'm waiting" flag too late. Cleaned up the timeout logics.
-
Alexander Viro authored
* starting to kill imm_detect - we move the "probe a single port" logics into a separate function and shift scanning into imm_driver_init(). Later that will give us a parport_driver ->attach().
-
Alexander Viro authored
* killed include of scsi_module.h and switched from scsi_register() to scsi_alloc_host(). We still keep the old detect logics at that point, it will be gone later.
-
Alexander Viro authored
* killed imm_pb_claim() call in imm_init()
-
Alexander Viro authored
* switched imm to passing around references to imm_struct instead of host numbers.
-
Alexander Viro authored
* imm.c fed through Lindent, functions unused elsewhere (by now - all of them) made static.
-
Alexander Viro authored
paride has a ->private field for use by low-level drivers. It's not 64bit-clean - it's int, but is used to store a pointer (bpck6). Fix: replace with unsigned long, update typecasts in users.
-
Alexander Viro authored
pd_identify() converted to pd_special_command().
-
Alexander Viro authored
pd_init_units() merged into pd_detect(), pd_drive_count made local to pd_detect().
-
Alexander Viro authored
Now disk->present is not needed - we can always check for disk->gd. Field removed, pd_probe_drive() became void(struct pd_unit *), pd_detect() cleaned up,
-
Alexander Viro authored
Moved allocation and setup (but not adding) of gendisk into pd_probe_drive().
-
Alexander Viro authored
Switched everything except pd_identify() to use of special requests. New helper: pd_special_command() - builds special request, feeds it into queue and waits for completion. Moved pi_connect()/pi_disconnect() to the beginning/end of pi_identify.
-
Alexander Viro authored
Reordered stuff made pd_ready() inlined renamed ps_timeout to pd_timeout renamed ps_tq to fsm_tq renamed ps_set_intr to fsm_schedule removed unused pd_wait_open.
-
Alexander Viro authored
Moved calls of ->connect and ->disconnect into run_fsm(). The only change is that now do_pd_start_io() is ran when we are connected.
-