SOURCES: madwifi-ng-r1679.patch (NEW) - http://patches.aircrack-ng...

mguevara mguevara at pld-linux.org
Wed Jul 19 22:09:11 CEST 2006


Author: mguevara                     Date: Wed Jul 19 20:09:11 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- http://patches.aircrack-ng.org/madwifi-ng-r1679.patch

---- Files affected:
SOURCES:
   madwifi-ng-r1679.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/madwifi-ng-r1679.patch
diff -u /dev/null SOURCES/madwifi-ng-r1679.patch:1.1
--- /dev/null	Wed Jul 19 22:09:11 2006
+++ SOURCES/madwifi-ng-r1679.patch	Wed Jul 19 22:09:06 2006
@@ -0,0 +1,24 @@
+diff -ur madwifi-ng-r1679/ath/if_ath.c patched_madwifi-ng-r1545/ath/if_ath.c
+--- madwifi-ng-r1679/ath/if_ath.c	2006-07-04 12:23:35.000000000 +0200
++++ patched_madwifi-ng-r1679/ath/if_ath.c	2006-07-08 02:38:59.000000000 +0200
+@@ -2248,6 +2248,7 @@
+ ath_tx_startraw(struct net_device *dev, struct ath_buf *bf, struct sk_buff *skb) 
+ {
+ 	struct ath_softc *sc = dev->priv;
++	struct ieee80211com *ic = &sc->sc_ic;
+ 	struct ath_hal *ah = sc->sc_ah;
+ 	struct ieee80211_phy_params *ph = (struct ieee80211_phy_params *) (skb->cb + sizeof(struct ieee80211_cb));
+ 	const HAL_RATE_TABLE *rt;
+@@ -2264,7 +2265,11 @@
+ 	struct ieee80211_frame *wh; 
+ 	
+ 	wh = (struct ieee80211_frame *) skb->data;
+-	try0 = ph->try0;
++	try0 = (ic->ic_opmode == IEEE80211_M_MONITOR) ? 1 : ph->try0;
++	/*
++	 * The retry value has to be patched to 1 when injecting,
++	 * otherwise the sequence number will be overwritten
++	 */
+ 	rt = sc->sc_currates;
+ 	txrate = dot11_to_ratecode(sc, rt, ph->rate0);
+ 	power = ph->power > 60 ? 60 : ph->power;
================================================================


More information about the pld-cvs-commit mailing list