scst spelling fix: Rename "atimic" into "atomic"

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5124 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2013-11-19 09:49:35 +00:00
parent f239f4d071
commit 7f13d7ac6d
3 changed files with 3 additions and 3 deletions

View File

@@ -2576,7 +2576,7 @@ struct scst_tgt_dev {
/* Set if the corresponding context should be atomic */
unsigned int tgt_dev_after_init_wr_atomic:1;
unsigned int tgt_dev_after_exec_atimic:1;
unsigned int tgt_dev_after_exec_atomic:1;
/* Set if tgt_dev uses clustered SGV pool */
unsigned int tgt_dev_clust_pool:1;

View File

@@ -4130,7 +4130,7 @@ static int scst_alloc_add_tgt_dev(struct scst_session *sess,
}
if (dev->handler->dev_done_atomic &&
sess->tgt->tgtt->xmit_response_atomic)
tgt_dev->tgt_dev_after_exec_atimic = 1;
tgt_dev->tgt_dev_after_exec_atomic = 1;
sl = scst_set_sense(sense_buffer, sizeof(sense_buffer),
dev->d_sense, SCST_LOAD_SENSE(scst_sense_reset_UA));

View File

@@ -1713,7 +1713,7 @@ static inline enum scst_exec_context scst_optimize_post_exec_context(
if (((context == SCST_CONTEXT_SAME) && scst_cmd_atomic(cmd)) ||
(context == SCST_CONTEXT_TASKLET) ||
(context == SCST_CONTEXT_DIRECT_ATOMIC)) {
if (!cmd->tgt_dev->tgt_dev_after_exec_atimic)
if (!cmd->tgt_dev->tgt_dev_after_exec_atomic)
context = SCST_CONTEXT_THREAD;
}
return context;