mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
net: Correct spelling in headers
Correct spelling in Networking headers. As reported by codespell. Signed-off-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20240822-net-spell-v1-12-3a98971ce2d2@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
01d86846a5
commit
70d0bb45fa
@ -645,7 +645,7 @@ static inline struct ethhdr *eth_skb_pull_mac(struct sk_buff *skb)
|
||||
}
|
||||
|
||||
/**
|
||||
* eth_skb_pad - Pad buffer to mininum number of octets for Ethernet frame
|
||||
* eth_skb_pad - Pad buffer to minimum number of octets for Ethernet frame
|
||||
* @skb: Buffer to pad
|
||||
*
|
||||
* An Ethernet frame should have a minimum size of 60 bytes. This function
|
||||
|
@ -1237,7 +1237,7 @@ struct netdev_net_notifier {
|
||||
* int (*ndo_fdb_del)(struct ndmsg *ndm, struct nlattr *tb[],
|
||||
* struct net_device *dev,
|
||||
* const unsigned char *addr, u16 vid)
|
||||
* Deletes the FDB entry from dev coresponding to addr.
|
||||
* Deletes the FDB entry from dev corresponding to addr.
|
||||
* int (*ndo_fdb_del_bulk)(struct nlmsghdr *nlh, struct net_device *dev,
|
||||
* struct netlink_ext_ack *extack);
|
||||
* int (*ndo_fdb_dump)(struct sk_buff *skb, struct netlink_callback *cb,
|
||||
@ -3514,7 +3514,7 @@ static inline void netdev_tx_completed_queue(struct netdev_queue *dev_queue,
|
||||
dql_completed(&dev_queue->dql, bytes);
|
||||
|
||||
/*
|
||||
* Without the memory barrier there is a small possiblity that
|
||||
* Without the memory barrier there is a small possibility that
|
||||
* netdev_tx_sent_queue will miss the update and cause the queue to
|
||||
* be stopped forever
|
||||
*/
|
||||
@ -4583,7 +4583,7 @@ void dev_uc_flush(struct net_device *dev);
|
||||
void dev_uc_init(struct net_device *dev);
|
||||
|
||||
/**
|
||||
* __dev_uc_sync - Synchonize device's unicast list
|
||||
* __dev_uc_sync - Synchronize device's unicast list
|
||||
* @dev: device to sync
|
||||
* @sync: function to call if address should be added
|
||||
* @unsync: function to call if address should be removed
|
||||
@ -4627,7 +4627,7 @@ void dev_mc_flush(struct net_device *dev);
|
||||
void dev_mc_init(struct net_device *dev);
|
||||
|
||||
/**
|
||||
* __dev_mc_sync - Synchonize device's multicast list
|
||||
* __dev_mc_sync - Synchronize device's multicast list
|
||||
* @dev: device to sync
|
||||
* @sync: function to call if address should be added
|
||||
* @unsync: function to call if address should be removed
|
||||
|
@ -333,7 +333,7 @@ static inline struct inet6_dev *__in6_dev_get(const struct net_device *dev)
|
||||
/**
|
||||
* __in6_dev_stats_get - get inet6_dev pointer for stats
|
||||
* @dev: network device
|
||||
* @skb: skb for original incoming interface if neeeded
|
||||
* @skb: skb for original incoming interface if needed
|
||||
*
|
||||
* Caller must hold rcu_read_lock or RTNL, because this function
|
||||
* does not take a reference on the inet6_dev.
|
||||
|
@ -131,7 +131,7 @@ static inline void skb_mark_napi_id(struct sk_buff *skb,
|
||||
#endif
|
||||
}
|
||||
|
||||
/* used in the protocol hanlder to propagate the napi_id to the socket */
|
||||
/* used in the protocol handler to propagate the napi_id to the socket */
|
||||
static inline void sk_mark_napi_id(struct sock *sk, const struct sk_buff *skb)
|
||||
{
|
||||
#ifdef CONFIG_NET_RX_BUSY_POLL
|
||||
|
@ -20,7 +20,7 @@ struct caif_payload_info;
|
||||
* @assert: expression to evaluate.
|
||||
*
|
||||
* This function will print a error message and a do WARN_ON if the
|
||||
* assertion failes. Normally this will do a stack up at the current location.
|
||||
* assertion fails. Normally this will do a stack up at the current location.
|
||||
*/
|
||||
#define caif_assert(assert) \
|
||||
do { \
|
||||
@ -116,7 +116,7 @@ enum caif_direction {
|
||||
* @dn: Pointer down to the layer below.
|
||||
* @node: List node used when layer participate in a list.
|
||||
* @receive: Packet receive function.
|
||||
* @transmit: Packet transmit funciton.
|
||||
* @transmit: Packet transmit function.
|
||||
* @ctrlcmd: Used for control signalling upwards in the stack.
|
||||
* @modemcmd: Used for control signaling downwards in the stack.
|
||||
* @id: The identity of this layer
|
||||
|
@ -18,7 +18,7 @@ struct cfpkt *cfpkt_create(u16 len);
|
||||
|
||||
/*
|
||||
* Destroy a CAIF Packet.
|
||||
* pkt Packet to be destoyed.
|
||||
* pkt Packet to be destroyed.
|
||||
*/
|
||||
void cfpkt_destroy(struct cfpkt *pkt);
|
||||
|
||||
|
@ -155,8 +155,8 @@ enum skb_drop_reason {
|
||||
/** @SKB_DROP_REASON_SOCKET_RCVBUFF: socket receive buff is full */
|
||||
SKB_DROP_REASON_SOCKET_RCVBUFF,
|
||||
/**
|
||||
* @SKB_DROP_REASON_PROTO_MEM: proto memory limition, such as udp packet
|
||||
* drop out of udp_memory_allocated.
|
||||
* @SKB_DROP_REASON_PROTO_MEM: proto memory limitation, such as
|
||||
* udp packet drop out of udp_memory_allocated.
|
||||
*/
|
||||
SKB_DROP_REASON_PROTO_MEM,
|
||||
/**
|
||||
@ -217,7 +217,7 @@ enum skb_drop_reason {
|
||||
*/
|
||||
SKB_DROP_REASON_TCP_ZEROWINDOW,
|
||||
/**
|
||||
* @SKB_DROP_REASON_TCP_OLD_DATA: the TCP data reveived is already
|
||||
* @SKB_DROP_REASON_TCP_OLD_DATA: the TCP data received is already
|
||||
* received before (spurious retrans may happened), see
|
||||
* LINUX_MIB_DELAYEDACKLOST
|
||||
*/
|
||||
|
@ -341,7 +341,7 @@ static inline void __skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev,
|
||||
skb->dev = dev;
|
||||
|
||||
/*
|
||||
* Clear hash so that we can recalulate the hash for the
|
||||
* Clear hash so that we can recalculate the hash for the
|
||||
* encapsulated packet, unless we have already determine the hash
|
||||
* over the L4 4-tuple.
|
||||
*/
|
||||
|
@ -102,7 +102,7 @@ int dst_cache_init(struct dst_cache *dst_cache, gfp_t gfp);
|
||||
* @dst_cache: the cache
|
||||
*
|
||||
* No synchronization is enforced: it must be called only when the cache
|
||||
* is unsed.
|
||||
* is unused.
|
||||
*/
|
||||
void dst_cache_destroy(struct dst_cache *dst_cache);
|
||||
|
||||
|
@ -89,7 +89,7 @@ enum erspan_encap_type {
|
||||
ERSPAN_ENCAP_NOVLAN = 0x0, /* originally without VLAN tag */
|
||||
ERSPAN_ENCAP_ISL = 0x1, /* originally ISL encapsulated */
|
||||
ERSPAN_ENCAP_8021Q = 0x2, /* originally 802.1Q encapsulated */
|
||||
ERSPAN_ENCAP_INFRAME = 0x3, /* VLAN tag perserved in frame */
|
||||
ERSPAN_ENCAP_INFRAME = 0x3, /* VLAN tag preserved in frame */
|
||||
};
|
||||
|
||||
#define ERSPAN_V1_MDSIZE 4
|
||||
@ -192,7 +192,7 @@ static inline void erspan_build_header(struct sk_buff *skb,
|
||||
enc_type = ERSPAN_ENCAP_NOVLAN;
|
||||
|
||||
/* If mirrored packet has vlan tag, extract tci and
|
||||
* perserve vlan header in the mirrored frame.
|
||||
* preserve vlan header in the mirrored frame.
|
||||
*/
|
||||
if (eth->h_proto == htons(ETH_P_8021Q)) {
|
||||
qp = (struct qtag_prefix *)(skb->data + 2 * ETH_ALEN);
|
||||
|
@ -11,9 +11,9 @@ struct hwbm_pool {
|
||||
int frag_size;
|
||||
/* Number of buffers currently used by this pool */
|
||||
int buf_num;
|
||||
/* constructor called during alocation */
|
||||
/* constructor called during allocation */
|
||||
int (*construct)(struct hwbm_pool *bm_pool, void *buf);
|
||||
/* protect acces to the buffer counter*/
|
||||
/* protect access to the buffer counter*/
|
||||
struct mutex buf_lock;
|
||||
/* private data */
|
||||
void *priv;
|
||||
|
@ -254,7 +254,7 @@ static inline void llc_pdu_header_init(struct sk_buff *skb, u8 type,
|
||||
}
|
||||
|
||||
/**
|
||||
* llc_pdu_decode_sa - extracs source address (MAC) of input frame
|
||||
* llc_pdu_decode_sa - extracts, source address (MAC) of input frame
|
||||
* @skb: input skb that source address must be extracted from it.
|
||||
* @sa: pointer to source address (6 byte array).
|
||||
*
|
||||
|
@ -827,7 +827,7 @@ nlmsg_parse_deprecated_strict(const struct nlmsghdr *nlh, int hdrlen,
|
||||
/**
|
||||
* nlmsg_find_attr - find a specific attribute in a netlink message
|
||||
* @nlh: netlink message header
|
||||
* @hdrlen: length of familiy specific header
|
||||
* @hdrlen: length of family specific header
|
||||
* @attrtype: type of attribute to look for
|
||||
*
|
||||
* Returns the first attribute which matches the specified type.
|
||||
@ -849,7 +849,7 @@ static inline struct nlattr *nlmsg_find_attr(const struct nlmsghdr *nlh,
|
||||
*
|
||||
* Validates all attributes in the specified attribute stream against the
|
||||
* specified policy. Validation is done in liberal mode.
|
||||
* See documenation of struct nla_policy for more details.
|
||||
* See documentation of struct nla_policy for more details.
|
||||
*
|
||||
* Returns 0 on success or a negative error code.
|
||||
*/
|
||||
@ -872,7 +872,7 @@ static inline int nla_validate_deprecated(const struct nlattr *head, int len,
|
||||
*
|
||||
* Validates all attributes in the specified attribute stream against the
|
||||
* specified policy. Validation is done in strict mode.
|
||||
* See documenation of struct nla_policy for more details.
|
||||
* See documentation of struct nla_policy for more details.
|
||||
*
|
||||
* Returns 0 on success or a negative error code.
|
||||
*/
|
||||
@ -887,7 +887,7 @@ static inline int nla_validate(const struct nlattr *head, int len, int maxtype,
|
||||
/**
|
||||
* nlmsg_validate_deprecated - validate a netlink message including attributes
|
||||
* @nlh: netlinket message header
|
||||
* @hdrlen: length of familiy specific header
|
||||
* @hdrlen: length of family specific header
|
||||
* @maxtype: maximum attribute type to be expected
|
||||
* @policy: validation policy
|
||||
* @extack: extended ACK report struct
|
||||
@ -933,7 +933,7 @@ static inline u32 nlmsg_seq(const struct nlmsghdr *nlh)
|
||||
* nlmsg_for_each_attr - iterate over a stream of attributes
|
||||
* @pos: loop counter, set to current attribute
|
||||
* @nlh: netlink message header
|
||||
* @hdrlen: length of familiy specific header
|
||||
* @hdrlen: length of family specific header
|
||||
* @rem: initialized to len, holds bytes currently remaining in stream
|
||||
*/
|
||||
#define nlmsg_for_each_attr(pos, nlh, hdrlen, rem) \
|
||||
@ -1034,7 +1034,7 @@ static inline struct sk_buff *nlmsg_new_large(size_t payload)
|
||||
* @skb: socket buffer the message is stored in
|
||||
* @nlh: netlink message header
|
||||
*
|
||||
* Corrects the netlink message header to include the appeneded
|
||||
* Corrects the netlink message header to include the appended
|
||||
* attributes. Only necessary if attributes have been added to
|
||||
* the message.
|
||||
*/
|
||||
@ -1954,7 +1954,7 @@ static inline struct nlattr *nla_nest_start(struct sk_buff *skb, int attrtype)
|
||||
* @start: container attribute
|
||||
*
|
||||
* Corrects the container attribute header to include the all
|
||||
* appeneded attributes.
|
||||
* appended attributes.
|
||||
*
|
||||
* Returns the total data length of the skb.
|
||||
*/
|
||||
@ -1987,7 +1987,7 @@ static inline void nla_nest_cancel(struct sk_buff *skb, struct nlattr *start)
|
||||
*
|
||||
* Validates all attributes in the nested attribute stream against the
|
||||
* specified policy. Attributes with a type exceeding maxtype will be
|
||||
* ignored. See documenation of struct nla_policy for more details.
|
||||
* ignored. See documentation of struct nla_policy for more details.
|
||||
*
|
||||
* Returns 0 on success or a negative error code.
|
||||
*/
|
||||
|
@ -125,14 +125,14 @@ struct netns_sctp {
|
||||
int pf_expose;
|
||||
|
||||
/*
|
||||
* Policy for preforming sctp/socket accounting
|
||||
* Policy for performing sctp/socket accounting
|
||||
* 0 - do socket level accounting, all assocs share sk_sndbuf
|
||||
* 1 - do sctp accounting, each asoc may use sk_sndbuf bytes
|
||||
*/
|
||||
int sndbuf_policy;
|
||||
|
||||
/*
|
||||
* Policy for preforming sctp/socket accounting
|
||||
* Policy for performing sctp/socket accounting
|
||||
* 0 - do socket level accounting, all assocs share sk_rcvbuf
|
||||
* 1 - do sctp accounting, each asoc may use sk_rcvbuf bytes
|
||||
*/
|
||||
|
@ -121,7 +121,7 @@ struct regulatory_request {
|
||||
* @REGULATORY_DISABLE_BEACON_HINTS: enable this if your driver needs to
|
||||
* ensure that passive scan flags and beaconing flags may not be lifted by
|
||||
* cfg80211 due to regulatory beacon hints. For more information on beacon
|
||||
* hints read the documenation for regulatory_hint_found_beacon()
|
||||
* hints read the documentation for regulatory_hint_found_beacon()
|
||||
* @REGULATORY_COUNTRY_IE_FOLLOW_POWER: for devices that have a preference
|
||||
* that even though they may have programmed their own custom power
|
||||
* setting prior to wiphy registration, they want to ensure their channel
|
||||
|
@ -1624,7 +1624,7 @@ bool __lock_sock_fast(struct sock *sk) __acquires(&sk->sk_lock.slock);
|
||||
* lock_sock_fast - fast version of lock_sock
|
||||
* @sk: socket
|
||||
*
|
||||
* This version should be used for very small section, where process wont block
|
||||
* This version should be used for very small section, where process won't block
|
||||
* return false if fast path is taken:
|
||||
*
|
||||
* sk_lock.slock locked, owned = 0, BH disabled
|
||||
@ -2546,7 +2546,7 @@ struct sock_skb_cb {
|
||||
|
||||
/* Store sock_skb_cb at the end of skb->cb[] so protocol families
|
||||
* using skb->cb[] would keep using it directly and utilize its
|
||||
* alignement guarantee.
|
||||
* alignment guarantee.
|
||||
*/
|
||||
#define SOCK_SKB_CB_OFFSET ((sizeof_field(struct sk_buff, cb) - \
|
||||
sizeof(struct sock_skb_cb)))
|
||||
|
@ -232,7 +232,7 @@ static inline __be16 udp_flow_src_port(struct net *net, struct sk_buff *skb,
|
||||
}
|
||||
|
||||
/* Since this is being sent on the wire obfuscate hash a bit
|
||||
* to minimize possbility that any useful information to an
|
||||
* to minimize possibility that any useful information to an
|
||||
* attacker is leaked. Only upper 16 bits are relevant in the
|
||||
* computation for 16 bit port value.
|
||||
*/
|
||||
|
@ -141,7 +141,7 @@ struct in_addr {
|
||||
*/
|
||||
#define IP_PMTUDISC_INTERFACE 4
|
||||
/* weaker version of IP_PMTUDISC_INTERFACE, which allows packets to get
|
||||
* fragmented if they exeed the interface mtu
|
||||
* fragmented if they exceed the interface mtu
|
||||
*/
|
||||
#define IP_PMTUDISC_OMIT 5
|
||||
|
||||
|
@ -143,7 +143,7 @@ enum {
|
||||
INET_DIAG_SHUTDOWN,
|
||||
|
||||
/*
|
||||
* Next extenstions cannot be requested in struct inet_diag_req_v2:
|
||||
* Next extensions cannot be requested in struct inet_diag_req_v2:
|
||||
* its field idiag_ext has only 8 bits.
|
||||
*/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user