Lines Matching refs:entry
157 * This spinlock is used to prevent the fixmap entry from being used
642 struct ghes_vendor_record_entry *entry;
646 entry = container_of(work, struct ghes_vendor_record_entry, work);
647 gdata = GHES_GDATA_FROM_VENDOR_ENTRY(entry);
650 entry->error_severity, gdata);
653 gen_pool_free(ghes_estatus_pool, (unsigned long)entry, len);
660 struct ghes_vendor_record_entry *entry;
664 entry = (void *)gen_pool_alloc(ghes_estatus_pool, len);
665 if (!entry)
668 copied_gdata = GHES_GDATA_FROM_VENDOR_ENTRY(entry);
670 entry->error_severity = sev;
672 INIT_WORK(&entry->work, ghes_vendor_record_work_func);
673 schedule_work(&entry->work);