Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932297AbWAJSCU (ORCPT ); Tue, 10 Jan 2006 13:02:20 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932299AbWAJSCU (ORCPT ); Tue, 10 Jan 2006 13:02:20 -0500 Received: from xenotime.net ([66.160.160.81]:10207 "HELO xenotime.net") by vger.kernel.org with SMTP id S932297AbWAJSCT (ORCPT ); Tue, 10 Jan 2006 13:02:19 -0500 Date: Tue, 10 Jan 2006 10:02:17 -0800 (PST) From: "Randy.Dunlap" X-X-Sender: rddunlap@shark.he.net To: Christoph Hellwig cc: "Bryan O'Sullivan" , Roland Dreier , sam@ravnborg.org, Andrew Morton , linux-kernel@vger.kernel.org Subject: Re: [PATCH 1 of 3] Introduce __raw_memcpy_toio32 In-Reply-To: <20060110175131.GA5235@infradead.org> Message-ID: References: <20060110011844.7a4a1f90.akpm@osdl.org> <1136909276.32183.28.camel@serpentine.pathscale.com> <20060110170722.GA3187@infradead.org> <1136915386.6294.8.camel@serpentine.pathscale.com> <20060110175131.GA5235@infradead.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2219 Lines: 54 On Tue, 10 Jan 2006, Christoph Hellwig wrote: > On Tue, Jan 10, 2006 at 09:49:46AM -0800, Bryan O'Sullivan wrote: > > On Tue, 2006-01-10 at 17:07 +0000, Christoph Hellwig wrote: > > > > > Or add a CONFIG_GENERIC_MEMCPY_IO that's non-uservisible and just set > > > by all the architectures that don't provide their own version. > > > > diff -r 48616306e7bd lib/Makefile > > --- a/lib/Makefile Tue Jan 10 10:41:42 2006 +0800 > > +++ b/lib/Makefile Tue Jan 10 09:32:53 2006 -0800 > > @@ -21,6 +21,7 @@ > > lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o > > lib-$(CONFIG_SEMAPHORE_SLEEPERS) += semaphore-sleepers.o > > lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o > > +lib-$(CONFIG_GENERIC_RAW_MEMCPY_IO) += raw_memcpy_io.o > > obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o > > obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o > > > > --- /dev/null Thu Jan 1 00:00:00 1970 +0000 > > +++ b/include/asm-generic/raw_memcpy_io.h Tue Jan 10 09:32:53 2006 -0800 > > @@ -0,0 +1,16 @@ > > +#ifndef _ASM_GENERIC_RAW_MEMCPY_IO_H > > +#define _ASM_GENERIC_RAW_MEMCPY_IO_H > > + > > +/* > > + * __raw_memcpy_toio32 - copy data to MMIO space, in 32-bit units > > + * > > + * Order of access is not guaranteed, nor is a memory barrier performed > > + * afterwards. This is an arch-independent generic implementation. > > + * > > + * @to: destination, in MMIO space (must be 32-bit aligned) > > + * @from: source (must be 32-bit aligned) > > + * @count: number of 32-bit quantities to copy > > + */ > > This should be in the implementation file, not near the prototype. > And needs to start with /** to be valid kernel doc. and the function args need to follow the first line, then a blank ('*') line, then the longer function description/notes. > > +void __raw_memcpy_toio32(void __iomem *to, const void *from, size_t count); > > and without that comment I'd suggest just adding this to every asm/io.h > instead of an asm-generic header for just one prototype. -- ~Randy - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/