You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
334 B
20 lines
334 B
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
#ifndef __CPUFREQ_H
|
|
#define __CPUFREQ_H
|
|
|
|
#define MAX_ENTRIES 1024
|
|
#define MAX_CPU_NR 128
|
|
#define MAX_SLOTS 26
|
|
#define TASK_COMM_LEN 16
|
|
#define HIST_STEP_SIZE 200
|
|
|
|
struct hkey {
|
|
char comm[TASK_COMM_LEN];
|
|
};
|
|
|
|
struct hist {
|
|
__u32 slots[MAX_SLOTS];
|
|
};
|
|
|
|
#endif /* __CPUFREQ_H */
|