From patchwork Mon Sep 24 07:09:58 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anilkumar Kolli X-Patchwork-Id: 10611937 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 73BAE6CB for ; Mon, 24 Sep 2018 07:07:22 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6C35D29BD9 for ; Mon, 24 Sep 2018 07:07:22 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6026629D15; Mon, 24 Sep 2018 07:07:22 +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 1062929BD9 for ; Mon, 24 Sep 2018 07:07:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727441AbeIXNH7 (ORCPT ); Mon, 24 Sep 2018 09:07:59 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:58070 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727229AbeIXNH7 (ORCPT ); Mon, 24 Sep 2018 09:07:59 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id B091A60313; Mon, 24 Sep 2018 07:07:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1537772839; bh=bYS+QWG+GTUuyAkaaT9yeGBK5V0WzHQfb/p2SEQAdHw=; h=From:To:Cc:Subject:Date:From; b=XQ6Kp5P1hq6QUW3Yt7Ek44rD0Ts31l0pLuoHgPXhvRs6lL6ZwXHW3liVd7AxF2Swz JeADsjTBoEqv/tbjnBlTOVyPDVV6B5eQNn2Ikhwl0l4pfPiCS8GdtbdcMnzWlBBLMb tHGedz2EOhtupsQCtEuCzP1jVX4LH0n+WGypyNb4= 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 381FF600C1; Mon, 24 Sep 2018 07:07:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1537772839; bh=bYS+QWG+GTUuyAkaaT9yeGBK5V0WzHQfb/p2SEQAdHw=; h=From:To:Cc:Subject:Date:From; b=XQ6Kp5P1hq6QUW3Yt7Ek44rD0Ts31l0pLuoHgPXhvRs6lL6ZwXHW3liVd7AxF2Swz JeADsjTBoEqv/tbjnBlTOVyPDVV6B5eQNn2Ikhwl0l4pfPiCS8GdtbdcMnzWlBBLMb tHGedz2EOhtupsQCtEuCzP1jVX4LH0n+WGypyNb4= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 381FF600C1 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: [RFC v4 0/2] ath10k: Add support to update tx rate to mac80211 Date: Mon, 24 Sep 2018 12:39:58 +0530 Message-Id: <1537773000-2587-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 | 15 +++++++ net/mac80211/status.c | 22 ++++++++++ 5 files changed, 101 insertions(+), 4 deletions(-)