diff options
Diffstat (limited to 'drivers/target')
-rw-r--r-- | drivers/target/target_core_transport.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c index 96e78f3f461d..ca1a40dc4888 100644 --- a/drivers/target/target_core_transport.c +++ b/drivers/target/target_core_transport.c | |||
@@ -1694,6 +1694,15 @@ void target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess, | |||
1694 | } | 1694 | } |
1695 | EXPORT_SYMBOL(target_submit_cmd); | 1695 | EXPORT_SYMBOL(target_submit_cmd); |
1696 | 1696 | ||
1697 | static void target_complete_tmr_failure(struct work_struct *work) | ||
1698 | { | ||
1699 | struct se_cmd *se_cmd = container_of(work, struct se_cmd, work); | ||
1700 | |||
1701 | se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST; | ||
1702 | se_cmd->se_tfo->queue_tm_rsp(se_cmd); | ||
1703 | transport_generic_free_cmd(se_cmd, 0); | ||
1704 | } | ||
1705 | |||
1697 | /** | 1706 | /** |
1698 | * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd | 1707 | * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd |
1699 | * for TMR CDBs | 1708 | * for TMR CDBs |
@@ -1734,9 +1743,12 @@ int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess, | |||
1734 | 1743 | ||
1735 | ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun); | 1744 | ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun); |
1736 | if (ret) { | 1745 | if (ret) { |
1737 | se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST; | 1746 | /* |
1738 | se_cmd->se_tfo->queue_tm_rsp(se_cmd); | 1747 | * For callback during failure handling, push this work off |
1739 | transport_generic_free_cmd(se_cmd, 0); | 1748 | * to process context with TMR_LUN_DOES_NOT_EXIST status. |
1749 | */ | ||
1750 | INIT_WORK(&se_cmd->work, target_complete_tmr_failure); | ||
1751 | schedule_work(&se_cmd->work); | ||
1740 | return 0; | 1752 | return 0; |
1741 | } | 1753 | } |
1742 | transport_generic_handle_tmr(se_cmd); | 1754 | transport_generic_handle_tmr(se_cmd); |