|
Kmods SIG |
9a70cc |
From ffb92649f4d93a83de8977f8806cda64204cc465 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
9a70cc |
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
Kmods SIG |
9a70cc |
Date: Wed, 12 Jun 2019 16:26:55 +0200
|
|
Kmods SIG |
9a70cc |
Subject: [Backport ffb92649f4d9] iwlegacy: 4965: no need to check return value
|
|
Kmods SIG |
9a70cc |
of debugfs_create functions
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
When calling debugfs functions, there is no need to ever check the
|
|
Kmods SIG |
9a70cc |
return value. This driver was saving the debugfs file away to be
|
|
Kmods SIG |
9a70cc |
removed at a later time. However, the 80211 core would delete the whole
|
|
Kmods SIG |
9a70cc |
directory that the debugfs files are created in, after it asks the
|
|
Kmods SIG |
9a70cc |
driver to do the deletion, so just rely on the 80211 core to do all of
|
|
Kmods SIG |
9a70cc |
the cleanup for us, making us not need to keep a pointer to the dentries
|
|
Kmods SIG |
9a70cc |
around at all.
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
This cleans up the structure of the driver data a bit and makes the code
|
|
Kmods SIG |
9a70cc |
a tiny bit smaller.
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
Cc: Stanislaw Gruszka <sgruszka@redhat.com>
|
|
Kmods SIG |
9a70cc |
Cc: Kalle Valo <kvalo@codeaurora.org>
|
|
Kmods SIG |
9a70cc |
Cc: "David S. Miller" <davem@davemloft.net>
|
|
Kmods SIG |
9a70cc |
Cc: linux-wireless@vger.kernel.org
|
|
Kmods SIG |
9a70cc |
Cc: netdev@vger.kernel.org
|
|
Kmods SIG |
9a70cc |
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
Kmods SIG |
9a70cc |
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
|
Kmods SIG |
9a70cc |
---
|
|
Kmods SIG |
9a70cc |
src/4965-rs.c | 31 +++++--------------
|
|
Kmods SIG |
9a70cc |
src/common.h | 4 ---
|
|
Kmods SIG |
9a70cc |
2 files changed, 8 insertions(+), 27 deletions(-)
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
diff --git a/src/4965-rs.c b/src/4965-rs.c
|
|
Kmods SIG |
9a70cc |
index 54ff83829afb11dcc8c56871bac3d1543e3fa33b..f640709d986233f25a852cbe32f28c8f6abcbe3c 100644
|
|
Kmods SIG |
9a70cc |
--- a/src/4965-rs.c
|
|
Kmods SIG |
9a70cc |
+++ b/src/4965-rs.c
|
|
Kmods SIG |
9a70cc |
@@ -2767,29 +2767,15 @@ static void
|
|
Kmods SIG |
9a70cc |
il4965_rs_add_debugfs(void *il, void *il_sta, struct dentry *dir)
|
|
Kmods SIG |
9a70cc |
{
|
|
Kmods SIG |
9a70cc |
struct il_lq_sta *lq_sta = il_sta;
|
|
Kmods SIG |
9a70cc |
- lq_sta->rs_sta_dbgfs_scale_table_file =
|
|
Kmods SIG |
9a70cc |
- debugfs_create_file("rate_scale_table", 0600, dir,
|
|
Kmods SIG |
9a70cc |
- lq_sta, &rs_sta_dbgfs_scale_table_ops);
|
|
Kmods SIG |
9a70cc |
- lq_sta->rs_sta_dbgfs_stats_table_file =
|
|
Kmods SIG |
9a70cc |
- debugfs_create_file("rate_stats_table", 0400, dir, lq_sta,
|
|
Kmods SIG |
9a70cc |
- &rs_sta_dbgfs_stats_table_ops);
|
|
Kmods SIG |
9a70cc |
- lq_sta->rs_sta_dbgfs_rate_scale_data_file =
|
|
Kmods SIG |
9a70cc |
- debugfs_create_file("rate_scale_data", 0400, dir, lq_sta,
|
|
Kmods SIG |
9a70cc |
- &rs_sta_dbgfs_rate_scale_data_ops);
|
|
Kmods SIG |
9a70cc |
- lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
|
|
Kmods SIG |
9a70cc |
- debugfs_create_u8("tx_agg_tid_enable", 0600, dir,
|
|
Kmods SIG |
9a70cc |
- &lq_sta->tx_agg_tid_en);
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
-}
|
|
Kmods SIG |
9a70cc |
-
|
|
Kmods SIG |
9a70cc |
-static void
|
|
Kmods SIG |
9a70cc |
-il4965_rs_remove_debugfs(void *il, void *il_sta)
|
|
Kmods SIG |
9a70cc |
-{
|
|
Kmods SIG |
9a70cc |
- struct il_lq_sta *lq_sta = il_sta;
|
|
Kmods SIG |
9a70cc |
- debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
|
|
Kmods SIG |
9a70cc |
- debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
|
|
Kmods SIG |
9a70cc |
- debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
|
|
Kmods SIG |
9a70cc |
- debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
|
|
Kmods SIG |
9a70cc |
+ debugfs_create_file("rate_scale_table", 0600, dir, lq_sta,
|
|
Kmods SIG |
9a70cc |
+ &rs_sta_dbgfs_scale_table_ops);
|
|
Kmods SIG |
9a70cc |
+ debugfs_create_file("rate_stats_table", 0400, dir, lq_sta,
|
|
Kmods SIG |
9a70cc |
+ &rs_sta_dbgfs_stats_table_ops);
|
|
Kmods SIG |
9a70cc |
+ debugfs_create_file("rate_scale_data", 0400, dir, lq_sta,
|
|
Kmods SIG |
9a70cc |
+ &rs_sta_dbgfs_rate_scale_data_ops);
|
|
Kmods SIG |
9a70cc |
+ debugfs_create_u8("tx_agg_tid_enable", 0600, dir,
|
|
Kmods SIG |
9a70cc |
+ &lq_sta->tx_agg_tid_en);
|
|
Kmods SIG |
9a70cc |
}
|
|
Kmods SIG |
9a70cc |
#endif
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
@@ -2816,7 +2802,6 @@ static const struct rate_control_ops rs_4965_ops = {
|
|
Kmods SIG |
9a70cc |
.free_sta = il4965_rs_free_sta,
|
|
Kmods SIG |
9a70cc |
#ifdef CONFIG_MAC80211_DEBUGFS
|
|
Kmods SIG |
9a70cc |
.add_sta_debugfs = il4965_rs_add_debugfs,
|
|
Kmods SIG |
9a70cc |
- .remove_sta_debugfs = il4965_rs_remove_debugfs,
|
|
Kmods SIG |
9a70cc |
#endif
|
|
Kmods SIG |
9a70cc |
};
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
diff --git a/src/common.h b/src/common.h
|
|
Kmods SIG |
9a70cc |
index 986646af8dfd4da3e0da8c7bb023fe646ccc9930..3c6f41763dde17a24677e77e9808aeff21c350c3 100644
|
|
Kmods SIG |
9a70cc |
--- a/src/common.h
|
|
Kmods SIG |
9a70cc |
+++ b/src/common.h
|
|
Kmods SIG |
9a70cc |
@@ -2822,10 +2822,6 @@ struct il_lq_sta {
|
|
Kmods SIG |
9a70cc |
struct il_traffic_load load[TID_MAX_LOAD_COUNT];
|
|
Kmods SIG |
9a70cc |
u8 tx_agg_tid_en;
|
|
Kmods SIG |
9a70cc |
#ifdef CONFIG_MAC80211_DEBUGFS
|
|
Kmods SIG |
9a70cc |
- struct dentry *rs_sta_dbgfs_scale_table_file;
|
|
Kmods SIG |
9a70cc |
- struct dentry *rs_sta_dbgfs_stats_table_file;
|
|
Kmods SIG |
9a70cc |
- struct dentry *rs_sta_dbgfs_rate_scale_data_file;
|
|
Kmods SIG |
9a70cc |
- struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
|
|
Kmods SIG |
9a70cc |
u32 dbg_fixed_rate;
|
|
Kmods SIG |
9a70cc |
#endif
|
|
Kmods SIG |
9a70cc |
struct il_priv *drv;
|
|
Kmods SIG |
9a70cc |
--
|
|
Kmods SIG |
9a70cc |
2.31.1
|
|
Kmods SIG |
9a70cc |
|