Gave this a brief try without altering wifi channels or wpa/wep etc.
Saw a minor speed increase on a couple of downloads, from always <60kB/s to about 105kB/s at the start of downloads that slowed down to usual speeds. No difference good or bad to connection stability, which for me was fixed with Notaz driver fix.
I then did the following from the old forums thread on this beta test :
Code:
# turn power saving on to test
sudo iwconfig wlan0 power on
# do a small ping to "warm up" the module. This is required for power save mode, other wise the first few packets tend to get lost. Ignore the output of this
sudo ping 192.168.1.254 -s 1500 -c 4
# an actual test, note this output!
sudo ping 192.168.1.254 -s 1500 -c 1000 -f
# turn power saving off and try again
sudo iwconfig wlan0 power off
sudo ping 192.168.1.254 -s 1500 -c 1000 -f
Replace the ip with your own router's IP of course. This'll give some standardized statistics of both power off and power on mode, as well as an approximate transfer speed (1000*1500*2/(time/100))
----------------------------
My results:
mariopandio-openpandora:~$ sudo iwconfig wlan0 power on
mariopandio-openpandora:~$ sudo ping 192.168.2.1 -s 1500 -c 4
Password:
PING 192.168.2.1 (192.168.2.1) 1500(1528) bytes of data.
1508 bytes from 192.168.2.1: icmp_seq=1 ttl=64 time=87.2 ms
1508 bytes from 192.168.2.1: icmp_seq=2 ttl=64 time=55.0 ms
1508 bytes from 192.168.2.1: icmp_seq=3 ttl=64 time=78.5 ms
1508 bytes from 192.168.2.1: icmp_seq=4 ttl=64 time=86.3 ms
--- 192.168.2.1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3024ms
rtt min/avg/max/mdev = 55.085/76.828/87.280/13.007 ms
mariopandio-openpandora:~$ sudo ping 192.168.2.1 -s 1500 -c 1000 -f
PING 192.168.2.1 (192.168.2.1) 1500(1528) bytes of data.
...........................................................................
--- 192.168.2.1 ping statistics ---
1000 packets transmitted, 774 received, 22% packet loss, time 20403ms
rtt min/avg/max/mdev = 41.870/2060.139/4028.565/604.238 ms, pipe 135, ipg/ewma 20.423/3356.041 ms
mariopandio-openpandora:~$ sudo iwconfig wlan0 power off
mariopandio-openpandora:~$ sudo ping 192.168.2.1 -s 1500 -c 4
PING 192.168.2.1 (192.168.2.1) 1500(1528) bytes of data.
1508 bytes from 192.168.2.1: icmp_seq=1 ttl=64 time=30.7 ms
1508 bytes from 192.168.2.1: icmp_seq=2 ttl=64 time=38.9 ms
1508 bytes from 192.168.2.1: icmp_seq=3 ttl=64 time=31.6 ms
1508 bytes from 192.168.2.1: icmp_seq=4 ttl=64 time=38.9 ms
--- 192.168.2.1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3038ms
rtt min/avg/max/mdev = 30.731/35.064/38.971/3.896 ms
mariopandio-openpandora:~$ sudo ping 192.168.2.1 -s 1500 -c 1000 -f
PING 192.168.2.1 (192.168.2.1) 1500(1528) bytes of data.
...........................................................................
--- 192.168.2.1 ping statistics ---
1000 packets transmitted, 765 received, 23% packet loss, time 20429ms
rtt min/avg/max/mdev = 42.633/2355.891/3547.455/1029.712 ms, pipe 175, ipg/ewma 20.449/3004.528 ms
Will re test other channels etc later