Re: [PATCH 3/3] bcm43xx-d80211: use host_gen_beacon_template

2006-06-24 Thread Jiri Benc
Fri, 23 Jun 2006 23:12:15 +0200, Michael Buesch wrote:
> John, please apply.

Please do not apply the whole series yet, it is experimental and not well
tested (I wrote it in the introduction e-mail but will ensure I put it also
in subjects next time).

For example, I just realized that the first patch breaks scanning in STA
mode.

Thanks,

 Jiri

-- 
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 3/3] bcm43xx-d80211: use host_gen_beacon_template

2006-06-23 Thread Michael Buesch
On Friday 23 June 2006 20:16, Jiri Benc wrote:
> Use new host_gen_beacon_template flag. This also means workaround with
> "iwconfig essid" after hostapd is run is not necessary anymore.
> 
> Signed-off-by: Jiri Benc <[EMAIL PROTECTED]>

Signed-off-by: Michael Buesch <[EMAIL PROTECTED]>

John, please apply.

> ---
> 
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c |   36 
> ++---
>  1 files changed, 11 insertions(+), 25 deletions(-)
> 
> --- dscape.orig/drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c
> +++ dscape/drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c
> @@ -1710,17 +1710,12 @@ static void bcm43xx_write_probe_resp_tem
>   kfree(probe_resp_data);
>  }
>  
> -static int bcm43xx_refresh_cached_beacon(struct bcm43xx_private *bcm)
> +static int bcm43xx_refresh_cached_beacon(struct bcm43xx_private *bcm,
> +  struct sk_buff *beacon)
>  {
> - struct ieee80211_tx_control control;
> -
>   if (bcm->cached_beacon)
>   kfree_skb(bcm->cached_beacon);
> - bcm->cached_beacon = ieee80211_beacon_get(bcm->net_dev,
> -   bcm->interface.if_id,
> -   &control);
> - if (unlikely(!bcm->cached_beacon))
> - return -ENOMEM;
> + bcm->cached_beacon = beacon;
>  
>   return 0;
>  }
> @@ -1743,16 +1738,15 @@ static void bcm43xx_update_templates(str
>   bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
>  }
>  
> -static void bcm43xx_refresh_templates(struct bcm43xx_private *bcm)
> +static void bcm43xx_refresh_templates(struct bcm43xx_private *bcm,
> +   struct sk_buff *beacon)
>  {
>   int err;
>  
> - err = bcm43xx_refresh_cached_beacon(bcm);
> + err = bcm43xx_refresh_cached_beacon(bcm, beacon);
>   if (unlikely(err))
>   return;
>   bcm43xx_update_templates(bcm);
> - kfree_skb(bcm->cached_beacon);
> - bcm->cached_beacon = NULL;
>  }
>  
>  static void bcm43xx_set_ssid(struct bcm43xx_private *bcm,
> @@ -1792,19 +1786,11 @@ static void bcm43xx_set_beacon_int(struc
>  static void handle_irq_beacon(struct bcm43xx_private *bcm)
>  {
>   u32 status;
> - int err;
>  
>   bcm->irq_savedstate &= ~BCM43xx_IRQ_BEACON;
>   status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD);
>  
> - if (!bcm->cached_beacon) {
> - err = bcm43xx_refresh_cached_beacon(bcm);
> - if (unlikely(err))
> - goto ack;
> - }
> -
> - if ((status & 0x1) && (status & 0x2)) {
> -ack:
> + if (!bcm->cached_beacon || ((status & 0x1) && (status & 0x2))) {
>   /* ACK beacon IRQ. */
>   bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON,
>   BCM43xx_IRQ_BEACON);
> @@ -4382,7 +4368,6 @@ static int bcm43xx_net_config(struct net
>  
>   if (bcm43xx_is_mode(bcm, IEEE80211_IF_TYPE_AP)) {
>   bcm43xx_set_beacon_int(bcm, conf->beacon_int);
> - bcm43xx_refresh_templates(bcm);
>   }
>  
>   bcm43xx_unlock_irqonly(bcm, flags);
> @@ -4553,7 +4538,7 @@ static int bcm43xx_add_interface(struct 
>   if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED) {
>   bcm43xx_select_opmode(bcm);
>   if (bcm43xx_is_mode(bcm, IEEE80211_IF_TYPE_AP))
> - bcm43xx_refresh_templates(bcm);
> + bcm43xx_refresh_templates(bcm, NULL);
>   }
>   err = 0;
>  
> @@ -4606,7 +4591,8 @@ static int bcm43xx_config_interface(stru
>   if (bcm43xx_is_mode(bcm, IEEE80211_IF_TYPE_AP)) {
>   assert(conf->type == IEEE80211_IF_TYPE_AP);
>   bcm43xx_set_ssid(bcm, conf->ssid, conf->ssid_len);
> - bcm43xx_refresh_templates(bcm);
> + if (conf->beacon)
> + bcm43xx_refresh_templates(bcm, conf->beacon);
>   }
>   }
>   bcm43xx_unlock_irqsafe(bcm, flags);
> @@ -4701,7 +4687,7 @@ static int __devinit bcm43xx_init_one(st
>   goto out;
>   ieee->version = IEEE80211_VERSION;
>   ieee->name = KBUILD_MODNAME;
> - ieee->host_gen_beacon = 1;
> + ieee->host_gen_beacon_template = 1;
>   ieee->rx_includes_fcs = 1;
>   ieee->monitor_during_oper = 1;
>   ieee->tx = bcm43xx_net_hard_start_xmit;
> 

-- 
Greetings Michael.
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 3/3] bcm43xx-d80211: use host_gen_beacon_template

2006-06-23 Thread Jiri Benc
Use new host_gen_beacon_template flag. This also means workaround with
"iwconfig essid" after hostapd is run is not necessary anymore.

Signed-off-by: Jiri Benc <[EMAIL PROTECTED]>

---

 drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c |   36 ++---
 1 files changed, 11 insertions(+), 25 deletions(-)

--- dscape.orig/drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c
+++ dscape/drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c
@@ -1710,17 +1710,12 @@ static void bcm43xx_write_probe_resp_tem
kfree(probe_resp_data);
 }
 
-static int bcm43xx_refresh_cached_beacon(struct bcm43xx_private *bcm)
+static int bcm43xx_refresh_cached_beacon(struct bcm43xx_private *bcm,
+struct sk_buff *beacon)
 {
-   struct ieee80211_tx_control control;
-
if (bcm->cached_beacon)
kfree_skb(bcm->cached_beacon);
-   bcm->cached_beacon = ieee80211_beacon_get(bcm->net_dev,
- bcm->interface.if_id,
- &control);
-   if (unlikely(!bcm->cached_beacon))
-   return -ENOMEM;
+   bcm->cached_beacon = beacon;
 
return 0;
 }
@@ -1743,16 +1738,15 @@ static void bcm43xx_update_templates(str
bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD, status);
 }
 
-static void bcm43xx_refresh_templates(struct bcm43xx_private *bcm)
+static void bcm43xx_refresh_templates(struct bcm43xx_private *bcm,
+ struct sk_buff *beacon)
 {
int err;
 
-   err = bcm43xx_refresh_cached_beacon(bcm);
+   err = bcm43xx_refresh_cached_beacon(bcm, beacon);
if (unlikely(err))
return;
bcm43xx_update_templates(bcm);
-   kfree_skb(bcm->cached_beacon);
-   bcm->cached_beacon = NULL;
 }
 
 static void bcm43xx_set_ssid(struct bcm43xx_private *bcm,
@@ -1792,19 +1786,11 @@ static void bcm43xx_set_beacon_int(struc
 static void handle_irq_beacon(struct bcm43xx_private *bcm)
 {
u32 status;
-   int err;
 
bcm->irq_savedstate &= ~BCM43xx_IRQ_BEACON;
status = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS2_BITFIELD);
 
-   if (!bcm->cached_beacon) {
-   err = bcm43xx_refresh_cached_beacon(bcm);
-   if (unlikely(err))
-   goto ack;
-   }
-
-   if ((status & 0x1) && (status & 0x2)) {
-ack:
+   if (!bcm->cached_beacon || ((status & 0x1) && (status & 0x2))) {
/* ACK beacon IRQ. */
bcm43xx_write32(bcm, BCM43xx_MMIO_GEN_IRQ_REASON,
BCM43xx_IRQ_BEACON);
@@ -4382,7 +4368,6 @@ static int bcm43xx_net_config(struct net
 
if (bcm43xx_is_mode(bcm, IEEE80211_IF_TYPE_AP)) {
bcm43xx_set_beacon_int(bcm, conf->beacon_int);
-   bcm43xx_refresh_templates(bcm);
}
 
bcm43xx_unlock_irqonly(bcm, flags);
@@ -4553,7 +4538,7 @@ static int bcm43xx_add_interface(struct 
if (bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED) {
bcm43xx_select_opmode(bcm);
if (bcm43xx_is_mode(bcm, IEEE80211_IF_TYPE_AP))
-   bcm43xx_refresh_templates(bcm);
+   bcm43xx_refresh_templates(bcm, NULL);
}
err = 0;
 
@@ -4606,7 +4591,8 @@ static int bcm43xx_config_interface(stru
if (bcm43xx_is_mode(bcm, IEEE80211_IF_TYPE_AP)) {
assert(conf->type == IEEE80211_IF_TYPE_AP);
bcm43xx_set_ssid(bcm, conf->ssid, conf->ssid_len);
-   bcm43xx_refresh_templates(bcm);
+   if (conf->beacon)
+   bcm43xx_refresh_templates(bcm, conf->beacon);
}
}
bcm43xx_unlock_irqsafe(bcm, flags);
@@ -4701,7 +4687,7 @@ static int __devinit bcm43xx_init_one(st
goto out;
ieee->version = IEEE80211_VERSION;
ieee->name = KBUILD_MODNAME;
-   ieee->host_gen_beacon = 1;
+   ieee->host_gen_beacon_template = 1;
ieee->rx_includes_fcs = 1;
ieee->monitor_during_oper = 1;
ieee->tx = bcm43xx_net_hard_start_xmit;
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html