linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] ASoC: Handle return value of devm_kasprintf
@ 2017-09-20 10:06 Arvind Yadav
  2017-09-20 10:06 ` [PATCH 1/3] ASoC: davinci-mcasp: " Arvind Yadav
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Arvind Yadav @ 2017-09-20 10:06 UTC (permalink / raw)
  To: lgirdwood, broonie, perex, tiwai, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, peter.ujfalusi, alsa-devel, linux-kernel
  Cc: linuxppc-dev, linux-omap

devm_kasprintf() can fail here and we must check its return value.

Arvind Yadav (3):
  [PATCH 1/3] ASoC: davinci-mcasp: Handle return value of devm_kasprintf
  [PATCH 2/3] ASoC: fsl-asoc-card: Handle return value of devm_kasprintf
  [PATCH 3/3] ASoC: omap-hdmi-audio: Handle return value of devm_kasprintf

 sound/soc/davinci/davinci-mcasp.c | 12 ++++++++++++
 sound/soc/fsl/fsl-asoc-card.c     |  2 ++
 sound/soc/omap/omap-hdmi-audio.c  |  3 +++
 3 files changed, 17 insertions(+)

-- 
1.9.1

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

* [PATCH 1/3] ASoC: davinci-mcasp: Handle return value of devm_kasprintf
  2017-09-20 10:06 [PATCH 0/3] ASoC: Handle return value of devm_kasprintf Arvind Yadav
@ 2017-09-20 10:06 ` Arvind Yadav
  2017-09-21 11:11   ` Peter Ujfalusi
  2017-09-21 15:55   ` Applied "ASoC: davinci-mcasp: Handle return value of devm_kasprintf" to the asoc tree Mark Brown
  2017-09-20 10:06 ` [PATCH 2/3] ASoC: fsl-asoc-card: Handle return value of devm_kasprintf Arvind Yadav
  2017-09-20 10:06 ` [PATCH 3/3] ASoC: omap-hdmi-audio: " Arvind Yadav
  2 siblings, 2 replies; 7+ messages in thread
From: Arvind Yadav @ 2017-09-20 10:06 UTC (permalink / raw)
  To: lgirdwood, broonie, perex, tiwai, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, peter.ujfalusi, alsa-devel, linux-kernel
  Cc: linuxppc-dev, linux-omap

devm_kasprintf() can fail here and we must check its return value.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 sound/soc/davinci/davinci-mcasp.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
index f395bbc..d1a4aa2 100644
--- a/sound/soc/davinci/davinci-mcasp.c
+++ b/sound/soc/davinci/davinci-mcasp.c
@@ -1867,6 +1867,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
 	if (irq >= 0) {
 		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_common",
 					  dev_name(&pdev->dev));
+		if (!irq_name) {
+			ret = -ENOMEM;
+			goto err;
+		}
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						davinci_mcasp_common_irq_handler,
 						IRQF_ONESHOT | IRQF_SHARED,
@@ -1884,6 +1888,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
 	if (irq >= 0) {
 		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_rx",
 					  dev_name(&pdev->dev));
+		if (!irq_name) {
+			ret = -ENOMEM;
+			goto err;
+		}
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						davinci_mcasp_rx_irq_handler,
 						IRQF_ONESHOT, irq_name, mcasp);
@@ -1899,6 +1907,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
 	if (irq >= 0) {
 		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_tx",
 					  dev_name(&pdev->dev));
+		if (!irq_name) {
+			ret = -ENOMEM;
+			goto err;
+		}
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						davinci_mcasp_tx_irq_handler,
 						IRQF_ONESHOT, irq_name, mcasp);
-- 
1.9.1

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

