Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 132F0C43387 for ; Tue, 18 Dec 2018 08:09:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D8A902133F for ; Tue, 18 Dec 2018 08:09:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726410AbeLRIJo (ORCPT ); Tue, 18 Dec 2018 03:09:44 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55160 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726316AbeLRIJn (ORCPT ); Tue, 18 Dec 2018 03:09:43 -0500 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 98E94793D3; Tue, 18 Dec 2018 08:09:43 +0000 (UTC) Received: from localhost (ovpn-204-70.brq.redhat.com [10.40.204.70]) by smtp.corp.redhat.com (Postfix) with ESMTP id 741AE10018F9; Tue, 18 Dec 2018 08:09:40 +0000 (UTC) Date: Tue, 18 Dec 2018 09:09:39 +0100 From: Stanislaw Gruszka To: Sid Hayn Cc: Matthias Brugger , Lorenzo Bianconi , linux-mediatek@lists.infradead.org, linux-wireless , Felix Fietkau Subject: Re: mt76x[02]u 802.11w support Message-ID: <20181218080939.GA16795@redhat.com> References: <20181213143947.GA11947@localhost.localdomain> <20181217154628.GA4773@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181217154628.GA4773@redhat.com> User-Agent: Mutt/1.8.3 (2017-05-23) X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Tue, 18 Dec 2018 08:09:43 +0000 (UTC) Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On Mon, Dec 17, 2018 at 04:46:28PM +0100, Stanislaw Gruszka wrote: > On Mon, Dec 17, 2018 at 10:07:43AM -0500, Sid Hayn wrote: > > Interestingly when I asked for the monitor mode patch to be ported it > > was initially refused and then just kind of happened a few weeks > > later. > > It was not quite like that. It was refused to apply on 4.19-rcX due to > -next merge -rc conflict that it will cause. And it was promised > that fixes will be backported thought -stable. > > Regarding this case, there is no single commit that add 802.11w support > we could request to add to -stable. It was added together with other > features in: > > commit 0ae976a11b4fb5704b597e103b5189237641c1a1 > Author: Lorenzo Bianconi > Date: Thu Sep 6 11:18:41 2018 +0200 > > mt76x0: init hw capabilities > > which depend on switching mt76x0u to mt76-usb layer. > > So I'm not sure how this request should be satisfied. Can you check if adding ieee80211_hw_set(rt2x00dev->hw, MFP_CAPABLE); is sufficient to add support for 802.11w ? Most likely it is, since in 4.19 mt76x0_set_key() do not allow to set unsupported ciphers. However it returns -EINVAL instead of -EOPNOTSUPP, so I want to be sure. Thanks Stanislaw