b.a.t.m.a.n.lists.open-mesh.org archive mirror
 help / color / mirror / Atom feed
From: Antonio Quartulli <ordex@autistici.org>
To: davem@davemloft.net
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-06-28
Date: Thu, 28 Jun 2012 11:34:09 +0200	[thread overview]
Message-ID: <1340876067-28333-1-git-send-email-ordex@autistici.org> (raw)

this is another set of patches I'd like to see included in net-next/linux-3.6.
Here you have some more patches aimed to clean our namespace, a minor cleanup
for the vis code that eliminates a useless intermediate buffer used to
provide the output and two other minor cleanups for the TranslationTable code.


Tell me if there is any problem!

Thank you,
	Antonio



The following changes since commit 160eb5a6b14ca2eab5c598bdbbb24c24624bad34:

  ipv4: Kill early demux method return value. (2012-06-27 22:01:22 -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 42d0b044b7c9e5821f1bf3e2b4ea7861417c11c2:

  batman-adv: Prefix main defines with BATADV_ (2012-06-28 08:45:05 +0200)

----------------------------------------------------------------
Included changes:
- another batch of patches meant to clean batman-adv namespace
- deletion of an obsolete intermediate buffer used in the visualization code to
  print the output
- TT code cleanups

----------------------------------------------------------------
Antonio Quartulli (2):
      batman-adv: clear ADD+DEL (and viceversa) events in the same orig-interval
      batman-adv: beautify tt_global_add() argument list

Sven Eckelmann (16):
      batman-adv: Prefix unicast local static functions with batadv_
      batman-adv: Prefix vis local static functions with batadv_
      batman-adv: Prefix main local static functions with batadv_
      batman-adv: Prefix remaining function like macros with batadv_
      batman-adv: Directly print to seq_file in vis
      batman-adv: Prefix local defines with BATADV_
      batman-adv: Prefix debugfs defines with BATADV_
      batman-adv: Prefix sysfs defines with BATADV_
      batman-adv: Prefix bridge_loop_avoidance defines with BATADV_
      batman-adv: Prefix gateway defines with BATADV_
      batman-adv: Prefix icmp_socket defines with BATADV_
      batman-adv: Prefix packet defines with BATADV_
      batman-adv: Prefix types defines with BATADV_
      batman-adv: Prefix unicast defines with BATADV_
      batman-adv: Prefix vis defines with BATADV_
      batman-adv: Prefix main defines with BATADV_

 net/batman-adv/bat_debugfs.c           |   34 +--
 net/batman-adv/bat_debugfs.h           |    2 +-
 net/batman-adv/bat_iv_ogm.c            |  125 ++++++----
 net/batman-adv/bat_sysfs.c             |  228 +++++++++--------
 net/batman-adv/bat_sysfs.h             |    4 +-
 net/batman-adv/bitarray.c              |   20 +-
 net/batman-adv/bitarray.h              |    4 +-
 net/batman-adv/bridge_loop_avoidance.c |   24 +-
 net/batman-adv/bridge_loop_avoidance.h |    2 +-
 net/batman-adv/gateway_client.c        |   32 +--
 net/batman-adv/gateway_common.c        |   26 +-
 net/batman-adv/gateway_common.h        |    6 +-
 net/batman-adv/hard-interface.c        |   50 ++--
 net/batman-adv/icmp_socket.c           |    6 +-
 net/batman-adv/icmp_socket.h           |    2 +-
 net/batman-adv/main.c                  |   91 +++----
 net/batman-adv/main.h                  |  101 ++++----
 net/batman-adv/originator.c            |   34 +--
 net/batman-adv/packet.h                |   12 +-
 net/batman-adv/ring_buffer.c           |    4 +-
 net/batman-adv/routing.c               |   32 +--
 net/batman-adv/send.c                  |    6 +-
 net/batman-adv/soft-interface.c        |   24 +-
 net/batman-adv/translation-table.c     |  163 +++++++-----
 net/batman-adv/translation-table.h     |    4 +-
 net/batman-adv/types.h                 |   19 +-
 net/batman-adv/unicast.c               |   37 +--
 net/batman-adv/unicast.h               |    4 +-
 net/batman-adv/vis.c                   |  422 ++++++++++++++------------------
 net/batman-adv/vis.h                   |    2 +-
 30 files changed, 780 insertions(+), 740 deletions(-)

             reply	other threads:[~2012-06-28  9:34 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-28  9:34 Antonio Quartulli [this message]
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 01/18] batman-adv: Prefix unicast local static functions with batadv_ Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 02/18] batman-adv: Prefix vis " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 03/18] batman-adv: Prefix main " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 04/18] batman-adv: Prefix remaining function like macros " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 05/18] batman-adv: Directly print to seq_file in vis Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 06/18] batman-adv: clear ADD+DEL (and viceversa) events in the same orig-interval Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 07/18] batman-adv: beautify tt_global_add() argument list Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 08/18] batman-adv: Prefix local defines with BATADV_ Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 09/18] batman-adv: Prefix debugfs " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 10/18] batman-adv: Prefix sysfs " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 11/18] batman-adv: Prefix bridge_loop_avoidance " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 12/18] batman-adv: Prefix gateway " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 13/18] batman-adv: Prefix icmp_socket " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 14/18] batman-adv: Prefix packet " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 15/18] batman-adv: Prefix types " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 16/18] batman-adv: Prefix unicast " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 17/18] batman-adv: Prefix vis " Antonio Quartulli
2012-06-28  9:34 ` [B.A.T.M.A.N.] [PATCH 18/18] batman-adv: Prefix main " Antonio Quartulli
2012-06-28 11:11 ` [B.A.T.M.A.N.] pull request: batman-adv 2012-06-28 David Miller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1340876067-28333-1-git-send-email-ordex@autistici.org \
    --to=ordex@autistici.org \
    --cc=b.a.t.m.a.n@lists.open-mesh.org \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).