* [PATCH 2/3] ASoC: fsl-asoc-card: Handle return value of devm_kasprintf
  2017-09-20 10:06 [PATCH 0/3] ASoC: Handle return value of devm_kasprintf Arvind Yadav
  2017-09-20 10:06 ` [PATCH 1/3] ASoC: davinci-mcasp: " Arvind Yadav
@ 2017-09-20 10:06 ` Arvind Yadav
  2017-09-20 10:06 ` [PATCH 3/3] ASoC: omap-hdmi-audio: " Arvind Yadav
  2 siblings, 0 replies; 7+ messages in thread
From: Arvind Yadav @ 2017-09-20 10:06 UTC (permalink / raw)
  To: lgirdwood, broonie, perex, tiwai, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, peter.ujfalusi, alsa-devel, linux-kernel
  Cc: linuxppc-dev, linux-omap

devm_kasprintf() can fail here and we must check its return value.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 sound/soc/fsl/fsl-asoc-card.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/soc/fsl/fsl-asoc-card.c b/sound/soc/fsl/fsl-asoc-card.c
index 2db4d0c..86f240b 100644
--- a/sound/soc/fsl/fsl-asoc-card.c
+++ b/sound/soc/fsl/fsl-asoc-card.c
@@ -639,6 +639,8 @@ static int fsl_asoc_card_probe(struct platform_device *pdev)
 				devm_kasprintf(&pdev->dev, GFP_KERNEL,
 					       "ac97-codec.%u",
 					       (unsigned int)idx);
+		if (!priv->dai_link[0].codec_name)
+			goto asrc_fail;
 	}
 
 	priv->dai_link[0].platform_of_node = cpu_np;
-- 
1.9.1

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

* [PATCH 3/3] ASoC: omap-hdmi-audio: Handle return value of devm_kasprintf
  2017-09-20 10:06 [PATCH 0/3] ASoC: Handle return value of devm_kasprintf Arvind Yadav
  2017-09-20 10:06 ` [PATCH 1/3] ASoC: davinci-mcasp: " Arvind Yadav
  2017-09-20 10:06 ` [PATCH 2/3] ASoC: fsl-asoc-card: Handle return value of devm_kasprintf Arvind Yadav
@ 2017-09-20 10:06 ` Arvind Yadav
  2017-09-21 15:55   ` Applied "ASoC: omap-hdmi-audio: Handle return value of devm_kasprintf" to the asoc tree Mark Brown
  2 siblings, 1 reply; 7+ messages in thread
From: Arvind Yadav @ 2017-09-20 10:06 UTC (permalink / raw)
  To: lgirdwood, broonie, perex, tiwai, timur, nicoleotsuka, Xiubo.Lee,
	fabio.estevam, peter.ujfalusi, alsa-devel, linux-kernel
  Cc: linuxppc-dev, linux-omap

devm_kasprintf() can fail here and we must check its return value.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 sound/soc/omap/omap-hdmi-audio.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sound/soc/omap/omap-hdmi-audio.c b/sound/soc/omap/omap-hdmi-audio.c
index 3e9cc48..8eeac7c 100644
--- a/sound/soc/omap/omap-hdmi-audio.c
+++ b/sound/soc/omap/omap-hdmi-audio.c
@@ -362,6 +362,9 @@ static int omap_hdmi_audio_probe(struct platform_device *pdev)
 
 	card->name = devm_kasprintf(dev, GFP_KERNEL,
 				    "HDMI %s", dev_name(ad->dssdev));
+	if (!card->name)
+		return -ENOMEM;
+
 	card->owner = THIS_MODULE;
 	card->dai_link =
 		devm_kzalloc(dev, sizeof(*(card->dai_link)), GFP_KERNEL);
-- 
1.9.1

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

* Re: [PATCH 1/3] ASoC: davinci-mcasp: Handle return value of devm_kasprintf
  2017-09-20 10:06 ` [PATCH 1/3] ASoC: davinci-mcasp: " Arvind Yadav
@ 2017-09-21 11:11   ` Peter Ujfalusi
  2017-09-21 15:55   ` Applied "ASoC: davinci-mcasp: Handle return value of devm_kasprintf" to the asoc tree Mark Brown
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Ujfalusi @ 2017-09-21 11:11 UTC (permalink / raw)
  To: Arvind Yadav, lgirdwood, broonie, perex, tiwai, timur,
	nicoleotsuka, Xiubo.Lee, fabio.estevam, alsa-devel, linux-kernel
  Cc: linuxppc-dev, linux-omap


Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

On 2017-09-20 13:06, Arvind Yadav wrote:
> devm_kasprintf() can fail here and we must check its return value.

Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>

> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
> ---
>  sound/soc/davinci/davinci-mcasp.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
> index f395bbc..d1a4aa2 100644
> --- a/sound/soc/davinci/davinci-mcasp.c
> +++ b/sound/soc/davinci/davinci-mcasp.c
> @@ -1867,6 +1867,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
>  	if (irq >= 0) {
>  		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_common",
>  					  dev_name(&pdev->dev));
> +		if (!irq_name) {
> +			ret = -ENOMEM;
> +			goto err;
> +		}
>  		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
>  						davinci_mcasp_common_irq_handler,
>  						IRQF_ONESHOT | IRQF_SHARED,
> @@ -1884,6 +1888,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
>  	if (irq >= 0) {
>  		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_rx",
>  					  dev_name(&pdev->dev));
> +		if (!irq_name) {
> +			ret = -ENOMEM;
> +			goto err;
> +		}
>  		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
>  						davinci_mcasp_rx_irq_handler,
>  						IRQF_ONESHOT, irq_name, mcasp);
> @@ -1899,6 +1907,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
>  	if (irq >= 0) {
>  		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_tx",
>  					  dev_name(&pdev->dev));
> +		if (!irq_name) {
> +			ret = -ENOMEM;
> +			goto err;
> +		}
>  		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
>  						davinci_mcasp_tx_irq_handler,
>  						IRQF_ONESHOT, irq_name, mcasp);
> 

- Péter

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

* Applied "ASoC: omap-hdmi-audio: Handle return value of devm_kasprintf" to the asoc tree
  2017-09-20 10:06 ` [PATCH 3/3] ASoC: omap-hdmi-audio: " Arvind Yadav
@ 2017-09-21 15:55   ` Mark Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2017-09-21 15:55 UTC (permalink / raw)
  To: Arvind Yadav
  Cc: Mark Brown, lgirdwood, broonie, perex, tiwai, timur,
	nicoleotsuka, Xiubo.Lee, fabio.estevam, peter.ujfalusi,
	alsa-devel, linux-kernel, linux-omap, linuxppc-dev, alsa-devel

