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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG-RAN
Commits
827e5681
Commit
827e5681
authored
May 07, 2024
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debug info
parent
72ee9d84
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
nfapi/oai_integration/aerial/fapi_nvIPC.c
nfapi/oai_integration/aerial/fapi_nvIPC.c
+1
-0
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+1
-1
No files found.
nfapi/oai_integration/aerial/fapi_nvIPC.c
View file @
827e5681
...
...
@@ -694,6 +694,7 @@ int nvIPC_Init(char* if_name) {
// Want to use transport SHM, type epoll, module secondary (reads the created shm from cuphycontroller)
load_hard_code_config
(
&
nv_ipc_config
,
NV_IPC_MODULE_SECONDARY
,
NV_IPC_TRANSPORT_SHM
);
// Create nv_ipc_t instance
LOG_I
(
NFAPI_VNF
,
"%s: creatinf IPC interface with prefix %s
\n
"
,
__func__
,
if_name
);
strcpy
(
nv_ipc_config
.
transport_config
.
shm
.
prefix
,
if_name
);
if
((
ipc
=
create_nv_ipc_interface
(
&
nv_ipc_config
))
==
NULL
)
{
LOG_E
(
NFAPI_VNF
,
"%s: create IPC interface failed
\n
"
,
__func__
);
...
...
openair2/GNB_APP/gnb_config.c
View file @
827e5681
...
...
@@ -1349,10 +1349,10 @@ void RCconfig_nr_macrlc(configmodule_interface_t *cfg)
printf
(
"**************** RETURNED FROM configure_nfapi_vnf() vnf_port:%d
\n
"
,
RC
.
nrmac
[
j
]
->
eth_params_s
.
my_portc
);
}
else
if
(
strcmp
(
*
(
MacRLC_ParamList
.
paramarray
[
j
][
MACRLC_TRANSPORT_S_PREFERENCE_IDX
].
strptr
),
"aerial"
)
==
0
){
#ifdef ENABLE_AERIAL
printf
(
"Configuring VNF for Aerial connection
\n
"
);
// we are abusing slightly the struture as we are not really using ethernet transport in this case
RC
.
nrmac
[
j
]
->
eth_params_s
.
transp_preference
=
FAPI_AERIAL
;
RC
.
nrmac
[
j
]
->
eth_params_s
.
local_if_name
=
strdup
(
*
(
MacRLC_ParamList
.
paramarray
[
j
][
MACRLC_TRANSPORT_S_SHM_PREFIX
].
strptr
));
printf
(
"Configuring VNF for Aerial connection with prefix %s
\n
"
,
RC
.
nrmac
[
j
]
->
eth_params_s
.
local_if_name
);
aerial_configure_nr_fapi_vnf
();
#endif
}
else
{
// other midhaul
...
...
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