linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] spi: sifive: check return value for platform_get_resource()
@ 2019-09-17  9:12 Aurabindo Jayamohanan
  2019-09-17  9:18 ` Paul Walmsley
  2019-09-17  9:23 ` Baolin Wang
  0 siblings, 2 replies; 11+ messages in thread
From: Aurabindo Jayamohanan @ 2019-09-17  9:12 UTC (permalink / raw)
  To: broonie, palmer, paul.walmsley; +Cc: linux-spi, linux-riscv, linux-kernel

platform_get_resource() may return NULL. If it is so, return -ENXIO

Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>
---
 drivers/spi/spi-sifive.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
index 93ec2c6cdbfd..67485067a694 100644
--- a/drivers/spi/spi-sifive.c
+++ b/drivers/spi/spi-sifive.c
@@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
 	platform_set_drvdata(pdev, master);
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+	if (!res) {
+		dev_err(&pdev->dev, "no IOMEM resource found\n");
+		ret = -ENXIO;
+		goto put_master;
+	}
+
 	spi->regs = devm_ioremap_resource(&pdev->dev, res);
 	if (IS_ERR(spi->regs)) {
 		ret = PTR_ERR(spi->regs);
-- 
2.23.0



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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17  9:12 [PATCH] spi: sifive: check return value for platform_get_resource() Aurabindo Jayamohanan
@ 2019-09-17  9:18 ` Paul Walmsley
  2019-09-17  9:23 ` Baolin Wang
  1 sibling, 0 replies; 11+ messages in thread
From: Paul Walmsley @ 2019-09-17  9:18 UTC (permalink / raw)
  To: Aurabindo Jayamohanan
  Cc: broonie, palmer, linux-spi, linux-riscv, linux-kernel

On Tue, 17 Sep 2019, Aurabindo Jayamohanan wrote:

> platform_get_resource() may return NULL. If it is so, return -ENXIO
> 
> Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>

Reviewed-by: Paul Walmsley <paul.walmsley@sifive.com>


- Paul

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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17  9:12 [PATCH] spi: sifive: check return value for platform_get_resource() Aurabindo Jayamohanan
  2019-09-17  9:18 ` Paul Walmsley
@ 2019-09-17  9:23 ` Baolin Wang
  2019-09-17  9:58   ` Aurabindo Jayamohanan
  2019-09-17 12:15   ` Paul Walmsley
  1 sibling, 2 replies; 11+ messages in thread
From: Baolin Wang @ 2019-09-17  9:23 UTC (permalink / raw)
  To: Aurabindo Jayamohanan
  Cc: Mark Brown, palmer, paul.walmsley, linux-spi, linux-riscv, LKML

On Tue, 17 Sep 2019 at 17:12, Aurabindo Jayamohanan <mail@aurabindo.in> wrote:
>
> platform_get_resource() may return NULL. If it is so, return -ENXIO
>
> Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>
> ---
>  drivers/spi/spi-sifive.c | 6 ++++++
>  1 file changed, 6 insertions(+)
>
> diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
> index 93ec2c6cdbfd..67485067a694 100644
> --- a/drivers/spi/spi-sifive.c
> +++ b/drivers/spi/spi-sifive.c
> @@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
>         platform_set_drvdata(pdev, master);
>
>         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> +       if (!res) {
> +               dev_err(&pdev->dev, "no IOMEM resource found\n");
> +               ret = -ENXIO;
> +               goto put_master;
> +       }

Seems unnecessary, the devm_ioremap_resource() already validated if
the resource is available.

-- 
Baolin Wang
Best Regards

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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17  9:23 ` Baolin Wang
@ 2019-09-17  9:58   ` Aurabindo Jayamohanan
  2019-09-17 12:15   ` Paul Walmsley
  1 sibling, 0 replies; 11+ messages in thread
From: Aurabindo Jayamohanan @ 2019-09-17  9:58 UTC (permalink / raw)
  To: Baolin Wang
  Cc: Mark Brown, palmer, paul.walmsley, linux-spi, linux-riscv, LKML


‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Tuesday, September 17, 2019 2:53 PM, Baolin Wang <baolin.wang@linaro.org> wrote:

> On Tue, 17 Sep 2019 at 17:12, Aurabindo Jayamohanan mail@aurabindo.in wrote:
>
> > platform_get_resource() may return NULL. If it is so, return -ENXIO
> >
> > Signed-off-by: Aurabindo Jayamohanan mail@aurabindo.in
> >
> > -------------------------------------------------------
> >
> > drivers/spi/spi-sifive.c | 6 ++++++
> > 1 file changed, 6 insertions(+)
> > diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
> > index 93ec2c6cdbfd..67485067a694 100644
> > --- a/drivers/spi/spi-sifive.c
> > +++ b/drivers/spi/spi-sifive.c
> > @@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
> > platform_set_drvdata(pdev, master);
> >
> >         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> >
> >
> > -         if (!res) {
> >
> >
> > -                 dev_err(&pdev->dev, "no IOMEM resource found\\n");
> >
> >
> > -                 ret = -ENXIO;
> >
> >
> > -                 goto put_master;
> >
> >
> > -         }
> >
> >
>
> Seems unnecessary, the devm_ioremap_resource() already validated if
> the resource is available.
>

Okay, thanks for the headsup


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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17  9:23 ` Baolin Wang
  2019-09-17  9:58   ` Aurabindo Jayamohanan
@ 2019-09-17 12:15   ` Paul Walmsley
  2019-09-17 13:07     ` Geert Uytterhoeven
  2019-09-17 14:06     ` Aurabindo Jayamohanan
  1 sibling, 2 replies; 11+ messages in thread
From: Paul Walmsley @ 2019-09-17 12:15 UTC (permalink / raw)
  To: Baolin Wang, Aurabindo Jayamohanan
  Cc: Mark Brown, palmer, linux-spi, linux-riscv, LKML

On Tue, 17 Sep 2019, Baolin Wang wrote:

> On Tue, 17 Sep 2019 at 17:12, Aurabindo Jayamohanan <mail@aurabindo.in> wrote:
> >
> > platform_get_resource() may return NULL. If it is so, return -ENXIO
> >
> > Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>
> > ---
> >  drivers/spi/spi-sifive.c | 6 ++++++
> >  1 file changed, 6 insertions(+)
> >
> > diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
> > index 93ec2c6cdbfd..67485067a694 100644
> > --- a/drivers/spi/spi-sifive.c
> > +++ b/drivers/spi/spi-sifive.c
> > @@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
> >         platform_set_drvdata(pdev, master);
> >
> >         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > +       if (!res) {
> > +               dev_err(&pdev->dev, "no IOMEM resource found\n");
> > +               ret = -ENXIO;
> > +               goto put_master;
> > +       }
> 
> Seems unnecessary, the devm_ioremap_resource() already validated if
> the resource is available.

Just doublechecked lib/devres.c and I agree with you.

Aurobindo, is this a patch for a real problem that you've encountered?


- Paul

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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17 12:15   ` Paul Walmsley
@ 2019-09-17 13:07     ` Geert Uytterhoeven
  2019-09-17 14:06     ` Aurabindo Jayamohanan
  1 sibling, 0 replies; 11+ messages in thread
From: Geert Uytterhoeven @ 2019-09-17 13:07 UTC (permalink / raw)
  To: Paul Walmsley
  Cc: Baolin Wang, Aurabindo Jayamohanan, Mark Brown, Palmer Dabbelt,
	linux-spi, linux-riscv, LKML

Hi Paul,

On Tue, Sep 17, 2019 at 2:16 PM Paul Walmsley <paul.walmsley@sifive.com> wrote:
> On Tue, 17 Sep 2019, Baolin Wang wrote:
> > On Tue, 17 Sep 2019 at 17:12, Aurabindo Jayamohanan <mail@aurabindo.in> wrote:
> > > platform_get_resource() may return NULL. If it is so, return -ENXIO
> > >
> > > Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>
> > > ---
> > >  drivers/spi/spi-sifive.c | 6 ++++++
> > >  1 file changed, 6 insertions(+)
> > >
> > > diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
> > > index 93ec2c6cdbfd..67485067a694 100644
> > > --- a/drivers/spi/spi-sifive.c
> > > +++ b/drivers/spi/spi-sifive.c
> > > @@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
> > >         platform_set_drvdata(pdev, master);
> > >
> > >         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > > +       if (!res) {
> > > +               dev_err(&pdev->dev, "no IOMEM resource found\n");
> > > +               ret = -ENXIO;
> > > +               goto put_master;
> > > +       }
> >
> > Seems unnecessary, the devm_ioremap_resource() already validated if
> > the resource is available.
>
> Just doublechecked lib/devres.c and I agree with you.
>
> Aurobindo, is this a patch for a real problem that you've encountered?

Probably not.

The sequence can be replaced by a single call to
devm_platform_ioremap_resource(), which BTW also doesn't check the
intermediate result, as that's unneeded.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17 12:15   ` Paul Walmsley
  2019-09-17 13:07     ` Geert Uytterhoeven
@ 2019-09-17 14:06     ` Aurabindo Jayamohanan
  2019-09-17 14:11       ` Paul Walmsley
  1 sibling, 1 reply; 11+ messages in thread
From: Aurabindo Jayamohanan @ 2019-09-17 14:06 UTC (permalink / raw)
  To: Paul Walmsley
  Cc: Baolin Wang, Mark Brown, palmer, linux-spi, linux-riscv, LKML

Hi Paul,

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Tuesday, September 17, 2019 5:45 PM, Paul Walmsley <paul.walmsley@sifive.com> wrote:

> On Tue, 17 Sep 2019, Baolin Wang wrote:
>
> > On Tue, 17 Sep 2019 at 17:12, Aurabindo Jayamohanan mail@aurabindo.in wrote:
> >
> > > platform_get_resource() may return NULL. If it is so, return -ENXIO
> > >
> > > Signed-off-by: Aurabindo Jayamohanan mail@aurabindo.in
> > >
> > > -------------------------------------------------------
> > >
> > > drivers/spi/spi-sifive.c | 6 ++++++
> > > 1 file changed, 6 insertions(+)
> > > diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
> > > index 93ec2c6cdbfd..67485067a694 100644
> > > --- a/drivers/spi/spi-sifive.c
> > > +++ b/drivers/spi/spi-sifive.c
> > > @@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
> > > platform_set_drvdata(pdev, master);
> > >
> > >         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > >
> > >
> > > -         if (!res) {
> > >
> > >
> > > -                 dev_err(&pdev->dev, "no IOMEM resource found\\n");
> > >
> > >
> > > -                 ret = -ENXIO;
> > >
> > >
> > > -                 goto put_master;
> > >
> > >
> > > -         }
> > >
> > >
> >
> > Seems unnecessary, the devm_ioremap_resource() already validated if
> > the resource is available.
>
> Just doublechecked lib/devres.c and I agree with you.
>
> Aurobindo, is this a patch for a real problem that you've encountered?
>
> -   Paul

Geert is right. I was just breezing through the source and found it odd since
I noticed other instances checking for return value. Apparently none of those
use the managed api.

If you didnt already do Geert's suggestion, here is a patch:
____

spi: sifive: use device managed api to get plaform resource

calls to devm_ioremap_resource() preceeded by platform_get_resource()
may be replaced by devm_platform_ioremap_resource().

Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>
---
 drivers/spi/spi-sifive.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
index 93ec2c6cdbfd..c0925aa98aad 100644
--- a/drivers/spi/spi-sifive.c
+++ b/drivers/spi/spi-sifive.c
@@ -292,7 +292,6 @@ sifive_spi_transfer_one(struct spi_master *master, struct spi_device *device,
 static int sifive_spi_probe(struct platform_device *pdev)
 {
 	struct sifive_spi *spi;
-	struct resource *res;
 	int ret, irq, num_cs;
 	u32 cs_bits, max_bits_per_word;
 	struct spi_master *master;
@@ -307,8 +306,7 @@ static int sifive_spi_probe(struct platform_device *pdev)
 	init_completion(&spi->done);
 	platform_set_drvdata(pdev, master);

-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	spi->regs = devm_ioremap_resource(&pdev->dev, res);
+	spi->regs = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(spi->regs)) {
 		ret = PTR_ERR(spi->regs);
 		goto put_master;
--
2.23.0

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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17 14:06     ` Aurabindo Jayamohanan
@ 2019-09-17 14:11       ` Paul Walmsley
  2019-09-17 15:21         ` Paul Walmsley
  0 siblings, 1 reply; 11+ messages in thread
From: Paul Walmsley @ 2019-09-17 14:11 UTC (permalink / raw)
  To: Aurabindo Jayamohanan
  Cc: Baolin Wang, Mark Brown, palmer, linux-spi, linux-riscv, LKML

[-- Attachment #1: Type: text/plain, Size: 3607 bytes --]

Aurobindo, 

On Tue, 17 Sep 2019, Aurabindo Jayamohanan wrote:

> ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
> On Tuesday, September 17, 2019 5:45 PM, Paul Walmsley <paul.walmsley@sifive.com> wrote:
> 
> > On Tue, 17 Sep 2019, Baolin Wang wrote:
> >
> > > On Tue, 17 Sep 2019 at 17:12, Aurabindo Jayamohanan mail@aurabindo.in wrote:
> > >
> > > > platform_get_resource() may return NULL. If it is so, return -ENXIO
> > > >
> > > > Signed-off-by: Aurabindo Jayamohanan mail@aurabindo.in
> > > >
> > > > -------------------------------------------------------
> > > >
> > > > drivers/spi/spi-sifive.c | 6 ++++++
> > > > 1 file changed, 6 insertions(+)
> > > > diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
> > > > index 93ec2c6cdbfd..67485067a694 100644
> > > > --- a/drivers/spi/spi-sifive.c
> > > > +++ b/drivers/spi/spi-sifive.c
> > > > @@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
> > > > platform_set_drvdata(pdev, master);
> > > >
> > > >         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > > >
> > > >
> > > > -         if (!res) {
> > > >
> > > >
> > > > -                 dev_err(&pdev->dev, "no IOMEM resource found\\n");
> > > >
> > > >
> > > > -                 ret = -ENXIO;
> > > >
> > > >
> > > > -                 goto put_master;
> > > >
> > > >
> > > > -         }
> > > >
> > > >
> > >
> > > Seems unnecessary, the devm_ioremap_resource() already validated if
> > > the resource is available.
> >
> > Just doublechecked lib/devres.c and I agree with you.
> >
> > Aurobindo, is this a patch for a real problem that you've encountered?
> >
> > -   Paul
> 
> Geert is right. I was just breezing through the source and found it odd since
> I noticed other instances checking for return value. Apparently none of those
> use the managed api.
> 
> If you didnt already do Geert's suggestion,

Mark Brown is the maintainer, so he'd be the one to apply anything 
touching these drivers.

> here is a patch:

Could you please send this as a separate E-mail?

> ____
> 
> spi: sifive: use device managed api to get plaform resource

"platform resource"

> 
> calls to devm_ioremap_resource() preceeded by platform_get_resource()

"Calls"

"preceded"

> may be replaced by devm_platform_ioremap_resource().

Please explain why.  In this case "removing boilerplate from the code" 
seems like a reasonable explanation.

> 
> Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>
> ---
>  drivers/spi/spi-sifive.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
> index 93ec2c6cdbfd..c0925aa98aad 100644
> --- a/drivers/spi/spi-sifive.c
> +++ b/drivers/spi/spi-sifive.c
> @@ -292,7 +292,6 @@ sifive_spi_transfer_one(struct spi_master *master, struct spi_device *device,
>  static int sifive_spi_probe(struct platform_device *pdev)
>  {
>  	struct sifive_spi *spi;
> -	struct resource *res;
>  	int ret, irq, num_cs;
>  	u32 cs_bits, max_bits_per_word;
>  	struct spi_master *master;
> @@ -307,8 +306,7 @@ static int sifive_spi_probe(struct platform_device *pdev)
>  	init_completion(&spi->done);
>  	platform_set_drvdata(pdev, master);
> 
> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -	spi->regs = devm_ioremap_resource(&pdev->dev, res);
> +	spi->regs = devm_platform_ioremap_resource(pdev, 0);
>  	if (IS_ERR(spi->regs)) {
>  		ret = PTR_ERR(spi->regs);
>  		goto put_master;
> --
> 2.23.0
> 


- Paul

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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17 14:11       ` Paul Walmsley
@ 2019-09-17 15:21         ` Paul Walmsley
  2019-09-17 17:13           ` Aurabindo Jayamohanan
  0 siblings, 1 reply; 11+ messages in thread
From: Paul Walmsley @ 2019-09-17 15:21 UTC (permalink / raw)
  To: Aurabindo Jayamohanan
  Cc: Baolin Wang, Mark Brown, palmer, linux-spi, linux-riscv, LKML


I just recalled that YueHaibing already posted a patch to do this:

https://lore.kernel.org/linux-riscv/alpine.DEB.2.21.9999.1909041520130.13502@viisi.sifive.com/


- Paul

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

* Re: [PATCH] spi: sifive: check return value for platform_get_resource()
  2019-09-17 15:21         ` Paul Walmsley
@ 2019-09-17 17:13           ` Aurabindo Jayamohanan
  0 siblings, 0 replies; 11+ messages in thread
From: Aurabindo Jayamohanan @ 2019-09-17 17:13 UTC (permalink / raw)
  To: Paul Walmsley
  Cc: Baolin Wang, Mark Brown, palmer, linux-spi, linux-riscv, LKML

Hi Paul,

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Tuesday, September 17, 2019 8:51 PM, Paul Walmsley <paul.walmsley@sifive.com> wrote:

>
>
> I just recalled that YueHaibing already posted a patch to do this:
>
> https://lore.kernel.org/linux-riscv/alpine.DEB.2.21.9999.1909041520130.13502@viisi.sifive.com/
>

Ah, sorry for the noise.


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

* [PATCH] spi: sifive: check return value for platform_get_resource()
@ 2019-09-17  9:12 Aurabindo Jayamohanan
  0 siblings, 0 replies; 11+ messages in thread
From: Aurabindo Jayamohanan @ 2019-09-17  9:12 UTC (permalink / raw)
  To: broonie, palmer, paul.walmsley; +Cc: linux-spi, linux-riscv, linux-kernel

platform_get_resource() may return NULL. If it is so, return -ENXIO

Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in>
---
 drivers/spi/spi-sifive.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/spi/spi-sifive.c b/drivers/spi/spi-sifive.c
index 93ec2c6cdbfd..67485067a694 100644
--- a/drivers/spi/spi-sifive.c
+++ b/drivers/spi/spi-sifive.c
@@ -308,6 +308,12 @@ static int sifive_spi_probe(struct platform_device *pdev)
 	platform_set_drvdata(pdev, master);
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+	if (!res) {
+		dev_err(&pdev->dev, "no IOMEM resource found\n");
+		ret = -ENXIO;
+		goto put_master;
+	}
+
 	spi->regs = devm_ioremap_resource(&pdev->dev, res);
 	if (IS_ERR(spi->regs)) {
 		ret = PTR_ERR(spi->regs);
-- 
2.23.0



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

end of thread, other threads:[~2019-09-17 17:13 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-17  9:12 [PATCH] spi: sifive: check return value for platform_get_resource() Aurabindo Jayamohanan
2019-09-17  9:18 ` Paul Walmsley
2019-09-17  9:23 ` Baolin Wang
2019-09-17  9:58   ` Aurabindo Jayamohanan
2019-09-17 12:15   ` Paul Walmsley
2019-09-17 13:07     ` Geert Uytterhoeven
2019-09-17 14:06     ` Aurabindo Jayamohanan
2019-09-17 14:11       ` Paul Walmsley
2019-09-17 15:21         ` Paul Walmsley
2019-09-17 17:13           ` Aurabindo Jayamohanan
  -- strict thread matches above, loose matches on Subject: below --
2019-09-17  9:12 Aurabindo Jayamohanan

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