aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Expand)AuthorFilesLines
2012-09-05KVM: ARM: Access all registers via KVM_GET_ONE_REG/KVM_SET_ONE_REG.onereg-abiRusty Russell7-114/+146
2012-09-05KVM: ARM: Use KVM_VCPU_GET_REG_LIST.Rusty Russell6-72/+5
2012-09-05KVM: ARM: use KVM_SET_ONE_REG/KVM_GET_ONE_REG.Rusty Russell6-166/+120
2012-09-05KVM: Add KVM_VCPU_GET_REG_LIST/KVM_CAP_REG_LIST.Rusty Russell4-1/+51
2012-09-01KVM: Add KVM_REG_SIZE() helper.Rusty Russell1-0/+2
2012-09-01KVM: Move KVM_SET_ONE_REG/KVM_GET_ONE_REG to generic code.Rusty Russell9-38/+32
2012-08-28KVM: ARM: Add trace and fix prints on guest abortsChristoffer Dall3-5/+38
2012-08-28fixup! KVM: ARM: __kvm_va_to_pa()Christoffer Dall2-15/+6
2012-08-28fixup! KVM: ARM: Support Thumb MMIO instruction decodingChristoffer Dall1-3/+3
2012-08-28fixup! KVM: ARM: __kvm_va_to_pa()Christoffer Dall2-7/+10
2012-08-28fixup! ARM: KVM: Complain on read from WO and write to RO CP15 regsChristoffer Dall1-10/+10
2012-08-28ARM: KVM: Complain on read from WO and write to RO CP15 regsRusty Russell1-2/+20
2012-08-27ARM: KVM: don't choke when unmapping a page without a stage2 translationMarc Zyngier1-2/+4
2012-08-27ARM: KVM: simplify stack layout in HYP modeMarc Zyngier1-8/+13
2012-08-27fixup! ARM: KVM: add page accounting and guest page table evictionMarc Zyngier1-15/+15
2012-08-27ARM: idmap: only initialize HYP idmap when HYP mode is availableMarc Zyngier1-0/+4
2012-08-27ARM: KVM: make init.S Thumb compliantMarc Zyngier1-14/+13
2012-08-27ARM: KVM: Switch HVBAR setting to be HVC-basedMarc Zyngier4-41/+69
2012-08-27ARM: KVM: Change KVM/ARM dependenciesMarc Zyngier1-1/+1
2012-08-27ARM: KVM: remove CONFIG_ARM_VIRT_EXTMarc Zyngier1-10/+0
2012-08-27ARM: virt: arch_timers: enable access to physical timersMarc Zyngier1-0/+13
2012-08-27ARM: virt: Add CONFIG_ARM_VIRT_EXT optionDave Martin1-0/+17
2012-08-27ARM: virt: Add boot-time diagnosticsDave Martin3-0/+40
2012-08-27ARM: virt: Update documentation for hyp mode entry supportDave Martin1-1/+21
2012-08-27ARM: zImage/virt: hyp mode entry support for the zImage loaderDave Martin4-8/+91
2012-08-27ARM: virt: allow the kernel to be entered in HYP modeDave Martin6-3/+286
2012-08-27ARM: opcodes: add __ERET/__MSR_ELR_HYP instruction encodingMarc Zyngier1-0/+10
2012-08-27ARM: opcodes: Opcode definitions for the Virtualization ExtensionsDave Martin2-0/+31
2012-08-27ARM: opcodes: Add helpers for emitting custom opcodesDave Martin1-0/+69
2012-08-27ARM: opcodes: Make opcode byteswapping macros assembly-compatibleDave Martin1-15/+82
2012-08-27ARM: opcodes: Don't define the thumb32 byteswapping macros for BE32Dave Martin1-1/+14
2012-08-27KVM: ARM: Inject data abort on weird MMIO instrucitonsChristoffer Dall1-6/+8
2012-08-27KVM: ARM: Support Thumb MMIO instruction decodingChristoffer Dall1-1/+153
2012-08-26KVM: ARM: Cleanup and fix load/store instruction decodingChristoffer Dall3-40/+65
2012-08-26KVM: ARM: Inject data/prefetch aborts in guestChristoffer Dall3-11/+102
2012-08-26KVM: ARM: 16-bit Thumb instructions shouldn't generate errorChristoffer Dall1-38/+45
2012-08-26KVM: ARM: Atomically read guest instruction,Rusty Russell3-3/+63
2012-08-26KVM: ARM: Let guest instruction mapping fail.Rusty Russell1-15/+13
2012-08-26KVM: ARM: __kvm_va_to_pa()Rusty Russell5-51/+94
2012-08-26ARM: KVM: VGIC: Update KVM API documentationMarc Zyngier1-7/+19
2012-08-26ARM: KVM: Add VGIC configuration optionMarc Zyngier1-0/+7
2012-08-26ARM: KVM: vgic: reduce the number of vcpu kickMarc Zyngier3-3/+26
2012-08-26ARM: KVM: VGIC initialisation codeMarc Zyngier3-2/+197
2012-08-26ARM: KVM: VGIC control interface world switchMarc Zyngier3-0/+92
2012-08-26ARM: KVM: VGIC interrupt injectionMarc Zyngier3-1/+100
2012-08-26ARM: KVM: VGIC virtual CPU interface managementMarc Zyngier2-1/+266
2012-08-26ARM: KVM: VGIC distributor handlingMarc Zyngier2-4/+641
2012-08-26ARM: KVM: Initial VGIC MMIO support codeMarc Zyngier4-8/+154
2012-08-26ARM: KVM: Initial VGIC infrastructure supportMarc Zyngier7-3/+140
2012-08-26ARM: KVM: Keep track of currently running vcpusMarc Zyngier2-0/+34
2012-08-26ARM: KVM: Only kick a vcpu if it is actually in guest modeMarc Zyngier1-1/+1
2012-08-23ARM: KVM: use kvm_skip_instr() instead of open-coded versionsMarc Zyngier4-11/+4
2012-08-23ARM: KVM: convert host VFP state allocation to alloc_percpu()Marc Zyngier1-14/+12
2012-08-23ARM: KVM: don't let set_hdcr corrupt the result of set_hcptrMarc Zyngier1-1/+1
2012-08-23KVM: ARM: Clarify comment on handle_exit.Rusty Russell1-2/+2
2012-08-23fixup! KVM: ARM: Memory virtualization setupChristoffer Dall1-0/+1
2012-08-19KVM: ARM: A single hva can map multiple gpasChristoffer Dall1-23/+37
2012-08-16ARM: KVM: Don't corrupt USR registers with kvm_arch_vcpu_ioctl_{gs}et_regsMarc Zyngier1-4/+4
2012-08-16ARM: KVM: Clear excusive monitor on world switchMarc Zyngier1-0/+2
2012-08-16KVM: ARM: Guest wait-for-interrupts (WFI) supportChristoffer Dall3-3/+36
2012-08-16KVM: ARM: Handle I/O abortsChristoffer Dall7-2/+466
2012-08-16KVM: ARM: Handle guest faults in KVMChristoffer Dall3-1/+112
2012-08-16KVM: ARM: User space API for getting/setting co-proc registersChristoffer Dall6-3/+506
2012-08-16KVM: ARM: Emulation framework and CP15 emulationChristoffer Dall8-2/+910
2012-08-16KVM: ARM: World-switch implementationChristoffer Dall5-3/+967
2012-08-16KVM: ARM: Inject IRQs and FIQs from userspaceChristoffer Dall5-4/+66
2012-08-16KVM: ARM: Memory virtualization setupChristoffer Dall11-1/+465
2012-08-16KVM: ARM: Hypervisor inititalizationChristoffer Dall12-0/+788
2012-08-15KVM: ARM: Initial skeleton to compile KVM supportChristoffer Dall21-0/+1331
2012-08-15ARM: Expose PMNC bitfields for KVM useRusty Russell2-50/+57
2012-08-15ARM: Section based HYP idmapChristoffer Dall4-13/+89
2012-08-15ARM: Add config option ARM_VIRT_EXTChristoffer Dall1-0/+10
2012-08-15ARM: add mem_type prot_pte accessorMarc Zyngier2-0/+7
2012-08-13KVM: VMX: Advertize RDTSC exiting to nested guestsAvi Kivity1-1/+1
2012-08-13KVM: VMX: restore MSR_IA32_DEBUGCTLMSR after VMEXITGleb Natapov1-0/+6
2012-08-13KVM: Add ppc hypercall documentationAlexander Graf1-0/+22
2012-08-13KVM: Correct vmrun to vmcall typoRaghavendra K T1-1/+1
2012-08-13KVM: Add documentation on hypercallsRaghavendra K T1-0/+66
2012-08-13KVM: x86: fix pvclock guest stopped flag reportingMarcelo Tosatti2-3/+12
2012-08-09KVM: correctly detect APIC SW state in kvm_apic_post_state_restore()Gleb Natapov3-5/+8
2012-08-06KVM: inline kvm_apic_present() and kvm_lapic_enabled()Gleb Natapov2-92/+96
2012-08-06KVM: use jump label to optimize checking for in kernel local apic presenceGleb Natapov3-29/+41
2012-08-06KVM: use jump label to optimize checking for SW enabled apic in spurious inte...Gleb Natapov1-8/+31
2012-08-06KVM: use jump label to optimize checking for HW enabled APIC in APIC_BASE MSRGleb Natapov3-1/+30
2012-08-06jump_label: Export jump_label_rate_limit()Gleb Natapov1-0/+1
2012-08-06KVM: mark apic enabled on start upGleb Natapov1-1/+2
2012-08-06KVM: use kvm_lapic_set_base() to change apic_baseGleb Natapov1-5/+4
2012-08-06KVM: clean up kvm_(set|get)_apic_baseGleb Natapov1-8/+2
2012-08-06KVM: let the error pfn not depend on error codeXiao Guangrong1-9/+15
2012-08-06KVM: do not release the error pageXiao Guangrong8-19/+12
2012-08-06KVM: do not release the error pfnXiao Guangrong6-21/+14
2012-08-06KVM: introduce KVM_ERR_PTR_BAD_PAGEXiao Guangrong3-15/+9
2012-08-06KVM: remove the unused declareXiao Guangrong1-2/+0
2012-08-06KVM: inline is_*_pfn functionsXiao Guangrong2-21/+16
2012-08-06KVM: introduce KVM_PFN_ERR_BADXiao Guangrong2-6/+2
2012-08-06KVM: introduce KVM_PFN_ERR_HWPOISONXiao Guangrong3-14/+3
2012-08-06KVM: introduce KVM_PFN_ERR_FAULTXiao Guangrong3-11/+6
2012-08-06KVM: iommu: fix releasing unmapped pageXiao Guangrong1-0/+7
2012-08-06KVM: Push rmap into kvm_arch_memory_slotTakuya Yoshikawa9-44/+49
2012-08-06KVM: MMU: Use gfn_to_rmap() instead of directly reading rmap arrayTakuya Yoshikawa2-4/+3
2012-08-06KVM: Stop checking rmap to see if slot is being createdTakuya Yoshikawa1-2/+2
2012-08-05Merge remote-tracking branch 'upstream' into nextAvi Kivity3732-91327/+279740
2012-08-04Merge branch 'for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds31-194/+38
2012-08-04missed mnt_drop_write() in do_dentry_open()Al Viro1-1/+1
2012-08-04UBIFS: nuke pdflush from commentsArtem Bityutskiy2-6/+6
2012-08-04gfs2: nuke pdflush from commentsArtem Bityutskiy1-1/+1
2012-08-04drbd: nuke pdflush from commentsArtem Bityutskiy1-2/+2
2012-08-04nilfs2: nuke write_super from commentsArtem Bityutskiy2-6/+0
2012-08-04hfs: nuke write_super from commentsArtem Bityutskiy1-2/+2
2012-08-04vfs: nuke pdflush from commentsArtem Bityutskiy2-2/+1
2012-08-04jbd/jbd2: nuke write_super from commentsArtem Bityutskiy2-4/+4
2012-08-04btrfs: nuke pdflush from commentsArtem Bityutskiy2-2/+3
2012-08-04btrfs: nuke write_super from commentsArtem Bityutskiy2-8/+0
2012-08-04ext4: nuke pdflush from commentsArtem Bityutskiy1-1/+1
2012-08-04ext4: nuke write_super from commentsArtem Bityutskiy2-19/+0
2012-08-04ext3: nuke write_super from commentsArtem Bityutskiy2-19/+0
2012-08-04Documentation: fix the VM knobs descritpion WRT pdflushArtem Bityutskiy2-13/+13
2012-08-04Documentation: get rid of write_superArtem Bityutskiy4-11/+4
2012-08-04vfs: kill write_super and sync_supersArtem Bityutskiy5-97/+0
2012-08-03Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/...Linus Torvalds18-146/+73
2012-08-03Merge branch 'for-linus' of git://git.open-osd.org/linux-open-osdLinus Torvalds3-27/+25
2012-08-03Merge git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds3-7/+34
2012-08-03Merge tag 'sound-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/...Linus Torvalds19-13/+65
2012-08-03KVM: x86: update KVM_SAVE_MSRS_BEGIN to correct valueGleb Natapov1-1/+1
2012-08-03Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds1-7/+10
2012-08-03Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds9-17/+58
2012-08-03Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds5-184/+227
2012-08-03Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds5-24/+22
2012-08-03Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds17-32/+175
2012-08-03Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds2-1/+15
2012-08-03Merge tag 'for_linux-3.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds5-28/+6
2012-08-03Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gee...Linus Torvalds66-842/+100
2012-08-03Merge branches 'delete-gts-bfs', 'misc', 'novell-bugzilla-757888-numa' and 'o...Len Brown7366-189610/+452431
2012-08-03ACPI processor: Fix tick_broadcast_mask online/offline regressionFeng Tang1-1/+1
2012-08-03ACPI: Only count valid srat memory structuresThomas Renninger4-13/+17
2012-08-03ACPI: Untangle a return statement for better readabilityThomas Renninger1-2/+4
2012-08-02Linux 3.6-rc1Linus Torvalds1-2/+2
2012-08-03m68k: Make sys_atomic_cmpxchg_32 work on classic m68kAndreas Schwab1-2/+6
2012-08-02Merge branch 'for-linus-3.6' of git://dev.laptop.org/users/dilinger/linux-olpcLinus Torvalds13-164/+451
2012-08-02Merge tag 'dt2' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-socLinus Torvalds43-569/+1387
2012-08-02Merge tag 'pm2' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-socLinus Torvalds3-47/+103
2012-08-02Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds4-4/+6
2012-08-02Merge tag 'sh-for-linus' of git://github.com/pmundt/linux-shLinus Torvalds29-47/+419
2012-08-02Merge tag 'md-3.6' of git://neil.brown.name/mdLinus Torvalds5-22/+150
2012-08-02Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sag...Linus Torvalds5-67/+43
2012-08-02Merge tag 'ecryptfs-3.6-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kern...Linus Torvalds7-316/+158
2012-08-02Merge branch 'for-next' of git://git.samba.org/sfrench/cifs-2.6Linus Torvalds8-158/+270
2012-08-02mm: remove node_start_pfn checking in new WARN_ON for nowLinus Torvalds1-1/+1
2012-08-02ARM: mmp: add missing irqs.hHaojian Zhuang1-0/+1
2012-08-02arm: mvebu: fix typo in .dtsi comment for Armada XP SoCsThomas Petazzoni1-1/+1
2012-08-02ARM: PRIMA2: delete redundant codes to restore LATCHED when timer resumesBarry Song1-3/+3
2012-08-02libceph: fix crypto key null deref, memory leakSylvain Munaut2-1/+3
2012-08-02Merge tag 'asoc-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...Takashi Iwai18-13/+64
2012-08-02ceph: simplify+fix atomic_openSage Weil3-66/+40
2012-08-02ore: Fix out-of-bounds access in _ios_obj()Boaz Harrosh1-7/+7
2012-08-02exofs: Use proper max_IO calculations from oreBoaz Harrosh1-6/+4
2012-08-02exofs: Fix __r4w_get_page when offset is beyond i_sizeBoaz Harrosh1-3/+12
2012-08-02exofs: stop using s_dirtArtem Bityutskiy1-11/+0
2012-08-02exofs: readpage_strip: Add a BUG_ON to check for PageLocked(page)Kautuk Consul1-0/+2
2012-08-02ASoC: core: Fix check before defaulting to regmapMark Brown1-1/+1
2012-08-02ALSA: hda - Support dock on Lenovo Thinkpad T530 with ALC269VCTakashi Iwai1-0/+1
2012-08-02sh: explicitly include sh_dma.h in setup-sh7722.cGuennadi Liakhovetski1-0/+1
2012-08-01Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linusLinus Torvalds14-72/+108
2012-08-01Merge branch 'for-linus-3.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds23-302/+206
2012-08-01Merge branch 'dmaengine' of git://git.linaro.org/people/rmk/linux-armLinus Torvalds28-1415/+2124
2012-08-01Merge branch 'audit' of git://git.linaro.org/people/rmk/linux-armLinus Torvalds5-85/+58
2012-08-01Merge branch 'fixes' of git://git.linaro.org/people/rmk/linux-armLinus Torvalds13-194/+139
2012-08-01KVM: VMX: Fix ds/es corruption on i386 with preemptionAvi Kivity1-7/+13
2012-08-01x86-64, kcmp: The kcmp system call can be commonH. Peter Anvin1-1/+1
2012-08-02um: Add arch/x86/um to MAINTAINERSRichard Weinberger1-0/+1
2012-08-02um: pass siginfo to guest processMartin Pärtel10-34/+71
2012-08-02um: fix ubd_file_size for read-only filesMartin Pärtel1-1/+1
2012-08-02md/dm-raid: DM_RAID should select MD_RAID10NeilBrown1-2/+3
2012-08-02md/raid1: submit IO from originating thread instead of md thread.NeilBrown2-4/+55
2012-08-02raid5: raid5d handle stripe in batch wayShaohua Li1-13/+32
2012-08-02raid5: make_request use batch stripe releaseShaohua Li2-3/+60
2012-08-02um: pull interrupt_end() into userspace()Al Viro2-8/+6
2012-08-02um: split syscall_trace(), pass pt_regs to itAl Viro3-43/+34
2012-08-01um: switch UPT_SET_RETURN_VALUE and regs_return_value to pt_regsAl Viro3-5/+5
2012-08-01KVM: x86: apply kvmclock offset to guest wall clock timeBruce Rogers1-0/+4
2012-08-01Merge tag 'fbdev-updates-for-3.6' of git://github.com/schandinat/linux-2.6Linus Torvalds55-1138/+2621
2012-08-01Merge tag 'sound-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/...Linus Torvalds9-24/+85
2012-08-01Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds84-639/+1326
2012-08-01MIPS: Loongson 2: Sort out clock managment.Ralf Baechle7-51/+33
2012-08-01Merge branch 'for-3.6/drivers' of git://git.kernel.dk/linux-blockLinus Torvalds19-177/+238
2012-08-01Merge branch 'for-3.6/core' of git://git.kernel.dk/linux-blockLinus Torvalds21-301/+530
2012-08-01Merge branch 'for-next' of git://neil.brown.name/mdLinus Torvalds9-219/+426
2012-08-01locks: remove unused lm_release_privateJ. Bruce Fields3-8/+1
2012-08-01MIPS: Loongson 1: more clk support and add select HAVE_CLKYoichi Yuasa2-0/+17
2012-08-01MIPS: txx9: Fix redefinition of clk_* by adding select HAVE_CLKYoichi Yuasa1-0/+1
2012-08-01MIPS: BCM63xx: Fix redefinition of clk_* by adding select HAVE_CLKYoichi Yuasa1-0/+1
2012-08-01MIPS: AR7: Fix redefinition of clk_* by adding select HAVE_CLKYoichi Yuasa1-0/+1
2012-08-01MIPS: Lantiq: Platform specific CLK fixupJohn Crispin1-0/+5
2012-08-01MIPS: Lantiq: Add device_tree_init functionJohn Crispin1-0/+22
2012-08-01MIPS: Lantiq: Fix interface clock and PCI control register offsetJohn Crispin1-21/+28
2012-08-01delousing target_core_file a bitAl Viro1-27/+5
2012-08-01DM RAID: Add support for MD RAID10Jonathan Brassow2-5/+116
2012-08-01Merge commit 'c039c332f23e794deb6d6f37b9f07ff3b27fb2cf' into mdNeilBrown4433-104467/+180036
2012-08-01block: remove dead func declarationYuanhan Liu1-1/+0
2012-08-01block: add partition resize function to blkpg ioctlVivek Goyal5-9/+132