1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BCACHEFS_KEYLIST_TYPES_H
#define _BCACHEFS_KEYLIST_TYPES_H
struct keylist {
union {
struct bkey_i *keys;
u64 *keys_p;
};
union {
struct bkey_i *top;
u64 *top_p;
};
};
#endif /* _BCACHEFS_KEYLIST_TYPES_H */