Re: [PATCH] dma-buf: add reference counting for exporter module

2012-08-08 Thread Sumit Semwal
Hi Tomasz, On 8 August 2012 19:36, Daniel Vetter wrote: > On Wed, Aug 08, 2012 at 03:53:10PM +0200, Tomasz Stanislawski wrote: >> Hi Laurent, >> >> On 08/08/2012 03:35 PM, Laurent Pinchart wrote: >> > Hi Tomasz, >> > >> > Thanks for the patch. Thanks for the patch; may I ask you to split it into

Re: [PATCH] staging:ccg: Fix missing brackets for sizeof (found by sparse).

2012-08-08 Thread Jesper Juhl
On Wed, 8 Aug 2012, Marek Belisko wrote: > Fix following: > WARNING: sizeof fsg should be sizeof(fsg) > + memset(&fsg, 0, sizeof fsg); > > Signed-off-by: Marek Belisko > --- > drivers/staging/ccg/ccg.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/stag

[PATCH] staging:ccg: Fix missing brackets for sizeof (found by sparse).

2012-08-08 Thread Marek Belisko
Fix following: WARNING: sizeof fsg should be sizeof(fsg) + memset(&fsg, 0, sizeof fsg); Signed-off-by: Marek Belisko --- drivers/staging/ccg/ccg.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/ccg/ccg.c b/drivers/staging/ccg/ccg.c index 6a7aab8..81a

Re: [PATCH v2] staging: gdm72xx: fix reference counting in gdm_wimax_event_init

2012-08-08 Thread Ben Chan
Hi, Does patch v2 make sense? Thanks, Ben On Wed, Jul 25, 2012 at 6:53 AM, Ben Chan wrote: > Hi Devendra, > > Thanks for cleaning up the driver. If I understand the code > correctly, the original author wanted to initialize wm_event once and > reuse it for multiple devices, and thus reference

[PATCH] Fix error: unknown field reclaim_buffers specified in initializer

2012-08-08 Thread David Cullen
The reclaim_buffers field has been removed from struct drm_driver. Signed-off-by: David Cullen --- drivers/staging/omapdrm/omap_drv.c |1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/omapdrm/omap_drv.c b/drivers/staging/omapdrm/omap_drv.c index 4beab94..44149ee 100644 --- a/

RE: [PATCH 0/4] promote zcache from staging

2012-08-08 Thread Dan Magenheimer
> From: Seth Jennings [mailto:sjenn...@linux.vnet.ibm.com] Hi Seth -- Good discussion. Even though we disagree, I appreciate your enthusiasm and your good work on the kernel! > Subject: Re: [PATCH 0/4] promote zcache from staging > > On 08/07/2012 04:47 PM, Dan Magenheimer wrote: > > I notice

Re: [PATCH] staging: rtl8192e: Fix typo in staging/rtl8192e

2012-08-08 Thread Sean MacLennan
On Thu, 9 Aug 2012 00:06:41 +0900 Masanari Iida wrote: > Correct spelling typo in staging/rtl8192e. > > Signed-off-by: Masanari Iida > --- > drivers/staging/rtl8192e/rtl8192e/rtl_dm.c | 2 +- > drivers/staging/rtl8192e/rtllib.h | 8 > drivers/staging/rtl8192e/rtllib_softmac.

Re: [PATCH 0/4] promote zcache from staging

2012-08-08 Thread Seth Jennings
On 08/07/2012 04:47 PM, Dan Magenheimer wrote: > I notice your original published benchmarks [1] include > N=24, N=28, and N=32, but these updated results do not. Are you planning > on completing the runs? Second, I now see the numbers I originally > published for what I thought was the same benc

[PATCH] staging: rtl8192e: Fix typo in staging/rtl8192e

2012-08-08 Thread Masanari Iida
Correct spelling typo in staging/rtl8192e. Signed-off-by: Masanari Iida --- drivers/staging/rtl8192e/rtl8192e/rtl_dm.c | 2 +- drivers/staging/rtl8192e/rtllib.h | 8 drivers/staging/rtl8192e/rtllib_softmac.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --gi

Re: [PATCH] dma-buf: add reference counting for exporter module

2012-08-08 Thread Daniel Vetter
On Wed, Aug 08, 2012 at 03:53:10PM +0200, Tomasz Stanislawski wrote: > Hi Laurent, > > On 08/08/2012 03:35 PM, Laurent Pinchart wrote: > > Hi Tomasz, > > > > Thanks for the patch. > > > > On Wednesday 08 August 2012 12:17:41 Tomasz Stanislawski wrote: > >> This patch adds reference counting on a

Re: [PATCH] dma-buf: add reference counting for exporter module

2012-08-08 Thread Tomasz Stanislawski
Hi Laurent, On 08/08/2012 03:35 PM, Laurent Pinchart wrote: > Hi Tomasz, > > Thanks for the patch. > > On Wednesday 08 August 2012 12:17:41 Tomasz Stanislawski wrote: >> This patch adds reference counting on a module that exports dma-buf and >> implements its operations. This prevents the module

Re: [PATCH] dma-buf: add reference counting for exporter module

2012-08-08 Thread Laurent Pinchart
Hi Tomasz, Thanks for the patch. On Wednesday 08 August 2012 12:17:41 Tomasz Stanislawski wrote: > This patch adds reference counting on a module that exports dma-buf and > implements its operations. This prevents the module from being unloaded > while DMABUF file is in use. > > Signed-off-by: T

[PATCH] dma-buf: add reference counting for exporter module

2012-08-08 Thread Tomasz Stanislawski
This patch adds reference counting on a module that exports dma-buf and implements its operations. This prevents the module from being unloaded while DMABUF file is in use. Signed-off-by: Tomasz Stanislawski --- Documentation/dma-buf-sharing.txt |3 ++- drivers/base/dma-buf.c