Received: by 2002:a05:6a10:17d3:0:0:0:0 with SMTP id hz19csp1651716pxb; Mon, 12 Apr 2021 03:28:36 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxTqdKscU8wZIRLyNTQWW1/c/Djx3HnULLImhkwNXPcdKApsCvwVFq/uJFpWXZAlDYQKyJ0 X-Received: by 2002:a17:90b:1993:: with SMTP id mv19mr28477410pjb.193.1618223316035; Mon, 12 Apr 2021 03:28:36 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1618223316; cv=none; d=google.com; s=arc-20160816; b=Hq3CK8QZr1UiokiiTUfMhjKvXuTuuFfI07gPNd/gBD0SYSuYNFdFSik/NtX2ZeddJ5 T7r9g/4OQgD8LWXN2Aqhbg+ao810I1M0p4BZhziMzyPg2juSyWZZnBP8yzgitZ2ytCdi uCBbhYa90tCcBhM133nN2Easl5JTaNqujOIOEYKMF1nE4Ac4NzfLlEj9DUiijVH3TADa WG46gW9kUVQDkSxPSd5NJdSv8Qx6KzNHSXyU9AdtLtKvQDbZJ6kq+9YAmM6CJGCQmF+H O3BIU8hSB7dnOu/p0pLnFcfwtF+cU5Y0CcyYH/mfZzAHon2MCQj0+r+ZElNv+VQr30A9 K6pQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:subject:date:message-id:user-agent:cc:to :references:in-reply-to:from:content-transfer-encoding:mime-version; bh=VL41kWbzhGOTP7TUYZCv2JHzH0z/spQRDnSAj6biSxM=; b=T73KWAqjCrLNhAVMSmZIBPAzqEfAZVYU3cHv2iEwKI0fHErumtW+StJC5RTDrONvOI 31B+ySYNs3CGo8Mglk85v5dfV1sktVovrVWsaicZwSlLqFs1uINWweEML8tf/WWNFo7n AQ9BixkDACINB3NUeKWyZ3Zt58rKgNtwd0oXmt0Vu85Ph8lyRJdwAeYoeYy6hwfJWIDy yjjkPWacsYIAATJyKFTY+pJ5HDVxHTho5DVeuONpWA/QO/AQtIXGgBlvzsVrlNETFFaZ 56lDck8Qv9Lh7XtKJVJ2++4MfcNvzk0S2i/Q22oLYD4MlsjexTNlJUycqE9LUo/YICVM XoyA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-wireless-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-wireless-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id o6si1820871pfu.103.2021.04.12.03.28.23; Mon, 12 Apr 2021 03:28:36 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-wireless-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-wireless-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-wireless-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239267AbhDLK2B (ORCPT + 99 others); Mon, 12 Apr 2021 06:28:01 -0400 Received: from paleale.coelho.fi ([176.9.41.70]:44606 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S239060AbhDLK1o (ORCPT ); Mon, 12 Apr 2021 06:27:44 -0400 Received: from 91-156-6-193.elisa-laajakaista.fi ([91.156.6.193] helo=kveik.lan) by farmhouse.coelho.fi with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lVtms-000KwV-TF; Mon, 12 Apr 2021 13:27:24 +0300 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Luca Coelho In-Reply-To: References: To: Luca Coelho Cc: kvalo@codeaurora.org, linux-wireless@vger.kernel.org User-Agent: pwcli/0.1.0-git (https://github.com/kvalo/pwcli/) Python/3.9.2 Message-Id: Date: Mon, 12 Apr 2021 13:27:24 +0300 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on farmhouse.coelho.fi X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, TVD_RCVD_IP autolearn=ham autolearn_force=no version=3.4.5-pre1 Subject: Re: [PATCH 1/8] iwlwifi: mvm: don't disconnect immediately if we don't hear beacons after CSA Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Luca Coelho wrote: > From: Emmanuel Grumbach > > When we switch channel, we may miss a few beacons on the > new channel. Don't disconnect if the time event for the > switch ends before we hear the beacons. > > Note that this is relevant only for old devices that still > use the TIME_EVENT firmware API for channel switch. > > The check that we hear a beacon before the time event > ends was meant to be used for the association time event > and not for the channel switch time event. > > Signed-off-by: Emmanuel Grumbach > Signed-off-by: Luca Coelho 7 patches applied to iwlwifi-next.git, thanks. 55479e240a84 iwlwifi: mvm: don't disconnect immediately if we don't hear beacons after CSA 668b20543dba iwlwifi: mvm: don't WARN if we can't remove a time event 5bae940ed691 iwlwifi: bump FW API to 63 for AX devices 0e6f59832e4a iwlwifi: trans/pcie: defer transport initialisation e7a33279d670 iwlwifi: fw: print out trigger delay when collecting data 3ba2a6e76c03 iwlwifi: pcie: Change ma product string name 1a9674efd536 iwlwifi: dbg: disable ini debug in 9000 family and below