patch-2.4.1 linux/drivers/scsi/scsi_merge.c
Next file: linux/drivers/scsi/sg.c
Previous file: linux/drivers/scsi/scsi_lib.c
Back to the patch index
Back to the overall index
- Lines: 70
- Date:
Mon Jan 15 13:08:15 2001
- Orig file:
v2.4.0/linux/drivers/scsi/scsi_merge.c
- Orig date:
Thu Oct 12 11:16:26 2000
diff -u --recursive --new-file v2.4.0/linux/drivers/scsi/scsi_merge.c linux/drivers/scsi/scsi_merge.c
@@ -324,7 +324,6 @@
req->nr_segments >= SHpnt->sg_tablesize)
return 0;
req->nr_segments++;
- q->elevator.nr_segments++;
return 1;
}
@@ -341,11 +340,8 @@
if (req->nr_hw_segments >= SHpnt->sg_tablesize ||
req->nr_segments >= SHpnt->sg_tablesize)
return 0;
- if (req->nr_segments >= max_segments)
- return 0;
req->nr_hw_segments++;
req->nr_segments++;
- q->elevator.nr_segments++;
return 1;
}
#else
@@ -361,7 +357,6 @@
* counter.
*/
req->nr_segments++;
- q->elevator.nr_segments++;
return 1;
} else {
return 0;
@@ -417,8 +412,10 @@
SDpnt = (Scsi_Device *) q->queuedata;
SHpnt = SDpnt->host;
+#ifdef DMA_CHUNK_SIZE
if (max_segments > 64)
max_segments = 64;
+#endif
if (use_clustering) {
/*
@@ -471,8 +468,10 @@
SDpnt = (Scsi_Device *) q->queuedata;
SHpnt = SDpnt->host;
+#ifdef DMA_CHUNK_SIZE
if (max_segments > 64)
max_segments = 64;
+#endif
if (use_clustering) {
/*
@@ -601,10 +600,10 @@
SDpnt = (Scsi_Device *) q->queuedata;
SHpnt = SDpnt->host;
+#ifdef DMA_CHUNK_SIZE
if (max_segments > 64)
max_segments = 64;
-#ifdef DMA_CHUNK_SIZE
/* If it would not fit into prepared memory space for sg chain,
* then don't allow the merge.
*/
@@ -664,7 +663,6 @@
* This one is OK. Let it go.
*/
req->nr_segments += next->nr_segments - 1;
- q->elevator.nr_segments--;
#ifdef DMA_CHUNK_SIZE
req->nr_hw_segments += next->nr_hw_segments - 1;
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)