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 X-Spam-Level: X-Spam-Status: No, score=-5.5 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 BDBB2C433E7 for ; Fri, 9 Oct 2020 10:15:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4B61A222B8 for ; Fri, 9 Oct 2020 10:15:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387552AbgJIKPT (ORCPT ); Fri, 9 Oct 2020 06:15:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42194 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726357AbgJIKPT (ORCPT ); Fri, 9 Oct 2020 06:15:19 -0400 X-Greylist: delayed 112 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Fri, 09 Oct 2020 03:15:19 PDT Received: from nbd.name (nbd.name [IPv6:2a01:4f8:221:3d45::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4FDB0C0613D2 for ; Fri, 9 Oct 2020 03:15:19 -0700 (PDT) Received: from [2a04:4540:1402:cc00:2006:326b:997b:7e12] by ds12 with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1kQpQj-0004jT-VT; Fri, 09 Oct 2020 12:15:18 +0200 Subject: Re: [PATCH V4 0/4] mac80211: add multiple bssid support To: Johannes Berg Cc: linux-kernel@vger.kernel.org References: <20201009101317.4657-1-john@phrozen.org> From: John Crispin Message-ID: Date: Fri, 9 Oct 2020 12:15:17 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20201009101317.4657-1-john@phrozen.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org oops, CC'ed the wrong ML, sorry ... On 09.10.20 12:13, John Crispin wrote: > Changes in V4 > * move multiple bssid config from add_interface to start_ap > * add ema support > > John Crispin (4): > nl80211: add basic multiple bssid support > mac80211: add multiple bssid support to interface handling > mac80211: add multiple bssid/EMA support to beacon handling > mac80211: don't allow CSA on non-transmitting interfaces > > include/net/cfg80211.h | 33 ++++++++ > include/net/mac80211.h | 118 +++++++++++++++++++++++++- > include/uapi/linux/nl80211.h | 21 +++++ > net/mac80211/cfg.c | 113 ++++++++++++++++++++++++- > net/mac80211/debugfs.c | 1 + > net/mac80211/ieee80211_i.h | 2 + > net/mac80211/iface.c | 6 ++ > net/mac80211/tx.c | 157 +++++++++++++++++++++++++++++++---- > net/wireless/nl80211.c | 34 ++++++++ > 9 files changed, 464 insertions(+), 21 deletions(-) >