* Re: 2.6.22-rc3-mm1 [not found] <20070530235823.793f00d9.akpm@linux-foundation.org> @ 2007-05-31 12:09 ` Cornelia Huck 2007-05-31 12:15 ` 2.6.22-rc3-mm1 Matthew Wilcox 0 siblings, 1 reply; 8+ messages in thread From: Cornelia Huck @ 2007-05-31 12:09 UTC (permalink / raw) To: Andrew Morton Cc: linux-kernel, SCSI development list, James Bottomley, Dan Williams On Wed, 30 May 2007 23:58:23 -0700, Andrew Morton <akpm@linux-foundation.org> wrote: > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.22-rc3/2.6.22-rc3-mm1/ With > +dma-mapping-prevent-dma-dependent-code-from-linking-on.patch scsi fails to build on !HAS_DMA architectures: drivers/built-in.o(.text+0x20af6): In function `scsi_dma_map': : undefined reference to `dma_map_sg' drivers/built-in.o(.text+0x20b5c): In function `scsi_dma_unmap': : undefined reference to `dma_unmap_sg' I split those functions out into a new file. Builds on s390 and i386. scsi: Don't build scsi_dma_{map,unmap} for !HAS_DMA Move scsi_dma_{map,unmap} into scsi_lib_dma.c which is only build if HAS_DMA is set. Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> --- drivers/scsi/Kconfig | 5 ++++ drivers/scsi/Makefile | 6 ++--- drivers/scsi/scsi_lib.c | 38 --------------------------------- drivers/scsi/scsi_lib_dma.c | 50 ++++++++++++++++++++++++++++++++++++++++++++ include/scsi/scsi_cmnd.h | 2 + 5 files changed, 60 insertions(+), 41 deletions(-) --- linux-2.6.orig/drivers/scsi/Kconfig +++ linux-2.6/drivers/scsi/Kconfig @@ -10,6 +10,7 @@ config RAID_ATTRS config SCSI tristate "SCSI device support" depends on BLOCK + select SCSI_DMA if HAS_DMA ---help--- If you want to use a SCSI hard disk, SCSI tape drive, SCSI CD-ROM or any other SCSI device under Linux, say Y and make sure that you know @@ -29,6 +30,10 @@ config SCSI However, do not compile this as a module if your root file system (the one containing the directory /) is located on a SCSI device. +config SCSI_DMA + bool + default n + config SCSI_TGT tristate "SCSI target support" depends on SCSI && EXPERIMENTAL --- linux-2.6.orig/drivers/scsi/Makefile +++ linux-2.6/drivers/scsi/Makefile @@ -145,9 +145,9 @@ obj-$(CONFIG_SCSI_DEBUG) += scsi_debug.o obj-$(CONFIG_SCSI_WAIT_SCAN) += scsi_wait_scan.o scsi_mod-y += scsi.o hosts.o scsi_ioctl.o constants.o \ - scsicam.o scsi_error.o scsi_lib.o \ - scsi_scan.o scsi_sysfs.o \ - scsi_devinfo.o + scsicam.o scsi_error.o scsi_lib.o +scsi_mod-$(CONFIG_SCSI_DMA) += scsi_lib_dma.o +scsi_mod-y += scsi_scan.o scsi_sysfs.o scsi_devinfo.o scsi_mod-$(CONFIG_SCSI_NETLINK) += scsi_netlink.o scsi_mod-$(CONFIG_SYSCTL) += scsi_sysctl.o scsi_mod-$(CONFIG_SCSI_PROC_FS) += scsi_proc.o --- linux-2.6.orig/drivers/scsi/scsi_lib.c +++ linux-2.6/drivers/scsi/scsi_lib.c @@ -2290,41 +2290,3 @@ void scsi_kunmap_atomic_sg(void *virt) kunmap_atomic(virt, KM_BIO_SRC_IRQ); } EXPORT_SYMBOL(scsi_kunmap_atomic_sg); - -/** - * scsi_dma_map - perform DMA mapping against command's sg lists - * @cmd: scsi command - * - * Returns the number of sg lists actually used, zero if the sg lists - * is NULL, or -ENOMEM if the mapping failed. - */ -int scsi_dma_map(struct scsi_cmnd *cmd) -{ - int nseg = 0; - - if (scsi_sg_count(cmd)) { - struct device *dev = cmd->device->host->shost_gendev.parent; - - nseg = dma_map_sg(dev, scsi_sglist(cmd), scsi_sg_count(cmd), - cmd->sc_data_direction); - if (unlikely(!nseg)) - return -ENOMEM; - } - return nseg; -} -EXPORT_SYMBOL(scsi_dma_map); - -/** - * scsi_dma_unmap - unmap command's sg lists mapped by scsi_dma_map - * @cmd: scsi command - */ -void scsi_dma_unmap(struct scsi_cmnd *cmd) -{ - if (scsi_sg_count(cmd)) { - struct device *dev = cmd->device->host->shost_gendev.parent; - - dma_unmap_sg(dev, scsi_sglist(cmd), scsi_sg_count(cmd), - cmd->sc_data_direction); - } -} -EXPORT_SYMBOL(scsi_dma_unmap); --- linux-2.6.orig/include/scsi/scsi_cmnd.h +++ linux-2.6/include/scsi/scsi_cmnd.h @@ -135,8 +135,10 @@ extern void scsi_kunmap_atomic_sg(void * extern struct scatterlist *scsi_alloc_sgtable(struct scsi_cmnd *, gfp_t); extern void scsi_free_sgtable(struct scatterlist *, int); +#ifdef CONFIG_SCSI_DMA extern int scsi_dma_map(struct scsi_cmnd *cmd); extern void scsi_dma_unmap(struct scsi_cmnd *cmd); +#endif #define scsi_sg_count(cmd) ((cmd)->use_sg) #define scsi_sglist(cmd) ((struct scatterlist *)(cmd)->request_buffer) --- /dev/null +++ linux-2.6/drivers/scsi/scsi_lib_dma.c @@ -0,0 +1,50 @@ +/* + * SCSI library functions depending on DMA + */ + +#include <linux/blkdev.h> +#include <linux/device.h> +#include <linux/kernel.h> + +#include <scsi/scsi.h> +#include <scsi/scsi_cmnd.h> +#include <scsi/scsi_device.h> +#include <scsi/scsi_host.h> + +/** + * scsi_dma_map - perform DMA mapping against command's sg lists + * @cmd: scsi command + * + * Returns the number of sg lists actually used, zero if the sg lists + * is NULL, or -ENOMEM if the mapping failed. + */ +int scsi_dma_map(struct scsi_cmnd *cmd) +{ + int nseg = 0; + + if (scsi_sg_count(cmd)) { + struct device *dev = cmd->device->host->shost_gendev.parent; + + nseg = dma_map_sg(dev, scsi_sglist(cmd), scsi_sg_count(cmd), + cmd->sc_data_direction); + if (unlikely(!nseg)) + return -ENOMEM; + } + return nseg; +} +EXPORT_SYMBOL(scsi_dma_map); + +/** + * scsi_dma_unmap - unmap command's sg lists mapped by scsi_dma_map + * @cmd: scsi command + */ +void scsi_dma_unmap(struct scsi_cmnd *cmd) +{ + if (scsi_sg_count(cmd)) { + struct device *dev = cmd->device->host->shost_gendev.parent; + + dma_unmap_sg(dev, scsi_sglist(cmd), scsi_sg_count(cmd), + cmd->sc_data_direction); + } +} +EXPORT_SYMBOL(scsi_dma_unmap); ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 2.6.22-rc3-mm1 2007-05-31 12:09 ` 2.6.22-rc3-mm1 Cornelia Huck @ 2007-05-31 12:15 ` Matthew Wilcox 2007-05-31 12:20 ` 2.6.22-rc3-mm1 Cornelia Huck 0 siblings, 1 reply; 8+ messages in thread From: Matthew Wilcox @ 2007-05-31 12:15 UTC (permalink / raw) To: Cornelia Huck Cc: Andrew Morton, linux-kernel, SCSI development list, James Bottomley, Dan Williams On Thu, May 31, 2007 at 02:09:22PM +0200, Cornelia Huck wrote: > I split those functions out into a new file. Builds on s390 and i386. Why not just put #ifdef CONFIG_HAS_DMA / #endif around the pair of functions? I don't see the need to add a new Kconfig symbol and a new file for this. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 2.6.22-rc3-mm1 2007-05-31 12:15 ` 2.6.22-rc3-mm1 Matthew Wilcox @ 2007-05-31 12:20 ` Cornelia Huck 2007-05-31 12:35 ` 2.6.22-rc3-mm1 Jeff Garzik 0 siblings, 1 reply; 8+ messages in thread From: Cornelia Huck @ 2007-05-31 12:20 UTC (permalink / raw) To: Matthew Wilcox Cc: Andrew Morton, linux-kernel, SCSI development list, James Bottomley, Dan Williams On Thu, 31 May 2007 06:15:57 -0600, Matthew Wilcox <matthew@wil.cx> wrote: > On Thu, May 31, 2007 at 02:09:22PM +0200, Cornelia Huck wrote: > > I split those functions out into a new file. Builds on s390 and i386. > > Why not just put #ifdef CONFIG_HAS_DMA / #endif around the pair of > functions? I don't see the need to add a new Kconfig symbol and a new > file for this. I prefer a new file over #ifdefs in c files. (New dma-dependent stuff would also have a place where it could go to.) But I'll do whatever ends up as consensus :) ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 2.6.22-rc3-mm1 2007-05-31 12:20 ` 2.6.22-rc3-mm1 Cornelia Huck @ 2007-05-31 12:35 ` Jeff Garzik 2007-05-31 15:11 ` 2.6.22-rc3-mm1 Cornelia Huck 2007-05-31 15:13 ` 2.6.22-rc3-mm1 Christoph Hellwig 0 siblings, 2 replies; 8+ messages in thread From: Jeff Garzik @ 2007-05-31 12:35 UTC (permalink / raw) To: Cornelia Huck Cc: Matthew Wilcox, Andrew Morton, linux-kernel, SCSI development list, James Bottomley, Dan Williams Cornelia Huck wrote: > On Thu, 31 May 2007 06:15:57 -0600, > Matthew Wilcox <matthew@wil.cx> wrote: > >> On Thu, May 31, 2007 at 02:09:22PM +0200, Cornelia Huck wrote: >>> I split those functions out into a new file. Builds on s390 and i386. >> Why not just put #ifdef CONFIG_HAS_DMA / #endif around the pair of >> functions? I don't see the need to add a new Kconfig symbol and a new >> file for this. > > I prefer a new file over #ifdefs in c files. (New dma-dependent stuff > would also have a place where it could go to.) > > But I'll do whatever ends up as consensus :) 50 lines isn't much need for a new file. Jeff ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 2.6.22-rc3-mm1 2007-05-31 12:35 ` 2.6.22-rc3-mm1 Jeff Garzik @ 2007-05-31 15:11 ` Cornelia Huck 2007-05-31 15:13 ` 2.6.22-rc3-mm1 Christoph Hellwig 1 sibling, 0 replies; 8+ messages in thread From: Cornelia Huck @ 2007-05-31 15:11 UTC (permalink / raw) To: Jeff Garzik Cc: Matthew Wilcox, Andrew Morton, linux-kernel, SCSI development list, James Bottomley, Dan Williams On Thu, 31 May 2007 08:35:13 -0400, Jeff Garzik <jeff@garzik.org> wrote: > Cornelia Huck wrote: > > On Thu, 31 May 2007 06:15:57 -0600, > > Matthew Wilcox <matthew@wil.cx> wrote: > > > >> On Thu, May 31, 2007 at 02:09:22PM +0200, Cornelia Huck wrote: > >>> I split those functions out into a new file. Builds on s390 and i386. > >> Why not just put #ifdef CONFIG_HAS_DMA / #endif around the pair of > >> functions? I don't see the need to add a new Kconfig symbol and a new > >> file for this. > > > > I prefer a new file over #ifdefs in c files. (New dma-dependent stuff > > would also have a place where it could go to.) > > > > But I'll do whatever ends up as consensus :) > > 50 lines isn't much need for a new file. OK, so here's an alternative patch: scsi: Don't build scsi_dma_{map,unmap} for !HAS_DMA Use #ifdef CONFIG_HAS_DMA for the two dma-dependent functions. Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> --- drivers/scsi/scsi_lib.c | 2 ++ include/scsi/scsi_cmnd.h | 2 ++ 2 files changed, 4 insertions(+) --- linux-2.6.orig/drivers/scsi/scsi_lib.c +++ linux-2.6/drivers/scsi/scsi_lib.c @@ -2291,6 +2291,7 @@ void scsi_kunmap_atomic_sg(void *virt) } EXPORT_SYMBOL(scsi_kunmap_atomic_sg); +#ifdef CONFIG_HAS_DMA /** * scsi_dma_map - perform DMA mapping against command's sg lists * @cmd: scsi command @@ -2328,3 +2329,4 @@ void scsi_dma_unmap(struct scsi_cmnd *cm } } EXPORT_SYMBOL(scsi_dma_unmap); +#endif --- linux-2.6.orig/include/scsi/scsi_cmnd.h +++ linux-2.6/include/scsi/scsi_cmnd.h @@ -135,8 +135,10 @@ extern void scsi_kunmap_atomic_sg(void * extern struct scatterlist *scsi_alloc_sgtable(struct scsi_cmnd *, gfp_t); extern void scsi_free_sgtable(struct scatterlist *, int); +#ifdef CONFIG_HAS_DMA extern int scsi_dma_map(struct scsi_cmnd *cmd); extern void scsi_dma_unmap(struct scsi_cmnd *cmd); +#endif #define scsi_sg_count(cmd) ((cmd)->use_sg) #define scsi_sglist(cmd) ((struct scatterlist *)(cmd)->request_buffer) ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 2.6.22-rc3-mm1 2007-05-31 12:35 ` 2.6.22-rc3-mm1 Jeff Garzik 2007-05-31 15:11 ` 2.6.22-rc3-mm1 Cornelia Huck @ 2007-05-31 15:13 ` Christoph Hellwig 2007-05-31 22:10 ` 2.6.22-rc3-mm1 Andrew Morton 1 sibling, 1 reply; 8+ messages in thread From: Christoph Hellwig @ 2007-05-31 15:13 UTC (permalink / raw) To: Jeff Garzik Cc: Cornelia Huck, Matthew Wilcox, Andrew Morton, linux-kernel, SCSI development list, James Bottomley, Dan Williams On Thu, May 31, 2007 at 08:35:13AM -0400, Jeff Garzik wrote: > Cornelia Huck wrote: > >On Thu, 31 May 2007 06:15:57 -0600, > >Matthew Wilcox <matthew@wil.cx> wrote: > > > >>On Thu, May 31, 2007 at 02:09:22PM +0200, Cornelia Huck wrote: > >>>I split those functions out into a new file. Builds on s390 and i386. > >>Why not just put #ifdef CONFIG_HAS_DMA / #endif around the pair of > >>functions? I don't see the need to add a new Kconfig symbol and a new > >>file for this. > > > >I prefer a new file over #ifdefs in c files. (New dma-dependent stuff > >would also have a place where it could go to.) > > > >But I'll do whatever ends up as consensus :) > > 50 lines isn't much need for a new file. The scsi core shouldn't know anything about dma mappings, so a separate file is a good idea just to keep the separation clean. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 2.6.22-rc3-mm1 2007-05-31 15:13 ` 2.6.22-rc3-mm1 Christoph Hellwig @ 2007-05-31 22:10 ` Andrew Morton 2007-06-01 7:09 ` 2.6.22-rc3-mm1 Cornelia Huck 0 siblings, 1 reply; 8+ messages in thread From: Andrew Morton @ 2007-05-31 22:10 UTC (permalink / raw) To: Christoph Hellwig Cc: Jeff Garzik, Cornelia Huck, Matthew Wilcox, linux-kernel, SCSI development list, James Bottomley, Dan Williams On Thu, 31 May 2007 16:13:38 +0100 Christoph Hellwig <hch@infradead.org> wrote: > On Thu, May 31, 2007 at 08:35:13AM -0400, Jeff Garzik wrote: > > Cornelia Huck wrote: > > >On Thu, 31 May 2007 06:15:57 -0600, > > >Matthew Wilcox <matthew@wil.cx> wrote: > > > > > >>On Thu, May 31, 2007 at 02:09:22PM +0200, Cornelia Huck wrote: > > >>>I split those functions out into a new file. Builds on s390 and i386. > > >>Why not just put #ifdef CONFIG_HAS_DMA / #endif around the pair of > > >>functions? I don't see the need to add a new Kconfig symbol and a new > > >>file for this. > > > > > >I prefer a new file over #ifdefs in c files. (New dma-dependent stuff > > >would also have a place where it could go to.) > > > > > >But I'll do whatever ends up as consensus :) > > > > 50 lines isn't much need for a new file. > > The scsi core shouldn't know anything about dma mappings, so a separate > file is a good idea just to keep the separation clean. ok, let's go this way. Cornelia, afaict your patch has no actual delendency upon Dan's dma-mapping-prevent-dma-dependent-code-from-linking-on.patch, correct? If so, I can merge it via James and then merge Dan's patch once James has merged. If there is a dependency then I guess I merge both into a single diff and merge it all in one hit. btw, this: diff -puN include/scsi/scsi_cmnd.h~scsi-dont-build-scsi_dma_mapunmap-for-has_dma include/scsi/scsi_cmnd.h --- a/include/scsi/scsi_cmnd.h~scsi-dont-build-scsi_dma_mapunmap-for-has_dma +++ a/include/scsi/scsi_cmnd.h @@ -135,8 +135,10 @@ extern void scsi_kunmap_atomic_sg(void * extern struct scatterlist *scsi_alloc_sgtable(struct scsi_cmnd *, gfp_t); extern void scsi_free_sgtable(struct scatterlist *, int); +#ifdef CONFIG_SCSI_DMA extern int scsi_dma_map(struct scsi_cmnd *cmd); extern void scsi_dma_unmap(struct scsi_cmnd *cmd); +#endif #define scsi_sg_count(cmd) ((cmd)->use_sg) #define scsi_sglist(cmd) ((struct scatterlist *)(cmd)->request_buffer) We don't really need the ifdefs here. If someone incorrectly calls these functions then they'll get a link-time failure anyway. The downside of removing these ifdefs is that they won't get a compile-time warning, but I tend to think that this small cost is worth it. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 2.6.22-rc3-mm1 2007-05-31 22:10 ` 2.6.22-rc3-mm1 Andrew Morton @ 2007-06-01 7:09 ` Cornelia Huck 0 siblings, 0 replies; 8+ messages in thread From: Cornelia Huck @ 2007-06-01 7:09 UTC (permalink / raw) To: Andrew Morton Cc: Christoph Hellwig, Jeff Garzik, Matthew Wilcox, linux-kernel, SCSI development list, James Bottomley, Dan Williams On Thu, 31 May 2007 15:10:05 -0700, Andrew Morton <akpm@linux-foundation.org> wrote: > Cornelia, afaict your patch has no actual delendency upon Dan's > dma-mapping-prevent-dma-dependent-code-from-linking-on.patch, correct? If > so, I can merge it via James and then merge Dan's patch once James has > merged. AFAICS there's no dependency in that direction. > diff -puN include/scsi/scsi_cmnd.h~scsi-dont-build-scsi_dma_mapunmap-for-has_dma include/scsi/scsi_cmnd.h > --- a/include/scsi/scsi_cmnd.h~scsi-dont-build-scsi_dma_mapunmap-for-has_dma > +++ a/include/scsi/scsi_cmnd.h > @@ -135,8 +135,10 @@ extern void scsi_kunmap_atomic_sg(void * > extern struct scatterlist *scsi_alloc_sgtable(struct scsi_cmnd *, gfp_t); > extern void scsi_free_sgtable(struct scatterlist *, int); > > +#ifdef CONFIG_SCSI_DMA > extern int scsi_dma_map(struct scsi_cmnd *cmd); > extern void scsi_dma_unmap(struct scsi_cmnd *cmd); > +#endif > > #define scsi_sg_count(cmd) ((cmd)->use_sg) > #define scsi_sglist(cmd) ((struct scatterlist *)(cmd)->request_buffer) > > We don't really need the ifdefs here. If someone incorrectly calls these > functions then they'll get a link-time failure anyway. The downside of > removing these ifdefs is that they won't get a compile-time warning, but I > tend to think that this small cost is worth it. OK, fine with me. ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2007-06-01 7:09 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20070530235823.793f00d9.akpm@linux-foundation.org>
2007-05-31 12:09 ` 2.6.22-rc3-mm1 Cornelia Huck
2007-05-31 12:15 ` 2.6.22-rc3-mm1 Matthew Wilcox
2007-05-31 12:20 ` 2.6.22-rc3-mm1 Cornelia Huck
2007-05-31 12:35 ` 2.6.22-rc3-mm1 Jeff Garzik
2007-05-31 15:11 ` 2.6.22-rc3-mm1 Cornelia Huck
2007-05-31 15:13 ` 2.6.22-rc3-mm1 Christoph Hellwig
2007-05-31 22:10 ` 2.6.22-rc3-mm1 Andrew Morton
2007-06-01 7:09 ` 2.6.22-rc3-mm1 Cornelia Huck
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox