Linux wireless drivers development
 help / color / mirror / Atom feed
* rt2500pci 2.0.9 not working
@ 2007-10-01 10:18 Marcus Better
  2007-10-10  9:06 ` Marcus Better
  0 siblings, 1 reply; 38+ messages in thread
From: Marcus Better @ 2007-10-01 10:18 UTC (permalink / raw)
  To: linux-wireless

I just tried the rt2500pci driver version 2.0.9 from the wireless-2.6 tree.
It does not work. There is no connection, and "iwlist scan" produces no
scan results.

I'm successfully using version 2.0.7 from wireless-dev (2.6.23-rc3 i386) on
this LG laptop.

Marcus



^ permalink raw reply	[flat|nested] 38+ messages in thread
* [PATCH] Add get_unaligned to ieee80211_get_radiotap_len
@ 2007-10-26 21:04 John W. Linville
  2007-10-26 21:04 ` [PATCH] Improve sanity checks on injected packets John W. Linville
  0 siblings, 1 reply; 38+ messages in thread
From: John W. Linville @ 2007-10-26 21:04 UTC (permalink / raw)
  To: stable; +Cc: linux-wireless, warmcat, John W. Linville

From: warmcat <andy@warmcat.com>

ieee80211_get_radiotap_len() tries to dereference radiotap length without
taking care that it is completely unaligned and get_unaligned()
is required.

Signed-off-by: Andy Green <andy@warmcat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
---
 net/mac80211/ieee80211.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/mac80211/ieee80211.c b/net/mac80211/ieee80211.c
index ff2172f..9b9d716 100644
--- a/net/mac80211/ieee80211.c
+++ b/net/mac80211/ieee80211.c
@@ -350,7 +350,7 @@ static int ieee80211_get_radiotap_len(struct sk_buff *skb)
 	struct ieee80211_radiotap_header *hdr =
 		(struct ieee80211_radiotap_header *) skb->data;
 
-	return le16_to_cpu(hdr->it_len);
+	return le16_to_cpu(get_unaligned(&hdr->it_len));
 }
 
 #ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP
-- 
1.5.2.4


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

end of thread, other threads:[~2007-10-28  8:00 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-01 10:18 rt2500pci 2.0.9 not working Marcus Better
2007-10-10  9:06 ` Marcus Better
2007-10-10  9:26   ` Johannes Berg
2007-10-10  9:43     ` Marcus Better
2007-10-10  9:51       ` Johannes Berg
2007-10-10 10:56         ` Marcus Better
2007-10-10 11:30           ` Johannes Berg
2007-10-10 12:17             ` Marcus Better
2007-10-10 17:43               ` Johannes Berg
2007-10-11  9:05                 ` Marcus Better
2007-10-11  9:15                   ` Johannes Berg
2007-10-11 18:05                     ` Ivo van Doorn
2007-10-12  9:04                       ` Marcus Better
2007-10-12 13:32                         ` Marcus Better
2007-10-12 14:50                           ` Larry Finger
2007-10-15  9:57                             ` Marcus Better
2007-10-15 21:49                               ` Adam Baker
2007-10-12 19:18                         ` Johannes Berg
2007-10-12 19:24                           ` [PATCH v2] mac80211: fix set_channel regression Johannes Berg
2007-10-12 20:41                             ` Michael Wu
2007-10-15  7:04                             ` Marcus Better
2007-10-15  8:32                               ` Johannes Berg
2007-10-15 11:37                                 ` Marcus Better
2007-10-15 11:45                                   ` Johannes Berg
2007-10-15 18:13                                     ` Ivo van Doorn
2007-10-18  9:37                                       ` Marcus Better
2007-10-19  7:49                                       ` Marcus Better
2007-10-19 19:10                                         ` Ivo van Doorn
2007-10-24  7:36                                           ` Marcus Better
2007-10-10 10:03   ` [PATCH] mac80211: reorder association debug output Johannes Berg
2007-10-10 20:52     ` Michael Wu
  -- strict thread matches above, loose matches on Subject: below --
2007-10-26 21:04 [PATCH] Add get_unaligned to ieee80211_get_radiotap_len John W. Linville
2007-10-26 21:04 ` [PATCH] Improve sanity checks on injected packets John W. Linville
2007-10-26 21:04   ` [PATCH] mac80211: filter locally-originated multicast frames John W. Linville
2007-10-26 21:04     ` [PATCH] libertas: fix endianness breakage John W. Linville
2007-10-26 21:04       ` [PATCH] libertas: more " John W. Linville
2007-10-26 21:04         ` [PATCH] ieee80211: fix TKIP QoS bug John W. Linville
2007-10-26 21:04           ` [PATCH] mac80211: reorder association debug output John W. Linville
2007-10-26 21:10             ` Johannes Berg
2007-10-26 21:23               ` John W. Linville
2007-10-26 21:44                 ` Johannes Berg
2007-10-27 12:50                   ` John W. Linville
2007-10-27 12:58                     ` Johannes Berg
2007-10-28  7:57                       ` Michael Wu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox