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
spbro
OpenXG-RAN
Commits
0e0a04fb
Commit
0e0a04fb
authored
Oct 22, 2018
by
Y_Tomita
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for 256UEs.
parent
564f2cbf
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
+2
-2
openair2/LAYER2/RLC/rlc.c
openair2/LAYER2/RLC/rlc.c
+2
-2
openair3/NAS/UE/nas_ue_task.c
openair3/NAS/UE/nas_ue_task.c
+1
-1
targets/RT/USER/lte-softmodem.h
targets/RT/USER/lte-softmodem.h
+1
-1
No files found.
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
View file @
0e0a04fb
...
...
@@ -49,7 +49,7 @@
#include "platform_constants.h"
#include "common/utils/LOG/vcd_signal_dumper.h"
#include "msc.h"
#include "targets/COMMON/openairinterface5g_limits.h"
#if defined(ENABLE_SECURITY)
# include "UTIL/OSA/osa_defs.h"
#endif
...
...
@@ -2015,7 +2015,7 @@ void pdcp_layer_init(void)
* Initialize SDU list
*/
list_init
(
&
pdcp_sdu_list
,
NULL
);
pdcp_coll_p
=
hashtable_create
((
maxDRB
+
2
)
*
16
,
NULL
,
pdcp_free
);
pdcp_coll_p
=
hashtable_create
((
maxDRB
+
2
)
*
NUMBER_OF_UE_MAX
,
NULL
,
pdcp_free
);
AssertFatal
(
pdcp_coll_p
!=
NULL
,
"UNRECOVERABLE error, PDCP hashtable_create failed"
);
for
(
instance
=
0
;
instance
<
MAX_MOBILES_PER_ENB
;
instance
++
)
{
...
...
openair2/LAYER2/RLC/rlc.c
100644 → 100755
View file @
0e0a04fb
...
...
@@ -34,7 +34,7 @@
#include "common/utils/LOG/log.h"
#include "UTIL/OCG/OCG_vars.h"
#include "common/utils/LOG/vcd_signal_dumper.h"
#include "targets/COMMON/openairinterface5g_limits.h"
#include "assertions.h"
extern
boolean_t
pdcp_data_ind
(
...
...
@@ -649,7 +649,7 @@ rlc_module_init (void)
rlc_rrc_data_ind
=
NULL
;
rlc_rrc_data_conf
=
NULL
;
rlc_coll_p
=
hashtable_create
((
maxDRB
+
2
)
*
16
,
NULL
,
rb_free_rlc_union
);
rlc_coll_p
=
hashtable_create
((
maxDRB
+
2
)
*
NUMBER_OF_UE_MAX
,
NULL
,
rb_free_rlc_union
);
//AssertFatal(rlc_coll_p != NULL, "UNRECOVERABLE error, RLC hashtable_create failed");
if
(
rlc_coll_p
==
NULL
)
{
LOG_E
(
RLC
,
"UNRECOVERABLE error, RLC hashtable_create failed
\n
"
);
...
...
openair3/NAS/UE/nas_ue_task.c
100644 → 100755
View file @
0e0a04fb
...
...
@@ -40,7 +40,7 @@
// FIXME review these externs
extern
unsigned
char
NB_eNB_INST
;
extern
u
nsigned
char
NB_UE_INST
;
extern
u
int16_t
NB_UE_INST
;
char
*
make_port_str_from_ueid
(
const
char
*
base_port_str
,
int
ueid
);
...
...
targets/RT/USER/lte-softmodem.h
View file @
0e0a04fb
...
...
@@ -147,7 +147,7 @@
{"ue-max-power", NULL, 0, iptr:&(tx_max_power[0]), defintval:23, TYPE_INT, 0}, \
{"emul-iface", CONFIG_HLP_EMULIFACE, 0, strptr:&emul_iface, defstrval:"lo", TYPE_STRING, 100}, \
{"L2-emul", NULL, 0, u8ptr:&nfapi_mode, defuintval:3, TYPE_UINT8, 0}, \
{"num-ues",
NULL, 0, u8ptr:&(NB_UE_INST), defuintval:1, TYPE_UINT8
, 0}, \
{"num-ues",
NULL, 0, u16ptr:&(NB_UE_INST), defuintval:1, TYPE_UINT16
, 0}, \
{"r" , CONFIG_HLP_PRB, 0, u8ptr:&(frame_parms[0]->N_RB_DL), defintval:25, TYPE_UINT8, 0}, \
{"dlsch-demod-shift", CONFIG_HLP_DLSHIFT, 0, iptr:(int32_t *)&dlsch_demod_shift, defintval:0, TYPE_INT, 0}, \
{"usrp-args", CONFIG_HLP_USRP_ARGS, 0, strptr:(char **)&usrp_args, defstrval:"type=b200", TYPE_STRING, 0}, \
...
...
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