diff options
author | Alexey Kardashevskiy | 2013-06-12 09:26:55 +0200 |
---|---|---|
committer | Michael Tokarev | 2013-06-12 11:19:10 +0200 |
commit | e098b45386a86fecc1e573d305a240a2f4aa461d (patch) | |
tree | 85d997620131a13cf6658725dcf20dbbf860baf9 /linux-headers/asm-arm | |
parent | KVM: PPC: Add dummy kvm_arch_init_irq_routing() (diff) | |
download | qemu-e098b45386a86fecc1e573d305a240a2f4aa461d.tar.gz qemu-e098b45386a86fecc1e573d305a240a2f4aa461d.tar.xz qemu-e098b45386a86fecc1e573d305a240a2f4aa461d.zip |
linux-headers: Update to v3.10-rc5
This adds symbols required for PPC64 pseries platform features:
1. sPAPR live migration;
2. in-kernel XICS interrupt controller.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'linux-headers/asm-arm')
-rw-r--r-- | linux-headers/asm-arm/kvm.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linux-headers/asm-arm/kvm.h b/linux-headers/asm-arm/kvm.h index 023bfeb367..c1ee007523 100644 --- a/linux-headers/asm-arm/kvm.h +++ b/linux-headers/asm-arm/kvm.h @@ -53,12 +53,12 @@ #define KVM_ARM_FIQ_spsr fiq_regs[7] struct kvm_regs { - struct pt_regs usr_regs;/* R0_usr - R14_usr, PC, CPSR */ - __u32 svc_regs[3]; /* SP_svc, LR_svc, SPSR_svc */ - __u32 abt_regs[3]; /* SP_abt, LR_abt, SPSR_abt */ - __u32 und_regs[3]; /* SP_und, LR_und, SPSR_und */ - __u32 irq_regs[3]; /* SP_irq, LR_irq, SPSR_irq */ - __u32 fiq_regs[8]; /* R8_fiq - R14_fiq, SPSR_fiq */ + struct pt_regs usr_regs; /* R0_usr - R14_usr, PC, CPSR */ + unsigned long svc_regs[3]; /* SP_svc, LR_svc, SPSR_svc */ + unsigned long abt_regs[3]; /* SP_abt, LR_abt, SPSR_abt */ + unsigned long und_regs[3]; /* SP_und, LR_und, SPSR_und */ + unsigned long irq_regs[3]; /* SP_irq, LR_irq, SPSR_irq */ + unsigned long fiq_regs[8]; /* R8_fiq - R14_fiq, SPSR_fiq */ }; /* Supported Processor Types */ |