| Submitter | Bartlomiej Zolnierkiewicz |
|---|---|
| Date | Feb. 8, 2011, 12:25 p.m. |
| Message ID | <20110208122519.19110.76776.sendpatchset@linux-mhg7.site> |
| Download | mbox | patch |
| Permalink | /patch/82307/ |
| State | Not Applicable |
| Delegated to: | David Miller |
| Headers | show |
Comments
Hello. On 08-02-2011 15:25, Bartlomiej Zolnierkiewicz wrote: [...] > Add an extra locking for parallel scanning. > This is similar change as commit 60c3be3 for ata_piix host driver Linus asks to also specify the commit summary in parens. > and while pata_oldpiix doesn't enable parallel scan yet the race > could probably also be triggered by requesting re-scanning of both > ports at the same time using SCSI sysfs interface. > Fix documentation while at it. > Acked-by: Alan Cox <alan@linux.intel.com> > Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> [...] > diff --git a/drivers/ata/pata_oldpiix.c b/drivers/ata/pata_oldpiix.c > index 433d2fc..845ede1 100644 > --- a/drivers/ata/pata_oldpiix.c > +++ b/drivers/ata/pata_oldpiix.c > @@ -1,7 +1,8 @@ > /* > - * pata_oldpiix.c - Intel PATA/SATA controllers > + * pata_oldpiix.c - older Intel PATA controllers I'd say "controller", since there's only one. :-) WBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/ata/pata_oldpiix.c b/drivers/ata/pata_oldpiix.c index 433d2fc..845ede1 100644 --- a/drivers/ata/pata_oldpiix.c +++ b/drivers/ata/pata_oldpiix.c @@ -1,7 +1,8 @@ /* - * pata_oldpiix.c - Intel PATA/SATA controllers + * pata_oldpiix.c - older Intel PATA controllers * * (C) 2005 Red Hat + * (C) 2010 Bartlomiej Zolnierkiewicz * * Some parts based on ata_piix.c by Jeff Garzik and others. * @@ -50,10 +51,13 @@ static int oldpiix_pre_reset(struct ata_link *link, unsigned long deadline) return ata_sff_prereset(link, deadline); } +static DEFINE_SPINLOCK(piix_lock); + static void oldpiix_set_timings(struct ata_port *ap, struct ata_device *adev, u8 pio, bool use_mwdma) { struct pci_dev *dev = to_pci_dev(ap->host->dev); + unsigned long flags; unsigned int idetm_port= ap->port_no ? 0x42 : 0x40; u16 idetm_data; int control = 0; @@ -84,6 +88,8 @@ static void oldpiix_set_timings(struct ata_port *ap, struct ata_device *adev, /* Enable DMA timing only */ control |= 8; /* PIO cycles in PIO0 */ + spin_lock_irqsave(&piix_lock, flags); + pci_read_config_word(dev, idetm_port, &idetm_data); /* @@ -101,6 +107,8 @@ static void oldpiix_set_timings(struct ata_port *ap, struct ata_device *adev, (timings[pio][1] << 8); pci_write_config_word(dev, idetm_port, idetm_data); + spin_unlock_irqrestore(&piix_lock, flags); + /* Track which port is configured */ ap->private_data = adev; }