public inbox for linux-rt-users@vger.kernel.org
 help / color / mirror / Atom feed
From: John Kacur <jkacur@redhat.com>
To: Daniel Wagner <wagi@monom.org>
Cc: linux-rt-users@vger.kernel.org
Subject: Re: [PATCH v2 02/12] queuelat: Use clock syscall for ARM 32 bit
Date: Thu, 13 Jun 2019 15:51:37 +0200 (CEST)	[thread overview]
Message-ID: <alpine.LFD.2.21.1906131550540.8187@planxty> (raw)
In-Reply-To: <20190605160617.22987-3-wagi@monom.org>



On Wed, 5 Jun 2019, Daniel Wagner wrote:

> CPUs such as Cortex-M8 don't have a rdtsc instruction. Fallback using
> a syscall.
> 
> Signed-off-by: Daniel Wagner <wagi@monom.org>
> ---
>  src/queuelat/queuelat.c | 31 ++++++++++++++++++++++++++-----
>  1 file changed, 26 insertions(+), 5 deletions(-)
> 
> diff --git a/src/queuelat/queuelat.c b/src/queuelat/queuelat.c
> index 3b291f168768..a5525e41776a 100644
> --- a/src/queuelat/queuelat.c
> +++ b/src/queuelat/queuelat.c
> @@ -7,6 +7,7 @@
>  #include <stdio.h>
>  #include <unistd.h>
>  #include <signal.h>
> +#include <time.h>
>  
>  #define NSEC_PER_SEC 1000000000
>  
> @@ -249,6 +250,8 @@ typedef unsigned long long cycles_t;
>  typedef unsigned long long usecs_t;
>  typedef unsigned long long u64;
>  
> +#if defined __x86_64__ || defined __i386__
> +
>  #ifdef __x86_64__
>  #define DECLARE_ARGS(val, low, high)    unsigned low, high
>  #define EAX_EDX_VAL(val, low, high)     ((low) | ((u64)(high) << 32))
> @@ -270,7 +273,25 @@ static inline unsigned long long __rdtscll(void)
>          return EAX_EDX_VAL(val, low, high);
>  }
>  
> -#define rdtscll(val) do { (val) = __rdtscll(); } while (0)
> +#define gettick(val) do { (val) = __rdtscll(); } while (0)
> +
> +#elif defined __arm__
> +
> +static inline unsigned long long __clock_gettime(void)
> +{
> +	struct timespec now;
> +	int ret;
> +
> +	ret = clock_gettime(CLOCK_MONOTONIC, &now);
> +	if (ret < 0)
> +		return 0;
> +
> +	return now.tv_nsec;
> +}
> +
> +#define gettick(val) do { (val) = __clock_gettime(); } while (0)
> +
> +#endif
>  
>  static void init_buckets(void)
>  {
> @@ -348,9 +369,9 @@ static void run_n(int n)
>  
>  	memmove(dest, src, n);
>  	for (i = 0; i < loops; i++) {
> -		rdtscll(b);
> +		gettick(b);
>  		memmove(dest, src, n);
> -		rdtscll(a);
> +		gettick(a);
>  		delta = (a - b) * cycles_to_ns;
>  		account(delta);
>  	}
> @@ -446,9 +467,9 @@ void main_loop(void)
>  		int ret;
>  		int nr_packets_fill;
>  
> -		rdtscll(b);
> +		gettick(b);
>  		memmove(dest, src, default_n);
> -		rdtscll(a);
> +		gettick(a);
>  		delta = (a - b) * cycles_to_ns;
>  		account(delta);
>  
> -- 

Signed-off-by: John Kacur <jkacur@redhat.com>

  reply	other threads:[~2019-06-13 15:10 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-05 16:06 [PATCH v2 00/12] rt-tests: Add --duration argument to tests Daniel Wagner
2019-06-05 16:06 ` [PATCH v2 01/12] rt_numa.h: Remove unused function Daniel Wagner
2019-06-13 13:48   ` John Kacur
2019-06-05 16:06 ` [PATCH v2 02/12] queuelat: Use clock syscall for ARM 32 bit Daniel Wagner
2019-06-13 13:51   ` John Kacur [this message]
2019-06-05 16:06 ` [PATCH v2 03/12] rt-utils: Move parse_time_string() Daniel Wagner
2019-06-13 13:57   ` John Kacur
2019-06-05 16:06 ` [PATCH v2 04/12] pi_stress: Allow short command line arguments Daniel Wagner
2019-06-13 14:04   ` John Kacur
2019-06-16 16:29     ` Daniel Wagner
2019-06-05 16:06 ` [PATCH v2 05/12] pi_stress: Rename -t command line option to -D Daniel Wagner
2019-06-13 14:07   ` John Kacur
2019-06-05 16:06 ` [PATCH v2 06/12] pmqtest: Add duration command line argument Daniel Wagner
2019-06-13 14:10   ` John Kacur
2019-06-05 16:06 ` [PATCH v2 07/12] ptsematest: " Daniel Wagner
2019-06-05 16:06 ` [PATCH v2 08/12] cyclicdeadline: " Daniel Wagner
2019-06-13 14:18   ` John Kacur
2019-06-16 16:34     ` Daniel Wagner
2019-06-13 14:40   ` John Kacur
2019-06-05 16:06 ` [PATCH v2 09/12] signaltest: " Daniel Wagner
2019-06-13 19:07   ` John Kacur

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=alpine.LFD.2.21.1906131550540.8187@planxty \
    --to=jkacur@redhat.com \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=wagi@monom.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox