1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ 2 #ifndef __SLABRATETOP_H 3 #define __SLABRATETOP_H 4 5 #define CACHE_NAME_SIZE 32 6 7 struct slabrate_info { 8 char name[CACHE_NAME_SIZE]; 9 __u64 count; 10 __u64 size; 11 }; 12 13 #endif /* __SLABRATETOP_H */ 14