hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/arch/s390/include/asm/mmu.h
....@@ -16,6 +16,8 @@
1616 unsigned long asce;
1717 unsigned long asce_limit;
1818 unsigned long vdso_base;
19
+ /* The mmu context belongs to a secure guest. */
20
+ atomic_t is_protected;
1921 /*
2022 * The following bitfields need a down_write on the mm
2123 * semaphore when they are written to. As they are only
....@@ -32,8 +34,6 @@
3234 unsigned int uses_cmm:1;
3335 /* The gmaps associated with this context are allowed to use huge pages. */
3436 unsigned int allow_gmap_hpage_1m:1;
35
- /* The mmu context is for compat task */
36
- unsigned int compat_mm:1;
3737 } mm_context_t;
3838
3939 #define INIT_MM_CONTEXT(name) \