Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
tsn-measures
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
nexedi
tsn-measures
Commits
fda562fd
Commit
fda562fd
authored
Apr 29, 2020
by
oli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean code and add back max clock resolution measure
parent
931eb065
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
127 deletions
+86
-127
.gitignore
.gitignore
+3
-0
clock-res/build/Makefile
clock-res/build/Makefile
+1
-1
clock-res/src/clockres.c
clock-res/src/clockres.c
+82
-126
No files found.
.gitignore
View file @
fda562fd
...
@@ -3,3 +3,6 @@
...
@@ -3,3 +3,6 @@
simple-server/build/main
simple-server/build/main
simple-client/build/main
simple-client/build/main
latency-measure/build/main
latency-measure/build/main
latency-measure/build/main
clock-res/build/clockres
clock-res/build/clockres_arm
clock-res/build/Makefile
View file @
fda562fd
...
@@ -33,6 +33,6 @@ run: $(PROG)
...
@@ -33,6 +33,6 @@ run: $(PROG)
./
$^
./
$^
clean
:
clean
:
$(RM)
$(OBJS)
$(PROG)
$(
subst
.c,.d,
$(SRCS)
)
$(RM)
$(OBJS)
$(PROG)
$(
ARM_PROG)
$(
subst
.c,.d,
$(SRCS)
)
.PHONY
:
clean FORCE
.PHONY
:
clean FORCE
clock-res/src/clockres.c
View file @
fda562fd
#include <errno.h>
#include <errno.h>
#include <error.h>
#include <error.h>
#include <inttypes.h>
#include <pthread.h>
#include <pthread.h>
#include <sched.h>
#include <sched.h>
#include <stdint.h>
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <time.h>
#include <time.h>
#include <unistd.h>
#include <unistd.h>
#include <stdint.h>
#include <inttypes.h>
#define CLOCK_ID CLOCK_MONOTONIC
#define CLOCK_ID CLOCK_MONOTONIC
#define NSEC_PER_SEC INT64_C(1000000000)
#define NSEC_PER_SEC INT64_C(1000000000)
typedef
struct
thread_stat
{
typedef
struct
thread_stat
{
int
nb_cycles
;
int
nb_cycles
;
int64_t
max_res
;
u
int64_t
max_res
;
int64_t
min_res
;
u
int64_t
min_res
;
}
thread_stat_t
;
}
thread_stat_t
;
typedef
struct
thread_param
{
typedef
struct
thread_param
{
int
priority
;
int
priority
;
int
max_cycles
;
int
max_cycles
;
int64_t
interval
;
u
int64_t
interval
;
thread_stat_t
stat
;
thread_stat_t
stat
;
}
thread_param_t
;
}
thread_param_t
;
...
@@ -30,120 +30,94 @@ typedef struct main_param {
...
@@ -30,120 +30,94 @@ typedef struct main_param {
int
refresh_rate
;
int
refresh_rate
;
}
main_param_t
;
}
main_param_t
;
static
inline
int64_t
calcdiff_ns
(
struct
timespec
t1
,
struct
timespec
t2
)
static
void
process_options
(
int
argc
,
char
*
argv
[],
thread_param_t
*
param
,
main_param_t
*
main_param
);
{
int64_t
diff
;
static
inline
uint64_t
calcdiff_ns
(
struct
timespec
t1
,
struct
timespec
t2
);
diff
=
NSEC_PER_SEC
*
(
int64_t
)((
int
)
t1
.
tv_sec
-
(
int
)
t2
.
tv_sec
);
static
inline
uint64_t
max
(
uint64_t
a
,
uint64_t
b
);
diff
+=
((
int
)
t1
.
tv_nsec
-
(
int
)
t2
.
tv_nsec
);
static
inline
uint64_t
min
(
uint64_t
a
,
uint64_t
b
);
return
diff
;
}
static
inline
int64_t
max
(
int64_t
a
,
int64_t
b
)
{
return
a
>
b
?
a
:
b
;
}
// Real-time thread
static
inline
int64_t
min
(
int64_t
a
,
int64_t
b
)
{
return
a
<
b
?
a
:
b
;
}
static
void
*
timerthread
(
void
*
p
)
{
// Code from cyclictest
struct
timespec
previous
,
current
;
void
compute_resolution
()
{
struct
sched_param
priority
;
int
clock
;
uint64_t
diff
;
uint64_t
diff
;
int
k
;
uint64_t
min_non_zero_diff
=
UINT64_MAX
;
struct
timespec
now
;
struct
timespec
prev
;
struct
timespec
*
time
;
int
times
;
clock
=
CLOCK_ID
;
/*
* Calculate how many calls to clock_gettime are needed.
* Then call it that many times.
* Goal is to collect timestamps for ~ 0.001 sec.
* This will reliably capture resolution <= 500 usec.
*/
times
=
1000
;
clock_gettime
(
clock
,
&
prev
);
for
(
k
=
0
;
k
<
times
;
k
++
)
{
clock_gettime
(
clock
,
&
now
);
}
diff
=
calcdiff_ns
(
now
,
prev
);
thread_param_t
*
param
=
(
thread_param_t
*
)
p
;
if
(
diff
==
0
)
{
thread_stat_t
*
stat
=
&
param
->
stat
;
/*
* No clock rollover occurred.
* Use the default value for times.
*/
times
=
-
1
;
}
else
{
int
call_time
;
call_time
=
diff
/
times
;
/* duration 1 call */
times
=
NSEC_PER_SEC
/
call_time
;
/* calls per second */
times
/=
1000
;
/* calls per msec */
if
(
times
<
1000
)
times
=
1000
;
}
/* sanity check */
if
((
times
<=
0
)
||
(
times
>
100000
))
times
=
100000
;
time
=
calloc
(
times
,
sizeof
(
*
time
))
;
priority
.
sched_priority
=
param
->
priority
;
for
(
k
=
0
;
k
<
times
;
k
++
)
{
if
(
sched_setscheduler
(
0
,
SCHED_FIFO
,
&
priority
))
clock_gettime
(
clock
,
&
time
[
k
]);
error
(
EXIT_FAILURE
,
errno
,
"Couldn't set priority"
);
}
prev
=
time
[
0
];
stat
->
max_res
=
0
;
for
(
k
=
1
;
k
<
times
;
k
++
)
{
stat
->
min_res
=
UINT64_MAX
;
diff
=
calcdiff_ns
(
time
[
k
],
prev
);
prev
=
time
[
k
];
if
(
diff
&&
(
diff
<
min_non_zero_diff
))
{
for
(
stat
->
nb_cycles
=
0
;;
stat
->
nb_cycles
++
)
{
min_non_zero_diff
=
diff
;
}
if
(
param
->
max_cycles
&&
(
stat
->
nb_cycles
>=
param
->
max_cycles
))
}
break
;
clock_gettime
(
CLOCK_ID
,
&
previous
);
clock_gettime
(
CLOCK_ID
,
&
current
);
free
(
time
);
diff
=
calcdiff_ns
(
current
,
previous
);
printf
(
"measured clock resolution approximately: %llu nsec
\n
"
,
stat
->
max_res
=
max
(
stat
->
max_res
,
diff
);
(
unsigned
long
long
)
min_non_zero_diff
);
stat
->
min_res
=
min
(
stat
->
min_res
,
diff
);
usleep
(
param
->
interval
);
}
return
NULL
;
}
}
// Real-time thread
// Main thread, has non-real time priority
// Sends packets at a regular intervall
// Handles the IO and creates real time threads
static
void
*
timerthread
(
void
*
p
)
{
int
main
(
int
argc
,
char
*
argv
[])
{
struct
sched_param
priority
;
thread_param_t
*
param
=
(
thread_param_t
*
)
p
;
pthread_t
thread
;
thread_stat_t
*
stat
=
&
param
->
stat
;
thread_param_t
param
;
main_param_t
main_param
;
priority
.
sched_priority
=
param
->
priority
;
// Default values
param
.
interval
=
1000
;
param
.
max_cycles
=
100000
;
param
.
priority
=
99
;
main_param
.
refresh_rate
=
10000
;
int
err
=
sched_setscheduler
(
0
,
SCHED_FIFO
,
&
priority
);
process_options
(
argc
,
argv
,
&
param
,
&
main_param
);
if
(
err
)
error
(
EXIT_FAILURE
,
errno
,
"Couldn't set priority"
);
usleep
(
10000
);
stat
->
max_res
=
0
;
if
(
pthread_create
(
&
thread
,
NULL
,
timerthread
,
(
void
*
)
&
param
))
stat
->
min_res
=
1000000
;
error
(
EXIT_FAILURE
,
errno
,
"Couldn't create thread"
)
;
for
(
stat
->
nb_cycles
=
0
;;
stat
->
nb_cycles
++
)
{
for
(;;)
{
if
(
param
->
max_cycles
)
if
(
stat
->
nb_cycles
>=
param
->
max_cycles
)
break
;
compute_resolution
(
);
usleep
(
main_param
.
refresh_rate
);
usleep
(
param
->
interval
);
printf
(
"Maximum res: %"
PRIu64
"ns (%d)"
,
(
param
.
stat
.
max_res
),
param
.
stat
.
nb_cycles
);
}
printf
(
", minimum res: %"
PRIu64
"ns (%d)
\n
"
,
(
param
.
stat
.
min_res
),
param
.
stat
.
nb_cycles
);
printf
(
"Done
\n
"
);
if
(
param
.
max_cycles
==
param
.
stat
.
nb_cycles
)
break
;
}
return
NULL
;
exit
(
EXIT_SUCCESS
)
;
}
}
static
void
process_options
(
int
argc
,
char
*
argv
[],
thread_param_t
*
param
,
static
void
process_options
(
int
argc
,
char
*
argv
[],
thread_param_t
*
param
,
main_param_t
*
main_param
)
{
main_param_t
*
main_param
)
{
for
(;;)
{
for
(;;)
{
int
c
=
getopt
(
argc
,
argv
,
"l:p:i:r:"
);
int
c
=
getopt
(
argc
,
argv
,
"l:p:i:r:"
);
if
(
c
==
-
1
)
break
;
if
(
c
==
-
1
)
break
;
switch
(
c
)
{
switch
(
c
)
{
case
'p'
:
case
'p'
:
param
->
priority
=
atoi
(
optarg
);
param
->
priority
=
atoi
(
optarg
);
break
;
break
;
...
@@ -163,35 +137,17 @@ static void process_options(int argc, char *argv[], thread_param_t *param,
...
@@ -163,35 +137,17 @@ static void process_options(int argc, char *argv[], thread_param_t *param,
}
}
}
}
static
inline
uint64_t
calcdiff_ns
(
struct
timespec
t1
,
struct
timespec
t2
)
{
uint64_t
diff
;
diff
=
NSEC_PER_SEC
*
(
uint64_t
)((
int
)
t1
.
tv_sec
-
(
int
)
t2
.
tv_sec
);
diff
+=
((
int
)
t1
.
tv_nsec
-
(
int
)
t2
.
tv_nsec
);
return
diff
;
}
// Main thread, has non-real time priority
static
inline
uint64_t
max
(
uint64_t
a
,
uint64_t
b
)
{
// Handles the IO and creates real time threads
return
a
>
b
?
a
:
b
;
int
main
(
int
argc
,
char
*
argv
[])
{
}
pthread_t
thread
;
static
inline
uint64_t
min
(
uint64_t
a
,
uint64_t
b
)
{
thread_param_t
param
;
return
a
<
b
?
a
:
b
;
main_param_t
main_param
;
int
err
;
// Default values
param
.
interval
=
100
;
param
.
max_cycles
=
100000
;
param
.
priority
=
99
;
main_param
.
refresh_rate
=
10000
;
process_options
(
argc
,
argv
,
&
param
,
&
main_param
);
usleep
(
10000
);
err
=
pthread_create
(
&
thread
,
NULL
,
timerthread
,
(
void
*
)
&
param
);
if
(
err
)
error
(
EXIT_FAILURE
,
errno
,
"Couldn't create thread"
);
for
(;;)
{
usleep
(
main_param
.
refresh_rate
);
if
(
param
.
max_cycles
==
param
.
stat
.
nb_cycles
)
break
;
}
exit
(
EXIT_SUCCESS
);
}
}
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