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
lizhongxiao
OpenXG-RAN
Commits
47764ebb
Commit
47764ebb
authored
Aug 08, 2018
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/issue-centos-fixes' into ru_rau_enhancement
parents
53a31093
11a33bc4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
3 deletions
+22
-3
openair1/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
+6
-0
openair1/PHY/LTE_UE_TRANSPORT/linear_preprocessing_rec.c
openair1/PHY/LTE_UE_TRANSPORT/linear_preprocessing_rec.c
+7
-2
openair2/NETWORK_DRIVER/MESH/device.c
openair2/NETWORK_DRIVER/MESH/device.c
+4
-0
openair2/NETWORK_DRIVER/UE_IP/device.c
openair2/NETWORK_DRIVER/UE_IP/device.c
+5
-1
No files found.
openair1/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
View file @
47764ebb
...
...
@@ -40,8 +40,14 @@
#include<math.h>
#include <stdlib.h>
#include <string.h>
#include <linux/version.h>
#if RHEL_RELEASE_CODE >= 1796
#include <lapacke/lapacke_utils.h>
#include <lapacke/lapacke.h>
#else
#include <lapacke_utils.h>
#include <lapacke.h>
#endif
#include <cblas.h>
#include "linear_preprocessing_rec.h"
...
...
openair1/PHY/LTE_UE_TRANSPORT/linear_preprocessing_rec.c
View file @
47764ebb
...
...
@@ -13,9 +13,14 @@ data storage. */
#include <stdlib.h>
#include <cblas.h>
#include <string.h>
#include <linux/version.h>
#if RHEL_RELEASE_CODE >= 1796
#include <lapacke/lapacke_utils.h>
#include <lapacke/lapacke.h>
#else
#include <lapacke_utils.h>
#include <lapacke.h>
#endif
//#define DEBUG_PREPROC
...
...
@@ -366,4 +371,4 @@ float sqrt_float(float x, float sqrt_x)
{
sqrt_x
=
(
float
)(
sqrt
((
double
)(
x
)));
return
sqrt_x
;
}
\ No newline at end of file
}
openair2/NETWORK_DRIVER/MESH/device.c
View file @
47764ebb
...
...
@@ -324,7 +324,11 @@ static const struct net_device_ops nasmesh_netdev_ops = {
.
ndo_set_mac_address
=
NULL
,
.
ndo_set_config
=
nas_set_config
,
.
ndo_do_ioctl
=
nas_CTL_ioctl
,
#if RHEL_RELEASE_CODE>=1797
.
extended
.
ndo_change_mtu
=
nas_change_mtu
,
#else
.
ndo_change_mtu
=
nas_change_mtu
,
#endif
.
ndo_tx_timeout
=
nas_tx_timeout
,
};
...
...
openair2/NETWORK_DRIVER/UE_IP/device.c
View file @
47764ebb
...
...
@@ -349,7 +349,11 @@ static const struct net_device_ops ue_ip_netdev_ops = {
.
ndo_set_mac_address
=
ue_ip_set_mac_address
,
.
ndo_set_config
=
ue_ip_set_config
,
.
ndo_do_ioctl
=
NULL
,
.
ndo_change_mtu
=
ue_ip_change_mtu
,
#if RHEL_RELEASE_CODE>=1797
.
extended
.
ndo_change_mtu
=
ue_ip_change_mtu
,
#else
.
ndo_change_mtu
=
ue_ip_change_mtu
,
#endif
.
ndo_tx_timeout
=
ue_ip_tx_timeout
,
.
ndo_change_rx_flags
=
ue_ip_change_rx_flags
,
};
...
...
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