Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0a9be83e57de0d0ca8ca4ec610bc344f17a8e5e7 15 lines 323 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __VDSO_CACHE_H 3#define __VDSO_CACHE_H 4 5#include <asm/cache.h> 6 7#ifndef SMP_CACHE_BYTES 8#define SMP_CACHE_BYTES L1_CACHE_BYTES 9#endif 10 11#ifndef ____cacheline_aligned 12#define ____cacheline_aligned __attribute__((__aligned__(SMP_CACHE_BYTES))) 13#endif 14 15#endif /* __VDSO_ALIGN_H */