linux-stable/fs/bcachefs/keylist_types.h

17 lines
274 B
C

/* 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 */