mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 18:53:52 +08:00
15 lines
385 B
C
15 lines
385 B
C
|
#ifndef _LIVEPATCH_TRANSITION_H
|
||
|
#define _LIVEPATCH_TRANSITION_H
|
||
|
|
||
|
#include <linux/livepatch.h>
|
||
|
|
||
|
extern struct klp_patch *klp_transition_patch;
|
||
|
|
||
|
void klp_init_transition(struct klp_patch *patch, int state);
|
||
|
void klp_cancel_transition(void);
|
||
|
void klp_start_transition(void);
|
||
|
void klp_try_complete_transition(void);
|
||
|
void klp_reverse_transition(void);
|
||
|
|
||
|
#endif /* _LIVEPATCH_TRANSITION_H */
|