[nvmewin] Handling IO when Format NVM op is in progress

Neal Galbo (ngalbo) ngalbo at micron.com
Tue Jan 7 21:48:11 PST 2014


1)      Regarding one of the previous emails - there is no restriction preventing the SCSI block size from changing during format. Yes, it can! Unlikely, but not forbidden; therefore the READ CAPACITY command - which gives you everything to discover this information.  There were/are so-called "soft sectored" drives where the LBA block can be resized during format. Whether they are in wide use anymore ... not sure. But no restrictions in SCSI.

2)      Namespaces absolutely can disappear ... and reappear ... and be renamed. Can even have different namespaces referencing exactly the same storage area as other namespaces ... or overlapping. Namespaces are Wild West - anything goes. And, they must be "instantiated", i.e. Create and Delete Namespace. Yes, it is not specified in the NVMe spec how that is done (outside the scope), but it mentions that this must happen. Point of reference, there are companies that are developing drives that do exactly this, in addition to allowing a variable programmable number of namespaces to be instantiated within. You may be sensing I'm not a fan. Yes, I have a problem with the namespace concept or lack of ground rules regarding. But this is what we got. Now, how do we get it to work consistently, while at the same time mapping to the SCSI LU concept? Yes, we can lay down rules - but where does one go to reference those? Who's the keeper of the rules? And do they change by manufacturer? OS? Platform?

3)      SCSI LU's and therefore LUN's (the number/address) ARE NEVER instantiated. They all exist in the device and are constant from the moment of power-on.  Internally LU's usually have a physical relationship to hardware, i.e. if a device has N LU's, then there's usually N data paths and N buffers and N storage areas for N independent units. That is, in SCSI parlance, there are N Device Servers - one per each LUN (see SCSI Architecture Model or SPC4, etc.).

4)      Someone mentioned this earlier - yes, you can continue sending commands to a SCSI device WHILE it is formatting. It is still online! It will report BUSY in status or NOT READY in the SENSE KEY. SCSI can also produce a UNIT ATTENTION condition after formatting - meaning, "host check with me, something radical has changed". NVMe specification does not speak to these conditions. Yes, we can make something up ... but again, who's the keeper of that info?

a.      Also, using SAM, there is a TASK MANAGEMENT function that can return information indicating 0-100% completion of Format (or any long duration command).

Bottom line, IMHO - NVMe specification has serious omissions. The specification should be the SINGLE point of reference for these issues. It needs to address these issues and have defined protocols on how to handle them. But, that ship has sailed.

Regards,
Neal


From: Judy Brock-SSI [mailto:judy.brock at ssi.samsung.com]
Sent: Tuesday, January 07, 2014 9:42 PM
To: Neal Galbo (ngalbo); Mayes, Barrett N; nvmewin at lists.openfabrics.org
Subject: RE: Handling IO when Format NVM op is in progress

    >>In general, LU's and LUN's never disappear in SCSI; they are not transient. They are not dynamic. They are static. They either exist or they don't. They don't hide, once enumerated/attached/located. Unlike namespaces.

Like SCSI LUNs, NVMe namespaces are also not transient and (I now submit, having reversed positions :)) that they should not hide either.

Format NVM command does not result in a different number of Namespaces then existed before the operation after it is finished.  While namespaces can be formatted with different LBA Format than previously, they are still static in terms of their existence/non-existence.

Additionally , the current code is not achieving what it intended to do since it does not actually hide any LUNS before launching the Format NVM op. That is it does not  wait till the existing LUNs are "gone" (ie until the miniport fails to report them  in a subsequent inquiry) before it starts the operation.

Thanks,
Judy

From: Neal Galbo (ngalbo) [mailto:ngalbo at micron.com]
Sent: Tuesday, January 07, 2014 6:27 AM
To: Mayes, Barrett N; Judy Brock-SSI; nvmewin at lists.openfabrics.org
Subject: RE: Handling IO when Format NVM op is in progress

The conditions you describe would never happen with a SCSI device. In general, LU's and LUN's never disappear in SCSI; they are not transient. They are not dynamic. They are static. They either exist or they don't. They don't hide, once enumerated/attached/located. Unlike namespaces.

