pull request: batman-adv 2012-04-17
Message ID | 1334663907-22725-1-git-send-email-ordex@autistici.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers |
Return-Path: <ordex@autistici.org> Received: from latitanza.investici.org (latitanza.investici.org [82.94.249.234]) by open-mesh.org (Postfix) with ESMTPS id D82346007A2 for <b.a.t.m.a.n@lists.open-mesh.org>; Tue, 17 Apr 2012 13:57:34 +0200 (CEST) Authentication-Results: open-mesh.org; dkim=pass (1024-bit key) header.i=@autistici.org; dkim-adsp=pass Received: from [82.94.249.234] (latitanza [82.94.249.234]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id 1BD1898398; Tue, 17 Apr 2012 11:57:33 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 latitanza.investici.org 1BD1898398 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1334663854; bh=Ikijv5JQaoYzUvjsrJd1tMsKclASeEldFm88i0X4hlI=; h=From:To:Cc:Subject:Date:Message-Id; b=hn7g0OZitdn/AZxGSQdevXD1ADoybzIcj1Mi28CLrXVkrzLJklojfaCStI0LaJUd+ PsJm41wGQziSNcZraQz1zhymNAH94tmhfL/uPZKcO82hedPCA8KNUYcwDmWopnwrUv Mf4bi8QY50c0wnKSCleE8mv/J5l+iyvJEC5gWpWQ= From: Antonio Quartulli <ordex@autistici.org> To: davem@davemloft.net Date: Tue, 17 Apr 2012 13:58:16 +0200 Message-Id: <1334663907-22725-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-04-17 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: Tue, 17 Apr 2012 11:57:35 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-for-davemMessage
Antonio Quartulli
April 17, 2012, 11:58 a.m. UTC
Hello, here are a set of changes I would like to propose for next-next/3.5. Most of the patches are simple cleanups and small fixes. The only important change is patch 3 which changes the Originator Message sequence number starting value from 0 to a random generated value. Thank you, Antonio The following changes since commit ecffe75f934b4e3c5301fe5db278068e0efb0d6b: hippi: fix printk format in rrunner.c (2012-04-16 23:48:38 -0400) 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 520ada6df73ab595f7d51378b9df937371f13460: batman-adv: skip the window protection test when the originator has no neighbours (2012-04-17 13:29:19 +0200) ---------------------------------------------------------------- Included changes: * several cleanups and fixes * OriGinator Message seqno initial value is now random ---------------------------------------------------------------- Antonio Quartulli (3): batman-adv: use ETH_HLEN instead of sizeof(struct ethhdr) batman-adv: print OGM seq numbers as unsigned long batman-adv: skip the window protection test when the originator has no neighbours Marek Lindner (8): batman-adv: move ogm initialization into the proper function batman-adv: refactoring API: find generalized name for bat_ogm_init callback batman-adv: randomize initial seqno to avoid collision batman-adv: add iface_disable() callback to routing API batman-adv: handle routing code initialization properly batman-adv: refactoring API: find generalized name for bat_ogm_init_primary callback batman-adv: rename BATMAN_OGM_LEN to BATMAN_OGM_HLEN batman-adv: mark existing ogm variables as batman iv net/batman-adv/bat_iv_ogm.c | 63 +++++++++++++++++++++----------- net/batman-adv/bridge_loop_avoidance.c | 10 ++--- net/batman-adv/hard-interface.c | 33 +++++++++-------- net/batman-adv/icmp_socket.c | 4 +- net/batman-adv/main.c | 5 ++- net/batman-adv/packet.h | 6 +-- net/batman-adv/routing.c | 10 ++--- net/batman-adv/send.c | 14 +++---- net/batman-adv/soft-interface.c | 2 +- net/batman-adv/types.h | 12 +++--- net/batman-adv/vis.c | 8 ++-- 11 files changed, 95 insertions(+), 72 deletions(-)