Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762181AbXJRL7V (ORCPT ); Thu, 18 Oct 2007 07:59:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1762387AbXJRL7K (ORCPT ); Thu, 18 Oct 2007 07:59:10 -0400 Received: from s1.mailresponder.info ([193.24.237.10]:1740 "EHLO s1.mailresponder.info" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759258AbXJRL7I (ORCPT ); Thu, 18 Oct 2007 07:59:08 -0400 Subject: Re: Inquiry data and emulated SG devices From: Mathieu Fluhr To: Jeff Garzik Cc: Robert Hancock , James Bottomley , LKML , ide , linux-scsi In-Reply-To: <4717302D.4050107@garzik.org> References: <4716B56A.1090501@shaw.ca> <4716B786.80804@garzik.org> <1192701555.3247.28.camel@de-c-l-110.nero-de.internal> <4717302D.4050107@garzik.org> Content-Type: text/plain Organization: Nero AG Date: Thu, 18 Oct 2007 13:57:30 +0200 Message-Id: <1192708650.3266.38.camel@de-c-l-110.nero-de.internal> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2116 Lines: 47 On Thu, 2007-10-18 at 06:06 -0400, Jeff Garzik wrote: > The SCSI midlayer makes a lot of "if scsi version <= 2" choices. In the > case of ATAPI, we do not want to force ATAPI down the path of ancient > SCSI devices, as this disables some MMC features that modern ATAPI > devices support. If I fully understand your point, if this faking code wasn't present, and if the inquiry data was left as it is, all modern ATAPI devices would be considered as really old SCSI devices. Am I right? And then why external (FireWire and USB) devices reports the inquiry data correctly? After all they are also considered to be SCSI devices... -> But apparently, from what /proc/scsi/scsi outputs, the ANSI SCSI revision is set to 0 (for both ieee1394 and USB devices). This seems to be coherent with what the inquiry data buffer outputs. Also another question, more from the developer point of view, you have to know which real interface is behind a device. You might get performance loss if the real type is not known. For example, I send a BLANK cdb to fully blank a disc, with the 'immed' flag not set, so that the requested operation is processed to completion prior to returning status. - for real SCSI devices, this is not harmfull, as the bus is not blocked - for IDE devices, AFAIK, the bus will be blocked until the command termination... so for a CD erased a 1x, the bus might be blocked for 74min. Also the SCSI commands that are sent to the device depends from its hardware bus type. Not only for the CDB length, but also for MODE SENSE/MODE SELECT CDBs in which for example a MODE SENSE (6) would fail on an IDE device... even if it is described in the SPC-3 standard. As far as I saw in libata-scsi.c there a SCSI-to-ATAPI and ATAPI-to-SCSI translator that automatically transform the command sent... Am I also right on this point? Mathieu - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/