All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] pull request for net-next: batman-adv 2021-08-19
@ 2021-08-19 15:33 ` Simon Wunderlich
  0 siblings, 0 replies; 11+ messages in thread
From: Simon Wunderlich @ 2021-08-19 15:33 UTC (permalink / raw)
  To: kuba, davem; +Cc: netdev, b.a.t.m.a.n, Simon Wunderlich

Hi Jakub, hi David,

here is a little cleanup pull request of batman-adv to go into net-next.

Please pull or let me know of any problem!

Thank you,
      Simon

The following changes since commit b37a466837393af72fe8bcb8f1436410f3f173f3:

  netdevice: add the case if dev is NULL (2021-08-05 13:29:26 +0100)

are available in the Git repository at:

  git://git.open-mesh.org/linux-merge.git tags/batadv-next-pullrequest-20210819

for you to fetch changes up to 808cfdfad57999c85f9ab13499a38d136d032232:

  batman-adv: bcast: remove remaining skb-copy calls (2021-08-18 18:39:00 +0200)

----------------------------------------------------------------
This cleanup patchset includes the following patches:

 - bump version strings, by Simon Wunderlich

 - update docs about move IRC channel away from freenode,
   by Sven Eckelmann

 - Switch to kstrtox.h for kstrtou64, by Sven Eckelmann

 - Update NULL checks, by Sven Eckelmann (2 patches)

 - remove remaining skb-copy calls for broadcast packets,
   by Linus Lüssing

----------------------------------------------------------------
Linus Lüssing (1):
      batman-adv: bcast: remove remaining skb-copy calls

Simon Wunderlich (1):
      batman-adv: Start new development cycle

Sven Eckelmann (4):
      batman-adv: Move IRC channel to hackint.org
      batman-adv: Switch to kstrtox.h for kstrtou64
      batman-adv: Check ptr for NULL before reducing its refcnt
      batman-adv: Drop NULL check before dropping references

 Documentation/networking/batman-adv.rst |   2 +-
 MAINTAINERS                             |   2 +-
 net/batman-adv/bat_iv_ogm.c             |  75 ++++++++---------------
 net/batman-adv/bat_v.c                  |  30 ++++------
 net/batman-adv/bat_v_elp.c              |   9 +--
 net/batman-adv/bat_v_ogm.c              |  39 ++++--------
 net/batman-adv/bridge_loop_avoidance.c  |  33 +++++------
 net/batman-adv/distributed-arp-table.c  |  24 ++++----
 net/batman-adv/fragmentation.c          |   6 +-
 net/batman-adv/gateway_client.c         |  57 +++++-------------
 net/batman-adv/gateway_client.h         |  16 ++++-
 net/batman-adv/gateway_common.c         |   2 +-
 net/batman-adv/hard-interface.c         |  21 +++----
 net/batman-adv/hard-interface.h         |   3 +
 net/batman-adv/main.h                   |   2 +-
 net/batman-adv/multicast.c              |   2 +-
 net/batman-adv/netlink.c                |   6 +-
 net/batman-adv/network-coding.c         |  24 ++++----
 net/batman-adv/originator.c             | 102 +++++---------------------------
 net/batman-adv/originator.h             |  96 +++++++++++++++++++++++++++---
 net/batman-adv/routing.c                |  39 ++++--------
 net/batman-adv/send.c                   |  33 ++++++-----
 net/batman-adv/soft-interface.c         |  27 ++-------
 net/batman-adv/soft-interface.h         |  16 ++++-
 net/batman-adv/tp_meter.c               |  27 ++++-----
 net/batman-adv/translation-table.c      | 100 +++++++++++--------------------
 net/batman-adv/translation-table.h      |  18 +++++-
 net/batman-adv/tvlv.c                   |   9 ++-
 28 files changed, 364 insertions(+), 456 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH 0/6] (updated) pull request for net-next: batman-adv 2021-08-20
@ 2021-08-20  8:32 Simon Wunderlich
  2021-08-20  8:32 ` [PATCH 2/6] batman-adv: Move IRC channel to hackint.org Simon Wunderlich
  0 siblings, 1 reply; 11+ messages in thread
From: Simon Wunderlich @ 2021-08-20  8:32 UTC (permalink / raw)
  To: kuba, davem; +Cc: netdev, b.a.t.m.a.n, Simon Wunderlich

Hi Jakub,

here is the updated pull request of batman-adv, with the missing sign-off
added which you pointed out yesterday.

Please pull or let me know of any problem!

Thank you,
      Simon

The following changes since commit b37a466837393af72fe8bcb8f1436410f3f173f3:

  netdevice: add the case if dev is NULL (2021-08-05 13:29:26 +0100)

