From patchwork Fri Oct 9 10:15:24 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Crispin X-Patchwork-Id: 268761 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=-6.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT 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 6AE80C433DF for ; Fri, 9 Oct 2020 10:15:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2403022276 for ; Fri, 9 Oct 2020 10:15:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387564AbgJIKPc (ORCPT ); Fri, 9 Oct 2020 06:15:32 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42228 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387562AbgJIKPb (ORCPT ); Fri, 9 Oct 2020 06:15:31 -0400 Received: from nbd.name (nbd.name [IPv6:2a01:4f8:221:3d45::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 69144C0613D2 for ; Fri, 9 Oct 2020 03:15:31 -0700 (PDT) Received: from [134.101.218.207] (helo=localhost.localdomain) by ds12 with esmtpa (Exim 4.89) (envelope-from ) id 1kQpQv-0004jy-HX; Fri, 09 Oct 2020 12:15:29 +0200 From: John Crispin To: Johannes Berg Cc: linux-wireless@vger.kernel.org, John Crispin Subject: [PATCH V4 0/4] mac80211: add multiple bssid support Date: Fri, 9 Oct 2020 12:15:24 +0200 Message-Id: <20201009101528.4780-1-john@phrozen.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org 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(-)