public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions
@ 2024-03-01 13:42 Breno Leitao
  2024-03-01 13:42 ` [PATCH net-next 2/2] net: nlmon: Simplify nlmon_get_stats64 Breno Leitao
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Breno Leitao @ 2024-03-01 13:42 UTC (permalink / raw)
  To: kuba, davem, pabeni, edumazet, daniel
  Cc: netdev, linux-kernel, horms, dsahern

With commit 34d21de99cea9 ("net: Move {l,t,d}stats allocation to core and
convert veth & vrf"), stats allocation could be done on net core
instead of this driver.

With this new approach, the driver doesn't have to bother with error
handling (allocation failure checking, making sure free happens in the
right spot, etc). This is core responsibility now.

Remove the allocation in the nlmon driver and leverage the network
core allocation.

Signed-off-by: Breno Leitao <leitao@debian.org>
---
 drivers/net/nlmon.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/net/nlmon.c b/drivers/net/nlmon.c
index 5e19a6839dea..e026bfc83757 100644
--- a/drivers/net/nlmon.c
+++ b/drivers/net/nlmon.c
@@ -17,17 +17,6 @@ static netdev_tx_t nlmon_xmit(struct sk_buff *skb, struct net_device *dev)
 	return NETDEV_TX_OK;
 }
 
-static int nlmon_dev_init(struct net_device *dev)
-{
-	dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
-	return dev->lstats == NULL ? -ENOMEM : 0;
-}
-
-static void nlmon_dev_uninit(struct net_device *dev)
-{
-	free_percpu(dev->lstats);
-}
-
 struct nlmon {
 	struct netlink_tap nt;
 };
@@ -72,8 +61,6 @@ static const struct ethtool_ops nlmon_ethtool_ops = {
 };
 
 static const struct net_device_ops nlmon_ops = {
-	.ndo_init = nlmon_dev_init,
-	.ndo_uninit = nlmon_dev_uninit,
 	.ndo_open = nlmon_open,
 	.ndo_stop = nlmon_close,
 	.ndo_start_xmit = nlmon_xmit,
@@ -92,6 +79,7 @@ static void nlmon_setup(struct net_device *dev)
 	dev->features = NETIF_F_SG | NETIF_F_FRAGLIST |
 			NETIF_F_HIGHDMA | NETIF_F_LLTX;
 	dev->flags = IFF_NOARP;
+	dev->pcpu_stat_type = NETDEV_PCPU_STAT_LSTATS;
 
 	/* That's rather a softlimit here, which, of course,
 	 * can be altered. Not a real MTU, but what is to be
-- 
2.43.0


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

* [PATCH net-next 2/2] net: nlmon: Simplify nlmon_get_stats64
  2024-03-01 13:42 [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions Breno Leitao
@ 2024-03-01 13:42 ` Breno Leitao
  2024-03-01 14:09   ` Daniel Borkmann
  2024-03-01 14:09 ` [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions Daniel Borkmann
  2024-03-04 10:20 ` patchwork-bot+netdevbpf
  2 siblings, 1 reply; 5+ messages in thread
From: Breno Leitao @ 2024-03-01 13:42 UTC (permalink / raw)
  To: kuba, davem, pabeni, edumazet, daniel
  Cc: netdev, linux-kernel, horms, dsahern

Do not set rtnl_link_stats64 fields to zero, since they are zeroed
before ops->ndo_get_stats64 is called in core dev_get_stats() function.

Also, simplify the data collection by removing the temporary variable.

Signed-off-by: Breno Leitao <leitao@debian.org>
---
 drivers/net/nlmon.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/drivers/net/nlmon.c b/drivers/net/nlmon.c
index e026bfc83757..e5a0987a263e 100644
--- a/drivers/net/nlmon.c
+++ b/drivers/net/nlmon.c
@@ -40,15 +40,7 @@ static int nlmon_close(struct net_device *dev)
 static void
 nlmon_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
 {
-	u64 packets, bytes;
-
-	dev_lstats_read(dev, &packets, &bytes);
-
-	stats->rx_packets = packets;
-	stats->tx_packets = 0;
-
-	stats->rx_bytes = bytes;
-	stats->tx_bytes = 0;
+	dev_lstats_read(dev, &stats->rx_packets, &stats->rx_bytes);
 }
 
 static u32 always_on(struct net_device *dev)
-- 
2.43.0


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

* Re: [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions
  2024-03-01 13:42 [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions Breno Leitao
  2024-03-01 13:42 ` [PATCH net-next 2/2] net: nlmon: Simplify nlmon_get_stats64 Breno Leitao
@ 2024-03-01 14:09 ` Daniel Borkmann
  2024-03-04 10:20 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 5+ messages in thread
From: Daniel Borkmann @ 2024-03-01 14:09 UTC (permalink / raw)
  To: Breno Leitao, kuba, davem, pabeni, edumazet
  Cc: netdev, linux-kernel, horms, dsahern

On 3/1/24 2:42 PM, Breno Leitao wrote:
> With commit 34d21de99cea9 ("net: Move {l,t,d}stats allocation to core and
> convert veth & vrf"), stats allocation could be done on net core
> instead of this driver.
> 
> With this new approach, the driver doesn't have to bother with error
> handling (allocation failure checking, making sure free happens in the
> right spot, etc). This is core responsibility now.
> 
> Remove the allocation in the nlmon driver and leverage the network
> core allocation.
> 
> Signed-off-by: Breno Leitao <leitao@debian.org>

Acked-by: Daniel Borkmann <daniel@iogearbox.net>

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

* Re: [PATCH net-next 2/2] net: nlmon: Simplify nlmon_get_stats64
  2024-03-01 13:42 ` [PATCH net-next 2/2] net: nlmon: Simplify nlmon_get_stats64 Breno Leitao
@ 2024-03-01 14:09   ` Daniel Borkmann
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Borkmann @ 2024-03-01 14:09 UTC (permalink / raw)
  To: Breno Leitao, kuba, davem, pabeni, edumazet
  Cc: netdev, linux-kernel, horms, dsahern

On 3/1/24 2:42 PM, Breno Leitao wrote:
> Do not set rtnl_link_stats64 fields to zero, since they are zeroed
> before ops->ndo_get_stats64 is called in core dev_get_stats() function.
> 
> Also, simplify the data collection by removing the temporary variable.
> 
> Signed-off-by: Breno Leitao <leitao@debian.org>

Acked-by: Daniel Borkmann <daniel@iogearbox.net>

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

* Re: [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions
  2024-03-01 13:42 [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions Breno Leitao
  2024-03-01 13:42 ` [PATCH net-next 2/2] net: nlmon: Simplify nlmon_get_stats64 Breno Leitao
  2024-03-01 14:09 ` [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions Daniel Borkmann
@ 2024-03-04 10:20 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-03-04 10:20 UTC (permalink / raw)
  To: Breno Leitao
  Cc: kuba, davem, pabeni, edumazet, daniel, netdev, linux-kernel,
	horms, dsahern

Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:

On Fri,  1 Mar 2024 05:42:13 -0800 you wrote:
> With commit 34d21de99cea9 ("net: Move {l,t,d}stats allocation to core and
> convert veth & vrf"), stats allocation could be done on net core
> instead of this driver.
> 
> With this new approach, the driver doesn't have to bother with error
> handling (allocation failure checking, making sure free happens in the
> right spot, etc). This is core responsibility now.
> 
> [...]

Here is the summary with links:
  - [net-next,1/2] net: nlmon: Remove init and uninit functions
    https://git.kernel.org/netdev/net-next/c/4f41ce81a919
  - [net-next,2/2] net: nlmon: Simplify nlmon_get_stats64
    https://git.kernel.org/netdev/net-next/c/26b5df99bf60

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] 5+ messages in thread

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-01 13:42 [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions Breno Leitao
2024-03-01 13:42 ` [PATCH net-next 2/2] net: nlmon: Simplify nlmon_get_stats64 Breno Leitao
2024-03-01 14:09   ` Daniel Borkmann
2024-03-01 14:09 ` [PATCH net-next 1/2] net: nlmon: Remove init and uninit functions Daniel Borkmann
2024-03-04 10: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