251a233f5b69a1229a42dbe8943070880a68c696
[openwrt/svn-archive/archive.git] / package / madwifi / patches / 112-keycache_PR_962.patch
1 Index: madwifi-ng-r2420-20070602/ath/if_ath.c
2 ===================================================================
3 --- madwifi-ng-r2420-20070602.orig/ath/if_ath.c 2007-06-04 13:21:55.006614392 +0200
4 +++ madwifi-ng-r2420-20070602/ath/if_ath.c 2007-06-04 13:21:55.390556024 +0200
5 @@ -5698,7 +5698,8 @@
6 * frame; it'll be dropped where it's not wanted.
7 */
8 if (rs->rs_keyix != HAL_RXKEYIX_INVALID &&
9 - (ni = sc->sc_keyixmap[rs->rs_keyix]) != NULL) {
10 + ((ni = sc->sc_keyixmap[rs->rs_keyix]) != NULL) &&
11 + ieee80211_check_rxnode(ni, (const struct ieee80211_frame_min *) skb->data)) {
12 struct ath_node *an;
13 /*
14 * Fast path: node is present in the key map;
15 Index: madwifi-ng-r2420-20070602/net80211/ieee80211_node.c
16 ===================================================================
17 --- madwifi-ng-r2420-20070602.orig/net80211/ieee80211_node.c 2007-06-04 13:21:53.459849536 +0200
18 +++ madwifi-ng-r2420-20070602/net80211/ieee80211_node.c 2007-06-04 13:21:55.391555872 +0200
19 @@ -1269,8 +1269,6 @@
20 IEEE80211_NODE_TABLE_UNLOCK_IRQ(nt);
21
22 return ni;
23 -#undef IS_PSPOLL
24 -#undef IS_CTL
25 }
26 #ifdef IEEE80211_DEBUG_REFCNT
27 EXPORT_SYMBOL(ieee80211_find_rxnode_debug);
28 @@ -1278,6 +1276,20 @@
29 EXPORT_SYMBOL(ieee80211_find_rxnode);
30 #endif
31
32 +int
33 +ieee80211_check_rxnode(struct ieee80211_node *ni,
34 + const struct ieee80211_frame_min *wh)
35 +{
36 + if (IS_CTL(wh) && !IS_PSPOLL(wh) /*&& !IS_RTS(ah)*/)
37 + return IEEE80211_ADDR_EQ(ni->ni_macaddr, wh->i_addr1);
38 + else
39 + return IEEE80211_ADDR_EQ(ni->ni_macaddr, wh->i_addr2);
40 +}
41 +
42 +EXPORT_SYMBOL(ieee80211_check_rxnode);
43 +#undef IS_PSPOLL
44 +#undef IS_CTL
45 +
46 /*
47 * Return a reference to the appropriate node for sending
48 * a data frame. This handles node discovery in adhoc networks.
49 Index: madwifi-ng-r2420-20070602/net80211/ieee80211_node.h
50 ===================================================================
51 --- madwifi-ng-r2420-20070602.orig/net80211/ieee80211_node.h 2007-06-04 13:21:53.466848472 +0200
52 +++ madwifi-ng-r2420-20070602/net80211/ieee80211_node.h 2007-06-04 13:21:55.392555720 +0200
53 @@ -323,6 +323,8 @@
54 *pni = NULL; /* guard against use */
55 }
56
57 +int ieee80211_check_rxnode(struct ieee80211_node *ni,
58 + const struct ieee80211_frame_min *wh);
59 int ieee80211_add_wds_addr(struct ieee80211_node_table *, struct ieee80211_node *,
60 const u_int8_t *, u_int8_t);
61 void ieee80211_remove_wds_addr(struct ieee80211_node_table *, const u_int8_t *);