Blame view
lib/atomic64_test.c
3.48 KB
86a893807 lib: Add self-tes... |
1 2 3 4 5 6 7 8 9 10 11 |
/* * Testsuite for atomic64_t functions * * Copyright © 2010 Luca Barbieri * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include <linux/init.h> |
0dbdd1bfe lib/atomic64_test... |
12 |
#include <linux/kernel.h> |
60063497a atomic: use <linu... |
13 |
#include <linux/atomic.h> |
86a893807 lib: Add self-tes... |
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
#define INIT(c) do { atomic64_set(&v, c); r = c; } while (0) static __init int test_atomic64(void) { long long v0 = 0xaaa31337c001d00dLL; long long v1 = 0xdeadbeefdeafcafeLL; long long v2 = 0xfaceabadf00df001LL; long long onestwos = 0x1111111122222222LL; long long one = 1LL; atomic64_t v = ATOMIC64_INIT(v0); long long r = v0; BUG_ON(v.counter != r); atomic64_set(&v, v1); r = v1; BUG_ON(v.counter != r); BUG_ON(atomic64_read(&v) != r); INIT(v0); atomic64_add(onestwos, &v); r += onestwos; BUG_ON(v.counter != r); INIT(v0); atomic64_add(-one, &v); r += -one; BUG_ON(v.counter != r); INIT(v0); r += onestwos; BUG_ON(atomic64_add_return(onestwos, &v) != r); BUG_ON(v.counter != r); INIT(v0); r += -one; BUG_ON(atomic64_add_return(-one, &v) != r); BUG_ON(v.counter != r); INIT(v0); atomic64_sub(onestwos, &v); r -= onestwos; BUG_ON(v.counter != r); INIT(v0); atomic64_sub(-one, &v); r -= -one; BUG_ON(v.counter != r); INIT(v0); r -= onestwos; BUG_ON(atomic64_sub_return(onestwos, &v) != r); BUG_ON(v.counter != r); INIT(v0); r -= -one; BUG_ON(atomic64_sub_return(-one, &v) != r); BUG_ON(v.counter != r); INIT(v0); atomic64_inc(&v); r += one; BUG_ON(v.counter != r); INIT(v0); r += one; BUG_ON(atomic64_inc_return(&v) != r); BUG_ON(v.counter != r); INIT(v0); atomic64_dec(&v); r -= one; BUG_ON(v.counter != r); INIT(v0); r -= one; BUG_ON(atomic64_dec_return(&v) != r); BUG_ON(v.counter != r); INIT(v0); BUG_ON(atomic64_xchg(&v, v1) != v0); r = v1; BUG_ON(v.counter != r); INIT(v0); BUG_ON(atomic64_cmpxchg(&v, v0, v1) != v0); r = v1; BUG_ON(v.counter != r); INIT(v0); BUG_ON(atomic64_cmpxchg(&v, v2, v1) != v0); BUG_ON(v.counter != r); INIT(v0); |
9efbcd590 lib: Fix atomic64... |
108 |
BUG_ON(atomic64_add_unless(&v, one, v0)); |
86a893807 lib: Add self-tes... |
109 110 111 |
BUG_ON(v.counter != r); INIT(v0); |
9efbcd590 lib: Fix atomic64... |
112 |
BUG_ON(!atomic64_add_unless(&v, one, v1)); |
86a893807 lib: Add self-tes... |
113 114 |
r += one; BUG_ON(v.counter != r); |
007d08678 lib: add s390 to ... |
115 |
#if defined(CONFIG_X86) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \ |
c58bbd39f ARM: 6213/1: atom... |
116 |
defined(CONFIG_S390) || defined(_ASM_GENERIC_ATOMIC64_H) || defined(CONFIG_ARM) |
86a893807 lib: Add self-tes... |
117 118 119 120 121 122 123 124 125 126 127 128 |
INIT(onestwos); BUG_ON(atomic64_dec_if_positive(&v) != (onestwos - 1)); r -= one; BUG_ON(v.counter != r); INIT(0); BUG_ON(atomic64_dec_if_positive(&v) != -one); BUG_ON(v.counter != r); INIT(-one); BUG_ON(atomic64_dec_if_positive(&v) != (-one - one)); BUG_ON(v.counter != r); |
8f4f202b3 lib: Only test at... |
129 130 131 |
#else #warning Please implement atomic64_dec_if_positive for your architecture, and add it to the IF above #endif |
86a893807 lib: Add self-tes... |
132 133 |
INIT(onestwos); |
25a304f27 lib: Fix atomic64... |
134 |
BUG_ON(!atomic64_inc_not_zero(&v)); |
86a893807 lib: Add self-tes... |
135 136 137 138 |
r += one; BUG_ON(v.counter != r); INIT(0); |
25a304f27 lib: Fix atomic64... |
139 |
BUG_ON(atomic64_inc_not_zero(&v)); |
86a893807 lib: Add self-tes... |
140 141 142 |
BUG_ON(v.counter != r); INIT(-one); |
25a304f27 lib: Fix atomic64... |
143 |
BUG_ON(!atomic64_inc_not_zero(&v)); |
86a893807 lib: Add self-tes... |
144 145 146 147 |
r += one; BUG_ON(v.counter != r); #ifdef CONFIG_X86 |
a5c9161f2 x86, atomic64: In... |
148 149 150 151 152 153 |
printk(KERN_INFO "atomic64 test passed for %s platform %s CX8 and %s SSE ", #ifdef CONFIG_X86_64 "x86-64", #elif defined(CONFIG_X86_CMPXCHG64) "i586+", |
86a893807 lib: Add self-tes... |
154 |
#else |
a5c9161f2 x86, atomic64: In... |
155 |
"i386+", |
86a893807 lib: Add self-tes... |
156 |
#endif |
a5c9161f2 x86, atomic64: In... |
157 158 |
boot_cpu_has(X86_FEATURE_CX8) ? "with" : "without", boot_cpu_has(X86_FEATURE_XMM) ? "with" : "without"); |
86a893807 lib: Add self-tes... |
159 160 161 162 163 164 165 166 167 |
#else printk(KERN_INFO "atomic64 test passed "); #endif return 0; } core_initcall(test_atomic64); |