mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-02 00:00:03 +03:00
b5fd066153
We just wanted c sourcefiles out of the top level, not c source directories. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
11 lines
221 B
C
11 lines
221 B
C
#ifndef _LINUX_PREFETCH_H
|
|
#define _LINUX_PREFETCH_H
|
|
|
|
#define prefetch(p) \
|
|
({ __maybe_unused typeof(p) __var = (p); })
|
|
|
|
#define prefetchw(p) \
|
|
({ __maybe_unused typeof(p) __var = (p); })
|
|
|
|
#endif /* _LINUX_PREFETCH_H */
|