diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2016-02-16 18:48:14 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-02-16 18:48:14 +0100 |
| commit | efef127c30c5ded4cb10fe36275d9b11d4633de4 (patch) | |
| tree | 6831f58a13676ad637a34f4d815993251989a886 /include | |
| parent | KVM: x86: consolidate different ways to test for in-kernel LAPIC (diff) | |
| parent | KVM: s390: bail out early on fatal signal in dirty logging (diff) | |
| download | linux-efef127c30c5ded4cb10fe36275d9b11d4633de4.tar.gz linux-efef127c30c5ded4cb10fe36275d9b11d4633de4.zip | |
Merge tag 'kvm-s390-next-4.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD
KVM: s390: Fixes and features for kvm/next (4.6)
1. also provide the floating point registers via sync regs
2. Separate out intruction vs. data accesses
3. Fix program interrupts in some cases
4. Documentation fixes
5. dirty log improvements for huge guests
Diffstat (limited to 'include')
| -rw-r--r-- | include/uapi/linux/kvm.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h index 9da905157cee..a2fe0ac1d61a 100644 --- a/include/uapi/linux/kvm.h +++ b/include/uapi/linux/kvm.h @@ -541,7 +541,13 @@ struct kvm_s390_pgm_info { __u8 exc_access_id; __u8 per_access_id; __u8 op_access_id; - __u8 pad[3]; +#define KVM_S390_PGM_FLAGS_ILC_VALID 0x01 +#define KVM_S390_PGM_FLAGS_ILC_0 0x02 +#define KVM_S390_PGM_FLAGS_ILC_1 0x04 +#define KVM_S390_PGM_FLAGS_ILC_MASK 0x06 +#define KVM_S390_PGM_FLAGS_NO_REWIND 0x08 + __u8 flags; + __u8 pad[2]; }; struct kvm_s390_prefix_info { |
