Skip to content

Commit

Permalink
sctp: Fix typos and improve comments
Browse files Browse the repository at this point in the history
Fix typos s/steam/stream/ and spell out Schedule/Unschedule in the
comments.

Compile-tested only.

Signed-off-by: Thorsten Blum <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Paolo Abeni <[email protected]>
  • Loading branch information
toblux authored and Paolo Abeni committed Jul 9, 2024
1 parent f8ad00f commit 417d881
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/net/sctp/stream_sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ struct sctp_sched_ops {
struct sctp_chunk *(*dequeue)(struct sctp_outq *q);
/* Called only if the chunk fit the packet */
void (*dequeue_done)(struct sctp_outq *q, struct sctp_chunk *chunk);
/* Sched all chunks already enqueued */
void (*sched_all)(struct sctp_stream *steam);
/* Unched all chunks already enqueued */
void (*unsched_all)(struct sctp_stream *steam);
/* Schedule all chunks already enqueued */
void (*sched_all)(struct sctp_stream *stream);
/* Unschedule all chunks already enqueued */
void (*unsched_all)(struct sctp_stream *stream);
};

int sctp_sched_set_sched(struct sctp_association *asoc,
Expand Down

0 comments on commit 417d881

Please sign in to comment.