All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch]mac80211: add support for iwlist channel
@ 2007-06-18  8:47 Hong Liu
  2007-06-19  5:12 ` Michael Wu
  2007-06-19  8:50 ` Jiri Benc
  0 siblings, 2 replies; 13+ messages in thread
From: Hong Liu @ 2007-06-18  8:47 UTC (permalink / raw)
  To: John W. Linville, Michael Wu, Jiri Benc; +Cc: linux-wireless

Add supported channels info in SIOCGIWRANGE implementation.

Signed-off-by: Hong Liu <hong.liu@intel.com>

diff --git a/net/mac80211/ieee80211_ioctl.c b/net/mac80211/ieee80211_ioctl.c
index fcea8b2..3ea3ad8 100644
--- a/net/mac80211/ieee80211_ioctl.c
+++ b/net/mac80211/ieee80211_ioctl.c
@@ -1493,6 +1493,40 @@ static int ieee80211_ioctl_giwname(struct net_device *dev,
 	return 0;
 }
 
+static int is_duplicate_channel(struct ieee80211_channel *chan,
+				struct iw_freq *freq, int count)
+{
+	int i;
+
+	for (i = 0; i < count; i++, freq++)
+		if (chan->chan == freq->i)
+			return 1;
+
+	return 0;
+}
+
+static void ieee80211_get_supp_channels(struct ieee80211_local *local,
+				struct iw_range *range)
+{
+	struct ieee80211_hw_mode *mode = NULL;
+	int c = 0, j;
+
+	list_for_each_entry(mode, &local->modes_list, list) {
+		for (j = 0;
+		     j < mode->num_channels && c < IW_MAX_FREQUENCIES; j++) {
+			struct ieee80211_channel *chan = &mode->channels[j];
+
+			if (is_duplicate_channel(chan, range->freq, c))
+				continue;
+			range->freq[c].i = chan->chan;
+			range->freq[c].m = chan->freq * 100000;
+			range->freq[c].e = 1;
+			c++;
+		}
+	}
+	range->num_channels = c;
+	range->num_frequency = c;
+}
 
 static int ieee80211_ioctl_giwrange(struct net_device *dev,
 				 struct iw_request_info *info,
@@ -1533,6 +1567,8 @@ static int ieee80211_ioctl_giwrange(struct net_device *dev,
 	range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
 			  IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
 
+	ieee80211_get_supp_channels(local, range);
+
 	IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
 	IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWTHRSPY);
 	IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);

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

end of thread, other threads:[~2007-06-21  1:46 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-18  8:47 [patch]mac80211: add support for iwlist channel Hong Liu
2007-06-19  5:12 ` Michael Wu
2007-06-20  3:03   ` Hong Liu
2007-06-20  3:24     ` Larry Finger
2007-06-20  7:08     ` Michael Wu
2007-06-21  1:43       ` Hong Liu
2007-06-19  8:50 ` Jiri Benc
2007-06-20  2:10   ` Hong Liu
2007-06-20  9:55     ` Jiri Benc
2007-06-20 17:43       ` James Ketrenos
2007-06-20 16:25         ` Jiri Benc
2007-06-20 18:19           ` James Ketrenos
2007-06-20 17:05             ` Jiri Benc

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.