All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-17 14:22 ` Alexandre Belloni
  0 siblings, 0 replies; 57+ messages in thread
From: Alexandre Belloni @ 2019-10-17 14:22 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Himanshu Jha, Linus Torvalds, kernel-janitors, Arnd Bergmann,
	tglx, Marc Zyngier, linux-kernel, Alexandre Belloni

While it is useful for new drivers to use devm_platform_ioremap_resource,
this script is currently used to spam maintainers, often updating very old
drivers. The net benefit is the removal of 2 lines of code in the driver
but the review load for the maintainers is huge. As of now, more that 560
patches have been sent, some of them obviously broken, as in:

https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/

Remove the script to reduce the spam.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
---
 .../api/devm_platform_ioremap_resource.cocci  | 60 -------------------
 1 file changed, 60 deletions(-)
 delete mode 100644 scripts/coccinelle/api/devm_platform_ioremap_resource.cocci

diff --git a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci b/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
deleted file mode 100644
index 56a2e261d61d..000000000000
--- a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
+++ /dev/null
@@ -1,60 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/// Use devm_platform_ioremap_resource helper which wraps
-/// platform_get_resource() and devm_ioremap_resource() together.
-///
-// Confidence: High
-// Copyright: (C) 2019 Himanshu Jha GPLv2.
-// Copyright: (C) 2019 Julia Lawall, Inria/LIP6. GPLv2.
-// Keywords: platform_get_resource, devm_ioremap_resource,
-// Keywords: devm_platform_ioremap_resource
-
-virtual patch
-virtual report
-
-@r depends on patch && !report@
-expression e1, e2, arg1, arg2, arg3;
-identifier id;
-@@
-
-(
-- id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-|
-- struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-)
-  ... when != id
-- e1 = devm_ioremap_resource(arg3, id);
-+ e1 = devm_platform_ioremap_resource(arg1, arg2);
-  ... when != id
-? id = e2
-
-@r1 depends on patch && !report@
-identifier r.id;
-type T;
-@@
-
-- T *id;
-  ...when != id
-
-@r2 depends on report && !patch@
-identifier id;
-expression e1, e2, arg1, arg2, arg3;
-position j0;
-@@
-
-(
-  id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-|
-  struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-)
-  ... when != id
-  e1@j0 = devm_ioremap_resource(arg3, id);
-  ... when != id
-? id = e2
-
-@script:python depends on report && !patch@
-e1 << r2.e1;
-j0 << r2.j0;
-@@
-
-msg = "WARNING: Use devm_platform_ioremap_resource for %s" % (e1)
-coccilib.report.print_report(j0[0], msg)
-- 
2.21.0


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

* [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-17 14:22 ` Alexandre Belloni
  0 siblings, 0 replies; 57+ messages in thread
From: Alexandre Belloni @ 2019-10-17 14:22 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Himanshu Jha, Linus Torvalds, kernel-janitors, Arnd Bergmann,
	tglx, Marc Zyngier, linux-kernel, Alexandre Belloni

While it is useful for new drivers to use devm_platform_ioremap_resource,
this script is currently used to spam maintainers, often updating very old
drivers. The net benefit is the removal of 2 lines of code in the driver
but the review load for the maintainers is huge. As of now, more that 560
patches have been sent, some of them obviously broken, as in:

https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/

Remove the script to reduce the spam.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
---
 .../api/devm_platform_ioremap_resource.cocci  | 60 -------------------
 1 file changed, 60 deletions(-)
 delete mode 100644 scripts/coccinelle/api/devm_platform_ioremap_resource.cocci

diff --git a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci b/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
deleted file mode 100644
index 56a2e261d61d..000000000000
--- a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
+++ /dev/null
@@ -1,60 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/// Use devm_platform_ioremap_resource helper which wraps
-/// platform_get_resource() and devm_ioremap_resource() together.
-///
-// Confidence: High
-// Copyright: (C) 2019 Himanshu Jha GPLv2.
-// Copyright: (C) 2019 Julia Lawall, Inria/LIP6. GPLv2.
-// Keywords: platform_get_resource, devm_ioremap_resource,
-// Keywords: devm_platform_ioremap_resource
-
-virtual patch
-virtual report
-
-@r depends on patch && !report@
-expression e1, e2, arg1, arg2, arg3;
-identifier id;
-@@
-
-(
-- id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-|
-- struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-)
-  ... when != id
-- e1 = devm_ioremap_resource(arg3, id);
-+ e1 = devm_platform_ioremap_resource(arg1, arg2);
-  ... when != id
-? id = e2
-
-@r1 depends on patch && !report@
-identifier r.id;
-type T;
-@@
-
-- T *id;
-  ...when != id
-
-@r2 depends on report && !patch@
-identifier id;
-expression e1, e2, arg1, arg2, arg3;
-position j0;
-@@
-
-(
-  id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-|
-  struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
-)
-  ... when != id
-  e1@j0 = devm_ioremap_resource(arg3, id);
-  ... when != id
-? id = e2
-
-@script:python depends on report && !patch@
-e1 << r2.e1;
-j0 << r2.j0;
-@@
-
-msg = "WARNING: Use devm_platform_ioremap_resource for %s" % (e1)
-coccilib.report.print_report(j0[0], msg)
-- 
2.21.0

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-17 14:22 ` Alexandre Belloni
@ 2019-10-17 14:34   ` Julia Lawall
  -1 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-17 14:34 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Himanshu Jha, Linus Torvalds, kernel-janitors, Arnd Bergmann,
	tglx, Marc Zyngier, linux-kernel, yamada.masahiro



On Thu, 17 Oct 2019, Alexandre Belloni wrote:

> While it is useful for new drivers to use devm_platform_ioremap_resource,
> this script is currently used to spam maintainers, often updating very old
> drivers. The net benefit is the removal of 2 lines of code in the driver
> but the review load for the maintainers is huge. As of now, more that 560
> patches have been sent, some of them obviously broken, as in:
>
> https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
>
> Remove the script to reduce the spam.

OK.

Acked-by: Julia Lawall <Julia.Lawall@lip6.fr>

>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
> ---
>  .../api/devm_platform_ioremap_resource.cocci  | 60 -------------------
>  1 file changed, 60 deletions(-)
>  delete mode 100644 scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
>
> diff --git a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci b/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
> deleted file mode 100644
> index 56a2e261d61d..000000000000
> --- a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
> +++ /dev/null
> @@ -1,60 +0,0 @@
> -// SPDX-License-Identifier: GPL-2.0
> -/// Use devm_platform_ioremap_resource helper which wraps
> -/// platform_get_resource() and devm_ioremap_resource() together.
> -///
> -// Confidence: High
> -// Copyright: (C) 2019 Himanshu Jha GPLv2.
> -// Copyright: (C) 2019 Julia Lawall, Inria/LIP6. GPLv2.
> -// Keywords: platform_get_resource, devm_ioremap_resource,
> -// Keywords: devm_platform_ioremap_resource
> -
> -virtual patch
> -virtual report
> -
> -@r depends on patch && !report@
> -expression e1, e2, arg1, arg2, arg3;
> -identifier id;
> -@@
> -
> -(
> -- id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -|
> -- struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -)
> -  ... when != id
> -- e1 = devm_ioremap_resource(arg3, id);
> -+ e1 = devm_platform_ioremap_resource(arg1, arg2);
> -  ... when != id
> -? id = e2
> -
> -@r1 depends on patch && !report@
> -identifier r.id;
> -type T;
> -@@
> -
> -- T *id;
> -  ...when != id
> -
> -@r2 depends on report && !patch@
> -identifier id;
> -expression e1, e2, arg1, arg2, arg3;
> -position j0;
> -@@
> -
> -(
> -  id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -|
> -  struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -)
> -  ... when != id
> -  e1@j0 = devm_ioremap_resource(arg3, id);
> -  ... when != id
> -? id = e2
> -
> -@script:python depends on report && !patch@
> -e1 << r2.e1;
> -j0 << r2.j0;
> -@@
> -
> -msg = "WARNING: Use devm_platform_ioremap_resource for %s" % (e1)
> -coccilib.report.print_report(j0[0], msg)
> --
> 2.21.0
>
>

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-17 14:34   ` Julia Lawall
  0 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-17 14:34 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Himanshu Jha, Linus Torvalds, kernel-janitors, Arnd Bergmann,
	tglx, Marc Zyngier, linux-kernel, yamada.masahiro



On Thu, 17 Oct 2019, Alexandre Belloni wrote:

> While it is useful for new drivers to use devm_platform_ioremap_resource,
> this script is currently used to spam maintainers, often updating very old
> drivers. The net benefit is the removal of 2 lines of code in the driver
> but the review load for the maintainers is huge. As of now, more that 560
> patches have been sent, some of them obviously broken, as in:
>
> https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
>
> Remove the script to reduce the spam.

OK.

Acked-by: Julia Lawall <Julia.Lawall@lip6.fr>

>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
> ---
>  .../api/devm_platform_ioremap_resource.cocci  | 60 -------------------
>  1 file changed, 60 deletions(-)
>  delete mode 100644 scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
>
> diff --git a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci b/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
> deleted file mode 100644
> index 56a2e261d61d..000000000000
> --- a/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
> +++ /dev/null
> @@ -1,60 +0,0 @@
> -// SPDX-License-Identifier: GPL-2.0
> -/// Use devm_platform_ioremap_resource helper which wraps
> -/// platform_get_resource() and devm_ioremap_resource() together.
> -///
> -// Confidence: High
> -// Copyright: (C) 2019 Himanshu Jha GPLv2.
> -// Copyright: (C) 2019 Julia Lawall, Inria/LIP6. GPLv2.
> -// Keywords: platform_get_resource, devm_ioremap_resource,
> -// Keywords: devm_platform_ioremap_resource
> -
> -virtual patch
> -virtual report
> -
> -@r depends on patch && !report@
> -expression e1, e2, arg1, arg2, arg3;
> -identifier id;
> -@@
> -
> -(
> -- id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -|
> -- struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -)
> -  ... when != id
> -- e1 = devm_ioremap_resource(arg3, id);
> -+ e1 = devm_platform_ioremap_resource(arg1, arg2);
> -  ... when != id
> -? id = e2
> -
> -@r1 depends on patch && !report@
> -identifier r.id;
> -type T;
> -@@
> -
> -- T *id;
> -  ...when != id
> -
> -@r2 depends on report && !patch@
> -identifier id;
> -expression e1, e2, arg1, arg2, arg3;
> -position j0;
> -@@
> -
> -(
> -  id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -|
> -  struct resource *id = platform_get_resource(arg1, IORESOURCE_MEM, arg2);
> -)
> -  ... when != id
> -  e1@j0 = devm_ioremap_resource(arg3, id);
> -  ... when != id
> -? id = e2
> -
> -@script:python depends on report && !patch@
> -e1 << r2.e1;
> -j0 << r2.j0;
> -@@
> -
> -msg = "WARNING: Use devm_platform_ioremap_resource for %s" % (e1)
> -coccilib.report.print_report(j0[0], msg)
> --
> 2.21.0
>
>

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-17 14:22 ` Alexandre Belloni
@ 2019-10-17 16:13   ` Marc Zyngier
  -1 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-17 16:13 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Julia Lawall, Himanshu Jha, Linus Torvalds, kernel-janitors,
	Arnd Bergmann, tglx, linux-kernel

On 2019-10-17 15:22, Alexandre Belloni wrote:
> While it is useful for new drivers to use 
> devm_platform_ioremap_resource,
> this script is currently used to spam maintainers, often updating 
> very old
> drivers. The net benefit is the removal of 2 lines of code in the 
> driver
> but the review load for the maintainers is huge. As of now, more that 
> 560
> patches have been sent, some of them obviously broken, as in:
>
> 
> https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
>
> Remove the script to reduce the spam.
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

I think part of the issue is that the script reports a WARNING for 
something
that is definitely correct code, and could instead be simply toned 
down.

Anyway, FWIW:

Acked-by: Marc Zyngier <maz@kernel.org>

         M.
-- 
Jazz is not dead. It just smells funny...

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap  =?UTF-8?Q?=5Fresource=3A=20remove
@ 2019-10-17 16:13   ` Marc Zyngier
  0 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-17 16:13 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Julia Lawall, Himanshu Jha, Linus Torvalds, kernel-janitors,
	Arnd Bergmann, tglx, linux-kernel

