Small comments clarification

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4286 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2012-05-04 22:23:59 +00:00
parent 48fc76ecb4
commit 74e1d9884c
+8 -2
View File
@@ -441,10 +441,16 @@ enum scst_exec_context {
** Return codes for dev handler's exec()
*************************************************************/
/* The cmd is done, go to other ones */
/*
* The cmd is completed, go to other ones. It doesn't necessary to be really
* completed, it can still be being processed. This code means that SCST
* core should start performing post processing actions for this cmd, like
* increase SN and reactivate deferred commands, if allowed, and start
* processing other commands.
*/
#define SCST_EXEC_COMPLETED 0
/* The cmd should be sent to SCSI mid-level */
/* The cmd should continue staying on the EXEC phase */
#define SCST_EXEC_NOT_COMPLETED 1
/*************************************************************