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


Groups > linux.kernel > #1535885 > unrolled thread

[PATCH 1/1 v2] xen: set error code on failures

Started byPan Bian <bianpan2016@163.com>
First post2016-12-05 09:30 +0100
Last post2016-12-08 08:00 +0100
Articles 3 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1 v2] xen: set error code on failures Pan Bian <bianpan2016@163.com> - 2016-12-05 09:30 +0100
    Re: [PATCH 1/1 v2] xen: set error code on failures Juergen Gross <jgross@suse.com> - 2016-12-05 10:20 +0100
    Re: [PATCH 1/1 v2] xen: set error code on failures Juergen Gross <jgross@suse.com> - 2016-12-08 08:00 +0100

#1535885 — [PATCH 1/1 v2] xen: set error code on failures

FromPan Bian <bianpan2016@163.com>
Date2016-12-05 09:30 +0100
Subject[PATCH 1/1 v2] xen: set error code on failures
Message-ID<sKWOR-2aU-1@gated-at.bofh.it>
Variable rc is reset in the loop, and its value will be non-negative
during the second and after repeat of the loop. If it fails to allocate
memory then, it may return a non-negative integer, which indicates no
error. This patch fixes the bug, assigning "-ENOMEM" to rc when
kzalloc() or alloc_page() returns NULL, and removing the initialization
of rc outside of the loop.

v1 is reviewed by: Juergen Gross <jgross@suse.com>

Signed-off-by: Pan Bian <bianpan2016@163.com>
---
 drivers/xen/gntalloc.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/xen/gntalloc.c b/drivers/xen/gntalloc.c
index 7a47c4c..1bf55a3 100644
--- a/drivers/xen/gntalloc.c
+++ b/drivers/xen/gntalloc.c
@@ -127,18 +127,21 @@ static int add_grefs(struct ioctl_gntalloc_alloc_gref *op,
 	struct gntalloc_gref *gref, *next;
 
 	readonly = !(op->flags & GNTALLOC_FLAG_WRITABLE);
-	rc = -ENOMEM;
 	for (i = 0; i < op->count; i++) {
 		gref = kzalloc(sizeof(*gref), GFP_KERNEL);
-		if (!gref)
+		if (!gref) {
+			rc = -ENOMEM;
 			goto undo;
+		}
 		list_add_tail(&gref->next_gref, &queue_gref);
 		list_add_tail(&gref->next_file, &queue_file);
 		gref->users = 1;
 		gref->file_index = op->index + i * PAGE_SIZE;
 		gref->page = alloc_page(GFP_KERNEL|__GFP_ZERO);
-		if (!gref->page)
+		if (!gref->page) {
+			rc = -ENOMEM;
 			goto undo;
+		}
 
 		/* Grant foreign access to the page. */
 		rc = gnttab_grant_foreign_access(op->domid,
-- 
1.9.1

[toc] | [next] | [standalone]


#1535906

FromJuergen Gross <jgross@suse.com>
Date2016-12-05 10:20 +0100
Message-ID<sKXBg-2G5-13@gated-at.bofh.it>
In reply to#1535885
On 05/12/16 09:23, Pan Bian wrote:
> Variable rc is reset in the loop, and its value will be non-negative
> during the second and after repeat of the loop. If it fails to allocate
> memory then, it may return a non-negative integer, which indicates no
> error. This patch fixes the bug, assigning "-ENOMEM" to rc when
> kzalloc() or alloc_page() returns NULL, and removing the initialization
> of rc outside of the loop.
> 
> v1 is reviewed by: Juergen Gross <jgross@suse.com>

Not being a real problem in this case I prefer spelling out explicit
"Acked-by:" or "Reviewed-by:" tags myself.

So for this version you can have:

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


Juergen

> 
> Signed-off-by: Pan Bian <bianpan2016@163.com>
> ---
>  drivers/xen/gntalloc.c | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/xen/gntalloc.c b/drivers/xen/gntalloc.c
> index 7a47c4c..1bf55a3 100644
> --- a/drivers/xen/gntalloc.c
> +++ b/drivers/xen/gntalloc.c
> @@ -127,18 +127,21 @@ static int add_grefs(struct ioctl_gntalloc_alloc_gref *op,
>  	struct gntalloc_gref *gref, *next;
>  
>  	readonly = !(op->flags & GNTALLOC_FLAG_WRITABLE);
> -	rc = -ENOMEM;
>  	for (i = 0; i < op->count; i++) {
>  		gref = kzalloc(sizeof(*gref), GFP_KERNEL);
> -		if (!gref)
> +		if (!gref) {
> +			rc = -ENOMEM;
>  			goto undo;
> +		}
>  		list_add_tail(&gref->next_gref, &queue_gref);
>  		list_add_tail(&gref->next_file, &queue_file);
>  		gref->users = 1;
>  		gref->file_index = op->index + i * PAGE_SIZE;
>  		gref->page = alloc_page(GFP_KERNEL|__GFP_ZERO);
> -		if (!gref->page)
> +		if (!gref->page) {
> +			rc = -ENOMEM;
>  			goto undo;
> +		}
>  
>  		/* Grant foreign access to the page. */
>  		rc = gnttab_grant_foreign_access(op->domid,
> 

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


#1538341

FromJuergen Gross <jgross@suse.com>
Date2016-12-08 08:00 +0100
Message-ID<sM0Qq-2Lg-17@gated-at.bofh.it>
In reply to#1535885
On 05/12/16 09:23, Pan Bian wrote:
> Variable rc is reset in the loop, and its value will be non-negative
> during the second and after repeat of the loop. If it fails to allocate
> memory then, it may return a non-negative integer, which indicates no
> error. This patch fixes the bug, assigning "-ENOMEM" to rc when
> kzalloc() or alloc_page() returns NULL, and removing the initialization
> of rc outside of the loop.
> 
> v1 is reviewed by: Juergen Gross <jgross@suse.com>
> 
> Signed-off-by: Pan Bian <bianpan2016@163.com>

Commited to xen/tip.git for-linus-4.10


Juergen

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web