Lines Matching defs:report
110 static int sclp_pci_check_report(struct zpci_report_error_header *report)
112 if (report->version != 1)
115 switch (report->action) {
124 if (report->length > (PAGE_SIZE - sizeof(struct err_notify_sccb)))
130 int sclp_pci_report(struct zpci_report_error_header *report, u32 fh, u32 fid)
137 ret = sclp_pci_check_report(report);
164 sccb->evbuf.header.length = sizeof(sccb->evbuf) + report->length;
168 sccb->evbuf.action = report->action;
173 memcpy(sccb->evbuf.data, report->data, report->length);