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
0cff647e
Commit
0cff647e
authored
Feb 16, 2024
by
Rúben Soares da Silva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call NR_Slot_indication when handling SLOT.indication from PNF instead of NR_UL_Indication
parent
a7d6dd25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fapi/oai-integration/fapi_vnf_p5.c
fapi/oai-integration/fapi_vnf_p5.c
+1
-1
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
+1
-1
No files found.
fapi/oai-integration/fapi_vnf_p5.c
View file @
0cff647e
...
@@ -753,7 +753,7 @@ int aerial_nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t *config)
...
@@ -753,7 +753,7 @@ int aerial_nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t *config)
"Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d
\n
"
,
"Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d
\n
"
,
gNB
->
UL_INFO
.
frame
,
gNB
->
UL_INFO
.
frame
,
gNB
->
UL_INFO
.
slot
);
gNB
->
UL_INFO
.
slot
);
gNB
->
if_inst
->
NR_
UL_indication
(
&
gNB
->
UL_INFO
);
gNB
->
if_inst
->
NR_
slot_indication
(
gNB
->
Mod_id
,
gNB
->
CC_id
,
slot_ind
->
sfn
,
slot_ind
->
slot
);
prev_slot
=
gNB
->
UL_INFO
.
slot
;
prev_slot
=
gNB
->
UL_INFO
.
slot
;
}
}
free
(
slot_ind
);
free
(
slot_ind
);
...
...
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
View file @
0cff647e
...
@@ -194,7 +194,7 @@ int nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t* config)
...
@@ -194,7 +194,7 @@ int nfapi_nr_vnf_p7_start(nfapi_vnf_p7_config_t* config)
gNB
->
UL_INFO
.
CC_id
=
gNB
->
CC_id
;
gNB
->
UL_INFO
.
CC_id
=
gNB
->
CC_id
;
NFAPI_TRACE
(
NFAPI_TRACE_DEBUG
,
"Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d
\n
"
,
NFAPI_TRACE
(
NFAPI_TRACE_DEBUG
,
"Calling NR_UL_indication for gNB->UL_INFO.frame = %d and slot %d
\n
"
,
gNB
->
UL_INFO
.
frame
,
gNB
->
UL_INFO
.
slot
);
gNB
->
UL_INFO
.
frame
,
gNB
->
UL_INFO
.
slot
);
gNB
->
if_inst
->
NR_UL_indication
(
&
gNB
->
UL_INFO
);
gNB
->
if_inst
->
NR_slot_indication
(
gNB
->
Mod_id
,
gNB
->
CC_id
,
slot_ind
->
sfn
,
slot_ind
->
slot
);
prev_slot
=
gNB
->
UL_INFO
.
slot
;
prev_slot
=
gNB
->
UL_INFO
.
slot
;
}
}
free
(
slot_ind
);
free
(
slot_ind
);
...
...
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