Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F115912129
D31891.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D31891.diff
View Options
diff --git a/sys/cam/ctl/ctl_frontend_iscsi.c b/sys/cam/ctl/ctl_frontend_iscsi.c
--- a/sys/cam/ctl/ctl_frontend_iscsi.c
+++ b/sys/cam/ctl/ctl_frontend_iscsi.c
@@ -1108,11 +1108,30 @@
uma_zfree(cfiscsi_data_wait_zone, cdw);
}
+static void
+cfiscsi_data_wait_abort(struct cfiscsi_session *cs,
+ struct cfiscsi_data_wait *cdw, int status)
+{
+ union ctl_io *cdw_io;
+
+ /*
+ * Set nonzero port status; this prevents backends from
+ * assuming that the data transfer actually succeeded
+ * and writing uninitialized data to disk.
+ */
+ MPASS(status != 0);
+ cdw_io = cdw->cdw_ctl_io;
+ cdw_io->io_hdr.flags &= ~CTL_FLAG_DMA_INPROG;
+ cdw_io->scsiio.io_hdr.port_status = status;
+ cfiscsi_data_wait_free(cs, cdw);
+ ctl_datamove_done(cdw_io, false);
+}
+
static void
cfiscsi_session_terminate_tasks(struct cfiscsi_session *cs)
{
struct cfiscsi_data_wait *cdw;
- union ctl_io *io, *cdw_io;
+ union ctl_io *io;
int error, last, wait;
if (cs->cs_target == NULL)
@@ -1139,16 +1158,7 @@
while ((cdw = TAILQ_FIRST(&cs->cs_waiting_for_data_out)) != NULL) {
TAILQ_REMOVE(&cs->cs_waiting_for_data_out, cdw, cdw_next);
CFISCSI_SESSION_UNLOCK(cs);
- /*
- * Set nonzero port status; this prevents backends from
- * assuming that the data transfer actually succeeded
- * and writing uninitialized data to disk.
- */
- cdw_io = cdw->cdw_ctl_io;
- cdw_io->io_hdr.flags &= ~CTL_FLAG_DMA_INPROG;
- cdw_io->scsiio.io_hdr.port_status = 42;
- cfiscsi_data_wait_free(cs, cdw);
- ctl_datamove_done(cdw_io, false);
+ cfiscsi_data_wait_abort(cs, cdw, 42);
CFISCSI_SESSION_LOCK(cs);
}
CFISCSI_SESSION_UNLOCK(cs);
@@ -2931,7 +2941,6 @@
struct cfiscsi_data_wait *cdw, *tmpcdw;
struct cfiscsi_session *cs, *tcs;
struct cfiscsi_softc *softc;
- union ctl_io *cdw_io;
int cold_reset = 0;
request = PRIV_REQUEST(io);
@@ -2965,11 +2974,7 @@
#endif
TAILQ_REMOVE(&cs->cs_waiting_for_data_out,
cdw, cdw_next);
- cdw_io = cdw->cdw_ctl_io;
- cdw_io->io_hdr.flags &= ~CTL_FLAG_DMA_INPROG;
- cdw_io->scsiio.io_hdr.port_status = 43;
- cfiscsi_data_wait_free(cs, cdw);
- ctl_datamove_done(cdw_io, false);
+ cfiscsi_data_wait_abort(cs, cdw, 43);
}
CFISCSI_SESSION_UNLOCK(cs);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, May 1, 8:05 AM (11 h, 59 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
17877049
Default Alt Text
D31891.diff (2 KB)
Attached To
Mode
D31891: iscsi: Add a helper routine to abort a data-out task.
Attached
Detach File
Event Timeline
Log In to Comment