linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* build error without  CONFIG_MAC80211_MESH
@ 2010-12-07  2:23 Bruno Randolf
  2010-12-07  2:36 ` Larry Finger
  2010-12-07 10:05 ` Johannes Berg
  0 siblings, 2 replies; 3+ messages in thread
From: Bruno Randolf @ 2010-12-07  2:23 UTC (permalink / raw)
  To: linux-wireless; +Cc: linville, Johannes Berg

Hi!

Building current wireless-testing (master-2010-12-06) without the Mesh option 
is broken:

  CC [M]  net/mac80211/main.o
/home/br1/ath/wireless-testing/net/mac80211/main.c: In function 
‘ieee80211_bss_info_change_notify’:
/home/br1/ath/wireless-testing/net/mac80211/main.c:250: error: ‘union 
<anonymous>’ has no member named ‘mesh’
make[3]: *** [net/mac80211/main.o] Error 1
make[2]: *** [net/mac80211] Error 2
make[1]: *** [net] Error 2
make: *** [sub-make] Error 2

It needs something like:

diff --git a/net/mac80211/main.c b/net/mac80211/main.c
index 40bd12e..3d988ca 100644
--- a/net/mac80211/main.c
+++ b/net/mac80211/main.c
@@ -245,10 +245,12 @@ void ieee80211_bss_info_change_notify(struct 
ieee80211_sub_if_data *sdata,
                                sdata->vif.bss_conf.enable_beacon =
                                        !!sdata->u.ibss.presp;
                                break;
+#ifdef CONFIG_MAC80211_MESH
                        case NL80211_IFTYPE_MESH_POINT:
                                sdata->vif.bss_conf.enable_beacon =
                                        !!sdata->u.mesh.mesh_id_len;
                                break;
+#endif
                        default:
                                /* not reached */
                                WARN_ON(1);

bruno

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

* Re: build error without  CONFIG_MAC80211_MESH
  2010-12-07  2:23 build error without CONFIG_MAC80211_MESH Bruno Randolf
@ 2010-12-07  2:36 ` Larry Finger
  2010-12-07 10:05 ` Johannes Berg
  1 sibling, 0 replies; 3+ messages in thread
From: Larry Finger @ 2010-12-07  2:36 UTC (permalink / raw)
  To: Bruno Randolf; +Cc: linux-wireless, linville, Johannes Berg

On 12/06/2010 08:23 PM, Bruno Randolf wrote:
> Hi!
> 
> Building current wireless-testing (master-2010-12-06) without the Mesh option 
> is broken:
> 
>   CC [M]  net/mac80211/main.o
> /home/br1/ath/wireless-testing/net/mac80211/main.c: In function 
> ‘ieee80211_bss_info_change_notify’:
> /home/br1/ath/wireless-testing/net/mac80211/main.c:250: error: ‘union 
> <anonymous>’ has no member named ‘mesh’
> make[3]: *** [net/mac80211/main.o] Error 1
> make[2]: *** [net/mac80211] Error 2
> make[1]: *** [net] Error 2
> make: *** [sub-make] Error 2
> 
> It needs something like:
> 
> diff --git a/net/mac80211/main.c b/net/mac80211/main.c
> index 40bd12e..3d988ca 100644
> --- a/net/mac80211/main.c
> +++ b/net/mac80211/main.c
> @@ -245,10 +245,12 @@ void ieee80211_bss_info_change_notify(struct 
> ieee80211_sub_if_data *sdata,
>                                 sdata->vif.bss_conf.enable_beacon =
>                                         !!sdata->u.ibss.presp;
>                                 break;
> +#ifdef CONFIG_MAC80211_MESH
>                         case NL80211_IFTYPE_MESH_POINT:
>                                 sdata->vif.bss_conf.enable_beacon =
>                                         !!sdata->u.mesh.mesh_id_len;
>                                 break;
> +#endif
>                         default:
>                                 /* not reached */
>                                 WARN_ON(1);

Happens here too.

Larry

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

* Re: build error without  CONFIG_MAC80211_MESH
  2010-12-07  2:23 build error without CONFIG_MAC80211_MESH Bruno Randolf
  2010-12-07  2:36 ` Larry Finger
@ 2010-12-07 10:05 ` Johannes Berg
  1 sibling, 0 replies; 3+ messages in thread
From: Johannes Berg @ 2010-12-07 10:05 UTC (permalink / raw)
  To: Bruno Randolf; +Cc: linux-wireless, linville

On Tue, 2010-12-07 at 11:23 +0900, Bruno Randolf wrote:
> Hi!
> 
> Building current wireless-testing (master-2010-12-06) without the Mesh option 
> is broken:
> 
>   CC [M]  net/mac80211/main.o
> /home/br1/ath/wireless-testing/net/mac80211/main.c: In function 
> ‘ieee80211_bss_info_change_notify’:
> /home/br1/ath/wireless-testing/net/mac80211/main.c:250: error: ‘union 
> <anonymous>’ has no member named ‘mesh’
> make[3]: *** [net/mac80211/main.o] Error 1
> make[2]: *** [net/mac80211] Error 2
> make[1]: *** [net] Error 2
> make: *** [sub-make] Error 2
> 
> It needs something like:
> 
> diff --git a/net/mac80211/main.c b/net/mac80211/main.c
> index 40bd12e..3d988ca 100644
> --- a/net/mac80211/main.c
> +++ b/net/mac80211/main.c
> @@ -245,10 +245,12 @@ void ieee80211_bss_info_change_notify(struct 
> ieee80211_sub_if_data *sdata,
>                                 sdata->vif.bss_conf.enable_beacon =
>                                         !!sdata->u.ibss.presp;
>                                 break;
> +#ifdef CONFIG_MAC80211_MESH

Indeed, care to submit a patch?

thx,
johannes


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

end of thread, other threads:[~2010-12-07 10:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-07  2:23 build error without CONFIG_MAC80211_MESH Bruno Randolf
2010-12-07  2:36 ` Larry Finger
2010-12-07 10:05 ` Johannes Berg

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).