Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 68071
b: refs/heads/master
c: 2f29496
h: refs/heads/master
i:
  68069: 1672cd7
  68067: f3eb027
  68063: dbf26bf
v: v3
  • Loading branch information
Kristen Carlson Accardi authored and Jeff Garzik committed Oct 12, 2007
1 parent 6c61091 commit 6eb8ac8
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9f45cbd3f0fc597530aaf85cad7fe52cd63f1fd8
refs/heads/master: 2f2949680ad89d606db838340b17c30216c0bb0f
24 changes: 24 additions & 0 deletions trunk/drivers/ata/ahci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,30 @@ static void ahci_port_intr(struct ata_port *ap)
return;
}

if (status & PORT_IRQ_SDB_FIS) {
/*
* if this is an ATAPI device with AN turned on,
* then we should interrogate the device to
* determine the cause of the interrupt
*
* for AN - this we should check the SDB FIS
* and find the I and N bits set
*/
const __le32 *f = pp->rx_fis + RX_FIS_SDB;
u32 f0 = le32_to_cpu(f[0]);

/* check the 'N' bit in word 0 of the FIS */
if (f0 & (1 << 15)) {
int port_addr = ((f0 & 0x00000f00) >> 8);
struct ata_device *adev;
if (port_addr < ATA_MAX_DEVICES) {
adev = &ap->link.device[port_addr];
if (adev->flags & ATA_DFLAG_AN)
ata_scsi_media_change_notify(adev);
}
}
}

if (ap->link.sactive)
qc_active = readl(port_mmio + PORT_SCR_ACT);
else
Expand Down
18 changes: 18 additions & 0 deletions trunk/drivers/ata/libata-scsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -3159,6 +3159,24 @@ static void ata_scsi_handle_link_detach(struct ata_link *link)
}
}

/**
* ata_scsi_media_change_notify - send media change event
* @atadev: Pointer to the disk device with media change event
*
* Tell the block layer to send a media change notification
* event.
*
* LOCKING:
* interrupt context, may not sleep.
*/
void ata_scsi_media_change_notify(struct ata_device *atadev)
{
#ifdef OTHER_AN_PATCHES_HAVE_BEEN_APPLIED
scsi_device_event_notify(atadev->sdev, SDEV_MEDIA_CHANGE);
#endif
}
EXPORT_SYMBOL_GPL(ata_scsi_media_change_notify);

/**
* ata_scsi_hotplug - SCSI part of hotplug
* @work: Pointer to ATA port to perform SCSI hotplug on
Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/libata.h
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,7 @@ extern void ata_host_init(struct ata_host *, struct device *,
extern int ata_scsi_detect(struct scsi_host_template *sht);
extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *));
extern void ata_scsi_media_change_notify(struct ata_device *atadev);
extern void ata_sas_port_destroy(struct ata_port *);
extern struct ata_port *ata_sas_port_alloc(struct ata_host *,
struct ata_port_info *, struct Scsi_Host *);
Expand Down

0 comments on commit 6eb8ac8

Please sign in to comment.