pull request: batman-adv 20150108
Message ID | 1420730120-9844-1-git-send-email-antonio@meshcoding.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers |
Return-Path: <antonio@meshcoding.com> Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=178.209.62.157; helo=s3.neomailbox.net; envelope-from=antonio@meshcoding.com; receiver=b.a.t.m.a.n@lists.open-mesh.org Received: from s3.neomailbox.net (s3.neomailbox.net [178.209.62.157]) by open-mesh.org (Postfix) with ESMTP id 474DC60147F for <b.a.t.m.a.n@lists.open-mesh.org>; Thu, 8 Jan 2015 16:16:27 +0100 (CET) From: Antonio Quartulli <antonio@meshcoding.com> To: davem@davemloft.net Date: Thu, 8 Jan 2015 16:15:05 +0100 Message-Id: <1420730120-9844-1-git-send-email-antonio@meshcoding.com> 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 20150108 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: Thu, 08 Jan 2015 15:16:28 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-for-davemMessage
Antonio Quartulli
Jan. 8, 2015, 3:15 p.m. UTC
Hello David, this is a batch of patches intended for net-next. In this patchset you have mostly cleanups and small corrections to issues reported by checkpatch. One notable change is the addition of the DEBUG_FS dependency to the BATMAN_ADV_DEBUG symbol by Markus Pargmann. We add this dependency because all the information provided by the DEBUG feature is accessible only through debugfs. Please pull or let me know of any problem! Thanks a lot, Antonio The following changes since commit 44d84d7272e5848878a96029b8a8b6e86854f146: Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2015-01-06 22:29:20 -0500) 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 9535395640edb23ba5cec2abb026c4ee51899722: batman-adv: Kconfig, Add missing DEBUG_FS dependency (2015-01-07 22:17:11 +0100) ---------------------------------------------------------------- Included changes: - remove useless return in void functions - remove unused member 'primary_iface' from 'struct orig_node' - improve existing kernel doc - fix several checkpatch complaints - ensure socket's control block is cleared for received skbs - add missing DEBUG_FS dependency to BATMAN_ADV_DEBUG symbol ---------------------------------------------------------------- Antonio Quartulli (7): batman-adv: avoid useless return in void functions batman-adv: checkpatch - else is not generally useful after a break or return batman-adv: checkpatch - No space is necessary after a cast batman-adv: checkpatch - Please use a blank line after declarations batman-adv: checkpatch - Please don't use multiple blank lines batman-adv: checkpatch - remove unnecessary parentheses batman-adv: fix misspelled words Markus Pargmann (1): batman-adv: Kconfig, Add missing DEBUG_FS dependency Martin Hundebøll (5): batman-adv: kernel doc fixes for bat_iv_ogm.c batman-adv: kernel doc fixes for bridge_loop_avoidance.c batman-adv: kernel doc fix for distributed-arp-table.h batman-adv: kernel doc fixes for main.{c, h} batman-adv: clear control block of received socket buffers Simon Wunderlich (2): batman-adv: remove obsolete variable primary_iface from orig_node batman-adv: Start new development cycle net/batman-adv/Kconfig | 1 + net/batman-adv/bat_iv_ogm.c | 15 +++++++-------- net/batman-adv/bitarray.c | 1 - net/batman-adv/bitarray.h | 3 +-- net/batman-adv/bridge_loop_avoidance.c | 17 +++++++---------- net/batman-adv/debugfs.c | 2 +- net/batman-adv/distributed-arp-table.c | 1 + net/batman-adv/distributed-arp-table.h | 4 +--- net/batman-adv/fragmentation.c | 1 - net/batman-adv/fragmentation.h | 3 +-- net/batman-adv/gateway_client.c | 1 + net/batman-adv/main.c | 10 ++++++---- net/batman-adv/main.h | 15 +++++++-------- net/batman-adv/multicast.h | 3 --- net/batman-adv/network-coding.c | 3 +-- net/batman-adv/originator.c | 1 - net/batman-adv/originator.h | 1 - net/batman-adv/packet.h | 5 +++-- net/batman-adv/routing.c | 3 +-- net/batman-adv/soft-interface.c | 1 - net/batman-adv/sysfs.c | 1 - net/batman-adv/translation-table.c | 8 +++----- net/batman-adv/types.h | 4 +--- 23 files changed, 43 insertions(+), 61 deletions(-)
Comments
From: Antonio Quartulli <antonio@meshcoding.com> Date: Thu, 8 Jan 2015 16:15:05 +0100 > this is a batch of patches intended for net-next. > > In this patchset you have mostly cleanups and small corrections to issues > reported by checkpatch. > > One notable change is the addition of the DEBUG_FS dependency to the > BATMAN_ADV_DEBUG symbol by Markus Pargmann. We add this dependency because all > the information provided by the DEBUG feature is accessible only through > debugfs. Pulled, thanks Antonio.