diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-18 21:57:11 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-18 22:14:53 -0400 |
commit | 6a34032417d9bb90ead6f3b7bf891347bc4a1ed3 (patch) | |
tree | f2c1cf29f8651cc5ac41504a441a15d39b22f807 /include/linux/compiler.h | |
parent | 9f98746bfcd5159307237f7a491fd79db02d8bf3 (diff) |
Update bcachefs sources to a180af9dd349 bcachefs: Refactor memcpy into direct assignment
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'include/linux/compiler.h')
-rw-r--r-- | include/linux/compiler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index b9486dbe..61beee94 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h @@ -66,6 +66,7 @@ #define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b)) #define fallthrough __attribute__((__fallthrough__)) #define __noreturn __attribute__((__noreturn__)) +#define __counted_by(nr) #define ___PASTE(a,b) a##b #define __PASTE(a,b) ___PASTE(a,b) |