Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
ddd535c7
Commit
ddd535c7
authored
Nov 12, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
parents
e23a59e1
f7cd1686
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
4 deletions
+10
-4
drivers/net/wireless/hostap/hostap_wlan.h
drivers/net/wireless/hostap/hostap_wlan.h
+4
-1
drivers/net/wireless/rtl8187_dev.c
drivers/net/wireless/rtl8187_dev.c
+3
-0
net/mac80211/mlme.c
net/mac80211/mlme.c
+3
-3
No files found.
drivers/net/wireless/hostap/hostap_wlan.h
View file @
ddd535c7
...
@@ -918,9 +918,12 @@ struct hostap_interface {
...
@@ -918,9 +918,12 @@ struct hostap_interface {
/*
/*
* TX meta data - stored in skb->cb buffer, so this must not be increased over
* TX meta data - stored in skb->cb buffer, so this must not be increased over
* the 40-byte limit
* the 48-byte limit.
* THE PADDING THIS STARTS WITH IS A HORRIBLE HACK THAT SHOULD NOT LIVE
* TO SEE THE DAY.
*/
*/
struct
hostap_skb_tx_data
{
struct
hostap_skb_tx_data
{
unsigned
int
__padding_for_default_qdiscs
;
u32
magic
;
/* HOSTAP_SKB_TX_DATA_MAGIC */
u32
magic
;
/* HOSTAP_SKB_TX_DATA_MAGIC */
u8
rate
;
/* transmit rate */
u8
rate
;
/* transmit rate */
#define HOSTAP_TX_FLAGS_WDS BIT(0)
#define HOSTAP_TX_FLAGS_WDS BIT(0)
...
...
drivers/net/wireless/rtl8187_dev.c
View file @
ddd535c7
...
@@ -48,6 +48,9 @@ static struct usb_device_id rtl8187_table[] __devinitdata = {
...
@@ -48,6 +48,9 @@ static struct usb_device_id rtl8187_table[] __devinitdata = {
{
USB_DEVICE
(
0x03f0
,
0xca02
),
.
driver_info
=
DEVICE_RTL8187
},
{
USB_DEVICE
(
0x03f0
,
0xca02
),
.
driver_info
=
DEVICE_RTL8187
},
/* Sitecom */
/* Sitecom */
{
USB_DEVICE
(
0x0df6
,
0x000d
),
.
driver_info
=
DEVICE_RTL8187
},
{
USB_DEVICE
(
0x0df6
,
0x000d
),
.
driver_info
=
DEVICE_RTL8187
},
{
USB_DEVICE
(
0x0df6
,
0x0028
),
.
driver_info
=
DEVICE_RTL8187B
},
/* Abocom */
{
USB_DEVICE
(
0x13d1
,
0xabe6
),
.
driver_info
=
DEVICE_RTL8187
},
{}
{}
};
};
...
...
net/mac80211/mlme.c
View file @
ddd535c7
...
@@ -2570,14 +2570,14 @@ void ieee80211_notify_mac(struct ieee80211_hw *hw,
...
@@ -2570,14 +2570,14 @@ void ieee80211_notify_mac(struct ieee80211_hw *hw,
switch
(
notif_type
)
{
switch
(
notif_type
)
{
case
IEEE80211_NOTIFY_RE_ASSOC
:
case
IEEE80211_NOTIFY_RE_ASSOC
:
r
cu_read
_lock
();
r
tnl
_lock
();
list_for_each_entry
_rcu
(
sdata
,
&
local
->
interfaces
,
list
)
{
list_for_each_entry
(
sdata
,
&
local
->
interfaces
,
list
)
{
if
(
sdata
->
vif
.
type
!=
NL80211_IFTYPE_STATION
)
if
(
sdata
->
vif
.
type
!=
NL80211_IFTYPE_STATION
)
continue
;
continue
;
ieee80211_sta_req_auth
(
sdata
,
&
sdata
->
u
.
sta
);
ieee80211_sta_req_auth
(
sdata
,
&
sdata
->
u
.
sta
);
}
}
r
cu_read
_unlock
();
r
tnl
_unlock
();
break
;
break
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment