From patchwork Tue Jun 6 12:49:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Berg X-Patchwork-Id: 690140 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DD103C77B73 for ; Tue, 6 Jun 2023 12:50:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237709AbjFFMuF (ORCPT ); Tue, 6 Jun 2023 08:50:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48802 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237896AbjFFMuC (ORCPT ); Tue, 6 Jun 2023 08:50:02 -0400 Received: from sipsolutions.net (s3.sipsolutions.net [IPv6:2a01:4f8:191:4433::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4FFBF10F2 for ; Tue, 6 Jun 2023 05:49:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:To:From:Content-Type:Sender:Reply-To:Cc:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-To:Resent-Cc: Resent-Message-ID:In-Reply-To:References; bh=IaKLClW8EVSg4irYJthsOc1cLxiUBQInokonmlGCztc=; t=1686055779; x=1687265379; b=VnWViWcTf55NSjyFrcMFT0NZOjR6rwTxipoJ00UMQMVGi9fxS1QFpGTg3q9F3hHQDuFKGZM8hXt 4GoBdV+bEq9ZtXyRb2WXbAPswDqnDK3paqCMjHtBJto7vddhNHlFNDrpZrn9Spwn0XCuWlEAVx3I2 tSbaINxaBpjFSKIsDPvbXr+6v2TW4hAgzZDTEbvvacMFmwI2229DwNmUYSzgRPhn3U8EbzJBcAcEr fPqBzvTJkxrZgvQpIzE3LZ5BdneQ/o3+0o0f/Ek2vOiKssiOCciBlxd9WMqEN/iJ3XtqdNDzZ3CRh xM0UTeRm/bYeKWg7/id39Q5iAGkGcoL2kNNw==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from ) id 1q6W81-00FZDP-1x for linux-wireless@vger.kernel.org; Tue, 06 Jun 2023 14:49:37 +0200 From: Johannes Berg To: linux-wireless@vger.kernel.org Subject: [PATCH 00/14] wifi: work cleanups part 1 Date: Tue, 6 Jun 2023 14:49:19 +0200 Message-Id: <20230606124933.181107-1-johannes@sipsolutions.net> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org This is the first part of work cleanups, in particular this also fixes the SMPS work deadlock issue with multi-link, since the wiphy works are canceled more easily. I'm planning on taking this into the tree and then building on it for further simplifications - once most the works are converted (except mac80211 restart hw, I think; help welcome) and we see that everything holds the wiphy_lock(), we can start cleaning up all the locking... johannes