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
canghaiwuhen
OpenXG-RAN
Commits
b98cea72
Commit
b98cea72
authored
Aug 10, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into feature-31-ff-scheduler-api
parents
3cf5bb85
a9262346
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
123 additions
and
56 deletions
+123
-56
.gitlab-ci.yml
.gitlab-ci.yml
+0
-2
cmake_targets/CMakeLists.txt
cmake_targets/CMakeLists.txt
+1
-1
cmake_targets/autotests/test_case_list.xml
cmake_targets/autotests/test_case_list.xml
+32
-32
cmake_targets/autotests/tools/iperf_script
cmake_targets/autotests/tools/iperf_script
+51
-9
cmake_targets/tools/build_helper
cmake_targets/tools/build_helper
+6
-5
cmake_targets/tools/run_enb_ue_virt_s1
cmake_targets/tools/run_enb_ue_virt_s1
+1
-1
common/utils/T/T_messages.txt
common/utils/T/T_messages.txt
+4
-0
common/utils/T/tracer/event_selector.c
common/utils/T/tracer/event_selector.c
+3
-0
common/utils/T/tracer/gui/gui.h
common/utils/T/tracer/gui/gui.h
+2
-2
common/utils/T/tracer/gui/textlist.c
common/utils/T/tracer/gui/textlist.c
+2
-2
common/utils/T/tracer/view/textlist.c
common/utils/T/tracer/view/textlist.c
+16
-1
openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
+3
-0
openair3/NAS/UE/API/USIM/usim_api.c
openair3/NAS/UE/API/USIM/usim_api.c
+2
-1
No files found.
.gitlab-ci.yml
View file @
b98cea72
...
...
@@ -32,6 +32,4 @@ job1:
-
sshpass -p "$OAI_PASS" rsync -az -e "ssh -o StrictHostKeyChecking=no " --rsync-path="mkdir -p $NFS_TEST_RESULTS_DIR && rsync" $OPENAIR_DIR/cmake_targets/autotests/log $OAI_USER@localhost:$NFS_TEST_RESULTS_DIR
-
sshpass -p "$OAI_PASS" rsync -az -e "ssh -o StrictHostKeyChecking=no " --rsync-path="mkdir -p $EXTERNAL_SHARE_DIR && rsync" $OPENAIR_DIR/cmake_targets/autotests/log $OAI_USER@localhost:$EXTERNAL_SHARE_DIR
-
cat $OPENAIR_DIR/cmake_targets/autotests/log/results_autotests.xml
-
exce_log=`egrep -i 'warning|error|critical|exception' $OPENAIR_DIR/cmake_targets/autotests/log/python_autotest.log |cat `
-
if [ -n "$exce_log" ]; then echo -e "\e[31mThere are errors in $NFS_TEST_RESULTS_DIR/log/python_autotest.log. Please check the logs\e[0m" ; fi
cmake_targets/CMakeLists.txt
View file @
b98cea72
...
...
@@ -1693,7 +1693,7 @@ target_link_libraries (lte-softmodem-nos1 ${LIBXML2_LIBRARIES})
target_link_libraries
(
lte-softmodem-nos1 pthread m
${
CONFIG_LIBRARIES
}
rt crypt
${
CRYPTO_LIBRARIES
}
${
OPENSSL_LIBRARIES
}
${
NETTLE_LIBRARIES
}
${
option_HW_lib
}
${
option_TP_lib
}
${
XFORMS_LIBRARIES
}
)
target_link_libraries
(
lte-softmodem-nos1
${
LIBBOOST_LIBRARIES
}
)
target_link_libraries
(
lte-softmodem-nos1
${
LIB_LMS_LIBRARIES
}
)
target_link_libraries
(
lte-softmodem
${
T_LIB
}
)
target_link_libraries
(
lte-softmodem
-nos1
${
T_LIB
}
)
# rrh
################################
...
...
cmake_targets/autotests/test_case_list.xml
View file @
b98cea72
This diff is collapsed.
Click to expand it.
cmake_targets/autotests/tools/iperf_script
View file @
b98cea72
...
...
@@ -34,6 +34,8 @@
#arg2 interface
#arg3 iperf arguments
echo
"Start time of script:
`
date
`
"
args
=(
$*
)
timeout
=
${
args
[0]
}
iface
=
${
args
[1]
}
...
...
@@ -48,17 +50,57 @@ echo "iface = $iface"
echo
"iperf_args =
${
iperf_args
[@]
}
"
echo
"ip_client =
$ip_client
"
sleep
$timeout
echo
" Waiting for IP Address..."
while
true
;
do
var
=
`
ifconfig
$iface
`
;
sleep
1
;
if
[
"
$var
"
!=
""
]
;
then
break
;
fi
;
done
;
sleep
5
if
[
-n
"
$ip_client
"
]
;
then
echo
"Waiting for route to be setup before iperf makes connection..."
var
=
`
route
-n
|
grep
$ip_client
`
if
[
"
$var
"
!=
""
]
;
then
break
;
fi
# Test an IP address for validity:
# Usage:
# valid_ip IP_ADDRESS
# if [[ $? -eq 0 ]]; then echo good; else echo bad; fi
# OR
# if valid_ip IP_ADDRESS; then echo good; else echo bad; fi
#
function
valid_ip
()
{
local
ip
=
$1
local stat
=
1
if
[[
$ip
=
~ ^[0-9]
{
1,3
}
\.
[
0-9]
{
1,3
}
\.
[
0-9]
{
1,3
}
\.
[
0-9]
{
1,3
}
$
]]
;
then
OIFS
=
$IFS
IFS
=
'.'
ip
=(
$ip
)
IFS
=
$OIFS
[[
${
ip
[0]
}
-le
255
&&
${
ip
[1]
}
-le
255
\
&&
${
ip
[2]
}
-le
255
&&
${
ip
[3]
}
-le
255
]]
stat
=
$?
fi
return
$stat
}
if
valid_ip
$iface
;
then
echo
"
$iface
is Valid IP Address. Checking for connectivity..."
ping
-c
1
$iface
>
& /dev/null
while
[
"
$?
"
!=
"0"
]
;
do
ping
-c
1
$iface
>
& /dev/null
done
echo
"
$iface
connectivity achieved at
`
date
`
, Seconds =
$SECONDS
"
else
echo
"Waiting for Interface
$iface
to come up..."
while
true
;
do
var
=
`
ifconfig
$iface
`
;
sleep
1
;
if
[
"
$var
"
!=
""
]
;
then
break
;
fi
;
done
echo
"
$iface
is now available at
`
date
`
, Seconds =
$SECONDS
"
fi
sleep
5
#if [ -n "$ip_client" ]; then
#echo "Waiting for route to be setup before iperf makes connection..."
# var=`route -n | grep $ip_client`
# if ["$var" != "" ] ; then break; fi
#
#fi
echo
"Sleeping for additional
$timeout
seconds"
sleep
$timeout
echo
"Starting iperf at
`
date
`
, Seconds =
$SECONDS
...."
iperf
${
iperf_args
[@]
}
cmake_targets/tools/build_helper
View file @
b98cea72
################################################################################
################################################################################
#
# Copyright (c) 2015, EURECOM (www.eurecom.fr)
# All rights reserved.
...
...
@@ -205,10 +205,8 @@ install_gnutls_from_source(){
cd /tmp
echo "Downloading gnutls archive"
$SUDO rm -rf /tmp/gnutls-3.1.23.tar.xz* /tmp/gnutls-3.1.23
wget http://mirrors.dotsrc.org/gcrypt/gnutls/v3.1/gnutls-3.1.23.tar.xz
if [ $? -ne 0 ]; then
wget http://mirrors.dotsrc.org/gcrypt/gnutls/v3.1/gnutls-3.1.23.tar.xz || \
wget ftp://ftp.gnutls.org/gcrypt/gnutls/v3.1/gnutls-3.1.23.tar.xz
fi
if [ ! -f gnutls-3.1.23.tar.xz ]; then
echo_error "Could not download gnutls source files"
cd -
...
...
@@ -285,7 +283,8 @@ check_install_additional_tools (){
android-tools-adb \
wvdial \
python-numpy \
sshpass
sshpass \
nscd
$SUDO pip install paramiko
$SUDO pip install pyroute2
...
...
@@ -459,6 +458,8 @@ CURPID=$$
ppid=$$
arraycounter=1
echo_info "** Trapped CTRL-C. Killing all subprocesses now..."
echo_info "** Calling sync now..."
sync
while true
do
FORLOOP=FALSE
...
...
cmake_targets/tools/run_enb_ue_virt_s1
View file @
b98cea72
...
...
@@ -252,7 +252,7 @@ function main()
# Check table 200 lte in /etc/iproute2/rt_tables
fgrep lte /etc/iproute2/rt_tables
>
/dev/null
if
[
$?
-ne
0
]
;
then
bash
-c
echo
"200 lte "
>>
/etc/iproute2/rt_tables
echo
"200 lte "
>>
/etc/iproute2/rt_tables
fi
ip rule add fwmark 1 table lte
ifconfig oip1 up
...
...
common/utils/T/T_messages.txt
View file @
b98cea72
...
...
@@ -95,6 +95,10 @@ ID = ENB_MAC_UE_UL_CE
DESC = MAC uplink UE received control element
GROUP = ALL:MAC:ENB
FORMAT = int,eNB_ID : int,CC_id : int,rnti : int,frame : int,subframe : int,ce
ID = ENB_MAC_UE_DL_PDU_WITH_DATA
DESC = MAC downlink PDU for an UE
GROUP = ALL:MAC:ENB
FORMAT = int,eNB_ID : int,CC_id : int,rnti : int,frame : int,subframe : int,harq_pid : buffer,data
#RLC logs
ID = ENB_RLC_DL
...
...
common/utils/T/tracer/event_selector.c
View file @
b98cea72
...
...
@@ -34,11 +34,14 @@ static void scroll(void *private, gui *g,
int
number_of_lines
;
int
new_line
;
int
inc
;
int
*
d
=
notification_data
;
int
key_modifiers
=
*
d
;
textlist_state
(
g
,
w
,
&
visible_lines
,
&
start_line
,
&
number_of_lines
);
inc
=
10
;
if
(
inc
>
visible_lines
-
2
)
inc
=
visible_lines
-
2
;
if
(
inc
<
1
)
inc
=
1
;
if
(
key_modifiers
&
KEY_CONTROL
)
inc
=
1
;
if
(
!
strcmp
(
notification
,
"scrollup"
))
inc
=
-
inc
;
new_line
=
start_line
+
inc
;
...
...
common/utils/T/tracer/gui/gui.h
View file @
b98cea72
...
...
@@ -83,8 +83,8 @@ int new_color(gui *gui, char *color);
/* notifications */
/* known notifications:
* - textlist:
* - scrollup {
void *: NULL
}
* - scrolldown {
void *: NULL
}
* - scrollup {
int: key_modifiers
}
* - scrolldown {
int: key_modifiers
}
* - click { int [2]: line, button }
* - label:
* - click { int: button } (if enabled)
...
...
common/utils/T/tracer/gui/textlist.c
View file @
b98cea72
...
...
@@ -54,11 +54,11 @@ static void button(gui *_g, widget *_this, int x, int y,
x
-=
this
->
common
.
x
;
/* scroll up */
if
(
button
==
4
&&
up
==
0
)
{
gui_notify
(
g
,
"scrollup"
,
_this
,
NULL
);
gui_notify
(
g
,
"scrollup"
,
_this
,
&
key_modifiers
);
}
/* scroll down */
if
(
button
==
5
&&
up
==
0
)
{
gui_notify
(
g
,
"scrolldown"
,
_this
,
NULL
);
gui_notify
(
g
,
"scrolldown"
,
_this
,
&
key_modifiers
);
}
/* button 1/2/3 click */
if
(
button
>=
1
&&
button
<=
3
&&
up
==
0
)
{
...
...
common/utils/T/tracer/view/textlist.c
View file @
b98cea72
...
...
@@ -89,6 +89,8 @@ static void scroll(void *private, gui *g,
int
number_of_lines
;
int
new_line
;
int
inc
;
int
*
d
=
notification_data
;
int
key_modifiers
=
*
d
;
if
(
pthread_mutex_lock
(
&
this
->
lock
))
abort
();
...
...
@@ -96,6 +98,7 @@ static void scroll(void *private, gui *g,
inc
=
10
;
if
(
inc
>
visible_lines
-
2
)
inc
=
visible_lines
-
2
;
if
(
inc
<
1
)
inc
=
1
;
if
(
key_modifiers
&
KEY_CONTROL
)
inc
=
1
;
if
(
!
strcmp
(
notification
,
"scrollup"
))
inc
=
-
inc
;
new_line
=
start_line
+
inc
;
...
...
@@ -122,7 +125,19 @@ static void click(void *private, gui *g,
if
(
pthread_mutex_lock
(
&
this
->
lock
))
abort
();
if
(
button
==
1
)
this
->
autoscroll
=
1
-
this
->
autoscroll
;
if
(
button
==
1
)
this
->
autoscroll
=
1
;
if
(
button
==
3
)
this
->
autoscroll
=
0
;
if
(
this
->
autoscroll
)
{
int
visible_lines
,
start_line
,
number_of_lines
;
textlist_state
(
this
->
g
,
this
->
w
,
&
visible_lines
,
&
start_line
,
&
number_of_lines
);
start_line
=
number_of_lines
-
visible_lines
;
if
(
start_line
<
0
)
start_line
=
0
;
textlist_set_start_line
(
this
->
g
,
this
->
w
,
start_line
);
/* this call is not necessary, but if things change in textlist... */
widget_dirty
(
this
->
g
,
this
->
w
);
}
if
(
pthread_mutex_unlock
(
&
this
->
lock
))
abort
();
}
...
...
openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
View file @
b98cea72
...
...
@@ -1281,6 +1281,9 @@ schedule_ue_spec(
module_idP
,
CC_id
,
frameP
,
UE_RNTI
(
module_idP
,
UE_id
),
TBS
);
}
T
(
T_ENB_MAC_UE_DL_PDU_WITH_DATA
,
T_INT
(
module_idP
),
T_INT
(
CC_id
),
T_INT
(
rnti
),
T_INT
(
frameP
),
T_INT
(
subframeP
),
T_INT
(
harq_pid
),
T_BUFFER
(
UE_list
->
DLSCH_pdu
[
CC_id
][
0
][
UE_id
].
payload
[
0
],
TBS
));
aggregation
=
process_ue_cqi
(
module_idP
,
UE_id
);
UE_list
->
UE_template
[
CC_id
][
UE_id
].
nb_rb
[
harq_pid
]
=
nb_rb
;
...
...
openair3/NAS/UE/API/USIM/usim_api.c
View file @
b98cea72
...
...
@@ -77,7 +77,8 @@ Description Implements the API used by the NAS layer to read/write
* Subscriber authentication security key
*/
#define USIM_API_K_SIZE 16
#define USIM_API_K_VALUE "fec86ba6eb707ed08905757b1bb44b8f"
//#define USIM_API_K_VALUE "fec86ba6eb707ed08905757b1bb44b8f"
#define USIM_API_K_VALUE "8BAF473F2F8FD09487CCCBD7097C6862"
static
uint8_t
_usim_api_k
[
USIM_API_K_SIZE
];
...
...
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