From patchwork Fri May 11 12:21:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Quartulli X-Patchwork-Id: 158490 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id C959BB7033 for ; Fri, 11 May 2012 22:24:56 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758115Ab2EKMYy (ORCPT ); Fri, 11 May 2012 08:24:54 -0400 Received: from investici.nine.ch ([217.150.252.179]:58125 "EHLO confino.investici.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753418Ab2EKMYx (ORCPT ); Fri, 11 May 2012 08:24:53 -0400 Received: from [217.150.252.179] (confino [217.150.252.179]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id 877C5C87AB; Fri, 11 May 2012 12:24:50 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 confino.investici.org 877C5C87AB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1336739091; bh=DUozRYHjaJJixnLYTSOvr0TJcNiTs3wJsrvZpRFCh50=; h=From:To:Cc:Subject:Date:Message-Id; b=iGuIUCBjO6qv54AjA0dKdy9NV1CnjDwaXh3w3pnPRzHJHr4JxRqCNSRVHFxAYedV8 a+qC873zGA8deBXQMnloaK3IJ+YP+YML3+exYZg4gH440AC7w6FuM8y03SEUO2R92Q RBD6oATypNis7kMwnIFB3LdL21mPJ8jEvZiEaZFA= From: Antonio Quartulli To: davem@davemloft.net Cc: netdev@vger.kernel.org, b.a.t.m.a.n@lists.open-mesh.org Subject: pull request: batman-adv 2012-05-11 Date: Fri, 11 May 2012 14:21:17 +0200 Message-Id: <1336738892-7401-1-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.7.9.4 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hello David, this is a fixed version of the pull request issued on 2012-05-09. Comments introduced in this patchset are not following the net-tree guidelines. Another patch changing all the already existing comments will follow later. New exported functions follow the new name convention we discussed so far. A patch renaming all the existing exported functions will follow. Please let me know if there is any problem. Thank you, Antonio The following changes since commit 06a4c1c55dbe5d9f7a708e8f1a52fd2ac8e5874f: 6lowpan: IPv6 link local address (2012-05-10 23:38:22 -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 35c133a000d54b7e3fe81e8c8e4b8af5878ad6dd: batman-adv: add contributor name (2012-05-11 13:56:08 +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 * minor improvement for the routing algorithm ---------------------------------------------------------------- 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 (11): 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: avoid temporary routing loops by being strict on forwarded OGMs 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 | 51 +++++---- net/batman-adv/originator.h | 7 +- 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 | 17 ++- 18 files changed, 380 insertions(+), 265 deletions(-) --- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html