Re: [PATCH rt-tests] queuelat: use ARM implementation of gettick also for all !x86 archs
From: John Kacur <jkacur@redhat.com>
Date: 2019-12-10 11:20:26
From: John Kacur <jkacur@redhat.com>
Date: 2019-12-10 11:20:26
On Sun, 8 Dec 2019, Uwe Kleine-König wrote:
This fixes a build error on arm64, mips*, ppc and several others --- src/queuelat/queuelat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)diff --git a/src/queuelat/queuelat.c b/src/queuelat/queuelat.c index cccb50ef0cc4..98346f346f82 100644 --- a/src/queuelat/queuelat.c +++ b/src/queuelat/queuelat.c@@ -283,7 +283,7 @@ static inline unsigned long long __rdtscll(void) #define gettick(val) do { (val) = __rdtscll(); } while (0) -#elif defined __arm__ +#else static inline unsigned long long __clock_gettime(void) {-- 2.24.0
Signed-off-by: John Kacur <jkacur@redhat.com>