stream_sched.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /* SCTP kernel implementation
  3. * (C) Copyright Red Hat Inc. 2017
  4. *
  5. * These are definitions used by the stream schedulers, defined in RFC
  6. * draft ndata (https://tools.ietf.org/html/draft-ietf-tsvwg-sctp-ndata-11)
  7. *
  8. * Please send any bug reports or fixes you make to the
  9. * email addresses:
  10. * lksctp developers <[email protected]>
  11. *
  12. * Written or modified by:
  13. * Marcelo Ricardo Leitner <[email protected]>
  14. */
  15. #ifndef __sctp_stream_sched_h__
  16. #define __sctp_stream_sched_h__
  17. struct sctp_sched_ops {
  18. /* Property handling for a given stream */
  19. int (*set)(struct sctp_stream *stream, __u16 sid, __u16 value,
  20. gfp_t gfp);
  21. int (*get)(struct sctp_stream *stream, __u16 sid, __u16 *value);
  22. /* Init the specific scheduler */
  23. int (*init)(struct sctp_stream *stream);
  24. /* Init a stream */
  25. int (*init_sid)(struct sctp_stream *stream, __u16 sid, gfp_t gfp);
  26. /* free a stream */
  27. void (*free_sid)(struct sctp_stream *stream, __u16 sid);
  28. /* Frees the entire thing */
  29. void (*free)(struct sctp_stream *stream);
  30. /* Enqueue a chunk */
  31. void (*enqueue)(struct sctp_outq *q, struct sctp_datamsg *msg);
  32. /* Dequeue a chunk */
  33. struct sctp_chunk *(*dequeue)(struct sctp_outq *q);
  34. /* Called only if the chunk fit the packet */
  35. void (*dequeue_done)(struct sctp_outq *q, struct sctp_chunk *chunk);
  36. /* Sched all chunks already enqueued */
  37. void (*sched_all)(struct sctp_stream *steam);
  38. /* Unched all chunks already enqueued */
  39. void (*unsched_all)(struct sctp_stream *steam);
  40. };
  41. int sctp_sched_set_sched(struct sctp_association *asoc,
  42. enum sctp_sched_type sched);
  43. int sctp_sched_get_sched(struct sctp_association *asoc);
  44. int sctp_sched_set_value(struct sctp_association *asoc, __u16 sid,
  45. __u16 value, gfp_t gfp);
  46. int sctp_sched_get_value(struct sctp_association *asoc, __u16 sid,
  47. __u16 *value);
  48. void sctp_sched_dequeue_done(struct sctp_outq *q, struct sctp_chunk *ch);
  49. void sctp_sched_dequeue_common(struct sctp_outq *q, struct sctp_chunk *ch);
  50. int sctp_sched_init_sid(struct sctp_stream *stream, __u16 sid, gfp_t gfp);
  51. struct sctp_sched_ops *sctp_sched_ops_from_stream(struct sctp_stream *stream);
  52. void sctp_sched_ops_register(enum sctp_sched_type sched,
  53. struct sctp_sched_ops *sched_ops);
  54. void sctp_sched_ops_prio_init(void);
  55. void sctp_sched_ops_rr_init(void);
  56. #endif /* __sctp_stream_sched_h__ */