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
53f09e74
Commit
53f09e74
authored
Mar 02, 2016
by
Emmanuel Grumbach
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixes' into next
Signed-off-by:
Emmanuel Grumbach
<
emmanuel.grumbach@intel.com
>
parents
b4f7a9d1
905e36ae
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
drivers/net/wireless/intel/iwlwifi/mvm/fw.c
drivers/net/wireless/intel/iwlwifi/mvm/fw.c
+3
-1
drivers/net/wireless/intel/iwlwifi/mvm/mvm.h
drivers/net/wireless/intel/iwlwifi/mvm/mvm.h
+3
-0
drivers/net/wireless/intel/iwlwifi/mvm/ops.c
drivers/net/wireless/intel/iwlwifi/mvm/ops.c
+2
-0
drivers/net/wireless/intel/iwlwifi/mvm/tx.c
drivers/net/wireless/intel/iwlwifi/mvm/tx.c
+9
-0
No files found.
drivers/net/wireless/intel/iwlwifi/mvm/fw.c
View file @
53f09e74
...
...
@@ -126,7 +126,7 @@ static int iwl_send_rss_cfg_cmd(struct iwl_mvm *mvm)
return
iwl_mvm_send_cmd_pdu
(
mvm
,
RSS_CONFIG_CMD
,
0
,
sizeof
(
cmd
),
&
cmd
);
}
static
void
iwl_free_fw_paging
(
struct
iwl_mvm
*
mvm
)
void
iwl_free_fw_paging
(
struct
iwl_mvm
*
mvm
)
{
int
i
;
...
...
@@ -146,6 +146,8 @@ static void iwl_free_fw_paging(struct iwl_mvm *mvm)
get_order
(
mvm
->
fw_paging_db
[
i
].
fw_paging_size
));
}
kfree
(
mvm
->
trans
->
paging_download_buf
);
mvm
->
trans
->
paging_download_buf
=
NULL
;
memset
(
mvm
->
fw_paging_db
,
0
,
sizeof
(
mvm
->
fw_paging_db
));
}
...
...
drivers/net/wireless/intel/iwlwifi/mvm/mvm.h
View file @
53f09e74
...
...
@@ -1318,6 +1318,9 @@ void iwl_mvm_rx_umac_scan_complete_notif(struct iwl_mvm *mvm,
void
iwl_mvm_rx_umac_scan_iter_complete_notif
(
struct
iwl_mvm
*
mvm
,
struct
iwl_rx_cmd_buffer
*
rxb
);
/* Paging */
void
iwl_free_fw_paging
(
struct
iwl_mvm
*
mvm
);
/* MVM debugfs */
#ifdef CONFIG_IWLWIFI_DEBUGFS
int
iwl_mvm_dbgfs_register
(
struct
iwl_mvm
*
mvm
,
struct
dentry
*
dbgfs_dir
);
...
...
drivers/net/wireless/intel/iwlwifi/mvm/ops.c
View file @
53f09e74
...
...
@@ -733,6 +733,8 @@ static void iwl_op_mode_mvm_stop(struct iwl_op_mode *op_mode)
for
(
i
=
0
;
i
<
NVM_MAX_NUM_SECTIONS
;
i
++
)
kfree
(
mvm
->
nvm_sections
[
i
].
data
);
iwl_free_fw_paging
(
mvm
);
iwl_mvm_tof_clean
(
mvm
);
ieee80211_free_hw
(
mvm
->
hw
);
...
...
drivers/net/wireless/intel/iwlwifi/mvm/tx.c
View file @
53f09e74
...
...
@@ -430,6 +430,15 @@ int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb)
return
-
1
;
}
/*
* Increase the pending frames counter, so that later when a reply comes
* in and the counter is decreased - we don't start getting negative
* values.
* Note that we don't need to make sure it isn't agg'd, since we're
* TXing non-sta
*/
atomic_inc
(
&
mvm
->
pending_frames
[
sta_id
]);
return
0
;
}
...
...
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