This series implements mesh synchronization as defined in IEEE Std. 802.11-2012 If interested, you will find some implementation notes here: https://github.com/cozybit/open80211s/wiki/Mesh-Synchronization---Implementation-Notes Javier Cardona (4): mac80211_hwsim: Fill timestamp beacon at the time it is transmitted mac80211: Allow tsf increments via debugfs mac80211: Implement mesh synchronization framework {nl,cfg}80211: Support for mesh synchronization drivers/net/wireless/mac80211_hwsim.c | 26 ++-- include/linux/ieee80211.h | 12 ++ include/linux/nl80211.h | 12 ++ include/net/cfg80211.h | 14 ++- net/mac80211/Kconfig | 11 ++ net/mac80211/Makefile | 3 +- net/mac80211/cfg.c | 8 + net/mac80211/debugfs_netdev.c | 12 ++ net/mac80211/debugfs_sta.c | 5 +- net/mac80211/ieee80211_i.h | 23 +++ net/mac80211/mesh.c | 21 ++- net/mac80211/mesh.h | 19 ++ net/mac80211/mesh_sync.c | 296 +++++++++++++++++++++++++++++++++ net/mac80211/sta_info.h | 5 + net/mac80211/tx.c | 5 + net/wireless/mesh.c | 3 + net/wireless/nl80211.c | 16 ++ 17 files changed, 467 insertions(+), 24 deletions(-) create mode 100644 net/mac80211/mesh_sync.c -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html