Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
ef8b5fda
Commit
ef8b5fda
authored
12 years ago
by
Felix Fietkau
Browse files
Options
Downloads
Patches
Plain Diff
mac80211: fix regdb locking issues
SVN-Revision: 33398
parent
623169bc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
package/mac80211/patches/300-pending_work.patch
+35
-0
35 additions, 0 deletions
package/mac80211/patches/300-pending_work.patch
package/mac80211/patches/405-regd_no_assoc_hints.patch
+2
-2
2 additions, 2 deletions
package/mac80211/patches/405-regd_no_assoc_hints.patch
with
37 additions
and
2 deletions
package/mac80211/patches/300-pending_work.patch
+
35
−
0
View file @
ef8b5fda
...
@@ -327,3 +327,38 @@
...
@@ -327,3 +327,38 @@
priv->tsf_high32 = 0;
priv->tsf_high32 = 0;
priv->tsf_low32 = 0;
priv->tsf_low32 = 0;
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -352,6 +352,9 @@
static void reg_regdb_search(struct work
struct reg_regdb_search_request *request;
const struct ieee80211_regdomain *curdom, *regdom;
int i, r;
+ bool set_reg = false;
+
+ mutex_lock(&cfg80211_mutex);
mutex_lock(®_regdb_search_mutex);
while (!list_empty(®_regdb_search_list)) {
@@ -367,9 +370,7 @@
static void reg_regdb_search(struct work
r = reg_copy_regd(®dom, curdom);
if (r)
break;
- mutex_lock(&cfg80211_mutex);
- set_regdom(regdom);
- mutex_unlock(&cfg80211_mutex);
+ set_reg = true;
break;
}
}
@@ -377,6 +378,11 @@
static void reg_regdb_search(struct work
kfree(request);
}
mutex_unlock(®_regdb_search_mutex);
+
+ if (set_reg)
+ set_regdom(regdom);
+
+ mutex_unlock(&cfg80211_mutex);
}
static DECLARE_WORK(reg_regdb_work, reg_regdb_search);
This diff is collapsed.
Click to expand it.
package/mac80211/patches/405-regd_no_assoc_hints.patch
+
2
−
2
View file @
ef8b5fda
--- a/net/wireless/reg.c
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -179
0
,6 +179
0
,8 @@
void regulatory_hint_11d(struct wiphy *w
@@ -179
6
,6 +179
6
,8 @@
void regulatory_hint_11d(struct wiphy *w
enum environment_cap env = ENVIRON_ANY;
enum environment_cap env = ENVIRON_ANY;
struct regulatory_request *request;
struct regulatory_request *request;
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
mutex_lock(®_mutex);
mutex_lock(®_mutex);
if (unlikely(!last_request))
if (unlikely(!last_request))
@@ -20
24
,6 +202
6
,8 @@
static void restore_regulatory_settings(
@@ -20
30
,6 +20
3
2,8 @@
static void restore_regulatory_settings(
void regulatory_hint_disconnect(void)
void regulatory_hint_disconnect(void)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment