All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-01  8:48 ` Neil Armstrong
  0 siblings, 0 replies; 21+ messages in thread
From: Neil Armstrong @ 2021-06-01  8:48 UTC (permalink / raw)
  To: balbi
  Cc: linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel, Neil Armstrong

When only PHY1 is used (for example on Odroid-HC4), the regmap init code
uses the usb2 ports when doesn't initialize the PHY1 regmap entry.

This fixes:
Unable to handle kernel NULL pointer dereference at virtual address 0000000000000020
...
pc : regmap_update_bits_base+0x40/0xa0
lr : dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
...
Call trace:
regmap_update_bits_base+0x40/0xa0
dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
dwc3_meson_g12a_usb2_init+0x7c/0xc8
dwc3_meson_g12a_usb_init+0x28/0x48
dwc3_meson_g12a_probe+0x298/0x540
platform_probe+0x70/0xe0
really_probe+0xf0/0x4d8
driver_probe_device+0xfc/0x168
...

Fixes: 013af227f58a97 ("usb: dwc3: meson-g12a: handle the phy and glue registers separately")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 drivers/usb/dwc3/dwc3-meson-g12a.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/dwc3/dwc3-meson-g12a.c b/drivers/usb/dwc3/dwc3-meson-g12a.c
index bdf1f98dfad8..9c944bc6d555 100644
--- a/drivers/usb/dwc3/dwc3-meson-g12a.c
+++ b/drivers/usb/dwc3/dwc3-meson-g12a.c
@@ -651,7 +651,7 @@ static int dwc3_meson_g12a_setup_regmaps(struct dwc3_meson_g12a *priv,
 		return PTR_ERR(priv->usb_glue_regmap);
 
 	/* Create a regmap for each USB2 PHY control register set */
-	for (i = 0; i < priv->usb2_ports; i++) {
+	for (i = 0; i < priv->drvdata->num_phys; i++) {
 		struct regmap_config u2p_regmap_config = {
 			.reg_bits = 8,
 			.val_bits = 32,
@@ -659,6 +659,9 @@ static int dwc3_meson_g12a_setup_regmaps(struct dwc3_meson_g12a *priv,
 			.max_register = U2P_R1,
 		};
 
+		if (!strstr(priv->drvdata->phy_names[i], "usb2"))
+			continue;
+
 		u2p_regmap_config.name = devm_kasprintf(priv->dev, GFP_KERNEL,
 							"u2p-%d", i);
 		if (!u2p_regmap_config.name)
-- 
2.25.1


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

* [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-01  8:48 ` Neil Armstrong
  0 siblings, 0 replies; 21+ messages in thread
From: Neil Armstrong @ 2021-06-01  8:48 UTC (permalink / raw)
  To: balbi
  Cc: linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel, Neil Armstrong

When only PHY1 is used (for example on Odroid-HC4), the regmap init code
uses the usb2 ports when doesn't initialize the PHY1 regmap entry.

This fixes:
Unable to handle kernel NULL pointer dereference at virtual address 0000000000000020
...
pc : regmap_update_bits_base+0x40/0xa0
lr : dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
...
Call trace:
regmap_update_bits_base+0x40/0xa0
dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
dwc3_meson_g12a_usb2_init+0x7c/0xc8
dwc3_meson_g12a_usb_init+0x28/0x48
dwc3_meson_g12a_probe+0x298/0x540
platform_probe+0x70/0xe0
really_probe+0xf0/0x4d8
driver_probe_device+0xfc/0x168
...

