git: 49c220b021d5 - main - net80211: comments and whitespace
Bjoern A. Zeeb
bz at FreeBSD.org
Sat Sep 4 09:20:48 UTC 2021
The branch main has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=49c220b021d5855652ecb2803c969dfa47bdd306
commit 49c220b021d5855652ecb2803c969dfa47bdd306
Author: Bjoern A. Zeeb <bz at FreeBSD.org>
AuthorDate: 2021-09-04 09:16:25 +0000
Commit: Bjoern A. Zeeb <bz at FreeBSD.org>
CommitDate: 2021-09-04 09:16:25 +0000
net80211: comments and whitespace
Add a missing '.', fix spelling of "failed" and unwrap a closing );
No functional changes.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
---
sys/net80211/ieee80211_input.h | 2 +-
sys/net80211/ieee80211_output.c | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/sys/net80211/ieee80211_input.h b/sys/net80211/ieee80211_input.h
index 810dcbde7978..7456fc68b365 100644
--- a/sys/net80211/ieee80211_input.h
+++ b/sys/net80211/ieee80211_input.h
@@ -178,7 +178,7 @@ ieee80211_check_rxseq_amsdu_more(const struct ieee80211_rx_stats *rxs)
*
* The routine only eliminates packets whose sequence/fragment
* match or are less than the last seen sequence/fragment number
- * AND are retransmits It doesn't try to eliminate out of order packets.
+ * AND are retransmits. It doesn't try to eliminate out of order packets.
*
* Since all frames after sequence number 4095 will be less than 4095
* (as the seqnum wraps), handle that special case so packets aren't
diff --git a/sys/net80211/ieee80211_output.c b/sys/net80211/ieee80211_output.c
index ab3e3142ad2c..4f9e9614f732 100644
--- a/sys/net80211/ieee80211_output.c
+++ b/sys/net80211/ieee80211_output.c
@@ -2590,7 +2590,7 @@ ieee80211_send_probereq(struct ieee80211_node *ni,
ret = ieee80211_probereq_ie(vap, ic, &frm, &frmlen, ssid, ssidlen,
false);
KASSERT(ret == 0,
- ("%s: ieee80211_probereq_ie railed: %d\n", __func__, ret));
+ ("%s: ieee80211_probereq_ie failed: %d\n", __func__, ret));
m->m_pkthdr.len = m->m_len = frm - mtod(m, uint8_t *);
KASSERT(M_LEADINGSPACE(m) >= sizeof(struct ieee80211_frame),
@@ -2725,8 +2725,7 @@ ieee80211_send_mgmt(struct ieee80211_node *ni, int type, int arg)
ic->ic_headroom + sizeof(struct ieee80211_frame),
3 * sizeof(uint16_t)
+ (has_challenge && status == IEEE80211_STATUS_SUCCESS ?
- sizeof(uint16_t)+IEEE80211_CHALLENGE_LEN : 0)
- );
+ sizeof(uint16_t)+IEEE80211_CHALLENGE_LEN : 0));
if (m == NULL)
senderr(ENOMEM, is_tx_nobuf);
More information about the dev-commits-src-all
mailing list