* [PATCH] s390: char: Free memory on error path.
@ 2015-01-19 22:02 Christophe Jaillet
2015-01-19 22:06 ` Christophe JAILLET
2015-01-20 10:30 ` Heiko Carstens
0 siblings, 2 replies; 3+ messages in thread
From: Christophe Jaillet @ 2015-01-19 22:02 UTC (permalink / raw)
To: schwidefsky, heiko.carstens, rhoppe, linux390
Cc: linux-s390, linux-kernel, kernel-janitors, Christophe Jaillet
Free allocated page in case of error returned by hmcdrv_ftp_startup.
Signed-off-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
---
drivers/s390/char/hmcdrv_ftp.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/s390/char/hmcdrv_ftp.c b/drivers/s390/char/hmcdrv_ftp.c
index 4bd6332..f6e00af 100644
--- a/drivers/s390/char/hmcdrv_ftp.c
+++ b/drivers/s390/char/hmcdrv_ftp.c
@@ -199,8 +199,10 @@ int hmcdrv_ftp_probe(void)
rc = hmcdrv_ftp_startup();
- if (rc)
+ if (rc) {
+ free_page((unsigned long) ftp.buf);
return rc;
+ }
rc = hmcdrv_ftp_do(&ftp);
free_page((unsigned long) ftp.buf);
--
2.1.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] s390: char: Free memory on error path.
2015-01-19 22:02 [PATCH] s390: char: Free memory on error path Christophe Jaillet
@ 2015-01-19 22:06 ` Christophe JAILLET
2015-01-20 10:30 ` Heiko Carstens
1 sibling, 0 replies; 3+ messages in thread
From: Christophe JAILLET @ 2015-01-19 22:06 UTC (permalink / raw)
To: kernel-janitors
Hi there,
this is my first patch, so feel free to show me anything I did wrong, so
that I can improve next proposals.
Thanks in advance.
CJ
Le 19/01/2015 23:02, Christophe Jaillet a écrit :
> Free allocated page in case of error returned by hmcdrv_ftp_startup.
>
> Signed-off-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
> ---
> drivers/s390/char/hmcdrv_ftp.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/s390/char/hmcdrv_ftp.c b/drivers/s390/char/hmcdrv_ftp.c
> index 4bd6332..f6e00af 100644
> --- a/drivers/s390/char/hmcdrv_ftp.c
> +++ b/drivers/s390/char/hmcdrv_ftp.c
> @@ -199,8 +199,10 @@ int hmcdrv_ftp_probe(void)
>
> rc = hmcdrv_ftp_startup();
>
> - if (rc)
> + if (rc) {
> + free_page((unsigned long) ftp.buf);
> return rc;
> + }
>
> rc = hmcdrv_ftp_do(&ftp);
> free_page((unsigned long) ftp.buf);
--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] s390: char: Free memory on error path.
2015-01-19 22:02 [PATCH] s390: char: Free memory on error path Christophe Jaillet
2015-01-19 22:06 ` Christophe JAILLET
@ 2015-01-20 10:30 ` Heiko Carstens
1 sibling, 0 replies; 3+ messages in thread
From: Heiko Carstens @ 2015-01-20 10:30 UTC (permalink / raw)
To: Christophe Jaillet
Cc: schwidefsky, rhoppe, linux390, linux-s390, linux-kernel,
kernel-janitors
On Mon, Jan 19, 2015 at 11:02:00PM +0100, Christophe Jaillet wrote:
> Free allocated page in case of error returned by hmcdrv_ftp_startup.
>
> Signed-off-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
Thanks, I applied the version below.
From e38409df9fdbe8b4667cc2ee0e44ff5825ed7049 Mon Sep 17 00:00:00 2001
From: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
Date: Mon, 19 Jan 2015 23:02:00 +0100
Subject: [PATCH] s390/hmcdrv: free memory on error path
Free allocated page in case of error returned by hmcdrv_ftp_startup.
[heiko.carstens@de.ibm.com]: slightly changed Christophe's patch
Signed-off-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
---
drivers/s390/char/hmcdrv_ftp.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/s390/char/hmcdrv_ftp.c b/drivers/s390/char/hmcdrv_ftp.c
index 4bd63322fc29..d4b61d9088fb 100644
--- a/drivers/s390/char/hmcdrv_ftp.c
+++ b/drivers/s390/char/hmcdrv_ftp.c
@@ -200,10 +200,9 @@ int hmcdrv_ftp_probe(void)
rc = hmcdrv_ftp_startup();
if (rc)
- return rc;
+ goto out;
rc = hmcdrv_ftp_do(&ftp);
- free_page((unsigned long) ftp.buf);
hmcdrv_ftp_shutdown();
switch (rc) {
@@ -216,7 +215,8 @@ int hmcdrv_ftp_probe(void)
rc = 0; /* clear length (success) */
break;
} /* switch */
-
+out:
+ free_page((unsigned long) ftp.buf);
return rc;
}
EXPORT_SYMBOL(hmcdrv_ftp_probe);
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-20 10:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-19 22:02 [PATCH] s390: char: Free memory on error path Christophe Jaillet
2015-01-19 22:06 ` Christophe JAILLET
2015-01-20 10:30 ` Heiko Carstens
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).