From: Johannes Berg <johannes@sipsolutions.net>
To: Luis Carlos Cobo <luisca@cozybit.com>
Cc: linux-wireless@vger.kernel.org, linville@tuxdriver.com
Subject: Re: [PATCH] mac80211: keep mesh ifaces in allmulti mode
Date: Wed, 06 Aug 2008 14:26:20 +0200 [thread overview]
Message-ID: <1218025580.23048.2.camel@johannes.berg> (raw)
In-Reply-To: <4899975a.2135440a.05a6.3c34@mx.google.com> (sfid-20080806_142148_316320_D8214475)
[-- Attachment #1: Type: text/plain, Size: 1558 bytes --]
On Wed, 2008-08-06 at 13:17 +0200, Luis Carlos Cobo wrote:
> Currently a mesh node will not forward a multicast frame if it is not subscribed
> to the specific multicast address. This patch addresses the issue and fixes mesh
> multicast forwarding.
>
> Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
> ---
> net/mac80211/main.c | 8 +++++++-
> 1 files changed, 7 insertions(+), 1 deletions(-)
>
> diff --git a/net/mac80211/main.c b/net/mac80211/main.c
> index 0c02c47..aa5a191 100644
> --- a/net/mac80211/main.c
> +++ b/net/mac80211/main.c
> @@ -245,10 +245,13 @@ static int ieee80211_open(struct net_device *dev)
> case IEEE80211_IF_TYPE_AP:
> sdata->bss = &sdata->u.ap;
> break;
> + case IEEE80211_IF_TYPE_MESH_POINT:
> + /* mesh ifaces must set allmulti to forward mcast traffic */
> + atomic_inc(&local->iff_allmultis);
> + break;
> case IEEE80211_IF_TYPE_STA:
> case IEEE80211_IF_TYPE_MNTR:
> case IEEE80211_IF_TYPE_IBSS:
> - case IEEE80211_IF_TYPE_MESH_POINT:
> /* no special treatment */
> break;
> case IEEE80211_IF_TYPE_INVALID:
> @@ -495,6 +498,9 @@ static int ieee80211_stop(struct net_device *dev)
> netif_addr_unlock_bh(local->mdev);
> break;
> case IEEE80211_IF_TYPE_MESH_POINT:
> + /* allmulti is always set on mesh ifaces */
> + atomic_dec(&local->iff_allmultis);
> + /* fall through */
> case IEEE80211_IF_TYPE_STA:
> case IEEE80211_IF_TYPE_IBSS:
> sdata->u.sta.state = IEEE80211_DISABLED;
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
prev parent reply other threads:[~2008-08-06 12:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-06 11:17 [PATCH] mac80211: keep mesh ifaces in allmulti mode Luis Carlos Cobo
2008-08-06 12:26 ` Johannes Berg [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1218025580.23048.2.camel@johannes.berg \
--to=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=luisca@cozybit.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox