diff mbox series

[4.19.y-cip,32/57] ASoC: rsnd: use ring buffer for rsnd_mod_name()

Message ID 1571295929-47286-33-git-send-email-biju.das@bp.renesas.com (mailing list archive)
State Changes Requested
Headers show
Series Audio improvements/SSIU BUSIF/ | expand

Commit Message

Biju Das Oct. 17, 2019, 7:05 a.m. UTC
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

commit 0246c661b6f0051ef7bfbfff01d8ef7fd0359372 upstream.

commit c0ea089dbad4 ("ASoC: rsnd: rsnd_mod_name() handles both name and
ID") merged "name" and "ID" on rsnd_mod_name() to handle sub-ID
(= for CTU/BUSIF).
Then, it decided to share static char to avoid pointless memory.
But, it doesn't work correctry in below case, because last called
name will be used.

	dev_xxx(dev, "%s is connected to %s\n",
		rsnd_mod_name(mod_a),  /* ssiu[00] */
		rsnd_mod_name(mod_b)); /* ssi[0]   */
	->
	rcar_sound ec500000.sound: ssi[0] is connected to ssi[0]
	                           ~~~~~~                 ~~~~~~
We still don't want to have pointless memory, so let's use ring buffer.
16byte x 5 is very enough for this purpose.

	dev_xxx(dev, "%s is connected to %s\n",
		rsnd_mod_name(mod_a),  /* ssiu[00] */
		rsnd_mod_name(mod_b)); /* ssi[0]   */
	->
	rcar_sound ec500000.sound: ssiu[00] is connected to ssi[0]
	                           ~~~~~~~~                 ~~~~~~
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 sound/soc/sh/rcar/core.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

Comments

Pavel Machek Oct. 20, 2019, 10:54 a.m. UTC | #1
On Thu 2019-10-17 08:05:04, Biju Das wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> commit 0246c661b6f0051ef7bfbfff01d8ef7fd0359372 upstream.
> 
> commit c0ea089dbad4 ("ASoC: rsnd: rsnd_mod_name() handles both name and
> ID") merged "name" and "ID" on rsnd_mod_name() to handle sub-ID
> (= for CTU/BUSIF).
> Then, it decided to share static char to avoid pointless memory.
> But, it doesn't work correctry in below case, because last called
> name will be used.
> 
> 	dev_xxx(dev, "%s is connected to %s\n",
> 		rsnd_mod_name(mod_a),  /* ssiu[00] */
> 		rsnd_mod_name(mod_b)); /* ssi[0]   */
> 	->
> 	rcar_sound ec500000.sound: ssi[0] is connected to ssi[0]
> 	                           ~~~~~~                 ~~~~~~
> We still don't want to have pointless memory, so let's use ring buffer.
> 16byte x 5 is very enough for this purpose.
> 
> 	dev_xxx(dev, "%s is connected to %s\n",
> 		rsnd_mod_name(mod_a),  /* ssiu[00] */
> 		rsnd_mod_name(mod_b)); /* ssi[0]   */
> 	->
> 	rcar_sound ec500000.sound: ssiu[00] is connected to ssi[0]
> 	                           ~~~~~~~~                 ~~~~~~

I'd really preffer caller passing pointer to buffer to be used to the
function.

Best regards,
								Pavel

> +++ b/sound/soc/sh/rcar/core.c
> @@ -137,10 +137,17 @@ struct dma_chan *rsnd_mod_dma_req(struct rsnd_dai_stream *io,
>  	return mod->ops->dma_req(io, mod);
>  }
>  
> +#define MOD_NAME_NUM   5
>  #define MOD_NAME_SIZE 16
>  char *rsnd_mod_name(struct rsnd_mod *mod)
>  {
> -	static char name[MOD_NAME_SIZE];
> +	static char names[MOD_NAME_NUM][MOD_NAME_SIZE];
> +	static int num;
> +	char *name = names[num];
> +
> +	num++;
> +	if (num >= MOD_NAME_NUM)
> +		num = 0;
>  
>  	/*
>  	 * Let's use same char to avoid pointlessness memory
Biju Das Oct. 21, 2019, 1:50 p.m. UTC | #2
+Morimoto-San,

> -----Original Message-----
> From: Pavel Machek <pavel@denx.de>
> Sent: Sunday, October 20, 2019 11:54 AM
> To: Biju Das <biju.das@bp.renesas.com>
> Cc: cip-dev@lists.cip-project.org; Nobuhiro Iwamatsu
> <nobuhiro1.iwamatsu@toshiba.co.jp>; Pavel Machek <pavel@denx.de>;
> Chris Paterson <Chris.Paterson2@renesas.com>; Fabrizio Castro
> <fabrizio.castro@bp.renesas.com>
> Subject: Re: [PATCH 4.19.y-cip 32/57] ASoC: rsnd: use ring buffer for
> rsnd_mod_name()
> 
> On Thu 2019-10-17 08:05:04, Biju Das wrote:
> > From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> >
> > commit 0246c661b6f0051ef7bfbfff01d8ef7fd0359372 upstream.
> >
> > commit c0ea089dbad4 ("ASoC: rsnd: rsnd_mod_name() handles both
> name
> > and
> > ID") merged "name" and "ID" on rsnd_mod_name() to handle sub-ID (= for
> > CTU/BUSIF).
> > Then, it decided to share static char to avoid pointless memory.
> > But, it doesn't work correctry in below case, because last called name
> > will be used.
> >
> > 	dev_xxx(dev, "%s is connected to %s\n",
> > 		rsnd_mod_name(mod_a),  /* ssiu[00] */
> > 		rsnd_mod_name(mod_b)); /* ssi[0]   */
> > 	->
> > 	rcar_sound ec500000.sound: ssi[0] is connected to ssi[0]
> > 	                           ~~~~~~                 ~~~~~~
> > We still don't want to have pointless memory, so let's use ring buffer.
> > 16byte x 5 is very enough for this purpose.
> >
> > 	dev_xxx(dev, "%s is connected to %s\n",
> > 		rsnd_mod_name(mod_a),  /* ssiu[00] */
> > 		rsnd_mod_name(mod_b)); /* ssi[0]   */
> > 	->
> > 	rcar_sound ec500000.sound: ssiu[00] is connected to ssi[0]
> > 	                           ~~~~~~~~                 ~~~~~~
> 
> I'd really preffer caller passing pointer to buffer to be used to the function.

Why???

Cheers,
Biju

> 
> > +++ b/sound/soc/sh/rcar/core.c
> > @@ -137,10 +137,17 @@ struct dma_chan *rsnd_mod_dma_req(struct
> rsnd_dai_stream *io,
> >  	return mod->ops->dma_req(io, mod);
> >  }
> >
> > +#define MOD_NAME_NUM   5
> >  #define MOD_NAME_SIZE 16
> >  char *rsnd_mod_name(struct rsnd_mod *mod)  {
> > -	static char name[MOD_NAME_SIZE];
> > +	static char names[MOD_NAME_NUM][MOD_NAME_SIZE];
> > +	static int num;
> > +	char *name = names[num];
> > +
> > +	num++;
> > +	if (num >= MOD_NAME_NUM)
> > +		num = 0;
> >
> >  	/*
> >  	 * Let's use same char to avoid pointlessness memory
> 
> --
> DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
diff mbox series

Patch

diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c
index f0c0114..2697046 100644
--- a/sound/soc/sh/rcar/core.c
+++ b/sound/soc/sh/rcar/core.c
@@ -137,10 +137,17 @@  struct dma_chan *rsnd_mod_dma_req(struct rsnd_dai_stream *io,
 	return mod->ops->dma_req(io, mod);
 }
 
+#define MOD_NAME_NUM   5
 #define MOD_NAME_SIZE 16
 char *rsnd_mod_name(struct rsnd_mod *mod)
 {
-	static char name[MOD_NAME_SIZE];
+	static char names[MOD_NAME_NUM][MOD_NAME_SIZE];
+	static int num;
+	char *name = names[num];
+
+	num++;
+	if (num >= MOD_NAME_NUM)
+		num = 0;
 
 	/*
 	 * Let's use same char to avoid pointlessness memory