diff options
Diffstat (limited to 'drivers/target/sbp/sbp_target.c')
-rw-r--r-- | drivers/target/sbp/sbp_target.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/target/sbp/sbp_target.c b/drivers/target/sbp/sbp_target.c index 24884cac19ce..ad04ea928e4f 100644 --- a/drivers/target/sbp/sbp_target.c +++ b/drivers/target/sbp/sbp_target.c | |||
@@ -1846,6 +1846,11 @@ static void sbp_queue_tm_rsp(struct se_cmd *se_cmd) | |||
1846 | { | 1846 | { |
1847 | } | 1847 | } |
1848 | 1848 | ||
1849 | static void sbp_aborted_task(struct se_cmd *se_cmd) | ||
1850 | { | ||
1851 | return; | ||
1852 | } | ||
1853 | |||
1849 | static int sbp_check_stop_free(struct se_cmd *se_cmd) | 1854 | static int sbp_check_stop_free(struct se_cmd *se_cmd) |
1850 | { | 1855 | { |
1851 | struct sbp_target_request *req = container_of(se_cmd, | 1856 | struct sbp_target_request *req = container_of(se_cmd, |
@@ -2526,6 +2531,7 @@ static struct target_core_fabric_ops sbp_ops = { | |||
2526 | .queue_data_in = sbp_queue_data_in, | 2531 | .queue_data_in = sbp_queue_data_in, |
2527 | .queue_status = sbp_queue_status, | 2532 | .queue_status = sbp_queue_status, |
2528 | .queue_tm_rsp = sbp_queue_tm_rsp, | 2533 | .queue_tm_rsp = sbp_queue_tm_rsp, |
2534 | .aborted_task = sbp_aborted_task, | ||
2529 | .check_stop_free = sbp_check_stop_free, | 2535 | .check_stop_free = sbp_check_stop_free, |
2530 | 2536 | ||
2531 | .fabric_make_wwn = sbp_make_tport, | 2537 | .fabric_make_wwn = sbp_make_tport, |