update makefile
[lttv.git] / tests / kernel / test-cmpxchg.c
CommitLineData
02e6c126 1/* test-cmpxchg.c
2 *
3 * Test time spent in a LTTng instrumentation probe.
4 */
5
6
cad735b5 7#include <linux/config.h>
8#include <linux/jiffies.h>
9#include <linux/compiler.h>
02e6c126 10#include <linux/init.h>
11#include <linux/module.h>
02e6c126 12
d254c2d4 13#define NR_LOOPS 20000
14
02e6c126 15
cad735b5 16volatile int test_val = 100;
17
02e6c126 18
38b8d96b 19static inline void do_test(void)
02e6c126 20{
cad735b5 21 int val, ret;
02e6c126 22
23 val = test_val;
24
cad735b5 25 ret = cmpxchg(&test_val, val, val+1);
02e6c126 26}
27
38b8d96b 28//void (*fct)(void) = do_test;
cad735b5 29
02e6c126 30static int ltt_test_init(void)
31{
32 unsigned int i;
33 cycles_t time1, time2, time;
34 cycles_t max_time = 0, min_time = 18446744073709551615ULL; /* (2^64)-1 */
35 cycles_t tot_time = 0;
36 unsigned long flags;
37 printk(KERN_ALERT "test init\n");
38
39 local_irq_save(flags);
cad735b5 40 time1 = get_cycles();
02e6c126 41 for(i=0; i<NR_LOOPS; i++) {
cad735b5 42 //for(int j=0; j<10; j++) {
02e6c126 43 do_test();
cad735b5 44 //}
45 //max_time = max(max_time, time);
46 //min_time = min(min_time, time);
47 //printk("val : %d\n", test_val);
02e6c126 48 }
cad735b5 49 time2 = get_cycles();
02e6c126 50 local_irq_restore(flags);
cad735b5 51 time = time2 - time1;
52 tot_time += time;
02e6c126 53
54 printk(KERN_ALERT "test results : time per probe\n");
55 printk(KERN_ALERT "number of loops : %d\n", NR_LOOPS);
56 printk(KERN_ALERT "total time : %llu\n", tot_time);
cad735b5 57 //printk(KERN_ALERT "min : %llu\n", min_time);
58 //printk(KERN_ALERT "max : %llu\n", max_time);
02e6c126 59
60 printk(KERN_ALERT "test end\n");
61
62 return -EAGAIN; /* Fail will directly unload the module */
63}
64
65static void ltt_test_exit(void)
66{
67 printk(KERN_ALERT "test exit\n");
68}
69
70module_init(ltt_test_init)
71module_exit(ltt_test_exit)
72
73MODULE_LICENSE("GPL");
74MODULE_AUTHOR("Mathieu Desnoyers");
75MODULE_DESCRIPTION("Linux Trace Toolkit Test");
76
This page took 0.025377 seconds and 4 git commands to generate.