mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Add a mechanism with which the status of PCI error recovery runs is reported to the platform. Together with the status supply additional information that may aid in problem determination. Reviewed-by: Halil Pasic <pasic@linux.ibm.com> Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
16 lines
339 B
C
16 lines
339 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright IBM Corp. 2024
|
|
*
|
|
* Author(s):
|
|
* Niklas Schnelle <schnelle@linux.ibm.com>
|
|
*
|
|
*/
|
|
#ifndef __S390_PCI_REPORT_H
|
|
#define __S390_PCI_REPORT_H
|
|
|
|
struct zpci_dev;
|
|
|
|
int zpci_report_status(struct zpci_dev *zdev, const char *operation, const char *status);
|
|
|
|
#endif /* __S390_PCI_REPORT_H */
|