Re: [PATCH 3/3] zsmalloc: add page table mapping method

2012-07-22 Thread Nitin Gupta
On 07/22/2012 08:26 PM, Minchan Kim wrote: > On Wed, Jul 18, 2012 at 11:55:56AM -0500, Seth Jennings wrote: >> This patchset provides page mapping via the page table. >> On some archs, most notably ARM, this method has been >> demonstrated to be faster than copying. >> >> The logic controlling the

Re: [PATCH 2/3] drivers/misc: Add realtek pci card reader driver

2012-07-22 Thread wwang
Hi Rusty: Thank you. I will fix it and resend all of the three patches BR, wwang 于 2012年07月20日 13:58, Rusty Russell 写道: > On Thu, 19 Jul 2012 17:55:10 +0800, wrote: >> From: Wei WANG >> >> Realtek PCI-E card reader driver adapts requests from upper-level >> sdmmc/memstick layer to the real p

[PATCH] staging/vme: fix checkpatch warnings

2012-07-22 Thread Toshiaki Yamane
Now checkpatch clean. $ find drivers/staging/vme -name "*.[ch]"|xargs ./scripts/checkpatch.pl \ -f --terse --nosummary|cut -f3- -d":"|sort |uniq -c|sort -n 1 ERROR: trailing whitespace 2 WARNING: Prefer pr_debug(... to printk(KERN_DEBUG, ... 5 WARNING: Prefer pr_info(... to pr

Re: [PATCH 3/3] zsmalloc: add page table mapping method

2012-07-22 Thread Minchan Kim
Hi Seth, On Sun, Jul 22, 2012 at 07:33:40PM -0500, Seth Jennings wrote: > On 07/22/2012 07:26 PM, Minchan Kim wrote: > > On Wed, Jul 18, 2012 at 11:55:56AM -0500, Seth Jennings wrote: > >> This patchset provides page mapping via the page table. > >> On some archs, most notably ARM, this method has

Re: [PATCH 3/3] zsmalloc: add page table mapping method

2012-07-22 Thread Seth Jennings
On 07/22/2012 07:26 PM, Minchan Kim wrote: > On Wed, Jul 18, 2012 at 11:55:56AM -0500, Seth Jennings wrote: >> This patchset provides page mapping via the page table. >> On some archs, most notably ARM, this method has been >> demonstrated to be faster than copying. >> >> The logic controlling the

Re: [PATCH 3/3] zsmalloc: add page table mapping method

2012-07-22 Thread Minchan Kim
On Wed, Jul 18, 2012 at 11:55:56AM -0500, Seth Jennings wrote: > This patchset provides page mapping via the page table. > On some archs, most notably ARM, this method has been > demonstrated to be faster than copying. > > The logic controlling the method selection (copy vs page table) > is contro

Re: [PATCH 2/3] zsmalloc: prevent mappping in interrupt context

2012-07-22 Thread Minchan Kim
On Wed, Jul 18, 2012 at 11:55:55AM -0500, Seth Jennings wrote: > Because we use per-cpu mapping areas shared among the > pools/users, we can't allow mapping in interrupt context > because it can corrupt another users mappings. > > Signed-off-by: Seth Jennings Acked-by: Minchan Kim -- Kind rega

Re: [PATCH 1/3] zsmalloc: s/firstpage/page in new copy map funcs

2012-07-22 Thread Minchan Kim
On Wed, Jul 18, 2012 at 11:55:54AM -0500, Seth Jennings wrote: > firstpage already has precedent and meaning the first page > of a zspage. In the case of the copy mapping functions, > it is the first of a pair of pages needing to be mapped. > > This patch just renames the firstpage argument to "p

Re: [PATCH 2/3] drivers/misc: Add realtek pci card reader driver

2012-07-22 Thread Rusty Russell
On Thu, 19 Jul 2012 17:55:10 +0800, wrote: > From: Wei WANG > > Realtek PCI-E card reader driver adapts requests from upper-level > sdmmc/memstick layer to the real physical card reader. > +static int msi_en = 1; > +module_param(msi_en, int, S_IRUGO | S_IWUSR); > +MODULE_PARM_DESC(msi_en, "Enab

[PATCH 2/2] Staging: slicoss: Clean up spaces vs tabs in slicoss.c

2012-07-22 Thread Jesper Juhl
Make it match CodingStyle a bit better, space/tab wise. Signed-off-by: Jesper Juhl --- drivers/staging/slicoss/slicoss.c | 809 +++--- 1 file changed, 397 insertions(+), 412 deletions(-) diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/sl

[PATCH 1/2] Staging: slicoss: Clean up tabs vs spaces in slic.h

2012-07-22 Thread Jesper Juhl
Make it match CodingStyle a bit better, tab/space wise. Signed-off-by: Jesper Juhl --- drivers/staging/slicoss/slic.h | 751 - 1 file changed, 374 insertions(+), 377 deletions(-) diff --git a/drivers/staging/slicoss/slic.h b/drivers/staging/slicoss/slic.h

Re: [PATCH 1/2] staging/iio: use module_platform_driver macro

2012-07-22 Thread Jonathan Cameron
On 07/21/2012 09:54 AM, Devendra Naga wrote: > the code which under _init and _exit does only the platform_driver_register > and platform_driver_unregister, and nothing else, > so its better to use the module_platform_driver macro rather duplicating > its implementation > > Signed-off-by: Devendra

RE: [PATCH] drivers: hv: use Linux version in guest ID

2012-07-22 Thread KY Srinivasan
> -Original Message- > From: Greg KH [mailto:gre...@linuxfoundation.org] > Sent: Friday, July 20, 2012 12:10 PM > To: KY Srinivasan > Cc: Bjørn Mork; Paolo Bonzini; devel@linuxdriverproject.org; linux- > ker...@vger.kernel.org > Subject: Re: [PATCH] drivers: hv: use Linux version in guest

RE: [PATCH 00/13] drivers: hv: kvp

2012-07-22 Thread KY Srinivasan
> -Original Message- > From: Ben Hutchings [mailto:b...@decadent.org.uk] > Sent: Saturday, July 21, 2012 10:51 PM > To: KY Srinivasan > Cc: Olaf Hering; Greg KH; a...@canonical.com; devel@linuxdriverproject.org; > virtualizat...@lists.osdl.org; linux-ker...@vger.kernel.org; > net...@vger.

[PATCH] Staging: nvec: fix coding style issues

2012-07-22 Thread Marc Dietrich
This commit fixes coding style issues that includes long lines. Based on the original patch submitted by Adnan Ali Signed-off-by: Marc Dietrich --- drivers/staging/nvec/nvec.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/nvec/nvec.c b/drivers/stag