linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mwl8k: Announcing AP_VLAN suport
@ 2013-01-25 10:51 Yogesh Ashok Powar
  2013-01-25 11:45 ` Johannes Berg
  0 siblings, 1 reply; 3+ messages in thread
From: Yogesh Ashok Powar @ 2013-01-25 10:51 UTC (permalink / raw)
  To: John W. Linville; +Cc: linux-wireless, Lennert Buytenhek, Nishant Sarmukadam

AP_VLAN support is needed in order to support
wds_sta in the hostapd. This will allow us
adding support for 4-address for AP and client
mode

Signed-off-by: Yogesh Ashok Powar <yogeshp@marvell.com>
Signed-off-by: Nishant Sarmukadam <nishants@marvell.com>
---
 drivers/net/wireless/mwl8k.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c
index ee5c7ea..8788157 100644
--- a/drivers/net/wireless/mwl8k.c
+++ b/drivers/net/wireless/mwl8k.c
@@ -5920,6 +5920,7 @@ static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
 
 	if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
 		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
+		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
 		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
 		hw->wiphy->iface_combinations = &ap_if_comb;
 		hw->wiphy->n_iface_combinations = 1;
-- 
1.8.0.3


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

* Re: [PATCH] mwl8k: Announcing AP_VLAN suport
  2013-01-25 10:51 [PATCH] mwl8k: Announcing AP_VLAN suport Yogesh Ashok Powar
@ 2013-01-25 11:45 ` Johannes Berg
  2013-01-28  7:05   ` Yogesh Ashok Powar
  0 siblings, 1 reply; 3+ messages in thread
From: Johannes Berg @ 2013-01-25 11:45 UTC (permalink / raw)
  To: Yogesh Ashok Powar
  Cc: John W. Linville, linux-wireless, Lennert Buytenhek,
	Nishant Sarmukadam

On Fri, 2013-01-25 at 16:21 +0530, Yogesh Ashok Powar wrote:
> AP_VLAN support is needed in order to support
> wds_sta in the hostapd. This will allow us
> adding support for 4-address for AP and client
> mode
> 
> Signed-off-by: Yogesh Ashok Powar <yogeshp@marvell.com>
> Signed-off-by: Nishant Sarmukadam <nishants@marvell.com>
> ---
>  drivers/net/wireless/mwl8k.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c
> index ee5c7ea..8788157 100644
> --- a/drivers/net/wireless/mwl8k.c
> +++ b/drivers/net/wireless/mwl8k.c
> @@ -5920,6 +5920,7 @@ static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
>  
>  	if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
>  		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
> +		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
>  		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);

Hmm, why is this needed? mac80211 should add it:

        /* if low-level driver supports AP, we also support VLAN */
        if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
                hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
                hw->wiphy->software_iftypes |= BIT(NL80211_IFTYPE_AP_VLAN);
        }

Is this run too late, i.e. after registering hw? If so, that's a bug.

johannes


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

* Re: [PATCH] mwl8k: Announcing AP_VLAN suport
  2013-01-25 11:45 ` Johannes Berg
@ 2013-01-28  7:05   ` Yogesh Ashok Powar
  0 siblings, 0 replies; 3+ messages in thread
From: Yogesh Ashok Powar @ 2013-01-28  7:05 UTC (permalink / raw)
  To: Johannes Berg
  Cc: John W. Linville, linux-wireless, Lennert Buytenhek,
	Nishant Sarmukadam

> >  	if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
> >  		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
> > +		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
> >  		hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
> 
> Hmm, why is this needed? mac80211 should add it:
> 
>         /* if low-level driver supports AP, we also support VLAN */
>         if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
>                 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
>                 hw->wiphy->software_iftypes |= BIT(NL80211_IFTYPE_AP_VLAN);
>         }
> 
> Is this run too late, i.e. after registering hw? If so, that's a bug.

Hi Johannes,

   We agree with you. There is no need to explicitly set
NL80211_IFTYPE_AP_VLAN support for AP driver. This patch
is redundant.

@John: Please ignore this patch.

Thanks
Yogesh

> 
> johannes
> 

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

end of thread, other threads:[~2013-01-28  7:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-25 10:51 [PATCH] mwl8k: Announcing AP_VLAN suport Yogesh Ashok Powar
2013-01-25 11:45 ` Johannes Berg
2013-01-28  7:05   ` Yogesh Ashok Powar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).