mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	 0b3d52790e
			
		
	
	
		0b3d52790e
		
	
	
	
	
		
			
			The fake signal is send automatically now. We can rely on it completely and remove the sysfs attribute. Signed-off-by: Miroslav Benes <mbenes@suse.cz> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
		
			
				
	
	
		
			17 lines
		
	
	
		
			457 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			457 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #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);
 | |
| void klp_force_transition(void);
 | |
| 
 | |
| #endif /* _LIVEPATCH_TRANSITION_H */
 |