* [PATCH] Documentation/DMA-API-HOWTO.txt: update API descriptions
@ 2014-05-12 11:45 gioh.kim
2014-05-20 23:19 ` Bjorn Helgaas
0 siblings, 1 reply; 3+ messages in thread
From: gioh.kim @ 2014-05-12 11:45 UTC (permalink / raw)
To: Randy Dunlap, linux-doc, linux-kernel; +Cc: gunho.lee, gioh.kim
From: "gioh.kim" <gioh.kim@lge.com>
update descriptions for dma_pool_create and dma_pool_alloc
Signed-off-by: Gioh Kim <gioh.kim@lge.com>
---
Documentation/DMA-API-HOWTO.txt | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Documentation/DMA-API-HOWTO.txt b/Documentation/DMA-API-HOWTO.txt
index 5e98303..e4251a3 100644
--- a/Documentation/DMA-API-HOWTO.txt
+++ b/Documentation/DMA-API-HOWTO.txt
@@ -373,13 +373,13 @@ Create a dma_pool like this:
struct dma_pool *pool;
- pool = dma_pool_create(name, dev, size, align, alloc);
+ pool = dma_pool_create(name, dev, size, align, boundary);
The "name" is for diagnostics (like a kmem_cache name); dev and size
are as above. The device's hardware alignment requirement for this
type of data is "align" (which is expressed in bytes, and must be a
power of two). If your device has no boundary crossing restrictions,
-pass 0 for alloc; passing 4096 says memory allocated from this pool
+pass 0 for boundary; passing 4096 says memory allocated from this pool
must not cross 4KByte boundaries (but at that time it may be better to
go for dma_alloc_coherent directly instead).
@@ -387,8 +387,8 @@ Allocate memory from a dma pool like this:
cpu_addr = dma_pool_alloc(pool, flags, &dma_handle);
-flags are SLAB_KERNEL if blocking is permitted (not in_interrupt nor
-holding SMP locks), SLAB_ATOMIC otherwise. Like dma_alloc_coherent,
+flags are GFP_KERNEL if blocking is permitted (not in_interrupt nor
+holding SMP locks), GFP_ATOMIC otherwise. Like dma_alloc_coherent,
this returns two values, cpu_addr and dma_handle.
Free memory that was allocated from a dma_pool like this:
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Documentation/DMA-API-HOWTO.txt: update API descriptions
2014-05-12 11:45 [PATCH] Documentation/DMA-API-HOWTO.txt: update API descriptions gioh.kim
@ 2014-05-20 23:19 ` Bjorn Helgaas
2014-05-20 23:25 ` Gioh Kim
0 siblings, 1 reply; 3+ messages in thread
From: Bjorn Helgaas @ 2014-05-20 23:19 UTC (permalink / raw)
To: gioh.kim; +Cc: Randy Dunlap, linux-doc, linux-kernel, gunho.lee
On Mon, May 12, 2014 at 08:45:52PM +0900, gioh.kim wrote:
> From: "gioh.kim" <gioh.kim@lge.com>
>
> update descriptions for dma_pool_create and dma_pool_alloc
>
> Signed-off-by: Gioh Kim <gioh.kim@lge.com>
I applied this to my "dma-api" branch for v3.16, thanks!
(I fixed up the From: line as you did for the other patch.)
> ---
> Documentation/DMA-API-HOWTO.txt | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/Documentation/DMA-API-HOWTO.txt b/Documentation/DMA-API-HOWTO.txt
> index 5e98303..e4251a3 100644
> --- a/Documentation/DMA-API-HOWTO.txt
> +++ b/Documentation/DMA-API-HOWTO.txt
> @@ -373,13 +373,13 @@ Create a dma_pool like this:
>
> struct dma_pool *pool;
>
> - pool = dma_pool_create(name, dev, size, align, alloc);
> + pool = dma_pool_create(name, dev, size, align, boundary);
>
> The "name" is for diagnostics (like a kmem_cache name); dev and size
> are as above. The device's hardware alignment requirement for this
> type of data is "align" (which is expressed in bytes, and must be a
> power of two). If your device has no boundary crossing restrictions,
> -pass 0 for alloc; passing 4096 says memory allocated from this pool
> +pass 0 for boundary; passing 4096 says memory allocated from this pool
> must not cross 4KByte boundaries (but at that time it may be better to
> go for dma_alloc_coherent directly instead).
>
> @@ -387,8 +387,8 @@ Allocate memory from a dma pool like this:
>
> cpu_addr = dma_pool_alloc(pool, flags, &dma_handle);
>
> -flags are SLAB_KERNEL if blocking is permitted (not in_interrupt nor
> -holding SMP locks), SLAB_ATOMIC otherwise. Like dma_alloc_coherent,
> +flags are GFP_KERNEL if blocking is permitted (not in_interrupt nor
> +holding SMP locks), GFP_ATOMIC otherwise. Like dma_alloc_coherent,
> this returns two values, cpu_addr and dma_handle.
>
> Free memory that was allocated from a dma_pool like this:
> --
> 1.7.9.5
>
> --
> 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/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Documentation/DMA-API-HOWTO.txt: update API descriptions
2014-05-20 23:19 ` Bjorn Helgaas
@ 2014-05-20 23:25 ` Gioh Kim
0 siblings, 0 replies; 3+ messages in thread
From: Gioh Kim @ 2014-05-20 23:25 UTC (permalink / raw)
To: Bjorn Helgaas; +Cc: Randy Dunlap, linux-doc, linux-kernel, gunho.lee
I'm glad that my patch is useful.
Thank you.
2014-05-21 오전 8:19, Bjorn Helgaas 쓴 글:
> On Mon, May 12, 2014 at 08:45:52PM +0900, gioh.kim wrote:
>> From: "gioh.kim" <gioh.kim@lge.com>
>>
>> update descriptions for dma_pool_create and dma_pool_alloc
>>
>> Signed-off-by: Gioh Kim <gioh.kim@lge.com>
>
> I applied this to my "dma-api" branch for v3.16, thanks!
>
> (I fixed up the From: line as you did for the other patch.)
>
>> ---
>> Documentation/DMA-API-HOWTO.txt | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/Documentation/DMA-API-HOWTO.txt b/Documentation/DMA-API-HOWTO.txt
>> index 5e98303..e4251a3 100644
>> --- a/Documentation/DMA-API-HOWTO.txt
>> +++ b/Documentation/DMA-API-HOWTO.txt
>> @@ -373,13 +373,13 @@ Create a dma_pool like this:
>>
>> struct dma_pool *pool;
>>
>> - pool = dma_pool_create(name, dev, size, align, alloc);
>> + pool = dma_pool_create(name, dev, size, align, boundary);
>>
>> The "name" is for diagnostics (like a kmem_cache name); dev and size
>> are as above. The device's hardware alignment requirement for this
>> type of data is "align" (which is expressed in bytes, and must be a
>> power of two). If your device has no boundary crossing restrictions,
>> -pass 0 for alloc; passing 4096 says memory allocated from this pool
>> +pass 0 for boundary; passing 4096 says memory allocated from this pool
>> must not cross 4KByte boundaries (but at that time it may be better to
>> go for dma_alloc_coherent directly instead).
>>
>> @@ -387,8 +387,8 @@ Allocate memory from a dma pool like this:
>>
>> cpu_addr = dma_pool_alloc(pool, flags, &dma_handle);
>>
>> -flags are SLAB_KERNEL if blocking is permitted (not in_interrupt nor
>> -holding SMP locks), SLAB_ATOMIC otherwise. Like dma_alloc_coherent,
>> +flags are GFP_KERNEL if blocking is permitted (not in_interrupt nor
>> +holding SMP locks), GFP_ATOMIC otherwise. Like dma_alloc_coherent,
>> this returns two values, cpu_addr and dma_handle.
>>
>> Free memory that was allocated from a dma_pool like this:
>> --
>> 1.7.9.5
>>
>> --
>> 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/
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-05-20 23:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-12 11:45 [PATCH] Documentation/DMA-API-HOWTO.txt: update API descriptions gioh.kim
2014-05-20 23:19 ` Bjorn Helgaas
2014-05-20 23:25 ` Gioh Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox