From: "Amadeusz Sławiński" <amadeuszx.slawinski@linux.intel.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>,
Mark Brown <broonie@kernel.org>
Subject: Re: [PATCH v2 114/146] ASoC: soc-topology: use modern dai_link style
Date: Thu, 6 Jun 2019 15:17:47 +0200 [thread overview]
Message-ID: <20190606151747.343ddd4c@xxx> (raw)
In-Reply-To: <87v9xjfjgo.wl-kuninori.morimoto.gx@renesas.com>
On 06 Jun 2019 13:19:14 +0900
Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
>
> ASoC is now supporting modern style dai_link
> (= snd_soc_dai_link_component) for CPU/Codec/Platform.
> This patch switches to use it.
>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> ---
> sound/soc/soc-topology.c | 22 ++++++++++++++++------
> 1 file changed, 16 insertions(+), 6 deletions(-)
>
> diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c
> index 3299ebb..f485f7f 100644
> --- a/sound/soc/soc-topology.c
> +++ b/sound/soc/soc-topology.c
> @@ -560,7 +560,7 @@ static void remove_link(struct snd_soc_component
> *comp,
> kfree(link->name);
> kfree(link->stream_name);
> - kfree(link->cpu_dai_name);
> + kfree(link->cpus->dai_name);
>
> list_del(&dobj->list);
> snd_soc_remove_dai_link(comp->card, link);
> @@ -1879,12 +1879,22 @@ static int soc_tplg_fe_link_create(struct
> soc_tplg *tplg, struct snd_soc_tplg_pcm *pcm)
> {
> struct snd_soc_dai_link *link;
> + struct snd_soc_dai_link_component *dlc;
> int ret;
>
> - link = kzalloc(sizeof(struct snd_soc_dai_link), GFP_KERNEL);
> + /* link + cpu + codec */
> + link = kzalloc(sizeof(*link) + (2 * sizeof(*dlc)),
> GFP_KERNEL); if (link == NULL)
> return -ENOMEM;
>
> + dlc = (struct snd_soc_dai_link_component *)(link + 1);
> +
> + link->cpus = &dlc[0];
> + link->codecs = &dlc[1];
While I understand what is going on here, I find this bit ugly.
Can it perhaps be changed to something like:
link = kzalloc(sizeof(*link), GFP_KERNEL);
if (link == NULL)
return -ENOMEM;
link->cpus = kzalloc(sizeof(*dlc), GFP_KERNEL);
if (link->cpus == NULL) {
ret = -ENOMEM;
goto err;
}
link->codecs = kzalloc(sizeof(*dlc), GFP_KERNEL);
if (link->cpus == NULL) {
ret = -ENOMEM;
goto err;
}
(...)
err:
kfree(link->cpus);
kfree(link);
return ret;
While it has a bit more of boiler plate it's easier to follow.
And while I look at soc_tplg_fe_link_create() it could use some
more memory checks, but it's a topic for separate patch.
> +
> + link->num_cpus = 1;
> + link->num_codecs = 1;
> +
> if (strlen(pcm->pcm_name)) {
> link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
> link->stream_name = kstrdup(pcm->pcm_name,
> GFP_KERNEL); @@ -1892,10 +1902,10 @@ static int
> soc_tplg_fe_link_create(struct soc_tplg *tplg, link->id =
> le32_to_cpu(pcm->pcm_id);
> if (strlen(pcm->dai_name))
> - link->cpu_dai_name = kstrdup(pcm->dai_name,
> GFP_KERNEL);
> + link->cpus->dai_name = kstrdup(pcm->dai_name,
> GFP_KERNEL);
> - link->codec_name = "snd-soc-dummy";
> - link->codec_dai_name = "snd-soc-dummy-dai";
> + link->codecs->name = "snd-soc-dummy";
> + link->codecs->dai_name = "snd-soc-dummy-dai";
>
> /* enable DPCM */
> link->dynamic = 1;
> @@ -1912,7 +1922,7 @@ static int soc_tplg_fe_link_create(struct
> soc_tplg *tplg, dev_err(tplg->comp->dev, "ASoC: FE link loading
> failed\n"); kfree(link->name);
> kfree(link->stream_name);
> - kfree(link->cpu_dai_name);
> + kfree(link->cpus->dai_name);
> kfree(link);
> return ret;
> }
next prev parent reply other threads:[~2019-06-06 13:14 UTC|newest]
Thread overview: 318+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-06 4:06 [PATCH v2 000/146] ASoC: modern dai_link style support Kuninori Morimoto
2019-06-06 4:07 ` [PATCH v2 001/146] ASoC: soc-core: use snd_soc_dai_link_component for CPU Kuninori Morimoto
2019-06-06 18:15 ` Rojewski, Cezary
2019-06-06 21:27 ` Applied "ASoC: soc-core: use snd_soc_dai_link_component for CPU" to the asoc tree Mark Brown
2019-06-06 4:07 ` [PATCH v2 002/146] ASoC: simple-card: support snd_soc_dai_link_component style for cpu Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: simple-card: support snd_soc_dai_link_component style for cpu" to the asoc tree Mark Brown
2019-06-06 4:07 ` [PATCH v2 003/146] ASoC: soc.h: add sound dai_link connection macro Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: soc.h: add sound dai_link connection macro" to the asoc tree Mark Brown
2019-06-06 4:07 ` [PATCH v2 004/146] ASoC: mediatek: mt6797-mt6351: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt6797-mt6351: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:07 ` [PATCH v2 005/146] ASoC: mediatek: mt2701-wm8960: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt2701-wm8960: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 006/146] ASoC: mediatek: mt2701-cs42448: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt2701-cs42448: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 007/146] ASoC: mediatek: mt8173-max98090: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt8173-max98090: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 008/146] ASoC: mediatek: mt8173-rt5650: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt8173-rt5650: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 009/146] ASoC: mediatek: mt8173-rt5650-rt5676: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt8173-rt5650-rt5676: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 010/146] ASoC: mediatek: mt8173-rt5650-rt5514: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt8173-rt5650-rt5514: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 011/146] ASoC: mediatek: mt8183-da7219-max98357: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt8183-da7219-max98357: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 012/146] ASoC: mediatek: mt8183-mt6358-ts3a227-max98357: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: mediatek: mt8183-mt6358-ts3a227-max98357: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:08 ` [PATCH v2 013/146] ASoC: samsung: bells: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: bells: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 014/146] ASoC: samsung: smdk_wm8580: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: smdk_wm8580: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 015/146] ASoC: samsung: smdk_wm8994: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: smdk_wm8994: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 016/146] ASoC: samsung: smdk_wm8994pcm: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: smdk_wm8994pcm: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 017/146] ASoC: samsung: smdk_spdif: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: smdk_spdif: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 018/146] ASoC: samsung: h1940_uda1380: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: h1940_uda1380: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 019/146] ASoC: samsung: arndale_rt5631: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: arndale_rt5631: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 020/146] ASoC: samsung: tobermory: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: tobermory: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 021/146] ASoC: samsung: tm2_wm5110: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: tm2_wm5110: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 022/146] ASoC: samsung: speyside: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: speyside: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:09 ` [PATCH v2 023/146] ASoC: samsung: snow: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: snow: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 024/146] ASoC: samsung: smartq_wm8987: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: smartq_wm8987: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 025/146] ASoC: samsung: s3c24xx_uda134x: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: s3c24xx_uda134x: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 026/146] ASoC: samsung: s3c24xx_simtec_tlv320aic23: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: s3c24xx_simtec_tlv320aic23: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 027/146] ASoC: samsung: s3c24xx_simtec_hermes: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: s3c24xx_simtec_hermes: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 028/146] ASoC: samsung: rx1950_uda1380: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: rx1950_uda1380: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 029/146] ASoC: samsung: odroid: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: odroid: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 030/146] ASoC: samsung: neo1973_wm8753: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: neo1973_wm8753: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 031/146] ASoC: samsung: lowland: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: lowland: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 032/146] ASoC: samsung: littlemill: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: littlemill: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 033/146] ASoC: samsung: jive_wm8750: use modern dai_link style Kuninori Morimoto
2019-06-06 21:27 ` Applied "ASoC: samsung: jive_wm8750: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 034/146] ASoC: pxa: brownstone: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: brownstone: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:10 ` [PATCH v2 035/146] ASoC: pxa: corgi: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: corgi: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 036/146] ASoC: pxa: e740_wm9705: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: e740_wm9705: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 037/146] ASoC: pxa: e750_wm9705: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: e750_wm9705: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 038/146] ASoC: pxa: e800_wm9712: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: e800_wm9712: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 039/146] ASoC: pxa: em-x270: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: em-x270: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 040/146] ASoC: pxa: hx4700: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: hx4700: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 041/146] ASoC: pxa: imote2: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: imote2: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 042/146] ASoC: pxa: magician: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: magician: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:11 ` [PATCH v2 043/146] ASoC: pxa: mioa701_wm9713: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: mioa701_wm9713: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 044/146] ASoC: pxa: palm27x: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: palm27x: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 045/146] ASoC: pxa: zylonite: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: zylonite: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 046/146] ASoC: pxa: z2: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: z2: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 047/146] ASoC: pxa: ttc-dkb: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: ttc-dkb: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 048/146] ASoC: pxa: tosa: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: tosa: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 049/146] ASoC: pxa: spitz: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: spitz: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 050/146] ASoC: pxa: poodle: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: pxa: poodle: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 051/146] ASoC: kirkwood: armada-370-db: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: kirkwood: armada-370-db: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 052/146] ASoC: ti: n810: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: n810: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 053/146] ASoC: ti: osk5912: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: osk5912: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 054/146] ASoC: ti: ams-delta: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: ams-delta: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 055/146] ASoC: ti: omap3pandora: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: omap3pandora: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:12 ` [PATCH v2 056/146] ASoC: ti: davinci-evm: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: davinci-evm: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 057/146] ASoC: ti: omap-hdmi: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: omap-hdmi: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 058/146] ASoC: ti: omap-abe-twl6040: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: omap-abe-twl6040: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 059/146] ASoC: ti: omap-twl4030: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: omap-twl4030: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 060/146] ASoC: ti: rx51: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ti: rx51: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 061/146] ASoC: sh: migor: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: sh: migor: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 062/146] ASoC: sh: sh7760-ac97: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: sh: sh7760-ac97: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 063/146] ASoC: amd: acp-da7219-max98357a: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: amd: acp-da7219-max98357a: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 064/146] ASoC: amd: acp-rt5645: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: amd: acp-rt5645: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 065/146] ASoC: atmel: mikroe-proto: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: atmel: mikroe-proto: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 066/146] ASoC: atmel: sam9x5_wm8731: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: atmel: sam9x5_wm8731: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 067/146] ASoC: atmel: sam9g20_wm8731: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: atmel: sam9g20_wm8731: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 068/146] ASoC: atmel: tse850-pcm5142: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: atmel: tse850-pcm5142: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:13 ` [PATCH v2 069/146] ASoC: atmel: atmel-wm8904: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: atmel: atmel-wm8904: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 070/146] ASoC: atmel: atmel-pdmic: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: atmel: atmel-pdmic: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 071/146] ASoC: atmel: atmel-classd: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: atmel: atmel-classd: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 072/146] ASoC: au1x: db1000: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: au1x: db1000: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 073/146] ASoC: au1x: db1200: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: au1x: db1200: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 074/146] ASoC: cirrus: edb93xx: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: cirrus: edb93xx: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 075/146] ASoC: cirrus: simone: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: cirrus: simone: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 076/146] ASoC: cirrus: snappercl15: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: cirrus: snappercl15: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 077/146] ASoC: fsl: efika-audio-fabric: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: efika-audio-fabric: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 078/146] ASoC: fsl: imx-spdif: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: imx-spdif: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 079/146] ASoC: fsl: mx27vis-aic32x4: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: mx27vis-aic32x4: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 080/146] ASoC: fsl: phycore-ac97: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: phycore-ac97: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:14 ` [PATCH v2 081/146] ASoC: fsl: wm1133-ev1: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: wm1133-ev1: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:15 ` [PATCH v2 082/146] ASoC: fsl: fsl-asoc-card: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: fsl-asoc-card: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:15 ` [PATCH v2 083/146] ASoC: fsl: mpc8610_hpcd/p1022_ds/p1022_rdk: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: mpc8610_hpcd/p1022_ds/p1022_rdk: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:15 ` [PATCH v2 084/146] ASoC: fsl: imx-es8328: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: imx-es8328: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:15 ` [PATCH v2 085/146] ASoC: fsl: eukrea-tlv320: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: eukrea-tlv320: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 086/146] ASoC: fsl: imx-sgtl5000: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: imx-sgtl5000: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 087/146] ASoC: fsl: imx-mc13783: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: imx-mc13783: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 088/146] ASoC: fsl: pcm030-audio-fabric: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: pcm030-audio-fabric: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 089/146] ASoC: fsl: imx-audmix: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: fsl: imx-audmix: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 090/146] ASoC: jz4740: qi_lb60: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: jz4740: qi_lb60: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 091/146] ASoC: meson: axg-card: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: meson: axg-card: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 092/146] ASoC: mxs: mxs-sgtl5000: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: mxs: mxs-sgtl5000: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 093/146] ASoC: nuc900: nuc900-audio: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: nuc900: nuc900-audio: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 094/146] ASoC: qcom: storm: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: qcom: storm: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:16 ` [PATCH v2 095/146] ASoC: qcom: common: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: qcom: common: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:17 ` [PATCH v2 096/146] ASoC: qcom: apq8016_sbc: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: qcom: apq8016_sbc: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:17 ` [PATCH v2 097/146] ASoC: rockchip: rk3399_gru_sound: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: rockchip: rk3399_gru_sound: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:17 ` [PATCH v2 097/146] ASoC: rockchip: rk3399_gru_sound: use modern dai_link style Kuninori Morimoto
2019-06-06 4:17 ` [PATCH v2 098/146] ASoC: rockchip: rk3288_hdmi_analog: " Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: rockchip: rk3288_hdmi_analog: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:17 ` [PATCH v2 099/146] ASoC: rockchip: rockchip_rt5645: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: rockchip: rockchip_rt5645: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 100/146] ASoC: rockchip: rockchip_max98090: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: rockchip: rockchip_max98090: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 101/146] ASoC: sirf: sirf-audio: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: sirf: sirf-audio: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 102/146] ASoC: ux500: mop500: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: ux500: mop500: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 103/146] ASoC: sunxi: sun4i-codec: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: sunxi: sun4i-codec: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 104/146] ASoC: txx9: txx9aclc-generic: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: txx9: txx9aclc-generic: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 105/146] ASoC: tegra: tegra_rt5677: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_rt5677: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 106/146] ASoC: tegra: tegra_wm8753: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_wm8753: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 107/146] ASoC: tegra: trimslice: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: trimslice: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 108/146] ASoC: tegra: tegra_alc5632: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_alc5632: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 109/146] ASoC: tegra: tegra_sgtl5000: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_sgtl5000: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:18 ` [PATCH v2 110/146] ASoC: tegra: tegra_rt5640: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_rt5640: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 111/146] ASoC: tegra: tegra_wm8903: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_wm8903: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 112/146] ASoC: tegra: tegra_wm9712: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_wm9712: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 113/146] ASoC: tegra: tegra_max98090: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: tegra: tegra_max98090: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 114/146] ASoC: soc-topology: use modern dai_link style Kuninori Morimoto
2019-06-06 13:17 ` Amadeusz Sławiński [this message]
2019-06-06 14:03 ` Pierre-Louis Bossart
2019-06-07 0:27 ` Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: soc-topology: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 115/146] ASoC: vc4: vc4_htmi: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: vc4: vc4_htmi: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 116/146] ASoC: sof: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: sof: use modern dai_link style" to the asoc tree Mark Brown
2019-06-26 12:35 ` [PATCH v2 116/146] ASoC: sof: use modern dai_link style Daniel Baluta
2019-06-26 20:58 ` Pierre-Louis Bossart
2019-06-27 11:47 ` Daniel Baluta
2019-06-28 2:06 ` Kuninori Morimoto
2019-06-28 5:56 ` Pierre-Louis Bossart
2019-06-28 6:43 ` Kuninori Morimoto
2019-06-28 10:52 ` Mark Brown
2019-06-27 0:52 ` Kuninori Morimoto
2019-06-27 6:57 ` Daniel Baluta
2019-06-27 7:06 ` Kuninori Morimoto
2019-06-06 4:19 ` [PATCH v2 117/146] ASoC: Intel: bdw-rt5677: " Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bdw-rt5677: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 118/146] ASoC: Intel: haswell: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: haswell: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:19 ` [PATCH v2 119/146] ASoC: Intel: broadwell: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: broadwell: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 120/146] ASoC: Intel: bxt_da7219_max98357a: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bxt_da7219_max98357a: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 121/146] ASoC: Intel: bxt_rt298: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bxt_rt298: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 122/146] ASoC: Intel: byt-rt5640: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: byt-rt5640: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 123/146] ASoC: Intel: byt-max98090: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: byt-max98090: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 124/146] ASoC: Intel: bytcht_es8316: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bytcht_es8316: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 125/146] ASoC: Intel: bytcht_nocodec: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bytcht_nocodec: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 126/146] ASoC: Intel: bytcht_da7213: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bytcht_da7213: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 127/146] ASoC: Intel: bytcht_cx2072x: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bytcht_cx2072x: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 128/146] ASoC: Intel: bytcr_rt5651: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bytcr_rt5651: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 129/146] ASoC: Intel: bytcr_rt5640: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: bytcr_rt5640: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 130/146] ASoC: Intel: cht_bsw_rt5645: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: cht_bsw_rt5645: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:20 ` [PATCH v2 131/146] ASoC: Intel: cht_bsw_max98090_ti: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: cht_bsw_max98090_ti: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 132/146] ASoC: Intel: cht_bsw_rt5672: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: cht_bsw_rt5672: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 133/146] ASoC: Intel: cht_bsw_nau8824: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: cht_bsw_nau8824: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 134/146] ASoC: Intel: kbl_rt5660: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: kbl_rt5660: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 135/146] ASoC: Intel: kbl_rt5663_max98927: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: kbl_rt5663_max98927: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 136/146] ASoC: Intel: kbl_rt5663_rt5514_max98927: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: kbl_rt5663_rt5514_max98927: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 137/146] ASoC: Intel: kbl_da7219_max98927: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: kbl_da7219_max98927: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 138/146] ASoC: Intel: kbl_da7219_max98357a: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: kbl_da7219_max98357a: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 139/146] ASoC: Intel: skl_nau88l25_ssm4567: use modern dai_link style Kuninori Morimoto
2019-06-06 21:26 ` Applied "ASoC: Intel: skl_nau88l25_ssm4567: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 140/146] ASoC: Intel: skl_rt286: use modern dai_link style Kuninori Morimoto
2019-06-06 21:25 ` Applied "ASoC: Intel: skl_rt286: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 141/146] ASoC: Intel: skl_nau88l25_max98357a: use modern dai_link style Kuninori Morimoto
2019-06-06 21:25 ` Applied "ASoC: Intel: skl_nau88l25_max98357a: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:21 ` [PATCH v2 142/146] ASoC: Intel: skl-pcm: use modern dai_link style Kuninori Morimoto
2019-06-06 21:25 ` Applied "ASoC: Intel: skl-pcm: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:22 ` [PATCH v2 143/146] ASoC: Intel: skl_hda_dsp_common: use modern dai_link style Kuninori Morimoto
2019-06-06 21:25 ` Applied "ASoC: Intel: skl_hda_dsp_common: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:22 ` [PATCH v2 144/146] ASoC: Intel: glk_rt5682_max98357a: use modern dai_link style Kuninori Morimoto
2019-06-06 21:25 ` Applied "ASoC: Intel: glk_rt5682_max98357a: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:22 ` [PATCH v2 145/146] ASoC: Intel: sof_rt5682: use modern dai_link style Kuninori Morimoto
2019-06-06 21:25 ` Applied "ASoC: Intel: sof_rt5682: use modern dai_link style" to the asoc tree Mark Brown
2019-06-06 4:22 ` [PATCH v2 146/146] ASoC: soc-core: remove legacy style dai_link Kuninori Morimoto
2019-06-06 18:25 ` Rojewski, Cezary
2019-06-06 19:08 ` Pierre-Louis Bossart
2019-06-07 0:54 ` Kuninori Morimoto
2019-06-07 11:18 ` Mark Brown
2019-06-06 21:25 ` Applied "ASoC: soc-core: remove legacy style dai_link" to the asoc tree Mark Brown
2019-06-06 10:56 ` [PATCH v2 000/146] ASoC: modern dai_link style support Mark Brown
2019-06-06 14:08 ` Pierre-Louis Bossart
2019-06-06 14:51 ` Mark Brown
2019-06-07 0:20 ` Kuninori Morimoto
2019-06-07 13:21 ` Fabio Estevam
2019-06-07 15:32 ` Tzung-Bi Shih
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190606151747.343ddd4c@xxx \
--to=amadeuszx.slawinski@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=kuninori.morimoto.gx@renesas.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).