Linux Audio

Check our new training course

Loading...
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef S390_MEM_ENCRYPT_H__
 3#define S390_MEM_ENCRYPT_H__
 4
 5#ifndef __ASSEMBLY__
 6
 7int set_memory_encrypted(unsigned long vaddr, int numpages);
 8int set_memory_decrypted(unsigned long vaddr, int numpages);
 
 
 9
10#endif	/* __ASSEMBLY__ */
11
12#endif	/* S390_MEM_ENCRYPT_H__ */
v5.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef S390_MEM_ENCRYPT_H__
 3#define S390_MEM_ENCRYPT_H__
 4
 5#ifndef __ASSEMBLY__
 6
 7static inline bool mem_encrypt_active(void) { return false; }
 8
 9int set_memory_encrypted(unsigned long addr, int numpages);
10int set_memory_decrypted(unsigned long addr, int numpages);
11
12#endif	/* __ASSEMBLY__ */
13
14#endif	/* S390_MEM_ENCRYPT_H__ */