diff options
author | John W. Linville <linville@tuxdriver.com> | 2014-09-04 13:08:24 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-09-04 13:08:24 -0400 |
commit | 190355cc06eb4b3e2d3f06a8f7ba5ea433d77998 (patch) | |
tree | 2c9694d607973f23691227d388bb861f573d37c6 /include | |
parent | c66517165610b911e4c6d268f28d8c640832dbd1 (diff) | |
parent | 14b058bbce9279ee432f0944ca14df69f4a0d170 (diff) | |
download | linux-190355cc06eb4b3e2d3f06a8f7ba5ea433d77998.tar.gz linux-190355cc06eb4b3e2d3f06a8f7ba5ea433d77998.tar.bz2 linux-190355cc06eb4b3e2d3f06a8f7ba5ea433d77998.zip |
Merge tag 'mac80211-for-john-2014-08-29' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211
Johannes Berg <johannes@sipsolutions.net> says:
"Here are a few fixes for mac80211. One has been discussed for a while
and adds a terminating NUL-byte to the alpha2 sent to userspace, which
shouldn't be necessary but since many places treat it as a string we
couldn't move to just sending two bytes.
In addition to that, we have two VLAN fixes from Felix, a mesh fix, a
fix for the recently introduced RX aggregation offload, a revert for
a broken patch (that luckily didn't really cause any harm) and a small
fix for alignment in debugfs."
Signed-off-by: John W. Linville <linville@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/regulatory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/regulatory.h b/include/net/regulatory.h index 259992444e80..dad7ab20a8cb 100644 --- a/include/net/regulatory.h +++ b/include/net/regulatory.h @@ -167,7 +167,7 @@ struct ieee80211_reg_rule { struct ieee80211_regdomain { struct rcu_head rcu_head; u32 n_reg_rules; - char alpha2[2]; + char alpha2[3]; enum nl80211_dfs_regions dfs_region; struct ieee80211_reg_rule reg_rules[]; }; |