pull request: batman-adv 2012-05-14
Message ID | 1336979858-13928-1-git-send-email-ordex@autistici.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers |
Return-Path: <ordex@autistici.org> Received: from confino.investici.org (investici.nine.ch [217.150.252.179]) by open-mesh.org (Postfix) with ESMTPS id 4CB17600794 for <b.a.t.m.a.n@lists.open-mesh.org>; Mon, 14 May 2012 09:17:07 +0200 (CEST) Authentication-Results: open-mesh.org; dkim=pass (1024-bit key) header.i=@autistici.org; dkim-adsp=pass Received: from [217.150.252.179] (confino [217.150.252.179]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id C0EF1C869E; Mon, 14 May 2012 07:17:05 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 confino.investici.org C0EF1C869E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1336979826; bh=37cH7HwTDINEPglSo0KMYg4AoHa1IYh9KbO3Q2XG5vs=; h=From:To:Cc:Subject:Date:Message-Id; b=IISBjIufTM5re8bUTg8a4t0/Z/p4/WdbOZ+OKN8AHXUiv4s61ojvfx7SWFdobjCjB WwxhScid5o9Uh6GeNxpqR825QU/v9Skag3pQFrHW5pu0libEvdiDCx5AuBck0kjEwD ZpQPVm1PMxVOe6c4UTy49/JCzZHYkG8y2AGHRPIs= From: Antonio Quartulli <ordex@autistici.org> To: davem@davemloft.net Date: Mon, 14 May 2012 09:17:30 +0200 Message-Id: <1336979858-13928-1-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.7.9.4 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-05-14 X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.13 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: Mon, 14 May 2012 07:17:07 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-for-davemMessage
Antonio Quartulli
May 14, 2012, 7:17 a.m. UTC
Hello David, here is our last set of changes intended for net-next/linux-3.5. In this patchset there are: 1) several minor cleanups and fixes 2) an optimisation that avoid to linearise the whole packet when not needed 3) an optimisation for client traffic rerouting after a roaming event. Patches that modify the whole naming schema will be sent later for merging with linux-3.6. Thank you, Antonio The following changes since commit f96a8a0b78548c0ec06b0b4b438db6ee895d67e9: igb: Add Support for new i210/i211 devices. (2012-05-12 13:17:13 -0700) are available in the git repository at: git://git.open-mesh.org/linux-merge.git tags/batman-adv-for-davem for you to fetch changes up to 521251f2f5fa16747cc21e71580e404af855d140: batman-adv: unset the TT_CLIENT_PENDING flag if the new local entry already exists (2012-05-14 09:05:08 +0200) ---------------------------------------------------------------- Included changes: * an improvement to avoid to linearise the whole received packet when not needed * an improvement for client traffic rerouting after roaming * a fix for the local translation table state-machine * minor cleanups and fixes ---------------------------------------------------------------- Antonio Quartulli (3): batman-adv: avoid skb_linearise() if not needed batman-adv: improve unicast packet (re)routing batman-adv: unset the TT_CLIENT_PENDING flag if the new local entry already exists Marek Lindner (2): batman-adv: prepare lq_update_lock to be shared among different protocols batman-adv: refactor window_protected to avoid unnecessary return statement Sven Eckelmann (3): batman-adv: use shorter pr_warn instead of pr_warning batman-adv: Start new development cycle batman-adv: README cleanups Documentation/networking/batman-adv.txt | 11 +++++------ net/batman-adv/bat_iv_ogm.c | 9 ++++----- net/batman-adv/hard-interface.c | 6 +++--- net/batman-adv/main.h | 2 +- net/batman-adv/originator.c | 1 + net/batman-adv/routing.c | 27 ++++++++++++++++----------- net/batman-adv/send.c | 4 ++-- net/batman-adv/translation-table.c | 21 +++++++++++++++++++++ net/batman-adv/translation-table.h | 2 ++ net/batman-adv/types.h | 2 +- net/batman-adv/unicast.c | 8 ++++++++ 11 files changed, 64 insertions(+), 29 deletions(-)
Comments
From: Antonio Quartulli <ordex@autistici.org> Date: Mon, 14 May 2012 09:17:30 +0200 > Hello David, > > here is our last set of changes intended for net-next/linux-3.5. > In this patchset there are: > > 1) several minor cleanups and fixes > 2) an optimisation that avoid to linearise the whole packet when not needed > 3) an optimisation for client traffic rerouting after a roaming event. > > Patches that modify the whole naming schema will be sent later for merging > with linux-3.6. Pulled, thanks.