Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
常顺宇
OpenXG-RAN
Commits
bcc009b2
Commit
bcc009b2
authored
Feb 09, 2021
by
hardy
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/nasmesh_kernel_5.8' into integration_2021_wk06_b
parents
403db5f6
6add9968
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
openair2/NETWORK_DRIVER/LITE/device.c
openair2/NETWORK_DRIVER/LITE/device.c
+4
-0
openair2/NETWORK_DRIVER/MESH/device.c
openair2/NETWORK_DRIVER/MESH/device.c
+3
-3
openair2/NETWORK_DRIVER/UE_IP/device.c
openair2/NETWORK_DRIVER/UE_IP/device.c
+6
-1
No files found.
openair2/NETWORK_DRIVER/LITE/device.c
View file @
bcc009b2
...
...
@@ -316,7 +316,11 @@ void oai_nw_drv_change_rx_flags(struct net_device *dev, int flags)
}
//---------------------------------------------------------------------------
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
void
oai_nw_drv_tx_timeout
(
struct
net_device
*
dev
,
unsigned
int
txqueue
)
#else
void
oai_nw_drv_tx_timeout
(
struct
net_device
*
dev
)
#endif
{
//---------------------------------------------------------------------------
// Transmitter timeout, serious problems.
...
...
openair2/NETWORK_DRIVER/MESH/device.c
View file @
bcc009b2
...
...
@@ -297,10 +297,10 @@ int nas_change_mtu(struct net_device *dev, int mtu)
}
//---------------------------------------------------------------------------
#if LINUX_VERSION_CODE
< KERNEL_VERSION(5,7
,0)
void
nas_tx_timeout
(
struct
net_device
*
dev
)
#if LINUX_VERSION_CODE
>= KERNEL_VERSION(5,6
,0)
void
nas_tx_timeout
(
struct
net_device
*
dev
,
unsigned
int
txqueue
)
#else
void
nas_tx_timeout
(
struct
net_device
*
dev
,
unsigned
int
x
)
void
nas_tx_timeout
(
struct
net_device
*
dev
)
#endif
{
//---------------------------------------------------------------------------
...
...
openair2/NETWORK_DRIVER/UE_IP/device.c
View file @
bcc009b2
...
...
@@ -302,7 +302,12 @@ void ue_ip_change_rx_flags(struct net_device *dev_pP, int flagsP) {
}
//---------------------------------------------------------------------------
void
ue_ip_tx_timeout
(
struct
net_device
*
dev_pP
)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
void
ue_ip_tx_timeout
(
struct
net_device
*
dev_pP
,
unsigned
int
txqueue
)
#else
void
ue_ip_tx_timeout
(
struct
net_device
*
dev_pP
)
#endif
{
//---------------------------------------------------------------------------
// Transmitter timeout, serious problems.
ue_ip_priv_t
*
priv_p
=
netdev_priv
(
dev_pP
);
...
...
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