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-07-01
Date: Mon,  2 Jul 2012 01:43:30 +0200	[thread overview]
Message-ID: <1341186226-10549-1-git-send-email-ordex@autistici.org> (raw)

Hello David,

this should be our last planned pull request intended for net-next/linux-3.6 :-)

In this batch you have patch 15/16 that fixes a variable declaration
in the ethtool support code; patch 16/16 that fixes a non-critical bug which
makes nodes send unicast packets with an uninitialised header field.
The rest is the last part of our namespace renaming operation plus a couple of
style fixes.

Please let me know if there are problems!

Thank you very much,
		Antonio

The following changes since commit a59a4d1921664da63d801ba477950114c71c88c9:

  phy: add the EEE support and the way to access to the MMD registers. (2012-07-01 03:34:50 -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 162d549c6905485262635fe594db337efb2828b5:

  batman-adv: Don't leak information through uninitialized packet fields (2012-07-01 22:47:24 +0200)

----------------------------------------------------------------
Included changes:
- The last batch of patches aimed to clean the batman-adv namespace
- a couple of style fixes
- a fix for the ethtool support
- a fix to prevent sending unicast packets with an uninitialised header
  field

----------------------------------------------------------------
Marek Lindner (1):
      batman-adv: fix counter summary length

Sven Eckelmann (15):
      batman-adv: Prefix gateway enum with BATADV_
      batman-adv: Prefix hard-interface enum with BATADV_
      batman-adv: Prefix types enum with BATADV_
      batman-adv: Prefix packet enum with BATADV_
      batman-adv: Prefix main enum with BATADV_
      batman-adv: Prefix local debugfs structs with batadv_
      batman-adv: Prefix hash struct and typedef with batadv_
      batman-adv: Prefix local sysfs struct with batadv_
      batman-adv: Prefix packet structs with batadv_
      batman-adv: Prefix types structs with batadv_
      batman-adv: Transform BATADV_LOG_BUFF(idx) into function
      batman-adv: Remove bat_ prefix from bat_{debugfs, sysfs}.{c, h}
      batman-adv: Remove space before semicolon
      batman-adv: Fix alignment after opened parentheses
      batman-adv: Don't leak information through uninitialized packet fields

 net/batman-adv/Makefile                     |    4 +-
 net/batman-adv/bat_iv_ogm.c                 |  459 +++++++--------
 net/batman-adv/bitarray.c                   |    6 +-
 net/batman-adv/bridge_loop_avoidance.c      |  302 +++++-----
 net/batman-adv/bridge_loop_avoidance.h      |   48 +-
 net/batman-adv/{bat_debugfs.c => debugfs.c} |   76 ++-
 net/batman-adv/{bat_debugfs.h => debugfs.h} |    0
 net/batman-adv/gateway_client.c             |  127 +++--
 net/batman-adv/gateway_client.h             |   24 +-
 net/batman-adv/gateway_common.c             |    2 +-
 net/batman-adv/gateway_common.h             |    8 +-
 net/batman-adv/hard-interface.c             |  125 +++--
 net/batman-adv/hard-interface.h             |   28 +-
 net/batman-adv/hash.c                       |   12 +-
 net/batman-adv/hash.h                       |   33 +-
 net/batman-adv/icmp_socket.c                |   81 +--
 net/batman-adv/icmp_socket.h                |    4 +-
 net/batman-adv/main.c                       |   82 +--
 net/batman-adv/main.h                       |   63 ++-
 net/batman-adv/originator.c                 |  151 ++---
 net/batman-adv/originator.h                 |   37 +-
 net/batman-adv/packet.h                     |  132 ++---
 net/batman-adv/routing.c                    |  300 +++++-----
 net/batman-adv/routing.h                    |   52 +-
 net/batman-adv/send.c                       |   75 +--
 net/batman-adv/send.h                       |   12 +-
 net/batman-adv/soft-interface.c             |   55 +-
 net/batman-adv/soft-interface.h             |    2 +-
 net/batman-adv/{bat_sysfs.c => sysfs.c}     |  134 +++--
 net/batman-adv/{bat_sysfs.h => sysfs.h}     |    6 +-
 net/batman-adv/translation-table.c          |  808 ++++++++++++++-------------
 net/batman-adv/translation-table.h          |   43 +-
 net/batman-adv/types.h                      |  154 ++---
 net/batman-adv/unicast.c                    |   95 ++--
 net/batman-adv/unicast.h                    |   19 +-
 net/batman-adv/vis.c                        |  284 +++++-----
 net/batman-adv/vis.h                        |   12 +-
 37 files changed, 2011 insertions(+), 1844 deletions(-)
 rename net/batman-adv/{bat_debugfs.c => debugfs.c} (81%)
 rename net/batman-adv/{bat_debugfs.h => debugfs.h} (100%)
 rename net/batman-adv/{bat_sysfs.c => sysfs.c} (85%)
 rename net/batman-adv/{bat_sysfs.h => sysfs.h} (89%)

             reply	other threads:[~2012-07-01 23:43 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-01 23:43 Antonio Quartulli [this message]
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 01/16] batman-adv: Prefix gateway enum with BATADV_ Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 02/16] batman-adv: Prefix hard-interface " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 03/16] batman-adv: Prefix types " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 04/16] batman-adv: Prefix packet " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 05/16] batman-adv: Prefix main " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 06/16] batman-adv: Prefix local debugfs structs with batadv_ Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 07/16] batman-adv: Prefix hash struct and typedef " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 08/16] batman-adv: Prefix local sysfs struct " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 09/16] batman-adv: Prefix packet structs " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 10/16] batman-adv: Prefix types " Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 11/16] batman-adv: Transform BATADV_LOG_BUFF(idx) into function Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 12/16] batman-adv: Remove bat_ prefix from bat_{debugfs, sysfs}.{c, h} Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 13/16] batman-adv: Remove space before semicolon Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 14/16] batman-adv: Fix alignment after opened parentheses Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 15/16] batman-adv: fix counter summary length Antonio Quartulli
2012-07-01 23:43 ` [B.A.T.M.A.N.] [PATCH 16/16] batman-adv: Don't leak information through uninitialized packet fields Antonio Quartulli
2012-07-02  0:58 ` [B.A.T.M.A.N.] pull request: batman-adv 2012-07-01 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=1341186226-10549-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).