xref: /aosp_15_r20/external/bcc/libbpf-tools/fsdist.h (revision 387f9dfdfa2baef462e92476d413c7bc2470293e)
1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2 #ifndef __FSDIST_H
3 #define __FSDIST_H
4 
5 enum fs_file_op {
6 	F_READ,
7 	F_WRITE,
8 	F_OPEN,
9 	F_FSYNC,
10 	F_GETATTR,
11 	F_MAX_OP,
12 };
13 
14 #define MAX_SLOTS	32
15 
16 struct hist {
17 	__u32 slots[MAX_SLOTS];
18 };
19 
20 #endif /* __FSDIST_H */
21