netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull request: batman-adv 2012-06-25
@ 2012-06-25  6:54 Antonio Quartulli
       [not found] ` <1340607284-29950-1-git-send-email-ordex-GaUfNO9RBHfsrOwW+9ziJQ@public.gmane.org>
                   ` (17 more replies)
  0 siblings, 18 replies; 26+ messages in thread
From: Antonio Quartulli @ 2012-06-25  6:54 UTC (permalink / raw)
  To: davem-fT/PcQaiUtIeIZ0/mPfg9Q
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
	b.a.t.m.a.n-ZwoEplunGu2X36UT3dwllkB+6BGkLq7r

Hello David,

this is another set of changes intended for net-next/linux-3.6.

This patchset is entirely composed by "namespace renaming" patches.

Please, let me know if there is any problem.

Thank you,
	Antonio




The following changes since commit 7011d0851b80a1a229acfda37ce08aad903b12d1:

  tcp: Fix bug in tcp socket early demux (2012-06-23 23:22:38 -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 a513088d022c8f59cebe17c567797c220563b517:

  batman-adv: Prefix translation-table local static functions with batadv_ (2012-06-25 08:21:50 +0200)

----------------------------------------------------------------
Included changes:
- yet another batch of 'namespace cleaning' patches

----------------------------------------------------------------
Sven Eckelmann (20):
      batman-adv: Prefix bat_debugfs local static functions with batadv_
      batman-adv: Prefix bitarray static inline functions with batadv_
      batman-adv: Prefix hard-interface static inline functions with batadv_
      batman-adv: Prefix hash static inline functions with batadv_
      batman-adv: Prefix originator static inline functions with batadv_
      batman-adv: Prefix unicast static inline functions with batadv_
      batman-adv: Prefix main static inline functions with batadv_
      batman-adv: Prefix bat_iv_ogm local static functions with batadv_
      batman-adv: Prefix bat_sysfs local static functions with batadv_
      batman-adv: Prefix bridge_loop_avoidance local static functions with batadv_
      batman-adv: Prefix gateway_client local static functions with batadv_
      batman-adv: Prefix gateway_common local static functions with batadv_
      batman-adv: Prefix hard-interface local static functions with batadv_
      batman-adv: Prefix hash local static functions with batadv_
      batman-adv: Prefix icmp_socket local static functions with batadv_
      batman-adv: Prefix originator local static functions with batadv_
      batman-adv: Prefix routing local static functions with batadv_
      batman-adv: Prefix send local static functions with batadv_
      batman-adv: Prefix soft-interface local static functions with batadv_
      batman-adv: Prefix translation-table local static functions with batadv_

 net/batman-adv/bat_debugfs.c           |  143 +++---
 net/batman-adv/bat_iv_ogm.c            |  490 +++++++++++----------
 net/batman-adv/bat_sysfs.c             |  277 ++++++------
 net/batman-adv/bitarray.c              |   18 +-
 net/batman-adv/bitarray.h              |    6 +-
 net/batman-adv/bridge_loop_avoidance.c |  518 +++++++++++-----------
 net/batman-adv/gateway_client.c        |  125 +++---
 net/batman-adv/gateway_common.c        |   10 +-
 net/batman-adv/hard-interface.c        |   96 +++--
 net/batman-adv/hard-interface.h        |    7 +-
 net/batman-adv/hash.c                  |    4 +-
 net/batman-adv/hash.h                  |   19 +-
 net/batman-adv/icmp_socket.c           |   84 ++--
 net/batman-adv/main.c                  |    8 +-
 net/batman-adv/main.h                  |   17 +-
 net/batman-adv/originator.c            |  128 +++---
 net/batman-adv/originator.h            |   10 +-
 net/batman-adv/routing.c               |  174 ++++----
 net/batman-adv/send.c                  |   48 +--
 net/batman-adv/soft-interface.c        |   86 ++--
 net/batman-adv/translation-table.c     |  742 +++++++++++++++++---------------
 net/batman-adv/unicast.c               |    6 +-
 net/batman-adv/unicast.h               |    2 +-
 net/batman-adv/vis.c                   |   53 +--
 24 files changed, 1591 insertions(+), 1480 deletions(-)

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

end of thread, other threads:[~2012-06-26  6:55 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-25  6:54 pull request: batman-adv 2012-06-25 Antonio Quartulli
     [not found] ` <1340607284-29950-1-git-send-email-ordex-GaUfNO9RBHfsrOwW+9ziJQ@public.gmane.org>
2012-06-25  6:54   ` [PATCH 01/20] batman-adv: Prefix bat_debugfs local static functions with batadv_ Antonio Quartulli
2012-06-25  6:54   ` [PATCH 02/20] batman-adv: Prefix bitarray static inline " Antonio Quartulli
2012-06-25  6:54   ` [PATCH 03/20] batman-adv: Prefix hard-interface " Antonio Quartulli
2012-06-25 23:19   ` pull request: batman-adv 2012-06-25 David Miller
2012-06-26  6:49     ` [PATCH 0/2 net-next]: fixups for wrong conflict resolution Antonio Quartulli
     [not found]       ` <1340693391-16434-1-git-send-email-ordex-GaUfNO9RBHfsrOwW+9ziJQ@public.gmane.org>
2012-06-26  6:49         ` [PATCH 1/2 net-next] batman-adv: fix condition in AP isolation Antonio Quartulli
2012-06-26  6:49       ` [PATCH 2/2 net-next] batman-adv: fix global TT entry deletion Antonio Quartulli
2012-06-26  6:55       ` [PATCH 0/2 net-next]: fixups for wrong conflict resolution David Miller
2012-06-25  6:54 ` [PATCH 04/20] batman-adv: Prefix hash static inline functions with batadv_ Antonio Quartulli
2012-06-25  6:54 ` [PATCH 05/20] batman-adv: Prefix originator " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 06/20] batman-adv: Prefix unicast " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 07/20] batman-adv: Prefix main " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 08/20] batman-adv: Prefix bat_iv_ogm local static " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 09/20] batman-adv: Prefix bat_sysfs " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 10/20] batman-adv: Prefix bridge_loop_avoidance " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 11/20] batman-adv: Prefix gateway_client " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 12/20] batman-adv: Prefix gateway_common " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 13/20] batman-adv: Prefix hard-interface " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 14/20] batman-adv: Prefix hash " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 15/20] batman-adv: Prefix icmp_socket " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 16/20] batman-adv: Prefix originator " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 17/20] batman-adv: Prefix routing " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 18/20] batman-adv: Prefix send " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 19/20] batman-adv: Prefix soft-interface " Antonio Quartulli
2012-06-25  6:54 ` [PATCH 20/20] batman-adv: Prefix translation-table " Antonio Quartulli

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).