The media, backing storage or provisioning can change, but the LU would always be available for communication (commands). Other LU's in the same device would not be affected either - they are independent entities relative to each other.

-Neal

From: nvmewin-bounces at lists.openfabrics.org<mailto:nvmewin-bounces at lists.openfabrics.org> [mailto:nvmewin-bounces at lists.openfabrics.org] On Behalf Of Mayes, Barrett N
Sent: Tuesday, January 07, 2014 12:15 AM
To: Judy Brock-SSI; nvmewin at lists.openfabrics.org<mailto:nvmewin at lists.openfabrics.org>
Subject: Re: [nvmewin] Handling IO when Format NVM op is in progress

What problem do you want to solve by keeping the block device around during a format and allowing IO through so it can be failed with check condition?

Namespace not ready can't generically be translated to SCSI check condition/not ready/Format In Progress.  The driver would need to know that a format command is outstanding so it could translate that correctly (for 1.0-based device support) since the namespace could be not ready for reasons other than a format in progress.  If the driver already has to know a format is in progress, it could just fail commands without sending it to the device (so no need for the new failure code).  But if that's the case, why _not_ hide the LUN until the format is complete.  By hiding the LUN and bringing it back when the format is complete, you don't have to worry about handling IO and you also take care of the re-enumeration that has to happen when the format is complete (in the case of changing the LBA Format).

-Barrett

From: nvmewin-bounces at lists.openfabrics.org<mailto:nvmewin-bounces at lists.openfabrics.org> [mailto:nvmewin-bounces at lists.openfabrics.org] On Behalf Of Judy Brock-SSI
Sent: Monday, January 06, 2014 8:09 PM
To: nvmewin at lists.openfabrics.org<mailto:nvmewin at lists.openfabrics.org>
Subject: [nvmewin] Handling IO when Format NVM op is in progress

All,

Many months ago, I initiated a thread  (see attached) in which I argued that there were some holes in the current implementation of Format NVM ioctl passthru and in which I advocated for, among other things, the addition of logic to make sure pseudo-SCSI bus re-enumeration had fully taken place in the driver (such that Storport was notified that no "luns" were present) before the actual Format NVM op was launched.

I intuitively understand - and up to this point have unquestioningly agreed with - the basic assumption that the reason the namespaces must be  removed/ "luns" disappeared prior to formatting is because "we cannot format a namespace while the OS is aware of its presence and could be potentially sending I/O to a stale namespace config (i.e. changing LBA/sector size)." (excerpt from attached thread).

The question has recently arisen in internal discussion however as to whether or not we really have to do this. It was pointed out that SCSI devices (real ones) are capable of receiving IO commands while SCSI format commands are in process. They will return the following error:

      SCSI status =   Check condition, sense code = NOT READY (0x2), additional sense code = LUN NOT READY (0x4), additional sense code qualifier = FORMAT IN PROGRESS (0x4)

Why then, instead of removing namespaces/luns, can our Windows driver not return the same error status a real SCSI drive would return in such a situation? One would assume that upper layers of the storage stack have plenty years of experience in knowing what to do when it sees that error.

As a point of comparison, there is no standard I am aware of which specifies that Storport miniports which support real SCSI devices, if they happen to provide a proprietary pass-thru to allow a SCSI format command to go through to a device, must cause all LUNS to appear offline prior to formatting,

One could even argue (and they have!) that these IO commands could even be allowed to go through to the NVMe device itself (as in the real SCSI case); NVMe 1.1 Technical Proposal 005 has defined a new format-in-progress status code that NVMe firmware will be able to return at some point in the future, current firmware could easily return NAMESPACE_NOT_READY and driver could translate to the above SCSI sense data, etc.

So ...  here I stand, devil's advocate hat in hand, hoping to find out:


a)       what the "back story" is on how this decision was ultimately made (the attached thread said a lot of discussion took place on the subject)

b)       whether or not the diametrically-opposed alternative I am discussing above was thoroughly considered and if so, why it was rejected

c)       whether the topic bears reconsidering at this point.

Thanks in advance for your collective consideration,

Judy

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openfabrics.org/pipermail/nvmewin/attachments/20140108/0b3039db/attachment.html>


More information about the nvmewin mailing list