Fixes: 013af227f58a97 ("usb: dwc3: meson-g12a: handle the phy and glue registers separately")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 drivers/usb/dwc3/dwc3-meson-g12a.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/dwc3/dwc3-meson-g12a.c b/drivers/usb/dwc3/dwc3-meson-g12a.c
index bdf1f98dfad8..9c944bc6d555 100644
--- a/drivers/usb/dwc3/dwc3-meson-g12a.c
+++ b/drivers/usb/dwc3/dwc3-meson-g12a.c
@@ -651,7 +651,7 @@ static int dwc3_meson_g12a_setup_regmaps(struct dwc3_meson_g12a *priv,
 		return PTR_ERR(priv->usb_glue_regmap);
 
 	/* Create a regmap for each USB2 PHY control register set */
-	for (i = 0; i < priv->usb2_ports; i++) {
+	for (i = 0; i < priv->drvdata->num_phys; i++) {
 		struct regmap_config u2p_regmap_config = {
 			.reg_bits = 8,
 			.val_bits = 32,
@@ -659,6 +659,9 @@ static int dwc3_meson_g12a_setup_regmaps(struct dwc3_meson_g12a *priv,
 			.max_register = U2P_R1,
 		};
 
+		if (!strstr(priv->drvdata->phy_names[i], "usb2"))
+			continue;
+
 		u2p_regmap_config.name = devm_kasprintf(priv->dev, GFP_KERNEL,
 							"u2p-%d", i);
 		if (!u2p_regmap_config.name)
-- 
2.25.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-01  8:48 ` Neil Armstrong
  0 siblings, 0 replies; 21+ messages in thread
From: Neil Armstrong @ 2021-06-01  8:48 UTC (permalink / raw)
  To: balbi
  Cc: linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel, Neil Armstrong

When only PHY1 is used (for example on Odroid-HC4), the regmap init code
uses the usb2 ports when doesn't initialize the PHY1 regmap entry.

This fixes:
Unable to handle kernel NULL pointer dereference at virtual address 0000000000000020
...
pc : regmap_update_bits_base+0x40/0xa0
lr : dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
...
Call trace:
regmap_update_bits_base+0x40/0xa0
dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
dwc3_meson_g12a_usb2_init+0x7c/0xc8
dwc3_meson_g12a_usb_init+0x28/0x48
dwc3_meson_g12a_probe+0x298/0x540
platform_probe+0x70/0xe0
really_probe+0xf0/0x4d8
driver_probe_device+0xfc/0x168
...

Fixes: 013af227f58a97 ("usb: dwc3: meson-g12a: handle the phy and glue registers separately")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 drivers/usb/dwc3/dwc3-meson-g12a.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/dwc3/dwc3-meson-g12a.c b/drivers/usb/dwc3/dwc3-meson-g12a.c
index bdf1f98dfad8..9c944bc6d555 100644
--- a/drivers/usb/dwc3/dwc3-meson-g12a.c
+++ b/drivers/usb/dwc3/dwc3-meson-g12a.c
@@ -651,7 +651,7 @@ static int dwc3_meson_g12a_setup_regmaps(struct dwc3_meson_g12a *priv,
 		return PTR_ERR(priv->usb_glue_regmap);
 
 	/* Create a regmap for each USB2 PHY control register set */
-	for (i = 0; i < priv->usb2_ports; i++) {
+	for (i = 0; i < priv->drvdata->num_phys; i++) {
 		struct regmap_config u2p_regmap_config = {
 			.reg_bits = 8,
 			.val_bits = 32,
@@ -659,6 +659,9 @@ static int dwc3_meson_g12a_setup_regmaps(struct dwc3_meson_g12a *priv,
 			.max_register = U2P_R1,
 		};
 
+		if (!strstr(priv->drvdata->phy_names[i], "usb2"))
+			continue;
+
 		u2p_regmap_config.name = devm_kasprintf(priv->dev, GFP_KERNEL,
 							"u2p-%d", i);
 		if (!u2p_regmap_config.name)
-- 
2.25.1


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
  2021-06-01  8:48 ` Neil Armstrong
  (?)
@ 2021-06-03 18:20   ` Martin Blumenstingl
  -1 siblings, 0 replies; 21+ messages in thread
From: Martin Blumenstingl @ 2021-06-03 18:20 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On Tue, Jun 1, 2021 at 10:49 AM Neil Armstrong <narmstrong@baylibre.com> wrote:
>
> When only PHY1 is used (for example on Odroid-HC4), the regmap init code
> uses the usb2 ports when doesn't initialize the PHY1 regmap entry.
>
> This fixes:
> Unable to handle kernel NULL pointer dereference at virtual address 0000000000000020
> ...
> pc : regmap_update_bits_base+0x40/0xa0
> lr : dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
> ...
> Call trace:
> regmap_update_bits_base+0x40/0xa0
> dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
> dwc3_meson_g12a_usb2_init+0x7c/0xc8
> dwc3_meson_g12a_usb_init+0x28/0x48
> dwc3_meson_g12a_probe+0x298/0x540
> platform_probe+0x70/0xe0
> really_probe+0xf0/0x4d8
> driver_probe_device+0xfc/0x168
> ...
>
> Fixes: 013af227f58a97 ("usb: dwc3: meson-g12a: handle the phy and glue registers separately")
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-03 18:20   ` Martin Blumenstingl
  0 siblings, 0 replies; 21+ messages in thread
From: Martin Blumenstingl @ 2021-06-03 18:20 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On Tue, Jun 1, 2021 at 10:49 AM Neil Armstrong <narmstrong@baylibre.com> wrote:
>
> When only PHY1 is used (for example on Odroid-HC4), the regmap init code
> uses the usb2 ports when doesn't initialize the PHY1 regmap entry.
>
> This fixes:
> Unable to handle kernel NULL pointer dereference at virtual address 0000000000000020
> ...
> pc : regmap_update_bits_base+0x40/0xa0
> lr : dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
> ...
> Call trace:
> regmap_update_bits_base+0x40/0xa0
> dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
> dwc3_meson_g12a_usb2_init+0x7c/0xc8
> dwc3_meson_g12a_usb_init+0x28/0x48
> dwc3_meson_g12a_probe+0x298/0x540
> platform_probe+0x70/0xe0
> really_probe+0xf0/0x4d8
> driver_probe_device+0xfc/0x168
> ...
>
> Fixes: 013af227f58a97 ("usb: dwc3: meson-g12a: handle the phy and glue registers separately")
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-03 18:20   ` Martin Blumenstingl
  0 siblings, 0 replies; 21+ messages in thread
From: Martin Blumenstingl @ 2021-06-03 18:20 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On Tue, Jun 1, 2021 at 10:49 AM Neil Armstrong <narmstrong@baylibre.com> wrote:
>
> When only PHY1 is used (for example on Odroid-HC4), the regmap init code
> uses the usb2 ports when doesn't initialize the PHY1 regmap entry.
>
> This fixes:
> Unable to handle kernel NULL pointer dereference at virtual address 0000000000000020
> ...
> pc : regmap_update_bits_base+0x40/0xa0
> lr : dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
> ...
> Call trace:
> regmap_update_bits_base+0x40/0xa0
> dwc3_meson_g12a_usb2_init_phy+0x4c/0xf8
> dwc3_meson_g12a_usb2_init+0x7c/0xc8
> dwc3_meson_g12a_usb_init+0x28/0x48
> dwc3_meson_g12a_probe+0x298/0x540
> platform_probe+0x70/0xe0
> really_probe+0xf0/0x4d8
> driver_probe_device+0xfc/0x168
> ...
>
> Fixes: 013af227f58a97 ("usb: dwc3: meson-g12a: handle the phy and glue registers separately")
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
  2021-06-01  8:48 ` Neil Armstrong
  (?)
@ 2021-06-04 10:58   ` Greg KH
  -1 siblings, 0 replies; 21+ messages in thread
From: Greg KH @ 2021-06-04 10:58 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On Tue, Jun 01, 2021 at 10:48:30AM +0200, Neil Armstrong wrote:
> When only PHY1 is used (for example on Odroid-HC4), the regmap init code
> uses the usb2 ports when doesn't initialize the PHY1 regmap entry.

<snip>

Meta comment, you signed this, and it worked!

Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
Grabbing thread from lore.kernel.org/linux-amlogic/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
Analyzing 2 messages in the thread
Checking attestation on all messages, may take a moment...
---
  ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
    + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/lists.infradead.org)
  ---
  ✓ Signed: openpgp/narmstrong@baylibre.com
  ✗ BADSIG: DKIM/baylibre-com.20150623.gappssmtp.com
  ✓ Signed: DKIM/lists.infradead.org (From: narmstrong@baylibre.com)
---
Total patches: 1
---
 Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
 Base: not found
Applying: usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled


Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
signature over DKIM anyday!

thanks for doing this.

greg k-h

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-04 10:58   ` Greg KH
  0 siblings, 0 replies; 21+ messages in thread
From: Greg KH @ 2021-06-04 10:58 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On Tue, Jun 01, 2021 at 10:48:30AM +0200, Neil Armstrong wrote:
> When only PHY1 is used (for example on Odroid-HC4), the regmap init code
> uses the usb2 ports when doesn't initialize the PHY1 regmap entry.

<snip>

Meta comment, you signed this, and it worked!

Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
Grabbing thread from lore.kernel.org/linux-amlogic/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
Analyzing 2 messages in the thread
Checking attestation on all messages, may take a moment...
---
  ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
    + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/lists.infradead.org)
  ---
  ✓ Signed: openpgp/narmstrong@baylibre.com
  ✗ BADSIG: DKIM/baylibre-com.20150623.gappssmtp.com
  ✓ Signed: DKIM/lists.infradead.org (From: narmstrong@baylibre.com)
---
Total patches: 1
---
 Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
 Base: not found
Applying: usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled


Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
signature over DKIM anyday!

thanks for doing this.

greg k-h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-04 10:58   ` Greg KH
  0 siblings, 0 replies; 21+ messages in thread
From: Greg KH @ 2021-06-04 10:58 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On Tue, Jun 01, 2021 at 10:48:30AM +0200, Neil Armstrong wrote:
> When only PHY1 is used (for example on Odroid-HC4), the regmap init code
> uses the usb2 ports when doesn't initialize the PHY1 regmap entry.

<snip>

Meta comment, you signed this, and it worked!

Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
Grabbing thread from lore.kernel.org/linux-amlogic/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
Analyzing 2 messages in the thread
Checking attestation on all messages, may take a moment...
---
  ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
    + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/lists.infradead.org)
  ---
  ✓ Signed: openpgp/narmstrong@baylibre.com
  ✗ BADSIG: DKIM/baylibre-com.20150623.gappssmtp.com
  ✓ Signed: DKIM/lists.infradead.org (From: narmstrong@baylibre.com)
---
Total patches: 1
---
 Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
 Base: not found
Applying: usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled


Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
signature over DKIM anyday!

thanks for doing this.

greg k-h

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
  2021-06-04 10:58   ` Greg KH
  (?)
@ 2021-06-04 15:07     ` Konstantin Ryabitsev
  -1 siblings, 0 replies; 21+ messages in thread
From: Konstantin Ryabitsev @ 2021-06-04 15:07 UTC (permalink / raw)
  To: Greg KH
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 12:58:16PM +0200, Greg KH wrote:
> Meta comment, you signed this, and it worked!

NOICE. \o/

> Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
> Grabbing thread from lore.kernel.org/linux-amlogic/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
> Analyzing 2 messages in the thread
> Checking attestation on all messages, may take a moment...
> ---
>   ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>     + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/lists.infradead.org)
>   ---
>   ✓ Signed: openpgp/narmstrong@baylibre.com
>   ✗ BADSIG: DKIM/baylibre-com.20150623.gappssmtp.com
>   ✓ Signed: DKIM/lists.infradead.org (From: narmstrong@baylibre.com)
> ---
> Total patches: 1
> ---
>  Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>  Base: not found
> Applying: usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
> 
> 
> Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> signature over DKIM anyday!

That lookup happened to grab the thread from linux-amlogic, which is
mailman2-managed and is known to break DKIM. I'll try to fix our configuration
so that known-DKIM-friendly sources are given priority. This way, when a thread
exists on multiple lists, you'll get the one more likely to pass DKIM checks.

> thanks for doing this.

Yes, thanks! Hopefully, more people will start doing this.

-K

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-04 15:07     ` Konstantin Ryabitsev
  0 siblings, 0 replies; 21+ messages in thread
From: Konstantin Ryabitsev @ 2021-06-04 15:07 UTC (permalink / raw)
  To: Greg KH
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 12:58:16PM +0200, Greg KH wrote:
> Meta comment, you signed this, and it worked!

NOICE. \o/

> Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
> Grabbing thread from lore.kernel.org/linux-amlogic/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
> Analyzing 2 messages in the thread
> Checking attestation on all messages, may take a moment...
> ---
>   ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>     + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/lists.infradead.org)
>   ---
>   ✓ Signed: openpgp/narmstrong@baylibre.com
>   ✗ BADSIG: DKIM/baylibre-com.20150623.gappssmtp.com
>   ✓ Signed: DKIM/lists.infradead.org (From: narmstrong@baylibre.com)
> ---
> Total patches: 1
> ---
>  Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>  Base: not found
> Applying: usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
> 
> 
> Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> signature over DKIM anyday!

That lookup happened to grab the thread from linux-amlogic, which is
mailman2-managed and is known to break DKIM. I'll try to fix our configuration
so that known-DKIM-friendly sources are given priority. This way, when a thread
exists on multiple lists, you'll get the one more likely to pass DKIM checks.

> thanks for doing this.

Yes, thanks! Hopefully, more people will start doing this.

-K

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-04 15:07     ` Konstantin Ryabitsev
  0 siblings, 0 replies; 21+ messages in thread
From: Konstantin Ryabitsev @ 2021-06-04 15:07 UTC (permalink / raw)
  To: Greg KH
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 12:58:16PM +0200, Greg KH wrote:
> Meta comment, you signed this, and it worked!

NOICE. \o/

> Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
> Grabbing thread from lore.kernel.org/linux-amlogic/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
> Analyzing 2 messages in the thread
> Checking attestation on all messages, may take a moment...
> ---
>   ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>     + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/lists.infradead.org)
>   ---
>   ✓ Signed: openpgp/narmstrong@baylibre.com
>   ✗ BADSIG: DKIM/baylibre-com.20150623.gappssmtp.com
>   ✓ Signed: DKIM/lists.infradead.org (From: narmstrong@baylibre.com)
> ---
> Total patches: 1
> ---
>  Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>  Base: not found
> Applying: usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
> 
> 
> Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> signature over DKIM anyday!

That lookup happened to grab the thread from linux-amlogic, which is
mailman2-managed and is known to break DKIM. I'll try to fix our configuration
so that known-DKIM-friendly sources are given priority. This way, when a thread
exists on multiple lists, you'll get the one more likely to pass DKIM checks.

> thanks for doing this.

Yes, thanks! Hopefully, more people will start doing this.

-K

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
  2021-06-04 15:07     ` Konstantin Ryabitsev
  (?)
@ 2021-06-04 16:46       ` Konstantin Ryabitsev
  -1 siblings, 0 replies; 21+ messages in thread
From: Konstantin Ryabitsev @ 2021-06-04 16:46 UTC (permalink / raw)
  To: Greg KH
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
> > Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> > signature over DKIM anyday!
> 
> That lookup happened to grab the thread from linux-amlogic, which is
> mailman2-managed and is known to break DKIM. I'll try to fix our configuration
> so that known-DKIM-friendly sources are given priority. This way, when a thread
> exists on multiple lists, you'll get the one more likely to pass DKIM checks.

This is now in place -- lore will now prefer results from DKIM-friendly
sources. E.g. grabbing the same message-id will now return the thread from
linux-usb (via vger) instead of linux-amlogic (via infradead).

    $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
    Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
    Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
    Analyzing 4 messages in the thread
    Checking attestation on all messages, may take a moment...
    ---
      ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
        + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
      ---
      ✓ Signed: openpgp/narmstrong@baylibre.com
      ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
    ---
    Total patches: 1
    ---
     Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
     Base: not found
           git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx

-K

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-04 16:46       ` Konstantin Ryabitsev
  0 siblings, 0 replies; 21+ messages in thread
From: Konstantin Ryabitsev @ 2021-06-04 16:46 UTC (permalink / raw)
  To: Greg KH
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
> > Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> > signature over DKIM anyday!
> 
> That lookup happened to grab the thread from linux-amlogic, which is
> mailman2-managed and is known to break DKIM. I'll try to fix our configuration
> so that known-DKIM-friendly sources are given priority. This way, when a thread
> exists on multiple lists, you'll get the one more likely to pass DKIM checks.

This is now in place -- lore will now prefer results from DKIM-friendly
sources. E.g. grabbing the same message-id will now return the thread from
linux-usb (via vger) instead of linux-amlogic (via infradead).

    $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
    Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
    Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
    Analyzing 4 messages in the thread
    Checking attestation on all messages, may take a moment...
    ---
      ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
        + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
      ---
      ✓ Signed: openpgp/narmstrong@baylibre.com
      ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
    ---
    Total patches: 1
    ---
     Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
     Base: not found
           git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx

-K

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-04 16:46       ` Konstantin Ryabitsev
  0 siblings, 0 replies; 21+ messages in thread
From: Konstantin Ryabitsev @ 2021-06-04 16:46 UTC (permalink / raw)
  To: Greg KH
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
> > Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> > signature over DKIM anyday!
> 
> That lookup happened to grab the thread from linux-amlogic, which is
> mailman2-managed and is known to break DKIM. I'll try to fix our configuration
> so that known-DKIM-friendly sources are given priority. This way, when a thread
> exists on multiple lists, you'll get the one more likely to pass DKIM checks.

This is now in place -- lore will now prefer results from DKIM-friendly
sources. E.g. grabbing the same message-id will now return the thread from
linux-usb (via vger) instead of linux-amlogic (via infradead).

    $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
    Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
    Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
    Analyzing 4 messages in the thread
    Checking attestation on all messages, may take a moment...
    ---
      ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
        + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
      ---
      ✓ Signed: openpgp/narmstrong@baylibre.com
      ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
    ---
    Total patches: 1
    ---
     Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
     Base: not found
           git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx

-K

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
  2021-06-04 16:46       ` Konstantin Ryabitsev
  (?)
@ 2021-06-05  7:02         ` Greg KH
  -1 siblings, 0 replies; 21+ messages in thread
From: Greg KH @ 2021-06-05  7:02 UTC (permalink / raw)
  To: Konstantin Ryabitsev
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 12:46:01PM -0400, Konstantin Ryabitsev wrote:
> On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
> > > Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> > > signature over DKIM anyday!
> > 
> > That lookup happened to grab the thread from linux-amlogic, which is
> > mailman2-managed and is known to break DKIM. I'll try to fix our configuration
> > so that known-DKIM-friendly sources are given priority. This way, when a thread
> > exists on multiple lists, you'll get the one more likely to pass DKIM checks.
> 
> This is now in place -- lore will now prefer results from DKIM-friendly
> sources. E.g. grabbing the same message-id will now return the thread from
> linux-usb (via vger) instead of linux-amlogic (via infradead).
> 
>     $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
>     Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
>     Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
>     Analyzing 4 messages in the thread
>     Checking attestation on all messages, may take a moment...
>     ---
>       ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>         + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
>       ---
>       ✓ Signed: openpgp/narmstrong@baylibre.com
>       ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
>     ---
>     Total patches: 1
>     ---
>      Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>      Base: not found
>            git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx

This is great, thanks for changing this on the lore backend, and for all
of this work in the firstplace.

greg k-h

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-05  7:02         ` Greg KH
  0 siblings, 0 replies; 21+ messages in thread
From: Greg KH @ 2021-06-05  7:02 UTC (permalink / raw)
  To: Konstantin Ryabitsev
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 12:46:01PM -0400, Konstantin Ryabitsev wrote:
> On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
> > > Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> > > signature over DKIM anyday!
> > 
> > That lookup happened to grab the thread from linux-amlogic, which is
> > mailman2-managed and is known to break DKIM. I'll try to fix our configuration
> > so that known-DKIM-friendly sources are given priority. This way, when a thread
> > exists on multiple lists, you'll get the one more likely to pass DKIM checks.
> 
> This is now in place -- lore will now prefer results from DKIM-friendly
> sources. E.g. grabbing the same message-id will now return the thread from
> linux-usb (via vger) instead of linux-amlogic (via infradead).
> 
>     $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
>     Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
>     Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
>     Analyzing 4 messages in the thread
>     Checking attestation on all messages, may take a moment...
>     ---
>       ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>         + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
>       ---
>       ✓ Signed: openpgp/narmstrong@baylibre.com
>       ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
>     ---
>     Total patches: 1
>     ---
>      Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>      Base: not found
>            git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx

This is great, thanks for changing this on the lore backend, and for all
of this work in the firstplace.

greg k-h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-05  7:02         ` Greg KH
  0 siblings, 0 replies; 21+ messages in thread
From: Greg KH @ 2021-06-05  7:02 UTC (permalink / raw)
  To: Konstantin Ryabitsev
  Cc: Neil Armstrong, balbi, linux-usb, linux-amlogic,
	linux-arm-kernel, linux-kernel

On Fri, Jun 04, 2021 at 12:46:01PM -0400, Konstantin Ryabitsev wrote:
> On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
> > > Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
> > > signature over DKIM anyday!
> > 
> > That lookup happened to grab the thread from linux-amlogic, which is
> > mailman2-managed and is known to break DKIM. I'll try to fix our configuration
> > so that known-DKIM-friendly sources are given priority. This way, when a thread
> > exists on multiple lists, you'll get the one more likely to pass DKIM checks.
> 
> This is now in place -- lore will now prefer results from DKIM-friendly
> sources. E.g. grabbing the same message-id will now return the thread from
> linux-usb (via vger) instead of linux-amlogic (via infradead).
> 
>     $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
>     Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
>     Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
>     Analyzing 4 messages in the thread
>     Checking attestation on all messages, may take a moment...
>     ---
>       ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>         + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
>       ---
>       ✓ Signed: openpgp/narmstrong@baylibre.com
>       ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
>     ---
>     Total patches: 1
>     ---
>      Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>      Base: not found
>            git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx

This is great, thanks for changing this on the lore backend, and for all
of this work in the firstplace.

greg k-h

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
  2021-06-04 16:46       ` Konstantin Ryabitsev
  (?)
@ 2021-06-07  6:46         ` Neil Armstrong
  -1 siblings, 0 replies; 21+ messages in thread
From: Neil Armstrong @ 2021-06-07  6:46 UTC (permalink / raw)
  To: Konstantin Ryabitsev, Greg KH
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On 04/06/2021 18:46, Konstantin Ryabitsev wrote:
> On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
>>> Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
>>> signature over DKIM anyday!
>>
>> That lookup happened to grab the thread from linux-amlogic, which is
>> mailman2-managed and is known to break DKIM. I'll try to fix our configuration
>> so that known-DKIM-friendly sources are given priority. This way, when a thread
>> exists on multiple lists, you'll get the one more likely to pass DKIM checks.
> 
> This is now in place -- lore will now prefer results from DKIM-friendly
> sources. E.g. grabbing the same message-id will now return the thread from
> linux-usb (via vger) instead of linux-amlogic (via infradead).
> 
>     $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
>     Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
>     Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
>     Analyzing 4 messages in the thread
>     Checking attestation on all messages, may take a moment...
>     ---
>       ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>         + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
>       ---
>       ✓ Signed: openpgp/narmstrong@baylibre.com
>       ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
>     ---
>     Total patches: 1
>     ---
>      Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>      Base: not found
>            git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx
> 
> -K
> 

Nice, thanks for this !

Neil

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-07  6:46         ` Neil Armstrong
  0 siblings, 0 replies; 21+ messages in thread
From: Neil Armstrong @ 2021-06-07  6:46 UTC (permalink / raw)
  To: Konstantin Ryabitsev, Greg KH
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On 04/06/2021 18:46, Konstantin Ryabitsev wrote:
> On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
>>> Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
>>> signature over DKIM anyday!
>>
>> That lookup happened to grab the thread from linux-amlogic, which is
>> mailman2-managed and is known to break DKIM. I'll try to fix our configuration
>> so that known-DKIM-friendly sources are given priority. This way, when a thread
>> exists on multiple lists, you'll get the one more likely to pass DKIM checks.
> 
> This is now in place -- lore will now prefer results from DKIM-friendly
> sources. E.g. grabbing the same message-id will now return the thread from
> linux-usb (via vger) instead of linux-amlogic (via infradead).
> 
>     $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
>     Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
>     Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
>     Analyzing 4 messages in the thread
>     Checking attestation on all messages, may take a moment...
>     ---
>       ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>         + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
>       ---
>       ✓ Signed: openpgp/narmstrong@baylibre.com
>       ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
>     ---
>     Total patches: 1
>     ---
>      Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>      Base: not found
>            git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx
> 
> -K
> 

Nice, thanks for this !

Neil

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
@ 2021-06-07  6:46         ` Neil Armstrong
  0 siblings, 0 replies; 21+ messages in thread
From: Neil Armstrong @ 2021-06-07  6:46 UTC (permalink / raw)
  To: Konstantin Ryabitsev, Greg KH
  Cc: balbi, linux-usb, linux-amlogic, linux-arm-kernel, linux-kernel

On 04/06/2021 18:46, Konstantin Ryabitsev wrote:
> On Fri, Jun 04, 2021 at 11:07:42AM -0400, Konstantin Ryabitsev wrote:
>>> Odd that DKIM didn't work for baylibre-com, but hey, I'll take a real
>>> signature over DKIM anyday!
>>
>> That lookup happened to grab the thread from linux-amlogic, which is
>> mailman2-managed and is known to break DKIM. I'll try to fix our configuration
>> so that known-DKIM-friendly sources are given priority. This way, when a thread
>> exists on multiple lists, you'll get the one more likely to pass DKIM checks.
> 
> This is now in place -- lore will now prefer results from DKIM-friendly
> sources. E.g. grabbing the same message-id will now return the thread from
> linux-usb (via vger) instead of linux-amlogic (via infradead).
> 
>     $ b4 am -o/tmp 20210601084830.260196-1-narmstrong@baylibre.com
>     Looking up https://lore.kernel.org/r/20210601084830.260196-1-narmstrong%40baylibre.com
>     Grabbing thread from lore.kernel.org/linux-usb/20210601084830.260196-1-narmstrong%40baylibre.com/t.mbox.gz
>     Analyzing 4 messages in the thread
>     Checking attestation on all messages, may take a moment...
>     ---
>       ✓ [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
>         + Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (✓ DKIM/googlemail.com)
>       ---
>       ✓ Signed: openpgp/narmstrong@baylibre.com
>       ✓ Signed: DKIM/baylibre-com.20150623.gappssmtp.com (From: narmstrong@baylibre.com)
>     ---
>     Total patches: 1
>     ---
>      Link: https://lore.kernel.org/r/20210601084830.260196-1-narmstrong@baylibre.com
>      Base: not found
>            git am /tmp/20210601_narmstrong_usb_dwc3_meson_g12a_fix_usb2_phy_glue_init_when_phy0_is_disabled.mbx
> 
> -K
> 

Nice, thanks for this !

Neil

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

end of thread, other threads:[~2021-06-07  6:49 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-01  8:48 [PATCH] usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled Neil Armstrong
2021-06-01  8:48 ` Neil Armstrong
2021-06-01  8:48 ` Neil Armstrong
2021-06-03 18:20 ` Martin Blumenstingl
2021-06-03 18:20   ` Martin Blumenstingl
2021-06-03 18:20   ` Martin Blumenstingl
2021-06-04 10:58 ` Greg KH
2021-06-04 10:58   ` Greg KH
2021-06-04 10:58   ` Greg KH
2021-06-04 15:07   ` Konstantin Ryabitsev
2021-06-04 15:07     ` Konstantin Ryabitsev
2021-06-04 15:07     ` Konstantin Ryabitsev
2021-06-04 16:46     ` Konstantin Ryabitsev
2021-06-04 16:46       ` Konstantin Ryabitsev
2021-06-04 16:46       ` Konstantin Ryabitsev
2021-06-05  7:02       ` Greg KH
2021-06-05  7:02         ` Greg KH
2021-06-05  7:02         ` Greg KH
2021-06-07  6:46       ` Neil Armstrong
2021-06-07  6:46         ` Neil Armstrong
2021-06-07  6:46         ` Neil Armstrong

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.