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 8759CEB64D8 for ; Tue, 20 Jun 2023 09:00:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231924AbjFTJAm (ORCPT ); Tue, 20 Jun 2023 05:00:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57412 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231829AbjFTJAj (ORCPT ); Tue, 20 Jun 2023 05:00:39 -0400 Received: from sipsolutions.net (s3.sipsolutions.net [IPv6:2a01:4f8:191:4433::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 66C9810F0; Tue, 20 Jun 2023 02:00:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=MIME-Version:Content-Transfer-Encoding: Content-Type:References:In-Reply-To:Date:To:From:Subject:Message-ID:Sender: Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-To: Resent-Cc:Resent-Message-ID; bh=fqqJU+ep78UKaBVUFoBrywwL/ir5PEJDL2u/mTEGnJo=; t=1687251630; x=1688461230; b=kscnoBEY7Eu03mPc8sog1TzY7QUspS8m7HewNovK+HYTToI a9Aogl82R2UaU4/WfiAkLD+ngOfE5qhsaUH+e/b1nmLzlRPqF/jy+DOpvtKMVD987w/+2WcdUgjs4 yq2BEDcX5tii4Iizfrmv1aJZSOVX3m3Kr6DSqF9ul6fuo8lU8OIOLxpBmjFrC0vL3LH4zJhPSVq8p /2rJXMdI/mysSMYGSQjFpv2otg510DvZkLBdmOjmKw7LMS8XKpe5cKD0niyHa0RiZAXN6bP6UDh7T 2xDh+mlQiiA7tG/fIh4dTD34Ws0a0Q3mSoYkRG+jcBtekclJLHXUmZUrfJgXX6Dw==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from ) id 1qBXDp-00CKIa-1c; Tue, 20 Jun 2023 11:00:21 +0200 Message-ID: <0586c33fa2303dc184ef106b1d453ec2b183f45e.camel@sipsolutions.net> Subject: Re: [PATCH 1/1] wifi: cfg80211: Allow multiple userpsace applications to receive the same registered management frame. From: Johannes Berg To: "quentin.feraboli" , davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, linux-wireless@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Date: Tue, 20 Jun 2023 11:00:20 +0200 In-Reply-To: <20230620085751.31329-1-quentin.feraboli@softathome.com> References: <20230620085751.31329-1-quentin.feraboli@softathome.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.48.3 (3.48.3-1.fc38) MIME-Version: 1.0 X-malware-bazaar: not-scanned Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2023-06-20 at 10:57 +0200, quentin.feraboli wrote: > Currently, only one application can listen to a management frame type. >=20 This is incorrect, since there's some responsibility involved when userspace subscribes to this, and if multiple are subscribed then they cannot all take those responsibilities. johannes