Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1470086 > unrolled thread

[PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc()

Started bySF Markus Elfring <elfring@users.sourceforge.net>
First post2016-08-25 13:40 +0200
Last post2016-08-26 11:50 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-08-25 13:40 +0200
    Re: [PATCH] xen/grant-table: Use kmalloc_array() in  arch_gnttab_valloc() Juergen Gross <jgross@suse.com> - 2016-08-25 14:10 +0200
    Re: [Xen-devel] [PATCH] xen/grant-table: Use kmalloc_array() in  arch_gnttab_valloc() David Vrabel <david.vrabel@citrix.com> - 2016-08-26 11:50 +0200

#1470086 — [PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2016-08-25 13:40 +0200
Subject[PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc()
Message-ID<sa1aO-nw-19@gated-at.bofh.it>
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 25 Aug 2016 13:23:06 +0200

* A multiplication for the size determination of a memory allocation
  indicated that an array data structure should be processed.
  Thus reuse the corresponding function "kmalloc_array".

  This issue was detected by using the Coccinelle software.

* Replace the specification of a data type by a pointer dereference
  to make the corresponding size determination a bit safer according to
  the Linux coding style convention.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 arch/x86/xen/grant-table.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/xen/grant-table.c b/arch/x86/xen/grant-table.c
index de4144c..809b6c8 100644
--- a/arch/x86/xen/grant-table.c
+++ b/arch/x86/xen/grant-table.c
@@ -89,7 +89,7 @@ void arch_gnttab_unmap(void *shared, unsigned long nr_gframes)
 
 static int arch_gnttab_valloc(struct gnttab_vm_area *area, unsigned nr_frames)
 {
-	area->ptes = kmalloc(sizeof(pte_t *) * nr_frames, GFP_KERNEL);
+	area->ptes = kmalloc_array(nr_frames, sizeof(*area->ptes), GFP_KERNEL);
 	if (area->ptes == NULL)
 		return -ENOMEM;
 
-- 
2.9.3

[toc] | [next] | [standalone]


#1470100 — Re: [PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc()

FromJuergen Gross <jgross@suse.com>
Date2016-08-25 14:10 +0200
SubjectRe: [PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc()
Message-ID<sa1DQ-Mw-31@gated-at.bofh.it>
In reply to#1470086
On 25/08/16 13:30, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Thu, 25 Aug 2016 13:23:06 +0200
> 
> * A multiplication for the size determination of a memory allocation
>   indicated that an array data structure should be processed.
>   Thus reuse the corresponding function "kmalloc_array".
> 
>   This issue was detected by using the Coccinelle software.
> 
> * Replace the specification of a data type by a pointer dereference
>   to make the corresponding size determination a bit safer according to
>   the Linux coding style convention.
> 
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen

[toc] | [prev] | [next] | [standalone]


#1470634 — Re: [Xen-devel] [PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc()

FromDavid Vrabel <david.vrabel@citrix.com>
Date2016-08-26 11:50 +0200
SubjectRe: [Xen-devel] [PATCH] xen/grant-table: Use kmalloc_array() in arch_gnttab_valloc()
Message-ID<salVU-5e5-17@gated-at.bofh.it>
In reply to#1470086
On 25/08/16 12:30, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Thu, 25 Aug 2016 13:23:06 +0200
> 
> * A multiplication for the size determination of a memory allocation
>   indicated that an array data structure should be processed.
>   Thus reuse the corresponding function "kmalloc_array".
> 
>   This issue was detected by using the Coccinelle software.
> 
> * Replace the specification of a data type by a pointer dereference
>   to make the corresponding size determination a bit safer according to
>   the Linux coding style convention.

Applied to for-linus-4.9, thanks.

David

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web