linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFT] microblaze: dma-mapping: support debug_dma_mapping_error
@ 2012-10-25 23:29 Shuah Khan
  2012-10-26  8:29 ` Michal Simek
  0 siblings, 1 reply; 6+ messages in thread
From: Shuah Khan @ 2012-10-25 23:29 UTC (permalink / raw)
  To: monstr, kyungmin.park, m.szyprowski, arnd, andrzej.p
  Cc: microblaze-uclinux, LKML, shuahkhan

Add support for debug_dma_mapping_error() call to avoid warning from
debug_dma_unmap() interface when it checks for mapping error checked
status. Without this patch, device driver failed to check map error
warning is generated.

Signed-off-by: Shuah Khan <shuah.khan@hp.com>
---
 arch/microblaze/include/asm/dma-mapping.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/microblaze/include/asm/dma-mapping.h b/arch/microblaze/include/asm/dma-mapping.h
index 01d2282..4451c7a 100644
--- a/arch/microblaze/include/asm/dma-mapping.h
+++ b/arch/microblaze/include/asm/dma-mapping.h
@@ -114,6 +114,7 @@ static inline void __dma_sync(unsigned long paddr,
 static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
 {
 	struct dma_map_ops *ops = get_dma_ops(dev);
+	debug_dma_mapping_error(dev, dma_addr);
 	if (ops->mapping_error)
 		return ops->mapping_error(dev, dma_addr);
 
-- 
1.7.9.5




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

* Re: [PATCH RFT] microblaze: dma-mapping: support debug_dma_mapping_error
  2012-10-25 23:29 [PATCH RFT] microblaze: dma-mapping: support debug_dma_mapping_error Shuah Khan
@ 2012-10-26  8:29 ` Michal Simek
  2012-10-26 14:58   ` Shuah Khan
  0 siblings, 1 reply; 6+ messages in thread
From: Michal Simek @ 2012-10-26  8:29 UTC (permalink / raw)
  To: shuah.khan
  Cc: kyungmin.park, m.szyprowski, arnd, andrzej.p, microblaze-uclinux,
	LKML, shuahkhan

On 10/26/2012 01:29 AM, Shuah Khan wrote:
> Add support for debug_dma_mapping_error() call to avoid warning from
> debug_dma_unmap() interface when it checks for mapping error checked
> status. Without this patch, device driver failed to check map error
> warning is generated.
>
> Signed-off-by: Shuah Khan <shuah.khan@hp.com>
> ---
>   arch/microblaze/include/asm/dma-mapping.h |    1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/arch/microblaze/include/asm/dma-mapping.h b/arch/microblaze/include/asm/dma-mapping.h
> index 01d2282..4451c7a 100644
> --- a/arch/microblaze/include/asm/dma-mapping.h
> +++ b/arch/microblaze/include/asm/dma-mapping.h
> @@ -114,6 +114,7 @@ static inline void __dma_sync(unsigned long paddr,
>   static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
>   {
>   	struct dma_map_ops *ops = get_dma_ops(dev);

here should be empty line.

> +	debug_dma_mapping_error(dev, dma_addr);
>   	if (ops->mapping_error)
>   		return ops->mapping_error(dev, dma_addr);

Patch looks good to me. I was greping the latest mainline tree and I can't see
reference to debug_dma_mapping_error. Can you tell me where this function
is implemented.
I have also seen that you have sent several similar patches like this.

If you want to add it through any other tree here is my ACK:

Acked-by: Michal Simek <monstr@monstr.eu>

I will definitely keep my eyes on it.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian

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

* Re: [PATCH RFT] microblaze: dma-mapping: support debug_dma_mapping_error
  2012-10-26  8:29 ` Michal Simek