On 2019-10-17 15:22, Alexandre Belloni wrote:
> While it is useful for new drivers to use 
> devm_platform_ioremap_resource,
> this script is currently used to spam maintainers, often updating 
> very old
> drivers. The net benefit is the removal of 2 lines of code in the 
> driver
> but the review load for the maintainers is huge. As of now, more that 
> 560
> patches have been sent, some of them obviously broken, as in:
>
> 
> https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
>
> Remove the script to reduce the spam.
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

I think part of the issue is that the script reports a WARNING for 
something
that is definitely correct code, and could instead be simply toned 
down.

Anyway, FWIW:

Acked-by: Marc Zyngier <maz@kernel.org>

         M.
-- 
Jazz is not dead. It just smells funny...

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-17 14:22 ` Alexandre Belloni
  (?)
@ 2019-10-19  9:00   ` Markus Elfring
  -1 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19  9:00 UTC (permalink / raw)
  To: Alexandre Belloni, Julia Lawall, Himanshu Jha, kernel-janitors,
	Coccinelle
  Cc: Arnd Bergmann, linux-kernel, Marc Zyngier, Thomas Gleixner,
	Linus Torvalds, Andy Shevchenko, Bartosz Golaszewski,
	Gilles Muller, Greg Kroah-Hartman, Linus Walleij,
	Masahiro Yamada, Michal Marek, Nicolas Palix

> While it is useful for new drivers to use devm_platform_ioremap_resource,

This is nice.


> this script is currently used to spam maintainers,

This view is unfortunate.

Do we stumble on a target conflict again?


> often updating very old drivers.

This can also happen.


> The net benefit is the removal of 2 lines of code in the driver

Additional effects can be reconsidered, can't they?


> but the review load for the maintainers is huge.

Does collateral evolution trigger a remarkable amount of changes occasionally?


How will such feedback influence the development and integration of
further scripts for the semantic patch language (Coccinelle software)?

Regards,
Markus

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19  9:00   ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19  9:00 UTC (permalink / raw)
  To: Alexandre Belloni, Julia Lawall, Himanshu Jha, kernel-janitors,
	Coccinelle
  Cc: Michal Marek, Arnd Bergmann, Marc Zyngier, Linus Walleij,
	Nicolas Palix, linux-kernel, Bartosz Golaszewski, Linus Torvalds,
	Greg Kroah-Hartman, Thomas Gleixner, Andy Shevchenko

> While it is useful for new drivers to use devm_platform_ioremap_resource,

This is nice.


> this script is currently used to spam maintainers,

This view is unfortunate.

Do we stumble on a target conflict again?


> often updating very old drivers.

This can also happen.


> The net benefit is the removal of 2 lines of code in the driver

Additional effects can be reconsidered, can't they?


> but the review load for the maintainers is huge.

Does collateral evolution trigger a remarkable amount of changes occasionally?


How will such feedback influence the development and integration of
further scripts for the semantic patch language (Coccinelle software)?

Regards,
Markus

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

