From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Bottomley Subject: RE: How to add/drop SCSI drives from within the driver? Date: 08 Dec 2004 09:59:35 -0600 Message-ID: <1102521582.2659.2.camel@mulgrave> References: <0E3FA95632D6D047BA649F95DAB60E570230CA8C@exa-atlanta> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <0E3FA95632D6D047BA649F95DAB60E570230CA8C@exa-atlanta> Sender: linux-kernel-owner@vger.kernel.org To: "Bagalkote, Sreenivas" Cc: Matt Domsch , "'brking@us.ibm.com'" , "'linux-kernel@vger.kernel.org'" , "'linux-scsi@vger.kernel.org'" , "'bunk@fs.tum.de'" , 'Andrew Morton' , "Ju, Seokmann" , "Doelfel, Hardy" , "Mukker, Atul" List-Id: linux-scsi@vger.kernel.org On Wed, 2004-12-08 at 01:16, Bagalkote, Sreenivas wrote: > Adding a drive:- For application to use sysfs to scan newly added drive, > it needs to know the HCTL (SCSI address - Host, Channel, Target & Lun) > of the drive. Driver is the only one that knows the mapping between a > drive and the corresponding HCTL. The real way I'd like to handle this is via hotplug. The hotplug event would transmit the HCTL in the environment. Whether the drive actually gets incorporated into the system and where is user policy, so it's appropriate that it should be in userland. This same infrastructure could be used by fibre channel login, scsi enclosure events etc. We have some of the hotplug infrastructure in SCSI, but not quite enough for this ... you'll need an additional API. > Removing a drive:- There is no sane way for the application to map out > drives to /dev/sd. If application has a way of knowing the HCTL of a > deleted drive, then using that HCTL, it can match the corresponding SCSI > device name (/dev/sd) and use sysfs to remove that drive. Since The sysfs device name contains H:C:T:L surely you can just do a find on /sys? James