@ 2012-10-26 14:58   ` Shuah Khan
  2012-10-26 15:53     ` [PATCH v2 linux-next] " Shuah Khan
  2012-10-26 15:57     ` [PATCH RFT] " Michal Simek
  0 siblings, 2 replies; 6+ messages in thread
From: Shuah Khan @ 2012-10-26 14:58 UTC (permalink / raw)
  To: monstr
  Cc: kyungmin.park, m.szyprowski, arnd, andrzej.p, microblaze-uclinux,
	LKML, shuahkhan

On Fri, 2012-10-26 at 10:29 +0200, Michal Simek wrote:
> On 10/26/2012 01:29 AM, Shuah Khan wrote:
> > Add support for debug_dma_mapping_error() call to avoid warning from
> > debug_dma_unmap() interface when it checks for mapping error checked
> > status. Without this patch, device driver failed to check map error
> > warning is generated.
> >
> > Signed-off-by: Shuah Khan <shuah.khan@hp.com>
> > ---
> >   arch/microblaze/include/asm/dma-mapping.h |    1 +
> >   1 file changed, 1 insertion(+)
> >
> > diff --git a/arch/microblaze/include/asm/dma-mapping.h b/arch/microblaze/include/asm/dma-mapping.h
> > index 01d2282..4451c7a 100644
> > --- a/arch/microblaze/include/asm/dma-mapping.h
> > +++ b/arch/microblaze/include/asm/dma-mapping.h
> > @@ -114,6 +114,7 @@ static inline void __dma_sync(unsigned long paddr,
> >   static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
> >   {
> >   	struct dma_map_ops *ops = get_dma_ops(dev);
> 
> here should be empty line.
> 
> > +	debug_dma_mapping_error(dev, dma_addr);
> >   	if (ops->mapping_error)
> >   		return ops->mapping_error(dev, dma_addr);
> 
> Patch looks good to me. I was greping the latest mainline tree and I can't see
> reference to debug_dma_mapping_error. Can you tell me where this function
> is implemented.
> I have also seen that you have sent several similar patches like this.
> 
> If you want to add it through any other tree here is my ACK:
> 
> Acked-by: Michal Simek <monstr@monstr.eu>
> 
> I will definitely keep my eyes on it.

debug_dma_mapping_error() patch is in linux-next. I probably should send
all of these patches marked explicitly for linux-next.

Thanks,
-- Shuah



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

* [PATCH v2 linux-next] microblaze: dma-mapping: support debug_dma_mapping_error
  2012-10-26 14:58   ` Shuah Khan
@ 2012-10-26 15:53     ` Shuah Khan
  2012-11-15 17:34       ` Shuah Khan
  2012-10-26 15:57     ` [PATCH RFT] " Michal Simek
  1 sibling, 1 reply; 6+ messages in thread
From: Shuah Khan @ 2012-10-26 15:53 UTC (permalink / raw)
  To: monstr
  Cc: kyungmin.park, m.szyprowski, arnd, andrzej.p, microblaze-uclinux,
	LKML, shuahkhan

Add support for debug_dma_mapping_error() call to avoid warning from
debug_dma_unmap() interface when it checks for mapping error checked
status. Without this patch, device driver failed to check map error
warning is generated.

Signed-off-by: Shuah Khan <shuah.khan@hp.com>
Acked-by: Michal Simek <monstr@monstr.eu>
---
 arch/microblaze/include/asm/dma-mapping.h |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/microblaze/include/asm/dma-mapping.h b/arch/microblaze/include/asm/dma-mapping.h
index 01d2282..46460f1 100644
--- a/arch/microblaze/include/asm/dma-mapping.h
+++ b/arch/microblaze/include/asm/dma-mapping.h
@@ -114,6 +114,8 @@ static inline void __dma_sync(unsigned long paddr,
 static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
 {
 	struct dma_map_ops *ops = get_dma_ops(dev);
+
+	debug_dma_mapping_error(dev, dma_addr);
 	if (ops->mapping_error)
 		return ops->mapping_error(dev, dma_addr);
 
-- 
1.7.9.5




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

* Re: [PATCH RFT] microblaze: dma-mapping: support debug_dma_mapping_error
  2012-10-26 14:58   ` Shuah Khan
  2012-10-26 15:53     ` [PATCH v2 linux-next] " Shuah Khan
@ 2012-10-26 15:57     ` Michal Simek
  1 sibling, 0 replies; 6+ messages in thread
From: Michal Simek @ 2012-10-26 15:57 UTC (permalink / raw)
  To: shuah.khan
  Cc: kyungmin.park, m.szyprowski, arnd, andrzej.p, microblaze-uclinux,
	LKML, shuahkhan

