netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC] make wext wireless bits optional and deprecate them
@ 2008-05-17 12:12 Johannes Berg
       [not found] ` <1211026337.3827.25.camel-YfaajirXv214zXjbi5bjpg@public.gmane.org>
  2008-05-17 13:45 ` Marcel Holtmann
  0 siblings, 2 replies; 17+ messages in thread
From: Johannes Berg @ 2008-05-17 12:12 UTC (permalink / raw)
  To: netdev; +Cc: Jean Tourrilhes, linux-wireless, Linux Kernel list

The /sys/class/net/*/wireless/ direcory is, as far as I know, not
used by anyone. Additionally, the same data is available via wext
ioctls. Hence the sysfs files are pretty much useless. This patch
makes them optional and schedules them for removal.

Signed-off-by: Johannes Berg <johannes-cdvu00un1VgdHxzADdlk8Q@public.gmane.org>
Cc: Jean Tourrilhes <jt-sDzT885Ts8HQT0dZR+AlfA@public.gmane.org>
---
 Documentation/feature-removal-schedule.txt |    8 ++++++++
 net/core/net-sysfs.c                       |    4 ++--
 net/wireless/Kconfig                       |   11 +++++++++++
 3 files changed, 21 insertions(+), 2 deletions(-)

--- everything.orig/net/core/net-sysfs.c	2008-05-17 13:22:21.000000000 +0200
+++ everything/net/core/net-sysfs.c	2008-05-17 13:23:43.000000000 +0200
@@ -318,7 +318,7 @@ static struct attribute_group netstat_gr
 	.attrs  = netstat_attrs,
 };
 
-#ifdef CONFIG_WIRELESS_EXT
+#ifdef CONFIG_WIRELESS_EXT_SYSFS
 /* helper function that does all the locking etc for wireless stats */
 static ssize_t wireless_show(struct device *d, char *buf,
 			     ssize_t (*format)(const struct iw_statistics *,
@@ -460,7 +460,7 @@ int netdev_register_kobject(struct net_d
 	if (net->get_stats)
 		*groups++ = &netstat_group;
 
-#ifdef CONFIG_WIRELESS_EXT
+#ifdef CONFIG_WIRELESS_EXT_SYSFS
 	if (net->wireless_handlers && net->wireless_handlers->get_wireless_stats)
 		*groups++ = &wireless_group;
 #endif
--- everything.orig/net/wireless/Kconfig	2008-05-17 13:22:21.000000000 +0200
+++ everything/net/wireless/Kconfig	2008-05-17 14:09:01.000000000 +0200
@@ -29,3 +29,14 @@ config WIRELESS_EXT
 
 	  Say N (if you can) unless you know you need wireless
 	  extensions for external modules.
+
+config WIRELESS_EXT_SYSFS
+	bool "Wireless extensions sysfs files"
+	default y
+	depends on WIRELESS_EXT && SYSFS
+	help
+	  This option enables the deprecated wireless statistics
+	  files in /sys/class/net/*/wireless/. The same information
+	  is available via the ioctls as well.
+
+	  Say Y if you have programs using it (we don't know of any).
--- everything.orig/Documentation/feature-removal-schedule.txt	2008-05-17 13:22:20.000000000 +0200
+++ everything/Documentation/feature-removal-schedule.txt	2008-05-17 14:08:37.000000000 +0200
@@ -304,3 +304,11 @@ When:	2.6.26
 Why:	Implementation became generic; users should now include
 	linux/semaphore.h instead.
 Who:	Matthew Wilcox <willy-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
+
+---------------------------
+
+What:	Code that is now under CONFIG_WIRELESS_EXT_SYSFS
+	(in net/core/net-sysfs.c)
+When:	June 2009
+Why:	Not used by anyone, over 1K .text/.data size reduction.
+Who:	Johannes Berg <johannes-cdvu00un1VgdHxzADdlk8Q@public.gmane.org>


--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2008-05-21 21:43 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-17 12:12 [RFC] make wext wireless bits optional and deprecate them Johannes Berg
     [not found] ` <1211026337.3827.25.camel-YfaajirXv214zXjbi5bjpg@public.gmane.org>
2008-05-17 12:16   ` Johannes Berg
2008-05-17 13:45 ` Marcel Holtmann
     [not found]   ` <CD993362-B1DE-4E4D-8A5B-E9E2AD7DA04C-kz+m5ild9QBg9hUCZPvPmw@public.gmane.org>
2008-05-17 13:54     ` Johannes Berg
2008-05-17 14:36       ` Marcel Holtmann
     [not found]         ` <31B1A5D6-8E8B-4148-860F-326FEEE5A3EE-kz+m5ild9QBg9hUCZPvPmw@public.gmane.org>
2008-05-17 14:42           ` Johannes Berg
     [not found]       ` <1211032475.6252.2.camel-YfaajirXv214zXjbi5bjpg@public.gmane.org>
2008-05-18 13:36         ` Dan Williams
     [not found]           ` <1211117795.686.15.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2008-05-19 12:16             ` Johannes Berg
2008-05-19 15:24               ` Dan Williams
     [not found]                 ` <1211210686.12187.6.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2008-05-19 15:39                   ` Johannes Berg
     [not found]                     ` <1211211547.6252.54.camel-YfaajirXv214zXjbi5bjpg@public.gmane.org>
2008-05-19 15:53                       ` Dan Williams
2008-05-19 17:03                 ` Jean Tourrilhes
2008-05-19 17:01               ` Jean Tourrilhes
2008-05-20 17:15     ` Johannes Berg
2008-05-20 17:28       ` Marcel Holtmann
     [not found]       ` <1211303731.6252.105.camel-YfaajirXv214zXjbi5bjpg@public.gmane.org>
2008-05-21 21:03         ` John W. Linville
2008-05-21 21:37           ` Johannes Berg

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