move everything out of trunk
[lttv.git] / tests / kernel / test-tsc-sync2.c
diff --git a/tests/kernel/test-tsc-sync2.c b/tests/kernel/test-tsc-sync2.c
new file mode 100644 (file)
index 0000000..172b07c
--- /dev/null
@@ -0,0 +1,27 @@
+/* test-async-tsc.c
+ *
+ * test async tsc on AMD.
+ */
+
+
+#include <asm/atomic.h>
+#include <linux/module.h>
+#include <asm/timex.h>
+
+static int __init test_init(void)
+{
+       test_tsc_synchronization();
+       return -EPERM;
+}
+
+static void __exit test_exit(void)
+{
+}
+
+module_init(test_init);
+module_exit(test_exit);
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Mathieu Desnoyers");
+MODULE_DESCRIPTION("sync async tsc");
+
This page took 0.024813 seconds and 4 git commands to generate.