summaryrefslogtreecommitdiff
path: root/patches/09-cfg80211-wext-padding.patch
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>2012-08-14 15:58:07 -0700
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>2012-08-14 15:58:07 -0700
commita23a266a05c18ed3886a3b88d6c348c12f849a35 (patch)
tree51e4686ab06f62a08d05b6aeb95c215747bae314 /patches/09-cfg80211-wext-padding.patch
parent5a8472c710f86ef8bd8468e066a5ab7c98b5e745 (diff)
compat-drivers: complete compat-wirelss --> compat-drivers rename
The name change is now completed, including the git tree. Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Diffstat (limited to 'patches/09-cfg80211-wext-padding.patch')
-rw-r--r--patches/09-cfg80211-wext-padding.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/09-cfg80211-wext-padding.patch b/patches/09-cfg80211-wext-padding.patch
index 6b1425f9..de4e8e48 100644
--- a/patches/09-cfg80211-wext-padding.patch
+++ b/patches/09-cfg80211-wext-padding.patch
@@ -12,14 +12,14 @@ Consider a kernel that has this code in net/wireless/wext-core.c:
#endif
If a kernel is compiled without CONFIG_WIRELESS_EXT then
-compat-wireless can't do wireless extensions against it.
+compat-drivers can't do wireless extensions against it.
However, if the kernel is compiled with CONFIG_CFG80211_WEXT
then it will try to get the wext handlers from struct wiphy.
Now, struct wiphy in the base kernel and struct wiphy in
-compat-wireless don't match, so the kernel crashes!!
+compat-drivers don't match, so the kernel crashes!!
-To fix this, add lots of padding to compat-wireless's
+To fix this, add lots of padding to compat-drivers's
struct wiphy so that the "wext" pointer is guaranteed
to be NULL.