From patchwork Thu Sep 20 12:05:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anilkumar Kolli X-Patchwork-Id: 10607553 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 7F55F913 for ; Thu, 20 Sep 2018 12:02:49 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 675902D2C2 for ; Thu, 20 Sep 2018 12:02:49 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5A6882D2C6; Thu, 20 Sep 2018 12:02:49 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D17032D2C2 for ; Thu, 20 Sep 2018 12:02:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731684AbeITRp4 (ORCPT ); Thu, 20 Sep 2018 13:45:56 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:60482 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727986AbeITRp4 (ORCPT ); Thu, 20 Sep 2018 13:45:56 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 23F3560BF7; Thu, 20 Sep 2018 12:02:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1537444967; bh=njwHTHucDlc/zT/MelotzBW7+T+UPms8qpcvuifK2e4=; h=From:To:Cc:Subject:Date:From; b=NFdLgzN4vlP33qleJHmmX8tblQFe+lym+RCaIhc8CF6yQ6oT87p3DF+l6myQN7guZ StpGYL5/PdHgtB77T9tX9kqdeQWDX9BdR9KFjOSf+iNeoZDx/ELVd1d5L/jdGykqR3 ovJuArU8UkXB1v31vFRnTpC0P19ArDB1Bg84E1aw= Received: from localhost (blr-c-bdr-fw-01_globalnat_allzones-outside.qualcomm.com [103.229.19.19]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: akolli@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id F1EF260818; Thu, 20 Sep 2018 12:02:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1537444966; bh=njwHTHucDlc/zT/MelotzBW7+T+UPms8qpcvuifK2e4=; h=From:To:Cc:Subject:Date:From; b=e5GP6CX6+KpDG9VIMQbtC23tvUcEvnzQlQXcU4BiN/DvMOOxooq4N4TwTOH2wbmRz D2qqmb84PuT/i14eEv8kBHtIQYCBIMVPxT30xIHJAtjd3Rkm7UgBPBUlzL9uSBu3YW mn1l3526IZaxgV0N4PPephgm0XvllHDMBGVSxPhg= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org F1EF260818 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=akolli@codeaurora.org From: Anilkumar Kolli To: ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org, Anilkumar Kolli Subject: [RFCv3 0/2] ath10k: Add support to update tx rate to mac80211 Date: Thu, 20 Sep 2018 17:35:14 +0530 Message-Id: <1537445116-10780-1-git-send-email-akolli@codeaurora.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Tx rate was updated to nl80211/user using sta_statistics callback. This rate can not be used for mac80211 mesh and ATF. This patch adds support to update tx rate to mac80211 Anilkumar Kolli (2): mac80211: implement ieee80211_tx_rate_update to update rate ath10k: report tx rate using ieee80211_tx_rate_update() drivers/net/wireless/ath/ath10k/core.h | 1 + drivers/net/wireless/ath/ath10k/htt_rx.c | 66 ++++++++++++++++++++++++++++-- drivers/net/wireless/ath/ath10k/wmi.h | 1 + include/net/mac80211.h | 14 +++++++ net/mac80211/status.c | 24 +++++++++++ 5 files changed, 102 insertions(+), 4 deletions(-)