netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/7] tipc: multicast and internal users to new send functions
@ 2014-07-15 17:46 Jon Maloy
  2014-07-15 17:46 ` [PATCH net-next 1/7] tipc: make name table distributor use new send function Jon Maloy
                   ` (6 more replies)
  0 siblings, 7 replies; 12+ messages in thread
From: Jon Maloy @ 2014-07-15 17:46 UTC (permalink / raw)
  To: davem
  Cc: netdev, Paul Gortmaker, erik.hugne, ying.xue, maloy,
	tipc-discussion, Jon Maloy

We move the remaining data transmit users: multicast, name table
distributor, and link internal protocols to use the new data
transmission framework introduced in a previous commit series
("tipc: new unicast transmission code").

Finally, we remove the code obsoleted by the new functions.

Jon Maloy (7):
  tipc: make name table distributor use new send function
  tipc: let internal link users call the new link send function
  tipc: add new functions for multicast and broadcast distribution
  tipc: start using the new multicast functions
  tipc: remove unreferenced functions
  tipc: rename temporarily named functions
  tipc: ensure sequential message delivery across dual bearers

 net/tipc/bcast.c      |   87 ++++++++------
 net/tipc/bcast.h      |    5 +-
 net/tipc/link.c       |  307 ++-----------------------------------------------
 net/tipc/link.h       |    9 +-
 net/tipc/msg.c        |   79 +++++++------
 net/tipc/msg.h        |    9 +-
 net/tipc/name_distr.c |   76 ++++++------
 net/tipc/name_distr.h |    2 +-
 net/tipc/node.c       |   13 +--
 net/tipc/port.c       |  122 +-------------------
 net/tipc/port.h       |   10 --
 net/tipc/socket.c     |  148 ++++++++++++++++--------
 net/tipc/socket.h     |    2 +
 13 files changed, 268 insertions(+), 601 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH net-next 0/7] tipc: multicast and internal users to new send functions
@ 2014-07-15 14:49 Jon Maloy
  2014-07-15 14:49 ` [PATCH net-next 2/7] tipc: let internal link users call the new link send function Jon Maloy
  0 siblings, 1 reply; 12+ messages in thread
From: Jon Maloy @ 2014-07-15 14:49 UTC (permalink / raw)
  To: davem
  Cc: netdev, Paul Gortmaker, erik.hugne, ying.xue, maloy,
	tipc-discussion, Jon Maloy

We move the remaining data transmit users: multicast, name table
distributor, and link internal protocols to use the new data
transmission framework introduced in a previous commit series
("tipc: new unicast transmission code").

Finally, we remove the code obsoleted by the new functions.

Jon Maloy (7):
  tipc: make name table distributor use new send function
  tipc: let internal link users call the new link send function
  tipc: add new functions for multicast and broadcast distribution
  tipc: start using the new multicast functions
  tipc: remove unreferenced functions
  tipc: rename temporarily named functions
  tipc: ensure sequential message delivery across dual bearers

 net/tipc/bcast.c      |   87 ++++++++------
 net/tipc/bcast.h      |    5 +-
 net/tipc/link.c       |  307 ++-----------------------------------------------
 net/tipc/link.h       |    9 +-
 net/tipc/msg.c        |   79 +++++++------
 net/tipc/msg.h        |    9 +-
 net/tipc/name_distr.c |   76 ++++++------
 net/tipc/name_distr.h |    2 +-
 net/tipc/node.c       |   13 +--
 net/tipc/port.c       |  122 +-------------------
 net/tipc/port.h       |   10 --
 net/tipc/socket.c     |  148 ++++++++++++++++--------
 net/tipc/socket.h     |    2 +
 13 files changed, 268 insertions(+), 601 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH net-next 0/7] tipc: multicast and internal users to new send functions
@ 2014-07-15  3:54 Jon Maloy
  2014-07-15  3:54 ` [PATCH net-next 2/7] tipc: let internal link users call the new link send function Jon Maloy
  0 siblings, 1 reply; 12+ messages in thread
From: Jon Maloy @ 2014-07-15  3:54 UTC (permalink / raw)
  To: davem
  Cc: netdev, Paul Gortmaker, erik.hugne, ying.xue, maloy,
	tipc-discussion, Jon Maloy

We move the remaining data transmit users: multicast, name table
distributor, and link internal protocols to use the new data
transmission framework introduced in a previous commit series
("tipc: new unicast transmission code").

Finally, we remove the code obsoleted by the new functions.

Jon Maloy (7):
  tipc: make name table distributor use new send function
  tipc: let internal link users call the new link send function
  tipc: add new functions for multicast and broadcast distribution
  tipc: start using the new multicast functions
  tipc: remove unreferenced functions
  tipc: rename temporarily named functions
  tipc: ensure sequential message delivery across dual bearers

 net/tipc/bcast.c      |   82 +++++++------
 net/tipc/bcast.h      |    5 +-
 net/tipc/link.c       |  307 ++-----------------------------------------------
 net/tipc/link.h       |    9 +-
 net/tipc/msg.c        |   79 +++++++------
 net/tipc/msg.h        |    9 +-
 net/tipc/name_distr.c |   76 ++++++------
 net/tipc/name_distr.h |    2 +-
 net/tipc/node.c       |   13 +--
 net/tipc/port.c       |  122 +-------------------
 net/tipc/port.h       |   10 --
 net/tipc/socket.c     |  148 ++++++++++++++++--------
 net/tipc/socket.h     |    2 +
 13 files changed, 263 insertions(+), 601 deletions(-)

-- 
1.7.9.5

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

end of thread, other threads:[~2014-07-16 22:21 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-15 17:46 [PATCH net-next 0/7] tipc: multicast and internal users to new send functions Jon Maloy
2014-07-15 17:46 ` [PATCH net-next 1/7] tipc: make name table distributor use new send function Jon Maloy
2014-07-15 17:46 ` [PATCH net-next 2/7] tipc: let internal link users call the new link " Jon Maloy
2014-07-15 17:46 ` [PATCH net-next 3/7] tipc: add new functions for multicast and broadcast distribution Jon Maloy
2014-07-16 22:10   ` David Miller
2014-07-16 22:21     ` Jon Maloy
2014-07-15 17:46 ` [PATCH net-next 4/7] tipc: start using the new multicast functions Jon Maloy
2014-07-15 17:46 ` [PATCH net-next 5/7] tipc: remove unreferenced functions Jon Maloy
2014-07-15 17:46 ` [PATCH net-next 6/7] tipc: rename temporarily named functions Jon Maloy
2014-07-15 17:46 ` [PATCH net-next 7/7] tipc: ensure sequential message delivery across dual bearers Jon Maloy
  -- strict thread matches above, loose matches on Subject: below --
2014-07-15 14:49 [PATCH net-next 0/7] tipc: multicast and internal users to new send functions Jon Maloy
2014-07-15 14:49 ` [PATCH net-next 2/7] tipc: let internal link users call the new link send function Jon Maloy
2014-07-15  3:54 [PATCH net-next 0/7] tipc: multicast and internal users to new send functions Jon Maloy
2014-07-15  3:54 ` [PATCH net-next 2/7] tipc: let internal link users call the new link send function Jon Maloy

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