summaryrefslogtreecommitdiff
path: root/src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/kernel.h
blob: 3ef2f7fe81ddfa3b8b0d0efd26f81c00d0433bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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_