All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Documentation: devres: Add devm_kmalloc() et al
@ 2014-06-23 11:28 Daniel Thompson
  2014-06-29  1:31 ` Randy Dunlap
  2014-07-03  9:05 ` [RESEND PATCH] " Daniel Thompson
  0 siblings, 2 replies; 4+ messages in thread
From: Daniel Thompson @ 2014-06-23 11:28 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Daniel Thompson, linux-kernel, patches, linaro-kernel,
	Grant Likely, Rob Herring, Joe Perches, linux-doc

Commit 64c862a83... added new alloc variants to the devres managed
API. These should be included in the list of managed API found in
devres.txt.

Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Joe Perches <joe@perches.com>
Cc: linux-doc@vger.kernel.org
---
 Documentation/driver-model/devres.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/driver-model/devres.txt b/Documentation/driver-model/devres.txt
index 1525e30..91f5633 100644
--- a/Documentation/driver-model/devres.txt
+++ b/Documentation/driver-model/devres.txt
@@ -234,7 +234,10 @@ certainly invest a bit more effort into libata core layer).
   -----------------------------
 
 MEM
+  devm_kmalloc()
   devm_kzalloc()
+  devm_kmalloc_array()
+  devm_kcalloc()
   devm_kfree()
   devm_kmemdup()
   devm_get_free_pages()
-- 
1.9.3


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

* Re: [PATCH] Documentation: devres: Add devm_kmalloc() et al
  2014-06-23 11:28 [PATCH] Documentation: devres: Add devm_kmalloc() et al Daniel Thompson
@ 2014-06-29  1:31 ` Randy Dunlap
  2014-07-01 20:55   ` Tejun Heo
  2014-07-03  9:05 ` [RESEND PATCH] " Daniel Thompson
  1 sibling, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2014-06-29  1:31 UTC (permalink / raw)
  To: Daniel Thompson
  Cc: linux-kernel, patches, linaro-kernel, Grant Likely, Rob Herring,
	Joe Perches, linux-doc, Tejun Heo

[adding Tejun Heo]

patch OK, Tejun?  You want to apply it?


On 06/23/14 04:28, Daniel Thompson wrote:
> Commit 64c862a83... added new alloc variants to the devres managed
> API. These should be included in the list of managed API found in
> devres.txt.
> 
> Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
> Cc: Randy Dunlap <rdunlap@infradead.org>
> Cc: Grant Likely <grant.likely@linaro.org>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Joe Perches <joe@perches.com>
> Cc: linux-doc@vger.kernel.org
> ---
>  Documentation/driver-model/devres.txt | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/Documentation/driver-model/devres.txt b/Documentation/driver-model/devres.txt
> index 1525e30..91f5633 100644
> --- a/Documentation/driver-model/devres.txt
> +++ b/Documentation/driver-model/devres.txt
> @@ -234,7 +234,10 @@ certainly invest a bit more effort into libata core layer).
>    -----------------------------
>  
>  MEM
> +  devm_kmalloc()
>    devm_kzalloc()
> +  devm_kmalloc_array()
> +  devm_kcalloc()
>    devm_kfree()
>    devm_kmemdup()
>    devm_get_free_pages()
> 


-- 
~Randy

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

* Re: [PATCH] Documentation: devres: Add devm_kmalloc() et al
  2014-06-29  1:31 ` Randy Dunlap
@ 2014-07-01 20:55   ` Tejun Heo
  0 siblings, 0 replies; 4+ messages in thread
From: Tejun Heo @ 2014-07-01 20:55 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Daniel Thompson, linux-kernel, patches, linaro-kernel,
	Grant Likely, Rob Herring, Joe Perches, linux-doc

On Sat, Jun 28, 2014 at 06:31:00PM -0700, Randy Dunlap wrote:
> [adding Tejun Heo]
> 
> patch OK, Tejun?  You want to apply it?

Yeah, looks good to me but it prolly should go through Greg's
driver-core-next.  Daniel, do you mind reposting it to Greg with my
ack added?

Thanks.

-- 
tejun

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

* [RESEND PATCH] Documentation: devres: Add devm_kmalloc() et al
  2014-06-23 11:28 [PATCH] Documentation: devres: Add devm_kmalloc() et al Daniel Thompson
  2014-06-29  1:31 ` Randy Dunlap
@ 2014-07-03  9:05 ` Daniel Thompson
  1 sibling, 0 replies; 4+ messages in thread
From: Daniel Thompson @ 2014-07-03  9:05 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Daniel Thompson, linux-kernel, patches, linaro-kernel, linux-doc,
	Randy Dunlap, Grant Likely, Rob Herring, Joe Perches

Commit 64c862a83... added new alloc variants to the devres managed
API. These should be included in the list of managed API found in
devres.txt.

Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Joe Perches <joe@perches.com>
Acked-by: Tejun Heo <tj@kernel.org>
---

Notes:
    Greg: Tejun acked this and suggested that it should go via
          driver-core-next.

 Documentation/driver-model/devres.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/driver-model/devres.txt b/Documentation/driver-model/devres.txt
index 1525e30..91f5633 100644
--- a/Documentation/driver-model/devres.txt
+++ b/Documentation/driver-model/devres.txt
@@ -234,7 +234,10 @@ certainly invest a bit more effort into libata core layer).
   -----------------------------
 
 MEM
+  devm_kmalloc()
   devm_kzalloc()
+  devm_kmalloc_array()
+  devm_kcalloc()
   devm_kfree()
   devm_kmemdup()
   devm_get_free_pages()
-- 
1.9.3


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

end of thread, other threads:[~2014-07-03  9:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-23 11:28 [PATCH] Documentation: devres: Add devm_kmalloc() et al Daniel Thompson
2014-06-29  1:31 ` Randy Dunlap
2014-07-01 20:55   ` Tejun Heo
2014-07-03  9:05 ` [RESEND PATCH] " Daniel Thompson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.