netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/27] sctp: implement rfc6525 sctp stream reconf
@ 2017-01-01 11:20 Xin Long
  2017-01-01 11:20 ` [PATCH net-next 01/27] sctp: add stream arrays in asoc Xin Long
                   ` (2 more replies)
  0 siblings, 3 replies; 37+ messages in thread
From: Xin Long @ 2017-01-01 11:20 UTC (permalink / raw)
  To: network dev, linux-sctp; +Cc: Marcelo Ricardo Leitner, Neil Horman, davem

This patchset is to implement sctp stream reconf described in rfc6525.

Patch 1-3   add per stream information in sctp asoc.
Patch 4-8   make the chunk with different reconf params. (Section 3-4)
Patch 9-12  add reconf timer, primitive and enable option.
Patch 13-25 implement the procedures on both sender and receiver sides (Section 5)
            add sockopts and event for users (Section 6)
Patch 26-27 add reconf event, activate the sctp stream reconf process.

Xin Long (27):
  sctp: add stream arrays in asoc
  sctp: replace ssnmap with asoc stream arrays
  sctp: remove asoc ssnmap and ssnmap.c
  sctp: add rfc6525 section 3.1
  sctp: add rfc6525 section 4.1-4.2
  sctp: add rfc6525 section 4.3
  sctp: add rfc6525 section 4.4
  sctp: add rfc6525 section 4.5-4.6
  sctp: add stream reconf timer
  sctp: add stream reconf primitive
  sctp: add reconf_enable in asoc ep and netns
  sctp: add get and set sockopt for reconf_enable
  sctp: add rfc6525 section 6.3.1
  sctp: add rfc6525 section 5.1.2-5.1.3 and 6.3.2
  sctp: add rfc6525 section 5.1.4 and 6.3.3
  sctp: add rfc6525 section 5.1.5-5.1.6 and 6.3.4
  sctp: add rfc6525 section 6.1.1
  sctp: add rfc6525 section 6.1.2
  sctp: add rfc6525 section 6.1.3
  sctp: add rfc6525 section 5.2.2
  sctp: add rfc6525 section 5.2.3
  sctp: add rfc6525 section 5.2.4
  sctp: add rfc6525 section 5.2.5
  sctp: add rfc6525 section 5.2.6
  sctp: add rfc6525 section 5.2.7
  sctp: add sctp reconf chunk process
  sctp: add reconf chunk event

 include/linux/sctp.h         |  68 ++++++
 include/net/netns/sctp.h     |   3 +
 include/net/sctp/constants.h |   7 +-
 include/net/sctp/sctp.h      |   3 +-
 include/net/sctp/sm.h        |  54 ++++-
 include/net/sctp/structs.h   |  91 ++++---
 include/net/sctp/ulpevent.h  |  12 +
 include/uapi/linux/sctp.h    |  93 ++++++-
 net/sctp/Makefile            |   4 +-
 net/sctp/associola.c         |  29 ++-
 net/sctp/endpointola.c       |   1 +
 net/sctp/objcnt.c            |   2 -
 net/sctp/outqueue.c          |  33 ++-
 net/sctp/primitive.c         |   3 +
 net/sctp/sm_make_chunk.c     | 403 ++++++++++++++++++++++++++++++-
 net/sctp/sm_sideeffect.c     |  32 +++
 net/sctp/sm_statefuns.c      | 112 ++++++++-
 net/sctp/sm_statetable.c     |  70 ++++++
 net/sctp/socket.c            | 433 +++++++++++++++++++++++++++++++++
 net/sctp/ssnmap.c            | 125 ----------
 net/sctp/stream.c            | 563 +++++++++++++++++++++++++++++++++++++++++++
 net/sctp/sysctl.c            |   7 +
 net/sctp/transport.c         |  17 +-
 net/sctp/ulpevent.c          |  86 +++++++
 net/sctp/ulpqueue.c          |  33 +--
 25 files changed, 2043 insertions(+), 241 deletions(-)
 delete mode 100644 net/sctp/ssnmap.c
 create mode 100644 net/sctp/stream.c

-- 
2.1.0

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

