linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/7] nl/cfg/mac80211: add DFS master ability
@ 2012-08-08 11:53 Victor Goldenshtein
  2012-08-08 11:53 ` [PATCH v3 1/7] nl80211/cfg80211: add radar detection command/event Victor Goldenshtein
                   ` (7 more replies)
  0 siblings, 8 replies; 43+ messages in thread
From: Victor Goldenshtein @ 2012-08-08 11:53 UTC (permalink / raw)
  To: linux-wireless
  Cc: kgiori, mcgrof, zefir.kurtisi, adrian.chadd, j, johannes, coelho,
	assaf, yoni.divinsky, igalc, adrian, nbd, simon.wunderlich

v3:
	
 Rebased to "wireless-testing".


 nl80211/cfg80211: add radar detection command/event
	Added units documentation to "radar_detect_timeout".
	Added "cac_type" - which indicates that CAC is started for this channel type.
	Added NL80211_ATTR_WIPHY_CHANNEL_TYPE. 
	Fixed merge problem.
	Removed "!!" in nl80211_start_radar_detection.
	Return -EBUSY in start_radar_detection if detection already started for this specific channel.
	
	
 mac80211: add radar detection command/event
	Added tracer to ieee80211_radar_detected().
	Changed freq argument in ieee80211_radar_detected() to "struct ieee80211_channel *chan"
	Reset CAC during interface down.


 nl80211/cfg80211: add ability to enable TX on op-channel
	Removed "!!" in nl80211_dfs_en_tx().
	Typo fix in the documentation.
	Added additional check to validate that we're on NL80211_CHAN_HT20 channel, otherwise return -EPERM.
	
	
 nl80211/cfg80211: add ap channel switch command/event
	Moved struct ieee80211_ap_ch_switch from mac to cfg + pass it as argument in ap_channel_switch()
	Add "if (ch_type != NL80211_CHAN_NO_HT) return -EOPNOTSUPP"
	Changed freq argument in ap_ch_switch_complete_notify() to "struct ieee80211_channel *chan"


 mac80211: add ap channel switch command/event
	Renamed ieee80211_ap_ch_switch_complete_notify to ieee80211_ap_ch_switch_done. 
	Removed the freq argument in ieee80211_ap_ch_switch_done().
	Save the target channel in new "local->next_ap_channel" and update the operational channel in ieee80211_ap_ch_switch_done.
	Add tracer to ieee80211_ap_ch_switch_done().
	Updated commit log message.
	Added sanity checks in ap_channel_switch() + ieee80211_ap_ch_switch_complete


 mac80211: add DFS support to monitor interface
	Removed "!!" in ieee80211_monitor_start_xmit().

Victor Goldenshtein (7):
  nl80211/cfg80211: add radar detection command/event
  mac80211: add radar detection command/event
  nl80211/cfg80211: add ability to enable TX on op-channel
  mac80211: add ability to enable TX on op-channel
  nl80211/cfg80211: add ap channel switch command
  mac80211: add ap channel switch command/event
  mac80211: add DFS support to monitor interface

 include/linux/nl80211.h   |   42 +++++++++++
 include/net/cfg80211.h    |   63 +++++++++++++++++
 include/net/mac80211.h    |   37 ++++++++++
 net/mac80211/cfg.c        |   50 +++++++++++++
 net/mac80211/driver-ops.h |   38 ++++++++++
 net/mac80211/iface.c      |    7 ++
 net/mac80211/main.c       |    3 +
 net/mac80211/mlme.c       |   32 +++++++++
 net/mac80211/trace.h      |   87 +++++++++++++++++++++++
 net/mac80211/tx.c         |   13 ++--
 net/wireless/core.h       |    4 +
 net/wireless/mlme.c       |   38 ++++++++++
 net/wireless/nl80211.c    |  171 +++++++++++++++++++++++++++++++++++++++++++++
 net/wireless/nl80211.h    |    6 ++
 14 files changed, 585 insertions(+), 6 deletions(-)

-- 
1.7.5.4


^ permalink raw reply	[flat|nested] 43+ messages in thread

end of thread, other threads:[~2012-10-14 13:35 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-08 11:53 [PATCH v3 0/7] nl/cfg/mac80211: add DFS master ability Victor Goldenshtein
2012-08-08 11:53 ` [PATCH v3 1/7] nl80211/cfg80211: add radar detection command/event Victor Goldenshtein
2012-08-09 11:51   ` Stanislaw Gruszka
2012-08-09 12:08     ` Goldenshtein, Victor
2012-08-10 16:25       ` Stanislaw Gruszka
2012-08-12  7:31         ` Goldenshtein, Victor
2012-08-20 10:33         ` Johannes Berg
2012-09-10 10:53   ` Johannes Berg
2012-10-03 13:53     ` Goldenshtein, Victor
2012-10-09 18:46       ` Johannes Berg
2012-10-14 13:29         ` Victor Goldenshtein
2012-08-08 11:53 ` [PATCH v3 2/7] mac80211: " Victor Goldenshtein
2012-08-10 16:28   ` Stanislaw Gruszka
2012-08-12  7:31     ` Goldenshtein, Victor
2012-08-13  7:36       ` Stanislaw Gruszka
2012-08-20  7:21         ` Goldenshtein, Victor
2012-09-10 10:54           ` Johannes Berg
2012-09-10 11:17   ` Johannes Berg
2012-10-03 13:53     ` Goldenshtein, Victor
2012-08-08 11:53 ` [PATCH v3 3/7] nl80211/cfg80211: add ability to enable TX on op-channel Victor Goldenshtein
2012-08-08 11:53 ` [PATCH v3 4/7] mac80211: " Victor Goldenshtein
2012-09-10 11:20   ` Johannes Berg
2012-10-03 13:53     ` Goldenshtein, Victor
2012-08-08 11:53 ` [PATCH v3 5/7] nl80211/cfg80211: add ap channel switch command Victor Goldenshtein
2012-09-10 11:23   ` Johannes Berg
2012-10-03 13:53     ` Goldenshtein, Victor
2012-10-09 18:44       ` Johannes Berg
2012-10-14 13:29         ` Victor Goldenshtein
2012-08-08 11:53 ` [PATCH v3 6/7] mac80211: add ap channel switch command/event Victor Goldenshtein
2012-08-10 16:36   ` Stanislaw Gruszka
2012-08-12  7:31     ` Goldenshtein, Victor
2012-08-13  7:34       ` Stanislaw Gruszka
2012-08-20 10:32         ` Johannes Berg
2012-09-10 11:25   ` Johannes Berg
2012-10-03 13:54     ` Goldenshtein, Victor
2012-10-04 15:42       ` Goldenshtein, Victor
2012-08-08 11:53 ` [PATCH v3 7/7] mac80211: add DFS support to monitor interface Victor Goldenshtein
2012-09-10 11:26   ` Johannes Berg
2012-10-03 13:54     ` Goldenshtein, Victor
2012-10-09 18:42       ` Johannes Berg
2012-10-14 13:29         ` Victor Goldenshtein
2012-09-07 15:47 ` [PATCH v3 0/7] nl/cfg/mac80211: add DFS master ability Simon Wunderlich
2012-09-07 16:04   ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).