mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
sctp: Fix typos and improve comments
Fix typos s/steam/stream/ and spell out Schedule/Unschedule in the comments. Compile-tested only. Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20240704202558.62704-2-thorsten.blum@toblux.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
f8ad00f3fb
commit
417d88189c
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user