public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.4 use __dma_buffer in scsi.h
@ 2002-06-13  0:24 Roland Dreier
  0 siblings, 0 replies; 4+ messages in thread
From: Roland Dreier @ 2002-06-13  0:24 UTC (permalink / raw)
  To: Marcelo Tosatti; +Cc: David Brownell, Oliver Neukum, linux-kernel

Use __dma_buffer macro to align sense_buffer member of Scsi_Cmnd.

Patch is against 2.4.19-pre10.

Thanks,
  Roland

 scsi.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)

diff -Naur linux-2.4.19-pre10.orig/drivers/scsi/scsi.h linux-2.4.19-pre10/drivers/scsi/scsi.h
--- linux-2.4.19-pre10.orig/drivers/scsi/scsi.h	Wed Jun 12 15:08:52 2002
+++ linux-2.4.19-pre10/drivers/scsi/scsi.h	Wed Jun 12 16:28:21 2002
@@ -30,6 +30,7 @@
 #include <asm/hardirq.h>
 #include <asm/scatterlist.h>
 #include <asm/io.h>
+#include <asm/dma_buffer.h>
 
 /*
  * These are the values that the SCpnt->sc_data_direction and 
@@ -779,7 +780,7 @@
 	struct request request;	/* A copy of the command we are
 				   working on */
 
-	unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE];		/* obtained by REQUEST SENSE
+	unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE] __dma_buffer;		/* obtained by REQUEST SENSE
 						 * when CHECK CONDITION is
 						 * received on original command 
 						 * (auto-sense) */

^ permalink raw reply	[flat|nested] 4+ messages in thread
* Re: [PATCH] 2.4 use __dma_buffer in scsi.h
@ 2002-06-13  2:17 James Bottomley
  2002-06-13 17:42 ` Roland Dreier
  0 siblings, 1 reply; 4+ messages in thread
From: James Bottomley @ 2002-06-13  2:17 UTC (permalink / raw)
  To: Roland Dreier; +Cc: linux-kernel, linux-scsi

> Use __dma_buffer macro to align sense_buffer member of Scsi_Cmnd.
[...]

> -       unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE];              /* obtained by REQUEST SENSE
> +       unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE] __dma_buffer;         /* obtained by REQUEST SENSE

This is actually unnecessary.  We've already had this discussion on the parisc 
mailing lists (over a year ago, I think).

The SCSI subsystem is designed with this type of cache incoherency problem in 
mind.  The Scsi_Cmnd structure has an ownership model to forestall cache line 
bouncing.  The idea is that when you want to dma to/from components of a 
Scsi_Cmnd, you can only do it when the ownership is SCSI_OWNER_LOW_LEVEL, 
which guarantees that nothing in the mid layer will touch the command and 
trigger an incoherency (at least until it times out).  The low level driver is 
supposed to know about the cache incoherency problem, and so avoids touching 
the structure between cache line invalidation/writeback and DMA completion, 
thus, with a correctly implemented driver, there should be no possibility of 
DMA corruption.

Each of the Scsi_Cmnd blocks is individually allocated with kmalloc, so 
they're guaranteed to be non-interfering when it comes to DMA.

Incidentally, if you're really going to insist on padding the structure, some 
drivers also use the cmnd element to DMA the command from, so that should be 
aligned as well.  But I think the best course of action is to fix any low 
level drivers that are not following the cache rules rather than expanding 
Scsi_Cmnd.

James Bottomley



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

end of thread, other threads:[~2002-06-13 17:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-13  0:24 [PATCH] 2.4 use __dma_buffer in scsi.h Roland Dreier
  -- strict thread matches above, loose matches on Subject: below --
2002-06-13  2:17 James Bottomley
2002-06-13 17:42 ` Roland Dreier
2002-06-13 17:52   ` James Bottomley

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