pull request: batman-adv 2013-04-17
Message ID | 1366232596-23172-1-git-send-email-ordex@autistici.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers |
Return-Path: <ordex@autistici.org> Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=178.255.144.35; helo=contumacia.investici.org; envelope-from=ordex@autistici.org; receiver=b.a.t.m.a.n@lists.open-mesh.org Received: from contumacia.investici.org (contumacia.investici.org [178.255.144.35]) by open-mesh.org (Postfix) with ESMTPS id AF49F601F8D for <b.a.t.m.a.n@lists.open-mesh.org>; Wed, 17 Apr 2013 23:05:18 +0200 (CEST) Received: from [178.255.144.35] (contumacia [178.255.144.35]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id 054E3E8A35; Wed, 17 Apr 2013 21:05:15 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 contumacia.investici.org 054E3E8A35 From: Antonio Quartulli <ordex@autistici.org> To: davem@davemloft.net Date: Wed, 17 Apr 2013 23:03:15 +0200 Message-Id: <1366232596-23172-1-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.8.1.5 Cc: netdev@vger.kernel.org, b.a.t.m.a.n@lists.open-mesh.org Subject: [B.A.T.M.A.N.] pull request: batman-adv 2013-04-17 X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking <b.a.t.m.a.n@lists.open-mesh.org> List-Id: The list for a Better Approach To Mobile Ad-hoc Networking <b.a.t.m.a.n.lists.open-mesh.org> List-Unsubscribe: <https://lists.open-mesh.org/mm/options/b.a.t.m.a.n>, <mailto:b.a.t.m.a.n-request@lists.open-mesh.org?subject=unsubscribe> List-Archive: <http://lists.open-mesh.org/pipermail/b.a.t.m.a.n/> List-Post: <mailto:b.a.t.m.a.n@lists.open-mesh.org> List-Help: <mailto:b.a.t.m.a.n-request@lists.open-mesh.org?subject=help> List-Subscribe: <https://lists.open-mesh.org/mm/listinfo/b.a.t.m.a.n>, <mailto:b.a.t.m.a.n-request@lists.open-mesh.org?subject=subscribe> X-List-Received-Date: Wed, 17 Apr 2013 21:05:18 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-fix-for-davemMessage
Antonio Quartulli
April 17, 2013, 9:03 p.m. UTC
Hi David, here you have a patch intended for net/linux-3.9 (if it can still make it..). It is fixing a MAC address check routine which does not behave correctly in case of multiple mesh interfaces in the same node. This patch will generate some conflicts the next time you will merge net in net-next and will also break it (this happens because the function this patch is changing is used by some patches existing in net-next only). I will send some instruction on how to solve the merge conflicts and a patch to fix net-next soon. Please pull or let me know if there is any problem. Thanks a lot, Antonio The following changes since commit 361cd29cf9363505c2a35bbf9a034a22feebfb07: qlcnic: fix beaconing test for 82xx adapter (2013-04-17 01:15:29 -0400) are available in the git repository at: git://git.open-mesh.org/linux-merge.git tags/batman-adv-fix-for-davem for you to fetch changes up to fe8a93b95145c66adf196eea4a919dfe0b7c57db: batman-adv: make is_my_mac() check for the current mesh only (2013-04-17 22:31:22 +0200) ---------------------------------------------------------------- Included changes: - fix MAC address check in case of multiple mesh interfaces ---------------------------------------------------------------- Antonio Quartulli (1): batman-adv: make is_my_mac() check for the current mesh only net/batman-adv/main.c | 5 ++++- net/batman-adv/main.h | 2 +- net/batman-adv/routing.c | 38 ++++++++++++++++++++------------------ net/batman-adv/translation-table.c | 2 +- net/batman-adv/vis.c | 4 ++-- 5 files changed, 28 insertions(+), 23 deletions(-)
Comments
From: Antonio Quartulli <ordex@autistici.org> Date: Wed, 17 Apr 2013 23:03:15 +0200 > here you have a patch intended for net/linux-3.9 (if it can still make it..). > It is fixing a MAC address check routine which does not behave > correctly in case of multiple mesh interfaces in the same node. Pulled. > This patch will generate some conflicts the next time you will merge net in > net-next and will also break it (this happens because the function this patch is > changing is used by some patches existing in net-next only). > > I will send some instruction on how to solve the merge conflicts and a patch to > fix net-next soon. Thanks.