All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 0/8] sctp: Implement Stream Interleave: Interaction with Other SCTP Extensions
@ 2017-12-12  9:25 ` Xin Long
  0 siblings, 0 replies; 30+ messages in thread
From: Xin Long @ 2017-12-12  9:25 UTC (permalink / raw)
  To: network dev, linux-sctp; +Cc: Marcelo Ricardo Leitner, Neil Horman, davem

Stream Interleave would be implemented in two Parts:

   1. The I-DATA Chunk Supporting User Message Interleaving
   2. Interaction with Other SCTP Extensions

Overview in section 2.3 of RFC8260 for Part 2:

   The usage of the I-DATA chunk might interfere with other SCTP
   extensions.  Future SCTP extensions MUST describe if and how they
   interfere with the usage of I-DATA chunks.  For the SCTP extensions
   already defined when this document was published, the details are
   given in the following subsections.

As the 2nd part of Stream Interleave Implementation, this patchset mostly
adds the support for SCTP Partial Reliability Extension with I-FORWARD-TSN
chunk. Then adjusts stream scheduler and stream reconfig to make them work
properly with I-DATA chunks.

In the last patch, all stream interleave codes will be enabled by adding
sysctl to allow users to use this feature.

Xin Long (8):
  sctp: add basic structures and make chunk function for ifwdtsn
  sctp: implement generate_ftsn for sctp_stream_interleave
  sctp: implement validate_ftsn for sctp_stream_interleave
  sctp: implement report_ftsn for sctp_stream_interleave
  sctp: implement handle_ftsn for sctp_stream_interleave
  sctp: add stream interleave support in stream scheduler
  sctp: update mid instead of ssn when doing stream and asoc reset
  sctp: support sysctl to allow users to use stream interleave

 include/linux/sctp.h                 |  17 +++
 include/net/sctp/sm.h                |   3 +
 include/net/sctp/stream_interleave.h |   7 ++
 include/net/sctp/structs.h           |  12 ++
 net/sctp/outqueue.c                  |  12 +-
 net/sctp/sm_make_chunk.c             |  24 ++++
 net/sctp/sm_sideeffect.c             |  24 +---
 net/sctp/sm_statefuns.c              |  24 ++--
 net/sctp/sm_statetable.c             |   3 +-
 net/sctp/stream.c                    |  46 +++++---
 net/sctp/stream_interleave.c         | 216 +++++++++++++++++++++++++++++++++++
 net/sctp/stream_sched.c              |   3 +-
 net/sctp/sysctl.c                    |   7 ++
 13 files changed, 334 insertions(+), 64 deletions(-)

-- 
2.1.0

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

end of thread, other threads:[~2017-12-12 14:02 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-12  9:25 [PATCH net-next 0/8] sctp: Implement Stream Interleave: Interaction with Other SCTP Extensions Xin Long
2017-12-12  9:25 ` Xin Long
2017-12-12  9:25 ` [PATCH net-next 1/8] sctp: add basic structures and make chunk function for ifwdtsn Xin Long
2017-12-12  9:25   ` Xin Long
2017-12-12  9:25   ` [PATCH net-next 2/8] sctp: implement generate_ftsn for sctp_stream_interleave Xin Long
2017-12-12  9:25     ` Xin Long
2017-12-12  9:25     ` [PATCH net-next 3/8] sctp: implement validate_ftsn " Xin Long
2017-12-12  9:25       ` Xin Long
2017-12-12  9:25       ` [PATCH net-next 4/8] sctp: implement report_ftsn " Xin Long
2017-12-12  9:25         ` Xin Long
2017-12-12  9:25         ` [PATCH net-next 5/8] sctp: implement handle_ftsn " Xin Long
2017-12-12  9:25           ` Xin Long
2017-12-12  9:25           ` [PATCH net-next 6/8] sctp: add stream interleave support in stream scheduler Xin Long
2017-12-12  9:25             ` Xin Long
2017-12-12  9:25             ` [PATCH net-next 7/8] sctp: update mid instead of ssn when doing stream and asoc reset Xin Long
2017-12-12  9:25               ` Xin Long
2017-12-12  9:25               ` [PATCH net-next 8/8] sctp: support sysctl to allow users to use stream interleave Xin Long
2017-12-12  9:25                 ` Xin Long
2017-12-12 13:25         ` [PATCH net-next 4/8] sctp: implement report_ftsn for sctp_stream_interleave Marcelo Ricardo Leitner
2017-12-12 13:25           ` Marcelo Ricardo Leitner
2017-12-12 14:02           ` Xin Long
2017-12-12 14:02             ` Xin Long
2017-12-12 13:18       ` [PATCH net-next 3/8] sctp: implement validate_ftsn " Marcelo Ricardo Leitner
2017-12-12 13:18         ` Marcelo Ricardo Leitner
2017-12-12 13:31         ` Xin Long
2017-12-12 13:31           ` Xin Long
2017-12-12 13:37           ` Marcelo Ricardo Leitner
2017-12-12 13:37             ` Marcelo Ricardo Leitner
2017-12-12 13:59             ` Xin Long
2017-12-12 13:59               ` Xin Long

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.