teo_cpuRegular
4.4: Absent ⚠️
4.8: Absent ⚠️
4.10: Absent ⚠️
4.13: Absent ⚠️
4.15: Absent ⚠️
4.18: Absent ⚠️
5.0: Absent ⚠️
5.3: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int last_state;
int interval_idx;
unsigned int intervals[8];
};
5.4: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
unsigned int intervals[8];
};
5.8: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
u64 intervals[8];
};
5.11: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
u64 intervals[8];
};
5.13: ✅struct teo_cpu {
s64 time_span_ns;
s64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
u64 intervals[8];
};
5.15: ✅struct teo_cpu {
s64 time_span_ns;
s64 sleep_length_ns;
struct teo_bin state_bins[10];
unsigned int total;
int next_recent_idx;
int recent_idx[9];
};
5.19: ✅struct teo_cpu {
s64 time_span_ns;
s64 sleep_length_ns;
struct teo_bin state_bins[10];
unsigned int total;
int next_recent_idx;
int recent_idx[9];
};
6.2: ✅struct teo_cpu {
s64 time_span_ns;
s64 sleep_length_ns;
struct teo_bin state_bins[10];
unsigned int total;
int next_recent_idx;
int recent_idx[9];
};
6.5: ✅struct teo_cpu {
s64 time_span_ns;
s64 sleep_length_ns;
struct teo_bin state_bins[10];
unsigned int total;
int next_recent_idx;
int recent_idx[9];
long unsigned int util_threshold;
bool utilized;
};
6.8: ✅struct teo_cpu {
s64 time_span_ns;
s64 sleep_length_ns;
struct teo_bin state_bins[10];
unsigned int total;
int next_recent_idx;
int recent_idx[9];
unsigned int tick_hits;
long unsigned int util_threshold;
};
arm64: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
unsigned int intervals[8];
};
armhf: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
unsigned int intervals[8];
};
ppc64el: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
unsigned int intervals[8];
};
riscv64: Absent ⚠️
aws: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
unsigned int intervals[8];
};
azure: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
unsigned int intervals[8];
};
gcp: Absent ⚠️
lowlatency: ✅struct teo_cpu {
u64 time_span_ns;
u64 sleep_length_ns;
struct teo_idle_state states[10];
int interval_idx;
unsigned int intervals[8];
};
Regular
5.3 and 5.4 ⚠️int last_state
5.4 and 5.8 ⚠️unsigned int intervals[8] ➡️ u64 intervals[8]
5.8 and 5.11 ✅
5.11 and 5.13 ⚠️u64 time_span_ns ➡️ s64 time_span_ns
u64 sleep_length_ns ➡️ s64 sleep_length_ns
5.13 and 5.15 ⚠️struct teo_bin state_bins[10]
unsigned int total
int next_recent_idx
int recent_idx[9]
struct teo_idle_state states[10]
int interval_idx
u64 intervals[8]
5.15 and 5.19 ✅
5.19 and 6.2 ✅
6.2 and 6.5 ⚠️long unsigned int util_threshold
bool utilized
6.5 and 6.8 ⚠️unsigned int tick_hits
bool utilized
amd64 and arm64 ✅
amd64 and armhf ✅
amd64 and ppc64el ✅
generic and aws ✅
generic and azure ✅
generic and lowlatency ✅