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
08b122e3
Commit
08b122e3
authored
Jun 26, 2018
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FlexRAN: update slice config array dimensions
parent
71a9115a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
openair2/ENB_APP/CONTROL_MODULES/MAC/flexran_agent_mac.c
openair2/ENB_APP/CONTROL_MODULES/MAC/flexran_agent_mac.c
+3
-3
openair2/ENB_APP/CONTROL_MODULES/MAC/flexran_agent_mac_internal.c
.../ENB_APP/CONTROL_MODULES/MAC/flexran_agent_mac_internal.c
+4
-4
No files found.
openair2/ENB_APP/CONTROL_MODULES/MAC/flexran_agent_mac.c
View file @
08b122e3
...
...
@@ -53,13 +53,13 @@ struct lfds700_ringbuffer_element *dl_mac_config_array[NUM_MAX_ENB];
struct
lfds700_ringbuffer_state
ringbuffer_state
[
NUM_MAX_ENB
];
/* the slice config as kept in the underlying system */
Protocol__FlexSliceConfig
*
slice_config
[
NUM_MAX_ENB
];
Protocol__FlexSliceConfig
*
slice_config
[
MAX_NUM_SLICES
];
/* a structure that keeps updates which will be reflected in slice_config later */
Protocol__FlexSliceConfig
*
sc_update
[
NUM_MAX_ENB
];
Protocol__FlexSliceConfig
*
sc_update
[
MAX_NUM_SLICES
];
/* indicates whether sc_update contains new data */
int
perform_slice_config_update_count
=
1
;
/* queue of incoming new UE<>slice association commands */
Protocol__FlexUeConfig
*
ue_slice_assoc_update
[
NUM_MAX_UE
];
Protocol__FlexUeConfig
*
ue_slice_assoc_update
[
MAX_NUM_SLICES
];
int
n_ue_slice_assoc_updates
=
0
;
/* mutex for sc_update: do not receive new config and write it at the same time */
pthread_mutex_t
sc_update_mtx
=
PTHREAD_MUTEX_INITIALIZER
;
...
...
openair2/ENB_APP/CONTROL_MODULES/MAC/flexran_agent_mac_internal.c
View file @
08b122e3
...
...
@@ -34,10 +34,10 @@
#include "flexran_agent_mac_slice_verification.h"
/* from flexran_agent_mac.c */
extern
Protocol__FlexSliceConfig
*
slice_config
[
NUM_MAX_ENB
];
extern
Protocol__FlexSliceConfig
*
sc_update
[
NUM_MAX_ENB
];
extern
Protocol__FlexSliceConfig
*
slice_config
[
MAX_NUM_SLICES
];
extern
Protocol__FlexSliceConfig
*
sc_update
[
MAX_NUM_SLICES
];
extern
int
perform_slice_config_update_count
;
extern
Protocol__FlexUeConfig
*
ue_slice_assoc_update
[
NUM_MAX_UE
];
extern
Protocol__FlexUeConfig
*
ue_slice_assoc_update
[
MAX_NUM_SLICES
];
extern
int
n_ue_slice_assoc_updates
;
extern
pthread_mutex_t
sc_update_mtx
;
...
...
@@ -1574,7 +1574,7 @@ int apply_new_slice_ul_config(mid_t mod_id, Protocol__FlexUlSlice *oldc, Protoco
void
prepare_ue_slice_assoc_update
(
mid_t
mod_id
,
Protocol__FlexUeConfig
*
ue_config
)
{
if
(
n_ue_slice_assoc_updates
==
NUM_MAX_UE
)
{
if
(
n_ue_slice_assoc_updates
==
MAX_NUM_SLICES
)
{
LOG_E
(
FLEXRAN_AGENT
,
"[%d] can not handle flex_ue_config message, buffer is full; try again later
\n
"
,
mod_id
);
...
...
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