Return-path: Received: from mail-ve0-f172.google.com ([209.85.128.172]:47164 "EHLO mail-ve0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751305AbaC1OXQ (ORCPT ); Fri, 28 Mar 2014 10:23:16 -0400 Received: by mail-ve0-f172.google.com with SMTP id jx11so5728284veb.17 for ; Fri, 28 Mar 2014 07:23:15 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20140328132849.31620.78501.stgit@potku.adurom.net> References: <20140328132849.31620.78501.stgit@potku.adurom.net> Date: Fri, 28 Mar 2014 22:23:15 +0800 Message-ID: (sfid-20140328_152319_110203_7556C6E9) Subject: Re: [PATCH v5] ath10k: implement per-VDEV FW statistics From: Yeoh Chun-Yeow To: Kalle Valo Cc: "ath10k@lists.infradead.org" , "linux-wireless@vger.kernel.org" Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-wireless-owner@vger.kernel.org List-ID: > > The WMI_REQUEST_PEER_STAT command with latest (999.999.0.716) FW > can return per-VDEV statistics. Using debugfs we can fetch this info now. > Unfortunately, 716 firmware is not available. Is this going to available? > > struct wmi_request_stats_cmd { > __le32 stats_id; > - > - /* > - * Space to add parameters like > - * peer mac addr > - */ > + /* unique id identifying the VDEV, generated by the caller */ > + __le32 vdev_id; > + /* peer MAC address */ > + struct wmi_mac_addr peer_macaddr; > } __packed; Unfortunately, this does not work for 10.1 firmware, but the following patch works. http://lists.infradead.org/pipermail/ath10k/2014-March/001487.html ---- Chun-Yeow