]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/sb-errors_types.h
Upload to experimental
[bcachefs-tools-debian] / libbcachefs / sb-errors_types.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_SB_ERRORS_TYPES_H
3 #define _BCACHEFS_SB_ERRORS_TYPES_H
4
5 #include "darray.h"
6
7 struct bch_sb_error_entry_cpu {
8         u64                     id:16,
9                                 nr:48;
10         u64                     last_error_time;
11 };
12
13 typedef DARRAY(struct bch_sb_error_entry_cpu) bch_sb_errors_cpu;
14
15 #endif /* _BCACHEFS_SB_ERRORS_TYPES_H */
16