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 E7528EB64D8 for ; Thu, 22 Jun 2023 16:25:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230467AbjFVQZX (ORCPT ); Thu, 22 Jun 2023 12:25:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58584 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230242AbjFVQZW (ORCPT ); Thu, 22 Jun 2023 12:25:22 -0400 Received: from nbd.name (nbd.name [46.4.11.11]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A91A11FC1 for ; Thu, 22 Jun 2023 09:25:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=nbd.name; s=20160729; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:Subject:From :References:To:MIME-Version:Date:Message-ID:Sender:Reply-To:Cc:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=afW1+tBp0pgsziisUIorxJrESavgT5MqBiFP6TKxpVE=; b=mtmltRK3OJiMCOKg24SvVeMKXX 2hs42WNegXRpgXQ5vIIwstGKk8sxeU6OY9mna63B3vOj8nEO1y/y1o6NzY1q6wtHiqlT3mZl+40DP lDLffy7b/lVLkdwtd7CsOZEmJu/RzWe1UiMMd/92pAbSvZXLCR7p4h01a5l4nbngKYno=; Received: from p4ff133b9.dip0.t-ipconnect.de ([79.241.51.185] helo=nf.local) by ds12 with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1qCN7X-008uxg-SD; Thu, 22 Jun 2023 18:25:19 +0200 Message-ID: <2815ff55-5b5d-1412-5694-7692337bc473@nbd.name> Date: Thu, 22 Jun 2023 18:25:18 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.12.0 Content-Language: en-US To: Johannes Berg , linux-wireless@vger.kernel.org References: <20230622160501.40666-1-nbd@nbd.name> From: Felix Fietkau Subject: Re: [PATCH] cfg80211: fix sband iftype data lookup for AP_VLAN In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On 22.06.23 18:07, Johannes Berg wrote: > On Thu, 2023-06-22 at 18:05 +0200, Felix Fietkau wrote: >> Since AP_VLAN interfaces are not pushed to the driver, >> > That's a mac80211 thing though. > >> the driver should not >> be expected to register iftype data for them. >> Map them to the regular AP iftype on lookup. > > And this is in cfg80211 - not sure that seems right? > > OTOH I'd expect no callers with VLAN here, it doesn't really make sense > since they're not a standalone mode that actually has HE/EHT, but still, > seems odd this way? > > What's actually calling it? I'm guessing somewhere in mac80211? Yes, I guess only mac80211 is affected. I put in the cfg80211 prefix because that's what the header file belongs to. I made the patch in response to this: https://patchwork.kernel.org/project/linux-wireless/patch/20230605152141.17434-4-shayne.chen@mediatek.com/ I found that there are several calls to ieee80211_get_he_iftype_cap and ieee80211_get_eht_iftype_cap, which could be affected by this issue. I thought dealing with this in a single place would be better than playing whac-a-mole by fixing it at the call sites. - Felix