Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 876dc930 authored by Bertold Van den Bergh's avatar Bertold Van den Bergh Committed by Johannes Berg
Browse files

nl80211: Allow setting multicast rate on OCB interfaces



Allow setting multicast rate on OCB interfaces.
Current behaviour results in EOPNOTSUPP when attempting this.

Signed-off-by: default avatarBertold Van den Bergh <bertold.vandenbergh@esat.kuleuven.be>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 9189ee31
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -7391,7 +7391,8 @@ static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
	int err;

	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_OCB)
		return -EOPNOTSUPP;

	if (!rdev->ops->set_mcast_rate)