* Re: [Cocci] [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19  9:00   ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19  9:00 UTC (permalink / raw)
  To: Alexandre Belloni, Julia Lawall, Himanshu Jha, kernel-janitors,
	Coccinelle
  Cc: Michal Marek, Arnd Bergmann, Marc Zyngier, Linus Walleij,
	Nicolas Palix, linux-kernel, Bartosz Golaszewski, Linus Torvalds,
	Greg Kroah-Hartman, Thomas Gleixner, Andy Shevchenko

> While it is useful for new drivers to use devm_platform_ioremap_resource,

This is nice.


> this script is currently used to spam maintainers,

This view is unfortunate.

Do we stumble on a target conflict again?


> often updating very old drivers.

This can also happen.


> The net benefit is the removal of 2 lines of code in the driver

Additional effects can be reconsidered, can't they?


> but the review load for the maintainers is huge.

Does collateral evolution trigger a remarkable amount of changes occasionally?


How will such feedback influence the development and integration of
further scripts for the semantic patch language (Coccinelle software)?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-17 16:13   ` [PATCH] coccinelle: api/devm_platform_ioremap =?UTF-8?Q?=5Fresource=3A=20remove Marc Zyngier
  (?)
@ 2019-10-19 11:35     ` Markus Elfring
  -1 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 11:35 UTC (permalink / raw)
  To: Marc Zyngier, Himanshu Jha, Julia Lawall, kernel-janitors, Coccinelle
  Cc: Alexandre Belloni, linux-kernel, Andy Shevchenko, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Masahiro Yamada, Michal Marek,
	Nicolas Palix, Thomas Gleixner, YueHaibing

> I think part of the issue is that the script reports a WARNING

How much does this information influence really the stress tolerance
and change resistance (or acceptance) for the presented collateral evolution?
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci


> for something that is definitely correct code,

Can related software improvement possibilities be taken into account
again under other circumstances?


> and could instead be simply toned down.

Does this view mean that the mentioned script for the semantic patch language
should get another chance for integration?


> Anyway, FWIW:
>
> Acked-by: Marc Zyngier <maz@kernel.org>

Would you like to share any more constructive feedback?


Will similar source file mass updates be better picked up
by other well-known Linux developers?

Regards,
Markus

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 11:35     ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 11:35 UTC (permalink / raw)
  To: Marc Zyngier, Himanshu Jha, Julia Lawall, kernel-janitors, Coccinelle
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Greg Kroah-Hartman, Linus Walleij, Nicolas Palix, linux-kernel,
	Bartosz Golaszewski, Linus Torvalds, Thomas Gleixner,
	Andy Shevchenko

> I think part of the issue is that the script reports a WARNING

How much does this information influence really the stress tolerance
and change resistance (or acceptance) for the presented collateral evolution?
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci


> for something that is definitely correct code,

Can related software improvement possibilities be taken into account
again under other circumstances?


> and could instead be simply toned down.

Does this view mean that the mentioned script for the semantic patch language
should get another chance for integration?


> Anyway, FWIW:
>
> Acked-by: Marc Zyngier <maz@kernel.org>

Would you like to share any more constructive feedback?


Will similar source file mass updates be better picked up
by other well-known Linux developers?

Regards,
Markus

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 11:35     ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 11:35 UTC (permalink / raw)
  To: Marc Zyngier, Himanshu Jha, Julia Lawall, kernel-janitors, Coccinelle
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Greg Kroah-Hartman, Linus Walleij, Nicolas Palix, linux-kernel,
	Bartosz Golaszewski, Linus Torvalds, Thomas Gleixner,
	Andy Shevchenko

> I think part of the issue is that the script reports a WARNING

How much does this information influence really the stress tolerance
and change resistance (or acceptance) for the presented collateral evolution?
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci


> for something that is definitely correct code,

Can related software improvement possibilities be taken into account
again under other circumstances?


> and could instead be simply toned down.

Does this view mean that the mentioned script for the semantic patch language
should get another chance for integration?


> Anyway, FWIW:
>
> Acked-by: Marc Zyngier <maz@kernel.org>

Would you like to share any more constructive feedback?


Will similar source file mass updates be better picked up
by other well-known Linux developers?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19  9:00   ` Markus Elfring
  (?)
@ 2019-10-19 12:09     ` Alexandre Belloni
  -1 siblings, 0 replies; 57+ messages in thread
From: Alexandre Belloni @ 2019-10-19 12:09 UTC (permalink / raw)
  To: Markus Elfring
  Cc: Julia Lawall, Himanshu Jha, kernel-janitors, Coccinelle,
	Arnd Bergmann, linux-kernel, Marc Zyngier, Thomas Gleixner,
	Linus Torvalds, Andy Shevchenko, Bartosz Golaszewski,
	Gilles Muller, Greg Kroah-Hartman, Linus Walleij,
	Masahiro Yamada, Michal Marek, Nicolas Palix

On 19/10/2019 11:00:47+0200, Markus Elfring wrote:
> > While it is useful for new drivers to use devm_platform_ioremap_resource,
> 
> This is nice.
> 
> 
> > this script is currently used to spam maintainers,
> 
> This view is unfortunate.
> 
> Do we stumble on a target conflict again?
> 
> 
> > often updating very old drivers.
> 
> This can also happen.
> 
> 
> > The net benefit is the removal of 2 lines of code in the driver
> 
> Additional effects can be reconsidered, can't they?
> 

What are the additional effects? What is the end goal of converting all
the existing drivers to devm_platform_ioremap_resource? The existing
code is currently always correct and it is difficult to see how this
would lead to any bug avoidance in the long term.

> > but the review load for the maintainers is huge.
> 
> Does collateral evolution trigger a remarkable amount of changes occasionally?
> 

This is not an evolution, it is unnecessary churn. Those patches have no
benefit and eat up very valuable reviewer time.

> 
> How will such feedback influence the development and integration of
> further scripts for the semantic patch language (Coccinelle software)?
> 

There are a few other scripts that have no added value when applied to
existing code, like ptr_ret.cocci.

-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 12:09     ` Alexandre Belloni
  0 siblings, 0 replies; 57+ messages in thread
From: Alexandre Belloni @ 2019-10-19 12:09 UTC (permalink / raw)
  To: Markus Elfring
  Cc: Nicolas Palix, Michal Marek, Arnd Bergmann, Bartosz Golaszewski,
	Marc Zyngier, Linus Walleij, kernel-janitors, linux-kernel,
	Linus Torvalds, Greg Kroah-Hartman, Thomas Gleixner,
	Andy Shevchenko, Coccinelle

On 19/10/2019 11:00:47+0200, Markus Elfring wrote:
> > While it is useful for new drivers to use devm_platform_ioremap_resource,
> 
> This is nice.
> 
> 
> > this script is currently used to spam maintainers,
> 
> This view is unfortunate.
> 
> Do we stumble on a target conflict again?
> 
> 
> > often updating very old drivers.
> 
> This can also happen.
> 
> 
> > The net benefit is the removal of 2 lines of code in the driver
> 
> Additional effects can be reconsidered, can't they?
> 

What are the additional effects? What is the end goal of converting all
the existing drivers to devm_platform_ioremap_resource? The existing
code is currently always correct and it is difficult to see how this
would lead to any bug avoidance in the long term.

> > but the review load for the maintainers is huge.
> 
> Does collateral evolution trigger a remarkable amount of changes occasionally?
> 

This is not an evolution, it is unnecessary churn. Those patches have no
benefit and eat up very valuable reviewer time.

> 
> How will such feedback influence the development and integration of
> further scripts for the semantic patch language (Coccinelle software)?
> 

There are a few other scripts that have no added value when applied to
existing code, like ptr_ret.cocci.

-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [Cocci] [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 12:09     ` Alexandre Belloni
  0 siblings, 0 replies; 57+ messages in thread
From: Alexandre Belloni @ 2019-10-19 12:09 UTC (permalink / raw)
  To: Markus Elfring
  Cc: Nicolas Palix, Michal Marek, Arnd Bergmann, Bartosz Golaszewski,
	Marc Zyngier, Linus Walleij, kernel-janitors, linux-kernel,
	Linus Torvalds, Greg Kroah-Hartman, Thomas Gleixner,
	Andy Shevchenko, Coccinelle

On 19/10/2019 11:00:47+0200, Markus Elfring wrote:
> > While it is useful for new drivers to use devm_platform_ioremap_resource,
> 
> This is nice.
> 
> 
> > this script is currently used to spam maintainers,
> 
> This view is unfortunate.
> 
> Do we stumble on a target conflict again?
> 
> 
> > often updating very old drivers.
> 
> This can also happen.
> 
> 
> > The net benefit is the removal of 2 lines of code in the driver
> 
> Additional effects can be reconsidered, can't they?
> 

What are the additional effects? What is the end goal of converting all
the existing drivers to devm_platform_ioremap_resource? The existing
code is currently always correct and it is difficult to see how this
would lead to any bug avoidance in the long term.

> > but the review load for the maintainers is huge.
> 
> Does collateral evolution trigger a remarkable amount of changes occasionally?
> 

This is not an evolution, it is unnecessary churn. Those patches have no
benefit and eat up very valuable reviewer time.

> 
> How will such feedback influence the development and integration of
> further scripts for the semantic patch language (Coccinelle software)?
> 

There are a few other scripts that have no added value when applied to
existing code, like ptr_ret.cocci.

-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 12:09     ` Alexandre Belloni
  (?)
@ 2019-10-19 14:06       ` Markus Elfring
  -1 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 14:06 UTC (permalink / raw)
  To: Alexandre Belloni, Himanshu Jha, kernel-janitors, Coccinelle,
	Bartosz Golaszewski
  Cc: Julia Lawall, Arnd Bergmann, Marc Zyngier, Thomas Gleixner,
	Linus Torvalds, Andy Shevchenko, Gilles Muller,
	Greg Kroah-Hartman, Linus Walleij, Masahiro Yamada, Michal Marek,
	Nicolas Palix, YueHaibing, LKML

> What are the additional effects?

I suggest to take another look at the commit 7945f929f1a77a1c8887a97ca07f87626858ff42
("drivers: provide devm_platform_ioremap_resource()" from 2019-02-20)
which triggered the discussed software evolution.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/drivers/base/platform.c


> What is the end goal of converting all the existing drivers to devm_platform_ioremap_resource?

It was accepted by well-known Linux developers to put two function calls
into another wrapper function.


> This is not an evolution, it is unnecessary churn. Those patches have no
> benefit and eat up very valuable reviewer time.

I am curious if other contributors would like to describe more variants
of software development opinions in affected areas.


>> How will such feedback influence the development and integration of
>> further scripts for the semantic patch language (Coccinelle software)?
>
> There are a few other scripts that have no added value when applied to
> existing code, like ptr_ret.cocci.

Would you like to clarify concerns around such source code transformation
approaches in more detail?

Regards,
Markus

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 14:06       ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 14:06 UTC (permalink / raw)
  To: Alexandre Belloni, Himanshu Jha, kernel-janitors, Coccinelle,
	Bartosz Golaszewski
  Cc: Michal Marek, YueHaibing, Arnd Bergmann, Marc Zyngier,
	Linus Walleij, Nicolas Palix, LKML, Linus Torvalds,
	Greg Kroah-Hartman, Thomas Gleixner, Andy Shevchenko

> What are the additional effects?

I suggest to take another look at the commit 7945f929f1a77a1c8887a97ca07f87626858ff42
("drivers: provide devm_platform_ioremap_resource()" from 2019-02-20)
which triggered the discussed software evolution.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/drivers/base/platform.c


> What is the end goal of converting all the existing drivers to devm_platform_ioremap_resource?

It was accepted by well-known Linux developers to put two function calls
into another wrapper function.


> This is not an evolution, it is unnecessary churn. Those patches have no
> benefit and eat up very valuable reviewer time.

I am curious if other contributors would like to describe more variants
of software development opinions in affected areas.


>> How will such feedback influence the development and integration of
>> further scripts for the semantic patch language (Coccinelle software)?
>
> There are a few other scripts that have no added value when applied to
> existing code, like ptr_ret.cocci.

Would you like to clarify concerns around such source code transformation
approaches in more detail?

Regards,
Markus

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 14:06       ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 14:06 UTC (permalink / raw)
  To: Alexandre Belloni, Himanshu Jha, kernel-janitors, Coccinelle,
	Bartosz Golaszewski
  Cc: Michal Marek, YueHaibing, Arnd Bergmann, Marc Zyngier,
	Linus Walleij, Nicolas Palix, LKML, Linus Torvalds,
	Greg Kroah-Hartman, Thomas Gleixner, Andy Shevchenko

> What are the additional effects?

I suggest to take another look at the commit 7945f929f1a77a1c8887a97ca07f87626858ff42
("drivers: provide devm_platform_ioremap_resource()" from 2019-02-20)
which triggered the discussed software evolution.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/drivers/base/platform.c


> What is the end goal of converting all the existing drivers to devm_platform_ioremap_resource?

It was accepted by well-known Linux developers to put two function calls
into another wrapper function.


> This is not an evolution, it is unnecessary churn. Those patches have no
> benefit and eat up very valuable reviewer time.

I am curious if other contributors would like to describe more variants
of software development opinions in affected areas.


>> How will such feedback influence the development and integration of
>> further scripts for the semantic patch language (Coccinelle software)?
>
> There are a few other scripts that have no added value when applied to
> existing code, like ptr_ret.cocci.

Would you like to clarify concerns around such source code transformation
approaches in more detail?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 12:09     ` Alexandre Belloni
  (?)
@ 2019-10-19 14:29       ` Bartosz Golaszewski
  -1 siblings, 0 replies; 57+ messages in thread
From: Bartosz Golaszewski @ 2019-10-19 14:29 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Markus Elfring, Julia Lawall, Himanshu Jha, kernel-janitors,
	Coccinelle, Arnd Bergmann, LKML, Marc Zyngier, Thomas Gleixner,
	Linus Torvalds, Andy Shevchenko, Gilles Muller,
	Greg Kroah-Hartman, Linus Walleij, Masahiro Yamada, Michal Marek,
	Nicolas Palix

sob., 19 paź 2019 o 14:09 Alexandre Belloni
<alexandre.belloni@bootlin.com> napisał(a):
>
> On 19/10/2019 11:00:47+0200, Markus Elfring wrote:
> > > While it is useful for new drivers to use devm_platform_ioremap_resource,
> >
> > This is nice.
> >
> >
> > > this script is currently used to spam maintainers,
> >
> > This view is unfortunate.
> >
> > Do we stumble on a target conflict again?
> >
> >
> > > often updating very old drivers.
> >
> > This can also happen.
> >
> >
> > > The net benefit is the removal of 2 lines of code in the driver
> >
> > Additional effects can be reconsidered, can't they?
> >
>
> What are the additional effects? What is the end goal of converting all
> the existing drivers to devm_platform_ioremap_resource? The existing
> code is currently always correct and it is difficult to see how this
> would lead to any bug avoidance in the long term.
>
> > > but the review load for the maintainers is huge.
> >
> > Does collateral evolution trigger a remarkable amount of changes occasionally?
> >
>
> This is not an evolution, it is unnecessary churn. Those patches have no
> benefit and eat up very valuable reviewer time.
>
> >
> > How will such feedback influence the development and integration of
> > further scripts for the semantic patch language (Coccinelle software)?
> >
>
> There are a few other scripts that have no added value when applied to
> existing code, like ptr_ret.cocci.
>
> --
> Alexandre Belloni, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

Hi Alexandre,

Markus has been black-listed by several core maintainers already, I
think you're wasting your time arguing. WRT the patch: when
introducing this wrapper, I definitely didn't expect people to send
hundreds of often wrong patches based on coccinelle reports, so I
guess removing the script is correct.

Bart

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 14:29       ` Bartosz Golaszewski
  0 siblings, 0 replies; 57+ messages in thread
From: Bartosz Golaszewski @ 2019-10-19 14:29 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Nicolas Palix, Michal Marek, Arnd Bergmann, Marc Zyngier,
	Linus Walleij, kernel-janitors, LKML, Linus Torvalds,
	Markus Elfring, Greg Kroah-Hartman, Thomas Gleixner,
	Andy Shevchenko, Coccinelle

sob., 19 paź 2019 o 14:09 Alexandre Belloni
<alexandre.belloni@bootlin.com> napisał(a):
>
> On 19/10/2019 11:00:47+0200, Markus Elfring wrote:
> > > While it is useful for new drivers to use devm_platform_ioremap_resource,
> >
> > This is nice.
> >
> >
> > > this script is currently used to spam maintainers,
> >
> > This view is unfortunate.
> >
> > Do we stumble on a target conflict again?
> >
> >
> > > often updating very old drivers.
> >
> > This can also happen.
> >
> >
> > > The net benefit is the removal of 2 lines of code in the driver
> >
> > Additional effects can be reconsidered, can't they?
> >
>
> What are the additional effects? What is the end goal of converting all
> the existing drivers to devm_platform_ioremap_resource? The existing
> code is currently always correct and it is difficult to see how this
> would lead to any bug avoidance in the long term.
>
> > > but the review load for the maintainers is huge.
> >
> > Does collateral evolution trigger a remarkable amount of changes occasionally?
> >
>
> This is not an evolution, it is unnecessary churn. Those patches have no
> benefit and eat up very valuable reviewer time.
>
> >
> > How will such feedback influence the development and integration of
> > further scripts for the semantic patch language (Coccinelle software)?
> >
>
> There are a few other scripts that have no added value when applied to
> existing code, like ptr_ret.cocci.
>
> --
> Alexandre Belloni, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

Hi Alexandre,

Markus has been black-listed by several core maintainers already, I
think you're wasting your time arguing. WRT the patch: when
introducing this wrapper, I definitely didn't expect people to send
hundreds of often wrong patches based on coccinelle reports, so I
guess removing the script is correct.

Bart

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

* Re: [Cocci] [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 14:29       ` Bartosz Golaszewski
  0 siblings, 0 replies; 57+ messages in thread
From: Bartosz Golaszewski @ 2019-10-19 14:29 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Nicolas Palix, Michal Marek, Arnd Bergmann, Marc Zyngier,
	Linus Walleij, kernel-janitors, LKML, Linus Torvalds,
	Markus Elfring, Greg Kroah-Hartman, Thomas Gleixner,
	Andy Shevchenko, Coccinelle

sob., 19 paź 2019 o 14:09 Alexandre Belloni
<alexandre.belloni@bootlin.com> napisał(a):
>
> On 19/10/2019 11:00:47+0200, Markus Elfring wrote:
> > > While it is useful for new drivers to use devm_platform_ioremap_resource,
> >
> > This is nice.
> >
> >
> > > this script is currently used to spam maintainers,
> >
> > This view is unfortunate.
> >
> > Do we stumble on a target conflict again?
> >
> >
> > > often updating very old drivers.
> >
> > This can also happen.
> >
> >
> > > The net benefit is the removal of 2 lines of code in the driver
> >
> > Additional effects can be reconsidered, can't they?
> >
>
> What are the additional effects? What is the end goal of converting all
> the existing drivers to devm_platform_ioremap_resource? The existing
> code is currently always correct and it is difficult to see how this
> would lead to any bug avoidance in the long term.
>
> > > but the review load for the maintainers is huge.
> >
> > Does collateral evolution trigger a remarkable amount of changes occasionally?
> >
>
> This is not an evolution, it is unnecessary churn. Those patches have no
> benefit and eat up very valuable reviewer time.
>
> >
> > How will such feedback influence the development and integration of
> > further scripts for the semantic patch language (Coccinelle software)?
> >
>
> There are a few other scripts that have no added value when applied to
> existing code, like ptr_ret.cocci.
>
> --
> Alexandre Belloni, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

Hi Alexandre,

Markus has been black-listed by several core maintainers already, I
think you're wasting your time arguing. WRT the patch: when
introducing this wrapper, I definitely didn't expect people to send
hundreds of often wrong patches based on coccinelle reports, so I
guess removing the script is correct.

Bart
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 14:29       ` Bartosz Golaszewski
  (?)
@ 2019-10-19 16:36         ` Markus Elfring
  -1 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 16:36 UTC (permalink / raw)
  To: Bartosz Golaszewski, Alexandre Belloni, kernel-janitors, Coccinelle
  Cc: Julia Lawall, Himanshu Jha, Arnd Bergmann, Marc Zyngier,
	Thomas Gleixner, Linus Torvalds, Andy Shevchenko, Gilles Muller,
	Greg Kroah-Hartman, Linus Walleij, Masahiro Yamada, Michal Marek,
	Nicolas Palix, LKML

> Markus has been black-listed by several core maintainers already,

I am still curious if this communication filter will ever be adjusted
in more positive directions.


> I think you're wasting your time arguing.

I hope that also this software development discussion can become
more constructive.


> WRT the patch: when introducing this wrapper, I definitely didn't expect
> people to send hundreds of often wrong patches based on coccinelle reports,

The reality can provide various surprises.


> so I guess removing the script is correct.

I suggest to reconsider this conclusion once more.
The application of SmPL script variants can be continued despite
of the recently committed file removal.


The constraints for the usage of available scripts for the semantic patch language
are explained to some degree.
https://bottest.wiki.kernel.org/coccicheck

Regards,
Markus

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

* Re: [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 16:36         ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 16:36 UTC (permalink / raw)
  To: Bartosz Golaszewski, Alexandre Belloni, kernel-janitors, Coccinelle
  Cc: Michal Marek, Arnd Bergmann, Marc Zyngier, Linus Walleij,
	Nicolas Palix, LKML, Linus Torvalds, Greg Kroah-Hartman,
	Thomas Gleixner, Andy Shevchenko

> Markus has been black-listed by several core maintainers already,

I am still curious if this communication filter will ever be adjusted
in more positive directions.


> I think you're wasting your time arguing.

I hope that also this software development discussion can become
more constructive.


> WRT the patch: when introducing this wrapper, I definitely didn't expect
> people to send hundreds of often wrong patches based on coccinelle reports,

The reality can provide various surprises.


> so I guess removing the script is correct.

I suggest to reconsider this conclusion once more.
The application of SmPL script variants can be continued despite
of the recently committed file removal.


The constraints for the usage of available scripts for the semantic patch language
are explained to some degree.
https://bottest.wiki.kernel.org/coccicheck

Regards,
Markus

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

* Re: [Cocci] [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 16:36         ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-19 16:36 UTC (permalink / raw)
  To: Bartosz Golaszewski, Alexandre Belloni, kernel-janitors, Coccinelle
  Cc: Michal Marek, Arnd Bergmann, Marc Zyngier, Linus Walleij,
	Nicolas Palix, LKML, Linus Torvalds, Greg Kroah-Hartman,
	Thomas Gleixner, Andy Shevchenko

> Markus has been black-listed by several core maintainers already,

I am still curious if this communication filter will ever be adjusted
in more positive directions.


> I think you're wasting your time arguing.

I hope that also this software development discussion can become
more constructive.


> WRT the patch: when introducing this wrapper, I definitely didn't expect
> people to send hundreds of often wrong patches based on coccinelle reports,

The reality can provide various surprises.


> so I guess removing the script is correct.

I suggest to reconsider this conclusion once more.
The application of SmPL script variants can be continued despite
of the recently committed file removal.


The constraints for the usage of available scripts for the semantic patch language
are explained to some degree.
https://bottest.wiki.kernel.org/coccicheck

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 11:35     ` Markus Elfring
  (?)
@ 2019-10-19 20:43       ` Marc Zyngier
  -1 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-19 20:43 UTC (permalink / raw)
  To: Markus Elfring
  Cc: Himanshu Jha, Julia Lawall, kernel-janitors, Coccinelle,
	Alexandre Belloni, linux-kernel, Andy Shevchenko, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Masahiro Yamada, Michal Marek,
	Nicolas Palix, Thomas Gleixner, YueHaibing

On Sat, 19 Oct 2019 12:35:49 +0100,
Markus Elfring <Markus.Elfring@web.de> wrote:
> 
> > I think part of the issue is that the script reports a WARNING
> 
> How much does this information influence really the stress tolerance
> and change resistance (or acceptance) for the presented collateral evolution?
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci

-ENOPARSE.

> > for something that is definitely correct code,
> 
> Can related software improvement possibilities be taken into account
> again under other circumstances?

These patches provide no improvement whatsoever. As pointed out, they
mostly introduce bugs.

> > and could instead be simply toned down.
> 
> Does this view mean that the mentioned script for the semantic patch language
> should get another chance for integration?

Providing Coccinelle scripts that scream about perfectly valid code is
pointless, and the result is actively harmful.

If said script was providing a correct semantic patch instead of being
an incentive for people to churn untested patches that span the whole
tree, that'd be a different story. But that's not what this is about.

> > Anyway, FWIW:
> >
> > Acked-by: Marc Zyngier <maz@kernel.org>
> 
> Would you like to share any more constructive feedback?

No.

> Will similar source file mass updates be better picked up
> by other well-known Linux developers?

Certainly not for the subsystems I maintain.

	M.

-- 
Jazz is not dead, it just smells funny.

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 20:43       ` Marc Zyngier
  0 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-19 20:43 UTC (permalink / raw)
  To: Markus Elfring
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	kernel-janitors, linux-kernel, Nicolas Palix, Linus Torvalds,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sat, 19 Oct 2019 12:35:49 +0100,
Markus Elfring <Markus.Elfring@web.de> wrote:
> 
> > I think part of the issue is that the script reports a WARNING
> 
> How much does this information influence really the stress tolerance
> and change resistance (or acceptance) for the presented collateral evolution?
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci

-ENOPARSE.

> > for something that is definitely correct code,
> 
> Can related software improvement possibilities be taken into account
> again under other circumstances?

These patches provide no improvement whatsoever. As pointed out, they
mostly introduce bugs.

> > and could instead be simply toned down.
> 
> Does this view mean that the mentioned script for the semantic patch language
> should get another chance for integration?

Providing Coccinelle scripts that scream about perfectly valid code is
pointless, and the result is actively harmful.

If said script was providing a correct semantic patch instead of being
an incentive for people to churn untested patches that span the whole
tree, that'd be a different story. But that's not what this is about.

> > Anyway, FWIW:
> >
> > Acked-by: Marc Zyngier <maz@kernel.org>
> 
> Would you like to share any more constructive feedback?

No.

> Will similar source file mass updates be better picked up
> by other well-known Linux developers?

Certainly not for the subsystems I maintain.

	M.

-- 
Jazz is not dead, it just smells funny.

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 20:43       ` Marc Zyngier
  0 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-19 20:43 UTC (permalink / raw)
  To: Markus Elfring
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	kernel-janitors, linux-kernel, Nicolas Palix, Linus Torvalds,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sat, 19 Oct 2019 12:35:49 +0100,
Markus Elfring <Markus.Elfring@web.de> wrote:
> 
> > I think part of the issue is that the script reports a WARNING
> 
> How much does this information influence really the stress tolerance
> and change resistance (or acceptance) for the presented collateral evolution?
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci

-ENOPARSE.

> > for something that is definitely correct code,
> 
> Can related software improvement possibilities be taken into account
> again under other circumstances?

These patches provide no improvement whatsoever. As pointed out, they
mostly introduce bugs.

> > and could instead be simply toned down.
> 
> Does this view mean that the mentioned script for the semantic patch language
> should get another chance for integration?

Providing Coccinelle scripts that scream about perfectly valid code is
pointless, and the result is actively harmful.

If said script was providing a correct semantic patch instead of being
an incentive for people to churn untested patches that span the whole
tree, that'd be a different story. But that's not what this is about.

> > Anyway, FWIW:
> >
> > Acked-by: Marc Zyngier <maz@kernel.org>
> 
> Would you like to share any more constructive feedback?

No.

> Will similar source file mass updates be better picked up
> by other well-known Linux developers?

Certainly not for the subsystems I maintain.

	M.

-- 
Jazz is not dead, it just smells funny.
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 20:43       ` Marc Zyngier
  (?)
@ 2019-10-19 22:13         ` Joe Perches
  -1 siblings, 0 replies; 57+ messages in thread
From: Joe Perches @ 2019-10-19 22:13 UTC (permalink / raw)
  To: Marc Zyngier, Markus Elfring
  Cc: Himanshu Jha, Julia Lawall, kernel-janitors, Coccinelle,
	Alexandre Belloni, linux-kernel, Andy Shevchenko, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Masahiro Yamada, Michal Marek,
	Nicolas Palix, Thomas Gleixner, YueHaibing

On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> Providing Coccinelle scripts that scream about perfectly valid code is
> pointless, and the result is actively harmful.

Doubtful.

If the new code is smaller object code and correct
than the conversion is worthwhile.

fyi:

There are already ~450 uses of this function and maybe
~800 possible additional conversions.

> If said script was providing a correct semantic patch instead of being
> an incentive for people to churn untested patches that span the whole
> tree, that'd be a different story.

Right.



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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 22:13         ` Joe Perches
  0 siblings, 0 replies; 57+ messages in thread
From: Joe Perches @ 2019-10-19 22:13 UTC (permalink / raw)
  To: Marc Zyngier, Markus Elfring
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	kernel-janitors, linux-kernel, Nicolas Palix, Linus Torvalds,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> Providing Coccinelle scripts that scream about perfectly valid code is
> pointless, and the result is actively harmful.

Doubtful.

If the new code is smaller object code and correct
than the conversion is worthwhile.

fyi:

There are already ~450 uses of this function and maybe
~800 possible additional conversions.

> If said script was providing a correct semantic patch instead of being
> an incentive for people to churn untested patches that span the whole
> tree, that'd be a different story.

Right.

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-19 22:13         ` Joe Perches
  0 siblings, 0 replies; 57+ messages in thread
From: Joe Perches @ 2019-10-19 22:13 UTC (permalink / raw)
  To: Marc Zyngier, Markus Elfring
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	kernel-janitors, linux-kernel, Nicolas Palix, Linus Torvalds,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> Providing Coccinelle scripts that scream about perfectly valid code is
> pointless, and the result is actively harmful.

Doubtful.

If the new code is smaller object code and correct
than the conversion is worthwhile.

fyi:

There are already ~450 uses of this function and maybe
~800 possible additional conversions.

> If said script was providing a correct semantic patch instead of being
> an incentive for people to churn untested patches that span the whole
> tree, that'd be a different story.

Right.


_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 20:43       ` Marc Zyngier
  (?)
@ 2019-10-20  5:38         ` Julia Lawall
  -1 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-20  5:38 UTC (permalink / raw)
  To: Marc Zyngier
  Cc: Markus Elfring, Himanshu Jha, Julia Lawall, kernel-janitors,
	Coccinelle, Alexandre Belloni, linux-kernel, Andy Shevchenko,
	Arnd Bergmann, Bartosz Golaszewski, Gilles Muller,
	Greg Kroah-Hartman, Linus Torvalds, Linus Walleij,
	Masahiro Yamada, Michal Marek, Nicolas Palix, Thomas Gleixner,
	YueHaibing

> If said script was providing a correct semantic patch instead of being
> an incentive for people to churn untested patches that span the whole
> tree, that'd be a different story. But that's not what this is about.

What is the actual incorrectness with the script?

An option could be to adjust the rule such that it can be run with an
extra command line option, like -D developer but is not run by default by
make coccicheck.

thanks,
julia

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-20  5:38         ` Julia Lawall
  0 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-20  5:38 UTC (permalink / raw)
  To: Marc Zyngier
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	kernel-janitors, linux-kernel, Nicolas Palix, Linus Torvalds,
	Markus Elfring, Thomas Gleixner, Andy Shevchenko, Coccinelle

> If said script was providing a correct semantic patch instead of being
> an incentive for people to churn untested patches that span the whole
> tree, that'd be a different story. But that's not what this is about.

What is the actual incorrectness with the script?

An option could be to adjust the rule such that it can be run with an
extra command line option, like -D developer but is not run by default by
make coccicheck.

thanks,
julia

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-20  5:38         ` Julia Lawall
  0 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-20  5:38 UTC (permalink / raw)
  To: Marc Zyngier
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	kernel-janitors, linux-kernel, Nicolas Palix, Linus Torvalds,
	Markus Elfring, Thomas Gleixner, Andy Shevchenko, Coccinelle

> If said script was providing a correct semantic patch instead of being
> an incentive for people to churn untested patches that span the whole
> tree, that'd be a different story. But that's not what this is about.

What is the actual incorrectness with the script?

An option could be to adjust the rule such that it can be run with an
extra command line option, like -D developer but is not run by default by
make coccicheck.

thanks,
julia
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 20:43       ` Marc Zyngier
  (?)
@ 2019-10-20  5:45         ` Markus Elfring
  -1 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-20  5:45 UTC (permalink / raw)
  To: Marc Zyngier, kernel-janitors, Coccinelle
  Cc: Himanshu Jha, Julia Lawall, Alexandre Belloni, Andy Shevchenko,
	Arnd Bergmann, Bartosz Golaszewski, Gilles Muller,
	Greg Kroah-Hartman, Linus Torvalds, Linus Walleij,
	Masahiro Yamada, Michal Marek, Nicolas Palix, Thomas Gleixner,
	YueHaibing, LKML

>>> I think part of the issue is that the script reports a WARNING

Would anybody like to change this category to “INFO”?


>> How much does this information influence really the stress tolerance
>> and change resistance (or acceptance) for the presented collateral evolution?
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
>
> -ENOPARSE.

* Automated processes can trigger also big amounts of possible adjustments.

* The software development capacity will vary for affected components
  during the years.

* Implementing changes is a recurring project management task, isn't it?


>>> for something that is definitely correct code,
>>
>> Can related software improvement possibilities be taken into account
>> again under other circumstances?
>
> These patches provide no improvement whatsoever.

* Do you find information from the description of a corresponding
  commit 7945f929f1a77a1c8887a97ca07f87626858ff42
  ("drivers: provide devm_platform_ioremap_resource()") reasonable?
  https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/drivers/base/platform.c

* How do you think about to compare any differences with
  software build results?


> As pointed out, they mostly introduce bugs.

Would you like to check any error statistics in more detail?


> Providing Coccinelle scripts that scream about perfectly valid code is pointless,

They usually point opportunities out for further collateral evolution,
don't they?


> and the result is actively harmful.

You might not like some changes for a while.


> If said script was providing a correct semantic patch

I got the impression that this can also happen often enough.
Would you like to check the concrete transformation failure rate once more?


> instead of being an incentive for people to churn untested patches
> that span the whole tree, that'd be a different story.

Various developers got motivated to achieve something (possible improvements?)
also by the means of available software analysis tools.
Mistakes can then happen as usual during such adjustment attempts.


> But that's not what this is about.

I guess that your software development concerns can be clarified a bit more.

Regards,
Markus

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-20  5:45         ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-20  5:45 UTC (permalink / raw)
  To: Marc Zyngier, kernel-janitors, Coccinelle
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	Nicolas Palix, LKML, Linus Torvalds, Thomas Gleixner,
	Andy Shevchenko

>>> I think part of the issue is that the script reports a WARNING

Would anybody like to change this category to “INFO”?


>> How much does this information influence really the stress tolerance
>> and change resistance (or acceptance) for the presented collateral evolution?
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
>
> -ENOPARSE.

* Automated processes can trigger also big amounts of possible adjustments.

* The software development capacity will vary for affected components
  during the years.

* Implementing changes is a recurring project management task, isn't it?


>>> for something that is definitely correct code,
>>
>> Can related software improvement possibilities be taken into account
>> again under other circumstances?
>
> These patches provide no improvement whatsoever.

* Do you find information from the description of a corresponding
  commit 7945f929f1a77a1c8887a97ca07f87626858ff42
  ("drivers: provide devm_platform_ioremap_resource()") reasonable?
  https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/drivers/base/platform.c

* How do you think about to compare any differences with
  software build results?


> As pointed out, they mostly introduce bugs.

Would you like to check any error statistics in more detail?


> Providing Coccinelle scripts that scream about perfectly valid code is pointless,

They usually point opportunities out for further collateral evolution,
don't they?


> and the result is actively harmful.

You might not like some changes for a while.


> If said script was providing a correct semantic patch

I got the impression that this can also happen often enough.
Would you like to check the concrete transformation failure rate once more?


> instead of being an incentive for people to churn untested patches
> that span the whole tree, that'd be a different story.

Various developers got motivated to achieve something (possible improvements?)
also by the means of available software analysis tools.
Mistakes can then happen as usual during such adjustment attempts.


> But that's not what this is about.

I guess that your software development concerns can be clarified a bit more.

Regards,
Markus

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-20  5:45         ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-20  5:45 UTC (permalink / raw)
  To: Marc Zyngier, kernel-janitors, Coccinelle
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Greg Kroah-Hartman, Linus Walleij,
	Nicolas Palix, LKML, Linus Torvalds, Thomas Gleixner,
	Andy Shevchenko

>>> I think part of the issue is that the script reports a WARNING

Would anybody like to change this category to “INFO”?


>> How much does this information influence really the stress tolerance
>> and change resistance (or acceptance) for the presented collateral evolution?
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/scripts/coccinelle/api/devm_platform_ioremap_resource.cocci
>
> -ENOPARSE.

* Automated processes can trigger also big amounts of possible adjustments.

* The software development capacity will vary for affected components
  during the years.

* Implementing changes is a recurring project management task, isn't it?


>>> for something that is definitely correct code,
>>
>> Can related software improvement possibilities be taken into account
>> again under other circumstances?
>
> These patches provide no improvement whatsoever.

* Do you find information from the description of a corresponding
  commit 7945f929f1a77a1c8887a97ca07f87626858ff42
  ("drivers: provide devm_platform_ioremap_resource()") reasonable?
  https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/drivers/base/platform.c

* How do you think about to compare any differences with
  software build results?


> As pointed out, they mostly introduce bugs.

Would you like to check any error statistics in more detail?


> Providing Coccinelle scripts that scream about perfectly valid code is pointless,

They usually point opportunities out for further collateral evolution,
don't they?


> and the result is actively harmful.

You might not like some changes for a while.


> If said script was providing a correct semantic patch

I got the impression that this can also happen often enough.
Would you like to check the concrete transformation failure rate once more?


> instead of being an incentive for people to churn untested patches
> that span the whole tree, that'd be a different story.

Various developers got motivated to achieve something (possible improvements?)
also by the means of available software analysis tools.
Mistakes can then happen as usual during such adjustment attempts.


> But that's not what this is about.

I guess that your software development concerns can be clarified a bit more.

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-20  5:38         ` Julia Lawall
  (?)
@ 2019-10-20  9:34           ` Marc Zyngier
  -1 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-20  9:34 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Markus Elfring, Himanshu Jha, kernel-janitors, Coccinelle,
	Alexandre Belloni, linux-kernel, Andy Shevchenko, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Masahiro Yamada, Michal Marek,
	Nicolas Palix, Thomas Gleixner, YueHaibing

On Sun, 20 Oct 2019 06:38:30 +0100,
Julia Lawall <julia.lawall@lip6.fr> wrote:
> 
> > If said script was providing a correct semantic patch instead of being
> > an incentive for people to churn untested patches that span the whole
> > tree, that'd be a different story. But that's not what this is about.
> 
> What is the actual incorrectness with the script?

The first thing is that it spits out a "WARNING", which is almost
universally interpreted as something that needs addressing. In this
case, it really doesn't. The suggested helper is only icing sugar, and
the original code is perfectly fine.

The second thing is that it results in people posting patches they
don't even compile, let alone test. There would be a good chance for
these patches to be correct if the script was directly generating
them, but that's unfortunately not the case.

> An option could be to adjust the rule such that it can be run with an
> extra command line option, like -D developer but is not run by default by
> make coccicheck.

Maybe. I'm not sure this will deter people from running these scripts
and sending broken patches anyway. No matter how many safeguards you
put, people will still post broken patches just because they can.

	M.

-- 
Jazz is not dead, it just smells funny.

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-20  9:34           ` Marc Zyngier
  0 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-20  9:34 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Greg Kroah-Hartman, Linus Walleij, kernel-janitors, linux-kernel,
	Nicolas Palix, Bartosz Golaszewski, Linus Torvalds,
	Markus Elfring, Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sun, 20 Oct 2019 06:38:30 +0100,
Julia Lawall <julia.lawall@lip6.fr> wrote:
> 
> > If said script was providing a correct semantic patch instead of being
> > an incentive for people to churn untested patches that span the whole
> > tree, that'd be a different story. But that's not what this is about.
> 
> What is the actual incorrectness with the script?

The first thing is that it spits out a "WARNING", which is almost
universally interpreted as something that needs addressing. In this
case, it really doesn't. The suggested helper is only icing sugar, and
the original code is perfectly fine.

The second thing is that it results in people posting patches they
don't even compile, let alone test. There would be a good chance for
these patches to be correct if the script was directly generating
them, but that's unfortunately not the case.

> An option could be to adjust the rule such that it can be run with an
> extra command line option, like -D developer but is not run by default by
> make coccicheck.

Maybe. I'm not sure this will deter people from running these scripts
and sending broken patches anyway. No matter how many safeguards you
put, people will still post broken patches just because they can.

	M.

-- 
Jazz is not dead, it just smells funny.

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-20  9:34           ` Marc Zyngier
  0 siblings, 0 replies; 57+ messages in thread
From: Marc Zyngier @ 2019-10-20  9:34 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Greg Kroah-Hartman, Linus Walleij, kernel-janitors, linux-kernel,
	Nicolas Palix, Bartosz Golaszewski, Linus Torvalds,
	Markus Elfring, Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sun, 20 Oct 2019 06:38:30 +0100,
Julia Lawall <julia.lawall@lip6.fr> wrote:
> 
> > If said script was providing a correct semantic patch instead of being
> > an incentive for people to churn untested patches that span the whole
> > tree, that'd be a different story. But that's not what this is about.
> 
> What is the actual incorrectness with the script?

The first thing is that it spits out a "WARNING", which is almost
universally interpreted as something that needs addressing. In this
case, it really doesn't. The suggested helper is only icing sugar, and
the original code is perfectly fine.

The second thing is that it results in people posting patches they
don't even compile, let alone test. There would be a good chance for
these patches to be correct if the script was directly generating
them, but that's unfortunately not the case.

> An option could be to adjust the rule such that it can be run with an
> extra command line option, like -D developer but is not run by default by
> make coccicheck.

Maybe. I'm not sure this will deter people from running these scripts
and sending broken patches anyway. No matter how many safeguards you
put, people will still post broken patches just because they can.

	M.

-- 
Jazz is not dead, it just smells funny.
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-19 22:13         ` Joe Perches
  (?)
@ 2019-10-24 15:40           ` Masahiro Yamada
  -1 siblings, 0 replies; 57+ messages in thread
From: Masahiro Yamada @ 2019-10-24 15:40 UTC (permalink / raw)
  To: Joe Perches
  Cc: Marc Zyngier, Markus Elfring, Himanshu Jha, Julia Lawall,
	kernel-janitors, Coccinelle, Alexandre Belloni,
	Linux Kernel Mailing List, Andy Shevchenko, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Michal Marek, Nicolas Palix,
	Thomas Gleixner, YueHaibing

On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
>
> On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> > Providing Coccinelle scripts that scream about perfectly valid code is
> > pointless, and the result is actively harmful.
>
> Doubtful.
>
> If the new code is smaller object code and correct
> than the conversion is worthwhile.

I agree.

We use multi-platform defconfig.
I always appreciate the code refactoring
that reduces the object size.



> fyi:
>
> There are already ~450 uses of this function and maybe
> ~800 possible additional conversions.
>
> > If said script was providing a correct semantic patch instead of being
> > an incentive for people to churn untested patches that span the whole
> > tree, that'd be a different story.
>
> Right.
>
>


Alexandre Belloni used
https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
as a reference, but this is not the output from coccicheck.
The patch author just created a wrong patch by hand.

The deleted semantic patch supports MODE=patch,
which creates a correct patch, and is useful.


-- 
Best Regards
Masahiro Yamada

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-24 15:40           ` Masahiro Yamada
  0 siblings, 0 replies; 57+ messages in thread
From: Masahiro Yamada @ 2019-10-24 15:40 UTC (permalink / raw)
  To: Joe Perches
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij,
	kernel-janitors, Linux Kernel Mailing List, Nicolas Palix,
	Linus Torvalds, Markus Elfring, Greg Kroah-Hartman,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
>
> On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> > Providing Coccinelle scripts that scream about perfectly valid code is
> > pointless, and the result is actively harmful.
>
> Doubtful.
>
> If the new code is smaller object code and correct
> than the conversion is worthwhile.

I agree.

We use multi-platform defconfig.
I always appreciate the code refactoring
that reduces the object size.



> fyi:
>
> There are already ~450 uses of this function and maybe
> ~800 possible additional conversions.
>
> > If said script was providing a correct semantic patch instead of being
> > an incentive for people to churn untested patches that span the whole
> > tree, that'd be a different story.
>
> Right.
>
>


Alexandre Belloni used
https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
as a reference, but this is not the output from coccicheck.
The patch author just created a wrong patch by hand.

The deleted semantic patch supports MODE=patch,
which creates a correct patch, and is useful.


-- 
Best Regards
Masahiro Yamada

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-24 15:40           ` Masahiro Yamada
  0 siblings, 0 replies; 57+ messages in thread
From: Masahiro Yamada @ 2019-10-24 15:40 UTC (permalink / raw)
  To: Joe Perches
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij,
	kernel-janitors, Linux Kernel Mailing List, Nicolas Palix,
	Linus Torvalds, Markus Elfring, Greg Kroah-Hartman,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
>
> On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> > Providing Coccinelle scripts that scream about perfectly valid code is
> > pointless, and the result is actively harmful.
>
> Doubtful.
>
> If the new code is smaller object code and correct
> than the conversion is worthwhile.

I agree.

We use multi-platform defconfig.
I always appreciate the code refactoring
that reduces the object size.



> fyi:
>
> There are already ~450 uses of this function and maybe
> ~800 possible additional conversions.
>
> > If said script was providing a correct semantic patch instead of being
> > an incentive for people to churn untested patches that span the whole
> > tree, that'd be a different story.
>
> Right.
>
>


Alexandre Belloni used
https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
as a reference, but this is not the output from coccicheck.
The patch author just created a wrong patch by hand.

The deleted semantic patch supports MODE=patch,
which creates a correct patch, and is useful.


-- 
Best Regards
Masahiro Yamada
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-24 15:40           ` Masahiro Yamada
  (?)
@ 2019-10-24 18:30             ` Markus Elfring
  -1 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-24 18:30 UTC (permalink / raw)
  To: Masahiro Yamada, kernel-janitors, Coccinelle
  Cc: Joe Perches, Marc Zyngier, Himanshu Jha, Julia Lawall,
	Alexandre Belloni, Andy Shevchenko, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Michal Marek, Nicolas Palix,
	Thomas Gleixner, YueHaibing, LKML

> I always appreciate the code refactoring
> that reduces the object size.

Would you like to compare effects around conversions for
the mentioned wrapper function any more?

Regards,
Markus

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-24 18:30             ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-24 18:30 UTC (permalink / raw)
  To: Masahiro Yamada, kernel-janitors, Coccinelle
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij, Nicolas Palix,
	LKML, Linus Torvalds, Greg Kroah-Hartman, Joe Perches,
	Thomas Gleixner, Andy Shevchenko

> I always appreciate the code refactoring
> that reduces the object size.

Would you like to compare effects around conversions for
the mentioned wrapper function any more?

Regards,
Markus

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-24 18:30             ` Markus Elfring
  0 siblings, 0 replies; 57+ messages in thread
From: Markus Elfring @ 2019-10-24 18:30 UTC (permalink / raw)
  To: Masahiro Yamada, kernel-janitors, Coccinelle
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij, Nicolas Palix,
	LKML, Linus Torvalds, Greg Kroah-Hartman, Joe Perches,
	Thomas Gleixner, Andy Shevchenko

> I always appreciate the code refactoring
> that reduces the object size.

Would you like to compare effects around conversions for
the mentioned wrapper function any more?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-24 15:40           ` Masahiro Yamada
  (?)
@ 2019-10-25  8:08             ` Andy Shevchenko
  -1 siblings, 0 replies; 57+ messages in thread
From: Andy Shevchenko @ 2019-10-25  8:08 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Joe Perches, Marc Zyngier, Markus Elfring, Himanshu Jha,
	Julia Lawall, kernel-janitors, Coccinelle, Alexandre Belloni,
	Linux Kernel Mailing List, Arnd Bergmann, Bartosz Golaszewski,
	Gilles Muller, Greg Kroah-Hartman, Linus Torvalds, Linus Walleij,
	Michal Marek, Nicolas Palix, Thomas Gleixner, YueHaibing

On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:

> Alexandre Belloni used
> https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> as a reference, but this is not the output from coccicheck.
> The patch author just created a wrong patch by hand.

Exactly. Removal of the script is a mistake. Like I said before is a healing
(incorrect by the way!) by symptoms.

> The deleted semantic patch supports MODE=patch,
> which creates a correct patch, and is useful.

Right!

-- 
With Best Regards,
Andy Shevchenko



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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-25  8:08             ` Andy Shevchenko
  0 siblings, 0 replies; 57+ messages in thread
From: Andy Shevchenko @ 2019-10-25  8:08 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij,
	kernel-janitors, Linux Kernel Mailing List, Linus Torvalds,
	Markus Elfring, Greg Kroah-Hartman, Joe Perches, Thomas Gleixner,
	Nicolas Palix, Coccinelle

On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:

> Alexandre Belloni used
> https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> as a reference, but this is not the output from coccicheck.
> The patch author just created a wrong patch by hand.

Exactly. Removal of the script is a mistake. Like I said before is a healing
(incorrect by the way!) by symptoms.

> The deleted semantic patch supports MODE=patch,
> which creates a correct patch, and is useful.

Right!

-- 
With Best Regards,
Andy Shevchenko

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-25  8:08             ` Andy Shevchenko
  0 siblings, 0 replies; 57+ messages in thread
From: Andy Shevchenko @ 2019-10-25  8:08 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij,
	kernel-janitors, Linux Kernel Mailing List, Linus Torvalds,
	Markus Elfring, Greg Kroah-Hartman, Joe Perches, Thomas Gleixner,
	Nicolas Palix, Coccinelle

On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:

> Alexandre Belloni used
> https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> as a reference, but this is not the output from coccicheck.
> The patch author just created a wrong patch by hand.

Exactly. Removal of the script is a mistake. Like I said before is a healing
(incorrect by the way!) by symptoms.

> The deleted semantic patch supports MODE=patch,
> which creates a correct patch, and is useful.

Right!

-- 
With Best Regards,
Andy Shevchenko


_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-25  8:08             ` Andy Shevchenko
  (?)
@ 2019-10-25  8:38               ` Julia Lawall
  -1 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-25  8:38 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Masahiro Yamada, Joe Perches, Marc Zyngier, Markus Elfring,
	Himanshu Jha, Julia Lawall, kernel-janitors, Coccinelle,
	Alexandre Belloni, Linux Kernel Mailing List, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Michal Marek, Nicolas Palix,
	Thomas Gleixner, YueHaibing



On Fri, 25 Oct 2019, Andy Shevchenko wrote:

> On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
>
> > Alexandre Belloni used
> > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > as a reference, but this is not the output from coccicheck.
> > The patch author just created a wrong patch by hand.
>
> Exactly. Removal of the script is a mistake. Like I said before is a healing
> (incorrect by the way!) by symptoms.
>
> > The deleted semantic patch supports MODE=patch,
> > which creates a correct patch, and is useful.
>
> Right!

I ran it on the version of Linux that still has the script:

fe7d2c23d748e4206f4bef9330d0dff9abed7411

and managed to compile 341 of the generated files in the time I had
available, and all compiled successfully.  I can let it run again, and see
how it goes for the rest.  Perhaps it would be acceptable if there was no
report, and people would be forced to use the generated patch?

If someone is writing lots of patches on this issue by hand, then perhaps
they don't have make coccicheck to produce patches, and then would
overlook this case completely.

If it would be helpful, I could group the generated patches by maintainer
or by subdirectory and send them out, if it would be easier to review them
all at once.

Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
open to whatever people find best.  Personally, I prefer when same things
are done in the same way - it makes the code easier to understand and
makes it simpler to address other issues when they arise.

julia

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-25  8:38               ` Julia Lawall
  0 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-25  8:38 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Marc Zyngier, Linus Walleij, kernel-janitors,
	Linux Kernel Mailing List, Linus Torvalds, Markus Elfring,
	Greg Kroah-Hartman, Joe Perches, Bartosz Golaszewski,
	Thomas Gleixner, Nicolas Palix, Coccinelle



On Fri, 25 Oct 2019, Andy Shevchenko wrote:

> On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
>
> > Alexandre Belloni used
> > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > as a reference, but this is not the output from coccicheck.
> > The patch author just created a wrong patch by hand.
>
> Exactly. Removal of the script is a mistake. Like I said before is a healing
> (incorrect by the way!) by symptoms.
>
> > The deleted semantic patch supports MODE=patch,
> > which creates a correct patch, and is useful.
>
> Right!

I ran it on the version of Linux that still has the script:

fe7d2c23d748e4206f4bef9330d0dff9abed7411

and managed to compile 341 of the generated files in the time I had
available, and all compiled successfully.  I can let it run again, and see
how it goes for the rest.  Perhaps it would be acceptable if there was no
report, and people would be forced to use the generated patch?

If someone is writing lots of patches on this issue by hand, then perhaps
they don't have make coccicheck to produce patches, and then would
overlook this case completely.

If it would be helpful, I could group the generated patches by maintainer
or by subdirectory and send them out, if it would be easier to review them
all at once.

Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
open to whatever people find best.  Personally, I prefer when same things
are done in the same way - it makes the code easier to understand and
makes it simpler to address other issues when they arise.

julia

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-25  8:38               ` Julia Lawall
  0 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-25  8:38 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Marc Zyngier, Linus Walleij, kernel-janitors,
	Linux Kernel Mailing List, Linus Torvalds, Markus Elfring,
	Greg Kroah-Hartman, Joe Perches, Bartosz Golaszewski,
	Thomas Gleixner, Nicolas Palix, Coccinelle



On Fri, 25 Oct 2019, Andy Shevchenko wrote:

> On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
>
> > Alexandre Belloni used
> > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > as a reference, but this is not the output from coccicheck.
> > The patch author just created a wrong patch by hand.
>
> Exactly. Removal of the script is a mistake. Like I said before is a healing
> (incorrect by the way!) by symptoms.
>
> > The deleted semantic patch supports MODE=patch,
> > which creates a correct patch, and is useful.
>
> Right!

I ran it on the version of Linux that still has the script:

fe7d2c23d748e4206f4bef9330d0dff9abed7411

and managed to compile 341 of the generated files in the time I had
available, and all compiled successfully.  I can let it run again, and see
how it goes for the rest.  Perhaps it would be acceptable if there was no
report, and people would be forced to use the generated patch?

If someone is writing lots of patches on this issue by hand, then perhaps
they don't have make coccicheck to produce patches, and then would
overlook this case completely.

If it would be helpful, I could group the generated patches by maintainer
or by subdirectory and send them out, if it would be easier to review them
all at once.

Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
open to whatever people find best.  Personally, I prefer when same things
are done in the same way - it makes the code easier to understand and
makes it simpler to address other issues when they arise.

julia
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-25  8:38               ` Julia Lawall
  (?)
@ 2019-10-29  2:58                 ` Masahiro Yamada
  -1 siblings, 0 replies; 57+ messages in thread
From: Masahiro Yamada @ 2019-10-29  2:58 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Andy Shevchenko, Joe Perches, Marc Zyngier, Markus Elfring,
	Himanshu Jha, kernel-janitors, Coccinelle, Alexandre Belloni,
	Linux Kernel Mailing List, Arnd Bergmann, Bartosz Golaszewski,
	Gilles Muller, Greg Kroah-Hartman, Linus Torvalds, Linus Walleij,
	Michal Marek, Nicolas Palix, Thomas Gleixner, YueHaibing

Hi Julia

On Fri, Oct 25, 2019 at 5:38 PM Julia Lawall <julia.lawall@lip6.fr> wrote:
>
>
>
> On Fri, 25 Oct 2019, Andy Shevchenko wrote:
>
> > On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> >
> > > Alexandre Belloni used
> > > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > > as a reference, but this is not the output from coccicheck.
> > > The patch author just created a wrong patch by hand.
> >
> > Exactly. Removal of the script is a mistake. Like I said before is a healing
> > (incorrect by the way!) by symptoms.
> >
> > > The deleted semantic patch supports MODE=patch,
> > > which creates a correct patch, and is useful.
> >
> > Right!
>
> I ran it on the version of Linux that still has the script:
>
> fe7d2c23d748e4206f4bef9330d0dff9abed7411
>
> and managed to compile 341 of the generated files in the time I had
> available, and all compiled successfully.

Yeah, this semantic patch did the correct conversion
as its header part showed the confidence.

// Confidence: High



>  I can let it run again, and see
> how it goes for the rest.  Perhaps it would be acceptable if there was no
> report, and people would be forced to use the generated patch?

I do not think this is the right thing.
MODE=report is the default, and it is fine.

>
> If someone is writing lots of patches on this issue by hand, then perhaps
> they don't have make coccicheck to produce patches, and then would
> overlook this case completely.
>
> If it would be helpful, I could group the generated patches by maintainer
> or by subdirectory and send them out, if it would be easier to review them
> all at once.

Yes, please.

Subsystem maintainers trust you,
so I think it will make things move smoothly.

After converting most of files,
I want 283ea345934d277e30c841c577e0e2142b4bfcae reverted.


>
> Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
> open to whatever people find best.  Personally, I prefer when same things
> are done in the same way - it makes the code easier to understand and
> makes it simpler to address other issues when they arise.


We always did the same things in the same way
except commit 283ea345934d277e30c841c577e0e2142b4bfcae




-- 
Best Regards
Masahiro Yamada

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-29  2:58                 ` Masahiro Yamada
  0 siblings, 0 replies; 57+ messages in thread
From: Masahiro Yamada @ 2019-10-29  2:58 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Marc Zyngier, Linus Walleij, kernel-janitors,
	Linux Kernel Mailing List, Nicolas Palix, Bartosz Golaszewski,
	Linus Torvalds, Markus Elfring, Greg Kroah-Hartman, Joe Perches,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

Hi Julia

On Fri, Oct 25, 2019 at 5:38 PM Julia Lawall <julia.lawall@lip6.fr> wrote:
>
>
>
> On Fri, 25 Oct 2019, Andy Shevchenko wrote:
>
> > On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> >
> > > Alexandre Belloni used
> > > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > > as a reference, but this is not the output from coccicheck.
> > > The patch author just created a wrong patch by hand.
> >
> > Exactly. Removal of the script is a mistake. Like I said before is a healing
> > (incorrect by the way!) by symptoms.
> >
> > > The deleted semantic patch supports MODE=patch,
> > > which creates a correct patch, and is useful.
> >
> > Right!
>
> I ran it on the version of Linux that still has the script:
>
> fe7d2c23d748e4206f4bef9330d0dff9abed7411
>
> and managed to compile 341 of the generated files in the time I had
> available, and all compiled successfully.

Yeah, this semantic patch did the correct conversion
as its header part showed the confidence.

// Confidence: High



>  I can let it run again, and see
> how it goes for the rest.  Perhaps it would be acceptable if there was no
> report, and people would be forced to use the generated patch?

I do not think this is the right thing.
MODE=report is the default, and it is fine.

>
> If someone is writing lots of patches on this issue by hand, then perhaps
> they don't have make coccicheck to produce patches, and then would
> overlook this case completely.
>
> If it would be helpful, I could group the generated patches by maintainer
> or by subdirectory and send them out, if it would be easier to review them
> all at once.

Yes, please.

Subsystem maintainers trust you,
so I think it will make things move smoothly.

After converting most of files,
I want 283ea345934d277e30c841c577e0e2142b4bfcae reverted.


>
> Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
> open to whatever people find best.  Personally, I prefer when same things
> are done in the same way - it makes the code easier to understand and
> makes it simpler to address other issues when they arise.


We always did the same things in the same way
except commit 283ea345934d277e30c841c577e0e2142b4bfcae




-- 
Best Regards
Masahiro Yamada

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-29  2:58                 ` Masahiro Yamada
  0 siblings, 0 replies; 57+ messages in thread
From: Masahiro Yamada @ 2019-10-29  2:58 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Marc Zyngier, Linus Walleij, kernel-janitors,
	Linux Kernel Mailing List, Nicolas Palix, Bartosz Golaszewski,
	Linus Torvalds, Markus Elfring, Greg Kroah-Hartman, Joe Perches,
	Thomas Gleixner, Andy Shevchenko, Coccinelle

Hi Julia

On Fri, Oct 25, 2019 at 5:38 PM Julia Lawall <julia.lawall@lip6.fr> wrote:
>
>
>
> On Fri, 25 Oct 2019, Andy Shevchenko wrote:
>
> > On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> >
> > > Alexandre Belloni used
> > > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > > as a reference, but this is not the output from coccicheck.
> > > The patch author just created a wrong patch by hand.
> >
> > Exactly. Removal of the script is a mistake. Like I said before is a healing
> > (incorrect by the way!) by symptoms.
> >
> > > The deleted semantic patch supports MODE=patch,
> > > which creates a correct patch, and is useful.
> >
> > Right!
>
> I ran it on the version of Linux that still has the script:
>
> fe7d2c23d748e4206f4bef9330d0dff9abed7411
>
> and managed to compile 341 of the generated files in the time I had
> available, and all compiled successfully.

Yeah, this semantic patch did the correct conversion
as its header part showed the confidence.

// Confidence: High



>  I can let it run again, and see
> how it goes for the rest.  Perhaps it would be acceptable if there was no
> report, and people would be forced to use the generated patch?

I do not think this is the right thing.
MODE=report is the default, and it is fine.

>
> If someone is writing lots of patches on this issue by hand, then perhaps
> they don't have make coccicheck to produce patches, and then would
> overlook this case completely.
>
> If it would be helpful, I could group the generated patches by maintainer
> or by subdirectory and send them out, if it would be easier to review them
> all at once.

Yes, please.

Subsystem maintainers trust you,
so I think it will make things move smoothly.

After converting most of files,
I want 283ea345934d277e30c841c577e0e2142b4bfcae reverted.


>
> Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
> open to whatever people find best.  Personally, I prefer when same things
> are done in the same way - it makes the code easier to understand and
> makes it simpler to address other issues when they arise.


We always did the same things in the same way
except commit 283ea345934d277e30c841c577e0e2142b4bfcae




-- 
Best Regards
Masahiro Yamada
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
  2019-10-29  2:58                 ` Masahiro Yamada
  (?)
@ 2019-10-29  8:55                   ` Julia Lawall
  -1 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-29  8:55 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Julia Lawall, Andy Shevchenko, Joe Perches, Marc Zyngier,
	Markus Elfring, Himanshu Jha, kernel-janitors, Coccinelle,
	Alexandre Belloni, Linux Kernel Mailing List, Arnd Bergmann,
	Bartosz Golaszewski, Gilles Muller, Greg Kroah-Hartman,
	Linus Torvalds, Linus Walleij, Michal Marek, Nicolas Palix,
	Thomas Gleixner, YueHaibing



On Tue, 29 Oct 2019, Masahiro Yamada wrote:

> Hi Julia
>
> On Fri, Oct 25, 2019 at 5:38 PM Julia Lawall <julia.lawall@lip6.fr> wrote:
> >
> >
> >
> > On Fri, 25 Oct 2019, Andy Shevchenko wrote:
> >
> > > On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > > > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> > >
> > > > Alexandre Belloni used
> > > > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > > > as a reference, but this is not the output from coccicheck.
> > > > The patch author just created a wrong patch by hand.
> > >
> > > Exactly. Removal of the script is a mistake. Like I said before is a healing
> > > (incorrect by the way!) by symptoms.
> > >
> > > > The deleted semantic patch supports MODE=patch,
> > > > which creates a correct patch, and is useful.
> > >
> > > Right!
> >
> > I ran it on the version of Linux that still has the script:
> >
> > fe7d2c23d748e4206f4bef9330d0dff9abed7411
> >
> > and managed to compile 341 of the generated files in the time I had
> > available, and all compiled successfully.
>
> Yeah, this semantic patch did the correct conversion
> as its header part showed the confidence.
>
> // Confidence: High
>
>
>
> >  I can let it run again, and see
> > how it goes for the rest.  Perhaps it would be acceptable if there was no
> > report, and people would be forced to use the generated patch?
>
> I do not think this is the right thing.
> MODE=report is the default, and it is fine.
>
> >
> > If someone is writing lots of patches on this issue by hand, then perhaps
> > they don't have make coccicheck to produce patches, and then would
> > overlook this case completely.
> >
> > If it would be helpful, I could group the generated patches by maintainer
> > or by subdirectory and send them out, if it would be easier to review them
> > all at once.
>
> Yes, please.
>
> Subsystem maintainers trust you,
> so I think it will make things move smoothly.
>
> After converting most of files,
> I want 283ea345934d277e30c841c577e0e2142b4bfcae reverted.

OK.  I got 477 of the files to compile directly.  I can send patches on
them, and then look into the issues on the remaining ones (probably
configuration issues).

julia

>
>
> >
> > Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
> > open to whatever people find best.  Personally, I prefer when same things
> > are done in the same way - it makes the code easier to understand and
> > makes it simpler to address other issues when they arise.
>
>
> We always did the same things in the same way
> except commit 283ea345934d277e30c841c577e0e2142b4bfcae
>
>
>
>
> --
> Best Regards
> Masahiro Yamada
>

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

* Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-29  8:55                   ` Julia Lawall
  0 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-29  8:55 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij,
	kernel-janitors, Linux Kernel Mailing List, Nicolas Palix,
	Linus Torvalds, Markus Elfring, Greg Kroah-Hartman, Joe Perches,
	Thomas Gleixner, Andy Shevchenko, Coccinelle



On Tue, 29 Oct 2019, Masahiro Yamada wrote:

> Hi Julia
>
> On Fri, Oct 25, 2019 at 5:38 PM Julia Lawall <julia.lawall@lip6.fr> wrote:
> >
> >
> >
> > On Fri, 25 Oct 2019, Andy Shevchenko wrote:
> >
> > > On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > > > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> > >
> > > > Alexandre Belloni used
> > > > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > > > as a reference, but this is not the output from coccicheck.
> > > > The patch author just created a wrong patch by hand.
> > >
> > > Exactly. Removal of the script is a mistake. Like I said before is a healing
> > > (incorrect by the way!) by symptoms.
> > >
> > > > The deleted semantic patch supports MODE=patch,
> > > > which creates a correct patch, and is useful.
> > >
> > > Right!
> >
> > I ran it on the version of Linux that still has the script:
> >
> > fe7d2c23d748e4206f4bef9330d0dff9abed7411
> >
> > and managed to compile 341 of the generated files in the time I had
> > available, and all compiled successfully.
>
> Yeah, this semantic patch did the correct conversion
> as its header part showed the confidence.
>
> // Confidence: High
>
>
>
> >  I can let it run again, and see
> > how it goes for the rest.  Perhaps it would be acceptable if there was no
> > report, and people would be forced to use the generated patch?
>
> I do not think this is the right thing.
> MODE=report is the default, and it is fine.
>
> >
> > If someone is writing lots of patches on this issue by hand, then perhaps
> > they don't have make coccicheck to produce patches, and then would
> > overlook this case completely.
> >
> > If it would be helpful, I could group the generated patches by maintainer
> > or by subdirectory and send them out, if it would be easier to review them
> > all at once.
>
> Yes, please.
>
> Subsystem maintainers trust you,
> so I think it will make things move smoothly.
>
> After converting most of files,
> I want 283ea345934d277e30c841c577e0e2142b4bfcae reverted.

OK.  I got 477 of the files to compile directly.  I can send patches on
them, and then look into the issues on the remaining ones (probably
configuration issues).

julia

>
>
> >
> > Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
> > open to whatever people find best.  Personally, I prefer when same things
> > are done in the same way - it makes the code easier to understand and
> > makes it simpler to address other issues when they arise.
>
>
> We always did the same things in the same way
> except commit 283ea345934d277e30c841c577e0e2142b4bfcae
>
>
>
>
> --
> Best Regards
> Masahiro Yamada
>

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

* Re: [Cocci] coccinelle: api/devm_platform_ioremap_resource: remove useless script
@ 2019-10-29  8:55                   ` Julia Lawall
  0 siblings, 0 replies; 57+ messages in thread
From: Julia Lawall @ 2019-10-29  8:55 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Alexandre Belloni, Michal Marek, YueHaibing, Arnd Bergmann,
	Bartosz Golaszewski, Marc Zyngier, Linus Walleij,
	kernel-janitors, Linux Kernel Mailing List, Nicolas Palix,
	Linus Torvalds, Markus Elfring, Greg Kroah-Hartman, Joe Perches,
	Thomas Gleixner, Andy Shevchenko, Coccinelle



On Tue, 29 Oct 2019, Masahiro Yamada wrote:

> Hi Julia
>
> On Fri, Oct 25, 2019 at 5:38 PM Julia Lawall <julia.lawall@lip6.fr> wrote:
> >
> >
> >
> > On Fri, 25 Oct 2019, Andy Shevchenko wrote:
> >
> > > On Fri, Oct 25, 2019 at 12:40:52AM +0900, Masahiro Yamada wrote:
> > > > On Sun, Oct 20, 2019 at 7:13 AM Joe Perches <joe@perches.com> wrote:
> > > > > On Sat, 2019-10-19 at 21:43 +0100, Marc Zyngier wrote:
> > >
> > > > Alexandre Belloni used
> > > > https://lore.kernel.org/lkml/9bbcce19c777583815c92ce3c2ff2586@www.loen.fr/
> > > > as a reference, but this is not the output from coccicheck.
> > > > The patch author just created a wrong patch by hand.
> > >
> > > Exactly. Removal of the script is a mistake. Like I said before is a healing
> > > (incorrect by the way!) by symptoms.
> > >
> > > > The deleted semantic patch supports MODE=patch,
> > > > which creates a correct patch, and is useful.
> > >
> > > Right!
> >
> > I ran it on the version of Linux that still has the script:
> >
> > fe7d2c23d748e4206f4bef9330d0dff9abed7411
> >
> > and managed to compile 341 of the generated files in the time I had
> > available, and all compiled successfully.
>
> Yeah, this semantic patch did the correct conversion
> as its header part showed the confidence.
>
> // Confidence: High
>
>
>
> >  I can let it run again, and see
> > how it goes for the rest.  Perhaps it would be acceptable if there was no
> > report, and people would be forced to use the generated patch?
>
> I do not think this is the right thing.
> MODE=report is the default, and it is fine.
>
> >
> > If someone is writing lots of patches on this issue by hand, then perhaps
> > they don't have make coccicheck to produce patches, and then would
> > overlook this case completely.
> >
> > If it would be helpful, I could group the generated patches by maintainer
> > or by subdirectory and send them out, if it would be easier to review them
> > all at once.
>
> Yes, please.
>
> Subsystem maintainers trust you,
> so I think it will make things move smoothly.
>
> After converting most of files,
> I want 283ea345934d277e30c841c577e0e2142b4bfcae reverted.

OK.  I got 477 of the files to compile directly.  I can send patches on
them, and then look into the issues on the remaining ones (probably
configuration issues).

julia

>
>
> >
> > Anyway, the rule is not in the kernel at the moment.  For it's future, I'm
> > open to whatever people find best.  Personally, I prefer when same things
> > are done in the same way - it makes the code easier to understand and
> > makes it simpler to address other issues when they arise.
>
>
> We always did the same things in the same way
> except commit 283ea345934d277e30c841c577e0e2142b4bfcae
>
>
>
>
> --
> Best Regards
> Masahiro Yamada
>
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

end of thread, other threads:[~2019-10-29  8:56 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-17 14:22 [PATCH] coccinelle: api/devm_platform_ioremap_resource: remove useless script Alexandre Belloni
2019-10-17 14:22 ` Alexandre Belloni
2019-10-17 14:34 ` Julia Lawall
2019-10-17 14:34   ` Julia Lawall
2019-10-17 16:13 ` Marc Zyngier
2019-10-17 16:13   ` [PATCH] coccinelle: api/devm_platform_ioremap =?UTF-8?Q?=5Fresource=3A=20remove Marc Zyngier
2019-10-19 11:35   ` coccinelle: api/devm_platform_ioremap_resource: remove useless script Markus Elfring
2019-10-19 11:35     ` [Cocci] " Markus Elfring
2019-10-19 11:35     ` Markus Elfring
2019-10-19 20:43     ` Marc Zyngier
2019-10-19 20:43       ` [Cocci] " Marc Zyngier
2019-10-19 20:43       ` Marc Zyngier
2019-10-19 22:13       ` Joe Perches
2019-10-19 22:13         ` [Cocci] " Joe Perches
2019-10-19 22:13         ` Joe Perches
2019-10-24 15:40         ` Masahiro Yamada
2019-10-24 15:40           ` [Cocci] " Masahiro Yamada
2019-10-24 15:40           ` Masahiro Yamada
2019-10-24 18:30           ` Markus Elfring
2019-10-24 18:30             ` [Cocci] " Markus Elfring
2019-10-24 18:30             ` Markus Elfring
2019-10-25  8:08           ` Andy Shevchenko
2019-10-25  8:08             ` [Cocci] " Andy Shevchenko
2019-10-25  8:08             ` Andy Shevchenko
2019-10-25  8:38             ` Julia Lawall
2019-10-25  8:38               ` [Cocci] " Julia Lawall
2019-10-25  8:38               ` Julia Lawall
2019-10-29  2:58               ` Masahiro Yamada
2019-10-29  2:58                 ` [Cocci] " Masahiro Yamada
2019-10-29  2:58                 ` Masahiro Yamada
2019-10-29  8:55                 ` Julia Lawall
2019-10-29  8:55                   ` [Cocci] " Julia Lawall
2019-10-29  8:55                   ` Julia Lawall
2019-10-20  5:38       ` Julia Lawall
2019-10-20  5:38         ` [Cocci] " Julia Lawall
2019-10-20  5:38         ` Julia Lawall
2019-10-20  9:34         ` Marc Zyngier
2019-10-20  9:34           ` [Cocci] " Marc Zyngier
2019-10-20  9:34           ` Marc Zyngier
2019-10-20  5:45       ` Markus Elfring
2019-10-20  5:45         ` [Cocci] " Markus Elfring
2019-10-20  5:45         ` Markus Elfring
2019-10-19  9:00 ` [PATCH] " Markus Elfring
2019-10-19  9:00   ` [Cocci] " Markus Elfring
2019-10-19  9:00   ` Markus Elfring
2019-10-19 12:09   ` Alexandre Belloni
2019-10-19 12:09     ` [Cocci] " Alexandre Belloni
2019-10-19 12:09     ` Alexandre Belloni
2019-10-19 14:06     ` Markus Elfring
2019-10-19 14:06       ` [Cocci] " Markus Elfring
2019-10-19 14:06       ` Markus Elfring
2019-10-19 14:29     ` [PATCH] " Bartosz Golaszewski
2019-10-19 14:29       ` [Cocci] " Bartosz Golaszewski
2019-10-19 14:29       ` Bartosz Golaszewski
2019-10-19 16:36       ` Markus Elfring
2019-10-19 16:36         ` [Cocci] " Markus Elfring
2019-10-19 16:36         ` Markus Elfring

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.