[patch 21/25] libata: expose AN to user space
From: akpm@linux-foundation.org
Date: 2007-08-10 21:16:07
From: Kristen Carlson Accardi <kristen.c.accardi@intel.com> If Asynchronous Notification of media change events is supported, pass that information up to the SCSI layer. Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com> Cc: Jeff Garzik <redacted> Cc: Tejun Heo <redacted> Cc: James Bottomley <redacted> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- drivers/ata/libata-scsi.c | 3 +++ 1 files changed, 3 insertions(+) diff -puN drivers/ata/libata-scsi.c~libata-expose-an-to-user-space drivers/ata/libata-scsi.c
--- a/drivers/ata/libata-scsi.c~libata-expose-an-to-user-space
+++ a/drivers/ata/libata-scsi.c@@ -844,6 +844,9 @@ static void ata_scsi_dev_config(struct s blk_queue_max_hw_segments(q, q->max_hw_segments - 1); } + if (dev->flags & ATA_DFLAG_AN) + sdev->media_change_notify = 1; + if (dev->flags & ATA_DFLAG_NCQ) { int depth;
_