diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-19 18:32:36 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-19 18:32:36 -0400 |
commit | d393aa0326436efd3cb800916b08cdac4dd1091a (patch) | |
tree | 2fae9665c336a40d9a20a77612cac61daf107dce /drivers/ide/ide-io.c | |
parent | 69e88d2a754fcaf7ef8ca465586b811cf40dc479 (diff) |
ide: take ide_lock for prefetch disable/enable in do_special()
Take ide_lock for prefetch disable/enable in do_special(),
then cleanup cmd640 and ht6560b host drivers.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-io.c')
-rw-r--r-- | drivers/ide/ide-io.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/ide/ide-io.c b/drivers/ide/ide-io.c index 32eaa3f80515..e2eb408a8a18 100644 --- a/drivers/ide/ide-io.c +++ b/drivers/ide/ide-io.c | |||
@@ -800,7 +800,20 @@ static ide_startstop_t do_special (ide_drive_t *drive) | |||
800 | s->b.set_tune = 0; | 800 | s->b.set_tune = 0; |
801 | 801 | ||
802 | if (set_pio_mode_abuse(drive->hwif, req_pio)) { | 802 | if (set_pio_mode_abuse(drive->hwif, req_pio)) { |
803 | if (hwif->set_pio_mode) | 803 | |
804 | if (hwif->set_pio_mode == NULL) | ||
805 | return ide_stopped; | ||
806 | |||
807 | /* | ||
808 | * take ide_lock for drive->[no_]unmask/[no_]io_32bit | ||
809 | */ | ||
810 | if (req_pio == 8 || req_pio == 9) { | ||
811 | unsigned long flags; | ||
812 | |||
813 | spin_lock_irqsave(&ide_lock, flags); | ||
814 | hwif->set_pio_mode(drive, req_pio); | ||
815 | spin_unlock_irqrestore(&ide_lock, flags); | ||
816 | } else | ||
804 | hwif->set_pio_mode(drive, req_pio); | 817 | hwif->set_pio_mode(drive, req_pio); |
805 | } else { | 818 | } else { |
806 | int keep_dma = drive->using_dma; | 819 | int keep_dma = drive->using_dma; |