diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-04-16 17:00:58 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-04-17 23:27:13 +0400 |
commit | cd1658f592a60d028dd2e48d86724b737a82cab0 (patch) | |
tree | 1ab6ca94c78fa9281e1d4fb12d9e8b85a69f93fc /net/wireless/core.h | |
parent | 160002fe845218f5789a26954048592c3920ac7b (diff) | |
download | linux-cd1658f592a60d028dd2e48d86724b737a82cab0.tar.xz |
cfg80211: do not replace BSS structs
Instead, allocate extra IE memory if necessary. Normally,
this isn't even necessary since there's enough space.
This is a better way of correcting the "held BSS can
disappear" issue, but also a lot more code. It is also
necessary for proper auth/assoc BSS handling in the
future.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless/core.h')
-rw-r--r-- | net/wireless/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/core.h b/net/wireless/core.h index d43daa236ef9..0a592e4295f0 100644 --- a/net/wireless/core.h +++ b/net/wireless/core.h @@ -90,7 +90,7 @@ struct cfg80211_internal_bss { struct rb_node rbn; unsigned long ts; struct kref ref; - bool hold; + bool hold, ies_allocated; /* must be last because of priv member */ struct cfg80211_bss pub; |