mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
sctp: Correct spelling in headers
Correct spelling in sctp.h and structs.h. As reported by codespell. Cc: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Signed-off-by: Simon Horman <horms@kernel.org> Acked-by: Xin Long <lucien.xin@gmail.com> Link: https://patch.msgid.link/20240822-net-spell-v1-10-3a98971ce2d2@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
a7a45f02a0
commit
7f47fcea8c
@ -28,7 +28,7 @@
|
|||||||
#define __net_sctp_h__
|
#define __net_sctp_h__
|
||||||
|
|
||||||
/* Header Strategy.
|
/* Header Strategy.
|
||||||
* Start getting some control over the header file depencies:
|
* Start getting some control over the header file dependencies:
|
||||||
* includes
|
* includes
|
||||||
* constants
|
* constants
|
||||||
* structs
|
* structs
|
||||||
|
@ -521,7 +521,7 @@ struct sctp_datamsg {
|
|||||||
refcount_t refcnt;
|
refcount_t refcnt;
|
||||||
/* When is this message no longer interesting to the peer? */
|
/* When is this message no longer interesting to the peer? */
|
||||||
unsigned long expires_at;
|
unsigned long expires_at;
|
||||||
/* Did the messenge fail to send? */
|
/* Did the message fail to send? */
|
||||||
int send_error;
|
int send_error;
|
||||||
u8 send_failed:1,
|
u8 send_failed:1,
|
||||||
can_delay:1, /* should this message be Nagle delayed */
|
can_delay:1, /* should this message be Nagle delayed */
|
||||||
@ -792,7 +792,7 @@ struct sctp_transport {
|
|||||||
*/
|
*/
|
||||||
hb_sent:1,
|
hb_sent:1,
|
||||||
|
|
||||||
/* Is the Path MTU update pending on this tranport */
|
/* Is the Path MTU update pending on this transport */
|
||||||
pmtu_pending:1,
|
pmtu_pending:1,
|
||||||
|
|
||||||
dst_pending_confirm:1, /* need to confirm neighbour */
|
dst_pending_confirm:1, /* need to confirm neighbour */
|
||||||
@ -1223,7 +1223,7 @@ enum sctp_endpoint_type {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A common base class to bridge the implmentation view of a
|
* A common base class to bridge the implementation view of a
|
||||||
* socket (usually listening) endpoint versus an association's
|
* socket (usually listening) endpoint versus an association's
|
||||||
* local endpoint.
|
* local endpoint.
|
||||||
* This common structure is useful for several purposes:
|
* This common structure is useful for several purposes:
|
||||||
@ -1353,7 +1353,7 @@ struct sctp_endpoint {
|
|||||||
struct rcu_head rcu;
|
struct rcu_head rcu;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Recover the outter endpoint structure. */
|
/* Recover the outer endpoint structure. */
|
||||||
static inline struct sctp_endpoint *sctp_ep(struct sctp_ep_common *base)
|
static inline struct sctp_endpoint *sctp_ep(struct sctp_ep_common *base)
|
||||||
{
|
{
|
||||||
struct sctp_endpoint *ep;
|
struct sctp_endpoint *ep;
|
||||||
@ -1906,7 +1906,7 @@ struct sctp_association {
|
|||||||
__u32 rwnd_over;
|
__u32 rwnd_over;
|
||||||
|
|
||||||
/* Keeps treack of rwnd pressure. This happens when we have
|
/* Keeps treack of rwnd pressure. This happens when we have
|
||||||
* a window, but not recevie buffer (i.e small packets). This one
|
* a window, but not receive buffer (i.e small packets). This one
|
||||||
* is releases slowly (1 PMTU at a time ).
|
* is releases slowly (1 PMTU at a time ).
|
||||||
*/
|
*/
|
||||||
__u32 rwnd_press;
|
__u32 rwnd_press;
|
||||||
@ -1994,7 +1994,7 @@ struct sctp_association {
|
|||||||
|
|
||||||
/* ADDIP Section 5.2 Upon reception of an ASCONF Chunk.
|
/* ADDIP Section 5.2 Upon reception of an ASCONF Chunk.
|
||||||
*
|
*
|
||||||
* This is needed to implement itmes E1 - E4 of the updated
|
* This is needed to implement items E1 - E4 of the updated
|
||||||
* spec. Here is the justification:
|
* spec. Here is the justification:
|
||||||
*
|
*
|
||||||
* Since the peer may bundle multiple ASCONF chunks toward us,
|
* Since the peer may bundle multiple ASCONF chunks toward us,
|
||||||
@ -2005,7 +2005,7 @@ struct sctp_association {
|
|||||||
|
|
||||||
/* These ASCONF chunks are waiting to be sent.
|
/* These ASCONF chunks are waiting to be sent.
|
||||||
*
|
*
|
||||||
* These chunaks can't be pushed to outqueue until receiving
|
* These chunks can't be pushed to outqueue until receiving
|
||||||
* ASCONF_ACK for the previous ASCONF indicated by
|
* ASCONF_ACK for the previous ASCONF indicated by
|
||||||
* addip_last_asconf, so as to guarantee that only one ASCONF
|
* addip_last_asconf, so as to guarantee that only one ASCONF
|
||||||
* is in flight at any time.
|
* is in flight at any time.
|
||||||
@ -2059,13 +2059,13 @@ struct sctp_association {
|
|||||||
struct sctp_transport *new_transport;
|
struct sctp_transport *new_transport;
|
||||||
|
|
||||||
/* SCTP AUTH: list of the endpoint shared keys. These
|
/* SCTP AUTH: list of the endpoint shared keys. These
|
||||||
* keys are provided out of band by the user applicaton
|
* keys are provided out of band by the user application
|
||||||
* and can't change during the lifetime of the association
|
* and can't change during the lifetime of the association
|
||||||
*/
|
*/
|
||||||
struct list_head endpoint_shared_keys;
|
struct list_head endpoint_shared_keys;
|
||||||
|
|
||||||
/* SCTP AUTH:
|
/* SCTP AUTH:
|
||||||
* The current generated assocaition shared key (secret)
|
* The current generated association shared key (secret)
|
||||||
*/
|
*/
|
||||||
struct sctp_auth_bytes *asoc_shared_key;
|
struct sctp_auth_bytes *asoc_shared_key;
|
||||||
struct sctp_shared_key *shkey;
|
struct sctp_shared_key *shkey;
|
||||||
@ -2121,7 +2121,7 @@ enum {
|
|||||||
SCTP_ASSOC_EYECATCHER = 0xa550c123,
|
SCTP_ASSOC_EYECATCHER = 0xa550c123,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Recover the outter association structure. */
|
/* Recover the outer association structure. */
|
||||||
static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base)
|
static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base)
|
||||||
{
|
{
|
||||||
struct sctp_association *asoc;
|
struct sctp_association *asoc;
|
||||||
|
Loading…
Reference in New Issue
Block a user