netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull request: batman-adv 2012-08-23
@ 2012-08-23 13:10 Antonio Quartulli
  2012-08-23 13:10 ` [PATCH 01/18] batman-adv: move function arguments on one line Antonio Quartulli
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Antonio Quartulli @ 2012-08-23 13:10 UTC (permalink / raw)
  To: davem-fT/PcQaiUtIeIZ0/mPfg9Q
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
	b.a.t.m.a.n-ZwoEplunGu2X36UT3dwllkB+6BGkLq7r

Hello David,

this is our set of changes intended for net-next/linux-3.7.
It is mostly composed by style fixes and cleanups. Other than that you have a
patch introducing a new table in debugfs (backbone gateways table for the Bridge
Loop Avoidance) and a new mechanism for the TranslationTable component. The
latter allows mesh nodes to immediately detect new clients joining the network,
without waiting for any periodic advertisement.

Thank you,
	Antonio




The following changes since commit 0fa7fa98dbcc2789409ed24e885485e645803d7f:

  packet: Protect packet sk list with mutex (v2) (2012-08-22 22:58:27 -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 fa4f0afcf40361bf67ed3abd520a5fbe12d11166:

  batman-adv: Start new development cycle (2012-08-23 14:20:23 +0200)

----------------------------------------------------------------
Included changes:
- a set of codestyle rearrangements/fixes
- new feature to early detect new joining (mesh-unaware) clients
- a minor fix for the gw-feature
- substitution of shift operations with the BIT() macro
- reorganization of the main batman-adv structure (struct batadv_priv)
- some more (very) minor cleanups and fixes

----------------------------------------------------------------
Antonio Quartulli (5):
      batman-adv: move function arguments on one line
      batman-adv: add reference counting for type batadv_tt_orig_list_entry
      batman-adv: fix typos in comments
      batman-adv: detect not yet announced clients
      batman-adv: change interface_rx to get orig node

Jonathan Corbet (1):
      batman-adv: remove a misleading comment

Marek Lindner (1):
      batman-adv: convert remaining packet counters to per_cpu_ptr() infrastructure

Martin Hundebøll (2):
      batman-adv: Move batadv_check_unicast_packet()
      batman-adv: Drop tt queries with foreign dest

Simon Wunderlich (4):
      batman-adv: Add the backbone gateway list to debugfs
      batman-adv: correct comments in bridge loop avoidance
      batman-adv: rename bridge loop avoidance claim types
      batman-adv: check batadv_orig_hash_add_if() return code

Sven Eckelmann (5):
      batman-adv: Split batadv_priv in sub-structures for features
      batman-adv: Use BIT(x) macro to calculate bit positions
      batman-adv: Don't break statements after assignment operator
      batman-adv: Reduce accumulated length of simple statements
      batman-adv: Start new development cycle

 Documentation/networking/batman-adv.txt |    7 +-
 net/batman-adv/bat_iv_ogm.c             |   96 ++++---
 net/batman-adv/bridge_loop_avoidance.c  |  214 ++++++++++------
 net/batman-adv/bridge_loop_avoidance.h  |   11 +-
 net/batman-adv/debugfs.c                |   12 +
 net/batman-adv/gateway_client.c         |   53 ++--
 net/batman-adv/hard-interface.c         |   13 +-
 net/batman-adv/main.c                   |   27 +-
 net/batman-adv/main.h                   |   29 +--
 net/batman-adv/packet.h                 |   35 +--
 net/batman-adv/routing.c                |   85 +++----
 net/batman-adv/send.c                   |    8 +-
 net/batman-adv/soft-interface.c         |   79 +++---
 net/batman-adv/soft-interface.h         |    5 +-
 net/batman-adv/translation-table.c      |  416 +++++++++++++++++++------------
 net/batman-adv/translation-table.h      |    4 +-
 net/batman-adv/types.h                  |  120 +++++----
 net/batman-adv/unicast.c                |   16 +-
 net/batman-adv/vis.c                    |  144 +++++------
 net/batman-adv/vis.h                    |    2 +-
 20 files changed, 818 insertions(+), 558 deletions(-)

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2012-08-24 15:46 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-23 13:10 pull request: batman-adv 2012-08-23 Antonio Quartulli
2012-08-23 13:10 ` [PATCH 01/18] batman-adv: move function arguments on one line Antonio Quartulli
2012-08-23 13:10 ` [PATCH 02/18] batman-adv: Add the backbone gateway list to debugfs Antonio Quartulli
     [not found] ` <1345727427-20805-1-git-send-email-ordex-GaUfNO9RBHfsrOwW+9ziJQ@public.gmane.org>
2012-08-23 13:10   ` [PATCH 03/18] batman-adv: correct comments in bridge loop avoidance Antonio Quartulli
2012-08-23 13:10 ` [PATCH 04/18] batman-adv: rename bridge loop avoidance claim types Antonio Quartulli
2012-08-23 13:10 ` [PATCH 05/18] batman-adv: convert remaining packet counters to per_cpu_ptr() infrastructure Antonio Quartulli
2012-08-23 13:10 ` [PATCH 06/18] batman-adv: remove a misleading comment Antonio Quartulli
2012-08-23 13:10 ` [PATCH 07/18] batman-adv: add reference counting for type batadv_tt_orig_list_entry Antonio Quartulli
2012-08-23 13:10 ` [PATCH 08/18] batman-adv: fix typos in comments Antonio Quartulli
2012-08-23 13:10 ` [PATCH 09/18] batman-adv: check batadv_orig_hash_add_if() return code Antonio Quartulli
2012-08-23 13:10 ` [PATCH 10/18] batman-adv: Split batadv_priv in sub-structures for features Antonio Quartulli
2012-08-23 13:10 ` [PATCH 11/18] batman-adv: Move batadv_check_unicast_packet() Antonio Quartulli
2012-08-23 13:10 ` [PATCH 12/18] batman-adv: Drop tt queries with foreign dest Antonio Quartulli
2012-08-23 13:10 ` [PATCH 13/18] batman-adv: Use BIT(x) macro to calculate bit positions Antonio Quartulli
2012-08-23 13:10 ` [PATCH 14/18] batman-adv: Don't break statements after assignment operator Antonio Quartulli
2012-08-23 13:10 ` [PATCH 15/18] batman-adv: Reduce accumulated length of simple statements Antonio Quartulli
2012-08-23 13:10 ` [PATCH 16/18] batman-adv: detect not yet announced clients Antonio Quartulli
2012-08-23 13:10 ` [PATCH 17/18] batman-adv: change interface_rx to get orig node Antonio Quartulli
2012-08-23 13:10 ` [PATCH 18/18] batman-adv: Start new development cycle Antonio Quartulli
2012-08-24 15:46 ` pull request: batman-adv 2012-08-23 David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).