* [PATCH 8/15] ide: take ide_lock for prefetch disable/enable in do_special()
@ 2007-10-01 21:36 Bartlomiej Zolnierkiewicz
0 siblings, 0 replies; only message in thread
From: Bartlomiej Zolnierkiewicz @ 2007-10-01 21:36 UTC (permalink / raw)
To: linux-ide
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>
---
drivers/ide/ide-io.c | 15 ++++++++++++++-
drivers/ide/legacy/ht6560b.c | 5 -----
drivers/ide/pci/cmd640.c | 6 ------
3 files changed, 14 insertions(+), 12 deletions(-)
Index: b/drivers/ide/ide-io.c
===================================================================
--- a/drivers/ide/ide-io.c
+++ b/drivers/ide/ide-io.c
@@ -835,7 +835,20 @@ static ide_startstop_t do_special (ide_d
s->b.set_tune = 0;
if (set_pio_mode_abuse(drive->hwif, req_pio)) {
- if (hwif->set_pio_mode)
+
+ if (hwif->set_pio_mode == NULL)
+ return ide_stopped;
+
+ /*
+ * take ide_lock for drive->[no_]unmask/[no_]io_32bit
+ */
+ if (req_pio == 8 || req_pio == 9) {
+ unsigned long flags;
+
+ spin_lock_irqsave(&ide_lock, flags);
+ hwif->set_pio_mode(drive, req_pio);
+ spin_unlock_irqrestore(&ide_lock, flags);
+ } else
hwif->set_pio_mode(drive, req_pio);
} else {
int keep_dma = drive->using_dma;
Index: b/drivers/ide/legacy/ht6560b.c
===================================================================
--- a/drivers/ide/legacy/ht6560b.c
+++ b/drivers/ide/legacy/ht6560b.c
@@ -286,12 +286,7 @@ static void ht6560b_set_pio_mode(ide_dri
switch (pio) {
case 8: /* set prefetch off */
case 9: /* set prefetch on */
- /*
- * take ide_lock for drive->[no_]unmask
- */
- spin_lock_irqsave(&ide_lock, flags);
ht_set_prefetch(drive, pio & 1);
- spin_unlock_irqrestore(&ide_lock, flags);
return;
}
Index: b/drivers/ide/pci/cmd640.c
===================================================================
--- a/drivers/ide/pci/cmd640.c
+++ b/drivers/ide/pci/cmd640.c
@@ -632,7 +632,6 @@ static void cmd640_set_mode (unsigned in
static void cmd640_set_pio_mode(ide_drive_t *drive, const u8 pio)
{
- unsigned long flags;
unsigned int index = 0, cycle_time;
u8 b;
@@ -655,12 +654,7 @@ static void cmd640_set_pio_mode(ide_driv
case 8: /* set prefetch off */
case 9: /* set prefetch on */
- /*
- * take ide_lock for drive->[no_]unmask/[no_]io_32bit
- */
- spin_lock_irqsave(&ide_lock, flags);
set_prefetch_mode(index, pio & 1);
- spin_unlock_irqrestore(&ide_lock, flags);
printk("%s: %sabled cmd640 prefetch\n", drive->name, (pio & 1) ? "en" : "dis");
return;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-10-01 21:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-01 21:36 [PATCH 8/15] ide: take ide_lock for prefetch disable/enable in do_special() Bartlomiej Zolnierkiewicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).