Lines Matching refs:entry
141 * This spinlock is used to prevent the fixmap entry from being used
607 struct ghes_vendor_record_entry *entry;
611 entry = container_of(work, struct ghes_vendor_record_entry, work);
612 gdata = GHES_GDATA_FROM_VENDOR_ENTRY(entry);
615 entry->error_severity, gdata);
618 gen_pool_free(ghes_estatus_pool, (unsigned long)entry, len);
625 struct ghes_vendor_record_entry *entry;
629 entry = (void *)gen_pool_alloc(ghes_estatus_pool, len);
630 if (!entry)
633 copied_gdata = GHES_GDATA_FROM_VENDOR_ENTRY(entry);
635 entry->error_severity = sev;
637 INIT_WORK(&entry->work, ghes_vendor_record_work_func);
638 schedule_work(&entry->work);