All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] 2.4: Revert interface removal
@ 2002-08-05  9:05 Maciej W. Rozycki
  2002-08-05 10:41 ` Ralf Baechle
  0 siblings, 1 reply; 9+ messages in thread
From: Maciej W. Rozycki @ 2002-08-05  9:05 UTC (permalink / raw)
  To: Ralf Baechle, linux-mips

Hello,

 A recent change to include/asm-mips/scatterlist.h broke
drivers/scsi/dec_esp.c.  Since 2.4.19 is not the proper version to remove
interfaces, I'm going to check in the following patch to the 2.4 branch to
revert the change (with a slightly sanitized type for the dvma_address
member). 

 Any objections?

  Maciej

-- 
+  Maciej W. Rozycki, Technical University of Gdansk, Poland   +
+--------------------------------------------------------------+
+        e-mail: macro@ds2.pg.gda.pl, PGP key available        +

patch-mips-2.4.19-rc1-20020802-sg-2
diff -up --recursive --new-file linux-mips-2.4.19-rc1-20020802.macro/include/asm-mips/scatterlist.h linux-mips-2.4.19-rc1-20020802/include/asm-mips/scatterlist.h
--- linux-mips-2.4.19-rc1-20020802.macro/include/asm-mips/scatterlist.h	2002-08-01 15:57:53.000000000 +0000
+++ linux-mips-2.4.19-rc1-20020802/include/asm-mips/scatterlist.h	2002-08-03 20:43:35.000000000 +0000
@@ -10,6 +10,13 @@ struct scatterlist {
 	unsigned int length;
 };
 
+struct mmu_sglist {
+	char *addr;
+	char *__dont_touch;
+	unsigned int len;
+	dma_addr_t dvma_address;
+};
+
 #define ISA_DMA_THRESHOLD (0x00ffffff)
 
 #endif /* __ASM_SCATTERLIST_H */
diff -up --recursive --new-file linux-mips-2.4.19-rc1-20020802.macro/include/asm-mips64/scatterlist.h linux-mips-2.4.19-rc1-20020802/include/asm-mips64/scatterlist.h
--- linux-mips-2.4.19-rc1-20020802.macro/include/asm-mips64/scatterlist.h	2002-08-01 15:57:54.000000000 +0000
+++ linux-mips-2.4.19-rc1-20020802/include/asm-mips64/scatterlist.h	2002-08-03 20:43:44.000000000 +0000
@@ -10,6 +10,13 @@ struct scatterlist {
 	unsigned long length;
 };
 
+struct mmu_sglist {
+	char *addr;
+	char *__dont_touch;
+	unsigned long len;
+	dma_addr_t dvma_address;
+};
+
 #define ISA_DMA_THRESHOLD (0x00ffffff)
 
 #endif /* __ASM_SCATTERLIST_H */

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

end of thread, other threads:[~2002-08-06  9:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-05  9:05 [patch] 2.4: Revert interface removal Maciej W. Rozycki
2002-08-05 10:41 ` Ralf Baechle
2002-08-05 11:05   ` Carsten Langgaard
2002-08-05 11:53     ` Carsten Langgaard
2002-08-05 13:04       ` Carsten Langgaard
2002-08-05 14:47         ` Ralf Baechle
2002-08-06  6:46           ` Carsten Langgaard
2002-08-06  9:05             ` Carsten Langgaard
2002-08-05 11:20   ` Maciej W. Rozycki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.