linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* get-identity ioctl in libata?
@ 2005-03-08  4:46 Jeff Garzik
  2005-03-08  8:14 ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 2+ messages in thread
From: Jeff Garzik @ 2005-03-08  4:46 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz, linux-ide@vger.kernel.org,
	Tobias Lorenz

[-- Attachment #1: Type: text/plain, Size: 217 bytes --]

Bart,

Did you say that there was some problem with the patch to add 
HDIO_GET_IDENTITY support to libata (attached)?

I forget what the issues were, and this has been sitting in 
libata-dev-2.6 for a while.

	Jeff



[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 1146 bytes --]

diff -Nru a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c
--- a/drivers/scsi/libata-scsi.c	2005-03-07 23:44:42 -05:00
+++ b/drivers/scsi/libata-scsi.c	2005-03-07 23:44:42 -05:00
@@ -72,6 +72,17 @@
 	struct ata_port *ap;
 	struct ata_device *dev;
 	int val = -EINVAL, rc = -EINVAL;
+	struct hd_driveid drv_id = {
+		.cyls		= 0,
+		.sectors	= 0,
+		.heads		= 0,
+		.fw_rev		= "",
+		.model		= "",
+		.cur_cyls	= 0,
+		.cur_heads	= 0,
+		.cur_sectors	= 0,
+	};
+	int geom[3];
 
 	ap = (struct ata_port *) &scsidev->host->hostdata[0];
 	if (!ap)
@@ -94,6 +105,17 @@
 		val = (unsigned long) arg;
 		if (val != 0)
 			return -EINVAL;
+		return 0;
+
+	case HDIO_GET_IDENTITY:
+		ata_std_bios_param(scsidev, NULL, dev->n_sectors, geom);
+		drv_id.cur_heads	= drv_id.heads		= geom[0];
+		drv_id.cur_sectors	= drv_id.sectors	= geom[1];
+		drv_id.cur_cyls		= drv_id.cyls		= geom[2];
+		strncpy((char *) &drv_id.model, scsidev->model, sizeof(drv_id.model));
+		strncpy((char *) &drv_id.fw_rev, scsidev->rev, sizeof(drv_id.fw_rev));
+		if(copy_to_user((char *) arg, (char *) &drv_id, sizeof(drv_id)))
+			return(-EFAULT);
 		return 0;
 
 	default:

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-03-08  8:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-08  4:46 get-identity ioctl in libata? Jeff Garzik
2005-03-08  8:14 ` 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).