b.a.t.m.a.n.lists.open-mesh.org archive mirror
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH maint] batman-adv: release station info tidstats
@ 2019-01-25  8:02 Sven Eckelmann
  2019-01-25  8:16 ` Berg, Johannes
  0 siblings, 1 reply; 3+ messages in thread
From: Sven Eckelmann @ 2019-01-25  8:02 UTC (permalink / raw)
  To: b.a.t.m.a.n
  Cc: Felix Fietkau, Sven Eckelmann, Johannes Berg, Arend van Spriel

From: Felix Fietkau <nbd@nbd.name>

With the addition of TXQ stats in the per-tid statistics the struct
station_info grew significantly. This resulted in stack size warnings
due to the structure itself being above the limit for the warnings.

To work around this, the TID array was allocated dynamically. Also a
function to free this content was introduced with commit 7ea3e110f2f8
("cfg80211: release station info tidstats where needed") but the necessary
changes were not provided for batman-adv's B.A.T.M.A.N. V implementation.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Fixes: 8689c051a201 ("cfg80211: dynamically allocate per-tid stats for station info")
[sven@narfation.org: add commit message, add compat code]
Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
Cc: Johannes Berg <johannes.berg@intel.com>
Cc: Arend van Spriel <aspriel@gmail.com>

Felix Fietkau didn't really send this patch to us and thus also didn't
signed it off. This is just a proposal how we could integrate it - please
inform me how we want to deal with it.

Thanks to Martin Weinelt for discovering this change and forwarding it to
us.
---
 compat-include/net/cfg80211.h | 7 +++++++
 net/batman-adv/bat_v_elp.c    | 3 +++
 2 files changed, 10 insertions(+)

diff --git a/compat-include/net/cfg80211.h b/compat-include/net/cfg80211.h
index 79c028af..6b6a0287 100644
--- a/compat-include/net/cfg80211.h
+++ b/compat-include/net/cfg80211.h
@@ -79,4 +79,11 @@ static inline int batadv_cfg80211_get_station(struct net_device *dev,
 
 #endif /* < KERNEL_VERSION(4, 18, 0) && IS_ENABLED(CONFIG_CFG80211) */
 
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 18, 0)
+
+#define cfg80211_sinfo_release_content(sinfo)
+
+#endif /* < KERNEL_VERSION(4, 18, 0) */
+
 #endif	/* _NET_BATMAN_ADV_COMPAT_NET_CFG80211_H_ */
diff --git a/net/batman-adv/bat_v_elp.c b/net/batman-adv/bat_v_elp.c
index e8090f09..ef0dec20 100644
--- a/net/batman-adv/bat_v_elp.c
+++ b/net/batman-adv/bat_v_elp.c
@@ -104,6 +104,9 @@ static u32 batadv_v_elp_get_throughput(struct batadv_hardif_neigh_node *neigh)
 
 		ret = cfg80211_get_station(real_netdev, neigh->addr, &sinfo);
 
+		/* free the TID stats immediately */
+		cfg80211_sinfo_release_content(&sinfo);
+
 		dev_put(real_netdev);
 		if (ret == -ENOENT) {
 			/* Node is not associated anymore! It would be
-- 
2.11.0


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

* Re: [B.A.T.M.A.N.] [PATCH maint] batman-adv: release station info tidstats
  2019-01-25  8:02 [B.A.T.M.A.N.] [PATCH maint] batman-adv: release station info tidstats Sven Eckelmann
@ 2019-01-25  8:16 ` Berg, Johannes
  2019-01-25  8:23   ` Sven Eckelmann
  0 siblings, 1 reply; 3+ messages in thread
From: Berg, Johannes @ 2019-01-25  8:16 UTC (permalink / raw)
  To: Sven Eckelmann, b.a.t.m.a.n; +Cc: Felix Fietkau, Arend van Spriel

Huh, sorry about that.

> From: Felix Fietkau <nbd@nbd.name>

If Felix had nothing to do with the patch, why would you pretend otherwise?

You need two patches - one for backports, this part:

>  compat-include/net/cfg80211.h | 7 +++++++

And for mainline, this part:

>  net/batman-adv/bat_v_elp.c    | 3 +++

So send the two separate patches to the two separate projects, and that's it?

johannes
-- 
 
Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928


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

* Re: [B.A.T.M.A.N.] [PATCH maint] batman-adv: release station info tidstats
  2019-01-25  8:16 ` Berg, Johannes
@ 2019-01-25  8:23   ` Sven Eckelmann
  0 siblings, 0 replies; 3+ messages in thread
From: Sven Eckelmann @ 2019-01-25  8:23 UTC (permalink / raw)
  To: Berg, Johannes; +Cc: b.a.t.m.a.n, Felix Fietkau, Arend van Spriel

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

On Friday, 25 January 2019 08.16.46 CET Berg, Johannes wrote:
> Huh, sorry about that.
> 
> > From: Felix Fietkau <nbd@nbd.name>
> 
> If Felix had nothing to do with the patch, why would you pretend otherwise?

This is what he has dropped and Martin Weinelt forwarded to us:
http://nbd.name/batman-adv-memleak.patch

So just the net/batman-adv/bat_v_elp.c part without anything else.

> You need two patches - one for backports, this part:
> 
> >  compat-include/net/cfg80211.h | 7 +++++++

This is not for backports [0] - this is for batman-adv.git [1]

> And for mainline, this part:
> 
> >  net/batman-adv/bat_v_elp.c    | 3 +++
> 
> So send the two separate patches to the two separate projects, and that's it?

The upstream patch (for David) is just stripped from the compat-include part.

Kind regards,
	Sven

[0] https://git.kernel.org/pub/scm/linux/kernel/git/backports/backports.git/
[1] https://git.open-mesh.org/batman-adv.git
[2] https://git.open-mesh.org/linux-merge.git/commit/7d652669b61d702c6e62a39579d17f6881670ab6

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2019-01-25  8:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-25  8:02 [B.A.T.M.A.N.] [PATCH maint] batman-adv: release station info tidstats Sven Eckelmann
2019-01-25  8:16 ` Berg, Johannes
2019-01-25  8:23   ` Sven Eckelmann

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