ab14de6c37
Hopefully this will make it more maintainable and less error prone. Code makes use of search_exception_tables(). Since it calls this function before the kernel exeception table is sorted, there is an early call to sort_main_extable(). This way it's easy to use the already present infrastructure of fixup sections. Also this would allows to easily convert the rest of head[31|64].S into C code. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
21 lines
464 B
C
21 lines
464 B
C
/*
|
|
* include/asm-s390/reset.h
|
|
*
|
|
* Copyright IBM Corp. 2006
|
|
* Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
|
|
*/
|
|
|
|
#ifndef _ASM_S390_RESET_H
|
|
#define _ASM_S390_RESET_H
|
|
|
|
#include <linux/list.h>
|
|
|
|
struct reset_call {
|
|
struct list_head list;
|
|
void (*fn)(void);
|
|
};
|
|
|
|
extern void register_reset_call(struct reset_call *reset);
|
|
extern void unregister_reset_call(struct reset_call *reset);
|
|
extern void s390_reset_system(void);
|
|
#endif /* _ASM_S390_RESET_H */
|