Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
6303710d
Commit
6303710d
authored
Jan 05, 2011
by
John W. Linville
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
db98a6cf
d2460f4b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
5 deletions
+20
-5
drivers/net/wireless/hostap/hostap_main.c
drivers/net/wireless/hostap/hostap_main.c
+0
-1
drivers/net/wireless/iwlwifi/iwl-agn.c
drivers/net/wireless/iwlwifi/iwl-agn.c
+5
-4
drivers/net/wireless/iwlwifi/iwl-helpers.h
drivers/net/wireless/iwlwifi/iwl-helpers.h
+6
-0
net/mac80211/key.c
net/mac80211/key.c
+6
-0
net/mac80211/rx.c
net/mac80211/rx.c
+3
-0
No files found.
drivers/net/wireless/hostap/hostap_main.c
View file @
6303710d
...
...
@@ -891,7 +891,6 @@ void hostap_setup_dev(struct net_device *dev, local_info_t *local,
SET_ETHTOOL_OPS
(
dev
,
&
prism2_ethtool_ops
);
netif_stop_queue
(
dev
);
}
static
int
hostap_enable_hostapd
(
local_info_t
*
local
,
int
rtnl_locked
)
...
...
drivers/net/wireless/iwlwifi/iwl-agn.c
View file @
6303710d
...
...
@@ -3280,9 +3280,10 @@ void iwlagn_mac_stop(struct ieee80211_hw *hw)
flush_workqueue
(
priv
->
workqueue
);
/* enable interrupts again in order to receive rfkill changes */
/* User space software may expect getting rfkill changes
* even if interface is down */
iwl_write32
(
priv
,
CSR_INT
,
0xFFFFFFFF
);
iwl_enable_
interrupts
(
priv
);
iwl_enable_
rfkill_int
(
priv
);
IWL_DEBUG_MAC80211
(
priv
,
"leave
\n
"
);
}
...
...
@@ -4191,14 +4192,14 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
* 8. Enable interrupts and read RFKILL state
*********************************************/
/* enable
interrupts if needed
: hw bug w/a */
/* enable
rfkill interrupt
: hw bug w/a */
pci_read_config_word
(
priv
->
pci_dev
,
PCI_COMMAND
,
&
pci_cmd
);
if
(
pci_cmd
&
PCI_COMMAND_INTX_DISABLE
)
{
pci_cmd
&=
~
PCI_COMMAND_INTX_DISABLE
;
pci_write_config_word
(
priv
->
pci_dev
,
PCI_COMMAND
,
pci_cmd
);
}
iwl_enable_
interrupts
(
priv
);
iwl_enable_
rfkill_int
(
priv
);
/* If platform's RF_KILL switch is NOT set to KILL */
if
(
iwl_read32
(
priv
,
CSR_GP_CNTRL
)
&
CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW
)
...
...
drivers/net/wireless/iwlwifi/iwl-helpers.h
View file @
6303710d
...
...
@@ -148,6 +148,12 @@ static inline void iwl_disable_interrupts(struct iwl_priv *priv)
IWL_DEBUG_ISR
(
priv
,
"Disabled interrupts
\n
"
);
}
static
inline
void
iwl_enable_rfkill_int
(
struct
iwl_priv
*
priv
)
{
IWL_DEBUG_ISR
(
priv
,
"Enabling rfkill interrupt
\n
"
);
iwl_write32
(
priv
,
CSR_INT_MASK
,
CSR_INT_BIT_RF_KILL
);
}
static
inline
void
iwl_enable_interrupts
(
struct
iwl_priv
*
priv
)
{
IWL_DEBUG_ISR
(
priv
,
"Enabling interrupts
\n
"
);
...
...
net/mac80211/key.c
View file @
6303710d
...
...
@@ -375,6 +375,12 @@ static void __ieee80211_key_destroy(struct ieee80211_key *key)
if
(
!
key
)
return
;
/*
* Synchronize so the TX path can no longer be using
* this key before we free/remove it.
*/
synchronize_rcu
();
if
(
key
->
local
)
ieee80211_key_disable_hw_accel
(
key
);
...
...
net/mac80211/rx.c
View file @
6303710d
...
...
@@ -1808,6 +1808,8 @@ ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
if
(
!
fwd_skb
&&
net_ratelimit
())
printk
(
KERN_DEBUG
"%s: failed to clone mesh frame
\n
"
,
sdata
->
name
);
if
(
!
fwd_skb
)
goto
out
;
fwd_hdr
=
(
struct
ieee80211_hdr
*
)
fwd_skb
->
data
;
memcpy
(
fwd_hdr
->
addr2
,
sdata
->
vif
.
addr
,
ETH_ALEN
);
...
...
@@ -1845,6 +1847,7 @@ ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
}
}
out:
if
(
is_multicast_ether_addr
(
hdr
->
addr1
)
||
sdata
->
dev
->
flags
&
IFF_PROMISC
)
return
RX_CONTINUE
;
...
...
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