[PATCH 2.6.14-rt13] Latency Tracing Fix

From: Sven-Thorsten Dietrich
Date: Tue Nov 15 2005 - 06:46:45 EST


Compile error with latency tracing and no ktimers on i386:

CC kernel/ktimers.o
kernel/ktimers.c: In function âenqueue_ktimerâ:
kernel/ktimers.c:756: error: incompatible type for argument 1 of
âtrace_special_u64â
make[1]: *** [kernel/ktimers.o] Error 1
make: *** [kernel] Error 2

#diff defconfig .config
#4c4
#< # Tue Nov 15 03:19:31 2005
#---
#> # Tue Nov 15 03:20:21 2005
#163d162
#< # CONFIG_REGPARM is not set
#1434c1433,1434
#< # CONFIG_LATENCY_TRACE is not set
#---
#> CONFIG_LATENCY_TRACE=y
#> CONFIG_MCOUNT=y
#1437a1438
#> CONFIG_FRAME_POINTER=y

Index: linux-rt/include/linux/ktimer.h
===================================================================
--- linux-rt.orig/include/linux/ktimer.h
+++ linux-rt/include/linux/ktimer.h
@@ -167,8 +167,11 @@ static inline int ktimer_interrupt(void)
return 0;
}

-#define ktimer_trace(a,b) trace_special_u64(a,b)
-
+# if (BITS_PER_LONG == 64)
+# define ktimer_trace(a,b) trace_special_u64(a,b)
+# else
+# define ktimer_trace(a,b) trace_special(ktime_get_high(a),ktime_get_low(a),b)
+# endif
#endif

/* Exported timer functions: */





-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/