are available in the Git repository at:

  git://git.open-mesh.org/linux-merge.git tags/batadv-next-pullrequest-20210820

for you to fetch changes up to a006aa51ea27fa64afc7990f8f100ff0baa92413:

  batman-adv: bcast: remove remaining skb-copy calls (2021-08-20 08:17:10 +0200)

----------------------------------------------------------------
This (updated) cleanup patchset includes the following patches:

 - bump version strings, by Simon Wunderlich

 - update docs about move IRC channel away from freenode,
   by Sven Eckelmann (updated, added missing sign-off)

 - Switch to kstrtox.h for kstrtou64, by Sven Eckelmann

 - Update NULL checks, by Sven Eckelmann (2 patches)

 - remove remaining skb-copy calls for broadcast packets,
   by Linus Lüssing

----------------------------------------------------------------
Linus Lüssing (1):
      batman-adv: bcast: remove remaining skb-copy calls

Simon Wunderlich (1):
      batman-adv: Start new development cycle

Sven Eckelmann (4):
      batman-adv: Move IRC channel to hackint.org
      batman-adv: Switch to kstrtox.h for kstrtou64
      batman-adv: Check ptr for NULL before reducing its refcnt
      batman-adv: Drop NULL check before dropping references

 Documentation/networking/batman-adv.rst |   2 +-
 MAINTAINERS                             |   2 +-
 net/batman-adv/bat_iv_ogm.c             |  75 ++++++++---------------
 net/batman-adv/bat_v.c                  |  30 ++++------
 net/batman-adv/bat_v_elp.c              |   9 +--
 net/batman-adv/bat_v_ogm.c              |  39 ++++--------
 net/batman-adv/bridge_loop_avoidance.c  |  33 +++++------
 net/batman-adv/distributed-arp-table.c  |  24 ++++----
 net/batman-adv/fragmentation.c          |   6 +-
 net/batman-adv/gateway_client.c         |  57 +++++-------------
 net/batman-adv/gateway_client.h         |  16 ++++-
 net/batman-adv/gateway_common.c         |   2 +-
 net/batman-adv/hard-interface.c         |  21 +++----
 net/batman-adv/hard-interface.h         |   3 +
 net/batman-adv/main.h                   |   2 +-
 net/batman-adv/multicast.c              |   2 +-
 net/batman-adv/netlink.c                |   6 +-
 net/batman-adv/network-coding.c         |  24 ++++----
 net/batman-adv/originator.c             | 102 +++++---------------------------
 net/batman-adv/originator.h             |  96 +++++++++++++++++++++++++++---
 net/batman-adv/routing.c                |  39 ++++--------
 net/batman-adv/send.c                   |  33 ++++++-----
 net/batman-adv/soft-interface.c         |  27 ++-------
 net/batman-adv/soft-interface.h         |  16 ++++-
 net/batman-adv/tp_meter.c               |  27 ++++-----
 net/batman-adv/translation-table.c      | 100 +++++++++++--------------------
 net/batman-adv/translation-table.h      |  18 +++++-
 net/batman-adv/tvlv.c                   |   9 ++-
 28 files changed, 364 insertions(+), 456 deletions(-)

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

end of thread, other threads:[~2021-08-20  8:33 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-19 15:33 [PATCH 0/6] pull request for net-next: batman-adv 2021-08-19 Simon Wunderlich
2021-08-19 15:33 ` Simon Wunderlich
2021-08-19 15:33 ` [PATCH 1/6] batman-adv: Start new development cycle Simon Wunderlich
2021-08-19 15:33   ` Simon Wunderlich
2021-08-19 15:33 ` [PATCH 2/6] batman-adv: Move IRC channel to hackint.org Simon Wunderlich
2021-08-19 20:52   ` Jakub Kicinski
2021-08-19 15:33 ` [PATCH 3/6] batman-adv: Switch to kstrtox.h for kstrtou64 Simon Wunderlich
2021-08-19 15:33 ` [PATCH 4/6] batman-adv: Check ptr for NULL before reducing its refcnt Simon Wunderlich
2021-08-19 15:33 ` [PATCH 5/6] batman-adv: Drop NULL check before dropping references Simon Wunderlich
2021-08-19 15:33 ` [PATCH 6/6] batman-adv: bcast: remove remaining skb-copy calls Simon Wunderlich
2021-08-20  8:32 [PATCH 0/6] (updated) pull request for net-next: batman-adv 2021-08-20 Simon Wunderlich
2021-08-20  8:32 ` [PATCH 2/6] batman-adv: Move IRC channel to hackint.org Simon Wunderlich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.