Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Jun 2025 16:32:40 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 8d51f2aba9ad - main - iwx: correct rx status reporting
Message-ID:  <202506191632.55JGWeVg047619@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=8d51f2aba9ade8cfba84f18cfb0e20f321ae89c2

commit 8d51f2aba9ade8cfba84f18cfb0e20f321ae89c2
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2025-06-19 00:58:15 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-06-19 16:32:28 +0000

    iwx: correct rx status reporting
    
    We are currently not reporting any per-chain S:N values so remove
    IEEE80211_R_C_RSSI and IEEE80211_R_RSSI along with it as it is set
    already in the line above.
    
    Sponsored by:   The FreeBSD Foundation
    Reviewed by:    thj
    Differential Revision: https://reviews.freebsd.org/D50927
---
 sys/dev/iwx/if_iwx.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys/dev/iwx/if_iwx.c b/sys/dev/iwx/if_iwx.c
index 5a320f3855e3..d60ef1874a6c 100644
--- a/sys/dev/iwx/if_iwx.c
+++ b/sys/dev/iwx/if_iwx.c
@@ -4642,7 +4642,6 @@ iwx_rx_mpdu_mq(struct iwx_softc *sc, struct mbuf *m, void *pktdata,
 	rxs.r_flags |= IEEE80211_R_IEEE | IEEE80211_R_FREQ;
 	rxs.r_flags |= IEEE80211_R_BAND;
 	rxs.r_flags |= IEEE80211_R_NF | IEEE80211_R_RSSI;
-	rxs.r_flags |= IEEE80211_R_RSSI | IEEE80211_R_C_RSSI;
 	rxs.r_flags |= IEEE80211_R_TSF32 | IEEE80211_R_TSF_START;
 
 	rxs.c_ieee = chanidx;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202506191632.55JGWeVg047619>