From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.toke.dk (mail.toke.dk [52.28.52.200]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.bufferbloat.net (Postfix) with ESMTPS id 375CA3CB53 for ; Mon, 19 Feb 2018 12:02:54 -0500 (EST) From: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=toke.dk; s=20161023; t=1519059772; bh=EChi8zA/8Ob5i2Zf0/C0+FMkvqFvQYEk2cLoLXg4bFQ=; h=From:To:Cc:Subject:Date:From; b=sDsk7rnZRfmy8seG9t1HDypmbdZfg2r0ZroZU7/O607Hm95rZVk1HV3ag05ZkqhtK PqlJIqDbJACuByXw2/7xIPLBLebBfqSUcAk2+C07Lgx/v/386o08DvjVjZ+Vn8Rtv+ UkSbqO92HuAboGlJec0AoBrO1iqdfTcH7r6/unew0V+GmuZPimCjlYLe+yaGkpTdub oqqMnhMk2LX9iedjUr6uebEM+07ARuq18YqJgNJwtb8Oi0JYOYcqARovIHO1CHipv4 fFelsweOj8usO/bWu6NMrRroZQAPlMStHqv5Qo79x7pexsrhHkG8IOOKU+n6IEKQWj P+D1Uirp5xx3g== To: make-wifi-fast@lists.bufferbloat.net, linux-wireless@vger.kernel.org Cc: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= Date: Mon, 19 Feb 2018 18:02:21 +0100 Message-Id: <20180219170224.14816-1-toke@toke.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Make-wifi-fast] [PATCH 0/3] Export TXQ parameters and statistics via nl80211 X-BeenThere: make-wifi-fast@lists.bufferbloat.net X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Feb 2018 17:02:54 -0000 This series adds TXQ parameters and statistics that were previously only available through debugfs to the nl80211 userspace interface and the cfg80211 kernel interface. Patches for iw to print the statistics and change the settings are included. Wasn't sure whether to include the updates to nl80211.h in the iw patchset, so I didn't :) -Toke Kernel patch: Toke Høiland-Jørgensen (1): cfg80211: Expose TXQ stats and parameters to userspace include/net/cfg80211.h | 52 +++++++++++++++++++ include/uapi/linux/nl80211.h | 57 +++++++++++++++++++++ net/mac80211/cfg.c | 95 +++++++++++++++++++++++++++++++++++ net/mac80211/ieee80211_i.h | 3 ++ net/mac80211/main.c | 3 ++ net/mac80211/sta_info.c | 12 +++++ net/mac80211/tx.c | 20 ++++++++ net/wireless/nl80211.c | 115 +++++++++++++++++++++++++++++++++++++++++++ net/wireless/rdev-ops.h | 12 +++++ net/wireless/trace.h | 14 ++++++ 10 files changed, 383 insertions(+) iw patches (updated nl80211.h not included): Toke Høiland-Jørgensen (2): iw: Print TXQ statistics for stations and interfaces iw: Add getting and setting of TXQ params for phy info.c | 3 ++ interface.c | 6 ++++ iw.h | 2 ++ phy.c | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ station.c | 91 ++++++++++++++++++++++++++++++++++++++++++++++- 5 files changed, 217 insertions(+), 1 deletion(-)