aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/net/mac80211.h11
-rw-r--r--net/mac80211/ieee80211_i.h1
-rw-r--r--net/mac80211/mlme.c5
-rw-r--r--net/mac80211/tx.c4
-rw-r--r--net/mac80211/wext.c14
5 files changed, 20 insertions, 15 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 76537f103872..83ee8a212296 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -515,6 +515,7 @@ static inline int __deprecated __IEEE80211_CONF_SHORT_SLOT_TIME(void)
515 * @IEEE80211_CONF_CHANGE_LISTEN_INTERVAL: the listen interval changed 515 * @IEEE80211_CONF_CHANGE_LISTEN_INTERVAL: the listen interval changed
516 * @IEEE80211_CONF_CHANGE_RADIOTAP: the radiotap flag changed 516 * @IEEE80211_CONF_CHANGE_RADIOTAP: the radiotap flag changed
517 * @IEEE80211_CONF_CHANGE_PS: the PS flag changed 517 * @IEEE80211_CONF_CHANGE_PS: the PS flag changed
518 * @IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT: the dynamic PS timeout changed
518 * @IEEE80211_CONF_CHANGE_POWER: the TX power changed 519 * @IEEE80211_CONF_CHANGE_POWER: the TX power changed
519 * @IEEE80211_CONF_CHANGE_CHANNEL: the channel/channel_type changed 520 * @IEEE80211_CONF_CHANGE_CHANNEL: the channel/channel_type changed
520 * @IEEE80211_CONF_CHANGE_RETRY_LIMITS: retry limits changed 521 * @IEEE80211_CONF_CHANGE_RETRY_LIMITS: retry limits changed
@@ -525,9 +526,10 @@ enum ieee80211_conf_changed {
525 IEEE80211_CONF_CHANGE_LISTEN_INTERVAL = BIT(2), 526 IEEE80211_CONF_CHANGE_LISTEN_INTERVAL = BIT(2),
526 IEEE80211_CONF_CHANGE_RADIOTAP = BIT(3), 527 IEEE80211_CONF_CHANGE_RADIOTAP = BIT(3),
527 IEEE80211_CONF_CHANGE_PS = BIT(4), 528 IEEE80211_CONF_CHANGE_PS = BIT(4),
528 IEEE80211_CONF_CHANGE_POWER = BIT(5), 529 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT = BIT(5),
529 IEEE80211_CONF_CHANGE_CHANNEL = BIT(6), 530 IEEE80211_CONF_CHANGE_POWER = BIT(6),
530 IEEE80211_CONF_CHANGE_RETRY_LIMITS = BIT(7), 531 IEEE80211_CONF_CHANGE_CHANNEL = BIT(7),
532 IEEE80211_CONF_CHANGE_RETRY_LIMITS = BIT(8),
531}; 533};
532 534
533/** 535/**
@@ -540,6 +542,7 @@ enum ieee80211_conf_changed {
540 * @listen_interval: listen interval in units of beacon interval 542 * @listen_interval: listen interval in units of beacon interval
541 * @flags: configuration flags defined above 543 * @flags: configuration flags defined above
542 * @power_level: requested transmit power (in dBm) 544 * @power_level: requested transmit power (in dBm)
545 * @dynamic_ps_timeout: dynamic powersave timeout (in ms)
543 * @channel: the channel to tune to 546 * @channel: the channel to tune to
544 * @channel_type: the channel (HT) type 547 * @channel_type: the channel (HT) type
545 * @long_frame_max_tx_count: Maximum number of transmissions for a "long" frame 548 * @long_frame_max_tx_count: Maximum number of transmissions for a "long" frame
@@ -552,7 +555,7 @@ enum ieee80211_conf_changed {
552struct ieee80211_conf { 555struct ieee80211_conf {
553 int beacon_int; 556 int beacon_int;
554 u32 flags; 557 u32 flags;
555 int power_level; 558 int power_level, dynamic_ps_timeout;
556 559
557 u16 listen_interval; 560 u16 listen_interval;
558 bool radio_enabled; 561 bool radio_enabled;
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
index fa5ca14517f5..3db6bc3cdaf2 100644
--- a/net/mac80211/ieee80211_i.h
+++ b/net/mac80211/ieee80211_i.h
@@ -700,7 +700,6 @@ struct ieee80211_local {
700 unsigned int wmm_acm; /* bit field of ACM bits (BIT(802.1D tag)) */ 700 unsigned int wmm_acm; /* bit field of ACM bits (BIT(802.1D tag)) */
701 701
702 bool powersave; 702 bool powersave;
703 int dynamic_ps_timeout;
704 struct work_struct dynamic_ps_enable_work; 703 struct work_struct dynamic_ps_enable_work;
705 struct work_struct dynamic_ps_disable_work; 704 struct work_struct dynamic_ps_disable_work;
706 struct timer_list dynamic_ps_timer; 705 struct timer_list dynamic_ps_timer;
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 6a90171c859f..7709e7645671 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -777,9 +777,10 @@ static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
777 777
778 if (local->powersave && 778 if (local->powersave &&
779 !(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) { 779 !(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) {
780 if (local->dynamic_ps_timeout > 0) 780 if (local->hw.conf.dynamic_ps_timeout > 0)
781 mod_timer(&local->dynamic_ps_timer, jiffies + 781 mod_timer(&local->dynamic_ps_timer, jiffies +
782 msecs_to_jiffies(local->dynamic_ps_timeout)); 782 msecs_to_jiffies(
783 local->hw.conf.dynamic_ps_timeout));
783 else { 784 else {
784 ieee80211_send_nullfunc(local, sdata, 1); 785 ieee80211_send_nullfunc(local, sdata, 1);
785 conf->flags |= IEEE80211_CONF_PS; 786 conf->flags |= IEEE80211_CONF_PS;
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index 96eca341160b..b18a72690119 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -1296,7 +1296,7 @@ int ieee80211_master_start_xmit(struct sk_buff *skb, struct net_device *dev)
1296 } 1296 }
1297 1297
1298 if (!(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS) && 1298 if (!(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS) &&
1299 local->dynamic_ps_timeout > 0) { 1299 local->hw.conf.dynamic_ps_timeout > 0) {
1300 if (local->hw.conf.flags & IEEE80211_CONF_PS) { 1300 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1301 ieee80211_stop_queues_by_reason(&local->hw, 1301 ieee80211_stop_queues_by_reason(&local->hw,
1302 IEEE80211_QUEUE_STOP_REASON_PS); 1302 IEEE80211_QUEUE_STOP_REASON_PS);
@@ -1305,7 +1305,7 @@ int ieee80211_master_start_xmit(struct sk_buff *skb, struct net_device *dev)
1305 } 1305 }
1306 1306
1307 mod_timer(&local->dynamic_ps_timer, jiffies + 1307 mod_timer(&local->dynamic_ps_timer, jiffies +
1308 msecs_to_jiffies(local->dynamic_ps_timeout)); 1308 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
1309 } 1309 }
1310 1310
1311 memset(info, 0, sizeof(*info)); 1311 memset(info, 0, sizeof(*info));
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c
index 3fc1b903bfbc..3f2db0bda46c 100644
--- a/net/mac80211/wext.c
+++ b/net/mac80211/wext.c
@@ -863,17 +863,19 @@ static int ieee80211_ioctl_siwpower(struct net_device *dev,
863 timeout = wrq->value / 1000; 863 timeout = wrq->value / 1000;
864 864
865set: 865set:
866 if (ps == local->powersave && timeout == local->dynamic_ps_timeout) 866 if (ps == local->powersave && timeout == conf->dynamic_ps_timeout)
867 return ret; 867 return ret;
868 868
869 local->powersave = ps; 869 local->powersave = ps;
870 local->dynamic_ps_timeout = timeout; 870 conf->dynamic_ps_timeout = timeout;
871 871
872 if (!(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS) && 872 if (local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS) {
873 (sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED)) { 873 ret = ieee80211_hw_config(local,
874 if (local->dynamic_ps_timeout > 0) 874 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT);
875 } else if (sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED) {
876 if (conf->dynamic_ps_timeout > 0)
875 mod_timer(&local->dynamic_ps_timer, jiffies + 877 mod_timer(&local->dynamic_ps_timer, jiffies +
876 msecs_to_jiffies(local->dynamic_ps_timeout)); 878 msecs_to_jiffies(conf->dynamic_ps_timeout));
877 else { 879 else {
878 if (local->powersave) { 880 if (local->powersave) {
879 ieee80211_send_nullfunc(local, sdata, 1); 881 ieee80211_send_nullfunc(local, sdata, 1);