Files
s390-tools/zipl/boot/kdump.h
Mikhail Zaslonko b06ca88cd4 zipl/boot: Make kdump_os_info_check() argument a const.
Make 'struct os_info *os_info' a const to ensure/indicate that no changes
are made to the given structure.

Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2023-07-20 21:45:27 +02:00

24 lines
491 B
C

/*
* zipl - zSeries Initial Program Loader tool
*
* Stand-alone kdump definitions
*
* Copyright IBM Corp. 2013, 2023
*
* s390-tools is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef KDUMP_H
#define KDUMP_H
#include "boot/os_info.h"
#define OS_INFO_VERSION_MAJOR_SUPPORTED 1
void kdump_os_info_check(const struct os_info *os_info);
void kdump_failed(unsigned long reason);
#endif /* KDUMP_H */