BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mangoh-drivers
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
mangoh-drivers
Commits
427ac695
Commit
427ac695
authored
Sep 29, 2017
by
David Clark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bugs in AP mode with ifup/ifdown
parent
636c71db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
8 deletions
+1
-8
core.h
linux_kernel_modules/mt7697wifi/core.h
+1
-1
txrx.c
linux_kernel_modules/mt7697wifi/txrx.c
+0
-7
No files found.
linux_kernel_modules/mt7697wifi/core.h
View file @
427ac695
...
...
@@ -38,7 +38,7 @@
#define MT7697_MAX_MC_FILTERS_PER_LIST 7
#define MT7697_MAX_COOKIE_NUM 180
#define MT7697_TX_TIMEOUT 10
#define MT7697_TX_PKT_POOL_LEN
64
#define MT7697_TX_PKT_POOL_LEN
128
/* TODO update below */
#define MT7697_DISCON_TIMER_INTVAL_MSEC (300 * 1000)
...
...
linux_kernel_modules/mt7697wifi/txrx.c
View file @
427ac695
...
...
@@ -27,13 +27,6 @@ int mt7697_data_tx(struct sk_buff *skb, struct net_device *ndev)
dev_dbg
(
cfg
->
dev
,
"%s(): tx len(%u)
\n
"
,
__func__
,
skb
->
len
);
if
(
!
test_bit
(
CONNECTED
,
&
vif
->
flags
))
{
dev_warn
(
cfg
->
dev
,
"%s(): interface not associated
\n
"
,
__func__
);
ret
=
-
EAGAIN
;
goto
cleanup
;
}
dev_dbg
(
cfg
->
dev
,
"%s(): headroom skb/needed(%u/%u)
\n
"
,
__func__
,
skb_headroom
(
skb
),
ndev
->
needed_headroom
);
if
(
skb_headroom
(
skb
)
<
ndev
->
needed_headroom
)
{
...
...
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