mirror of https://gitee.com/openkylin/linux.git
target: simplify core_tmr_abort_task
list_for_each_entry_safe is necessary if list objects are deleted from the list while traversing it. Not the case here, so we can use the base list_for_each_entry variant. Signed-off-by: Joern Engel <joern@logfs.org> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
33940d0993
commit
f81ccb489a
|
@ -115,13 +115,12 @@ void core_tmr_abort_task(
|
|||
struct se_tmr_req *tmr,
|
||||
struct se_session *se_sess)
|
||||
{
|
||||
struct se_cmd *se_cmd, *tmp_cmd;
|
||||
struct se_cmd *se_cmd;
|
||||
unsigned long flags;
|
||||
int ref_tag;
|
||||
|
||||
spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
|
||||
list_for_each_entry_safe(se_cmd, tmp_cmd,
|
||||
&se_sess->sess_cmd_list, se_cmd_list) {
|
||||
list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list) {
|
||||
|
||||
if (dev != se_cmd->se_dev)
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue