From mboxrd@z Thu Jan 1 00:00:00 1970 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 7B62AC433F5 for ; Thu, 12 May 2022 14:33:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1355326AbiELOd1 (ORCPT ); Thu, 12 May 2022 10:33:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52564 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1355337AbiELOd0 (ORCPT ); Thu, 12 May 2022 10:33:26 -0400 Received: from relay9-d.mail.gandi.net (relay9-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::229]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0D92425D130; Thu, 12 May 2022 07:33:19 -0700 (PDT) Received: (Authenticated sender: miquel.raynal@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id 5B329FF80F; Thu, 12 May 2022 14:33:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1652365998; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=0Nolu4+cxZot8KO9Bdp6XNPXS6bQvguk5M6CgMmIybk=; b=gBmQ5J0s5UAv4jRioQSfuDA4lqrk9vZfaEN0od+FtwB6gtHI7bdD32UviPwyG7RibqhUsb LQnWPD/adT3aW7yYQ+//nrJfUn6pR4odm1Uv0EwbEGtgPc7CajTUZRO0YUQSr6NQ5/FyI0 NWYG8VRvPhvj1epWdRI0lIc7ARVLzt32LSVjwc8EfVu6GKHe6P/jZlblic0gZ2mz/fTjsU stwkCxYp8Q1emwcAxGFga2ABDNvWUj3mzOYbNpL+jFZDzFWLnVI7nkT1ausVavVgikDp4r 0Y42A2CKl4vp2uh+aRvML9enGfIMf6S2DkWX+ysgz42IkyA1jX09CLiuim23Fw== From: Miquel Raynal To: Alexander Aring , Stefan Schmidt , linux-wpan@vger.kernel.org Cc: "David S. Miller" , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org, David Girault , Romuald Despres , Frederic Blain , Nicolas Schodet , Thomas Petazzoni , Miquel Raynal Subject: [PATCH wpan-next v2 00/11] ieee802154: Synchronous Tx support Date: Thu, 12 May 2022 16:33:03 +0200 Message-Id: <20220512143314.235604-1-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-wpan@vger.kernel.org Hello, New series bringing support for that famous synchronous Tx API for MLME commands. MLME commands will be used for during scan operations. We need to be able to be sure that all transfers finished and that no transfer will be queued for a short moment. Cheers, Miquèl Changes in v2: * Updated the main tx function error path. * Added a missing atomic_dec_at_test() call on the hold counter. * Always called (upon a certain condition) the queue wakeup helper from the release queue helper (and similarly in the hold helper) and squashed two existing patches in it to simplify the series. * Introduced a mutex to serialize accesses to the increment/decrement of the hold counter and the wake up call. * Added a warning in case an MLME Tx gets triggered while the device was stopped. * Used the rtnl to ensure the device cannot be stopped while an MLME transmission is ongoing. Changes in v1 since this series got extracted from a bigger change: * Introduced a new atomic variable to know when the queue is actually stopped. So far we only had an atomic to know when the queue was held (indicates a transitioning state towards a stopped queue only) and another atomic indicating if a transfer was still ongoing at this point (used by the wait logic as a condition to wake up). Miquel Raynal (11): net: mac802154: Rename the synchronous xmit worker net: mac802154: Rename the main tx_work struct net: mac802154: Enhance the error path in the main tx helper net: mac802154: Follow the count of ongoing transmissions net: mac802154: Bring the hability to hold the transmit queue net: mac802154: Create a hot tx path net: mac802154: Introduce a helper to disable the queue net: mac802154: Introduce a tx queue flushing mechanism net: mac802154: Introduce a synchronous API for MLME commands net: mac802154: Add a warning in the hot path net: mac802154: Add a warning in the slow path include/net/cfg802154.h | 7 ++ include/net/mac802154.h | 27 -------- net/ieee802154/core.c | 3 + net/mac802154/cfg.c | 4 +- net/mac802154/ieee802154_i.h | 37 +++++++++- net/mac802154/main.c | 2 +- net/mac802154/tx.c | 126 +++++++++++++++++++++++++++++++---- net/mac802154/util.c | 67 +++++++++++++++++-- 8 files changed, 220 insertions(+), 53 deletions(-) -- 2.27.0