pull request: batman-adv 2013-10-09b
Message ID | 1381347174-3629-1-git-send-email-antonio@meshcoding.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers |
Return-Path: <antonio@meshcoding.com> Received: from s3.neomailbox.net (s3.neomailbox.net [178.209.62.157]) by open-mesh.org (Postfix) with ESMTPS id EFE4A602241 for <b.a.t.m.a.n@lists.open-mesh.org>; Wed, 9 Oct 2013 21:33:29 +0200 (CEST) From: Antonio Quartulli <antonio@meshcoding.com> To: davem@davemloft.net Date: Wed, 9 Oct 2013 21:32:38 +0200 Message-Id: <1381347174-3629-1-git-send-email-antonio@meshcoding.com> 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 2013-10-09b 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: Wed, 09 Oct 2013 19:33:30 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-for-davemMessage
Antonio Quartulli
Oct. 9, 2013, 7:32 p.m. UTC
Hello David, here you have my fixed pull request intended for net-next. The previous build error was due to an accidental remotion of the beginning of a batadv_dbg() statement during a merge conflict resolution. Sorry for that. Please pull or let me know of any problem. Thanks a lot, Antonio The following changes since commit 3d7d562ca4a884089344eb13451b5903a18d3817: bnx2x: Add ndo_get_phys_port_id support (2013-10-09 14:55:13 -0400) 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 18c68d5960c8dfeb2db113f4b871bab259cfd565: batman-adv: reorder batadv_iv_flags (2013-10-09 21:22:35 +0200) ---------------------------------------------------------------- Included changes: - update emails for A. Quartulli and M. Lindner in MAINTAINERS - switch to the next on-the-wire protocol version - introduce the T(ype) V(ersion) L(ength) V(alue) framework - adjust the existing components to make them use the new TVLV code - make the TT component use CRC32 instead of CRC16 - totally remove the VIS functionality (has been moved to userspace) - reorder packet types and flags - add static checks on packet format - remove __packed from batadv_ogm_packet ---------------------------------------------------------------- Antonio Quartulli (4): MAINTAINERS: batman-adv - update emails batman-adv: switch to a new packet compatibility version batman-adv: use CRC32C instead of CRC16 in TT code batman-adv: move BATADV_TT_CLIENT_TEMP to higher bit Marek Lindner (7): batman-adv: tvlv - basic infrastructure batman-adv: tvlv - gateway download/upload bandwidth container batman-adv: tvlv - add distributed arp table container batman-adv: tvlv - add network coding container batman-adv: tvlv - convert tt data sent within OGMs batman-adv: tvlv - convert tt query packet to use tvlv unicast packets batman-adv: tvlv - convert roaming adv packet to use tvlv unicast packets Simon Wunderlich (5): batman-adv: remove vis functionality batman-adv: add build check macros for packet member offset batman-adv: reorder packet types batman-adv: remove packed from batadv_ogm_packet batman-adv: reorder batadv_iv_flags Documentation/ABI/testing/sysfs-class-net-mesh | 11 - Documentation/networking/batman-adv.txt | 50 +- MAINTAINERS | 4 +- net/batman-adv/Makefile | 1 - net/batman-adv/bat_iv_ogm.c | 111 +-- net/batman-adv/debugfs.c | 9 - net/batman-adv/distributed-arp-table.c | 64 ++ net/batman-adv/distributed-arp-table.h | 5 + net/batman-adv/gateway_client.c | 187 +++-- net/batman-adv/gateway_client.h | 2 +- net/batman-adv/gateway_common.c | 230 +++--- net/batman-adv/gateway_common.h | 14 +- net/batman-adv/hard-interface.c | 9 - net/batman-adv/main.c | 623 +++++++++++++++- net/batman-adv/main.h | 37 +- net/batman-adv/network-coding.c | 63 ++ net/batman-adv/network-coding.h | 5 + net/batman-adv/originator.c | 4 +- net/batman-adv/packet.h | 248 ++++--- net/batman-adv/routing.c | 247 ++----- net/batman-adv/routing.h | 6 +- net/batman-adv/send.c | 1 - net/batman-adv/soft-interface.c | 4 +- net/batman-adv/sysfs.c | 96 +-- net/batman-adv/translation-table.c | 905 ++++++++++++++---------- net/batman-adv/translation-table.h | 13 +- net/batman-adv/types.h | 178 ++--- net/batman-adv/vis.c | 938 ------------------------- net/batman-adv/vis.h | 36 - 29 files changed, 1968 insertions(+), 2133 deletions(-) delete mode 100644 net/batman-adv/vis.c delete mode 100644 net/batman-adv/vis.h
Comments
From: Antonio Quartulli <antonio@meshcoding.com> Date: Wed, 9 Oct 2013 21:32:38 +0200 > here you have my fixed pull request intended for net-next. > > The previous build error was due to an accidental remotion of the beginning of a > batadv_dbg() statement during a merge conflict resolution. > Sorry for that. This looks better, pulled, thanks a lot.
On Wed, Oct 09, 2013 at 03:56:58PM -0400, David Miller wrote: > From: Antonio Quartulli <antonio@meshcoding.com> > Date: Wed, 9 Oct 2013 21:32:38 +0200 > > > here you have my fixed pull request intended for net-next. > > > > The previous build error was due to an accidental remotion of the beginning of a > > batadv_dbg() statement during a merge conflict resolution. > > Sorry for that. > > This looks better, pulled, thanks a lot. Hello David, I can't find my patchset in net-next, hasn't it been pushed yet? Regards,
From: Antonio Quartulli <antonio@meshcoding.com> Date: Fri, 11 Oct 2013 08:10:53 +0200 > On Wed, Oct 09, 2013 at 03:56:58PM -0400, David Miller wrote: >> From: Antonio Quartulli <antonio@meshcoding.com> >> Date: Wed, 9 Oct 2013 21:32:38 +0200 >> >> > here you have my fixed pull request intended for net-next. >> > >> > The previous build error was due to an accidental remotion of the beginning of a >> > batadv_dbg() statement during a merge conflict resolution. >> > Sorry for that. >> >> This looks better, pulled, thanks a lot. > > Hello David, > > I can't find my patchset in net-next, hasn't it been pushed yet? Sorry, it should be there now.