From a195852e7f0b0808d3b8447fd07483009e7bbe3c Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Wed, 11 Nov 2009 16:59:36 +0000
Subject: [PATCH] mac80211: disable powersave on the sta by default (for
 performance reasons)

SVN-Revision: 18379
---
 package/mac80211/files/lib/wifi/mac80211.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh
index 027749e578..00a81393d6 100644
--- a/package/mac80211/files/lib/wifi/mac80211.sh
+++ b/package/mac80211/files/lib/wifi/mac80211.sh
@@ -127,6 +127,9 @@ enable_mac80211() {
 				local wdsflag
 				[ "$wds" -gt 0 ] && wdsflag="wds on"
 				iw phy "$phy" interface add "$ifname" type managed $wdsflag
+				config_get_bool powersave "$vif" powersave 0
+				[ "$powersave" -gt 0 ] && powersave="on" || powersave="off"
+				iwconfig "$ifname" power "$powersave"
 			;;
 		esac
 
-- 
GitLab