Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH v2] mac80211: Extend the rate control API with an update callback
@ 2009-02-12  6:08 Sujith
  2009-02-12  9:17 ` Johannes Berg
  0 siblings, 1 reply; 2+ messages in thread
From: Sujith @ 2009-02-12  6:08 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, johannes, Jouni.Malinen

The AP can switch dynamically between 20/40 Mhz channel width,
in which case we switch the local operating channel, but the
rate control algorithm is not notified. This patch adds a new callback
to indicate such changes to the RC algorithm.

Currently, HT channel width change is notified, but this callback
can be used to indicate any new requirements that might come up later on.

Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
---
v2:
--
* Rebased over [PATCH] mac80211: split IBSS/managed code

 include/net/mac80211.h |   13 +++++++++++++
 net/mac80211/ht.c      |   13 +++++++++++++
 net/mac80211/rate.h    |   12 ++++++++++++
 3 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 31fd8ba..e01c63a 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -1975,6 +1975,16 @@ struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_hw *hw,
 /* Rate control API */
 
 /**
+ * enum rate_control_changed - flags to indicate which parameter changed
+ *
+ * @IEEE80211_RC_HT_CHANGED: The HT parameters of the operating channel have
+ *	changed, rate control algorithm can update its internal state if needed.
+ */
+enum rate_control_changed {
+	IEEE80211_RC_HT_CHANGED = BIT(0)
+};
+
+/**
  * struct ieee80211_tx_rate_control - rate control information for/from RC algo
  *
  * @hw: The hardware the algorithm is invoked for.
@@ -2010,6 +2020,9 @@ struct rate_control_ops {
 	void *(*alloc_sta)(void *priv, struct ieee80211_sta *sta, gfp_t gfp);
 	void (*rate_init)(void *priv, struct ieee80211_supported_band *sband,
 			  struct ieee80211_sta *sta, void *priv_sta);
+	void (*rate_update)(void *priv, struct ieee80211_supported_band *sband,
+			    struct ieee80211_sta *sta,
+			    void *priv_sta, u32 changed);
 	void (*free_sta)(void *priv, struct ieee80211_sta *sta,
 			 void *priv_sta);
 
diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c
index 69b6e9a..4e3c72f 100644
--- a/net/mac80211/ht.c
+++ b/net/mac80211/ht.c
@@ -17,6 +17,7 @@
 #include <net/wireless.h>
 #include <net/mac80211.h>
 #include "ieee80211_i.h"
+#include "rate.h"
 
 void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_supported_band *sband,
 				       struct ieee80211_ht_cap *ht_cap_ie,
@@ -93,7 +94,9 @@ u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
 {
 	struct ieee80211_local *local = sdata->local;
 	struct ieee80211_supported_band *sband;
+	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
 	struct ieee80211_bss_ht_conf ht;
+	struct sta_info *sta;
 	u32 changed = 0;
 	bool enable_ht = true, ht_changed;
 	enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
@@ -136,6 +139,16 @@ u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
 	if (ht_changed) {
                 /* channel_type change automatically detected */
 		ieee80211_hw_config(local, 0);
+
+		rcu_read_lock();
+
+		sta = sta_info_get(local, ifmgd->bssid);
+		if (sta)
+			rate_control_rate_update(local, sband, sta,
+						 IEEE80211_RC_HT_CHANGED);
+
+		rcu_read_unlock();
+
         }
 
 	/* disable HT */
diff --git a/net/mac80211/rate.h b/net/mac80211/rate.h
index 928da62..b9164c9 100644
--- a/net/mac80211/rate.h
+++ b/net/mac80211/rate.h
@@ -62,6 +62,18 @@ static inline void rate_control_rate_init(struct sta_info *sta)
 	ref->ops->rate_init(ref->priv, sband, ista, priv_sta);
 }
 
+static inline void rate_control_rate_update(struct ieee80211_local *local,
+				    struct ieee80211_supported_band *sband,
+				    struct sta_info *sta, u32 changed)
+{
+	struct rate_control_ref *ref = local->rate_ctrl;
+	struct ieee80211_sta *ista = &sta->sta;
+	void *priv_sta = sta->rate_ctrl_priv;
+
+	if (ref->ops->rate_update)
+		ref->ops->rate_update(ref->priv, sband, ista,
+				      priv_sta, changed);
+}
 
 static inline void *rate_control_alloc_sta(struct rate_control_ref *ref,
 					   struct ieee80211_sta *sta,
-- 
1.6.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] mac80211: Extend the rate control API with an update callback
  2009-02-12  6:08 [PATCH v2] mac80211: Extend the rate control API with an update callback Sujith
@ 2009-02-12  9:17 ` Johannes Berg
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2009-02-12  9:17 UTC (permalink / raw)
  To: Sujith; +Cc: linville, linux-wireless, Jouni.Malinen