end of thread, other threads:[~2017-01-02 13:43 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-01 11:20 [PATCH net-next 00/27] sctp: implement rfc6525 sctp stream reconf Xin Long
2017-01-01 11:20 ` [PATCH net-next 01/27] sctp: add stream arrays in asoc Xin Long
2017-01-01 11:20   ` [PATCH net-next 02/27] sctp: replace ssnmap with asoc stream arrays Xin Long
2017-01-01 11:20     ` [PATCH net-next 03/27] sctp: remove asoc ssnmap and ssnmap.c Xin Long
2017-01-01 11:20       ` [PATCH net-next 04/27] sctp: add rfc6525 section 3.1 Xin Long
2017-01-01 11:20         ` [PATCH net-next 05/27] sctp: add rfc6525 section 4.1-4.2 Xin Long
2017-01-01 11:20           ` [PATCH net-next 06/27] sctp: add rfc6525 section 4.3 Xin Long
2017-01-01 11:20             ` [PATCH net-next 07/27] sctp: add rfc6525 section 4.4 Xin Long
2017-01-01 11:20               ` [PATCH net-next 08/27] sctp: add rfc6525 section 4.5-4.6 Xin Long
2017-01-01 11:20                 ` [PATCH net-next 09/27] sctp: add stream reconf timer Xin Long
2017-01-01 11:20                   ` [PATCH net-next 10/27] sctp: add stream reconf primitive Xin Long
2017-01-01 11:20                     ` [PATCH net-next 11/27] sctp: add reconf_enable in asoc ep and netns Xin Long
2017-01-01 11:20                       ` [PATCH net-next 12/27] sctp: add get and set sockopt for reconf_enable Xin Long
2017-01-01 11:20                         ` [PATCH net-next 13/27] sctp: add rfc6525 section 6.3.1 Xin Long
2017-01-01 11:20                           ` [PATCH net-next 14/27] sctp: add rfc6525 section 5.1.2-5.1.3 and 6.3.2 Xin Long
2017-01-01 11:20                             ` [PATCH net-next 15/27] sctp: add rfc6525 section 5.1.4 and 6.3.3 Xin Long
2017-01-01 11:20                               ` [PATCH net-next 16/27] sctp: add rfc6525 section 5.1.5-5.1.6 and 6.3.4 Xin Long
2017-01-01 11:20                                 ` [PATCH net-next 17/27] sctp: add rfc6525 section 6.1.1 Xin Long
2017-01-01 11:20                                   ` [PATCH net-next 18/27] sctp: add rfc6525 section 6.1.2 Xin Long
2017-01-01 11:20                                     ` [PATCH net-next 19/27] sctp: add rfc6525 section 6.1.3 Xin Long
2017-01-01 11:20                                       ` [PATCH net-next 20/27] sctp: add rfc6525 section 5.2.2 Xin Long
2017-01-01 11:20                                         ` [PATCH net-next 21/27] sctp: add rfc6525 section 5.2.3 Xin Long
2017-01-01 11:20                                           ` [PATCH net-next 22/27] sctp: add rfc6525 section 5.2.4 Xin Long
2017-01-01 11:20                                             ` [PATCH net-next 23/27] sctp: add rfc6525 section 5.2.5 Xin Long
2017-01-01 11:20                                               ` [PATCH net-next 24/27] sctp: add rfc6525 section 5.2.6 Xin Long
2017-01-01 11:20                                                 ` [PATCH net-next 25/27] sctp: add rfc6525 section 5.2.7 Xin Long
2017-01-01 11:20                                                   ` [PATCH net-next 26/27] sctp: add sctp reconf chunk process Xin Long
2017-01-01 11:20                                                     ` [PATCH net-next 27/27] sctp: add reconf chunk event Xin Long
2017-01-01 12:14                                             ` [PATCH net-next 22/27] sctp: add rfc6525 section 5.2.4 kbuild test robot
2017-01-01 13:26                                               ` Xin Long
2017-01-01 16:32                                                 ` David Miller
2017-01-02 13:43                                                   ` Xin Long
2017-01-01 12:02                                         ` [PATCH net-next 20/27] sctp: add rfc6525 section 5.2.2 kbuild test robot
2017-01-01 13:23                                           ` Xin Long
2017-01-01 11:32 ` [PATCH net-next 00/27] sctp: implement rfc6525 sctp stream reconf Xin Long
2017-01-01 16:30 ` David Miller
2017-01-02 13:42   ` Xin Long

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