pull request: batman-adv 2012-09-25
Message ID | 1348588637-18441-1-git-send-email-ordex@autistici.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers |
Return-Path: <ordex@autistici.org> Received: from contumacia.investici.org (contumacia.investici.org [178.255.144.35]) by open-mesh.org (Postfix) with ESMTPS id D2A306002BC for <b.a.t.m.a.n@lists.open-mesh.org>; Tue, 25 Sep 2012 17:57:59 +0200 (CEST) Authentication-Results: open-mesh.org; dkim=pass reason="1024-bit key; insecure key" header.i=@autistici.org header.b=nGD/UZuz; dkim-adsp=pass; dkim-atps=neutral Received: from [178.255.144.35] (contumacia [178.255.144.35]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id BE301E87C1; Tue, 25 Sep 2012 15:57:47 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 contumacia.investici.org BE301E87C1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1348588668; bh=2pt4dDVrCbRpJz84Gq5ajTgTiBVVzbnSj9yoO2eTge0=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Content-Type: Content-Transfer-Encoding; b=nGD/UZuzlQecOE2F/Q59F5BHoF/WOy4mVkwGEXlj+3H8gpFDcL47nGjlzo5c5wWYH Gr/v2r2Tl1vHYpB/OQCiz1QLKnyO1ra4IyDb45ZrTDm1xZfWX7h9iVAi6r99UgJg5i aHquL1d3drXUs03z2mLUmS3ePHdV5+jqyw+UNaWo= From: Antonio Quartulli <ordex@autistici.org> To: davem@davemloft.net Date: Tue, 25 Sep 2012 17:57:15 +0200 Message-Id: <1348588637-18441-1-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.7.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 2012-09-25 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: Tue, 25 Sep 2012 15:58:00 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-fix-for-davemMessage
Antonio Quartulli
Sept. 25, 2012, 3:57 p.m. UTC
Hello David, here are two fixes (the last set) we would to propose for net/linux-3.6. The one from Def fixes a wrong behaviour of batman-adv in case of virtual interface mac address change, while the other from Linüs fixes a problem in the route selection which can lead to a continuous route flapping under certain conditions. We would also like to enqueue both patches for sending to stable-3.5. During merge with net/master you will hit a conflict. I'm going to send some instructions on how to solve it. Thank you very much, Antonio The following changes since commit 2b018d57ff18e5405823e5cb59651a5b4d946d7b: pppoe: drop PPPOX_ZOMBIEs in pppoe_release (2012-09-22 15:49:31 -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 7caf69fb9c5017df01945a1861c042f6aa08edeb: batman-adv: Fix symmetry check / route flapping in multi interface setups (2012-09-23 23:12:49 +0200) ---------------------------------------------------------------- Included fixes: - fix the behaviour of batman-adv in case of virtual interface MAC change event - fix symmetric link check in neighbour selection ---------------------------------------------------------------- Def (1): batman-adv: Fix change mac address of soft iface. Linus Lüssing (1): batman-adv: Fix symmetry check / route flapping in multi interface setups net/batman-adv/bat_iv_ogm.c | 13 +++++++------ net/batman-adv/soft-interface.c | 7 +++++-- 2 files changed, 12 insertions(+), 8 deletions(-)
Comments
Hello David, here are some instructions to solve the conflict you will hit while merging net with net-next. Thank you, Antonio ++<<<<<<< HEAD ++======= + int if_num; ++>>>>>>> 7caf69f... batman-adv: Fix symmetry check / route flapping in multi interface setups resolves to: ======== int if_num; >>>>>>>> ++<<<<<<< HEAD + sum_orig = orig_node_tmp->bcast_own_sum[if_incoming->if_num]; ++======= + if_num = router->if_incoming->if_num; + sum_orig = orig_node_tmp->bcast_own_sum[if_num]; ++>>>>>>> 7caf69f... batman-adv: Fix symmetry check / route flapping in multi interface setups resolves to: ======= if_num = router->if_incoming->if_num; sum_orig = orig_node_tmp->bcast_own_sum[if_num]; >>>>>>> ++<<<<<<< HEAD + sum_neigh = orig_node_tmp->bcast_own_sum[if_incoming->if_num]; ++======= + if_num = neigh_node->if_incoming->if_num; + sum_neigh = orig_node_tmp->bcast_own_sum[if_num]; ++>>>>>>> 7caf69f... batman-adv: Fix symmetry check / route flapping in multi interface setups resolves to: ======= if_num = neigh_node->if_incoming->if_num; sum_neigh = orig_node_tmp->bcast_own_sum[if_num]; >>>>>>
From: Antonio Quartulli <ordex@autistici.org> Date: Tue, 25 Sep 2012 17:57:15 +0200 > here are two fixes (the last set) we would to propose for net/linux-3.6. > > The one from Def fixes a wrong behaviour of batman-adv in case of virtual > interface mac address change, while the other from Linüs fixes a problem in the > route selection which can lead to a continuous route flapping under certain > conditions. > > We would also like to enqueue both patches for sending to stable-3.5. > > During merge with net/master you will hit a conflict. I'm going to send some > instructions on how to solve it. ... > git://git.open-mesh.org/linux-merge.git tags/batman-adv-fix-for-davem Pulled, thanks.
From: Antonio Quartulli <ordex@autistici.org> Date: Tue, 25 Sep 2012 18:01:19 +0200 > here are some instructions to solve the conflict you will hit while merging net > with net-next. Thanks a lot.