linux-hwmon.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
@ 2023-04-07 14:59 Krzysztof Kozlowski
  2023-04-07 14:59 ` [PATCH 2/8] net: aquantia: " Krzysztof Kozlowski
                   ` (10 more replies)
  0 siblings, 11 replies; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/ethernet/netronome/nfp/nfp_hwmon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c b/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
index 5cabb1aa9c0c..0d6c59d6d4ae 100644
--- a/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
+++ b/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
@@ -115,7 +115,7 @@ static const struct hwmon_channel_info nfp_power = {
 	.config = nfp_power_config,
 };
 
-static const struct hwmon_channel_info *nfp_hwmon_info[] = {
+static const struct hwmon_channel_info * const nfp_hwmon_info[] = {
 	&nfp_chip,
 	&nfp_temp,
 	&nfp_power,
-- 
2.34.1


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

* [PATCH 2/8] net: aquantia: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
@ 2023-04-07 14:59 ` Krzysztof Kozlowski
  2023-04-07 14:59 ` [PATCH 3/8] net: phy: " Krzysztof Kozlowski
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c b/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c
index d3526cd38f3d..414b2e448d59 100644
--- a/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c
+++ b/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c
@@ -124,7 +124,7 @@ static const struct hwmon_channel_info aq_hwmon_temp = {
 	.config = aq_hwmon_temp_config,
 };
 
-static const struct hwmon_channel_info *aq_hwmon_info[] = {
+static const struct hwmon_channel_info * const aq_hwmon_info[] = {
 	&aq_hwmon_temp,
 	NULL,
 };
-- 
2.34.1


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

* [PATCH 3/8] net: phy: aquantia: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
  2023-04-07 14:59 ` [PATCH 2/8] net: aquantia: " Krzysztof Kozlowski
@ 2023-04-07 14:59 ` Krzysztof Kozlowski
  2023-04-07 15:04   ` Andrew Lunn
  2023-04-07 14:59 ` [PATCH 4/8] net: phy: bcm54140: " Krzysztof Kozlowski
                   ` (8 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/phy/aquantia_hwmon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/phy/aquantia_hwmon.c b/drivers/net/phy/aquantia_hwmon.c
index 19c4c280a6cd..0da451e46f69 100644
--- a/drivers/net/phy/aquantia_hwmon.c
+++ b/drivers/net/phy/aquantia_hwmon.c
@@ -210,7 +210,7 @@ static const struct hwmon_channel_info aqr_hwmon_temp = {
 	.config = aqr_hwmon_temp_config,
 };
 
-static const struct hwmon_channel_info *aqr_hwmon_info[] = {
+static const struct hwmon_channel_info * const aqr_hwmon_info[] = {
 	&aqr_hwmon_chip,
 	&aqr_hwmon_temp,
 	NULL,
-- 
2.34.1


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

* [PATCH 4/8] net: phy: bcm54140: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
  2023-04-07 14:59 ` [PATCH 2/8] net: aquantia: " Krzysztof Kozlowski
  2023-04-07 14:59 ` [PATCH 3/8] net: phy: " Krzysztof Kozlowski
@ 2023-04-07 14:59 ` Krzysztof Kozlowski
  2023-04-07 15:04   ` Andrew Lunn
  2023-04-07 14:59 ` [PATCH 5/8] net: phy: marvell: " Krzysztof Kozlowski
                   ` (7 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/phy/bcm54140.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/phy/bcm54140.c b/drivers/net/phy/bcm54140.c
index d8f3024860dc..d43076592f81 100644
--- a/drivers/net/phy/bcm54140.c
+++ b/drivers/net/phy/bcm54140.c
@@ -364,7 +364,7 @@ static int bcm54140_hwmon_write(struct device *dev,
 	}
 }
 
-static const struct hwmon_channel_info *bcm54140_hwmon_info[] = {
+static const struct hwmon_channel_info * const bcm54140_hwmon_info[] = {
 	HWMON_CHANNEL_INFO(temp,
 			   HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX |
 			   HWMON_T_ALARM),
-- 
2.34.1


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

* [PATCH 5/8] net: phy: marvell: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-04-07 14:59 ` [PATCH 4/8] net: phy: bcm54140: " Krzysztof Kozlowski
@ 2023-04-07 14:59 ` Krzysztof Kozlowski
  2023-04-07 15:04   ` Andrew Lunn
  2023-04-07 14:59 ` [PATCH 6/8] net: phy: mxl: " Krzysztof Kozlowski
                   ` (6 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/phy/marvell.c    | 2 +-
 drivers/net/phy/marvell10g.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
index 63a3644d86c9..24853e9a889e 100644
--- a/drivers/net/phy/marvell.c
+++ b/drivers/net/phy/marvell.c
@@ -2735,7 +2735,7 @@ static const struct hwmon_channel_info marvell_hwmon_temp = {
 	.config = marvell_hwmon_temp_config,
 };
 
-static const struct hwmon_channel_info *marvell_hwmon_info[] = {
+static const struct hwmon_channel_info * const marvell_hwmon_info[] = {
 	&marvell_hwmon_chip,
 	&marvell_hwmon_temp,
 	NULL
diff --git a/drivers/net/phy/marvell10g.c b/drivers/net/phy/marvell10g.c
index 383a9c9f36e5..55d9d7acc32e 100644
--- a/drivers/net/phy/marvell10g.c
+++ b/drivers/net/phy/marvell10g.c
@@ -243,7 +243,7 @@ static const struct hwmon_channel_info mv3310_hwmon_temp = {
 	.config = mv3310_hwmon_temp_config,
 };
 
-static const struct hwmon_channel_info *mv3310_hwmon_info[] = {
+static const struct hwmon_channel_info * const mv3310_hwmon_info[] = {
 	&mv3310_hwmon_chip,
 	&mv3310_hwmon_temp,
 	NULL,
-- 
2.34.1


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

* [PATCH 6/8] net: phy: mxl: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2023-04-07 14:59 ` [PATCH 5/8] net: phy: marvell: " Krzysztof Kozlowski
@ 2023-04-07 14:59 ` Krzysztof Kozlowski
  2023-04-07 15:05   ` Andrew Lunn
  2023-04-07 14:59 ` [PATCH 7/8] net: phy: nxp-tja11xx: " Krzysztof Kozlowski
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/phy/mxl-gpy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/phy/mxl-gpy.c b/drivers/net/phy/mxl-gpy.c
index 8e6bb97b5f85..6301a9abfb95 100644
--- a/drivers/net/phy/mxl-gpy.c
+++ b/drivers/net/phy/mxl-gpy.c
@@ -182,7 +182,7 @@ static umode_t gpy_hwmon_is_visible(const void *data,
 	return 0444;
 }
 
-static const struct hwmon_channel_info *gpy_hwmon_info[] = {
+static const struct hwmon_channel_info * const gpy_hwmon_info[] = {
 	HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT),
 	NULL
 };
-- 
2.34.1


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

* [PATCH 7/8] net: phy: nxp-tja11xx: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (4 preceding siblings ...)
  2023-04-07 14:59 ` [PATCH 6/8] net: phy: mxl: " Krzysztof Kozlowski
@ 2023-04-07 14:59 ` Krzysztof Kozlowski
  2023-04-07 15:05   ` Andrew Lunn
  2023-04-07 14:59 ` [PATCH 8/8] net: phy: sfp: " Krzysztof Kozlowski
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/phy/nxp-tja11xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/phy/nxp-tja11xx.c b/drivers/net/phy/nxp-tja11xx.c
index ec91e671f8aa..b13e15310feb 100644
--- a/drivers/net/phy/nxp-tja11xx.c
+++ b/drivers/net/phy/nxp-tja11xx.c
@@ -477,7 +477,7 @@ static umode_t tja11xx_hwmon_is_visible(const void *data,
 	return 0;
 }
 
-static const struct hwmon_channel_info *tja11xx_hwmon_info[] = {
+static const struct hwmon_channel_info * const tja11xx_hwmon_info[] = {
 	HWMON_CHANNEL_INFO(in, HWMON_I_LCRIT_ALARM),
 	HWMON_CHANNEL_INFO(temp, HWMON_T_CRIT_ALARM),
 	NULL
-- 
2.34.1


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

* [PATCH 8/8] net: phy: sfp: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (5 preceding siblings ...)
  2023-04-07 14:59 ` [PATCH 7/8] net: phy: nxp-tja11xx: " Krzysztof Kozlowski
@ 2023-04-07 14:59 ` Krzysztof Kozlowski
  2023-04-07 15:05   ` Andrew Lunn
  2023-04-07 15:47 ` [PATCH 1/8] net: netronome: " Jakub Kicinski
                   ` (3 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-07 14:59 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Krzysztof Kozlowski, Jean Delvare, Guenter Roeck, linux-hwmon

Statically allocated array of pointed to hwmon_channel_info can be made
const for safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

This depends on hwmon core patch:
https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

Therefore I propose this should also go via hwmon tree.

Cc: Jean Delvare <jdelvare@suse.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
---
 drivers/net/phy/sfp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/phy/sfp.c b/drivers/net/phy/sfp.c
index f0fcb06fbe82..378760b1aca7 100644
--- a/drivers/net/phy/sfp.c
+++ b/drivers/net/phy/sfp.c
@@ -1378,7 +1378,7 @@ static const struct hwmon_ops sfp_hwmon_ops = {
 	.read_string = sfp_hwmon_read_string,
 };
 
-static const struct hwmon_channel_info *sfp_hwmon_info[] = {
+static const struct hwmon_channel_info * const sfp_hwmon_info[] = {
 	HWMON_CHANNEL_INFO(chip,
 			   HWMON_C_REGISTER_TZ),
 	HWMON_CHANNEL_INFO(in,
-- 
2.34.1


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

* Re: [PATCH 3/8] net: phy: aquantia: constify pointers to hwmon_channel_info
  2023-04-07 14:59 ` [PATCH 3/8] net: phy: " Krzysztof Kozlowski
@ 2023-04-07 15:04   ` Andrew Lunn
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Lunn @ 2023-04-07 15:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 04:59:06PM +0200, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

> This depends on hwmon core patch:
> https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/
> 
> Therefore I propose this should also go via hwmon tree.

Any merge conflicts should be easy to solve, so that seems reasonable.

    Andrew

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

* Re: [PATCH 4/8] net: phy: bcm54140: constify pointers to hwmon_channel_info
  2023-04-07 14:59 ` [PATCH 4/8] net: phy: bcm54140: " Krzysztof Kozlowski
@ 2023-04-07 15:04   ` Andrew Lunn
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Lunn @ 2023-04-07 15:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 04:59:07PM +0200, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

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

* Re: [PATCH 5/8] net: phy: marvell: constify pointers to hwmon_channel_info
  2023-04-07 14:59 ` [PATCH 5/8] net: phy: marvell: " Krzysztof Kozlowski
@ 2023-04-07 15:04   ` Andrew Lunn
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Lunn @ 2023-04-07 15:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 04:59:08PM +0200, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

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

* Re: [PATCH 6/8] net: phy: mxl: constify pointers to hwmon_channel_info
  2023-04-07 14:59 ` [PATCH 6/8] net: phy: mxl: " Krzysztof Kozlowski
@ 2023-04-07 15:05   ` Andrew Lunn
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Lunn @ 2023-04-07 15:05 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 04:59:09PM +0200, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

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

* Re: [PATCH 7/8] net: phy: nxp-tja11xx: constify pointers to hwmon_channel_info
  2023-04-07 14:59 ` [PATCH 7/8] net: phy: nxp-tja11xx: " Krzysztof Kozlowski
@ 2023-04-07 15:05   ` Andrew Lunn
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Lunn @ 2023-04-07 15:05 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 04:59:10PM +0200, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

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

* Re: [PATCH 8/8] net: phy: sfp: constify pointers to hwmon_channel_info
  2023-04-07 14:59 ` [PATCH 8/8] net: phy: sfp: " Krzysztof Kozlowski
@ 2023-04-07 15:05   ` Andrew Lunn
  0 siblings, 0 replies; 22+ messages in thread
From: Andrew Lunn @ 2023-04-07 15:05 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 04:59:11PM +0200, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (6 preceding siblings ...)
  2023-04-07 14:59 ` [PATCH 8/8] net: phy: sfp: " Krzysztof Kozlowski
@ 2023-04-07 15:47 ` Jakub Kicinski
  2023-04-07 18:05   ` Guenter Roeck
  2023-04-07 16:07 ` Simon Horman
                   ` (2 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Jakub Kicinski @ 2023-04-07 15:47 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Paolo Abeni,
	Simon Horman, Andrew Lunn, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri,  7 Apr 2023 16:59:04 +0200 Krzysztof Kozlowski wrote:
> This depends on hwmon core patch:
> https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/

That patch should have been put on a stable branch we can pull
and avoid any conflict risks... Next time?

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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (7 preceding siblings ...)
  2023-04-07 15:47 ` [PATCH 1/8] net: netronome: " Jakub Kicinski
@ 2023-04-07 16:07 ` Simon Horman
  2023-04-07 18:17   ` Simon Horman
  2023-04-07 23:07 ` Guenter Roeck
  2023-04-10  2:20 ` patchwork-bot+netdevbpf
  10 siblings, 1 reply; 22+ messages in thread
From: Simon Horman @ 2023-04-07 16:07 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Andrew Lunn, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 04:59:04PM +0200, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 
> ---
> 
> This depends on hwmon core patch:
> https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/
> 
> Therefore I propose this should also go via hwmon tree.
> 
> Cc: Jean Delvare <jdelvare@suse.com>
> Cc: Guenter Roeck <linux@roeck-us.net>
> Cc: linux-hwmon@vger.kernel.org

Subject prefix should be 'nfp: '

Other than that, this looks ok to me.
Though I am at a loss as to what tree the patches at the URL above apply to
and thus am unable to verify this code in any way other than visually.

> ---
>  drivers/net/ethernet/netronome/nfp/nfp_hwmon.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c b/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
> index 5cabb1aa9c0c..0d6c59d6d4ae 100644
> --- a/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
> +++ b/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
> @@ -115,7 +115,7 @@ static const struct hwmon_channel_info nfp_power = {
>  	.config = nfp_power_config,
>  };
>  
> -static const struct hwmon_channel_info *nfp_hwmon_info[] = {
> +static const struct hwmon_channel_info * const nfp_hwmon_info[] = {
>  	&nfp_chip,
>  	&nfp_temp,
>  	&nfp_power,
> -- 
> 2.34.1
> 

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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-07 15:47 ` [PATCH 1/8] net: netronome: " Jakub Kicinski
@ 2023-04-07 18:05   ` Guenter Roeck
  2023-04-08  1:10     ` Jakub Kicinski
  0 siblings, 1 reply; 22+ messages in thread
From: Guenter Roeck @ 2023-04-07 18:05 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Krzysztof Kozlowski, Igor Russkikh, David S. Miller,
	Eric Dumazet, Paolo Abeni, Simon Horman, Andrew Lunn,
	Heiner Kallweit, Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers, Jean Delvare, linux-hwmon

On Fri, Apr 07, 2023 at 08:47:45AM -0700, Jakub Kicinski wrote:
> On Fri,  7 Apr 2023 16:59:04 +0200 Krzysztof Kozlowski wrote:
> > This depends on hwmon core patch:
> > https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/
> 
> That patch should have been put on a stable branch we can pull
> and avoid any conflict risks... Next time?

Yes, and I don't feel comfortable applying all those patches through
the hwmon tree since I have zero means to test them.

I created a stable branch at

git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-const

Feel free to use it.

Guenter

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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-07 16:07 ` Simon Horman
@ 2023-04-07 18:17   ` Simon Horman
  0 siblings, 0 replies; 22+ messages in thread
From: Simon Horman @ 2023-04-07 18:17 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Igor Russkikh, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Andrew Lunn, Heiner Kallweit, Russell King,
	Florian Fainelli, Broadcom internal kernel review list,
	Marek Behún, Xu Liang, netdev, linux-kernel, oss-drivers,
	Jean Delvare, Guenter Roeck, linux-hwmon

On Fri, Apr 07, 2023 at 06:07:56PM +0200, Simon Horman wrote:
> On Fri, Apr 07, 2023 at 04:59:04PM +0200, Krzysztof Kozlowski wrote:
> > Statically allocated array of pointed to hwmon_channel_info can be made
> > const for safety.
> > 
> > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> > 
> > ---
> > 
> > This depends on hwmon core patch:
> > https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/
> > 
> > Therefore I propose this should also go via hwmon tree.
> > 
> > Cc: Jean Delvare <jdelvare@suse.com>
> > Cc: Guenter Roeck <linux@roeck-us.net>
> > Cc: linux-hwmon@vger.kernel.org
> 
> Subject prefix should be 'nfp: '
> 
> Other than that, this looks ok to me.
> Though I am at a loss as to what tree the patches at the URL above apply to
> and thus am unable to verify this code in any way other than visually.

I've now been able to apply and build the patch on top of

git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-const

Thanks to Guenter for supplying the branch.
And thanks to Krzysztof for the patch.

My nit about the subject prefix not withstanding,

Acked-by: Simon Horman <simon.horman@corigine.com>

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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (8 preceding siblings ...)
  2023-04-07 16:07 ` Simon Horman
@ 2023-04-07 23:07 ` Guenter Roeck
  2023-04-10  2:20 ` patchwork-bot+netdevbpf
  10 siblings, 0 replies; 22+ messages in thread
From: Guenter Roeck @ 2023-04-07 23:07 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Igor Russkikh, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Andrew Lunn, Heiner Kallweit, Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers
  Cc: Jean Delvare, linux-hwmon

On 4/7/23 07:59, Krzysztof Kozlowski wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 
> ---
> 
> This depends on hwmon core patch:
> https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/
> 
> Therefore I propose this should also go via hwmon tree.

I am not going to apply patches for 10+ subsystems through the hwmon tree.
This can only result in chaos. The dependent patch is available at

git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-const

or wait until after the next commit window to apply this series.

Thanks,
Guenter

> 
> Cc: Jean Delvare <jdelvare@suse.com>
> Cc: Guenter Roeck <linux@roeck-us.net>
> Cc: linux-hwmon@vger.kernel.org
> ---
>   drivers/net/ethernet/netronome/nfp/nfp_hwmon.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c b/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
> index 5cabb1aa9c0c..0d6c59d6d4ae 100644
> --- a/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
> +++ b/drivers/net/ethernet/netronome/nfp/nfp_hwmon.c
> @@ -115,7 +115,7 @@ static const struct hwmon_channel_info nfp_power = {
>   	.config = nfp_power_config,
>   };
>   
> -static const struct hwmon_channel_info *nfp_hwmon_info[] = {
> +static const struct hwmon_channel_info * const nfp_hwmon_info[] = {
>   	&nfp_chip,
>   	&nfp_temp,
>   	&nfp_power,


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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-07 18:05   ` Guenter Roeck
@ 2023-04-08  1:10     ` Jakub Kicinski
  2023-04-08 10:44       ` Krzysztof Kozlowski
  0 siblings, 1 reply; 22+ messages in thread
From: Jakub Kicinski @ 2023-04-08  1:10 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Guenter Roeck, Igor Russkikh, David S. Miller, Eric Dumazet,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers, Jean Delvare, linux-hwmon

On Fri, 7 Apr 2023 11:05:06 -0700 Guenter Roeck wrote:
> On Fri, Apr 07, 2023 at 08:47:45AM -0700, Jakub Kicinski wrote:
> > On Fri,  7 Apr 2023 16:59:04 +0200 Krzysztof Kozlowski wrote:  
> > > This depends on hwmon core patch:
> > > https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/  
> > 
> > That patch should have been put on a stable branch we can pull
> > and avoid any conflict risks... Next time?  
> 
> Yes, and I don't feel comfortable applying all those patches through
> the hwmon tree since I have zero means to test them.
> 
> I created a stable branch at
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-const

Thanks! Krzysztof, give us a nod and we'll take the series to net-next.

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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-08  1:10     ` Jakub Kicinski
@ 2023-04-08 10:44       ` Krzysztof Kozlowski
  0 siblings, 0 replies; 22+ messages in thread
From: Krzysztof Kozlowski @ 2023-04-08 10:44 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Guenter Roeck, Igor Russkikh, David S. Miller, Eric Dumazet,
	Paolo Abeni, Simon Horman, Andrew Lunn, Heiner Kallweit,
	Russell King, Florian Fainelli,
	Broadcom internal kernel review list, Marek Behún, Xu Liang,
	netdev, linux-kernel, oss-drivers, Jean Delvare, linux-hwmon

On 08/04/2023 03:10, Jakub Kicinski wrote:
> On Fri, 7 Apr 2023 11:05:06 -0700 Guenter Roeck wrote:
>> On Fri, Apr 07, 2023 at 08:47:45AM -0700, Jakub Kicinski wrote:
>>> On Fri,  7 Apr 2023 16:59:04 +0200 Krzysztof Kozlowski wrote:  
>>>> This depends on hwmon core patch:
>>>> https://lore.kernel.org/all/20230406203103.3011503-2-krzysztof.kozlowski@linaro.org/  
>>>
>>> That patch should have been put on a stable branch we can pull
>>> and avoid any conflict risks... Next time?  
>>
>> Yes, and I don't feel comfortable applying all those patches through
>> the hwmon tree since I have zero means to test them.
>>
>> I created a stable branch at
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-const
> 
> Thanks! Krzysztof, give us a nod and we'll take the series to net-next.

Sure, go ahead, that's even better solution.

Best regards,
Krzysztof


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

* Re: [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info
  2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
                   ` (9 preceding siblings ...)
  2023-04-07 23:07 ` Guenter Roeck
@ 2023-04-10  2:20 ` patchwork-bot+netdevbpf
  10 siblings, 0 replies; 22+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-04-10  2:20 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: irusskikh, davem, edumazet, kuba, pabeni, simon.horman, andrew,
	hkallweit1, linux, f.fainelli, bcm-kernel-feedback-list, kabel,
	lxu, netdev, linux-kernel, oss-drivers, jdelvare, linux,
	linux-hwmon

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Fri,  7 Apr 2023 16:59:04 +0200 you wrote:
> Statically allocated array of pointed to hwmon_channel_info can be made
> const for safety.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 
> ---
> 
> [...]

Here is the summary with links:
  - [1/8] net: netronome: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/87f1c15e8759
  - [2/8] net: aquantia: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/bc1585f611b2
  - [3/8] net: phy: aquantia: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/234d79a5f826
  - [4/8] net: phy: bcm54140: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/211f70be2577
  - [5/8] net: phy: marvell: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/ff0805e2bde0
  - [6/8] net: phy: mxl: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/2ed84c0c6f75
  - [7/8] net: phy: nxp-tja11xx: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/0e76f1dcf487
  - [8/8] net: phy: sfp: constify pointers to hwmon_channel_info
    https://git.kernel.org/netdev/net-next/c/490fde262f17

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2023-04-10  2:20 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-07 14:59 [PATCH 1/8] net: netronome: constify pointers to hwmon_channel_info Krzysztof Kozlowski
2023-04-07 14:59 ` [PATCH 2/8] net: aquantia: " Krzysztof Kozlowski
2023-04-07 14:59 ` [PATCH 3/8] net: phy: " Krzysztof Kozlowski
2023-04-07 15:04   ` Andrew Lunn
2023-04-07 14:59 ` [PATCH 4/8] net: phy: bcm54140: " Krzysztof Kozlowski
2023-04-07 15:04   ` Andrew Lunn
2023-04-07 14:59 ` [PATCH 5/8] net: phy: marvell: " Krzysztof Kozlowski
2023-04-07 15:04   ` Andrew Lunn
2023-04-07 14:59 ` [PATCH 6/8] net: phy: mxl: " Krzysztof Kozlowski
2023-04-07 15:05   ` Andrew Lunn
2023-04-07 14:59 ` [PATCH 7/8] net: phy: nxp-tja11xx: " Krzysztof Kozlowski
2023-04-07 15:05   ` Andrew Lunn
2023-04-07 14:59 ` [PATCH 8/8] net: phy: sfp: " Krzysztof Kozlowski
2023-04-07 15:05   ` Andrew Lunn
2023-04-07 15:47 ` [PATCH 1/8] net: netronome: " Jakub Kicinski
2023-04-07 18:05   ` Guenter Roeck
2023-04-08  1:10     ` Jakub Kicinski
2023-04-08 10:44       ` Krzysztof Kozlowski
2023-04-07 16:07 ` Simon Horman
2023-04-07 18:17   ` Simon Horman
2023-04-07 23:07 ` Guenter Roeck
2023-04-10  2:20 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).