We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae6a6a commit 9d7464bCopy full SHA for 9d7464b
drivers/target/target_core_user.c
@@ -1292,13 +1292,13 @@ static void tcmu_check_expired_queue_cmd(struct tcmu_cmd *cmd)
1292
if (!time_after(jiffies, cmd->deadline))
1293
return;
1294
1295
+ pr_debug("Timing out queued cmd %p on dev %s.\n",
1296
+ cmd, cmd->tcmu_dev->name);
1297
+
1298
list_del_init(&cmd->queue_entry);
1299
se_cmd = cmd->se_cmd;
1300
tcmu_free_cmd(cmd);
1301
- pr_debug("Timing out queued cmd %p on dev %s.\n",
- cmd, cmd->tcmu_dev->name);
-
1302
target_complete_cmd(se_cmd, SAM_STAT_TASK_SET_FULL);
1303
}
1304
0 commit comments