diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-22 20:32:21 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-22 20:32:21 +0400 |
commit | fae3f6f2eed147092e4612177972d46e542cab71 (patch) | |
tree | 8e889a7f236e1a7933f4a6245117d680af6479b9 /arch/s390/include/asm/pgtable.h | |
parent | d93dc5c4478c1fd5de85a3e8aece9aad7bbae044 (diff) | |
parent | b6cf8788a3382c2000743a0e393bcc8aeb0601cb (diff) | |
download | linux-fae3f6f2eed147092e4612177972d46e542cab71.tar.xz |
Merge branch 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6:
[S390] kvm: extension capability for new address space layout
[S390] kvm: fix address mode switching
Diffstat (limited to 'arch/s390/include/asm/pgtable.h')
-rw-r--r-- | arch/s390/include/asm/pgtable.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/include/asm/pgtable.h b/arch/s390/include/asm/pgtable.h index 519eb5f187ef..c0cb794bb365 100644 --- a/arch/s390/include/asm/pgtable.h +++ b/arch/s390/include/asm/pgtable.h @@ -658,12 +658,14 @@ static inline void pgste_set_pte(pte_t *ptep, pgste_t pgste) * struct gmap_struct - guest address space * @mm: pointer to the parent mm_struct * @table: pointer to the page directory + * @asce: address space control element for gmap page table * @crst_list: list of all crst tables used in the guest address space */ struct gmap { struct list_head list; struct mm_struct *mm; unsigned long *table; + unsigned long asce; struct list_head crst_list; }; |