summaryrefslogtreecommitdiff
path: root/src/third_party/zstandard-1.4.3/zstd/contrib/linux-kernel/test/include/linux/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/zstandard-1.4.3/zstd/contrib/linux-kernel/test/include/linux/kernel.h')
-rw-r--r--src/third_party/zstandard-1.4.3/zstd/contrib/linux-kernel/test/include/linux/kernel.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/third_party/zstandard-1.4.3/zstd/contrib/linux-kernel/test/include/linux/kernel.h b/src/third_party/zstandard-1.4.3/zstd/contrib/linux-kernel/test/include/linux/kernel.h
new file mode 100644
index 00000000000..3ef2f7fe81d
--- /dev/null
+++ b/src/third_party/zstandard-1.4.3/zstd/contrib/linux-kernel/test/include/linux/kernel.h
@@ -0,0 +1,16 @@
+#ifndef LINUX_KERNEL_H_
+#define LINUX_KERNEL_H_
+
+#define ALIGN(x, a) ({ \
+ typeof(x) const __xe = (x); \
+ typeof(a) const __ae = (a); \
+ typeof(a) const __m = __ae - 1; \
+ typeof(x) const __r = __xe & __m; \
+ __xe + (__r ? (__ae - __r) : 0); \
+ })
+
+#define PTR_ALIGN(p, a) (typeof(p))ALIGN((unsigned long long)(p), (a))
+
+#define current Something that doesn't compile :)
+
+#endif // LINUX_KERNEL_H_