Lines Matching defs:entry
73 struct erratum_entry *entry = cpu_ops->errata_list_start;
83 for (; entry != end; entry += 1) {
84 uint64_t status = entry->check_func(rev_var);
86 assert(entry->id != 0);
93 if (status == ERRATA_APPLIES && entry->chosen == 0) {
97 print_status(status, cpu_ops->cpu_str, entry->cve, entry->id);
100 if (entry->cve) {
101 if (last_cve_yr > entry->cve ||
102 (last_cve_yr == entry->cve && last_erratum_id >= entry->id)) {
104 entry->cve, entry->id);
108 last_cve_yr = entry->cve;
110 if (last_erratum_id >= entry->id || check_cve) {
112 entry->id);
116 last_erratum_id = entry->id;