On 10/26/2012 04:58 PM, Shuah Khan wrote:
> On Fri, 2012-10-26 at 10:29 +0200, Michal Simek wrote:
>> On 10/26/2012 01:29 AM, Shuah Khan wrote:
>>> Add support for debug_dma_mapping_error() call to avoid warning from
>>> debug_dma_unmap() interface when it checks for mapping error checked
>>> status. Without this patch, device driver failed to check map error
>>> warning is generated.
>>>
>>> Signed-off-by: Shuah Khan <shuah.khan@hp.com>
>>> ---
>>>    arch/microblaze/include/asm/dma-mapping.h |    1 +
>>>    1 file changed, 1 insertion(+)
>>>
>>> diff --git a/arch/microblaze/include/asm/dma-mapping.h b/arch/microblaze/include/asm/dma-mapping.h
>>> index 01d2282..4451c7a 100644
>>> --- a/arch/microblaze/include/asm/dma-mapping.h
>>> +++ b/arch/microblaze/include/asm/dma-mapping.h
>>> @@ -114,6 +114,7 @@ static inline void __dma_sync(unsigned long paddr,
>>>    static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
>>>    {
>>>    	struct dma_map_ops *ops = get_dma_ops(dev);
>>
>> here should be empty line.
>>
>>> +	debug_dma_mapping_error(dev, dma_addr);
>>>    	if (ops->mapping_error)
>>>    		return ops->mapping_error(dev, dma_addr);
>>
>> Patch looks good to me. I was greping the latest mainline tree and I can't see
>> reference to debug_dma_mapping_error. Can you tell me where this function
>> is implemented.
>> I have also seen that you have sent several similar patches like this.
>>
>> If you want to add it through any other tree here is my ACK:
>>
>> Acked-by: Michal Simek <monstr@monstr.eu>
>>
>> I will definitely keep my eyes on it.
>
> debug_dma_mapping_error() patch is in linux-next. I probably should send
> all of these patches marked explicitly for linux-next.

Ok. It means that this patch should be added to the tree which contains this
patch. You can find it out through linux-next.

What it is interesting to me is that arm tree has it there but implementation
is missing in Linus tree.

[linux-2.6.x]$ grep -rn "debug_dma_mapping_erro" arch/
arch/arm/include/asm/dma-mapping.h:94:	debug_dma_mapping_error(dev, dma_addr);

Thanks,
Michal


-- 
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian

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

* Re: [PATCH v2 linux-next] microblaze: dma-mapping: support debug_dma_mapping_error
  2012-10-26 15:53     ` [PATCH v2 linux-next] " Shuah Khan
@ 2012-11-15 17:34       ` Shuah Khan
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2012-11-15 17:34 UTC (permalink / raw)
  To: monstr, Marek Szyprowski
  Cc: kyungmin.park, m.szyprowski, arnd, andrzej.p, microblaze-uclinux,
	LKML, shuahkhan

On Fri, 2012-10-26 at 09:53 -0600, Shuah Khan wrote:
> Add support for debug_dma_mapping_error() call to avoid warning from
> debug_dma_unmap() interface when it checks for mapping error checked
> status. Without this patch, device driver failed to check map error
> warning is generated.
> 
> Signed-off-by: Shuah Khan <shuah.khan@hp.com>
> Acked-by: Michal Simek <monstr@monstr.eu>

Marek,

This is for microblaze to go through your tree.

Thanks,
-- Shuah
> ---
>  arch/microblaze/include/asm/dma-mapping.h |    2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/microblaze/include/asm/dma-mapping.h b/arch/microblaze/include/asm/dma-mapping.h
> index 01d2282..46460f1 100644
> --- a/arch/microblaze/include/asm/dma-mapping.h
> +++ b/arch/microblaze/include/asm/dma-mapping.h
> @@ -114,6 +114,8 @@ static inline void __dma_sync(unsigned long paddr,
>  static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
>  {
>  	struct dma_map_ops *ops = get_dma_ops(dev);
> +
> +	debug_dma_mapping_error(dev, dma_addr);
>  	if (ops->mapping_error)
>  		return ops->mapping_error(dev, dma_addr);
>  



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

end of thread, other threads:[~2012-11-15 17:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-25 23:29 [PATCH RFT] microblaze: dma-mapping: support debug_dma_mapping_error Shuah Khan
2012-10-26  8:29 ` Michal Simek
2012-10-26 14:58   ` Shuah Khan
2012-10-26 15:53     ` [PATCH v2 linux-next] " Shuah Khan
2012-11-15 17:34       ` Shuah Khan
2012-10-26 15:57     ` [PATCH RFT] " Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).