summaryrefslogblamecommitdiffstats
path: root/arch/x86/include/asm/kaslr.h
blob: db7ba2feb94708a6b4149b68f6f1220ba416f2b5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                      




                                                         





                                                    
      
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_KASLR_H_
#define _ASM_KASLR_H_

unsigned long kaslr_get_random_long(const char *purpose);

#ifdef CONFIG_RANDOMIZE_MEMORY
void kernel_randomize_memory(void);
#else
static inline void kernel_randomize_memory(void) { }
#endif /* CONFIG_RANDOMIZE_MEMORY */

#endif