From: Thierry Bultel <thierry.bultel@wanadoo.fr>
To: xenomai@xenomai.org
Subject: [Xenomai] big deviation on clock_nanosleep wait time
Date: Mon, 04 Nov 2013 17:16:47 +0100 [thread overview]
Message-ID: <5277C86F.5070603@wanadoo.fr> (raw)
Hi,
My configuration is
xenomai-2.6.3 + ipipe-1.18-13, freescale kernel rel_imx_3.0.35_4.0.0, on
the IMX6Q.
I want to use CONFIG_HIGH_RES_TIMERS and CONFIG_HZ=100, which is the
default value for the IMX.
The described issue does not happen when CONFIG_IPIPE is not set.
This happens with a linux task, no other xenomai task is running.
The following linux program performs 1000 calls to clock_nanosleep and
calculates some stats at the end.
When sleeping for delays around 10 to 30 ms the results are pretty good,
the error is pretty much constant and around 0.1 %
but when waiting for 100 to 500 microseconds things get bad, with
sometimes, wake up that happen 40 ms after.
Average 247.354000, error 0.247354%
Deviation 44240.660581, average error 147.354000, max_err 40781.000000
Looking at the log shows that there are about 7 occurrences where the
sleep takes between 3 and 40 ms instead of 0.1 ms .
sample program:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <sched.h>
#include <math.h>
#define TIMESPEC2USEC(t1, t2) \
( (unsigned long)(t2.tv_sec * 1000000 + t2.tv_nsec / 1000) - \
(unsigned long)(t1.tv_sec * 1000000 + t1.tv_nsec / 1000) )
#define NB 1000
int main(int argc, char * argv[]) {
struct timespec res;
struct timespec delay, time1, time2;
int default_priority;
sigset_t mask;
int ix;
unsigned long total = 0;
int sleep_time = 100 * 1000; // 0.1 ms
unsigned long vals[NB];
double max_err = 0.0;
struct sched_param p;
default_priority = ( sched_get_priority_min(SCHED_FIFO) +
sched_get_priority_max(SCHED_FIFO) ) / 2;
p.sched_priority = default_priority;
if ( sched_setscheduler( 0, SCHED_FIFO, &p) != 0 )
{
perror( "sched_setscheduler" );
exit(-1);
}
if (clock_getres (CLOCK_REALTIME, &res) == -1)
perror ("clock_getres: CLOCK_REALTIME");
else
printf ("CLOCK_REALTIME: %ld s, %ld ns\n", res.tv_sec,
res.tv_nsec);
if (clock_getres (CLOCK_MONOTONIC, &res) == -1)
perror ("clock_getres: CLOCK_MONOTONIC");
else
printf ("CLOCK_MONOTONIC: %ld s, %ld ns\n", res.tv_sec, res.tv_nsec);
if (clock_getres (CLOCK_PROCESS_CPUTIME_ID, &res) == -1)
perror ("clock_getres: CLOCK_PROCESS_CPUTIME_ID");
else
printf ("CLOCK_PROCESS_CPUTIME_ID: %ld s, %ld ns\n", res.tv_sec,
res.tv_nsec);
if (clock_getres (CLOCK_THREAD_CPUTIME_ID, &res) == -1)
perror ("clock_getres: CLOCK_THREAD_CPUTIME_ID");
else
printf ("CLOCK_THREAD_CPUTIME_ID: %ld s, %ld ns\n", res.tv_sec,
res.tv_nsec);
clock_gettime(CLOCK_MONOTONIC, &time1);
for (ix=0; ix < NB; ix++)
{
delay.tv_sec = 0;
delay.tv_nsec = sleep_time; // 20 ms
if (clock_nanosleep(CLOCK_MONOTONIC, /*TIMER_ABSTIME */ 0, &delay,
NULL) != 0)
{
perror("clock_nanosleep\n");
exit(0);
}
if (clock_gettime(CLOCK_MONOTONIC, &time2) !=0)
{
perror("clock_gettime\n");
exit(0);
}
vals[ix] = TIMESPEC2USEC(time1,time2);
printf("Slept %ld usecs\n", vals[ix]);
total += vals[ix];
time1 = time2;
}
double average = ((double)total) / NB;
printf("Average %f, error %f%%\n", average, 100*average/sleep_time);
// calculates deviation
double dev = 0.0;
double err, av_err = 0.0;
for (ix = 0 ; ix < NB; ix++)
{
double diff = vals[ix]-average;
dev += (diff*diff);
err = abs(vals[ix]-(sleep_time/1000.0));
av_err+=err;
if (max_err < err)
max_err = err;
}
printf("Deviation %f, average error %f, max_err %f\n",
sqrt(dev), av_err/NB, max_err);
return 0;
}
Best regards
Thierry
next reply other threads:[~2013-11-04 16:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-04 16:16 Thierry Bultel [this message]
2013-11-04 16:11 ` [Xenomai] big deviation on clock_nanosleep wait time Gilles Chanteperdrix
[not found] ` <5277CC99.7050602@wanadoo.fr>
2013-11-04 16:38 ` Gilles Chanteperdrix
2013-11-04 16:16 ` Gilles Chanteperdrix
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5277C86F.5070603@wanadoo.fr \
--to=thierry.bultel@wanadoo.fr \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.