Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F107013168
D26550.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D26550.diff
View Options
Index: head/sys/cam/scsi/scsi_sg.c
===================================================================
--- head/sys/cam/scsi/scsi_sg.c
+++ head/sys/cam/scsi/scsi_sg.c
@@ -507,7 +507,6 @@
struct cam_periph *periph;
struct sg_softc *softc;
struct sg_io_hdr *req;
- void *data_ptr;
int dir, error;
periph = (struct cam_periph *)dev->si_drv1;
@@ -552,20 +551,12 @@
break;
}
- if (req->dxfer_len > MAXPHYS) {
- error = EINVAL;
- break;
- }
-
- data_ptr = malloc(req->dxfer_len, M_DEVBUF, M_WAITOK);
-
ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
csio = &ccb->csio;
error = copyin(req->cmdp, &csio->cdb_io.cdb_bytes,
req->cmd_len);
if (error) {
- free(data_ptr, M_DEVBUF);
xpt_release_ccb(ccb);
break;
}
@@ -586,21 +577,12 @@
break;
}
- if (dir == CAM_DIR_IN || dir == CAM_DIR_BOTH) {
- error = copyin(req->dxferp, data_ptr, req->dxfer_len);
- if (error) {
- free(data_ptr, M_DEVBUF);
- xpt_release_ccb(ccb);
- break;
- }
- }
-
cam_fill_csio(csio,
/*retries*/1,
/*cbfcnp*/NULL,
dir|CAM_DEV_QFRZDIS,
MSG_SIMPLE_Q_TAG,
- data_ptr,
+ req->dxferp,
req->dxfer_len,
req->mx_sb_len,
req->cmd_len,
@@ -610,7 +592,6 @@
if (error) {
req->host_status = DID_ERROR;
req->driver_status = DRIVER_INVALID;
- free(data_ptr, M_DEVBUF);
xpt_release_ccb(ccb);
break;
}
@@ -629,10 +610,6 @@
req->sb_len_wr);
}
- if ((dir == CAM_DIR_OUT || dir == CAM_DIR_BOTH) && error == 0)
- error = copyout(data_ptr, req->dxferp, req->dxfer_len);
-
- free(data_ptr, M_DEVBUF);
xpt_release_ccb(ccb);
break;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 9, 11:25 PM (10 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15737063
Default Alt Text
D26550.diff (1 KB)
Attached To
Mode
D26550: Revert most of r360179.
Attached
Detach File
Event Timeline
Log In to Comment