mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
18 lines
413 B
C
18 lines
413 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef S390_MEM_ENCRYPT_H__
|
||
|
#define S390_MEM_ENCRYPT_H__
|
||
|
|
||
|
#ifndef __ASSEMBLY__
|
||
|
|
||
|
#define sme_me_mask 0ULL
|
||
|
|
||
|
static inline bool sme_active(void) { return false; }
|
||
|
extern bool sev_active(void);
|
||
|
|
||
|
int set_memory_encrypted(unsigned long addr, int numpages);
|
||
|
int set_memory_decrypted(unsigned long addr, int numpages);
|
||
|
|
||
|
#endif /* __ASSEMBLY__ */
|
||
|
|
||
|
#endif /* S390_MEM_ENCRYPT_H__ */
|