* Re: [PATCH v3 2/3] wifi: carl9170: fix OOB read from off-by-two in TX status handler
From: Christian Lamparter @ 2026-07-04 19:48 UTC (permalink / raw)
To: Tristan Madani, Christian Lamparter
Cc: Johannes Berg, linux-wireless, linux-kernel, Tristan Madani
In-Reply-To: <20260421134929.325662-3-tristmd@gmail.com>
On 4/21/26 3:49 PM, Tristan Madani wrote:
> From: Tristan Madani <tristan@talencesecurity.com>
>
> The bounds check in carl9170_tx_process_status() uses
> `i > ((cmd->hdr.len / 2) + 1)` which is off by two, allowing
> 2 extra iterations past valid _tx_status entries when the firmware-
> controlled hdr.ext exceeds hdr.len/2. Fix by using the correct
> comparison `i >= (cmd->hdr.len / 2)`.
>
> Fixes: a84fab3cbfdc ("carl9170: 802.11 rx/tx processing and usb backend")
> Signed-off-by: Tristan Madani <tristan@talencesecurity.com>
Acked-by: Christian Lamparter <chunkeey@gmail.com>
> ---
> Changes in v3:
> - Regenerated from wireless-next with proper git format-patch to
> produce valid index hashes (v2 had post-processed index lines).
>
> Changes in v2:
> - No code changes from v1.
>
> drivers/net/wireless/ath/carl9170/tx.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/ath/carl9170/tx.c b/drivers/net/wireless/ath/carl9170/tx.c
> index 59caf1e4b1589..06aaf281655b1 100644
> --- a/drivers/net/wireless/ath/carl9170/tx.c
> +++ b/drivers/net/wireless/ath/carl9170/tx.c
> @@ -692,7 +692,7 @@ void carl9170_tx_process_status(struct ar9170 *ar,
> unsigned int i;
>
> for (i = 0; i < cmd->hdr.ext; i++) {
> - if (WARN_ON(i > ((cmd->hdr.len / 2) + 1))) {
> + if (WARN_ON(i >= (cmd->hdr.len / 2))) {
> print_hex_dump_bytes("UU:", DUMP_PREFIX_NONE,
> (void *) cmd, cmd->hdr.len + 4);
> break;
^ permalink raw reply
* Re: [PATCH v3 1/3] wifi: carl9170: bound memcpy length in cmd callback to prevent OOB read
From: Christian Lamparter @ 2026-07-04 19:48 UTC (permalink / raw)
To: Tristan Madani, Christian Lamparter
Cc: Johannes Berg, linux-wireless, linux-kernel, Tristan Madani
In-Reply-To: <20260421134929.325662-2-tristmd@gmail.com>
On 4/21/26 3:49 PM, Tristan Madani wrote:
> From: Tristan Madani <tristan@talencesecurity.com>
>
> When the firmware sends a command response with a length mismatch,
> carl9170_cmd_callback() logs the mismatch and calls carl9170_restart()
> but then falls through to memcpy(ar->readbuf, buffer + 4, len - 4).
> Since len comes from the firmware and can exceed ar->readlen, this
> copies more data than the readbuf was allocated for.
>
> Bound the memcpy to min(len - 4, ar->readlen) so that the response
> is still completed -- avoiding repeated restarts from queued garbage --
> while preventing an overread past the response buffer.
>
> Fixes: a84fab3cbfdc ("carl9170: 802.11 rx/tx processing and usb backend")
> Signed-off-by: Tristan Madani <tristan@talencesecurity.com>
Acked-by: Christian Lamparter <chunkeey@gmail.com>
> ---
> Changes in v3:
> - Regenerated from wireless-next with proper git format-patch to
> produce valid index hashes (v2 had post-processed index lines).
>
> Changes in v2:
> - No code changes from v1.
>
> drivers/net/wireless/ath/carl9170/rx.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/ath/carl9170/rx.c b/drivers/net/wireless/ath/carl9170/rx.c
> index 6833430130f4c..f6855efc05c0f 100644
> --- a/drivers/net/wireless/ath/carl9170/rx.c
> +++ b/drivers/net/wireless/ath/carl9170/rx.c
> @@ -150,7 +150,8 @@ static void carl9170_cmd_callback(struct ar9170 *ar, u32 len, void *buffer)
> spin_lock(&ar->cmd_lock);
> if (ar->readbuf) {
> if (len >= 4)
> - memcpy(ar->readbuf, buffer + 4, len - 4);
> + memcpy(ar->readbuf, buffer + 4,
> + min_t(u32, len - 4, ar->readlen));
>
> ar->readbuf = NULL;
> }
^ permalink raw reply
* Re: [PATCH v3 0/3] wifi: carl9170: firmware trust boundary hardening
From: Christian Lamparter @ 2026-07-04 19:47 UTC (permalink / raw)
To: Jeff Johnson, Tristan Madani, Christian Lamparter
Cc: Johannes Berg, linux-wireless, linux-kernel, Tristan Madani
In-Reply-To: <b31525d8-e3b7-4ff9-bee6-4974fa9f9a6a@oss.qualcomm.com>
On 7/1/26 7:47 PM, Jeff Johnson wrote:
> On 4/21/2026 6:49 AM, Tristan Madani wrote:
>> From: Tristan Madani <tristan@talencesecurity.com>
>>
>> This series adds missing bounds checks for firmware-controlled fields
>> in the carl9170 USB driver.
>>
>> Patch 1 bounds the cmd callback memcpy to prevent heap overflow from
>> an oversized firmware response. Patch 2 fixes an off-by-two in the TX
>> status handler. Patch 3 caps the failover copy to rx_failover_missing
>> bytes, using min_t per Christian Lamparter.
>>
>> Changes in v3:
>> - Regenerated from wireless-next with proper git format-patch.
>>
>> Changes in v2:
>> - Use min_t() instead of separate if-check in patch 3, per
>> Christian Lamparter.
>>
>> Tristan Madani (3):
>> wifi: carl9170: bound memcpy length in cmd callback to prevent OOB
>> read
>> wifi: carl9170: fix OOB read from off-by-two in TX status handler
>> wifi: carl9170: fix buffer overflow in rx_stream failover path
>>
>> drivers/net/wireless/ath/carl9170/rx.c | 7 +++++--
>> drivers/net/wireless/ath/carl9170/tx.c | 2 +-
>> 2 files changed, 6 insertions(+), 3 deletions(-)
>>
>
> Christian, will you be able to review this series?
> I'll take it once I get reviewed-by or acked-by tags.
> And then we can ignore the dups from others.
From what I can tell, the "others" made the effort to also check skzkaller.
i.e: https://www.spinics.net/lists/stable/msg965098.html
Closes: https://syzkaller.appspot.com/bug?extid=5c1ca6ccaa1215781cac
Wouldn't it be possible to merge this information with the patch? I guess not.
Oh well.
As for the series I do have a headache with patch 2, I wonder why none of the
other AI-fueled mails proposed the same.
^ permalink raw reply
* Re: [PATCH] wifi: p54: update stale wireless wiki URLs
From: Christian Lamparter @ 2026-07-04 19:16 UTC (permalink / raw)
To: Anas Khan; +Cc: Kees Cook, linux-wireless, linux-kernel
In-Reply-To: <20260702102325.63955-1-anxkhn28@gmail.com>
On 7/2/26 12:23 PM, Anas Khan wrote:
> The p54 wireless wiki links (wireless.wiki.kernel.org) return 404; the
> content moved to the Sphinx documentation site. Point them at the
> current wireless.docs.kernel.org pages.
>
Yes, Thank you. I clicked on the new links, they all work.
Acked-by: Christian Lamparter <chunkeey@gmail.com>
> Signed-off-by: Anas Khan <anxkhn28@gmail.com>
> ---
> drivers/net/wireless/intersil/p54/Kconfig | 6 +++---
> drivers/net/wireless/intersil/p54/fwio.c | 4 +---
> drivers/net/wireless/intersil/p54/p54usb.c | 2 +-
> 3 files changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/net/wireless/intersil/p54/Kconfig b/drivers/net/wireless/intersil/p54/Kconfig
> index 003c378ed131..44b0f1a724aa 100644
> --- a/drivers/net/wireless/intersil/p54/Kconfig
> +++ b/drivers/net/wireless/intersil/p54/Kconfig
> @@ -10,7 +10,7 @@ config P54_COMMON
> also need to be enabled in order to support any devices.
>
> These devices require softmac firmware which can be found at
> - <http://wireless.wiki.kernel.org/en/users/Drivers/p54>
> + <https://wireless.docs.kernel.org/en/latest/en/users/drivers/p54.html>
>
> If you choose to build a module, it'll be called p54common.
>
> @@ -22,7 +22,7 @@ config P54_USB
> This driver is for USB isl38xx based wireless cards.
>
> These devices require softmac firmware which can be found at
> - <http://wireless.wiki.kernel.org/en/users/Drivers/p54>
> + <https://wireless.docs.kernel.org/en/latest/en/users/drivers/p54.html>
>
> If you choose to build a module, it'll be called p54usb.
>
> @@ -36,7 +36,7 @@ config P54_PCI
> supported by the fullmac driver/firmware.
>
> This driver requires softmac firmware which can be found at
> - <http://wireless.wiki.kernel.org/en/users/Drivers/p54>
> + <https://wireless.docs.kernel.org/en/latest/en/users/drivers/p54.html>
>
> If you choose to build a module, it'll be called p54pci.
>
> diff --git a/drivers/net/wireless/intersil/p54/fwio.c b/drivers/net/wireless/intersil/p54/fwio.c
> index 3baf8ab01e22..a3d9053f043c 100644
> --- a/drivers/net/wireless/intersil/p54/fwio.c
> +++ b/drivers/net/wireless/intersil/p54/fwio.c
> @@ -131,9 +131,7 @@ int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw)
>
> if (priv->fw_var < 0x500)
> wiphy_info(priv->hw->wiphy,
> - "you are using an obsolete firmware. "
> - "visit http://wireless.wiki.kernel.org/en/users/Drivers/p54 "
> - "and grab one for \"kernel >= 2.6.28\"!\n");
> + "you are using an obsolete firmware. visit https://wireless.docs.kernel.org/en/latest/en/users/drivers/p54.html and grab one for \"kernel >= 2.6.28\"!\n");
>
> if (priv->fw_var >= 0x300) {
> /* Firmware supports QoS, use it! */
> diff --git a/drivers/net/wireless/intersil/p54/p54usb.c b/drivers/net/wireless/intersil/p54/p54usb.c
> index c0d3b5329f4e..b88a3dadddc0 100644
> --- a/drivers/net/wireless/intersil/p54/p54usb.c
> +++ b/drivers/net/wireless/intersil/p54/p54usb.c
> @@ -36,7 +36,7 @@ static struct usb_driver p54u_driver;
> * Note:
> *
> * Always update our wiki's device list (located at:
> - * http://wireless.wiki.kernel.org/en/users/Drivers/p54/devices ),
> + * https://wireless.docs.kernel.org/en/latest/en/users/drivers/p54/devices.html ),
> * whenever you add a new device.
> */
>
^ permalink raw reply
* Re: Atheros AR9280 / AR7010 Initial low scaning signal range
From: John Scott @ 2026-07-04 17:25 UTC (permalink / raw)
To: cybersnow_2001, Linux Wireless
In-Reply-To: <OwQQjLm--J-9@tutamail.com>
[-- Attachment #1: Type: text/plain, Size: 1185 bytes --]
On Wed, 2026-07-01 at 04:08 +0200, cybersnow_2001@tutamail.com wrote:
> I've read in another forum that people experienced the same issue after a kernel update, maybe after 6.8. What do you think?
I think I can partially reproduce the problem. I have a Sony UWA-BR100 on Debian Trixie (kernel 6.12.94) and a wireless scan only shows very few access points, never more than -65 dBm or so. The access point for my home, being the closest one to me, actually has the *worst* signal strength value reported as -80 dBm consistently. A scan for access points does show 5GHz ones, but it chose to connect to my AP on 2.4GHz (which may or may not be legitimate; iwd normally joins the 5GHz ones when I'm using dual-band NICs). I did not observe any circumstance in which the reported signal became better, though.
With a TP-Link TL-WN822N v2 (still AR7010, but the 2.4GHz-only AR9287 instead of dual-band AR9280), everything is excellent, so indeed it seems only the AR9280 devices are affected.
Could you share that forum link? I'm not sure I'll get around to it but my next steps would be to bisect the kernel using a virtual machine and USB pass-through. This is strange indeed...
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 411 bytes --]
^ permalink raw reply
* ath11k_pci: QCNFA765 connection failure with PREV_AUTH_NOT_VALID / "Secrets were required" state machine crash on Fedora 44
From: Nilesh Kumar @ 2026-07-04 11:55 UTC (permalink / raw)
To: linux-wireless; +Cc: ath11k
[-- Attachment #1.1: Type: text/plain, Size: 1142 bytes --]
Hello,
I am experiencing a persistent Wi-Fi disconnection issue on Fedora 44 that
eventually locks up the driver state machine until a full system reboot.
The network adapter is a Qualcomm QCNFA765 using the ath11k_pci driver.
- Distro: Fedora 44
- Wireless Adapter: Qualcomm Technologies, Inc QCNFA765 [17cb:1103] (rev 01)
- Subsystem: Lenovo Device [17aa:9309]
- Driver: ath11k_pci
PROBLEM DESCRIPTION
The interface disconnects after a few sessions. Once disconnected,
NetworkManager and wpa_supplicant enter a state-machine loop where they are
unable to re-associate, repeatedly throwing "Secrets were required, but not
provided" errors, even when credentials are explicitly forced or provided
via a passwd-file inline during 'nmcli c up'.
Even after purging the connection profile, restarting
NetworkManager/wpa_supplicant, and manually bringing the link up/down, the
driver appears to remain in a glitched state where it refuses to pass the
authentication keys to the AP. Only a full system restart resolves the
condition temporarily.
RELEVANT LOG SNIPPETS
logs generated are attached with the mail.
--
Warm regards,
Nilesh Kumar
[-- Attachment #1.2: Type: text/html, Size: 1485 bytes --]
[-- Attachment #2: logs.log --]
[-- Type: text/x-log, Size: 104341 bytes --]
sudo iw dev wlp1s0 set power_save off
sudo systemctl restart NetworkManager
[sudo] password for nilesh:
[nilesh@fedora Pictures]$ nmcli -p connection show DIRECT-5W44-G3070series | grep -E 'mac-address-randomization|cloned-mac|mac-address '
802-11-wireless.cloned-mac-address: EE:AB:CD:12:91:33
802-11-wireless.mac-address-randomization:default
[nilesh@fedora Pictures]$ nmcli connection modify DIRECT-5W44-G3070series \
802-11-wireless.mac-address-randomization disabled \
802-11-wireless.cloned-mac-address EE:AB:CD:12:91:33
nmcli connection up DIRECT-5W44-G3070series
Error: failed to modify 802-11-wireless.mac-address-randomization: invalid option 'disabled', use one of [default,never,always].
^CError: nmcli terminated by signal Interrupt (2)
[nilesh@fedora Pictures]$ nmcli connection modify DIRECT-5W44-G3070series \
802-11-wireless.mac-address-randomization never \
802-11-wireless.cloned-mac-address EE:AB:CD:12:91:33
nmcli connection down DIRECT-5W44-G3070series
nmcli connection up DIRECT-5W44-G3070series
Connection 'DIRECT-5W44-G3070series' successfully deactivated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/5)
Error: Connection activation failed: Disconnected by user
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli -p connection show DIRECT-5W44-G3070series | grep -E '802-11-wireless.mac-address-randomization|cloned-mac'
nmcli -f DEVICE,STATE,CONNECTION device status
nmcli connection up DIRECT-5W44-G3070series
802-11-wireless.cloned-mac-address: EE:AB:CD:12:91:33
802-11-wireless.mac-address-randomization:default
DEVICE STATE CONNECTION
enp3s0f0 connected Wired connection 1
lo connected (externally) lo
wlp1s0 disconnected --
p2p-dev-wlp1s0 disconnected --
Error: Connection activation failed: Disconnected by user
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli radio wifi off
nmcli radio wifi on
sudo iw dev wlp1s0 set power_save off
nmcli connection up DIRECT-5W44-G3070series
[sudo] password for nilesh:
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli -f DEVICE,STATE,CONNECTION device status
journalctl -b | grep -iE 'wlp1s0|wpa|deauth|PREV_AUTH_NOT_VALID|DEAUTH_LEAVING' | tail -n 80
DEVICE STATE CONNECTION
enp3s0f0 connected Wired connection 1
wlp1s0 connecting (configuring) DIRECT-5W44-G3070series
lo connected (externally) lo
p2p-dev-wlp1s0 disconnected --
Jul 03 17:14:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=7
Jul 03 17:14:57 fedora wpa_supplicant[1397]: wlp1s0: Added BSSID 6e:f2:d8:06:d8:44 into ignore list, ignoring for 10 seconds
Jul 03 17:14:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.7850] device (wlp1s0): supplicant interface state: associated -> disconnected
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.7851] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.8838] device (wlp1s0): supplicant interface state: disconnected -> scanning
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.8838] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="DIRECT-5W44-G3070series"
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8031] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8032] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 03 17:15:12 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=ee:ab:cd:12:91:33)
Jul 03 17:15:12 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:12 fedora kernel: wlp1s0: authenticated
Jul 03 17:15:12 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8053] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8053] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
Jul 03 17:15:12 fedora kernel: wlp1s0: RX AssocResp from 6e:f2:d8:06:d8:44 (capab=0x431 status=0 aid=1)
Jul 03 17:15:12 fedora kernel: wlp1s0: associated
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: Associated with 6e:f2:d8:06:d8:44
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8311] device (wlp1s0): supplicant interface state: associating -> associated
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8311] device (p2p-dev-wlp1s0): supplicant management interface state: associating -> associated
Jul 03 17:15:15 fedora kernel: wlp1s0: deauthenticated from 6e:f2:d8:06:d8:44 (Reason: 2=PREV_AUTH_NOT_VALID)
Jul 03 17:15:15 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=2
Jul 03 17:15:15 fedora wpa_supplicant[1397]: wlp1s0: Added BSSID 6e:f2:d8:06:d8:44 into ignore list, ignoring for 10 seconds
Jul 03 17:15:15 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=2 duration=20 reason=CONN_FAILED
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0006] device (wlp1s0): supplicant interface state: associated -> disconnected
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0006] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0993] device (wlp1s0): supplicant interface state: disconnected -> scanning
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0993] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 03 17:15:16 fedora NetworkManager[7496]: <warn> [1783079116.8415] device (wlp1s0): Activation: (wifi) association took too long
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.8416] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.8820] device (wlp1s0): set-hw-addr: set MAC address to D2:4F:CA:DE:88:EE (scanning)
Jul 03 17:15:16 fedora NetworkManager[7496]: <warn> [1783079116.9032] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9034] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9034] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9036] device (wlp1s0): state change: failed -> disconnected (reason 'none', managed-type: 'full')
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9168] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9168] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 03 17:15:16 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:16 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9192] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9194] device (wlp1s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9559] device (wlp1s0): set-hw-addr: set-cloned MAC address to EE:AB:CD:12:91:33 (EE:AB:CD:12:91:33)
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9786] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9788] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9788] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9790] sup-iface[8a5a8f83161a49b8,3,wlp1s0]: wps: type pbc start...
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9793] device (wlp1s0): supplicant interface state: inactive -> interface_disabled
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9793] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> interface_disabled
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9799] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9801] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: WPS-CANCEL
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9948] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9948] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0318] device (wlp1s0): supplicant interface state: inactive -> authenticating
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0319] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> authenticating
Jul 03 17:15:41 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=ee:ab:cd:12:91:33)
Jul 03 17:15:41 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:41 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:41 fedora kernel: wlp1s0: authenticated
Jul 03 17:15:41 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0345] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0345] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
Jul 03 17:15:41 fedora kernel: wlp1s0: RX AssocResp from 6e:f2:d8:06:d8:44 (capab=0x431 status=0 aid=1)
Jul 03 17:15:41 fedora kernel: wlp1s0: associated
Jul 03 17:15:41 fedora wpa_supplicant[1397]: wlp1s0: Associated with 6e:f2:d8:06:d8:44
Jul 03 17:15:41 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0554] device (wlp1s0): supplicant interface state: associating -> associated
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0554] device (p2p-dev-wlp1s0): supplicant management interface state: associating -> associated
[nilesh@fedora Pictures]$ ^C
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address ""
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization 1
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.wps-methods ""
nmcli connection up "DIRECT-5W44-G3070series"
Error: invalid property 'wps-methods': 'wps-methods' not among [ssid, mode, band, channel, bssid, mac-address, cloned-mac-address, generate-mac-address-mask, mac-address-blacklist, mac-address-denylist, mac-address-randomization, mtu, seen-bssids, hidden, powersave, wake-on-wlan, ap-isolation, channel-width].
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli dev disconnect wlp1s0
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Disconnected by user
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection show
NAME UUID TYPE DEVICE
Wired connection 1 3099888d-d5b0-3b45-8fcc-005b9b63ac89 ethernet enp3s0f0
lo d77a4972-093f-4627-a134-d9839d7e817f loopback lo
DIRECT-5W44-G3070series b1b803b2-2091-4a78-a432-34d0bc598db0 wifi --
FRTSGuest 8d3a49e5-f099-4e91-ad33-16be5e980c2a wifi --
OnePlus Nord CE3 5G 7e35a48b-89e0-4b1b-a0a1-7bc3ddbb1990 wifi --
Trojan Virus 7ff473f0-b7fa-4d18-871e-b978ca45a059 wifi --
[nilesh@fedora Pictures]$ nmcli -p show device
Error: argument 'show' not understood. Try passing --help instead.
[nilesh@fedora Pictures]$ nmcli -p device
=====================
Status of devices
=====================
DEVICE TYPE STATE CONNECTION
-------------------------------------------------------------------------------------------
enp3s0f0 ethernet connected Wired connection 1
lo loopback connected (externally) lo
wlp1s0 wifi disconnected --
p2p-dev-wlp1s0 wifi-p2p disconnected --
[nilesh@fedora Pictures]$ nmcli dev disconnect wlp1s0
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli -f wifi-sec.key-mgmt,wifi-sec.psk,wifi-sec.sae-password,802-11-wireless.mac-address-randomization connection show "DIRECT-5W44-G3070series"
Error: invalid field 'wifi-sec.key-mgmt'; allowed fields: 6lowpan,802-11-olpc-mesh,802-11-wireless,802-11-wireless-security,802-1x,802-3-ethernet,adsl,bluetooth,bond,bond-port,bridge,bridge-port,cdma,connection,dcb,dummy,ethtool,generic,gsm,hostname,hsr,infiniband,ip-tunnel,ipv4,ipv6,ipvlan,link,loopback,macsec,macvlan,match,ovs-bridge,ovs-dpdk,ovs-external-ids,ovs-interface,ovs-other-config,ovs-patch,ovs-port,ppp,pppoe,prefix-delegation,proxy,serial,sriov,tc,team,team-port,tun,user,veth,vlan,vpn,vrf,vxlan,wifi-p2p,wimax,wireguard,wpan and GENERAL,IP4,DHCP4,IP6,DHCP6,VPN, or profile,active.
[nilesh@fedora Pictures]$ sudo lspci -nnk | grep -A3 -i network
[sudo] password for nilesh:
pcilib: Error reading /sys/bus/pci/devices/0000:00:08.3/label: Operation not permitted
01:00.0 Network controller [0280]: Qualcomm Technologies, Inc QCNFA765 Wireless Network Adapter [17cb:1103] (rev 01)
Subsystem: Lenovo Device [17aa:9309]
Kernel driver in use: ath11k_pci
Kernel modules: ath11k_pci
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli -p connection show "DIRECT-5W44-G3070series"
===============================================================================
Connection profile details (DIRECT-5W44-G3070series)
===============================================================================
connection.id: DIRECT-5W44-G3070series
connection.uuid: b1b803b2-2091-4a78-a432-34d0bc598db0
connection.stable-id: --
connection.type: 802-11-wireless
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.multi-connect: 0 (default)
connection.auth-retries: -1
connection.timestamp: 1783078682
connection.permissions: --
connection.zone: --
connection.controller: --
connection.master: --
connection.slave-type: --
connection.port-type: --
connection.autoconnect-slaves: -1 (default)
connection.autoconnect-ports: -1 (default)
connection.down-on-poweroff: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.ip-ping-timeout: 0
connection.ip-ping-addresses: --
connection.ip-ping-addresses-require-all:-1 (default)
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
connection.llmnr: -1 (default)
connection.dns-over-tls: -1 (default)
connection.dnssec: -1 (default)
connection.mptcp-flags: 0x0 (default)
connection.wait-device-timeout: -1
connection.wait-activation-delay: -1
-------------------------------------------------------------------------------
802-11-wireless.ssid: DIRECT-5W44-G3070series
802-11-wireless.mode: infrastructure
802-11-wireless.band: --
802-11-wireless.channel: 0
802-11-wireless.bssid: --
802-11-wireless.mac-address: --
802-11-wireless.cloned-mac-address: permanent
802-11-wireless.generate-mac-address-mask:--
802-11-wireless.mac-address-denylist: --
802-11-wireless.mac-address-randomization:never
802-11-wireless.mtu: auto
802-11-wireless.seen-bssids: 6E:F2:D8:06:D8:44
802-11-wireless.hidden: no
802-11-wireless.powersave: 0 (default)
802-11-wireless.wake-on-wlan: 0x1 (default)
802-11-wireless.ap-isolation: -1 (default)
802-11-wireless.channel-width: 0 (auto)
-------------------------------------------------------------------------------
802-11-wireless-security.key-mgmt: wpa-psk
802-11-wireless-security.wep-tx-keyidx: 0
802-11-wireless-security.auth-alg: --
802-11-wireless-security.proto: --
802-11-wireless-security.pairwise: --
802-11-wireless-security.group: --
802-11-wireless-security.pmf: 0 (default)
802-11-wireless-security.leap-username: --
802-11-wireless-security.wep-key0: <hidden>
802-11-wireless-security.wep-key1: <hidden>
802-11-wireless-security.wep-key2: <hidden>
802-11-wireless-security.wep-key3: <hidden>
802-11-wireless-security.wep-key-flags: 0 (none)
802-11-wireless-security.wep-key-type: unknown
802-11-wireless-security.psk: <hidden>
802-11-wireless-security.psk-flags: 0 (none)
802-11-wireless-security.leap-password: <hidden>
802-11-wireless-security.leap-password-flags:0 (none)
802-11-wireless-security.wps-method: 0x0 (default)
802-11-wireless-security.fils: 0 (default)
-------------------------------------------------------------------------------
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: --
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.routing-rules: --
ipv4.replace-local-rule: -1 (default)
ipv4.dhcp-send-release: -1 (default)
ipv4.routed-dns: -1 (default)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-iaid: --
ipv4.dhcp-dscp: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname-deprecated: yes
ipv4.dhcp-send-hostname: -1 (default)
ipv4.forwarding: -1 (default)
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.required-timeout: -1 (default)
ipv4.dad-timeout: -1 (default)
ipv4.dhcp-vendor-class-identifier: --
ipv4.dhcp-ipv6-only-preferred: -1 (default)
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
ipv4.shared-dhcp-range: --
ipv4.shared-dhcp-lease-time: 0 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: --
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.routing-rules: --
ipv6.replace-local-rule: -1 (default)
ipv6.dhcp-send-release: -1 (default)
ipv6.routed-dns: -1 (default)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.required-timeout: -1 (default)
ipv6.ip6-privacy: -1 (default)
ipv6.temp-valid-lifetime: 0 (default)
ipv6.temp-preferred-lifetime: 0 (default)
ipv6.addr-gen-mode: stable-privacy
ipv6.ra-timeout: 0 (default)
ipv6.mtu: auto
ipv6.dhcp-pd-hint: --
ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-timeout: 0 (default)
ipv6.dhcp-send-hostname-deprecated: yes
ipv6.dhcp-send-hostname: -1 (default)
ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
-------------------------------------------------------------------------------
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" mac-address-randomization 1
Error: invalid <setting>.<property> 'mac-address-randomization'.
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization never
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address permanent
nmcli dev disconnect wlp1s0 || true
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ journalctl -b --no-pager | grep -A2 -B2 -i "DIRECT-5W44-G3070series" | tail -n 120
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8738] agent-manager: agent[908adddfb31d48bd,:1.218/nmcli-connect/1000]: agent registered
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8739] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8743] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8747] device (wlp1s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8750] manager: NetworkManager state is now CONNECTING
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9071] device (wlp1s0): set-hw-addr: set-cloned MAC address to 10:E1:8E:84:3B:DA (permanent)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9385] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9388] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9389] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9390] sup-iface[8a5a8f83161a49b8,3,wlp1s0]: wps: type pbc start...
--
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9399] manager: NetworkManager state is now CONNECTED_SITE
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9404] device (wlp1s0): disconnecting for new activation request.
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9404] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9606 uid=1000 result="success"
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9405] device (wlp1s0): supplicant interface state: inactive -> interface_disabled
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9405] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> interface_disabled
--
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0150] device (wlp1s0): set-hw-addr: set MAC address to 7A:11:68:32:03:46 (scanning)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0384] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0388] device (wlp1s0): supplicant interface state: scanning -> inactive
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0389] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> inactive
--
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0710] device (wlp1s0): set-hw-addr: set-cloned MAC address to 10:E1:8E:84:3B:DA (permanent)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1017] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1019] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1019] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1020] sup-iface[8a5a8f83161a49b8,3,wlp1s0]: wps: type pbc start...
--
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1040] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1043] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'scan_ssid' value '1'
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:39:32 fedora kded6[2323]: Failed to notify "Created too many similar notifications in quick succession"
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:32 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:39:32 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.2038] device (wlp1s0): supplicant interface state: inactive -> authenticating
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.2039] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> authenticating
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:32 fedora kernel: wlp1s0: authenticated
Jul 03 17:39:32 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
--
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 03 17:39:42 fedora NetworkManager[7496]: <info> [1783080582.3136] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 03 17:39:42 fedora NetworkManager[7496]: <info> [1783080582.3984] device (wlp1s0): supplicant interface state: disconnected -> scanning
Jul 03 17:39:42 fedora NetworkManager[7496]: <info> [1783080582.3984] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="DIRECT-5W44-G3070series"
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 3, ignoring for 60 seconds
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2820] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2821] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 03 17:39:57 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:39:57 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2850] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2851] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8423] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8425] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'scan_ssid' value '1'
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9058] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: WPS-CANCEL
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:39:57 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9284] device (wlp1s0): supplicant interface state: disconnected -> authenticating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9284] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> authenticating
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9310] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9310] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 03 17:40:08 fedora NetworkManager[7496]: <info> [1783080608.0284] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8422] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8424] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'scan_ssid' value '1'
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'psk' value '<hidden>'
Jul 03 17:40:22 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:40:22 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9819] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9819] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 03 17:40:22 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:40:22 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:40:22 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9845] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9846] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 03 17:40:33 fedora NetworkManager[7496]: <info> [1783080633.0880] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.8429] manager: NetworkManager state is now CONNECTED_SITE
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.8868] device (wlp1s0): set-hw-addr: set MAC address to FE:20:7B:29:CC:EB (scanning)
Jul 03 17:40:47 fedora NetworkManager[7496]: <warn> [1783080647.9116] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.9119] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.9120] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
[nilesh@fedora Pictures]$ sudo sh -c 'cat > /etc/NetworkManager/conf.d/99-wifi-powersave-off.conf <<EOF
[connection]
wifi.powersave = 2
EOF'
[sudo] password for nilesh:
[nilesh@fedora Pictures]$ sudo systemctl restart NetworkManager
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: No suitable device found for this connection (device lo not available because profile is not compatible with device (connection type is not "loopback")).
[nilesh@fedora Pictures]$ sudo systemctl restart NetworkManager
[nilesh@fedora Pictures]$ nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization never
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address permanent
nmcli dev disconnect wlp1s0 || true
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection down "DIRECT-5W44-G3070series" 2>/dev/null || true
sudo rm -f /var/lib/NetworkManager/*-secrets*
nmcli connection up "DIRECT-5W44-G3070series"
[sudo] password for nilesh:
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli -s connection show "DIRECT-5W44-G3070series" | egrep -i 'connection.id|wifi.ssid|wifi-sec.key-mgmt|wifi-sec.psk|wifi-sec.psk-flags|wifi-sec.sae-password|wifi-sec.sae-password-flags|802-11-wireless'
egrep: warning: egrep is obsolescent; using grep -E
connection.id: DIRECT-5W44-G3070series
connection.type: 802-11-wireless
802-11-wireless.ssid: DIRECT-5W44-G3070series
802-11-wireless.mode: infrastructure
802-11-wireless.band: --
802-11-wireless.channel: 0
802-11-wireless.bssid: --
802-11-wireless.mac-address: --
802-11-wireless.cloned-mac-address: permanent
802-11-wireless.generate-mac-address-mask:--
802-11-wireless.mac-address-denylist: --
802-11-wireless.mac-address-randomization:never
802-11-wireless.mtu: auto
802-11-wireless.seen-bssids: 6E:F2:D8:06:D8:44
802-11-wireless.hidden: no
802-11-wireless.powersave: 0 (default)
802-11-wireless.wake-on-wlan: 0x1 (default)
802-11-wireless.ap-isolation: -1 (default)
802-11-wireless.channel-width: 0 (auto)
802-11-wireless-security.key-mgmt: wpa-psk
802-11-wireless-security.wep-tx-keyidx: 0
802-11-wireless-security.auth-alg: --
802-11-wireless-security.proto: --
802-11-wireless-security.pairwise: --
802-11-wireless-security.group: --
802-11-wireless-security.pmf: 0 (default)
802-11-wireless-security.leap-username: --
802-11-wireless-security.wep-key0: --
802-11-wireless-security.wep-key1: --
802-11-wireless-security.wep-key2: --
802-11-wireless-security.wep-key3: --
802-11-wireless-security.wep-key-flags: 0 (none)
802-11-wireless-security.wep-key-type: unknown
802-11-wireless-security.psk: wqkKs2ZjBm
802-11-wireless-security.psk-flags: 0 (none)
802-11-wireless-security.leap-password: --
802-11-wireless-security.leap-password-flags:0 (none)
802-11-wireless-security.wps-method: 0x0 (default)
802-11-wireless-security.fils: 0 (default)
[nilesh@fedora Pictures]$ nmcli -s connection show "DIRECT-5W44-G3070series" | egrep -i 'ipv4.method|ipv6.method|autoconnect|permissions|autoconnect-priority|master|slave'
egrep: warning: egrep is obsolescent; using grep -E
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.permissions: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.autoconnect-ports: -1 (default)
ipv4.method: auto
ipv6.method: auto
[nilesh@fedora Pictures]$ nmcli -s device show wlp1s0 | egrep -i 'GENERAL.STATE|GENERAL.CONNECTION|GENERAL.DRIVER|GENERAL.FIRMWARE|IP4.ADDRESS|IP6.ADDRESS|UDI'
egrep: warning: egrep is obsolescent; using grep -E
GENERAL.STATE: 30 (disconnected)
GENERAL.CONNECTION: --
[nilesh@fedora Pictures]$ sudo journalctl -b -u NetworkManager --no-pager | egrep -i 'DIRECT-5W44-G3070series|secrets are required|Need secrets|No new secrets|agent|secret' | tail -n 200
egrep: warning: egrep is obsolescent; using grep -E
Jul 03 17:11:17 fedora NetworkManager[7496]: <info> [1783078877.8444] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:11:17 fedora NetworkManager[7496]: <info> [1783078877.8444] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:11:42 fedora NetworkManager[7496]: <warn> [1783078902.8419] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:11:42 fedora NetworkManager[7496]: <info> [1783078902.8428] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:11:42 fedora NetworkManager[7496]: <info> [1783078902.8428] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:12:07 fedora NetworkManager[7496]: <info> [1783078927.8426] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:12:07 fedora NetworkManager[7496]: <warn> [1783078927.8990] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8227] agent-manager: agent[23827da94e27fb35,:1.184/nmcli-connect/1000]: agent registered
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8228] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8235] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8856] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8868] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8051 uid=1000 result="success"
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.9848] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:12:38 fedora NetworkManager[7496]: <info> [1783078958.0466] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:12:38 fedora NetworkManager[7496]: <info> [1783078958.0481] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:12:38 fedora NetworkManager[7496]: <info> [1783078958.0481] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:13:02 fedora NetworkManager[7496]: <warn> [1783078982.8422] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:13:02 fedora NetworkManager[7496]: <info> [1783078982.8435] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:13:02 fedora NetworkManager[7496]: <info> [1783078982.8436] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:13:27 fedora NetworkManager[7496]: <warn> [1783079007.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:13:27 fedora NetworkManager[7496]: <info> [1783079007.8427] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:13:27 fedora NetworkManager[7496]: <info> [1783079007.8427] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.4917] agent-manager: agent[31ac0b81e4605674,:1.193/nmcli-connect/1000]: agent registered
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5048] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5049] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8244 uid=1000 result="success"
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5695] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5710] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5710] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:14:26 fedora NetworkManager[7496]: <warn> [1783079066.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:14:26 fedora NetworkManager[7496]: <info> [1783079066.8433] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:14:26 fedora NetworkManager[7496]: <info> [1783079066.8434] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:14:51 fedora NetworkManager[7496]: <warn> [1783079091.8429] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:14:51 fedora NetworkManager[7496]: <info> [1783079091.8440] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:14:51 fedora NetworkManager[7496]: <info> [1783079091.8441] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.8416] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:15:16 fedora NetworkManager[7496]: <warn> [1783079116.9032] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9192] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9193] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=2426 uid=1000 result="success"
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9788] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:16:05 fedora NetworkManager[7496]: <warn> [1783079165.8430] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:16:05 fedora NetworkManager[7496]: <info> [1783079165.8443] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:16:05 fedora NetworkManager[7496]: <info> [1783079165.8443] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:16:30 fedora NetworkManager[7496]: <warn> [1783079190.8419] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:16:30 fedora NetworkManager[7496]: <info> [1783079190.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:16:30 fedora NetworkManager[7496]: <info> [1783079190.8431] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:16:55 fedora NetworkManager[7496]: <info> [1783079215.8426] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:16:55 fedora NetworkManager[7496]: <warn> [1783079215.9050] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.3916] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" args="802-11-wireless.cloned-mac-address" pid=8731 uid=1000 result="success"
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4178] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" args="802-11-wireless.cloned-mac-address,802-11-wireless.mac-address-randomization" pid=8739 uid=1000 result="success"
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4587] agent-manager: agent[947eb833bf6e769c,:1.197/nmcli-connect/1000]: agent registered
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4589] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4593] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.5074] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.5087] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8747 uid=1000 result="success"
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6135] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6733] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6746] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6746] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:26:41 fedora NetworkManager[7496]: <warn> [1783079801.8420] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:26:41 fedora NetworkManager[7496]: <info> [1783079801.8437] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:26:41 fedora NetworkManager[7496]: <info> [1783079801.8437] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:27:06 fedora NetworkManager[7496]: <warn> [1783079826.8429] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:27:06 fedora NetworkManager[7496]: <info> [1783079826.8446] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:27:06 fedora NetworkManager[7496]: <info> [1783079826.8447] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:27:31 fedora NetworkManager[7496]: <info> [1783079851.8421] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:27:31 fedora NetworkManager[7496]: <warn> [1783079851.9306] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.6977] agent-manager: agent[bc6aa1b571482b3e,:1.200/nmcli-connect/1000]: agent registered
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7118] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7119] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8886 uid=1000 result="success"
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7787] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7805] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7806] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:28:06 fedora NetworkManager[7496]: <warn> [1783079886.8418] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:28:06 fedora NetworkManager[7496]: <info> [1783079886.8529] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:28:06 fedora NetworkManager[7496]: <info> [1783079886.8529] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:28:31 fedora NetworkManager[7496]: <warn> [1783079911.8418] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:28:31 fedora NetworkManager[7496]: <info> [1783079911.8428] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:28:31 fedora NetworkManager[7496]: <info> [1783079911.8429] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:28:56 fedora NetworkManager[7496]: <info> [1783079936.8425] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:28:56 fedora NetworkManager[7496]: <warn> [1783079936.9350] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.1367] agent-manager: agent[b466341f5df870f6,:1.202/nmcli-connect/1000]: agent registered
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.1464] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.1464] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8995 uid=1000 result="success"
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.2188] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.2203] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.2203] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:29:34 fedora NetworkManager[7496]: <warn> [1783079974.8420] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:29:34 fedora NetworkManager[7496]: <info> [1783079974.8439] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:29:34 fedora NetworkManager[7496]: <info> [1783079974.8440] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4147] agent-manager: agent[b466341f5df870f6,:1.207/nmcli-connect/1000]: agent registered
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4269] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4269] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9207 uid=1000 result="success"
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4881] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4896] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4896] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:33:03 fedora NetworkManager[7496]: <warn> [1783080183.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:33:03 fedora NetworkManager[7496]: <info> [1783080183.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:33:03 fedora NetworkManager[7496]: <info> [1783080183.8432] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:33:28 fedora NetworkManager[7496]: <warn> [1783080208.8435] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:33:28 fedora NetworkManager[7496]: <info> [1783080208.8450] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:33:28 fedora NetworkManager[7496]: <info> [1783080208.8450] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:33:53 fedora NetworkManager[7496]: <info> [1783080233.8418] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:33:53 fedora NetworkManager[7496]: <warn> [1783080233.9091] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.7888] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9585 uid=1000 result="success"
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8183] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9593 uid=1000 result="success"
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8738] agent-manager: agent[908adddfb31d48bd,:1.218/nmcli-connect/1000]: agent registered
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8739] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8743] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9388] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9404] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9606 uid=1000 result="success"
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0384] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1019] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:39:57 fedora NetworkManager[7496]: <warn> [1783080597.8418] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:40:22 fedora NetworkManager[7496]: <warn> [1783080622.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.8426] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:40:47 fedora NetworkManager[7496]: <warn> [1783080647.9116] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:39:28 fedora NetworkManager[10681]: <info> [1783138168.3576] agent-manager: agent[475e0e003083d5cb,:1.236/nmcli-connect/1000]: agent registered
Jul 04 09:39:28 fedora NetworkManager[10681]: <info> [1783138168.3586] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=10701 uid=1000 result="fail" reason="No suitable device found for this connection (device lo not available because profile is not compatible with device (connection type is not "loopback"))."
Jul 04 09:39:28 fedora NetworkManager[10681]: <info> [1783138168.3812] agent-manager: agent[da820408da73dc45,:1.62/org.kde.plasma.networkmanagement/1000]: agent registered
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.0391] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.0395] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.1096] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.1116] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.1117] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:40:22 fedora NetworkManager[10910]: <info> [1783138222.3289] agent-manager: agent[beb58c52baa4ae8f,:1.62/org.kde.plasma.networkmanagement/1000]: agent registered
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1124] agent-manager: agent[a95421d56e8f20d2,:1.242/nmcli-connect/1000]: agent registered
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1255] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1256] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=10979 uid=1000 result="success"
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1983] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1996] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1996] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:40:51 fedora NetworkManager[10910]: <warn> [1783138251.0195] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:40:51 fedora NetworkManager[10910]: <info> [1783138251.0209] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:40:51 fedora NetworkManager[10910]: <info> [1783138251.0210] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:41:16 fedora NetworkManager[10910]: <warn> [1783138276.0197] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:41:16 fedora NetworkManager[10910]: <info> [1783138276.0208] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:41:16 fedora NetworkManager[10910]: <info> [1783138276.0208] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:41:41 fedora NetworkManager[10910]: <info> [1783138301.0195] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:41:41 fedora NetworkManager[10910]: <warn> [1783138301.1383] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.6723] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11328 uid=1000 result="success"
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7019] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11336 uid=1000 result="success"
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7545] agent-manager: agent[cd8a7bd59f4fb217,:1.246/nmcli-connect/1000]: agent registered
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7685] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7686] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11349 uid=1000 result="success"
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.8490] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.8509] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.8510] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:47:00 fedora NetworkManager[10910]: <warn> [1783138620.0185] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:47:00 fedora NetworkManager[10910]: <info> [1783138620.0195] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:47:00 fedora NetworkManager[10910]: <info> [1783138620.0196] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:47:25 fedora NetworkManager[10910]: <warn> [1783138645.0202] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:47:25 fedora NetworkManager[10910]: <info> [1783138645.0219] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:47:25 fedora NetworkManager[10910]: <info> [1783138645.0219] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:47:50 fedora NetworkManager[10910]: <info> [1783138670.0188] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:47:50 fedora NetworkManager[10910]: <warn> [1783138670.0791] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.7855] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11665 uid=1000 result="success"
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.7860] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.7873] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8556] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8584] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8616] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8904] agent-manager: agent[ad64c03661bddc5e,:1.248/nmcli-connect/1000]: agent registered
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.9044] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11673 uid=1000 result="success"
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0221] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0965] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0975] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0976] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:52:00 fedora NetworkManager[10910]: <warn> [1783138920.0183] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:52:00 fedora NetworkManager[10910]: <info> [1783138920.0206] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:52:00 fedora NetworkManager[10910]: <info> [1783138920.0834] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:52:25 fedora NetworkManager[10910]: <warn> [1783138945.0202] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:52:25 fedora NetworkManager[10910]: <info> [1783138945.0212] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:52:25 fedora NetworkManager[10910]: <info> [1783138945.0212] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:52:50 fedora NetworkManager[10910]: <info> [1783138970.0185] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:52:50 fedora NetworkManager[10910]: <warn> [1783138970.0792] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7344] agent-manager: agent[c47632a0b6faa46a,:1.255/nmcli-connect/1000]: agent registered
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7346] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7350] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7933] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7946] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11845 uid=1000 result="success"
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.8981] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.9641] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.9655] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.9656] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:53:46 fedora NetworkManager[10910]: <warn> [1783139026.0186] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:53:46 fedora NetworkManager[10910]: <info> [1783139026.0200] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:53:46 fedora NetworkManager[10910]: <info> [1783139026.0200] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:54:11 fedora NetworkManager[10910]: <warn> [1783139051.0196] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:54:11 fedora NetworkManager[10910]: <info> [1783139051.0210] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:54:11 fedora NetworkManager[10910]: <info> [1783139051.0210] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0184] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:54:36 fedora NetworkManager[10910]: <warn> [1783139076.0875] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.wps-methods ""
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.wps-method ""
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.fils 0
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.pmf 0
nmcli connection down "DIRECT-5W44-G3070series" 2>/dev/null || true
nmcli dev disconnect wlp1s0 2>/dev/null || true
nmcli connection up "DIRECT-5W44-G3070series"
Error: invalid property 'wps-methods': 'wps-methods' not among [key-mgmt, wep-tx-keyidx, auth-alg, proto, pairwise, group, pmf, leap-username, wep-key0, wep-key1, wep-key2, wep-key3, wep-key-flags, wep-key-type, psk, psk-flags, leap-password, leap-password-flags, wps-method, fils].
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ lsmod | grep -E 'ath|iwm|brcm|mt76|i915|b43|rtw|iwlegacy'
ath11k_pci 32768 0
ath11k 671744 1 ath11k_pci
qmi_helpers 36864 1 ath11k
mac80211 1974272 1 ath11k
cfg80211 1572864 2 ath11k,mac80211
mhi 159744 2 ath11k_pci,qrtr_mhi
[nilesh@fedora Pictures]$ nmcli -s device show wlp1s0 | egrep -i 'GENERAL.STATE|GENERAL.CONNECTION|GENERAL.DRIVER|GENERAL.FIRMWARE|IP4.ADDRESS|IP6.ADDRESS|UDI'
egrep: warning: egrep is obsolescent; using grep -E
GENERAL.STATE: 30 (disconnected)
GENERAL.CONNECTION: --
[nilesh@fedora Pictures]$ lspci -nnk | grep -iA3 network
pcilib: Error reading /sys/bus/pci/devices/0000:00:08.3/label: Operation not permitted
01:00.0 Network controller [0280]: Qualcomm Technologies, Inc QCNFA765 Wireless Network Adapter [17cb:1103] (rev 01)
Subsystem: Lenovo Device [17aa:9309]
Kernel driver in use: ath11k_pci
Kernel modules: ath11k_pci
[nilesh@fedora Pictures]$ modinfo -F version ath11k_pci
[nilesh@fedora Pictures]$ modinfo -F version ath11k
[nilesh@fedora Pictures]$ sudo lspci -nnk | grep -iA3 network
[sudo] password for nilesh:
pcilib: Error reading /sys/bus/pci/devices/0000:00:08.3/label: Operation not permitted
01:00.0 Network controller [0280]: Qualcomm Technologies, Inc QCNFA765 Wireless Network Adapter [17cb:1103] (rev 01)
Subsystem: Lenovo Device [17aa:9309]
Kernel driver in use: ath11k_pci
Kernel modules: ath11k_pci
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ journalctl -b --no-pager | grep -A2 -B2 -i "DIRECT-5W44-G3070series" | tail -n 120
--
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 04 09:54:21 fedora NetworkManager[10910]: <info> [1783139061.5737] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0187] manager: NetworkManager state is now CONNECTED_SITE
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0606] device (wlp1s0): set-hw-addr: set MAC address to 52:D2:8A:91:5A:1E (scanning)
Jul 04 09:54:36 fedora NetworkManager[10910]: <warn> [1783139076.0875] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0877] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0877] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
--
Jul 04 09:59:42 fedora NetworkManager[10910]: <info> [1783139382.6091] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 04 09:59:46 fedora kdeconnectd[2713]: Cannot find Bluez 5 adapter for device search true
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.4760] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12294 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.5049] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12302 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.5295] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12310 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.5892] agent-manager: agent[0741764d996b8a5d,:1.268/nmcli-connect/1000]: agent registered
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6015] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6016] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12328 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6017] device (wlp1s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6019] manager: NetworkManager state is now CONNECTING
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6538] device (wlp1s0): set-hw-addr: set-cloned MAC address to 10:E1:8E:84:3B:DA (permanent)
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6810] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6812] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6813] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6814] sup-iface[f068a573b8e96005,6,wlp1s0]: wps: type pbc start...
--
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6825] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6827] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6828] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6829] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6829] Config: added 'scan_ssid' value '1'
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6829] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6939] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 04 09:59:56 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 09:59:56 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 09:59:56 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 09:59:56 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.7381] device (wlp1s0): supplicant interface state: inactive -> authenticating
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.7382] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> authenticating
Jul 04 09:59:56 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 09:59:56 fedora kernel: wlp1s0: authenticated
Jul 04 09:59:56 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
--
Jul 04 10:00:02 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=7
Jul 04 10:00:02 fedora wpa_supplicant[1397]: wlp1s0: Added BSSID 6e:f2:d8:06:d8:44 into ignore list, ignoring for 10 seconds
Jul 04 10:00:02 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 10:00:02 fedora NetworkManager[10910]: <info> [1783139402.5154] device (wlp1s0): supplicant interface state: associated -> disconnected
Jul 04 10:00:02 fedora NetworkManager[10910]: <info> [1783139402.5155] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
--
Jul 04 10:00:02 fedora NetworkManager[10910]: <info> [1783139402.5978] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 04 10:00:16 fedora kdeconnectd[2713]: Cannot find Bluez 5 adapter for device search true
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="DIRECT-5W44-G3070series"
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:17 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 10:00:17 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6121] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6122] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6153] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6153] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0203] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0206] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0207] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0657] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 10:00:22 fedora wpa_supplicant[1397]: nl80211: send_event_marker failed: Source based routing not supported
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0658] Config: added 'scan_ssid' value '1'
--
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0860] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 04 10:00:22 fedora wpa_supplicant[1397]: wlp1s0: WPS-CANCEL
Jul 04 10:00:22 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:22 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 10:00:22 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.1311] device (wlp1s0): supplicant interface state: disconnected -> authenticating
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.1312] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> authenticating
Jul 04 10:00:22 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:22 fedora kernel: wlp1s0: authenticated
Jul 04 10:00:22 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
--
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 04 10:00:32 fedora NetworkManager[10910]: <info> [1783139432.2536] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0201] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0202] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] Config: added 'scan_ssid' value '1'
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0205] Config: added 'psk' value '<hidden>'
Jul 04 10:00:47 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 10:00:47 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:47 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 10:00:47 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3380] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3380] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 04 10:00:47 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3398] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3399] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 04 10:00:57 fedora NetworkManager[10910]: <info> [1783139457.4469] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 04 10:01:12 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 10:01:12 fedora NetworkManager[10910]: <info> [1783139472.0590] device (wlp1s0): set-hw-addr: set MAC address to A6:AE:E6:6A:D9:8E (scanning)
Jul 04 10:01:12 fedora NetworkManager[10910]: <warn> [1783139472.0832] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 10:01:12 fedora NetworkManager[10910]: <info> [1783139472.0836] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 04 10:01:12 fedora NetworkManager[10910]: <info> [1783139472.0836] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address "10:E1:8E:84:3B:DA"
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization never
[nilesh@fedora Pictures]$ sudo sh -c 'cat > /etc/NetworkManager/conf.d/10-mac-scannning-off.conf <<EOF
[device]
wifi.scan-rand-mac-address=no
EOF'
[sudo] password for nilesh:
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.background-scan no
Error: invalid property 'background-scan': 'background-scan' not among [ssid, mode, band, channel, bssid, mac-address, cloned-mac-address, generate-mac-address-mask, mac-address-blacklist, mac-address-denylist, mac-address-randomization, mtu, seen-bssids, hidden, powersave, wake-on-wlan, ap-isolation, channel-width].
[nilesh@fedora Pictures]$ # Force the profile to use your exact physical MAC address
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address "10:E1:8E:84:3B:DA"
# Tell NetworkManager to explicitly never randomize the MAC for this specific connection
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization 1
[nilesh@fedora Pictures]$ sudo sh -c 'cat > /etc/NetworkManager/conf.d/99-disable-bgscan.conf <<EOF
[device]
wifi.scan-rand-mac-address=no
wifi.bgscan=no
EOF'
[nilesh@fedora Pictures]$ # Reload the configuration files we just created
sudo systemctl restart NetworkManager
# Cycle the hardware interface down and up to flush the ath11k driver state machine
sudo ip link set wlp1s0 down
sleep 2
sudo ip link set wlp1s0 up
# Bring the connection back up cleanly
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ # 1. Provide the password explicitly again
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# 2. Tell NM to save this password to disk (system-wide) rather than asking a user keyring agent
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless-security.psk-flags 0
[nilesh@fedora Pictures]$ # Force configuration reload
sudo systemctl reload NetworkManager
# Clear the interface state
sudo ip link set wlp1s0 down
sleep 1
sudo ip link set wlp1s0 up
# Trigger connection
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ # 1. Clear any conflicting keyring flags
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk-flags 0 2>/dev/null || nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless-security.psk-flags 0
# 2. Re-inject the password specifically into the wifi-sec object
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# 3. Force NetworkManager to write the changes cleanly to disk
sudo systemctl restart NetworkManager
# 4. Bring the connection up using the --ask flag
# (This forces the terminal to explicitly provide the credentials if the agent stalls)
nmcli connection up "DIRECT-5W44-G3070series" --ask
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ # 1. Delete the broken connection profile completely
nmcli connection delete "DIRECT-5W44-G3070series"
# 2. Hard-reset the wpa_supplicant and NetworkManager configuration state
sudo systemctl restart wpa_supplicant
sudo systemctl restart NetworkManager
# 3. Flush the ath11k driver's hardware interface state
sudo ip link set wlp1s0 down
sleep 2
sudo ip link set wlp1s0 up
# 4. Create a completely fresh profile with explicit system-owned credentials
nmcli connection add type wifi ifname wlp1s0 con-name "DIRECT-5W44-G3070series" ssid "DIRECT-5W44-G3070series"
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.key-mgmt wpa-psk
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# 5. Enforce static MAC parameters on the clean connection straight out of the gate
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address "10:E1:8E:84:3B:DA"
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization 1
# 6. Bring up the brand new connection
nmcli connection up "DIRECT-5W44-G3070series"
Connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0) successfully deleted.
Connection 'DIRECT-5W44-G3070series' (88c011a1-e58f-4023-866b-a0d59aa0f851) successfully added.
Passwords or encryption keys are required to access the wireless network 'DIRECT-5W44-G3070series'.
Warning: password for '802-11-wireless-security.psk' not given in 'passwd-file' and nmcli cannot ask without '--ask' option.
Error: Timeout expired (90 seconds)
[nilesh@fedora Pictures]$ # Force the password to write to the configuration file with system-wide flags
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk-flags 0
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# Bring it up while feeding the password directly into the handshake command
nmcli connection up "DIRECT-5W44-G3070series" passwd-file <(echo "802-11-wireless-security.psk:wqkKs2ZjBm")
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=88c011a1-e58f-4023-866b-a0d59aa0f851 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
^ permalink raw reply
* ath11k_pci: QCNFA765 connection failure with PREV_AUTH_NOT_VALID / "Secrets were required" state machine crash on Fedora 44
From: Nilesh Kumar @ 2026-07-04 11:51 UTC (permalink / raw)
To: linux-wireless; +Cc: ath11k
[-- Attachment #1.1: Type: text/plain, Size: 1196 bytes --]
Hello,
I am experiencing a persistent Wi-Fi disconnection issue on Fedora 44 that
eventually locks up the driver state machine until a full system reboot.
The network adapter is a Qualcomm QCNFA765 using the ath11k_pci driver.
[HARDWARE & OS DETAILS]
- Distro: Fedora 44
- Wireless Adapter: Qualcomm Technologies, Inc QCNFA765 [17cb:1103] (rev 01)
- Subsystem: Lenovo Device [17aa:9309]
- Driver: ath11k_pci
[PROBLEM DESCRIPTION]
The interface disconnects after a few sessions. Once disconnected,
NetworkManager and wpa_supplicant enter a state-machine loop where they are
unable to re-associate, repeatedly throwing "Secrets were required, but not
provided" errors, even when credentials are explicitly forced or provided
via a passwd-file inline during 'nmcli c up'.
Even after purging the connection profile, restarting
NetworkManager/wpa_supplicant, and manually bringing the link up/down, the
driver appears to remain in a glitched state where it refuses to pass the
authentication keys to the AP. Only a full system restart resolves the
condition temporarily.
[RELEVANT LOG SNIPPETS]
logs generated are attached with the mail.
--
Warm regards,
Nilesh Kumar
Call Me @ +919434345530
[-- Attachment #1.2: Type: text/html, Size: 1577 bytes --]
[-- Attachment #2: logs.log --]
[-- Type: text/x-log, Size: 104341 bytes --]
sudo iw dev wlp1s0 set power_save off
sudo systemctl restart NetworkManager
[sudo] password for nilesh:
[nilesh@fedora Pictures]$ nmcli -p connection show DIRECT-5W44-G3070series | grep -E 'mac-address-randomization|cloned-mac|mac-address '
802-11-wireless.cloned-mac-address: EE:AB:CD:12:91:33
802-11-wireless.mac-address-randomization:default
[nilesh@fedora Pictures]$ nmcli connection modify DIRECT-5W44-G3070series \
802-11-wireless.mac-address-randomization disabled \
802-11-wireless.cloned-mac-address EE:AB:CD:12:91:33
nmcli connection up DIRECT-5W44-G3070series
Error: failed to modify 802-11-wireless.mac-address-randomization: invalid option 'disabled', use one of [default,never,always].
^CError: nmcli terminated by signal Interrupt (2)
[nilesh@fedora Pictures]$ nmcli connection modify DIRECT-5W44-G3070series \
802-11-wireless.mac-address-randomization never \
802-11-wireless.cloned-mac-address EE:AB:CD:12:91:33
nmcli connection down DIRECT-5W44-G3070series
nmcli connection up DIRECT-5W44-G3070series
Connection 'DIRECT-5W44-G3070series' successfully deactivated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/5)
Error: Connection activation failed: Disconnected by user
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli -p connection show DIRECT-5W44-G3070series | grep -E '802-11-wireless.mac-address-randomization|cloned-mac'
nmcli -f DEVICE,STATE,CONNECTION device status
nmcli connection up DIRECT-5W44-G3070series
802-11-wireless.cloned-mac-address: EE:AB:CD:12:91:33
802-11-wireless.mac-address-randomization:default
DEVICE STATE CONNECTION
enp3s0f0 connected Wired connection 1
lo connected (externally) lo
wlp1s0 disconnected --
p2p-dev-wlp1s0 disconnected --
Error: Connection activation failed: Disconnected by user
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli radio wifi off
nmcli radio wifi on
sudo iw dev wlp1s0 set power_save off
nmcli connection up DIRECT-5W44-G3070series
[sudo] password for nilesh:
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli -f DEVICE,STATE,CONNECTION device status
journalctl -b | grep -iE 'wlp1s0|wpa|deauth|PREV_AUTH_NOT_VALID|DEAUTH_LEAVING' | tail -n 80
DEVICE STATE CONNECTION
enp3s0f0 connected Wired connection 1
wlp1s0 connecting (configuring) DIRECT-5W44-G3070series
lo connected (externally) lo
p2p-dev-wlp1s0 disconnected --
Jul 03 17:14:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=7
Jul 03 17:14:57 fedora wpa_supplicant[1397]: wlp1s0: Added BSSID 6e:f2:d8:06:d8:44 into ignore list, ignoring for 10 seconds
Jul 03 17:14:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.7850] device (wlp1s0): supplicant interface state: associated -> disconnected
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.7851] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.8838] device (wlp1s0): supplicant interface state: disconnected -> scanning
Jul 03 17:14:57 fedora NetworkManager[7496]: <info> [1783079097.8838] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="DIRECT-5W44-G3070series"
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8031] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8032] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 03 17:15:12 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=ee:ab:cd:12:91:33)
Jul 03 17:15:12 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:12 fedora kernel: wlp1s0: authenticated
Jul 03 17:15:12 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8053] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8053] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
Jul 03 17:15:12 fedora kernel: wlp1s0: RX AssocResp from 6e:f2:d8:06:d8:44 (capab=0x431 status=0 aid=1)
Jul 03 17:15:12 fedora kernel: wlp1s0: associated
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: Associated with 6e:f2:d8:06:d8:44
Jul 03 17:15:12 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8311] device (wlp1s0): supplicant interface state: associating -> associated
Jul 03 17:15:12 fedora NetworkManager[7496]: <info> [1783079112.8311] device (p2p-dev-wlp1s0): supplicant management interface state: associating -> associated
Jul 03 17:15:15 fedora kernel: wlp1s0: deauthenticated from 6e:f2:d8:06:d8:44 (Reason: 2=PREV_AUTH_NOT_VALID)
Jul 03 17:15:15 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=2
Jul 03 17:15:15 fedora wpa_supplicant[1397]: wlp1s0: Added BSSID 6e:f2:d8:06:d8:44 into ignore list, ignoring for 10 seconds
Jul 03 17:15:15 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=2 duration=20 reason=CONN_FAILED
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0006] device (wlp1s0): supplicant interface state: associated -> disconnected
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0006] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0993] device (wlp1s0): supplicant interface state: disconnected -> scanning
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.0993] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 03 17:15:16 fedora NetworkManager[7496]: <warn> [1783079116.8415] device (wlp1s0): Activation: (wifi) association took too long
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.8416] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.8820] device (wlp1s0): set-hw-addr: set MAC address to D2:4F:CA:DE:88:EE (scanning)
Jul 03 17:15:16 fedora NetworkManager[7496]: <warn> [1783079116.9032] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9034] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9034] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9036] device (wlp1s0): state change: failed -> disconnected (reason 'none', managed-type: 'full')
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9168] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.9168] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 03 17:15:16 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:16 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9192] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9194] device (wlp1s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9559] device (wlp1s0): set-hw-addr: set-cloned MAC address to EE:AB:CD:12:91:33 (EE:AB:CD:12:91:33)
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9786] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9788] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9788] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9790] sup-iface[8a5a8f83161a49b8,3,wlp1s0]: wps: type pbc start...
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9793] device (wlp1s0): supplicant interface state: inactive -> interface_disabled
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9793] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> interface_disabled
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9799] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9801] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: WPS-CANCEL
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9948] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9948] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:15:40 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0318] device (wlp1s0): supplicant interface state: inactive -> authenticating
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0319] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> authenticating
Jul 03 17:15:41 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=ee:ab:cd:12:91:33)
Jul 03 17:15:41 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:41 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:15:41 fedora kernel: wlp1s0: authenticated
Jul 03 17:15:41 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0345] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0345] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
Jul 03 17:15:41 fedora kernel: wlp1s0: RX AssocResp from 6e:f2:d8:06:d8:44 (capab=0x431 status=0 aid=1)
Jul 03 17:15:41 fedora kernel: wlp1s0: associated
Jul 03 17:15:41 fedora wpa_supplicant[1397]: wlp1s0: Associated with 6e:f2:d8:06:d8:44
Jul 03 17:15:41 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0554] device (wlp1s0): supplicant interface state: associating -> associated
Jul 03 17:15:41 fedora NetworkManager[7496]: <info> [1783079141.0554] device (p2p-dev-wlp1s0): supplicant management interface state: associating -> associated
[nilesh@fedora Pictures]$ ^C
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address ""
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization 1
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.wps-methods ""
nmcli connection up "DIRECT-5W44-G3070series"
Error: invalid property 'wps-methods': 'wps-methods' not among [ssid, mode, band, channel, bssid, mac-address, cloned-mac-address, generate-mac-address-mask, mac-address-blacklist, mac-address-denylist, mac-address-randomization, mtu, seen-bssids, hidden, powersave, wake-on-wlan, ap-isolation, channel-width].
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli dev disconnect wlp1s0
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Disconnected by user
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection show
NAME UUID TYPE DEVICE
Wired connection 1 3099888d-d5b0-3b45-8fcc-005b9b63ac89 ethernet enp3s0f0
lo d77a4972-093f-4627-a134-d9839d7e817f loopback lo
DIRECT-5W44-G3070series b1b803b2-2091-4a78-a432-34d0bc598db0 wifi --
FRTSGuest 8d3a49e5-f099-4e91-ad33-16be5e980c2a wifi --
OnePlus Nord CE3 5G 7e35a48b-89e0-4b1b-a0a1-7bc3ddbb1990 wifi --
Trojan Virus 7ff473f0-b7fa-4d18-871e-b978ca45a059 wifi --
[nilesh@fedora Pictures]$ nmcli -p show device
Error: argument 'show' not understood. Try passing --help instead.
[nilesh@fedora Pictures]$ nmcli -p device
=====================
Status of devices
=====================
DEVICE TYPE STATE CONNECTION
-------------------------------------------------------------------------------------------
enp3s0f0 ethernet connected Wired connection 1
lo loopback connected (externally) lo
wlp1s0 wifi disconnected --
p2p-dev-wlp1s0 wifi-p2p disconnected --
[nilesh@fedora Pictures]$ nmcli dev disconnect wlp1s0
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli -f wifi-sec.key-mgmt,wifi-sec.psk,wifi-sec.sae-password,802-11-wireless.mac-address-randomization connection show "DIRECT-5W44-G3070series"
Error: invalid field 'wifi-sec.key-mgmt'; allowed fields: 6lowpan,802-11-olpc-mesh,802-11-wireless,802-11-wireless-security,802-1x,802-3-ethernet,adsl,bluetooth,bond,bond-port,bridge,bridge-port,cdma,connection,dcb,dummy,ethtool,generic,gsm,hostname,hsr,infiniband,ip-tunnel,ipv4,ipv6,ipvlan,link,loopback,macsec,macvlan,match,ovs-bridge,ovs-dpdk,ovs-external-ids,ovs-interface,ovs-other-config,ovs-patch,ovs-port,ppp,pppoe,prefix-delegation,proxy,serial,sriov,tc,team,team-port,tun,user,veth,vlan,vpn,vrf,vxlan,wifi-p2p,wimax,wireguard,wpan and GENERAL,IP4,DHCP4,IP6,DHCP6,VPN, or profile,active.
[nilesh@fedora Pictures]$ sudo lspci -nnk | grep -A3 -i network
[sudo] password for nilesh:
pcilib: Error reading /sys/bus/pci/devices/0000:00:08.3/label: Operation not permitted
01:00.0 Network controller [0280]: Qualcomm Technologies, Inc QCNFA765 Wireless Network Adapter [17cb:1103] (rev 01)
Subsystem: Lenovo Device [17aa:9309]
Kernel driver in use: ath11k_pci
Kernel modules: ath11k_pci
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli -p connection show "DIRECT-5W44-G3070series"
===============================================================================
Connection profile details (DIRECT-5W44-G3070series)
===============================================================================
connection.id: DIRECT-5W44-G3070series
connection.uuid: b1b803b2-2091-4a78-a432-34d0bc598db0
connection.stable-id: --
connection.type: 802-11-wireless
connection.interface-name: --
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.multi-connect: 0 (default)
connection.auth-retries: -1
connection.timestamp: 1783078682
connection.permissions: --
connection.zone: --
connection.controller: --
connection.master: --
connection.slave-type: --
connection.port-type: --
connection.autoconnect-slaves: -1 (default)
connection.autoconnect-ports: -1 (default)
connection.down-on-poweroff: -1 (default)
connection.secondaries: --
connection.gateway-ping-timeout: 0
connection.ip-ping-timeout: 0
connection.ip-ping-addresses: --
connection.ip-ping-addresses-require-all:-1 (default)
connection.metered: unknown
connection.lldp: default
connection.mdns: -1 (default)
connection.llmnr: -1 (default)
connection.dns-over-tls: -1 (default)
connection.dnssec: -1 (default)
connection.mptcp-flags: 0x0 (default)
connection.wait-device-timeout: -1
connection.wait-activation-delay: -1
-------------------------------------------------------------------------------
802-11-wireless.ssid: DIRECT-5W44-G3070series
802-11-wireless.mode: infrastructure
802-11-wireless.band: --
802-11-wireless.channel: 0
802-11-wireless.bssid: --
802-11-wireless.mac-address: --
802-11-wireless.cloned-mac-address: permanent
802-11-wireless.generate-mac-address-mask:--
802-11-wireless.mac-address-denylist: --
802-11-wireless.mac-address-randomization:never
802-11-wireless.mtu: auto
802-11-wireless.seen-bssids: 6E:F2:D8:06:D8:44
802-11-wireless.hidden: no
802-11-wireless.powersave: 0 (default)
802-11-wireless.wake-on-wlan: 0x1 (default)
802-11-wireless.ap-isolation: -1 (default)
802-11-wireless.channel-width: 0 (auto)
-------------------------------------------------------------------------------
802-11-wireless-security.key-mgmt: wpa-psk
802-11-wireless-security.wep-tx-keyidx: 0
802-11-wireless-security.auth-alg: --
802-11-wireless-security.proto: --
802-11-wireless-security.pairwise: --
802-11-wireless-security.group: --
802-11-wireless-security.pmf: 0 (default)
802-11-wireless-security.leap-username: --
802-11-wireless-security.wep-key0: <hidden>
802-11-wireless-security.wep-key1: <hidden>
802-11-wireless-security.wep-key2: <hidden>
802-11-wireless-security.wep-key3: <hidden>
802-11-wireless-security.wep-key-flags: 0 (none)
802-11-wireless-security.wep-key-type: unknown
802-11-wireless-security.psk: <hidden>
802-11-wireless-security.psk-flags: 0 (none)
802-11-wireless-security.leap-password: <hidden>
802-11-wireless-security.leap-password-flags:0 (none)
802-11-wireless-security.wps-method: 0x0 (default)
802-11-wireless-security.fils: 0 (default)
-------------------------------------------------------------------------------
ipv4.method: auto
ipv4.dns: --
ipv4.dns-search: --
ipv4.dns-options: --
ipv4.dns-priority: 0
ipv4.addresses: --
ipv4.gateway: --
ipv4.routes: --
ipv4.route-metric: -1
ipv4.route-table: 0 (unspec)
ipv4.routing-rules: --
ipv4.replace-local-rule: -1 (default)
ipv4.dhcp-send-release: -1 (default)
ipv4.routed-dns: -1 (default)
ipv4.ignore-auto-routes: no
ipv4.ignore-auto-dns: no
ipv4.dhcp-client-id: --
ipv4.dhcp-iaid: --
ipv4.dhcp-dscp: --
ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname-deprecated: yes
ipv4.dhcp-send-hostname: -1 (default)
ipv4.forwarding: -1 (default)
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.required-timeout: -1 (default)
ipv4.dad-timeout: -1 (default)
ipv4.dhcp-vendor-class-identifier: --
ipv4.dhcp-ipv6-only-preferred: -1 (default)
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
ipv4.shared-dhcp-range: --
ipv4.shared-dhcp-lease-time: 0 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
ipv6.dns-options: --
ipv6.dns-priority: 0
ipv6.addresses: --
ipv6.gateway: --
ipv6.routes: --
ipv6.route-metric: -1
ipv6.route-table: 0 (unspec)
ipv6.routing-rules: --
ipv6.replace-local-rule: -1 (default)
ipv6.dhcp-send-release: -1 (default)
ipv6.routed-dns: -1 (default)
ipv6.ignore-auto-routes: no
ipv6.ignore-auto-dns: no
ipv6.never-default: no
ipv6.may-fail: yes
ipv6.required-timeout: -1 (default)
ipv6.ip6-privacy: -1 (default)
ipv6.temp-valid-lifetime: 0 (default)
ipv6.temp-preferred-lifetime: 0 (default)
ipv6.addr-gen-mode: stable-privacy
ipv6.ra-timeout: 0 (default)
ipv6.mtu: auto
ipv6.dhcp-pd-hint: --
ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-timeout: 0 (default)
ipv6.dhcp-send-hostname-deprecated: yes
ipv6.dhcp-send-hostname: -1 (default)
ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
-------------------------------------------------------------------------------
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" mac-address-randomization 1
Error: invalid <setting>.<property> 'mac-address-randomization'.
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization never
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address permanent
nmcli dev disconnect wlp1s0 || true
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ journalctl -b --no-pager | grep -A2 -B2 -i "DIRECT-5W44-G3070series" | tail -n 120
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8738] agent-manager: agent[908adddfb31d48bd,:1.218/nmcli-connect/1000]: agent registered
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8739] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8743] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8747] device (wlp1s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8750] manager: NetworkManager state is now CONNECTING
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9071] device (wlp1s0): set-hw-addr: set-cloned MAC address to 10:E1:8E:84:3B:DA (permanent)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9385] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9388] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9389] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9390] sup-iface[8a5a8f83161a49b8,3,wlp1s0]: wps: type pbc start...
--
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9399] manager: NetworkManager state is now CONNECTED_SITE
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9404] device (wlp1s0): disconnecting for new activation request.
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9404] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9606 uid=1000 result="success"
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9405] device (wlp1s0): supplicant interface state: inactive -> interface_disabled
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9405] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> interface_disabled
--
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0150] device (wlp1s0): set-hw-addr: set MAC address to 7A:11:68:32:03:46 (scanning)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0384] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0388] device (wlp1s0): supplicant interface state: scanning -> inactive
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0389] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> inactive
--
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0710] device (wlp1s0): set-hw-addr: set-cloned MAC address to 10:E1:8E:84:3B:DA (permanent)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1017] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1019] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1019] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1020] sup-iface[8a5a8f83161a49b8,3,wlp1s0]: wps: type pbc start...
--
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1040] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1043] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'scan_ssid' value '1'
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jul 03 17:39:32 fedora kded6[2323]: Failed to notify "Created too many similar notifications in quick succession"
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:32 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:39:32 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.2038] device (wlp1s0): supplicant interface state: inactive -> authenticating
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.2039] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> authenticating
Jul 03 17:39:32 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:32 fedora kernel: wlp1s0: authenticated
Jul 03 17:39:32 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
--
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:39:42 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 03 17:39:42 fedora NetworkManager[7496]: <info> [1783080582.3136] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 03 17:39:42 fedora NetworkManager[7496]: <info> [1783080582.3984] device (wlp1s0): supplicant interface state: disconnected -> scanning
Jul 03 17:39:42 fedora NetworkManager[7496]: <info> [1783080582.3984] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="DIRECT-5W44-G3070series"
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 3, ignoring for 60 seconds
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2820] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2821] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 03 17:39:57 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:39:57 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2850] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.2851] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8423] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8425] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'scan_ssid' value '1'
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9058] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: WPS-CANCEL
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:39:57 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9284] device (wlp1s0): supplicant interface state: disconnected -> authenticating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9284] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> authenticating
Jul 03 17:39:57 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9310] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.9310] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:40:08 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 03 17:40:08 fedora NetworkManager[7496]: <info> [1783080608.0284] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8422] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8424] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'scan_ssid' value '1'
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'psk' value '<hidden>'
Jul 03 17:40:22 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 03 17:40:22 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9819] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9819] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 03 17:40:22 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 03 17:40:22 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 03 17:40:22 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9845] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.9846] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 03 17:40:33 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 03 17:40:33 fedora NetworkManager[7496]: <info> [1783080633.0880] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.8429] manager: NetworkManager state is now CONNECTED_SITE
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.8868] device (wlp1s0): set-hw-addr: set MAC address to FE:20:7B:29:CC:EB (scanning)
Jul 03 17:40:47 fedora NetworkManager[7496]: <warn> [1783080647.9116] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.9119] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.9120] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
[nilesh@fedora Pictures]$ sudo sh -c 'cat > /etc/NetworkManager/conf.d/99-wifi-powersave-off.conf <<EOF
[connection]
wifi.powersave = 2
EOF'
[sudo] password for nilesh:
[nilesh@fedora Pictures]$ sudo systemctl restart NetworkManager
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: No suitable device found for this connection (device lo not available because profile is not compatible with device (connection type is not "loopback")).
[nilesh@fedora Pictures]$ sudo systemctl restart NetworkManager
[nilesh@fedora Pictures]$ nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization never
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address permanent
nmcli dev disconnect wlp1s0 || true
nmcli connection up "DIRECT-5W44-G3070series"
Error: Device 'wlp1s0' (/org/freedesktop/NetworkManager/Devices/3) disconnecting failed: This device is not active
Error: not all devices disconnected.
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ nmcli connection down "DIRECT-5W44-G3070series" 2>/dev/null || true
sudo rm -f /var/lib/NetworkManager/*-secrets*
nmcli connection up "DIRECT-5W44-G3070series"
[sudo] password for nilesh:
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ nmcli -s connection show "DIRECT-5W44-G3070series" | egrep -i 'connection.id|wifi.ssid|wifi-sec.key-mgmt|wifi-sec.psk|wifi-sec.psk-flags|wifi-sec.sae-password|wifi-sec.sae-password-flags|802-11-wireless'
egrep: warning: egrep is obsolescent; using grep -E
connection.id: DIRECT-5W44-G3070series
connection.type: 802-11-wireless
802-11-wireless.ssid: DIRECT-5W44-G3070series
802-11-wireless.mode: infrastructure
802-11-wireless.band: --
802-11-wireless.channel: 0
802-11-wireless.bssid: --
802-11-wireless.mac-address: --
802-11-wireless.cloned-mac-address: permanent
802-11-wireless.generate-mac-address-mask:--
802-11-wireless.mac-address-denylist: --
802-11-wireless.mac-address-randomization:never
802-11-wireless.mtu: auto
802-11-wireless.seen-bssids: 6E:F2:D8:06:D8:44
802-11-wireless.hidden: no
802-11-wireless.powersave: 0 (default)
802-11-wireless.wake-on-wlan: 0x1 (default)
802-11-wireless.ap-isolation: -1 (default)
802-11-wireless.channel-width: 0 (auto)
802-11-wireless-security.key-mgmt: wpa-psk
802-11-wireless-security.wep-tx-keyidx: 0
802-11-wireless-security.auth-alg: --
802-11-wireless-security.proto: --
802-11-wireless-security.pairwise: --
802-11-wireless-security.group: --
802-11-wireless-security.pmf: 0 (default)
802-11-wireless-security.leap-username: --
802-11-wireless-security.wep-key0: --
802-11-wireless-security.wep-key1: --
802-11-wireless-security.wep-key2: --
802-11-wireless-security.wep-key3: --
802-11-wireless-security.wep-key-flags: 0 (none)
802-11-wireless-security.wep-key-type: unknown
802-11-wireless-security.psk: wqkKs2ZjBm
802-11-wireless-security.psk-flags: 0 (none)
802-11-wireless-security.leap-password: --
802-11-wireless-security.leap-password-flags:0 (none)
802-11-wireless-security.wps-method: 0x0 (default)
802-11-wireless-security.fils: 0 (default)
[nilesh@fedora Pictures]$ nmcli -s connection show "DIRECT-5W44-G3070series" | egrep -i 'ipv4.method|ipv6.method|autoconnect|permissions|autoconnect-priority|master|slave'
egrep: warning: egrep is obsolescent; using grep -E
connection.autoconnect: yes
connection.autoconnect-priority: 0
connection.autoconnect-retries: -1 (default)
connection.permissions: --
connection.master: --
connection.slave-type: --
connection.autoconnect-slaves: -1 (default)
connection.autoconnect-ports: -1 (default)
ipv4.method: auto
ipv6.method: auto
[nilesh@fedora Pictures]$ nmcli -s device show wlp1s0 | egrep -i 'GENERAL.STATE|GENERAL.CONNECTION|GENERAL.DRIVER|GENERAL.FIRMWARE|IP4.ADDRESS|IP6.ADDRESS|UDI'
egrep: warning: egrep is obsolescent; using grep -E
GENERAL.STATE: 30 (disconnected)
GENERAL.CONNECTION: --
[nilesh@fedora Pictures]$ sudo journalctl -b -u NetworkManager --no-pager | egrep -i 'DIRECT-5W44-G3070series|secrets are required|Need secrets|No new secrets|agent|secret' | tail -n 200
egrep: warning: egrep is obsolescent; using grep -E
Jul 03 17:11:17 fedora NetworkManager[7496]: <info> [1783078877.8444] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:11:17 fedora NetworkManager[7496]: <info> [1783078877.8444] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:11:42 fedora NetworkManager[7496]: <warn> [1783078902.8419] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:11:42 fedora NetworkManager[7496]: <info> [1783078902.8428] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:11:42 fedora NetworkManager[7496]: <info> [1783078902.8428] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:12:07 fedora NetworkManager[7496]: <info> [1783078927.8426] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:12:07 fedora NetworkManager[7496]: <warn> [1783078927.8990] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8227] agent-manager: agent[23827da94e27fb35,:1.184/nmcli-connect/1000]: agent registered
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8228] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8235] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8856] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.8868] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8051 uid=1000 result="success"
Jul 03 17:12:37 fedora NetworkManager[7496]: <info> [1783078957.9848] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:12:38 fedora NetworkManager[7496]: <info> [1783078958.0466] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:12:38 fedora NetworkManager[7496]: <info> [1783078958.0481] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:12:38 fedora NetworkManager[7496]: <info> [1783078958.0481] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:13:02 fedora NetworkManager[7496]: <warn> [1783078982.8422] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:13:02 fedora NetworkManager[7496]: <info> [1783078982.8435] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:13:02 fedora NetworkManager[7496]: <info> [1783078982.8436] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:13:27 fedora NetworkManager[7496]: <warn> [1783079007.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:13:27 fedora NetworkManager[7496]: <info> [1783079007.8427] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:13:27 fedora NetworkManager[7496]: <info> [1783079007.8427] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.4917] agent-manager: agent[31ac0b81e4605674,:1.193/nmcli-connect/1000]: agent registered
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5048] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5049] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8244 uid=1000 result="success"
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5695] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5710] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:14:01 fedora NetworkManager[7496]: <info> [1783079041.5710] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:14:26 fedora NetworkManager[7496]: <warn> [1783079066.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:14:26 fedora NetworkManager[7496]: <info> [1783079066.8433] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:14:26 fedora NetworkManager[7496]: <info> [1783079066.8434] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:14:51 fedora NetworkManager[7496]: <warn> [1783079091.8429] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:14:51 fedora NetworkManager[7496]: <info> [1783079091.8440] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:14:51 fedora NetworkManager[7496]: <info> [1783079091.8441] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:15:16 fedora NetworkManager[7496]: <info> [1783079116.8416] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:15:16 fedora NetworkManager[7496]: <warn> [1783079116.9032] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9192] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9193] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=2426 uid=1000 result="success"
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9788] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:15:40 fedora NetworkManager[7496]: <info> [1783079140.9803] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:16:05 fedora NetworkManager[7496]: <warn> [1783079165.8430] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:16:05 fedora NetworkManager[7496]: <info> [1783079165.8443] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:16:05 fedora NetworkManager[7496]: <info> [1783079165.8443] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:16:30 fedora NetworkManager[7496]: <warn> [1783079190.8419] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:16:30 fedora NetworkManager[7496]: <info> [1783079190.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:16:30 fedora NetworkManager[7496]: <info> [1783079190.8431] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:16:55 fedora NetworkManager[7496]: <info> [1783079215.8426] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:16:55 fedora NetworkManager[7496]: <warn> [1783079215.9050] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.3916] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" args="802-11-wireless.cloned-mac-address" pid=8731 uid=1000 result="success"
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4178] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" args="802-11-wireless.cloned-mac-address,802-11-wireless.mac-address-randomization" pid=8739 uid=1000 result="success"
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4587] agent-manager: agent[947eb833bf6e769c,:1.197/nmcli-connect/1000]: agent registered
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4589] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.4593] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.5074] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.5087] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8747 uid=1000 result="success"
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6135] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6733] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6746] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:26:16 fedora NetworkManager[7496]: <info> [1783079776.6746] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:26:41 fedora NetworkManager[7496]: <warn> [1783079801.8420] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:26:41 fedora NetworkManager[7496]: <info> [1783079801.8437] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:26:41 fedora NetworkManager[7496]: <info> [1783079801.8437] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:27:06 fedora NetworkManager[7496]: <warn> [1783079826.8429] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:27:06 fedora NetworkManager[7496]: <info> [1783079826.8446] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:27:06 fedora NetworkManager[7496]: <info> [1783079826.8447] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:27:31 fedora NetworkManager[7496]: <info> [1783079851.8421] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:27:31 fedora NetworkManager[7496]: <warn> [1783079851.9306] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.6977] agent-manager: agent[bc6aa1b571482b3e,:1.200/nmcli-connect/1000]: agent registered
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7118] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7119] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8886 uid=1000 result="success"
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7787] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7805] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:27:41 fedora NetworkManager[7496]: <info> [1783079861.7806] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:28:06 fedora NetworkManager[7496]: <warn> [1783079886.8418] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:28:06 fedora NetworkManager[7496]: <info> [1783079886.8529] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:28:06 fedora NetworkManager[7496]: <info> [1783079886.8529] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:28:31 fedora NetworkManager[7496]: <warn> [1783079911.8418] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:28:31 fedora NetworkManager[7496]: <info> [1783079911.8428] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:28:31 fedora NetworkManager[7496]: <info> [1783079911.8429] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:28:56 fedora NetworkManager[7496]: <info> [1783079936.8425] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:28:56 fedora NetworkManager[7496]: <warn> [1783079936.9350] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.1367] agent-manager: agent[b466341f5df870f6,:1.202/nmcli-connect/1000]: agent registered
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.1464] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.1464] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=8995 uid=1000 result="success"
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.2188] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.2203] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:29:09 fedora NetworkManager[7496]: <info> [1783079949.2203] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:29:34 fedora NetworkManager[7496]: <warn> [1783079974.8420] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:29:34 fedora NetworkManager[7496]: <info> [1783079974.8439] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:29:34 fedora NetworkManager[7496]: <info> [1783079974.8440] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4147] agent-manager: agent[b466341f5df870f6,:1.207/nmcli-connect/1000]: agent registered
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4269] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4269] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9207 uid=1000 result="success"
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4881] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4896] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:32:38 fedora NetworkManager[7496]: <info> [1783080158.4896] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:33:03 fedora NetworkManager[7496]: <warn> [1783080183.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:33:03 fedora NetworkManager[7496]: <info> [1783080183.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:33:03 fedora NetworkManager[7496]: <info> [1783080183.8432] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:33:28 fedora NetworkManager[7496]: <warn> [1783080208.8435] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:33:28 fedora NetworkManager[7496]: <info> [1783080208.8450] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:33:28 fedora NetworkManager[7496]: <info> [1783080208.8450] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:33:53 fedora NetworkManager[7496]: <info> [1783080233.8418] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:33:53 fedora NetworkManager[7496]: <warn> [1783080233.9091] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.7888] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9585 uid=1000 result="success"
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8183] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9593 uid=1000 result="success"
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8738] agent-manager: agent[908adddfb31d48bd,:1.218/nmcli-connect/1000]: agent registered
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8739] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.8743] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9388] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:31 fedora NetworkManager[7496]: <info> [1783080571.9404] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=9606 uid=1000 result="success"
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.0384] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1019] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:32 fedora NetworkManager[7496]: <info> [1783080572.1045] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:39:57 fedora NetworkManager[7496]: <warn> [1783080597.8418] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:39:57 fedora NetworkManager[7496]: <info> [1783080597.8431] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:40:22 fedora NetworkManager[7496]: <warn> [1783080622.8417] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 03 17:40:22 fedora NetworkManager[7496]: <info> [1783080622.8426] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 03 17:40:47 fedora NetworkManager[7496]: <info> [1783080647.8426] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 03 17:40:47 fedora NetworkManager[7496]: <warn> [1783080647.9116] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:39:28 fedora NetworkManager[10681]: <info> [1783138168.3576] agent-manager: agent[475e0e003083d5cb,:1.236/nmcli-connect/1000]: agent registered
Jul 04 09:39:28 fedora NetworkManager[10681]: <info> [1783138168.3586] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=10701 uid=1000 result="fail" reason="No suitable device found for this connection (device lo not available because profile is not compatible with device (connection type is not "loopback"))."
Jul 04 09:39:28 fedora NetworkManager[10681]: <info> [1783138168.3812] agent-manager: agent[da820408da73dc45,:1.62/org.kde.plasma.networkmanagement/1000]: agent registered
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.0391] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.0395] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.1096] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.1116] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:39:59 fedora NetworkManager[10681]: <info> [1783138199.1117] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:40:22 fedora NetworkManager[10910]: <info> [1783138222.3289] agent-manager: agent[beb58c52baa4ae8f,:1.62/org.kde.plasma.networkmanagement/1000]: agent registered
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1124] agent-manager: agent[a95421d56e8f20d2,:1.242/nmcli-connect/1000]: agent registered
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1255] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1256] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=10979 uid=1000 result="success"
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1983] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1996] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:40:26 fedora NetworkManager[10910]: <info> [1783138226.1996] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:40:51 fedora NetworkManager[10910]: <warn> [1783138251.0195] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:40:51 fedora NetworkManager[10910]: <info> [1783138251.0209] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:40:51 fedora NetworkManager[10910]: <info> [1783138251.0210] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:41:16 fedora NetworkManager[10910]: <warn> [1783138276.0197] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:41:16 fedora NetworkManager[10910]: <info> [1783138276.0208] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:41:16 fedora NetworkManager[10910]: <info> [1783138276.0208] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:41:41 fedora NetworkManager[10910]: <info> [1783138301.0195] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:41:41 fedora NetworkManager[10910]: <warn> [1783138301.1383] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.6723] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11328 uid=1000 result="success"
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7019] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11336 uid=1000 result="success"
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7545] agent-manager: agent[cd8a7bd59f4fb217,:1.246/nmcli-connect/1000]: agent registered
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7685] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.7686] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11349 uid=1000 result="success"
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.8490] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.8509] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:46:34 fedora NetworkManager[10910]: <info> [1783138594.8510] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:47:00 fedora NetworkManager[10910]: <warn> [1783138620.0185] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:47:00 fedora NetworkManager[10910]: <info> [1783138620.0195] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:47:00 fedora NetworkManager[10910]: <info> [1783138620.0196] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:47:25 fedora NetworkManager[10910]: <warn> [1783138645.0202] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:47:25 fedora NetworkManager[10910]: <info> [1783138645.0219] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:47:25 fedora NetworkManager[10910]: <info> [1783138645.0219] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:47:50 fedora NetworkManager[10910]: <info> [1783138670.0188] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:47:50 fedora NetworkManager[10910]: <warn> [1783138670.0791] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.7855] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11665 uid=1000 result="success"
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.7860] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.7873] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8556] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8584] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8616] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.8904] agent-manager: agent[ad64c03661bddc5e,:1.248/nmcli-connect/1000]: agent registered
Jul 04 09:51:34 fedora NetworkManager[10910]: <info> [1783138894.9044] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11673 uid=1000 result="success"
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0221] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0965] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0975] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:51:35 fedora NetworkManager[10910]: <info> [1783138895.0976] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:52:00 fedora NetworkManager[10910]: <warn> [1783138920.0183] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:52:00 fedora NetworkManager[10910]: <info> [1783138920.0206] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:52:00 fedora NetworkManager[10910]: <info> [1783138920.0834] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:52:25 fedora NetworkManager[10910]: <warn> [1783138945.0202] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:52:25 fedora NetworkManager[10910]: <info> [1783138945.0212] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:52:25 fedora NetworkManager[10910]: <info> [1783138945.0212] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:52:50 fedora NetworkManager[10910]: <info> [1783138970.0185] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:52:50 fedora NetworkManager[10910]: <warn> [1783138970.0792] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7344] agent-manager: agent[c47632a0b6faa46a,:1.255/nmcli-connect/1000]: agent registered
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7346] policy: auto-activating connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7350] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7933] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.7946] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=11845 uid=1000 result="success"
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.8981] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.9641] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.9655] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:53:20 fedora NetworkManager[10910]: <info> [1783139000.9656] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:53:46 fedora NetworkManager[10910]: <warn> [1783139026.0186] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:53:46 fedora NetworkManager[10910]: <info> [1783139026.0200] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:53:46 fedora NetworkManager[10910]: <info> [1783139026.0200] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:54:11 fedora NetworkManager[10910]: <warn> [1783139051.0196] device (wlp1s0): Activation: (wifi) asking for new secrets
Jul 04 09:54:11 fedora NetworkManager[10910]: <info> [1783139051.0210] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:54:11 fedora NetworkManager[10910]: <info> [1783139051.0210] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0184] device (wlp1s0): state change: config -> failed (reason 'no-secrets', managed-type: 'full')
Jul 04 09:54:36 fedora NetworkManager[10910]: <warn> [1783139076.0875] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.wps-methods ""
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.wps-method ""
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.fils 0
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.pmf 0
nmcli connection down "DIRECT-5W44-G3070series" 2>/dev/null || true
nmcli dev disconnect wlp1s0 2>/dev/null || true
nmcli connection up "DIRECT-5W44-G3070series"
Error: invalid property 'wps-methods': 'wps-methods' not among [key-mgmt, wep-tx-keyidx, auth-alg, proto, pairwise, group, pmf, leap-username, wep-key0, wep-key1, wep-key2, wep-key3, wep-key-flags, wep-key-type, psk, psk-flags, leap-password, leap-password-flags, wps-method, fils].
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ lsmod | grep -E 'ath|iwm|brcm|mt76|i915|b43|rtw|iwlegacy'
ath11k_pci 32768 0
ath11k 671744 1 ath11k_pci
qmi_helpers 36864 1 ath11k
mac80211 1974272 1 ath11k
cfg80211 1572864 2 ath11k,mac80211
mhi 159744 2 ath11k_pci,qrtr_mhi
[nilesh@fedora Pictures]$ nmcli -s device show wlp1s0 | egrep -i 'GENERAL.STATE|GENERAL.CONNECTION|GENERAL.DRIVER|GENERAL.FIRMWARE|IP4.ADDRESS|IP6.ADDRESS|UDI'
egrep: warning: egrep is obsolescent; using grep -E
GENERAL.STATE: 30 (disconnected)
GENERAL.CONNECTION: --
[nilesh@fedora Pictures]$ lspci -nnk | grep -iA3 network
pcilib: Error reading /sys/bus/pci/devices/0000:00:08.3/label: Operation not permitted
01:00.0 Network controller [0280]: Qualcomm Technologies, Inc QCNFA765 Wireless Network Adapter [17cb:1103] (rev 01)
Subsystem: Lenovo Device [17aa:9309]
Kernel driver in use: ath11k_pci
Kernel modules: ath11k_pci
[nilesh@fedora Pictures]$ modinfo -F version ath11k_pci
[nilesh@fedora Pictures]$ modinfo -F version ath11k
[nilesh@fedora Pictures]$ sudo lspci -nnk | grep -iA3 network
[sudo] password for nilesh:
pcilib: Error reading /sys/bus/pci/devices/0000:00:08.3/label: Operation not permitted
01:00.0 Network controller [0280]: Qualcomm Technologies, Inc QCNFA765 Wireless Network Adapter [17cb:1103] (rev 01)
Subsystem: Lenovo Device [17aa:9309]
Kernel driver in use: ath11k_pci
Kernel modules: ath11k_pci
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ journalctl -b --no-pager | grep -A2 -B2 -i "DIRECT-5W44-G3070series" | tail -n 120
--
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 09:54:21 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 04 09:54:21 fedora NetworkManager[10910]: <info> [1783139061.5737] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0187] manager: NetworkManager state is now CONNECTED_SITE
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0606] device (wlp1s0): set-hw-addr: set MAC address to 52:D2:8A:91:5A:1E (scanning)
Jul 04 09:54:36 fedora NetworkManager[10910]: <warn> [1783139076.0875] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0877] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 04 09:54:36 fedora NetworkManager[10910]: <info> [1783139076.0877] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
--
Jul 04 09:59:42 fedora NetworkManager[10910]: <info> [1783139382.6091] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 04 09:59:46 fedora kdeconnectd[2713]: Cannot find Bluez 5 adapter for device search true
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.4760] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12294 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.5049] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12302 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.5295] audit: op="connection-update" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12310 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.5892] agent-manager: agent[0741764d996b8a5d,:1.268/nmcli-connect/1000]: agent registered
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6015] device (wlp1s0): Activation: starting connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0)
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6016] audit: op="connection-activate" uuid="b1b803b2-2091-4a78-a432-34d0bc598db0" name="DIRECT-5W44-G3070series" pid=12328 uid=1000 result="success"
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6017] device (wlp1s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6019] manager: NetworkManager state is now CONNECTING
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6538] device (wlp1s0): set-hw-addr: set-cloned MAC address to 10:E1:8E:84:3B:DA (permanent)
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6810] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6812] device (wlp1s0): Activation: (wifi) access point 'DIRECT-5W44-G3070series' has security, but secrets are required.
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6813] device (wlp1s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6814] sup-iface[f068a573b8e96005,6,wlp1s0]: wps: type pbc start...
--
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6825] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6827] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6828] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6829] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6829] Config: added 'scan_ssid' value '1'
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6829] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.6939] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
Jul 04 09:59:56 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 09:59:56 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 09:59:56 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 09:59:56 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.7381] device (wlp1s0): supplicant interface state: inactive -> authenticating
Jul 04 09:59:56 fedora NetworkManager[10910]: <info> [1783139396.7382] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> authenticating
Jul 04 09:59:56 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 09:59:56 fedora kernel: wlp1s0: authenticated
Jul 04 09:59:56 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
--
Jul 04 10:00:02 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=7
Jul 04 10:00:02 fedora wpa_supplicant[1397]: wlp1s0: Added BSSID 6e:f2:d8:06:d8:44 into ignore list, ignoring for 10 seconds
Jul 04 10:00:02 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 10:00:02 fedora NetworkManager[10910]: <info> [1783139402.5154] device (wlp1s0): supplicant interface state: associated -> disconnected
Jul 04 10:00:02 fedora NetworkManager[10910]: <info> [1783139402.5155] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
--
Jul 04 10:00:02 fedora NetworkManager[10910]: <info> [1783139402.5978] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> scanning
Jul 04 10:00:16 fedora kdeconnectd[2713]: Cannot find Bluez 5 adapter for device search true
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="DIRECT-5W44-G3070series"
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:17 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 10:00:17 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6121] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6122] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 04 10:00:17 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6153] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 04 10:00:17 fedora NetworkManager[10910]: <info> [1783139417.6153] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0203] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0206] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0207] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0657] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 10:00:22 fedora wpa_supplicant[1397]: nl80211: send_event_marker failed: Source based routing not supported
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0658] Config: added 'scan_ssid' value '1'
--
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.0860] device (p2p-dev-wlp1s0): supplicant management interface state: associated -> disconnected
Jul 04 10:00:22 fedora wpa_supplicant[1397]: wlp1s0: WPS-CANCEL
Jul 04 10:00:22 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:22 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 10:00:22 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.1311] device (wlp1s0): supplicant interface state: disconnected -> authenticating
Jul 04 10:00:22 fedora NetworkManager[10910]: <info> [1783139422.1312] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> authenticating
Jul 04 10:00:22 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:22 fedora kernel: wlp1s0: authenticated
Jul 04 10:00:22 fedora kernel: wlp1s0: associate with 6e:f2:d8:06:d8:44 (try 1/3)
--
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 10:00:32 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 04 10:00:32 fedora NetworkManager[10910]: <info> [1783139432.2536] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0201] device (wlp1s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0202] device (wlp1s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] device (wlp1s0): Activation: (wifi) connection 'DIRECT-5W44-G3070series' has security, and secrets exist. No new secrets needed.
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] Config: added 'ssid' value 'DIRECT-5W44-G3070series'
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] Config: added 'scan_ssid' value '1'
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0204] Config: added 'bgscan' value 'simple:30:-70:86400'
--
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.0205] Config: added 'psk' value '<hidden>'
Jul 04 10:00:47 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 10:00:47 fedora wpa_supplicant[1397]: wlp1s0: SME: Trying to authenticate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:47 fedora kernel: wlp1s0: authenticate with 6e:f2:d8:06:d8:44 (local address=10:e1:8e:84:3b:da)
Jul 04 10:00:47 fedora kernel: wlp1s0: send auth to 6e:f2:d8:06:d8:44 (try 1/3)
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3380] device (wlp1s0): supplicant interface state: scanning -> authenticating
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3380] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> authenticating
Jul 04 10:00:47 fedora wpa_supplicant[1397]: wlp1s0: Trying to associate with 6e:f2:d8:06:d8:44 (SSID='DIRECT-5W44-G3070series' freq=2422 MHz)
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3398] device (wlp1s0): supplicant interface state: authenticating -> associating
Jul 04 10:00:47 fedora NetworkManager[10910]: <info> [1783139447.3399] device (p2p-dev-wlp1s0): supplicant management interface state: authenticating -> associating
--
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DISCONNECTED bssid=6e:f2:d8:06:d8:44 reason=3 locally_generated=1
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: BSSID 6e:f2:d8:06:d8:44 ignore list count incremented to 2, ignoring for 10 seconds
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="DIRECT-5W44-G3070series" auth_failures=1 duration=10 reason=CONN_FAILED
Jul 04 10:00:57 fedora wpa_supplicant[1397]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 04 10:00:57 fedora NetworkManager[10910]: <info> [1783139457.4469] device (wlp1s0): supplicant interface state: associated -> disconnected
--
Jul 04 10:01:12 fedora wpa_supplicant[1397]: wlp1s0: Removed BSSID 6e:f2:d8:06:d8:44 from ignore list (clear)
Jul 04 10:01:12 fedora NetworkManager[10910]: <info> [1783139472.0590] device (wlp1s0): set-hw-addr: set MAC address to A6:AE:E6:6A:D9:8E (scanning)
Jul 04 10:01:12 fedora NetworkManager[10910]: <warn> [1783139472.0832] device (wlp1s0): Activation: failed for connection 'DIRECT-5W44-G3070series'
Jul 04 10:01:12 fedora NetworkManager[10910]: <info> [1783139472.0836] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
Jul 04 10:01:12 fedora NetworkManager[10910]: <info> [1783139472.0836] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address "10:E1:8E:84:3B:DA"
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization never
[nilesh@fedora Pictures]$ sudo sh -c 'cat > /etc/NetworkManager/conf.d/10-mac-scannning-off.conf <<EOF
[device]
wifi.scan-rand-mac-address=no
EOF'
[sudo] password for nilesh:
[nilesh@fedora Pictures]$ nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.background-scan no
Error: invalid property 'background-scan': 'background-scan' not among [ssid, mode, band, channel, bssid, mac-address, cloned-mac-address, generate-mac-address-mask, mac-address-blacklist, mac-address-denylist, mac-address-randomization, mtu, seen-bssids, hidden, powersave, wake-on-wlan, ap-isolation, channel-width].
[nilesh@fedora Pictures]$ # Force the profile to use your exact physical MAC address
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address "10:E1:8E:84:3B:DA"
# Tell NetworkManager to explicitly never randomize the MAC for this specific connection
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization 1
[nilesh@fedora Pictures]$ sudo sh -c 'cat > /etc/NetworkManager/conf.d/99-disable-bgscan.conf <<EOF
[device]
wifi.scan-rand-mac-address=no
wifi.bgscan=no
EOF'
[nilesh@fedora Pictures]$ # Reload the configuration files we just created
sudo systemctl restart NetworkManager
# Cycle the hardware interface down and up to flush the ath11k driver state machine
sudo ip link set wlp1s0 down
sleep 2
sudo ip link set wlp1s0 up
# Bring the connection back up cleanly
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$ # 1. Provide the password explicitly again
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# 2. Tell NM to save this password to disk (system-wide) rather than asking a user keyring agent
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless-security.psk-flags 0
[nilesh@fedora Pictures]$ # Force configuration reload
sudo systemctl reload NetworkManager
# Clear the interface state
sudo ip link set wlp1s0 down
sleep 1
sudo ip link set wlp1s0 up
# Trigger connection
nmcli connection up "DIRECT-5W44-G3070series"
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ # 1. Clear any conflicting keyring flags
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk-flags 0 2>/dev/null || nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless-security.psk-flags 0
# 2. Re-inject the password specifically into the wifi-sec object
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# 3. Force NetworkManager to write the changes cleanly to disk
sudo systemctl restart NetworkManager
# 4. Bring the connection up using the --ask flag
# (This forces the terminal to explicitly provide the credentials if the agent stalls)
nmcli connection up "DIRECT-5W44-G3070series" --ask
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=b1b803b2-2091-4a78-a432-34d0bc598db0 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$
[nilesh@fedora Pictures]$ # 1. Delete the broken connection profile completely
nmcli connection delete "DIRECT-5W44-G3070series"
# 2. Hard-reset the wpa_supplicant and NetworkManager configuration state
sudo systemctl restart wpa_supplicant
sudo systemctl restart NetworkManager
# 3. Flush the ath11k driver's hardware interface state
sudo ip link set wlp1s0 down
sleep 2
sudo ip link set wlp1s0 up
# 4. Create a completely fresh profile with explicit system-owned credentials
nmcli connection add type wifi ifname wlp1s0 con-name "DIRECT-5W44-G3070series" ssid "DIRECT-5W44-G3070series"
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.key-mgmt wpa-psk
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# 5. Enforce static MAC parameters on the clean connection straight out of the gate
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.cloned-mac-address "10:E1:8E:84:3B:DA"
nmcli connection modify "DIRECT-5W44-G3070series" 802-11-wireless.mac-address-randomization 1
# 6. Bring up the brand new connection
nmcli connection up "DIRECT-5W44-G3070series"
Connection 'DIRECT-5W44-G3070series' (b1b803b2-2091-4a78-a432-34d0bc598db0) successfully deleted.
Connection 'DIRECT-5W44-G3070series' (88c011a1-e58f-4023-866b-a0d59aa0f851) successfully added.
Passwords or encryption keys are required to access the wireless network 'DIRECT-5W44-G3070series'.
Warning: password for '802-11-wireless-security.psk' not given in 'passwd-file' and nmcli cannot ask without '--ask' option.
Error: Timeout expired (90 seconds)
[nilesh@fedora Pictures]$ # Force the password to write to the configuration file with system-wide flags
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk-flags 0
nmcli connection modify "DIRECT-5W44-G3070series" wifi-sec.psk "wqkKs2ZjBm"
# Bring it up while feeding the password directly into the handshake command
nmcli connection up "DIRECT-5W44-G3070series" passwd-file <(echo "802-11-wireless-security.psk:wqkKs2ZjBm")
Error: Connection activation failed: Secrets were required, but not provided
Hint: use 'journalctl -xe NM_CONNECTION=88c011a1-e58f-4023-866b-a0d59aa0f851 + NM_DEVICE=wlp1s0' to get more details.
[nilesh@fedora Pictures]$
^ permalink raw reply
* [PATCH ath-next] wifi: ath12k: fix ML-STA authentication timeout on QCC2072
From: Miaoqing Pan @ 2026-07-04 7:30 UTC (permalink / raw)
To: jjohnson; +Cc: ath12k, linux-wireless, linux-kernel, Miaoqing Pan
QCC2072 firmware interprets the MLO_LINK_ADD and MLO_START_AS_ACTIVE
flags to control the link state during MLO vdev start. MLO_LINK_ADD
indicates that a link is being added, while MLO_START_AS_ACTIVE specifies
that the link should become active during the start.
When an association link is added without setting MLO_START_AS_ACTIVE,
the firmware may transition the link into a suspended state. In this
case, authentication frames transmitted by the host can be dropped,
leading to repeated authentication retries and eventual timeout,
for example:
wlp1s0: send auth to <AP> (try 1/3)
wlp1s0: send auth to <AP> (try 2/3)
wlp1s0: send auth to <AP> (try 3/3)
wlp1s0: authentication with <AP> timed out
Avoid triggering this behavior by setting the MLO_START_AS_ACTIVE flag
when MLO_ASSOC_LINK is set, which tells the firmware that the current
vdev must not enter suspend mode
Note that this change relies on firmware behavior observed on the QCC2072
platform. The firmware on WCN7850 and QCN9274 does not use the
MLO_START_AS_ACTIVE flag, so this change is effectively a no-op on those
platforms
Tested-on: QCC2072 hw1.0 PCI WLAN.COL.1.0.c2-00068-QCACOLSWPL_V1_TO_SILICONZ-1
Tested-on: WCN7850 hw2.0 PCI WLAN.HMT.1.1.c5-00302-QCAHMTSWPL_V1.0_V2.0_SILICONZ-1.115823.3
Fixes: d8e1f4a19310 ("wifi: ath12k: enable QCC2072 support")
Signed-off-by: Miaoqing Pan <miaoqing.pan@oss.qualcomm.com>
---
drivers/net/wireless/ath/ath12k/wmi.c | 2 ++
drivers/net/wireless/ath/ath12k/wmi.h | 1 +
2 files changed, 3 insertions(+)
diff --git a/drivers/net/wireless/ath/ath12k/wmi.c b/drivers/net/wireless/ath/ath12k/wmi.c
index ad739bffcf88..800fa753021b 100644
--- a/drivers/net/wireless/ath/ath12k/wmi.c
+++ b/drivers/net/wireless/ath/ath12k/wmi.c
@@ -1229,6 +1229,8 @@ int ath12k_wmi_vdev_start(struct ath12k *ar, struct wmi_vdev_start_req_arg *arg,
ATH12K_WMI_FLAG_MLO_MCAST_VDEV) |
le32_encode_bits(arg->ml.link_add,
ATH12K_WMI_FLAG_MLO_LINK_ADD) |
+ le32_encode_bits(arg->ml.assoc_link,
+ ATH12K_WMI_FLAG_MLO_START_AS_ACTIVE) |
cpu_to_le32(ATH12K_WMI_FLAG_MLO_IEEE_LINK_IDX_VALID);
ml_params->ieee_link_id = cpu_to_le32(arg->ml.ieee_link_id);
diff --git a/drivers/net/wireless/ath/ath12k/wmi.h b/drivers/net/wireless/ath/ath12k/wmi.h
index 51f3426e1fcd..20e3939e8820 100644
--- a/drivers/net/wireless/ath/ath12k/wmi.h
+++ b/drivers/net/wireless/ath/ath12k/wmi.h
@@ -2954,6 +2954,7 @@ struct wmi_vdev_create_mlo_params {
#define ATH12K_WMI_FLAG_MLO_EMLSR_SUPPORT BIT(6)
#define ATH12K_WMI_FLAG_MLO_FORCED_INACTIVE BIT(7)
#define ATH12K_WMI_FLAG_MLO_LINK_ADD BIT(8)
+#define ATH12K_WMI_FLAG_MLO_START_AS_ACTIVE BIT(17)
#define ATH12K_WMI_FLAG_MLO_IEEE_LINK_IDX_VALID BIT(18)
#define ATH12K_WMI_FLAG_MLO_IEEE_LINK_IDX_VALID_PARTNER BIT(19)
base-commit: fa1b1469f1c5f0f54ed9dab80106a117e7736bfd
--
2.34.1
^ permalink raw reply related
* Re: rtw89: RTL8852BE P2P-device iftype and STA+P2P interface combination
From: Doug Brewer @ 2026-07-04 7:01 UTC (permalink / raw)
To: Ping-Ke Shih; +Cc: linux-wireless@vger.kernel.org
In-Reply-To: <263dd9579f594178bccaf866e7c5db90@realtek.com>
On Fri, Jul 3, 2026 at 8:43 AM Ping-Ke Shih wrote:
>
> Doug Brewer <brewer.doug@gmail.com> wrote:
> > On Wed, Jul 1, 2026 at 2:40 PM Doug Brewer wrote:
> > >
> > > On Tue, Jun 30, 2026 at 8:51 AM Ping-Ke Shih wrote:
> > > >
> > > > Doug Brewer wrote:
> > > > > On Mon, Jun 29, 2026 at 10:10 AM Ping-Ke Shih wrote:
> > > > > >
> > > > > > Doug Brewer wrote:
> > > > > > > Hi,
> > > > > > >
> > > > > > > I'm experimenting with Wi-Fi Display (Miracast sink) concurrent with an
> > > > > > > STA connection on an RTL8852BE (PCIe) using the mainline rtw89 driver
> > > > > > > (kernel 6.18.37).
> > > > > > >
> > > > > > > iw phy reports:
> > > > > > > Supported interface modes:
> > > > > > > * managed, AP, P2P-client, P2P-GO
> > > > > > > (no P2P-device)
> > > > > > > interface combinations are not supported
> > > > > > >
> > > > > > > In practice this blocks the standard P2P flow: there is no P2P-device
> > > > > > > iftype for a dedicated discovery context, and no advertised interface
> > > > > > > combination for managed + P2P-client coexistence.
> > > > > > >
> > > > > > > My questions:
> > > > > > > 1. is P2P-device iftype support planned for rtw89 on RTL885x? Is there a
> > > > > > > known technical blocker, or is it simply not yet implemented?
> > > > > >
> > > > > > We are planning to add P2P-device iftype. It needs to consider the cases of
> > > > > > channel context, conditions of power save, and etc. It will take some time.
> > > > > >
> > > > > > I think it would be okay that you use STA interface to do P2P negotiation,
> > > > > > and then create P2P-client or P2P-GO iftype then.
> > > > > >
> > > > > > > 2. would advertising a managed + P2P-client interface combination
> > > > > > > (single channel) be feasible on the current rtw89?
> > > > > >
> > > > > > This is a SCC which is supported.
> > > > > >
> > > > > > > 3. is MCC (#channels > 1) on the roadmap, or considered out of scope?
> > > > > >
> > > > > > Current support MCC as well. However, we are cooking new firmware to support
> > > > > > hw_scan with two operation channels -- which doesn't matter if you don't need
> > > > > > to do scan when MCC is operating.
> > > > >
> > > > > Thanks for the suggestion. I tried using the STA interface for P2P
> > > > > negotiation, and wanted to share what I found.
> > > > >
> > > > > With the STA connected (2.4GHz ch11) and an active p2p_connect, a
> > > > > wpa_supplicant -dd trace shows GO negotiation getting fairly far:
> > > > >
> > > > > Peer's GO-NEG Request is received
> > > > > send the GO-NEG Response on ch11, peer ACKs it (TX ack=1)
> > > > > State goes GO_NEG -> CONNECT
> > > > > then time out waiting for the GO-NEG Confirm, status=-1
> > > > >
> > > > > I select ch11 as the P2P operating channel (same as STA, SCC), while
> > > > > the peer's operating preference is 5GHz ch149. It looks like after we TX
> > > > > the Response, the radio doesn't stay on ch11 to listen for the Confirm,
> > > > > so the frame is missed -- presumably because the single radio is serving
> > > > > the STA connection.
> > > >
> > > > So, peer doesn't stay ch11 to complete he negotiation, right?
> > > >
> > > > What is the peer device you are using? Can you setup another RTL8852BE?
> > > > I suggest running simple scenario first to dig cause.
> > > >
> > > > 1. two peers make P2P group without any STA connection
> > > > 2. RTL8852BE with a STA connection, and peer without connection.
> > > >
> > > > >
> > > > > Aalso tested with the STA on 5GHz (ch149); the result is the same
> > > > > GO-NEG Confirm timeout.
> > > > >
> > > > > Is this the channel-context issue that P2P-device iftype will address?
> > > > > And with the current driver, is there any way to keep the P2P listen
> > > > > context on the operating channel during GO negotiation while STA is up?
> > > >
> > > > Before P2P negotiation completion, there is only one channel context.
> > > > The second interface (GC or GO) is created when the P2P role is decided
> > > > by P2P negotiation.
> > > >
> > > > You need to check supplicant log about channels on both peers. I think
> > > > remain-on-channel is the method supplicant switch channel to send
> > > > negotiation frames and to stay on listen channel.
> > > >
> > > > >
> > > > > (FWIW, passing an explicit freq= to p2p_connect is rejected with FAIL,
> > > > > whether or not it matches the STA channel.)
> > > >
> > > > Not sure why. In our side, it seems work.
> > > >
> > > >
> > > > I'd share a pair of wpa_supplicant .conf and wpa_cli commands we are testing
> > > > for reference.
> > >
> > > Great progress using your test conf and a second RTL8852BE. Results:
> > >
> > > Two RTL8852BE peers, no STA — P2P connects fine (GO/client, group formed,
> > > 4-way HS completed).
> > >
> > > One RTL8852BE with STA on 5GHz ch149, the other RTL8852BE with no STA,
> > > also succeeds. The GO comes up on ch153 while the STA stays on ch149 (so MCC),
> > > group formed, client connected. Both sides confirmed via iw dev
> > > (GO on ch153 + STA on ch149; peer client on ch153).
> > >
> > > So STA + P2P coexistence, including MCC, works fine between two 8852BE peers.
> > >
> > > p2p_no_group_iface=1 in your conf may have contributed, P2P runs on the main
> > > interface instead of a separate group interface.
> > >
> > > Thank you very much for the test conf and guidance.
> >
> > One more update. Two RTL8852BE peers (STA + P2P) work reliably, as
> > reported.
> >
> > However, with a Samsung phone as the peer, GO negotiation is
> > inconsistent — using your conf (including p2p_no_group_iface=1), the same
> > setup sometimes completes and sometimes fails with GO-NEG Confirm timeout
> > (status=-1).
> >
> > Do you have any suggestion for this case with a real phone peer?
>
> I'd suggest the simplest use case which your Samsung phone doesn't connect to
> an AP, and remove all STA networks from the phone. That means the phone only
> has one interface working on P2P.
Your suggestion worked!!! Thank you very much.
After removing all saved Wi-Fi networks from the Samsung phone
(so it runs only P2P, no STA), the GO negotiation became reliable,
and STA + P2P now coexist on rtl8852be.
> If you need to dig the problems related to P2P channels, I suggest you can
> setup RTL8852BE sniffer to capture packets on two channels simultaneously.
> One method is to install two RTL8852BE in a computer, and use single one
> wireshark to capture two interfaces (setup the two channels manually).
> The other is to setup two computers to capture each of two channels,
> and then merge the sniffer files (note that you must synchronize the
> host time to merge the files properly).
>
> Ping-Ke
Regards,
Doug
^ permalink raw reply
* [syzbot] [wireless?] [usb?] WARNING in __carl9170_tx_process_status
From: syzbot @ 2026-07-04 5:46 UTC (permalink / raw)
To: chunkeey, linux-kernel, linux-usb, linux-wireless, netdev,
syzkaller-bugs
Hello,
syzbot found the following issue on:
HEAD commit: dc59e4fea9d8 Linux 7.2-rc1
git tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
console output: https://syzkaller.appspot.com/x/log.txt?x=1792f9fe580000
kernel config: https://syzkaller.appspot.com/x/.config?x=6ec4d592e55f7960
dashboard link: https://syzkaller.appspot.com/bug?extid=381102a7292a374fe8a7
compiler: gcc (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for Debian) 2.44
syz repro: https://syzkaller.appspot.com/x/repro.syz?x=1125c289580000
C reproducer: https://syzkaller.appspot.com/x/repro.c?x=17049e89580000
Downloadable assets:
disk image: https://storage.googleapis.com/syzbot-assets/8540695a33d7/disk-dc59e4fe.raw.xz
vmlinux: https://storage.googleapis.com/syzbot-assets/e144bb9cdc33/vmlinux-dc59e4fe.xz
kernel image: https://storage.googleapis.com/syzbot-assets/6e3051bf9301/bzImage-dc59e4fe.xz
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+381102a7292a374fe8a7@syzkaller.appspotmail.com
------------[ cut here ]------------
__lockdep_enabled && !this_cpu_read(hardirqs_enabled)
WARNING: kernel/softirq.c:430 at __local_bh_enable_ip+0xbd/0x120 kernel/softirq.c:430, CPU#0: swapper/0/0
Modules linked in:
CPU: 0 UID: 0 PID: 0 Comm: swapper/0 Not tainted syzkaller #0 PREEMPT(lazy)
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 05/09/2026
RIP: 0010:__local_bh_enable_ip+0xbd/0x120 kernel/softirq.c:430
Code: 00 e8 a7 d1 0b 00 e8 62 10 45 00 fb 65 8b 05 7a c3 86 0b 85 c0 74 50 5b 5d c3 cc cc cc cc 65 8b 05 04 03 87 0b 85 c0 75 a0 90 <0f> 0b 90 eb 9a e8 59 12 45 00 eb 9b 48 89 ef e8 0f 0b 19 00 eb a4
RSP: 0018:ffffc90000007aa8 EFLAGS: 00010046
RAX: 0000000000000000 RBX: 0000000000000201 RCX: 1ffffffff15e7114
RDX: 0000000000000001 RSI: 0000000000000201 RDI: ffffffff8446537b
RBP: ffffffff8446537b R08: 0000000000000000 R09: ffffed1023c03a8b
R10: ffff88811e01d45b R11: 0000000000000000 R12: ffff88811c516705
R13: dffffc0000000000 R14: ffff88811e01b220 R15: ffff88811e01d440
FS: 0000000000000000(0000) GS:ffff888268640000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007ffdd9de6dc4 CR3: 00000001197ae000 CR4: 00000000003506f0
Call Trace:
<IRQ>
spin_unlock_bh include/linux/spinlock.h:396 [inline]
carl9170_get_queued_skb drivers/net/wireless/ath/carl9170/tx.c:531 [inline]
__carl9170_tx_process_status+0x13b/0x620 drivers/net/wireless/ath/carl9170/tx.c:668
carl9170_tx_process_status+0xf6/0x230 drivers/net/wireless/ath/carl9170/tx.c:701
carl9170_handle_command_response+0x3c8/0xc50 drivers/net/wireless/ath/carl9170/rx.c:219
carl9170_usb_rx_irq_complete+0xfc/0x1b0 drivers/net/wireless/ath/carl9170/usb.c:307
__usb_hcd_giveback_urb+0x38d/0x610 drivers/usb/core/hcd.c:1657
usb_hcd_giveback_urb+0x3ca/0x4a0 drivers/usb/core/hcd.c:1741
dummy_timer+0xda1/0x36c0 drivers/usb/gadget/udc/dummy_hcd.c:2005
__run_hrtimer kernel/time/hrtimer.c:2032 [inline]
__hrtimer_run_queues+0x462/0x9c0 kernel/time/hrtimer.c:2096
hrtimer_run_softirq+0x17d/0x2c0 kernel/time/hrtimer.c:2113
handle_softirqs+0x1dd/0x990 kernel/softirq.c:622
__do_softirq kernel/softirq.c:656 [inline]
invoke_softirq kernel/softirq.c:496 [inline]
__irq_exit_rcu+0x160/0x210 kernel/softirq.c:735
irq_exit_rcu+0x9/0x30 kernel/softirq.c:752
instr_sysvec_apic_timer_interrupt arch/x86/kernel/apic/apic.c:1062 [inline]
sysvec_apic_timer_interrupt+0x8f/0xb0 arch/x86/kernel/apic/apic.c:1062
</IRQ>
<TASK>
asm_sysvec_apic_timer_interrupt+0x1a/0x20 arch/x86/include/asm/idtentry.h:674
RIP: 0010:pv_native_safe_halt+0xf/0x20 arch/x86/kernel/paravirt.c:64
Code: 90 ac 01 c3 cc cc cc cc 0f 1f 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 66 90 0f 00 2d 03 8f 0b 00 fb f4 <e9> 3c f6 02 00 66 2e 0f 1f 84 00 00 00 00 00 66 90 90 90 90 90 90
RSP: 0018:ffffffff89407e20 EFLAGS: 00000242
RAX: 0000000000096967 RBX: ffffffff8942c8c0 RCX: ffffffff877af8e5
RDX: 0000000000000000 RSI: ffffffff890edf5a RDI: ffffffff87b15200
RBP: fffffbfff1285918 R08: 0000000000000001 R09: ffffed103eac670d
R10: ffff8881f563386b R11: 0000000000000000 R12: 0000000000000000
R13: 0000000000000000 R14: 1ffffffff1280fc8 R15: dffffc0000000000
arch_safe_halt arch/x86/include/asm/paravirt.h:62 [inline]
default_idle+0x9/0x10 arch/x86/kernel/process.c:768
default_idle_call+0x6c/0xb0 kernel/sched/idle.c:122
cpuidle_idle_call kernel/sched/idle.c:199 [inline]
do_idle+0x3a7/0x5b0 kernel/sched/idle.c:355
cpu_startup_entry+0x4f/0x60 kernel/sched/idle.c:454
rest_init+0x251/0x260 init/main.c:717
start_kernel+0x489/0x490 init/main.c:1175
x86_64_start_reservations+0x24/0x30 arch/x86/kernel/head64.c:310
x86_64_start_kernel+0x12b/0x130 arch/x86/kernel/head64.c:291
common_startup_64+0x13e/0x158
</TASK>
----------------
Code disassembly (best guess):
0: 90 nop
1: ac lods %ds:(%rsi),%al
2: 01 c3 add %eax,%ebx
4: cc int3
5: cc int3
6: cc int3
7: cc int3
8: 0f 1f 00 nopl (%rax)
b: 90 nop
c: 90 nop
d: 90 nop
e: 90 nop
f: 90 nop
10: 90 nop
11: 90 nop
12: 90 nop
13: 90 nop
14: 90 nop
15: 90 nop
16: 90 nop
17: 90 nop
18: 90 nop
19: 90 nop
1a: 90 nop
1b: f3 0f 1e fa endbr64
1f: 66 90 xchg %ax,%ax
21: 0f 00 2d 03 8f 0b 00 verw 0xb8f03(%rip) # 0xb8f2b
28: fb sti
29: f4 hlt
* 2a: e9 3c f6 02 00 jmp 0x2f66b <-- trapping instruction
2f: 66 2e 0f 1f 84 00 00 cs nopw 0x0(%rax,%rax,1)
36: 00 00 00
39: 66 90 xchg %ax,%ax
3b: 90 nop
3c: 90 nop
3d: 90 nop
3e: 90 nop
3f: 90 nop
---
This report is generated by a bot. It may contain errors.
See https://goo.gl/tpsmEJ for more information about syzbot.
syzbot engineers can be reached at syzkaller@googlegroups.com.
syzbot will keep track of this issue. See:
https://goo.gl/tpsmEJ#status for how to communicate with syzbot.
If the report is already addressed, let syzbot know by replying with:
#syz fix: exact-commit-title
If you want syzbot to run the reproducer, reply with:
#syz test: git://repo/address.git branch-or-commit-hash
If you attach or paste a git patch, syzbot will apply it before testing.
If you want to overwrite report's subsystems, reply with:
#syz set subsystems: new-subsystem
(See the list of subsystem names on the web dashboard)
If the report is a duplicate of another one, reply with:
#syz dup: exact-subject-of-another-report
If you want to undo deduplication, reply with:
#syz undup
^ permalink raw reply
* [syzbot] Monthly wireless report (Jul 2026)
From: syzbot @ 2026-07-04 4:32 UTC (permalink / raw)
To: linux-kernel, linux-wireless, netdev, syzkaller-bugs
Hello wireless maintainers/developers,
This is a 31-day syzbot report for the wireless subsystem.
All related reports/information can be found at:
https://syzkaller.appspot.com/upstream/s/wireless
During the period, 3 new issues were detected and 0 were fixed.
In total, 30 issues are still open and 178 have already been fixed.
There are also 17 low-priority issues.
Some of the still happening issues:
Ref Crashes Repro Title
<1> 6964 Yes WARNING in __cfg80211_ibss_joined (2)
https://syzkaller.appspot.com/bug?extid=7f064ba1704c2466e36d
<2> 1243 Yes INFO: task hung in reg_process_self_managed_hints
https://syzkaller.appspot.com/bug?extid=1f16507d9ec05f64210a
<3> 327 Yes INFO: task hung in ath9k_hif_usb_firmware_cb (3)
https://syzkaller.appspot.com/bug?extid=e9b1ff41aa6a7ebf9640
<4> 65 Yes WARNING in cfg80211_scan_done
https://syzkaller.appspot.com/bug?extid=189dcafc06865d38178d
<5> 42 Yes WARNING: ODEBUG bug in ieee80211_led_exit (2)
https://syzkaller.appspot.com/bug?extid=e84ecca6d1fa09a9b3d9
<6> 1032 Yes INFO: task hung in reg_check_chans_work (7)
https://syzkaller.appspot.com/bug?extid=a2de4763f84f61499210
<7> 204 Yes WARNING in ieee80211_free_ack_frame (2)
https://syzkaller.appspot.com/bug?extid=ac648b0525be1feba506
<8> 44 Yes possible deadlock in zd_chip_disable_rxtx
https://syzkaller.appspot.com/bug?extid=0ec3d1a6cf1fbe79c153
<9> 21 Yes WARNING in mac80211_hwsim_tx (2)
https://syzkaller.appspot.com/bug?extid=435fdb053cf98bfa5778
---
This report is generated by a bot. It may contain errors.
See https://goo.gl/tpsmEJ for more information about syzbot.
syzbot engineers can be reached at syzkaller@googlegroups.com.
To disable reminders for individual bugs, reply with the following command:
#syz set <Ref> no-reminders
To change bug's subsystems, reply with:
#syz set <Ref> subsystems: new-subsystem
You may send multiple commands in a single email message.
^ permalink raw reply
* [PATCH] wifi: ath9k: validate WMI response length before copying
From: Pengpeng Hou @ 2026-07-04 1:14 UTC (permalink / raw)
To: Toke Høiland-Jørgensen
Cc: linux-wireless, linux-kernel, Pengpeng Hou
ath9k_wmi_rsp_callback() removes the WMI command header from the skb
and then copies wmi->cmd_rsp_len bytes into the waiting response
buffer. The response length is expected by the waiting command path,
while the skb length comes from the device response. A short response
can therefore be read past the end of the skb data.
Record malformed short responses in the WMI state and return the error
to the waiting command path after completion. This avoids both the
out-of-bounds read and the false-success case where callers would
consume stale response data.
Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
---
drivers/net/wireless/ath/ath9k/wmi.c | 16 ++++++++++++++--
drivers/net/wireless/ath/ath9k/wmi.h | 1 +
2 files changed, 15 insertions(+), 2 deletions(-)
--- a/drivers/net/wireless/ath/ath9k/wmi.c
+++ b/drivers/net/wireless/ath/ath9k/wmi.c
@@ -206,8 +206,16 @@
{
skb_pull(skb, sizeof(struct wmi_cmd_hdr));
- if (wmi->cmd_rsp_buf != NULL && wmi->cmd_rsp_len != 0)
+ if (wmi->cmd_rsp_buf && wmi->cmd_rsp_len) {
+ if (skb->len < wmi->cmd_rsp_len) {
+ wmi->cmd_rsp_status = -EMSGSIZE;
+ goto complete;
+ }
memcpy(wmi->cmd_rsp_buf, skb->data, wmi->cmd_rsp_len);
+ }
+ wmi->cmd_rsp_status = 0;
+
+complete:
complete(&wmi->cmd_wait);
}
@@ -300,6 +305,7 @@
/* record the rsp buffer and length */
wmi->cmd_rsp_buf = rsp_buf;
wmi->cmd_rsp_len = rsp_len;
+ wmi->cmd_rsp_status = 0;
wmi->last_seq_id = wmi->tx_seq_id;
spin_unlock_irqrestore(&wmi->wmi_lock, flags);
@@ -356,9 +362,13 @@
return -ETIMEDOUT;
}
+ spin_lock_irqsave(&wmi->wmi_lock, flags);
+ ret = wmi->cmd_rsp_status;
+ spin_unlock_irqrestore(&wmi->wmi_lock, flags);
+
mutex_unlock(&wmi->op_mutex);
- return 0;
+ return ret;
out:
ath_dbg(common, WMI, "WMI failure for: %s\n", wmi_cmd_to_name(cmd_id));
--- a/drivers/net/wireless/ath/ath9k/wmi.h
+++ b/drivers/net/wireless/ath/ath9k/wmi.h
@@ -157,6 +157,7 @@
u16 tx_seq_id;
u8 *cmd_rsp_buf;
u32 cmd_rsp_len;
+ int cmd_rsp_status;
bool stopped;
struct list_head pending_tx_events;
^ permalink raw reply
* [PATCH] wifi: mwifiex: copy only event bodies after headers
From: Pengpeng Hou @ 2026-07-04 1:13 UTC (permalink / raw)
To: Brian Norris, Francesco Dolcini
Cc: linux-wireless, linux-kernel, Pengpeng Hou
mwifiex event packets carry a four-byte event cause followed by the
event body. The USB and SDIO receive paths read the event cause and
then copy adapter->event_body from skb->data + MWIFIEX_EVENT_HEADER_LEN,
but pass the full skb->len as the copy length. That makes the source
range extend past the skb by the size of the event header.
Require the event header before reading the event cause, and copy only
the bytes after the header into adapter->event_body. Keep the existing
per-path total event-size checks so this stays a narrow bounds fix.
Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
---
drivers/net/wireless/marvell/mwifiex/sdio.c | 10 ++++++++--
drivers/net/wireless/marvell/mwifiex/usb.c | 5 +++--
2 files changed, 11 insertions(+), 4 deletions(-)
--- a/drivers/net/wireless/marvell/mwifiex/sdio.c
+++ b/drivers/net/wireless/marvell/mwifiex/sdio.c
@@ -1712,12 +1712,18 @@
case MWIFIEX_TYPE_EVENT:
mwifiex_dbg(adapter, EVENT,
"info: --- Rx: Event ---\n");
+ if (skb->len < MWIFIEX_EVENT_HEADER_LEN) {
+ mwifiex_dbg(adapter, ERROR,
+ "event packet too short: %u\n", skb->len);
+ dev_kfree_skb_any(skb);
+ return -1;
+ }
adapter->event_cause = get_unaligned_le32(skb->data);
- if ((skb->len > 0) && (skb->len < MAX_EVENT_SIZE))
+ if (skb->len < MAX_EVENT_SIZE)
memcpy(adapter->event_body,
skb->data + MWIFIEX_EVENT_HEADER_LEN,
- skb->len);
+ skb->len - MWIFIEX_EVENT_HEADER_LEN);
/* event cause has been saved to adapter->event_cause */
adapter->event_received = true;
--- a/drivers/net/wireless/marvell/mwifiex/usb.c
+++ b/drivers/net/wireless/marvell/mwifiex/usb.c
@@ -91,7 +91,7 @@
adapter->cmd_resp_received = true;
break;
case MWIFIEX_USB_TYPE_EVENT:
- if (skb->len < sizeof(u32)) {
+ if (skb->len < MWIFIEX_EVENT_HEADER_LEN) {
mwifiex_dbg(adapter, ERROR,
"EVENT: skb->len too small\n");
ret = -1;
@@ -110,7 +110,8 @@
}
memcpy(adapter->event_body, skb->data +
- MWIFIEX_EVENT_HEADER_LEN, skb->len);
+ MWIFIEX_EVENT_HEADER_LEN,
+ skb->len - MWIFIEX_EVENT_HEADER_LEN);
adapter->event_received = true;
adapter->event_skb = skb;
^ permalink raw reply
* [PATCH] wifi: rsi: bound background scan probe request copy
From: Pengpeng Hou @ 2026-07-04 1:12 UTC (permalink / raw)
To: linux-wireless; +Cc: linux-kernel, Pengpeng Hou
rsi_send_bgscan_probe_req() allocates room for struct
rsi_bgscan_probe plus MAX_BGSCAN_PROBE_REQ_LEN bytes, but copies the
entire mac80211-generated probe request skb after the fixed header.
The probe request length depends on scan IEs and is not checked
against the fixed firmware buffer.
Reject generated probe requests that do not fit the firmware command
buffer before copying them into the skb.
Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
---
drivers/net/wireless/rsi/rsi_91x_mgmt.c | 6 ++++++
1 file changed, 6 insertions(+)
--- a/drivers/net/wireless/rsi/rsi_91x_mgmt.c
+++ b/drivers/net/wireless/rsi/rsi_91x_mgmt.c
@@ -1909,6 +1909,12 @@
if (!probereq_skb) {
dev_kfree_skb(skb);
return -ENOMEM;
+ }
+
+ if (probereq_skb->len > MAX_BGSCAN_PROBE_REQ_LEN) {
+ dev_kfree_skb(probereq_skb);
+ dev_kfree_skb(skb);
+ return -EINVAL;
}
memcpy(&skb->data[frame_len], probereq_skb->data, probereq_skb->len);
^ permalink raw reply
* [PATCH] wifi: libertas: reject short monitor TX frames
From: Pengpeng Hou @ 2026-07-04 1:11 UTC (permalink / raw)
To: linux-wireless; +Cc: libertas-dev, linux-kernel, Pengpeng Hou
In monitor mode, lbs_hard_start_xmit() casts skb->data to a
radiotap TX header, skips that header, and then copies the 802.11
destination address from offset 4 in the remaining frame. The
generic length check only rejects zero-length and oversized skbs, so
a short monitor frame can be read past the end of the skb data.
Require enough bytes for the radiotap TX header and the destination
address field before using the monitor-mode header layout.
Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
---
drivers/net/wireless/marvell/libertas/tx.c | 7 +++++++
1 file changed, 7 insertions(+)
--- a/drivers/net/wireless/marvell/libertas/tx.c
+++ b/drivers/net/wireless/marvell/libertas/tx.c
@@ -117,6 +117,13 @@
if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
+ if (skb->len < sizeof(*rtap_hdr) + 4 + ETH_ALEN) {
+ lbs_deb_tx("tx err: short monitor frame %u\n", skb->len);
+ dev->stats.tx_dropped++;
+ dev->stats.tx_errors++;
+ goto free;
+ }
+
/* set txpd fields from the radiotap header */
txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
^ permalink raw reply
* [PATCH] wifi: ath11k: validate regulatory capability phy_id
From: Pengpeng Hou @ 2026-07-04 1:10 UTC (permalink / raw)
To: Jeff Johnson; +Cc: linux-wireless, ath11k, linux-kernel, Pengpeng Hou
ath11k_wmi_tlv_ext_hal_reg_caps() copies firmware regulatory
capability records into soc->hal_reg_cap[] using reg_cap.phy_id as
the destination index. The loop count is bounded by num_phy, but the
phy_id embedded in each record is not checked against the fixed
MAX_RADIOS-sized destination array.
Reject firmware records whose phy_id does not fit soc->hal_reg_cap[]
before copying the parsed capability.
Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
---
drivers/net/wireless/ath/ath11k/wmi.c | 6 ++++++
1 file changed, 6 insertions(+)
--- a/drivers/net/wireless/ath/ath11k/wmi.c
+++ b/drivers/net/wireless/ath/ath11k/wmi.c
@@ -4856,6 +4856,12 @@
if (ret) {
ath11k_warn(soc, "failed to extract reg cap %d\n", i);
return ret;
+ }
+
+ if (reg_cap.phy_id >= ARRAY_SIZE(soc->hal_reg_cap)) {
+ ath11k_warn(soc, "invalid reg cap phy_id %u\n",
+ reg_cap.phy_id);
+ return -EINVAL;
}
memcpy(&soc->hal_reg_cap[reg_cap.phy_id],
^ permalink raw reply
* [PATCH] brcmfmac-cyw: clean up PMKID and cookie code
From: Bogdan Nicolae @ 2026-07-03 22:39 UTC (permalink / raw)
To: Arend van Spriel
Cc: linux-wireless, brcm80211, brcm80211-dev-list.pdl, linux-kernel
Avoid setting packet_id to cookie, which is always 0. Instead, use an
increasing atomic counter. Avoids mismatches of completion events later
in brcmf_notify_mgmt_tx_status, where packet_id != vif->mgmt_tx_id is
checked.
Also, zero out auth_status on initialization. Otherwise, garbage will
leak from the stack to the firmware (when bssid is less than 32 bytes
and/or when params->pmkid is set). Then, pass the params->pmkid to the
firmware (without it, the firmware caches a garbage PMKID on successful
authentication and denies a subsequent association request that includes
the PMKID).
Signed-off-by: Bogdan Nicolae <bogdan.nicolae@acm.org>
---
.../net/wireless/broadcom/brcm80211/brcmfmac/cyw/core.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/core.c
b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/core.c
index ce09d44fa..06e5dc79c 100644
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/core.c
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/core.c
@@ -2,6 +2,7 @@
/*
* Copyright (c) 2022 Broadcom Corporation
*/
+#include <linux/atomic.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <core.h>
@@ -23,6 +24,8 @@
#define MGMT_AUTH_FRAME_DWELL_TIME 4000
#define MGMT_AUTH_FRAME_WAIT_TIME (MGMT_AUTH_FRAME_DWELL_TIME + 100)
+static atomic_t brcmf_cyw_mgmt_tx_id = ATOMIC_INIT(0);
+
static int brcmf_cyw_set_sae_pwd(struct brcmf_if *ifp,
struct cfg80211_crypto_settings *crypto)
{
@@ -155,7 +158,7 @@ int brcmf_cyw_mgmt_tx(struct wiphy *wiphy, struct
wireless_dev *wdev,
memcpy(&mf_params->da[0], &mgmt->da[0], ETH_ALEN);
memcpy(&mf_params->bssid[0], &mgmt->bssid[0], ETH_ALEN);
- mf_params->packet_id = cpu_to_le32(*cookie);
+ mf_params->packet_id =
cpu_to_le32(atomic_inc_return(&brcmf_cyw_mgmt_tx_id));
memcpy(mf_params->data, &buf[DOT11_MGMT_HDR_LEN],
le16_to_cpu(mf_params->len));
@@ -200,7 +203,7 @@ brcmf_cyw_external_auth(struct wiphy *wiphy,
struct net_device *dev,
{
struct brcmf_if *ifp;
struct brcmf_pub *drvr;
- struct brcmf_auth_req_status_le auth_status;
+ struct brcmf_auth_req_status_le auth_status = {};
int ret = 0;
brcmf_dbg(TRACE, "Enter\n");
@@ -208,6 +211,8 @@ brcmf_cyw_external_auth(struct wiphy *wiphy,
struct net_device *dev,
ifp = netdev_priv(dev);
drvr = ifp->drvr;
if (params->status == WLAN_STATUS_SUCCESS) {
+ if (params->pmkid)
+ memcpy(auth_status.pmkid, params->pmkid,
WLAN_PMKID_LEN);
auth_status.flags = cpu_to_le16(BRCMF_EXTAUTH_SUCCESS);
} else {
bphy_err(drvr, "External authentication failed: status=%d\n",
--
2.54.0
^ permalink raw reply related
* Re: [PATCH] net: wireless: ralink: RT2X00: init EEPROM properly
From: Stanislaw Gruszka @ 2026-07-03 19:17 UTC (permalink / raw)
To: Corentin Labbe; +Cc: linux-kernel, linux-wireless
In-Reply-To: <20260703134932.3786771-1-clabbe@baylibre.com>
Hi,
On Fri, Jul 03, 2026 at 01:49:32PM +0000, Corentin Labbe wrote:
> I have an hostapd setup with a
> 01:00.0 Network controller: Ralink corp. RT2790 Wireless 802.11n 1T/2R PCIe
>
> The setup work fine on 6.18.26-gentoo
> It breaks on 6.18.33-gentoo (and still broken on 6.18.37)
>
> I found an hint in dmesg:
> On 6.18.26-gentoo I see:
> May 31 15:48:45 trash01 kernel: ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0003 detected
> On 6.18.33-gentoo I see:
> May 31 15:22:57 trash01 kernel: ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0006 detected
>
> The RF chipset seems badly detected.
>
> The problem was the EEPROM which was badly initialized.
Good catch. Some new fields were added to struct eeprom_93cx6, but
the rt2x00 driver was not updated to initalize those.
> Probably the origin was in some PCI change but unfortunately I couldn't play
> to bisect/reboot often the board with this card to do it.
>
> Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Acked-by: Stanislaw Gruszka <stf_xl@wp.pl>
Cc: stable@vger.kernel.org
> ---
> drivers/net/wireless/ralink/rt2x00/rt2400pci.c | 2 +-
> drivers/net/wireless/ralink/rt2x00/rt2500pci.c | 2 +-
> drivers/net/wireless/ralink/rt2x00/rt2800pci.c | 2 +-
> drivers/net/wireless/ralink/rt2x00/rt61pci.c | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/wireless/ralink/rt2x00/rt2400pci.c b/drivers/net/wireless/ralink/rt2x00/rt2400pci.c
> index 42e21e9f303b..15073b856adf 100644
> --- a/drivers/net/wireless/ralink/rt2x00/rt2400pci.c
> +++ b/drivers/net/wireless/ralink/rt2x00/rt2400pci.c
> @@ -1429,7 +1429,7 @@ static irqreturn_t rt2400pci_interrupt(int irq, void *dev_instance)
> */
> static int rt2400pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
> {
> - struct eeprom_93cx6 eeprom;
> + struct eeprom_93cx6 eeprom = {};
> u32 reg;
> u16 word;
> u8 *mac;
> diff --git a/drivers/net/wireless/ralink/rt2x00/rt2500pci.c b/drivers/net/wireless/ralink/rt2x00/rt2500pci.c
> index 36ddc5a69fa4..3536a0f31117 100644
> --- a/drivers/net/wireless/ralink/rt2x00/rt2500pci.c
> +++ b/drivers/net/wireless/ralink/rt2x00/rt2500pci.c
> @@ -1555,7 +1555,7 @@ static irqreturn_t rt2500pci_interrupt(int irq, void *dev_instance)
> */
> static int rt2500pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
> {
> - struct eeprom_93cx6 eeprom;
> + struct eeprom_93cx6 eeprom = {};
> u32 reg;
> u16 word;
> u8 *mac;
> diff --git a/drivers/net/wireless/ralink/rt2x00/rt2800pci.c b/drivers/net/wireless/ralink/rt2x00/rt2800pci.c
> index 14c45aba836f..853fd31d1362 100644
> --- a/drivers/net/wireless/ralink/rt2x00/rt2800pci.c
> +++ b/drivers/net/wireless/ralink/rt2x00/rt2800pci.c
> @@ -108,7 +108,7 @@ static void rt2800pci_eepromregister_write(struct eeprom_93cx6 *eeprom)
>
> static int rt2800pci_read_eeprom_pci(struct rt2x00_dev *rt2x00dev)
> {
> - struct eeprom_93cx6 eeprom;
> + struct eeprom_93cx6 eeprom = {};
> u32 reg;
>
> reg = rt2x00mmio_register_read(rt2x00dev, E2PROM_CSR);
> diff --git a/drivers/net/wireless/ralink/rt2x00/rt61pci.c b/drivers/net/wireless/ralink/rt2x00/rt61pci.c
> index d1cd5694e3c7..5dca2afb4b96 100644
> --- a/drivers/net/wireless/ralink/rt2x00/rt61pci.c
> +++ b/drivers/net/wireless/ralink/rt2x00/rt61pci.c
> @@ -2298,7 +2298,7 @@ static irqreturn_t rt61pci_interrupt(int irq, void *dev_instance)
> */
> static int rt61pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
> {
> - struct eeprom_93cx6 eeprom;
> + struct eeprom_93cx6 eeprom = {};
> u32 reg;
> u16 word;
> u8 *mac;
> --
> 2.53.0
>
^ permalink raw reply
* Re: [PATCH] wifi: p54: update stale wireless wiki URLs
From: Julian Braha @ 2026-07-03 18:33 UTC (permalink / raw)
To: Anas Khan, Christian Lamparter; +Cc: Kees Cook, linux-wireless, linux-kernel
In-Reply-To: <20260702102325.63955-1-anxkhn28@gmail.com>
On 7/2/26 11:23, Anas Khan wrote:
> The p54 wireless wiki links (wireless.wiki.kernel.org) return 404; the
> content moved to the Sphinx documentation site. Point them at the
> current wireless.docs.kernel.org pages.
Nice!
If you're interested in doing some more work like this, here's a list of
known dead links:
https://lore.kernel.org/lkml/6732bf08-41ee-40c4-83b2-4ae8bc0da7cf@gmail.com/
that I detected some time ago using kconfirm:
https://lore.kernel.org/all/6ec4df6d-1445-48ca-8f54-1d1a83c4716d@gmail.com/
- Julian Braha
^ permalink raw reply
* [PATCH v3] wifi: ath12k: fix survey indexing across bands
From: Matthew Leach @ 2026-07-03 15:56 UTC (permalink / raw)
To: Jeff Johnson, Vasanthakumar Thiagarajan, Baochen Qiang,
Ramya Gnanasekar, Karthikeyan Periyasamy
Cc: Kalle Valo, Pradeep Kumar Chitrapu, P Praneesh, Sriram R,
linux-wireless, ath12k, linux-kernel, kernel,
Rameshkumar Sundaram, Nicolas Escande, Matthew Leach,
Rameshkumar Sundaram, Jeff Johnson
When running 'iw dev wlan0 survey dump' the values for the channel busy
time have the same sequence across bands. This is caused by indexing
into the ath12k survey array using a band-local index rather than the
global index passed by mac80211. This results in surveys for 5 GHz and 6
GHz channels returning values from 2.4 GHz slots, making the survey
unusable on those bands. Further, there are redundant survey slots for
multi-radio/single-phy instances.
Fix by moving the survey data into ath12k_hw so multiple radios under a
single wiphy share one table, and index into it using the global
mac80211 index. A new spinlock in ath12k_hw serialises access to the
survey array, which is now shared across all radios under a single hw.
Band busy-times Before this fix:
2.4 GHz: 9, 2, 2, 2, 4, 2, 10, 16, 4, 12, 5
5 GHz: 9, 2, 2, 2, 4, 2, 10, 16, 4, 12, 5
6 GHz: 9, 2, 2, 2, 4, 2, 10, 16, 4, 12, 5
After this fix, times are independent:
2.4 GHz: 23, 5, 5, 12, 2, 12, 26, 5, 3, 1, 27
5 GHz: 30, 40, 29, 27, 118, 118, 112, 120, 11, 11, 11
6 GHz: 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
Tested-on: wcn7850 hw2.0 PCI WLAN.IOE_HMT.1.1-00018-QCAHMTSWPL_V1.0_V2.0_SILICONZ-1
Fixes: 4f242b1d6996 ("wifi: ath12k: support get_survey mac op for single wiphy")
Signed-off-by: Matthew Leach <matthew.leach@collabora.com>
---
Changes in v3:
- Fixed scope of survey_lock guard in ath12k_pdev_bss_chan_info_event().
- Link to v2: https://patch.msgid.link/20260702-ath12-survey-band-fix-v2-1-75b5bdf72a08@collabora.com
Changes in v2:
- Move survey[] from ath12k to ath12k_hw so multi-radio single-wiphy
setups share one global table (suggested by Rameshkumar Sundaram).
- Drop the ar->mac.sbands[] filter in freq_to_idx() so the WMI event
handlers use the same global index
- Add ah->survey_lock to serialise access to the shared survey table
- Update Fixes: tag to the correct commit
- Link to v1: https://patch.msgid.link/20260617-ath12-survey-band-fix-v1-1-e7d9555bb478@collabora.com
To: Jeff Johnson <jjohnson@kernel.org>
To: Sriram R <quic_srirrama@quicinc.com>
To: Kalle Valo <kvalo@kernel.org>
To: Rameshkumar Sundaram <quic_ramess@quicinc.com>
Cc: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
Cc: linux-wireless@vger.kernel.org
Cc: ath12k@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
---
drivers/net/wireless/ath/ath12k/core.h | 6 +++-
drivers/net/wireless/ath/ath12k/mac.c | 33 ++++++++++--------
drivers/net/wireless/ath/ath12k/wmi.c | 62 ++++++++++++++++++----------------
3 files changed, 56 insertions(+), 45 deletions(-)
diff --git a/drivers/net/wireless/ath/ath12k/core.h b/drivers/net/wireless/ath/ath12k/core.h
index 8be435535a4e..6ce2f7b3fa50 100644
--- a/drivers/net/wireless/ath/ath12k/core.h
+++ b/drivers/net/wireless/ath/ath12k/core.h
@@ -712,7 +712,6 @@ struct ath12k {
* avoid reporting garbage data.
*/
bool ch_info_can_report_survey;
- struct survey_info survey[ATH12K_NUM_CHANS];
struct completion bss_survey_done;
struct work_struct regd_update_work;
@@ -774,6 +773,11 @@ struct ath12k_hw {
*/
struct mutex hw_mutex;
enum ath12k_hw_state state;
+
+ /* protects survey[] shared across radios of this hw. */
+ spinlock_t survey_lock;
+ struct survey_info survey[ATH12K_NUM_CHANS];
+
bool regd_updated;
bool use_6ghz_regd;
diff --git a/drivers/net/wireless/ath/ath12k/mac.c b/drivers/net/wireless/ath/ath12k/mac.c
index 2cff9485c95a..daf9bc8722df 100644
--- a/drivers/net/wireless/ath/ath12k/mac.c
+++ b/drivers/net/wireless/ath/ath12k/mac.c
@@ -13348,52 +13348,54 @@ ath12k_mac_update_bss_chan_survey(struct ath12k *ar,
int ath12k_mac_op_get_survey(struct ieee80211_hw *hw, int idx,
struct survey_info *survey)
{
+ struct ath12k_hw *ah = hw->priv;
struct ath12k *ar;
struct ieee80211_supported_band *sband;
- struct survey_info *ar_survey;
+ struct survey_info *ah_survey;
+ int sband_idx = idx;
lockdep_assert_wiphy(hw->wiphy);
- if (idx >= ATH12K_NUM_CHANS)
+ if (sband_idx >= ATH12K_NUM_CHANS)
return -ENOENT;
sband = hw->wiphy->bands[NL80211_BAND_2GHZ];
- if (sband && idx >= sband->n_channels) {
- idx -= sband->n_channels;
+ if (sband && sband_idx >= sband->n_channels) {
+ sband_idx -= sband->n_channels;
sband = NULL;
}
if (!sband)
sband = hw->wiphy->bands[NL80211_BAND_5GHZ];
- if (sband && idx >= sband->n_channels) {
- idx -= sband->n_channels;
+ if (sband && sband_idx >= sband->n_channels) {
+ sband_idx -= sband->n_channels;
sband = NULL;
}
if (!sband)
sband = hw->wiphy->bands[NL80211_BAND_6GHZ];
- if (!sband || idx >= sband->n_channels)
+ if (!sband || sband_idx >= sband->n_channels)
return -ENOENT;
- ar = ath12k_mac_get_ar_by_chan(hw, &sband->channels[idx]);
+ ar = ath12k_mac_get_ar_by_chan(hw, &sband->channels[sband_idx]);
if (!ar) {
- if (sband->channels[idx].flags & IEEE80211_CHAN_DISABLED) {
+ if (sband->channels[sband_idx].flags & IEEE80211_CHAN_DISABLED) {
memset(survey, 0, sizeof(*survey));
return 0;
}
return -ENOENT;
}
- ar_survey = &ar->survey[idx];
+ ah_survey = &ah->survey[idx];
- ath12k_mac_update_bss_chan_survey(ar, &sband->channels[idx]);
+ ath12k_mac_update_bss_chan_survey(ar, &sband->channels[sband_idx]);
- spin_lock_bh(&ar->data_lock);
- memcpy(survey, ar_survey, sizeof(*survey));
- spin_unlock_bh(&ar->data_lock);
+ scoped_guard(spinlock_bh, &ah->survey_lock) {
+ memcpy(survey, ah_survey, sizeof(*survey));
+ }
- survey->channel = &sband->channels[idx];
+ survey->channel = &sband->channels[sband_idx];
if (ar->rx_channel == survey->channel)
survey->filled |= SURVEY_INFO_IN_USE;
@@ -15055,6 +15057,7 @@ static struct ath12k_hw *ath12k_mac_hw_allocate(struct ath12k_hw_group *ag,
mutex_init(&ah->hw_mutex);
+ spin_lock_init(&ah->survey_lock);
spin_lock_init(&ah->dp_hw.peer_lock);
INIT_LIST_HEAD(&ah->dp_hw.dp_peers_list);
diff --git a/drivers/net/wireless/ath/ath12k/wmi.c b/drivers/net/wireless/ath/ath12k/wmi.c
index b5e904a55aea..3f3730a6c2ac 100644
--- a/drivers/net/wireless/ath/ath12k/wmi.c
+++ b/drivers/net/wireless/ath/ath12k/wmi.c
@@ -6617,16 +6617,12 @@ static int ath12k_pull_roam_ev(struct ath12k_base *ab, struct sk_buff *skb,
return 0;
}
-static int freq_to_idx(struct ath12k *ar, int freq)
+static int freq_to_idx(struct ieee80211_hw *hw, int freq)
{
struct ieee80211_supported_band *sband;
- struct ieee80211_hw *hw = ath12k_ar_to_hw(ar);
int band, ch, idx = 0;
for (band = NL80211_BAND_2GHZ; band < NUM_NL80211_BANDS; band++) {
- if (!ar->mac.sbands[band].channels)
- continue;
-
sband = hw->wiphy->bands[band];
if (!sband)
continue;
@@ -7507,6 +7503,7 @@ static void ath12k_chan_info_event(struct ath12k_base *ab, struct sk_buff *skb)
{
struct wmi_chan_info_event ch_info_ev = {};
struct ath12k *ar;
+ struct ath12k_hw *ah;
struct survey_info *survey;
int idx;
/* HW channel counters frequency value in hertz */
@@ -7538,6 +7535,7 @@ static void ath12k_chan_info_event(struct ath12k_base *ab, struct sk_buff *skb)
return;
}
spin_lock_bh(&ar->data_lock);
+ ah = ath12k_ar_to_ah(ar);
switch (ar->scan.state) {
case ATH12K_SCAN_IDLE:
@@ -7549,8 +7547,8 @@ static void ath12k_chan_info_event(struct ath12k_base *ab, struct sk_buff *skb)
break;
}
- idx = freq_to_idx(ar, le32_to_cpu(ch_info_ev.freq));
- if (idx >= ARRAY_SIZE(ar->survey)) {
+ idx = freq_to_idx(ath12k_ar_to_hw(ar), le32_to_cpu(ch_info_ev.freq));
+ if (idx >= ARRAY_SIZE(ah->survey)) {
ath12k_warn(ab, "chan info: invalid frequency %d (idx %d out of bounds)\n",
ch_info_ev.freq, idx);
goto exit;
@@ -7563,14 +7561,16 @@ static void ath12k_chan_info_event(struct ath12k_base *ab, struct sk_buff *skb)
cc_freq_hz = (le32_to_cpu(ch_info_ev.mac_clk_mhz) * 1000);
if (ch_info_ev.cmd_flags == WMI_CHAN_INFO_START_RESP) {
- survey = &ar->survey[idx];
- memset(survey, 0, sizeof(*survey));
- survey->noise = le32_to_cpu(ch_info_ev.noise_floor);
- survey->filled = SURVEY_INFO_NOISE_DBM | SURVEY_INFO_TIME |
+ scoped_guard(spinlock_bh, &ah->survey_lock) {
+ survey = &ah->survey[idx];
+ memset(survey, 0, sizeof(*survey));
+ survey->noise = le32_to_cpu(ch_info_ev.noise_floor);
+ survey->filled = SURVEY_INFO_NOISE_DBM | SURVEY_INFO_TIME |
SURVEY_INFO_TIME_BUSY;
- survey->time = div_u64(le32_to_cpu(ch_info_ev.cycle_count), cc_freq_hz);
- survey->time_busy = div_u64(le32_to_cpu(ch_info_ev.rx_clear_count),
- cc_freq_hz);
+ survey->time = div_u64(le32_to_cpu(ch_info_ev.cycle_count), cc_freq_hz);
+ survey->time_busy = div_u64(le32_to_cpu(ch_info_ev.rx_clear_count),
+ cc_freq_hz);
+ }
}
exit:
spin_unlock_bh(&ar->data_lock);
@@ -7583,6 +7583,7 @@ ath12k_pdev_bss_chan_info_event(struct ath12k_base *ab, struct sk_buff *skb)
struct wmi_pdev_bss_chan_info_event bss_ch_info_ev = {};
struct survey_info *survey;
struct ath12k *ar;
+ struct ath12k_hw *ah;
u32 cc_freq_hz = ab->cc_freq_hz;
u64 busy, total, tx, rx, rx_bss;
int idx;
@@ -7623,28 +7624,31 @@ ath12k_pdev_bss_chan_info_event(struct ath12k_base *ab, struct sk_buff *skb)
return;
}
- spin_lock_bh(&ar->data_lock);
- idx = freq_to_idx(ar, le32_to_cpu(bss_ch_info_ev.freq));
- if (idx >= ARRAY_SIZE(ar->survey)) {
+ ah = ath12k_ar_to_ah(ar);
+
+ idx = freq_to_idx(ath12k_ar_to_hw(ar), le32_to_cpu(bss_ch_info_ev.freq));
+ if (idx >= ARRAY_SIZE(ah->survey)) {
ath12k_warn(ab, "bss chan info: invalid frequency %d (idx %d out of bounds)\n",
bss_ch_info_ev.freq, idx);
goto exit;
}
- survey = &ar->survey[idx];
+ scoped_guard(spinlock_bh, &ah->survey_lock) {
+ survey = &ah->survey[idx];
+
+ survey->noise = le32_to_cpu(bss_ch_info_ev.noise_floor);
+ survey->time = div_u64(total, cc_freq_hz);
+ survey->time_busy = div_u64(busy, cc_freq_hz);
+ survey->time_rx = div_u64(rx_bss, cc_freq_hz);
+ survey->time_tx = div_u64(tx, cc_freq_hz);
+ survey->filled |= (SURVEY_INFO_NOISE_DBM |
+ SURVEY_INFO_TIME |
+ SURVEY_INFO_TIME_BUSY |
+ SURVEY_INFO_TIME_RX |
+ SURVEY_INFO_TIME_TX);
+ }
- survey->noise = le32_to_cpu(bss_ch_info_ev.noise_floor);
- survey->time = div_u64(total, cc_freq_hz);
- survey->time_busy = div_u64(busy, cc_freq_hz);
- survey->time_rx = div_u64(rx_bss, cc_freq_hz);
- survey->time_tx = div_u64(tx, cc_freq_hz);
- survey->filled |= (SURVEY_INFO_NOISE_DBM |
- SURVEY_INFO_TIME |
- SURVEY_INFO_TIME_BUSY |
- SURVEY_INFO_TIME_RX |
- SURVEY_INFO_TIME_TX);
exit:
- spin_unlock_bh(&ar->data_lock);
complete(&ar->bss_survey_done);
rcu_read_unlock();
---
base-commit: 8cd9520d35a6c38db6567e97dd93b1f11f185dc6
change-id: 20260617-ath12-survey-band-fix-4b5e78579379
Best regards,
--
Matt
^ permalink raw reply related
* Re: [PATCH rtw-next v3] wifi: rtw89: check return values in rtw89_ops_start_ap()
From: d.morgun @ 2026-07-03 15:53 UTC (permalink / raw)
To: Ping-Ke Shih; +Cc: linux-wireless, linux-kernel, lvc-project
In-Reply-To: <d58f1e279a0944529669a1e49d96cac6@realtek.com>
Hi Ping-Ke,
Sorry for the confusion. The v3 suffix was added by mistake during local
iterations of the patch.
There is no public v1/v2 in the mailing list history. This is the first
version submitted upstream.
I will resend as v1 if needed.
Best regards,
Dmitry
Ping-Ke Shih писал(а) 2026-06-30 03:27:
> Dmitry Morgun <d.morgun@ispras.ru> wrote:
>> Subject: [PATCH rtw-next v3] wifi: rtw89: check return values in
>> rtw89_ops_start_ap()
>
> Patch is fine. But I don't remember why this is v3. Can you point out
> v1 and v2?
>
>> Several functions called in rtw89_ops_start_ap() may fail to allocate
>> skb or fail to send H2C command to firmware, returning -ENOMEM or an
>> error code. Their return values are ignored, so subsequent commands
>> are executed with incorrect state.
>>
>> Check the return values and propagate errors.
>>
>> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>>
>> Fixes: a52e4f2ce0f5 ("wifi: rtw89: implement ieee80211_ops::start_ap
>> and stop_ap")
>> Signed-off-by: Dmitry Morgun <d.morgun@ispras.ru>
>
> Acked-by: Ping-Ke Shih <pkshih@realtek.com>
^ permalink raw reply
* [PATCH v1 11/12] nfc: Unify style of spi_device_id arrays
From: Uwe Kleine-König (The Capable Hub) @ 2026-07-03 15:46 UTC (permalink / raw)
To: David Heidelberg, Mark Greer; +Cc: oe-linux-nfc, linux-kernel, linux-wireless
In-Reply-To: <cover.1783091699.git.u.kleine-koenig@baylibre.com>
Unify the style of the list terminator in spi_device_id arrays, that
is use a single space between { and }. This is the most common and
generally recommended style for these.
Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
---
drivers/nfc/st-nci/spi.c | 2 +-
drivers/nfc/st95hf/core.c | 2 +-
drivers/nfc/trf7970a.c | 3 +--
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/nfc/st-nci/spi.c b/drivers/nfc/st-nci/spi.c
index 1b97b2f3f441..7948c7e0c88c 100644
--- a/drivers/nfc/st-nci/spi.c
+++ b/drivers/nfc/st-nci/spi.c
@@ -273,7 +273,7 @@ static void st_nci_spi_remove(struct spi_device *dev)
static struct spi_device_id st_nci_spi_id_table[] = {
{ .name = ST_NCI_SPI_DRIVER_NAME },
{ .name = "st21nfcb-spi" },
- {}
+ { }
};
MODULE_DEVICE_TABLE(spi, st_nci_spi_id_table);
diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c
index d4e3049d138a..321fbe8aeca8 100644
--- a/drivers/nfc/st95hf/core.c
+++ b/drivers/nfc/st95hf/core.c
@@ -1050,7 +1050,7 @@ static const struct nfc_digital_ops st95hf_nfc_digital_ops = {
static const struct spi_device_id st95hf_id[] = {
{ .name = "st95hf" },
- {}
+ { }
};
MODULE_DEVICE_TABLE(spi, st95hf_id);
diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c
index 673989d5c927..c12653ce7462 100644
--- a/drivers/nfc/trf7970a.c
+++ b/drivers/nfc/trf7970a.c
@@ -2311,9 +2311,8 @@ MODULE_DEVICE_TABLE(of, trf7970a_of_match);
static const struct spi_device_id trf7970a_id_table[] = {
{ .name = "trf7970a" },
- {}
+ { }
};
-
MODULE_DEVICE_TABLE(spi, trf7970a_id_table);
static struct spi_driver trf7970a_spi_driver = {
--
2.55.0.11.g153666a7d9bb
^ permalink raw reply related
* [PATCH v1 10/12] nfc: Initialize spi_device_idarrays using member names
From: Uwe Kleine-König (The Capable Hub) @ 2026-07-03 15:46 UTC (permalink / raw)
To: David Heidelberg, Mark Greer; +Cc: oe-linux-nfc, linux-kernel, linux-wireless
In-Reply-To: <cover.1783091699.git.u.kleine-koenig@baylibre.com>
While being less compact, using named initializers allows to more easily
see which members of the structs are assigned which value without having
to lookup the declaration of the struct. And it's also more robust
against changes to the struct definition.
The mentioned robustness is relevant for a planned change to struct
spi_device_id that replaces .driver_data by an anonymous union.
This patch doesn't modify the compiled arrays, only their representation
in source form benefits.
Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
---
drivers/nfc/nfcmrvl/spi.c | 2 +-
drivers/nfc/st-nci/spi.c | 4 ++--
drivers/nfc/st95hf/core.c | 2 +-
drivers/nfc/trf7970a.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/nfc/nfcmrvl/spi.c b/drivers/nfc/nfcmrvl/spi.c
index f873f5380017..bc5140c194b6 100644
--- a/drivers/nfc/nfcmrvl/spi.c
+++ b/drivers/nfc/nfcmrvl/spi.c
@@ -188,7 +188,7 @@ static const struct of_device_id of_nfcmrvl_spi_match[] = {
MODULE_DEVICE_TABLE(of, of_nfcmrvl_spi_match);
static const struct spi_device_id nfcmrvl_spi_id_table[] = {
- { "nfcmrvl_spi" },
+ { .name = "nfcmrvl_spi" },
{ }
};
MODULE_DEVICE_TABLE(spi, nfcmrvl_spi_id_table);
diff --git a/drivers/nfc/st-nci/spi.c b/drivers/nfc/st-nci/spi.c
index 1bbda3d0a7dc..1b97b2f3f441 100644
--- a/drivers/nfc/st-nci/spi.c
+++ b/drivers/nfc/st-nci/spi.c
@@ -271,8 +271,8 @@ static void st_nci_spi_remove(struct spi_device *dev)
}
static struct spi_device_id st_nci_spi_id_table[] = {
- { ST_NCI_SPI_DRIVER_NAME },
- { "st21nfcb-spi" },
+ { .name = ST_NCI_SPI_DRIVER_NAME },
+ { .name = "st21nfcb-spi" },
{}
};
MODULE_DEVICE_TABLE(spi, st_nci_spi_id_table);
diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c
index 52fe81a557a0..d4e3049d138a 100644
--- a/drivers/nfc/st95hf/core.c
+++ b/drivers/nfc/st95hf/core.c
@@ -1049,7 +1049,7 @@ static const struct nfc_digital_ops st95hf_nfc_digital_ops = {
};
static const struct spi_device_id st95hf_id[] = {
- { "st95hf" },
+ { .name = "st95hf" },
{}
};
MODULE_DEVICE_TABLE(spi, st95hf_id);
diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c
index 8f36ff82be8b..673989d5c927 100644
--- a/drivers/nfc/trf7970a.c
+++ b/drivers/nfc/trf7970a.c
@@ -2310,7 +2310,7 @@ static const struct of_device_id trf7970a_of_match[] = {
MODULE_DEVICE_TABLE(of, trf7970a_of_match);
static const struct spi_device_id trf7970a_id_table[] = {
- { "trf7970a" },
+ { .name = "trf7970a" },
{}
};
--
2.55.0.11.g153666a7d9bb
^ permalink raw reply related
* [PATCH v1 09/12] nfc: Drop unused assignment of spi_device_id driver data
From: Uwe Kleine-König (The Capable Hub) @ 2026-07-03 15:46 UTC (permalink / raw)
To: David Heidelberg, Mark Greer; +Cc: oe-linux-nfc, linux-kernel, linux-wireless
In-Reply-To: <cover.1783091699.git.u.kleine-koenig@baylibre.com>
The drivers explicitly set the .driver_data member of struct
spi_device_id to zero without relying on that value. Drop these
unused assignments.
This patch doesn't modify the compiled arrays, only their representation
in source form benefits.
Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
---
drivers/nfc/nfcmrvl/spi.c | 2 +-
drivers/nfc/st-nci/spi.c | 4 ++--
drivers/nfc/st95hf/core.c | 2 +-
drivers/nfc/trf7970a.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/nfc/nfcmrvl/spi.c b/drivers/nfc/nfcmrvl/spi.c
index 34842ecc4a05..f873f5380017 100644
--- a/drivers/nfc/nfcmrvl/spi.c
+++ b/drivers/nfc/nfcmrvl/spi.c
@@ -188,7 +188,7 @@ static const struct of_device_id of_nfcmrvl_spi_match[] = {
MODULE_DEVICE_TABLE(of, of_nfcmrvl_spi_match);
static const struct spi_device_id nfcmrvl_spi_id_table[] = {
- { "nfcmrvl_spi", 0 },
+ { "nfcmrvl_spi" },
{ }
};
MODULE_DEVICE_TABLE(spi, nfcmrvl_spi_id_table);
diff --git a/drivers/nfc/st-nci/spi.c b/drivers/nfc/st-nci/spi.c
index 5e0b94050f90..1bbda3d0a7dc 100644
--- a/drivers/nfc/st-nci/spi.c
+++ b/drivers/nfc/st-nci/spi.c
@@ -271,8 +271,8 @@ static void st_nci_spi_remove(struct spi_device *dev)
}
static struct spi_device_id st_nci_spi_id_table[] = {
- {ST_NCI_SPI_DRIVER_NAME, 0},
- {"st21nfcb-spi", 0},
+ { ST_NCI_SPI_DRIVER_NAME },
+ { "st21nfcb-spi" },
{}
};
MODULE_DEVICE_TABLE(spi, st_nci_spi_id_table);
diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c
index 265ab10bbb61..52fe81a557a0 100644
--- a/drivers/nfc/st95hf/core.c
+++ b/drivers/nfc/st95hf/core.c
@@ -1049,7 +1049,7 @@ static const struct nfc_digital_ops st95hf_nfc_digital_ops = {
};
static const struct spi_device_id st95hf_id[] = {
- { "st95hf", 0 },
+ { "st95hf" },
{}
};
MODULE_DEVICE_TABLE(spi, st95hf_id);
diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c
index 3802081fb8ee..8f36ff82be8b 100644
--- a/drivers/nfc/trf7970a.c
+++ b/drivers/nfc/trf7970a.c
@@ -2310,7 +2310,7 @@ static const struct of_device_id trf7970a_of_match[] = {
MODULE_DEVICE_TABLE(of, trf7970a_of_match);
static const struct spi_device_id trf7970a_id_table[] = {
- {"trf7970a", 0},
+ { "trf7970a" },
{}
};
--
2.55.0.11.g153666a7d9bb
^ permalink raw reply related
* [PATCH v1 08/12] nfc: Unify style of of_device_id arrays
From: Uwe Kleine-König (The Capable Hub) @ 2026-07-03 15:46 UTC (permalink / raw)
To: David Heidelberg, Krzysztof Kozlowski, Mark Greer, Carl Lee,
Jakub Kicinski, Ian Ray, Paolo Abeni, Pengpeng Hou, Kees Cook,
Simon Horman, Tomasz Unger
Cc: oe-linux-nfc, linux-kernel, linux-wireless
In-Reply-To: <cover.1783091699.git.u.kleine-koenig@baylibre.com>
The most common style treewide is:
- A single space in the list terminator and no trailing ,
- No comma after a named initializers iff the closing } is on the same
line
Adapt the of_device_id arrays accordingly.
Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
---
drivers/nfc/nfcmrvl/i2c.c | 4 ++--
drivers/nfc/nfcmrvl/spi.c | 4 ++--
drivers/nfc/nxp-nci/i2c.c | 4 ++--
drivers/nfc/pn533/i2c.c | 8 ++++----
drivers/nfc/pn533/uart.c | 4 ++--
drivers/nfc/pn544/i2c.c | 4 ++--
drivers/nfc/s3fwrn5/i2c.c | 4 ++--
drivers/nfc/s3fwrn5/uart.c | 4 ++--
drivers/nfc/st-nci/i2c.c | 8 ++++----
drivers/nfc/st-nci/spi.c | 4 ++--
drivers/nfc/st21nfca/i2c.c | 6 +++---
drivers/nfc/st95hf/core.c | 2 +-
drivers/nfc/trf7970a.c | 5 ++---
13 files changed, 30 insertions(+), 31 deletions(-)
diff --git a/drivers/nfc/nfcmrvl/i2c.c b/drivers/nfc/nfcmrvl/i2c.c
index 687d2979b881..068c5d278a35 100644
--- a/drivers/nfc/nfcmrvl/i2c.c
+++ b/drivers/nfc/nfcmrvl/i2c.c
@@ -246,8 +246,8 @@ static void nfcmrvl_i2c_remove(struct i2c_client *client)
static const struct of_device_id of_nfcmrvl_i2c_match[] = {
- { .compatible = "marvell,nfc-i2c", },
- {},
+ { .compatible = "marvell,nfc-i2c" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_nfcmrvl_i2c_match);
diff --git a/drivers/nfc/nfcmrvl/spi.c b/drivers/nfc/nfcmrvl/spi.c
index 8dd71fed8493..34842ecc4a05 100644
--- a/drivers/nfc/nfcmrvl/spi.c
+++ b/drivers/nfc/nfcmrvl/spi.c
@@ -182,8 +182,8 @@ static void nfcmrvl_spi_remove(struct spi_device *spi)
}
static const struct of_device_id of_nfcmrvl_spi_match[] = {
- { .compatible = "marvell,nfc-spi", },
- {},
+ { .compatible = "marvell,nfc-spi" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_nfcmrvl_spi_match);
diff --git a/drivers/nfc/nxp-nci/i2c.c b/drivers/nfc/nxp-nci/i2c.c
index 39b43f8f3bf0..d424452934ec 100644
--- a/drivers/nfc/nxp-nci/i2c.c
+++ b/drivers/nfc/nxp-nci/i2c.c
@@ -355,8 +355,8 @@ static const struct i2c_device_id nxp_nci_i2c_id_table[] = {
MODULE_DEVICE_TABLE(i2c, nxp_nci_i2c_id_table);
static const struct of_device_id of_nxp_nci_i2c_match[] = {
- { .compatible = "nxp,nxp-nci-i2c", },
- {}
+ { .compatible = "nxp,nxp-nci-i2c" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_nxp_nci_i2c_match);
diff --git a/drivers/nfc/pn533/i2c.c b/drivers/nfc/pn533/i2c.c
index 2128083f0297..66d201c14a40 100644
--- a/drivers/nfc/pn533/i2c.c
+++ b/drivers/nfc/pn533/i2c.c
@@ -237,14 +237,14 @@ static void pn533_i2c_remove(struct i2c_client *client)
}
static const struct of_device_id of_pn533_i2c_match[] = {
- { .compatible = "nxp,pn532", },
+ { .compatible = "nxp,pn532" },
/*
* NOTE: The use of the compatibles with the trailing "...-i2c" is
* deprecated and will be removed.
*/
- { .compatible = "nxp,pn533-i2c", },
- { .compatible = "nxp,pn532-i2c", },
- {},
+ { .compatible = "nxp,pn533-i2c" },
+ { .compatible = "nxp,pn532-i2c" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_pn533_i2c_match);
diff --git a/drivers/nfc/pn533/uart.c b/drivers/nfc/pn533/uart.c
index e0d67cd2ac9b..83c1ccda0af6 100644
--- a/drivers/nfc/pn533/uart.c
+++ b/drivers/nfc/pn533/uart.c
@@ -238,8 +238,8 @@ static const struct serdev_device_ops pn532_serdev_ops = {
};
static const struct of_device_id pn532_uart_of_match[] = {
- { .compatible = "nxp,pn532", },
- {},
+ { .compatible = "nxp,pn532" },
+ { }
};
MODULE_DEVICE_TABLE(of, pn532_uart_of_match);
diff --git a/drivers/nfc/pn544/i2c.c b/drivers/nfc/pn544/i2c.c
index 50907a1974cd..7fde3aefae70 100644
--- a/drivers/nfc/pn544/i2c.c
+++ b/drivers/nfc/pn544/i2c.c
@@ -938,8 +938,8 @@ static void pn544_hci_i2c_remove(struct i2c_client *client)
}
static const struct of_device_id of_pn544_i2c_match[] = {
- { .compatible = "nxp,pn544-i2c", },
- {},
+ { .compatible = "nxp,pn544-i2c" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_pn544_i2c_match);
diff --git a/drivers/nfc/s3fwrn5/i2c.c b/drivers/nfc/s3fwrn5/i2c.c
index 499301a6fa3f..4ba762611711 100644
--- a/drivers/nfc/s3fwrn5/i2c.c
+++ b/drivers/nfc/s3fwrn5/i2c.c
@@ -211,8 +211,8 @@ static const struct i2c_device_id s3fwrn5_i2c_id_table[] = {
MODULE_DEVICE_TABLE(i2c, s3fwrn5_i2c_id_table);
static const struct of_device_id of_s3fwrn5_i2c_match[] = {
- { .compatible = "samsung,s3fwrn5-i2c", },
- {}
+ { .compatible = "samsung,s3fwrn5-i2c" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_s3fwrn5_i2c_match);
diff --git a/drivers/nfc/s3fwrn5/uart.c b/drivers/nfc/s3fwrn5/uart.c
index e17c599a2da5..8f142a255101 100644
--- a/drivers/nfc/s3fwrn5/uart.c
+++ b/drivers/nfc/s3fwrn5/uart.c
@@ -85,8 +85,8 @@ static const struct serdev_device_ops s3fwrn82_serdev_ops = {
};
static const struct of_device_id s3fwrn82_uart_of_match[] = {
- { .compatible = "samsung,s3fwrn82", },
- {},
+ { .compatible = "samsung,s3fwrn82" },
+ { }
};
MODULE_DEVICE_TABLE(of, s3fwrn82_uart_of_match);
diff --git a/drivers/nfc/st-nci/i2c.c b/drivers/nfc/st-nci/i2c.c
index ceb7d7450e47..152c20b6bb01 100644
--- a/drivers/nfc/st-nci/i2c.c
+++ b/drivers/nfc/st-nci/i2c.c
@@ -270,10 +270,10 @@ static const struct acpi_device_id st_nci_i2c_acpi_match[] = {
MODULE_DEVICE_TABLE(acpi, st_nci_i2c_acpi_match);
static const struct of_device_id of_st_nci_i2c_match[] = {
- { .compatible = "st,st21nfcb-i2c", },
- { .compatible = "st,st21nfcb_i2c", },
- { .compatible = "st,st21nfcc-i2c", },
- {}
+ { .compatible = "st,st21nfcb-i2c" },
+ { .compatible = "st,st21nfcb_i2c" },
+ { .compatible = "st,st21nfcc-i2c" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_st_nci_i2c_match);
diff --git a/drivers/nfc/st-nci/spi.c b/drivers/nfc/st-nci/spi.c
index 8632cc0cb305..5e0b94050f90 100644
--- a/drivers/nfc/st-nci/spi.c
+++ b/drivers/nfc/st-nci/spi.c
@@ -284,8 +284,8 @@ static const struct acpi_device_id st_nci_spi_acpi_match[] = {
MODULE_DEVICE_TABLE(acpi, st_nci_spi_acpi_match);
static const struct of_device_id of_st_nci_spi_match[] = {
- { .compatible = "st,st21nfcb-spi", },
- {}
+ { .compatible = "st,st21nfcb-spi" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_st_nci_spi_match);
diff --git a/drivers/nfc/st21nfca/i2c.c b/drivers/nfc/st21nfca/i2c.c
index 4e70f591af55..a4c93ff7c5b0 100644
--- a/drivers/nfc/st21nfca/i2c.c
+++ b/drivers/nfc/st21nfca/i2c.c
@@ -584,9 +584,9 @@ static const struct acpi_device_id st21nfca_hci_i2c_acpi_match[] = {
MODULE_DEVICE_TABLE(acpi, st21nfca_hci_i2c_acpi_match);
static const struct of_device_id of_st21nfca_i2c_match[] = {
- { .compatible = "st,st21nfca-i2c", },
- { .compatible = "st,st21nfca_i2c", },
- {}
+ { .compatible = "st,st21nfca-i2c" },
+ { .compatible = "st,st21nfca_i2c" },
+ { }
};
MODULE_DEVICE_TABLE(of, of_st21nfca_i2c_match);
diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c
index 1ecd47c6518e..265ab10bbb61 100644
--- a/drivers/nfc/st95hf/core.c
+++ b/drivers/nfc/st95hf/core.c
@@ -1056,7 +1056,7 @@ MODULE_DEVICE_TABLE(spi, st95hf_id);
static const struct of_device_id st95hf_spi_of_match[] = {
{ .compatible = "st,st95hf" },
- {},
+ { }
};
MODULE_DEVICE_TABLE(of, st95hf_spi_of_match);
diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c
index bc01b46f461c..3802081fb8ee 100644
--- a/drivers/nfc/trf7970a.c
+++ b/drivers/nfc/trf7970a.c
@@ -2304,10 +2304,9 @@ static const struct dev_pm_ops trf7970a_pm_ops = {
};
static const struct of_device_id trf7970a_of_match[] = {
- {.compatible = "ti,trf7970a",},
- {},
+ { .compatible = "ti,trf7970a" },
+ { }
};
-
MODULE_DEVICE_TABLE(of, trf7970a_of_match);
static const struct spi_device_id trf7970a_id_table[] = {
--
2.55.0.11.g153666a7d9bb
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox