• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
2 #ifndef __BIOPATTERN_H
3 #define __BIOPATTERN_H
4 
5 #define DISK_NAME_LEN	32
6 
7 struct counter {
8 	__u64 last_sector;
9 	__u64 bytes;
10 	__u32 sequential;
11 	__u32 random;
12 };
13 
14 #endif /* __BIOPATTERN_H */
15