The patch

   ASoC: omap-hdmi-audio: Handle return value of devm_kasprintf

has been applied to the asoc tree at

   git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

>From 94a6a8e8b57a8ece33b97a6dfc5f7eae61ff96f8 Mon Sep 17 00:00:00 2001
From: Arvind Yadav <arvind.yadav.cs@gmail.com>
Date: Wed, 20 Sep 2017 15:36:11 +0530
Subject: [PATCH] ASoC: omap-hdmi-audio: Handle return value of devm_kasprintf

devm_kasprintf() can fail here and we must check its return value.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/omap/omap-hdmi-audio.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sound/soc/omap/omap-hdmi-audio.c b/sound/soc/omap/omap-hdmi-audio.c
index 3e9cc4842a1d..8eeac7cab1c1 100644
--- a/sound/soc/omap/omap-hdmi-audio.c
+++ b/sound/soc/omap/omap-hdmi-audio.c
@@ -362,6 +362,9 @@ static int omap_hdmi_audio_probe(struct platform_device *pdev)
 
 	card->name = devm_kasprintf(dev, GFP_KERNEL,
 				    "HDMI %s", dev_name(ad->dssdev));
+	if (!card->name)
+		return -ENOMEM;
+
 	card->owner = THIS_MODULE;
 	card->dai_link =
 		devm_kzalloc(dev, sizeof(*(card->dai_link)), GFP_KERNEL);
-- 
2.14.1

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

* Applied "ASoC: davinci-mcasp: Handle return value of devm_kasprintf" to the asoc tree
  2017-09-20 10:06 ` [PATCH 1/3] ASoC: davinci-mcasp: " Arvind Yadav
  2017-09-21 11:11   ` Peter Ujfalusi
@ 2017-09-21 15:55   ` Mark Brown
  1 sibling, 0 replies; 7+ messages in thread
From: Mark Brown @ 2017-09-21 15:55 UTC (permalink / raw)
  To: Arvind Yadav
  Cc: Peter Ujfalusi, Mark Brown, lgirdwood, broonie, perex, tiwai,
	timur, nicoleotsuka, Xiubo.Lee, fabio.estevam, peter.ujfalusi,
	alsa-devel, linux-kernel, linux-omap, linuxppc-dev, alsa-devel

The patch

   ASoC: davinci-mcasp: Handle return value of devm_kasprintf

has been applied to the asoc tree at

   git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

>From 0c8b794c4a10aaf7ac0d4a49be2b2638e2038adb Mon Sep 17 00:00:00 2001
From: Arvind Yadav <arvind.yadav.cs@gmail.com>
Date: Wed, 20 Sep 2017 15:36:09 +0530
Subject: [PATCH] ASoC: davinci-mcasp: Handle return value of devm_kasprintf

devm_kasprintf() can fail here and we must check its return value.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/davinci/davinci-mcasp.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
index 40be08cecea4..804c6f2bcf21 100644
--- a/sound/soc/davinci/davinci-mcasp.c
+++ b/sound/soc/davinci/davinci-mcasp.c
@@ -1868,6 +1868,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
 	if (irq >= 0) {
 		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_common",
 					  dev_name(&pdev->dev));
+		if (!irq_name) {
+			ret = -ENOMEM;
+			goto err;
+		}
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						davinci_mcasp_common_irq_handler,
 						IRQF_ONESHOT | IRQF_SHARED,
@@ -1885,6 +1889,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
 	if (irq >= 0) {
 		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_rx",
 					  dev_name(&pdev->dev));
+		if (!irq_name) {
+			ret = -ENOMEM;
+			goto err;
+		}
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						davinci_mcasp_rx_irq_handler,
 						IRQF_ONESHOT, irq_name, mcasp);
@@ -1900,6 +1908,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev)
 	if (irq >= 0) {
 		irq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s_tx",
 					  dev_name(&pdev->dev));
+		if (!irq_name) {
+			ret = -ENOMEM;
+			goto err;
+		}
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						davinci_mcasp_tx_irq_handler,
 						IRQF_ONESHOT, irq_name, mcasp);
-- 
2.14.1

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

end of thread, other threads:[~2017-09-21 15:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-20 10:06 [PATCH 0/3] ASoC: Handle return value of devm_kasprintf Arvind Yadav
2017-09-20 10:06 ` [PATCH 1/3] ASoC: davinci-mcasp: " Arvind Yadav
2017-09-21 11:11   ` Peter Ujfalusi
2017-09-21 15:55   ` Applied "ASoC: davinci-mcasp: Handle return value of devm_kasprintf" to the asoc tree Mark Brown
2017-09-20 10:06 ` [PATCH 2/3] ASoC: fsl-asoc-card: Handle return value of devm_kasprintf Arvind Yadav
2017-09-20 10:06 ` [PATCH 3/3] ASoC: omap-hdmi-audio: " Arvind Yadav
2017-09-21 15:55   ` Applied "ASoC: omap-hdmi-audio: Handle return value of devm_kasprintf" to the asoc tree Mark Brown

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).