Fix confusion between CONFIG_DEBUG_SG and CONFIG_SCST_DEBUG_TM noticed by Bart Van Assche <bvanassche@acm.org>

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@2050 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2010-09-04 13:27:04 +00:00
parent c0ab5d3b89
commit 4fb1e2527c

View File

@@ -1677,17 +1677,11 @@ struct scst_cmd {
/* Set if cmd is finished */
unsigned int finished:1;
#ifdef CONFIG_DEBUG_SG
/*
* Set if the cmd was delayed by task management debugging code.
* Used only if CONFIG_SCST_DEBUG_TM is on.
*/
#ifdef CONFIG_SCST_DEBUG_TM
/* Set if the cmd was delayed by task management debugging code */
unsigned int tm_dbg_delayed:1;
/*
* Set if the cmd must be ignored by task management debugging code.
* Used only if CONFIG_SCST_DEBUG_TM is on.
*/
/* Set if the cmd must be ignored by task management debugging code */
unsigned int tm_dbg_immut:1;
#endif