]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
Merge tag 'mac80211-next-for-davem-2016-10-28' of git://git.kernel.org/pub/scm/linux...
authorDavid S. Miller <davem@davemloft.net>
Sat, 29 Oct 2016 21:28:45 +0000 (17:28 -0400)
committerDavid S. Miller <davem@davemloft.net>
Sat, 29 Oct 2016 21:28:45 +0000 (17:28 -0400)
Johannes Berg says:

====================
Among various cleanups and improvements, we have the following:
 * client FILS authentication support in mac80211 (Jouni)
 * AP/VLAN multicast improvements (Michael Braun)
 * config/advertising support for differing beacon intervals on
   multiple virtual interfaces (Purushottam Kushwaha, myself)
 * deprecate the old WDS mode for cfg80211-based drivers, the
   mode is hardly usable since it doesn't support any "modern"
   features like WPA encryption (2003), HT (2009) or VHT (2014),
   I'm not even sure WEP (introduced in 1997) could be done.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
1  2 
drivers/net/wireless/mac80211_hwsim.c
net/mac80211/iface.c
net/wireless/nl80211.c

Simple merge
Simple merge
index 0d3ab4bfeacf98f2ddcad18ee3f7354ba638fd75,bb30fa1969f9a27002aef9b0c2a533bf4df9b7eb..24ab199ef2fcdcf641f07aaee25bec9e17e43f8e
@@@ -12583,23 -12692,16 +12676,31 @@@ static const struct genl_ops nl80211_op
                .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
                                  NL80211_FLAG_NEED_RTNL,
        },
+       {
+               .cmd = NL80211_CMD_SET_MULTICAST_TO_UNICAST,
+               .doit = nl80211_set_multicast_to_unicast,
+               .policy = nl80211_policy,
+               .flags = GENL_UNS_ADMIN_PERM,
+               .internal_flags = NL80211_FLAG_NEED_NETDEV |
+                                 NL80211_FLAG_NEED_RTNL,
+       },
  };
  
 +static struct genl_family nl80211_fam __ro_after_init = {
 +      .name = NL80211_GENL_NAME,      /* have users key off the name instead */
 +      .hdrsize = 0,                   /* no private header */
 +      .version = 1,                   /* no particular meaning now */
 +      .maxattr = NL80211_ATTR_MAX,
 +      .netnsok = true,
 +      .pre_doit = nl80211_pre_doit,
 +      .post_doit = nl80211_post_doit,
 +      .module = THIS_MODULE,
 +      .ops = nl80211_ops,
 +      .n_ops = ARRAY_SIZE(nl80211_ops),
 +      .mcgrps = nl80211_mcgrps,
 +      .n_mcgrps = ARRAY_SIZE(nl80211_mcgrps),
 +};
 +
  /* notification functions */
  
  void nl80211_notify_wiphy(struct cfg80211_registered_device *rdev,