aboutsummaryrefslogtreecommitdiff
path: root/sys/cam/scsi/scsi_low.c
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2017-02-19 17:27:58 +0000
committerAlexander Motin <mav@FreeBSD.org>2017-02-19 17:27:58 +0000
commit950c5aca4ac28e845fc8f5077f21451dbe9fabb4 (patch)
treed361dd60fd224203458dd27bad244d5588d4e2a9 /sys/cam/scsi/scsi_low.c
parent5dff7be120bf34b61d43b37f3951cf223bc52485 (diff)
downloadsrc-950c5aca4ac28e845fc8f5077f21451dbe9fabb4.tar.gz
src-950c5aca4ac28e845fc8f5077f21451dbe9fabb4.zip
Remove dead mentions of CAM target mode APIs from drivers.
This makes grepping kernel for target mode implementation much easier.
Notes
Notes: svn path=/head/; revision=313949
Diffstat (limited to 'sys/cam/scsi/scsi_low.c')
-rw-r--r--sys/cam/scsi/scsi_low.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/cam/scsi/scsi_low.c b/sys/cam/scsi/scsi_low.c
index 01ca86a0c2bc..ae59c08ab3a7 100644
--- a/sys/cam/scsi/scsi_low.c
+++ b/sys/cam/scsi/scsi_low.c
@@ -479,15 +479,6 @@ scsi_low_scsi_action_cam(sim, ccb)
#endif /* SCSI_LOW_DEBUG */
break;
- case XPT_EN_LUN: /* Enable LUN as a target */
- case XPT_TARGET_IO: /* Execute target I/O request */
- case XPT_ACCEPT_TARGET_IO: /* Accept Host Target Mode CDB */
- case XPT_CONT_TARGET_IO: /* Continue Host Target I/O Connection*/
- /* XXX Implement */
- ccb->ccb_h.status = CAM_REQ_INVALID;
- xpt_done(ccb);
- break;
-
case XPT_ABORT: /* Abort the specified CCB */
#ifdef SCSI_LOW_DIAGNOSTIC
if (target == CAM_TARGET_WILDCARD || lun == CAM_LUN_WILDCARD)