pull request: batman-adv 2012-05-09
Message ID | 1336561976-16088-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 60BB96007CD for <b.a.t.m.a.n@lists.open-mesh.org>; Wed, 9 May 2012 13:12:32 +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 2624FC86E7; Wed, 9 May 2012 11:12:30 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 confino.investici.org 2624FC86E7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1336561951; bh=1GFEm5JdNPhC1oh+Ior4LCGW2dGkNrIn20KgkayzEOg=; h=From:To:Cc:Subject:Date:Message-Id; b=qL6saCsMLkN9Ulifv9fNBTKmbcVhIqqHYPmBUvizJiMZ+2eX2uIQNnD0JUFLfc8J4 7mS8U8U34WKkFGU/M4TQsITc3YwKiN3hKyWIwjnCbIplkCY3VjmxquF+Fiqop+eNN7 1r0DkiS9jMpIo0pzd4fjMR9dPi/HY/EEUrsLrecQ= From: Antonio Quartulli <ordex@autistici.org> To: davem@davemloft.net Date: Wed, 9 May 2012 13:12:42 +0200 Message-Id: <1336561976-16088-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-09 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: Wed, 09 May 2012 11:12:32 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-for-davemMessage
Antonio Quartulli
May 9, 2012, 11:12 a.m. UTC
Dear David, here is a new set of changes I would like to propose for next-next/linux-3.5. Changes proposed here are the same of the last unsuccessful pull request, issued on 2012-05-01, plus some other minor fixes. The patchset is based on your net-next tree. Please, let me know if there is any problem. Sorry again for the touble I caused last time, but it was really a mistake, it was not my intention to let you pull an entire wrong tree. Thank you very much, Antonio The following changes since commit 9bb862beb6e5839e92f709d33fda07678f062f20: Merge branch 'master' of git://1984.lsi.us.es/net-next (2012-05-08 14:40:21 -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 ab74e43c05964efe75472b5433ede8800ecbfc43: batman-adv: add contributor name (2012-05-09 09:54:55 +0200) ---------------------------------------------------------------- Included changes: * fix a little bug in the DHCP packet snooping introduced so far * minor fixes and cleanups * minor routing protocol API cleanups * add a new contributor name to translation-table.{c,h} * update copyright years in file headers ---------------------------------------------------------------- Antonio Quartulli (3): batman-adv: fix wrong dhcp option list browsing batman-adv: update copyright years batman-adv: add contributor name Linus Luessing (1): batman-adv: Adding hard_iface specific sysfs wrapper macros for UINT Marek Lindner (10): batman-adv: introduce is_single_hop_neigh variable to increase readability batman-adv: introduce packet type handler array for incoming packets batman-adv: register batman ogm receive function during protocol init batman-adv: rename last_valid to last_seen batman-adv: replace HZ calculations with jiffies_to_msecs() batman-adv: split neigh_new function into generic and batman iv specific parts batman-adv: ignore protocol packets if the interface did not enable this protocol batman-adv: refactoring API: find generalized name for bat_ogm_update_mac callback batman-adv: rename sysfs macros to reflect the soft-interface dependency batman-adv: fix checkpatch string complaint net/batman-adv/bat_debugfs.c | 4 +- net/batman-adv/bat_iv_ogm.c | 176 +++++++++++++++++++++----------- net/batman-adv/bat_sysfs.c | 100 +++++++++++++----- net/batman-adv/bridge_loop_avoidance.c | 2 +- net/batman-adv/bridge_loop_avoidance.h | 2 +- net/batman-adv/gateway_client.c | 6 +- net/batman-adv/hard-interface.c | 117 +-------------------- net/batman-adv/main.c | 124 +++++++++++++++++++++- net/batman-adv/main.h | 6 ++ net/batman-adv/originator.c | 50 +++++---- net/batman-adv/originator.h | 6 +- net/batman-adv/packet.h | 1 + net/batman-adv/routing.c | 22 ++-- net/batman-adv/routing.h | 4 +- net/batman-adv/send.c | 2 +- net/batman-adv/translation-table.c | 2 +- net/batman-adv/translation-table.h | 2 +- net/batman-adv/types.h | 16 ++- 18 files changed, 377 insertions(+), 265 deletions(-)