diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 03:10:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 03:10:56 +0000 |
commit | 67dd9a73dcb62e5b072244dddd7b19d521e20e67 (patch) | |
tree | 3d0dbf6e0906fe0c7ef1446c08254effa561a40b /package/mac80211/patches/013-prism2-ioctl-bridge-packets.patch | |
parent | 224760dee7a5f0913d894b7a23cc8d94b353dd70 (diff) | |
download | upstream-67dd9a73dcb62e5b072244dddd7b19d521e20e67.tar.gz upstream-67dd9a73dcb62e5b072244dddd7b19d521e20e67.tar.bz2 upstream-67dd9a73dcb62e5b072244dddd7b19d521e20e67.zip |
fix up hostapd for mac80211
SVN-Revision: 9554
Diffstat (limited to 'package/mac80211/patches/013-prism2-ioctl-bridge-packets.patch')
-rw-r--r-- | package/mac80211/patches/013-prism2-ioctl-bridge-packets.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/mac80211/patches/013-prism2-ioctl-bridge-packets.patch b/package/mac80211/patches/013-prism2-ioctl-bridge-packets.patch new file mode 100644 index 0000000000..d418ad3497 --- /dev/null +++ b/package/mac80211/patches/013-prism2-ioctl-bridge-packets.patch @@ -0,0 +1,26 @@ +--- + net/mac80211/ieee80211_ioctl.c | 6 ++++++ + 1 file changed, 6 insertions(+) + +--- everything.orig/net/mac80211/ieee80211_ioctl.c 2007-11-07 13:19:27.981515569 +0100 ++++ everything/net/mac80211/ieee80211_ioctl.c 2007-11-07 13:19:30.781513182 +0100 +@@ -882,6 +882,9 @@ static int ieee80211_ioctl_prism2_param( + local = sdata->local; + + switch (param) { ++ case PRISM2_PARAM_AP_BRIDGE_PACKETS: ++ local->bridge_packets = value; ++ break; + case PRISM2_PARAM_MGMT_IF: + if (value == 1) { + if (!local->apdev) +@@ -914,6 +917,9 @@ static int ieee80211_ioctl_get_prism2_pa + local = sdata->local; + + switch (*param) { ++ case PRISM2_PARAM_AP_BRIDGE_PACKETS: ++ *param = local->bridge_packets; ++ break; + case PRISM2_PARAM_MGMT_IF: + if (local->apdev) + *param = local->apdev->ifindex; |