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
7ee619b0
Commit
7ee619b0
authored
Apr 01, 2026
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MACRLCs my/remote_portc: remove, is unused
parent
7cf92f4b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
8 deletions
+3
-8
openair2/GNB_APP/MACRLC_nr_paramdef.h
openair2/GNB_APP/MACRLC_nr_paramdef.h
+0
-6
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+2
-2
openair2/LAYER2/NR_MAC_gNB/mac_rrc_ul_f1ap.c
openair2/LAYER2/NR_MAC_gNB/mac_rrc_ul_f1ap.c
+1
-0
No files found.
openair2/GNB_APP/MACRLC_nr_paramdef.h
View file @
7ee619b0
...
...
@@ -19,8 +19,6 @@
#define MACRLC_LOCAL_N_ADDRESS "local_n_address"
#define MACRLC_LOCAL_N_ADDRESS_F1U "local_n_address_f1u"
#define MACRLC_REMOTE_N_ADDRESS "remote_n_address"
#define MACRLC_LOCAL_N_PORTC "local_n_portc"
#define MACRLC_REMOTE_N_PORTC "remote_n_portc"
#define MACRLC_LOCAL_N_PORTD "local_n_portd"
#define MACRLC_REMOTE_N_PORTD "remote_n_portd"
#define MACRLC_TRANSPORT_S_PREFERENCE "tr_s_preference"
...
...
@@ -89,8 +87,6 @@
{MACRLC_TRANSPORT_N_PREFERENCE, NULL, 0, .strptr=NULL, .defstrval="local_L1", TYPE_STRING, 0}, \
{MACRLC_LOCAL_N_ADDRESS, NULL, 0, .strptr=NULL, .defstrval="127.0.0.1", TYPE_STRING, 0}, \
{MACRLC_REMOTE_N_ADDRESS, NULL, 0, .uptr=NULL, .defstrval="127.0.0.2", TYPE_STRING, 0}, \
{MACRLC_LOCAL_N_PORTC, NULL, 0, .uptr=NULL, .defintval=50010, TYPE_UINT, 0}, \
{MACRLC_REMOTE_N_PORTC, NULL, 0, .uptr=NULL, .defintval=50010, TYPE_UINT, 0}, \
{MACRLC_LOCAL_N_PORTD, NULL, 0, .uptr=NULL, .defintval=50011, TYPE_UINT, 0}, \
{MACRLC_REMOTE_N_PORTD, NULL, 0, .uptr=NULL, .defintval=50011, TYPE_UINT, 0}, \
{MACRLC_TRANSPORT_S_PREFERENCE, NULL, 0, .strptr=NULL, .defstrval="local_RRC", TYPE_STRING, 0}, \
...
...
@@ -155,8 +151,6 @@
{ .s5 = { NULL } }, \
{ .s5 = { NULL } }, \
{ .s5 = { NULL } }, \
{ .s5 = { NULL } }, \
{ .s5 = { NULL } }, \
{ .s2 = { config_check_intrange, {0, 31} } },
/* DL min MCS */
\
{ .s2 = { config_check_intrange, {0, 31} } },
/* DL max MCS */
\
{ .s5 = { NULL } }, \
...
...
openair2/GNB_APP/gnb_config.c
View file @
7ee619b0
...
...
@@ -1677,8 +1677,8 @@ void RCconfig_nr_macrlc(configmodule_interface_t *cfg)
char
**
f1uaddr
=
gpd
(
params
,
np
,
MACRLC_LOCAL_N_ADDRESS_F1U
)
->
strptr
;
RC
.
nrmac
[
j
]
->
f1u_addr
=
f1uaddr
!=
NULL
?
strdup
(
*
f1uaddr
)
:
strdup
(
*
f1caddr
);
RC
.
nrmac
[
j
]
->
eth_params_n
.
remote_addr
=
strdup
(
*
gpd
(
params
,
np
,
MACRLC_REMOTE_N_ADDRESS
)
->
strptr
);
RC
.
nrmac
[
j
]
->
eth_params_n
.
my_portc
=
*
gpd
(
params
,
np
,
MACRLC_LOCAL_N_PORTC
)
->
iptr
;
RC
.
nrmac
[
j
]
->
eth_params_n
.
remote_portc
=
*
gpd
(
params
,
np
,
MACRLC_REMOTE_N_PORTC
)
->
iptr
;
RC
.
nrmac
[
j
]
->
eth_params_n
.
my_portc
=
0
;
// not used
RC
.
nrmac
[
j
]
->
eth_params_n
.
remote_portc
=
0
;
// not used
RC
.
nrmac
[
j
]
->
eth_params_n
.
my_portd
=
*
gpd
(
params
,
np
,
MACRLC_LOCAL_N_PORTD
)
->
iptr
;
RC
.
nrmac
[
j
]
->
eth_params_n
.
remote_portd
=
*
gpd
(
params
,
np
,
MACRLC_REMOTE_N_PORTD
)
->
iptr
;
RC
.
nrmac
[
j
]
->
eth_params_n
.
transp_preference
=
ETH_UDP_MODE
;
...
...
openair2/LAYER2/NR_MAC_gNB/mac_rrc_ul_f1ap.c
View file @
7ee619b0
...
...
@@ -18,6 +18,7 @@
static
f1ap_net_config_t
read_DU_IP_config
(
const
eth_params_t
*
f1_params
,
const
char
*
f1u_ip_addr
)
{
AssertFatal
(
f1_params
->
my_portc
==
0
&&
f1_params
->
remote_portc
==
0
,
"portc not supported, must be 0
\n
"
);
f1ap_net_config_t
nc
=
{
0
};
nc
.
CU_f1_ip_address
=
strdup
(
f1_params
->
remote_addr
);
...
...
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