1d5c7f078e
Remove panic-on-error from DASD IPL specific functions so that error recovery may be possible in the future. Functions that would previously panic now provide a return code. Signed-off-by: Jared Rossi <jrossi@linux.ibm.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-ID: <20241020012953.1380075-11-jrossi@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
17 lines
411 B
C
17 lines
411 B
C
/*
|
|
* S390 IPL (boot) from a real DASD device via vfio framework.
|
|
*
|
|
* Copyright (c) 2019 Jason J. Herne <jjherne@us.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or (at
|
|
* your option) any later version. See the COPYING file in the top-level
|
|
* directory.
|
|
*/
|
|
|
|
#ifndef DASD_IPL_H
|
|
#define DASD_IPL_H
|
|
|
|
int dasd_ipl(SubChannelId schid, uint16_t cutype);
|
|
|
|
#endif /* DASD_IPL_H */
|