public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.4.x] prevent emulated SCSI hosts from wasting DMA memory
@ 2005-11-30 17:15 Dan Aloni
  2005-11-30 19:33 ` Luke-Jr
  0 siblings, 1 reply; 6+ messages in thread
From: Dan Aloni @ 2005-11-30 17:15 UTC (permalink / raw)
  To: Marcelo; +Cc: Linux Kernel List

Emulated scsi hosts don't do DMA, so don't unnecessarily increase
the SCSI DMA pool.

Signed-off-by: Dan Aloni <da-x@monatomic.org>

---
commit 8f6409c7c270038ca4d154551e061f66a9580301
tree ab7fedd2e7dbaefe31c332fc487f45a005972571
parent a0837aece47b79a2bfd524e70e4f8a559c743c4c
author Dan Aloni <da-x@monatomic.org> Wed, 30 Nov 2005 18:14:11 +0200
committer Dan Aloni <da-x@monatomic.org> Wed, 30 Nov 2005 18:14:11 +0200

 drivers/scsi/scsi_dma.c |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/scsi_dma.c b/drivers/scsi/scsi_dma.c
index 5594828..52737d6 100644
--- a/drivers/scsi/scsi_dma.c
+++ b/drivers/scsi/scsi_dma.c
@@ -231,10 +231,17 @@ void scsi_resize_dma_pool(void)
 		need_isa_bounce_buffers = 0;
 
 	if (scsi_devicelist)
-		for (shpnt = scsi_hostlist; shpnt; shpnt = shpnt->next)
+		for (shpnt = scsi_hostlist; shpnt; shpnt = shpnt->next) {
+			if (shpnt->hostt->emulated)
+				continue;
+
 			new_dma_sectors += SECTORS_PER_PAGE;	/* Increment for each host */
+		}
 
 	for (host = scsi_hostlist; host; host = host->next) {
+		if (host->hostt->emulated)
+			continue;
+
 		for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
 			/*
 			 * sd and sr drivers allocate scatterlists.


-- 
Dan Aloni
da-x@monatomic.org, da-x@colinux.org, da-x@gmx.net

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-12-21 18:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-30 17:15 [PATCH 2.4.x] prevent emulated SCSI hosts from wasting DMA memory Dan Aloni
2005-11-30 19:33 ` Luke-Jr
2005-11-30 21:02   ` Dan Aloni
2005-12-01 11:36     ` Christoph Hellwig
2005-12-01 15:39       ` Dan Aloni
2005-12-21 18:17       ` Marcelo Tosatti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox