xref: /linux/fs/bcachefs/keylist_types.h (revision d642ef71)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_KEYLIST_TYPES_H
3 #define _BCACHEFS_KEYLIST_TYPES_H
4 
5 struct keylist {
6 	union {
7 		struct bkey_i		*keys;
8 		u64			*keys_p;
9 	};
10 	union {
11 		struct bkey_i		*top;
12 		u64			*top_p;
13 	};
14 };
15 
16 #endif /* _BCACHEFS_KEYLIST_TYPES_H */
17