diff options
author | Johannes Berg <johannes.berg@intel.com> | 2016-03-31 13:02:11 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2016-04-06 07:18:19 -0400 |
commit | c9c5962b56c10c34d8fedc20cd6d6ebdaa2383c6 (patch) | |
tree | 3b5b98cc8a18efeffabc86ed6ac4247b7311a294 /net/mac80211/debugfs.c | |
parent | 49ddf8e6e2347cffdcf83d1ca2d04ff929820178 (diff) |
mac80211: enable collecting station statistics per-CPU
If the driver advertises the new HW flag USE_RSS, make the
station statistics on the fast-rx path per-CPU. This will
enable calling the RX in parallel, only hitting locking or
shared cachelines when the fast-RX path isn't available.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/debugfs.c')
-rw-r--r-- | net/mac80211/debugfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/debugfs.c b/net/mac80211/debugfs.c index 4ab5c522ceee..52ed2afc408d 100644 --- a/net/mac80211/debugfs.c +++ b/net/mac80211/debugfs.c | |||
@@ -127,6 +127,7 @@ static const char *hw_flag_names[] = { | |||
127 | FLAG(BEACON_TX_STATUS), | 127 | FLAG(BEACON_TX_STATUS), |
128 | FLAG(NEEDS_UNIQUE_STA_ADDR), | 128 | FLAG(NEEDS_UNIQUE_STA_ADDR), |
129 | FLAG(SUPPORTS_REORDERING_BUFFER), | 129 | FLAG(SUPPORTS_REORDERING_BUFFER), |
130 | FLAG(USES_RSS), | ||
130 | #undef FLAG | 131 | #undef FLAG |
131 | }; | 132 | }; |
132 | 133 | ||