[-- Attachment #1: Type: text/plain, Size: 4358 bytes --]

On Thu, 2009-02-12 at 11:38 +0530, Sujith wrote:
> The AP can switch dynamically between 20/40 Mhz channel width,
> in which case we switch the local operating channel, but the
> rate control algorithm is not notified. This patch adds a new callback
> to indicate such changes to the RC algorithm.
> 
> Currently, HT channel width change is notified, but this callback
> can be used to indicate any new requirements that might come up later on.

Looks good to me.

> Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>

Acked-by: Johannes Berg <johannes@sipsolutions.net>

> ---
> v2:
> --
> * Rebased over [PATCH] mac80211: split IBSS/managed code
> 
>  include/net/mac80211.h |   13 +++++++++++++
>  net/mac80211/ht.c      |   13 +++++++++++++
>  net/mac80211/rate.h    |   12 ++++++++++++
>  3 files changed, 38 insertions(+), 0 deletions(-)
> 
> diff --git a/include/net/mac80211.h b/include/net/mac80211.h
> index 31fd8ba..e01c63a 100644
> --- a/include/net/mac80211.h
> +++ b/include/net/mac80211.h
> @@ -1975,6 +1975,16 @@ struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_hw *hw,
>  /* Rate control API */
>  
>  /**
> + * enum rate_control_changed - flags to indicate which parameter changed
> + *
> + * @IEEE80211_RC_HT_CHANGED: The HT parameters of the operating channel have
> + *	changed, rate control algorithm can update its internal state if needed.
> + */
> +enum rate_control_changed {
> +	IEEE80211_RC_HT_CHANGED = BIT(0)
> +};
> +
> +/**
>   * struct ieee80211_tx_rate_control - rate control information for/from RC algo
>   *
>   * @hw: The hardware the algorithm is invoked for.
> @@ -2010,6 +2020,9 @@ struct rate_control_ops {
>  	void *(*alloc_sta)(void *priv, struct ieee80211_sta *sta, gfp_t gfp);
>  	void (*rate_init)(void *priv, struct ieee80211_supported_band *sband,
>  			  struct ieee80211_sta *sta, void *priv_sta);
> +	void (*rate_update)(void *priv, struct ieee80211_supported_band *sband,
> +			    struct ieee80211_sta *sta,
> +			    void *priv_sta, u32 changed);
>  	void (*free_sta)(void *priv, struct ieee80211_sta *sta,
>  			 void *priv_sta);
>  
> diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c
> index 69b6e9a..4e3c72f 100644
> --- a/net/mac80211/ht.c
> +++ b/net/mac80211/ht.c
> @@ -17,6 +17,7 @@
>  #include <net/wireless.h>
>  #include <net/mac80211.h>
>  #include "ieee80211_i.h"
> +#include "rate.h"
>  
>  void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_supported_band *sband,
>  				       struct ieee80211_ht_cap *ht_cap_ie,
> @@ -93,7 +94,9 @@ u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
>  {
>  	struct ieee80211_local *local = sdata->local;
>  	struct ieee80211_supported_band *sband;
> +	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
>  	struct ieee80211_bss_ht_conf ht;
> +	struct sta_info *sta;
>  	u32 changed = 0;
>  	bool enable_ht = true, ht_changed;
>  	enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
> @@ -136,6 +139,16 @@ u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
>  	if (ht_changed) {
>                  /* channel_type change automatically detected */
>  		ieee80211_hw_config(local, 0);
> +
> +		rcu_read_lock();
> +
> +		sta = sta_info_get(local, ifmgd->bssid);
> +		if (sta)
> +			rate_control_rate_update(local, sband, sta,
> +						 IEEE80211_RC_HT_CHANGED);
> +
> +		rcu_read_unlock();
> +
>          }
>  
>  	/* disable HT */
> diff --git a/net/mac80211/rate.h b/net/mac80211/rate.h
> index 928da62..b9164c9 100644
> --- a/net/mac80211/rate.h
> +++ b/net/mac80211/rate.h
> @@ -62,6 +62,18 @@ static inline void rate_control_rate_init(struct sta_info *sta)
>  	ref->ops->rate_init(ref->priv, sband, ista, priv_sta);
>  }
>  
> +static inline void rate_control_rate_update(struct ieee80211_local *local,
> +				    struct ieee80211_supported_band *sband,
> +				    struct sta_info *sta, u32 changed)
> +{
> +	struct rate_control_ref *ref = local->rate_ctrl;
> +	struct ieee80211_sta *ista = &sta->sta;
> +	void *priv_sta = sta->rate_ctrl_priv;
> +
> +	if (ref->ops->rate_update)
> +		ref->ops->rate_update(ref->priv, sband, ista,
> +				      priv_sta, changed);
> +}
>  
>  static inline void *rate_control_alloc_sta(struct rate_control_ref *ref,
>  					   struct ieee80211_sta *sta,

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-02-12  9:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12  6:08 [PATCH v2] mac80211: Extend the rate control API with an update callback Sujith
2009-02-12  9:17 ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox