1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ 2 #ifndef __HARDIRQS_H 3 #define __HARDIRQS_H 4 5 #define MAX_SLOTS 20 6 7 struct irq_key { 8 char name[32]; 9 }; 10 11 struct info { 12 __u64 count; 13 __u32 slots[MAX_SLOTS]; 14 }; 15 16 #endif /* __HARDIRQS_H */ 17