All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()'
@ 2021-05-16 15:00 Christophe JAILLET
  2021-05-16 15:00 ` [PATCH 2/2] misc/pvpanic: Use GFP_KERNEL instead of GFP_ATOMIC Christophe JAILLET
  2021-05-17  7:40 ` [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()' Andy Shevchenko
  0 siblings, 2 replies; 3+ messages in thread
From: Christophe JAILLET @ 2021-05-16 15:00 UTC (permalink / raw)
  To: arnd, gregkh, mihai.carabas, andriy.shevchenko, pizhenwei,
	pbonzini, bobo.shaobowang
  Cc: linux-kernel, kernel-janitors, Christophe JAILLET

There is no error handling path in the probe function.
Switch to managed resource so that errors in the probe are handled easily
and simplify the remove function accordingly.

Fixes: b3c0f8774668 ("misc/pvpanic: probe multiple instances")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 drivers/misc/pvpanic/pvpanic-mmio.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/misc/pvpanic/pvpanic-mmio.c b/drivers/misc/pvpanic/pvpanic-mmio.c
index 4c0841776087..69b31f7adf4f 100644
--- a/drivers/misc/pvpanic/pvpanic-mmio.c
+++ b/drivers/misc/pvpanic/pvpanic-mmio.c
@@ -93,7 +93,7 @@ static int pvpanic_mmio_probe(struct platform_device *pdev)
 		return -EINVAL;
 	}
 
-	pi = kmalloc(sizeof(*pi), GFP_ATOMIC);
+	pi = devm_kmalloc(dev, sizeof(*pi), GFP_ATOMIC);
 	if (!pi)
 		return -ENOMEM;
 
@@ -114,7 +114,6 @@ static int pvpanic_mmio_remove(struct platform_device *pdev)
 	struct pvpanic_instance *pi = dev_get_drvdata(&pdev->dev);
 
 	pvpanic_remove(pi);
-	kfree(pi);
 
 	return 0;
 }
-- 
2.30.2


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

* [PATCH 2/2] misc/pvpanic: Use GFP_KERNEL instead of GFP_ATOMIC
  2021-05-16 15:00 [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()' Christophe JAILLET
@ 2021-05-16 15:00 ` Christophe JAILLET
  2021-05-17  7:40 ` [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()' Andy Shevchenko
  1 sibling, 0 replies; 3+ messages in thread
From: Christophe JAILLET @ 2021-05-16 15:00 UTC (permalink / raw)
  To: arnd, gregkh, mihai.carabas, andriy.shevchenko, pizhenwei,
	pbonzini, bobo.shaobowang
  Cc: linux-kernel, kernel-janitors, Christophe JAILLET

There is no need to use GFP_ATOMIC in a probe function. Use GFP_KERNEL
instead.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
A similar patch have been sent for pvpanic-pci.c
---
 drivers/misc/pvpanic/pvpanic-mmio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/pvpanic/pvpanic-mmio.c b/drivers/misc/pvpanic/pvpanic-mmio.c
index 69b31f7adf4f..d4a407956c07 100644
--- a/drivers/misc/pvpanic/pvpanic-mmio.c
+++ b/drivers/misc/pvpanic/pvpanic-mmio.c
@@ -93,7 +93,7 @@ static int pvpanic_mmio_probe(struct platform_device *pdev)
 		return -EINVAL;
 	}
 
-	pi = devm_kmalloc(dev, sizeof(*pi), GFP_ATOMIC);
+	pi = devm_kmalloc(dev, sizeof(*pi), GFP_KERNEL);
 	if (!pi)
 		return -ENOMEM;
 
-- 
2.30.2


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

* Re: [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()'
  2021-05-16 15:00 [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()' Christophe JAILLET
  2021-05-16 15:00 ` [PATCH 2/2] misc/pvpanic: Use GFP_KERNEL instead of GFP_ATOMIC Christophe JAILLET
@ 2021-05-17  7:40 ` Andy Shevchenko
  1 sibling, 0 replies; 3+ messages in thread
From: Andy Shevchenko @ 2021-05-17  7:40 UTC (permalink / raw)
  To: Christophe JAILLET
  Cc: arnd, gregkh, mihai.carabas, pizhenwei, pbonzini,
	bobo.shaobowang, linux-kernel, kernel-janitors

On Sun, May 16, 2021 at 05:00:27PM +0200, Christophe JAILLET wrote:
> There is no error handling path in the probe function.
> Switch to managed resource so that errors in the probe are handled easily
> and simplify the remove function accordingly.

Either folded or separated, feel free to add to the result
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

> Fixes: b3c0f8774668 ("misc/pvpanic: probe multiple instances")
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> ---
>  drivers/misc/pvpanic/pvpanic-mmio.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/misc/pvpanic/pvpanic-mmio.c b/drivers/misc/pvpanic/pvpanic-mmio.c
> index 4c0841776087..69b31f7adf4f 100644
> --- a/drivers/misc/pvpanic/pvpanic-mmio.c
> +++ b/drivers/misc/pvpanic/pvpanic-mmio.c
> @@ -93,7 +93,7 @@ static int pvpanic_mmio_probe(struct platform_device *pdev)
>  		return -EINVAL;
>  	}
>  
> -	pi = kmalloc(sizeof(*pi), GFP_ATOMIC);
> +	pi = devm_kmalloc(dev, sizeof(*pi), GFP_ATOMIC);
>  	if (!pi)
>  		return -ENOMEM;
>  
> @@ -114,7 +114,6 @@ static int pvpanic_mmio_remove(struct platform_device *pdev)
>  	struct pvpanic_instance *pi = dev_get_drvdata(&pdev->dev);
>  
>  	pvpanic_remove(pi);
> -	kfree(pi);
>  
>  	return 0;
>  }
> -- 
> 2.30.2
> 

-- 
With Best Regards,
Andy Shevchenko



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

end of thread, other threads:[~2021-05-17  7:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-16 15:00 [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()' Christophe JAILLET
2021-05-16 15:00 ` [PATCH 2/2] misc/pvpanic: Use GFP_KERNEL instead of GFP_ATOMIC Christophe JAILLET
2021-05-17  7:40 ` [PATCH 1/2] misc/pvpanic: Fix error handling in 'pvpanic_mmio_probe()' Andy Shevchenko

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.