All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiri Slaby <jslaby@suse.cz>
To: stable@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
	James Hogan <james.hogan@imgtec.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Ralf Baechle <ralf@linux-mips.org>,
	Sanjay Lal <sanjayl@kymasys.com>, Gleb Natapov <gleb@kernel.org>,
	kvm@vger.kernel.org, linux-mips@linux-mips.org,
	Jiri Slaby <jslaby@suse.cz>
Subject: [PATCH 3.12 048/175] KVM: MIPS: Don't leak FPU/DSP to guest
Date: Tue, 17 Mar 2015 09:40:26 +0100	[thread overview]
Message-ID: <48f80a96dd46107d0612605bfc0d6038d7f25e47.1426581621.git.jslaby@suse.cz> (raw)
In-Reply-To: <a48f1a6bfc3ee997dfd719eaecb44a05477b93e2.1426581620.git.jslaby@suse.cz>
In-Reply-To: <cover.1426581620.git.jslaby@suse.cz>

From: James Hogan <james.hogan@imgtec.com>

3.12-stable review patch.  If anyone has any objections, please let me know.

===============

[ Upstream commit f798217dfd038af981a18bbe4bc57027a08bb182 ]

The FPU and DSP are enabled via the CP0 Status CU1 and MX bits by
kvm_mips_set_c0_status() on a guest exit, presumably in case there is
active state that needs saving if pre-emption occurs. However neither of
these bits are cleared again when returning to the guest.

This effectively gives the guest access to the FPU/DSP hardware after
the first guest exit even though it is not aware of its presence,
allowing FP instructions in guest user code to intermittently actually
execute instead of trapping into the guest OS for emulation. It will
then read & manipulate the hardware FP registers which technically
belong to the user process (e.g. QEMU), or are stale from another user
process. It can also crash the guest OS by causing an FP exception, for
which a guest exception handler won't have been registered.

First lets save and disable the FPU (and MSA) state with lose_fpu(1)
before entering the guest. This simplifies the problem, especially for
when guest FPU/MSA support is added in the future, and prevents FR=1 FPU
state being live when the FR bit gets cleared for the guest, which
according to the architecture causes the contents of the FPU and vector
registers to become UNPREDICTABLE.

We can then safely remove the enabling of the FPU in
kvm_mips_set_c0_status(), since there should never be any active FPU or
MSA state to save at pre-emption, which should plug the FPU leak.

DSP state is always live rather than being lazily restored, so for that
it is simpler to just clear the MX bit again when re-entering the guest.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Sanjay Lal <sanjayl@kymasys.com>
Cc: Gleb Natapov <gleb@kernel.org>
Cc: kvm@vger.kernel.org
Cc: linux-mips@linux-mips.org
Cc: <stable@vger.kernel.org> # v3.10+: 044f0f03eca0: MIPS: KVM: Deliver guest interrupts
Cc: <stable@vger.kernel.org> # v3.10+: 3ce465e04bfd: MIPS: Export FP functions used by lose_fpu(1) for KVM
Cc: <stable@vger.kernel.org> # v3.10+
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
---
 arch/mips/kvm/kvm_locore.S | 2 +-
 arch/mips/kvm/kvm_mips.c   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/mips/kvm/kvm_locore.S b/arch/mips/kvm/kvm_locore.S
index bbace092ad0a..03a2db58b22d 100644
--- a/arch/mips/kvm/kvm_locore.S
+++ b/arch/mips/kvm/kvm_locore.S
@@ -428,7 +428,7 @@ __kvm_mips_return_to_guest:
 	/* Setup status register for running guest in UM */
 	.set	at
 	or	v1, v1, (ST0_EXL | KSU_USER | ST0_IE)
-	and	v1, v1, ~ST0_CU0
+	and	v1, v1, ~(ST0_CU0 | ST0_MX)
 	.set	noat
 	mtc0	v1, CP0_STATUS
 	ehb
diff --git a/arch/mips/kvm/kvm_mips.c b/arch/mips/kvm/kvm_mips.c
index 016f163b42da..2cb24788a8a6 100644
--- a/arch/mips/kvm/kvm_mips.c
+++ b/arch/mips/kvm/kvm_mips.c
@@ -15,6 +15,7 @@
 #include <linux/vmalloc.h>
 #include <linux/fs.h>
 #include <linux/bootmem.h>
+#include <asm/fpu.h>
 #include <asm/page.h>
 #include <asm/cacheflush.h>
 #include <asm/mmu_context.h>
@@ -417,6 +418,8 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
 		vcpu->mmio_needed = 0;
 	}
 
+	lose_fpu(1);
+
 	local_irq_disable();
 	/* Check if we have any exceptions/interrupts pending */
 	kvm_mips_deliver_interrupts(vcpu,
@@ -1021,9 +1024,6 @@ void kvm_mips_set_c0_status(void)
 {
 	uint32_t status = read_c0_status();
 
-	if (cpu_has_fpu)
-		status |= (ST0_CU1);
-
 	if (cpu_has_dsp)
 		status |= (ST0_MX);
 
-- 
2.3.0


  parent reply	other threads:[~2015-03-17  9:12 UTC|newest]

Thread overview: 179+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-17  8:41 [PATCH 3.12 000/175] 3.12.39-stable review Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 001/175] xfs: ensure buffer types are set correctly Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 002/175] xfs: inode unlink does not set AGI buffer type Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 003/175] xfs: set superblock buffer type correctly Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 004/175] fsnotify: fix handling of renames in audit Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 005/175] iwlwifi: pcie: disable the SCD_BASE_ADDR when we resume from WoWLAN Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 006/175] iwlwifi: mvm: validate tid and sta_id in ba_notif Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 007/175] iwlwifi: mvm: always use mac color zero Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 008/175] HID: i2c-hid: Limit reads to wMaxInputLength bytes for input events Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 009/175] PCI: Generate uppercase hex for modalias var in uevent Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 010/175] PCI: Fix infinite loop with ROM image of size 0 Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 011/175] cpufreq: speedstep-smi: enable interrupts when waiting Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 012/175] cpufreq: s3c: remove incorrect __init annotations Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 013/175] xen/manage: Fix USB interaction issues when resuming Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 014/175] lmedm04: Fix usb_submit_urb BOGUS urb xfer, pipe 1 != type 3 in interrupt urb Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 015/175] ALSA: off by one bug in snd_riptide_joystick_probe() Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 016/175] ALSA: hdspm - Constrain periods to 2 on older cards Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 017/175] power_supply: 88pm860x: Fix leaked power supply on probe fail Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 018/175] power: bq24190: Fix ignored supplicants Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 019/175] megaraid_sas: disable interrupt_mask before enabling hardware interrupts Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 020/175] mmc: sdhci-pxav3: fix setting of pdata->clk_delay_cycles Jiri Slaby
2015-03-17  8:39 ` [PATCH 3.12 021/175] nfs: don't call blocking operations while !TASK_RUNNING Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 022/175] MIPS: KVM: Deliver guest interrupts after local_irq_disable() Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 023/175] mm/hugetlb: pmd_huge() returns true for non-present hugepage Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 024/175] tracing: Fix unmapping loop in tracing_mark_write Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 025/175] ARM: 8284/1: sa1100: clear RCSR_SMR on resume Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 026/175] ARM: DRA7: hwmod: Fix boot crash with DEBUG_LL enabled on UART3 Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 027/175] ARM: dts: am335x-bone*: usb0 is hardwired for peripheral Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 028/175] tpm_tis: verify interrupt during init Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 029/175] TPM: Add new TPMs to the tail of the list to prevent inadvertent change of dev Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 030/175] tpm: Fix NULL return in tpm_ibmvtpm_get_desired_dma Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 031/175] tpm/tpm_i2c_stm_st33: Fix potential bug in tpm_stm_i2c_send Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 032/175] Added Little Endian support to vtpm module Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 033/175] NFSv4.1: Fix a kfree() of uninitialised pointers in decode_cb_sequence_args Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 034/175] iscsi-target: Drop problematic active_ts_list usage Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 035/175] cfq-iosched: handle failure of cfq group allocation Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 036/175] cfq-iosched: fix incorrect filing of rt async cfqq Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 037/175] axonram: Fix bug in direct_access Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 038/175] tty: Prevent untrappable signals from malicious program Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 039/175] tty/serial: at91: fix error handling in atmel_serial_probe() Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 040/175] USB: cp210x: add ID for RUGGEDCOM USB Serial Console Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 041/175] USB: fix use-after-free bug in usb_hcd_unlink_urb() Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 042/175] usb: core: buffer: smallest buffer should start at ARCH_DMA_MINALIGN Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 043/175] vt: provide notifications on selection changes Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 044/175] ARM: pxa: add regulator_has_full_constraints to corgi board file Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 045/175] ARM: pxa: add regulator_has_full_constraints to poodle " Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 046/175] kdb: fix incorrect counts in KDB summary command output Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 047/175] ARC: fix page address calculation if PAGE_OFFSET != LINUX_LINK_BASE Jiri Slaby
2015-03-17  8:40 ` Jiri Slaby [this message]
2015-03-17  8:40 ` [PATCH 3.12 049/175] Bluetooth: Add support for Acer [0489:e078] Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 050/175] libceph: assert both regular and lingering lists in __remove_osd() Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 051/175] libceph: change from BUG to WARN for __remove_osd() asserts Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 052/175] libceph: fix double __remove_osd() problem Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 053/175] KVM: x86: update masterclock values on TSC writes Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 054/175] hx4700: regulator: declare full constraints Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 055/175] arm64: compat Fix siginfo_t -> compat_siginfo_t conversion on big endian Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 056/175] gpiolib: of: allow of_gpiochip_find_and_xlate to find more than one chip per node Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 057/175] gpio: tps65912: fix wrong container_of arguments Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 058/175] xfs: Fix quota type in quota structures when reusing quota file Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 059/175] metag: Fix KSTK_EIP() and KSTK_ESP() macros Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 060/175] md/raid5: Fix livelock when array is both resyncing and degraded Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 061/175] md/raid1: fix read balance when a drive is write-mostly Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 062/175] EDAC, amd64_edac: Prevent OOPS with >16 memory controllers Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 063/175] jffs2: fix handling of corrupted summary length Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 064/175] btrfs: set proper message level for skinny metadata Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 065/175] blk-throttle: check stats_cpu before reading it from sysfs Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 066/175] x86, mm/ASLR: Fix stack randomization on 64-bit systems Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 067/175] ath6kl: fix struct hif_scatter_req list handling Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 068/175] staging: comedi: cb_pcidas64: fix incorrect AI range code handling Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 069/175] USB: EHCI: adjust error return code Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 070/175] MIPS: Export FP functions used by lose_fpu(1) for KVM Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 071/175] ipvs: add missing ip_vs_pe_put in sync code Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 072/175] ipvs: rerouting to local clients is not needed anymore Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 073/175] netfilter: xt_socket: fix a stack corruption bug Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 074/175] pktgen: fix UDP checksum computation Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 075/175] rtnetlink: ifla_vf_policy: fix misuses of NLA_BINARY Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 076/175] ipv6: fix ipv6_cow_metrics for non DST_HOST case Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 077/175] rtnetlink: call ->dellink on failure when ->newlink exists Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 078/175] gen_stats.c: Duplicate xstats buffer for later use Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 079/175] ipv4: ip_check_defrag should correctly check return value of skb_copy_bits Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 080/175] ipv4: ip_check_defrag should not assume that skb_network_offset is zero Jiri Slaby
2015-03-17  8:40 ` [PATCH 3.12 081/175] net: phy: Fix verification of EEE support in phy_init_eee Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 082/175] ematch: Fix auto-loading of ematch modules Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 083/175] net: reject creation of netdev names with colons Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 084/175] team: fix possible null pointer dereference in team_handle_frame Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 085/175] net: compat: Ignore MSG_CMSG_COMPAT in compat_sys_{send, recv}msg Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 086/175] macvtap: make sure neighbour code can push ethernet header Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 087/175] usb: plusb: Add support for National Instruments host-to-host cable Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 088/175] udp: only allow UFO for packets from SOCK_DGRAM sockets Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 089/175] net: ping: Return EAFNOSUPPORT when appropriate Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 090/175] team: don't traverse port list using rcu in team_set_mac_address Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 091/175] mm/hugetlb: add migration/hwpoisoned entry check in hugetlb_change_protection Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 092/175] mm/hugetlb: add migration entry check in __unmap_hugepage_range Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 093/175] mm/mmap.c: fix arithmetic overflow in __vm_enough_memory() Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 094/175] mm/nommu.c: " Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 095/175] mm/compaction: fix wrong order check in compact_finished() Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 096/175] mm/memory.c: actually remap enough memory Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 097/175] drm/radeon: only enable kv/kb dpm interrupts once v3 Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 098/175] drm/radeon: workaround for CP HW bug on CIK Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 099/175] target: Fix PR_APTPL_BUF_LEN buffer size limitation Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 100/175] target: Add missing WRITE_SAME end-of-device sanity check Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 101/175] target: Check for LBA + sectors wrap-around in sbc_parse_cdb Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 102/175] x86/asm/entry/64: Remove a bogus 'ret_from_fork' optimization Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 103/175] iio: imu: adis16400: Fix sign extension Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 104/175] iio: ad5686: fix optional reference voltage declaration Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 105/175] mei: make device disabled on stop unconditionally Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 106/175] btrfs: fix lost return value due to variable shadowing Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 107/175] Btrfs: fix data loss in the fast fsync path Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 108/175] Btrfs:__add_inode_ref: out of bounds memory read when looking for extended ref Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 109/175] KVM: emulate: fix CMPXCHG8B on 32-bit hosts Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 110/175] KVM: MIPS: Fix trace event to save PC directly Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 111/175] USB: serial: cp210x: Adding Seletek device id's Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 112/175] USB: usbfs: don't leak kernel data in siginfo Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 113/175] USB: ftdi_sio: add PIDs for Actisense USB devices Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 114/175] usb: ftdi_sio: Add jtag quirk support for Cyber Cortex AV boards Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 115/175] usb: dwc3: dwc3-omap: Fix disable IRQ Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 116/175] xhci: Allocate correct amount of scratchpad buffers Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 117/175] xhci: fix reporting of 0-sized URBs in control endpoint Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 118/175] mac80211: Send EAPOL frames at lowest rate Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 119/175] net: irda: fix wait_until_sent poll timeout Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 120/175] USB: serial: fix infinite wait_until_sent timeout Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 121/175] TTY: fix tty_wait_until_sent on 64-bit machines Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 122/175] USB: serial: fix potential use-after-free after failed probe Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 123/175] USB: serial: fix tty-device error handling at probe Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 124/175] autofs4 copy_dev_ioctl(): keep the value of ->size we'd used for allocation Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 125/175] debugfs: leave freeing a symlink body until inode eviction Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 126/175] procfs: fix race between symlink removals and traversals Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 127/175] sunrpc: fix braino in ->poll() Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 128/175] ARC: Fix KSTK_ESP() Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 129/175] tty: fix up atime/mtime mess, take four Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 130/175] HID: apple: fix battery support for the 2009 ANSI wireless keyboard Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 131/175] HID: pidff: Fix initialisation forMicrosoft Sidewinder FF Pro 2 Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 132/175] HID: hid-microsoft: Add support for scrollwheel and special keypad keys Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 133/175] HID: add support for MS Surface Pro 3 Type Cover Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 134/175] HID: microsoft: add support for Japanese Surface Type Cover 3 Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 135/175] USB: serial: add Google simple serial SubClass support Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 136/175] usb: gadget: function: phonet: balance usb_ep_disable calls Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 137/175] usb: musb: core: add pm_runtime_irq_safe() Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 138/175] cdc-acm: Add support for Denso cradle CU-321 Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 139/175] x86: mm: move mmap_sem unlock from mm_fault_error() to caller Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 140/175] vm: add VM_FAULT_SIGSEGV handling support Jiri Slaby
2015-03-17  8:41 ` [PATCH 3.12 141/175] arc: mm: Fix build failure Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 142/175] vm: make stack guard page errors return VM_FAULT_SIGSEGV rather than SIGBUS Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 143/175] splice: Apply generic position and size checks to each write Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 144/175] ALSA: pcm: Don't leave PREPARED state after draining Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 145/175] ALSA: hda - Add pin configs for ASUS mobo with IDT 92HD73XX codec Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 146/175] sg: fix read() error reporting Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 147/175] IB/qib: Do not write EEPROM Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 148/175] xhci: no switching back on non-ULT Haswell Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 149/175] HID: microsoft: Add ID for NE7K wireless keyboard Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 150/175] HID: usbhid: fix PIXART optical mouse Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 151/175] HID: usbhid: add another mouse that needs QUIRK_ALWAYS_POLL Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 152/175] HID: usbhid: enable always-poll quirk for Elan Touchscreen 0103 Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 153/175] HID: yet another buggy ELAN touchscreen Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 154/175] mm: hwpoison: drop lru_add_drain_all() in __soft_offline_page() Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 155/175] mm/hugetlb: reduce arch dependent code around follow_huge_* Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 156/175] mm/hugetlb: take page table lock in follow_huge_pmd() Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 157/175] nilfs2: fix potential memory overrun on inode Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 158/175] ASoC: omap-pcm: Correct dma mask Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 159/175] fixed invalid assignment of 64bit mask to host dma_boundary for scatter gather segment boundary limit Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 160/175] clk: zynq: Force CPU_2X clock to be ungated Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 161/175] clk: sunxi: Support factor clocks with N factor starting not from 0 Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 162/175] sunxi: clk: Set sun6i-pll1 n_start = 1 Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 163/175] staging: comedi: comedi_compat32.c: fix COMEDI_CMD copy back Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 164/175] dm mirror: do not degrade the mirror on discard error Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 165/175] dm io: reject unsupported DISCARD requests with EOPNOTSUPP Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 166/175] dm: fix a race condition in dm_get_md Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 167/175] dm snapshot: fix a possible invalid memory access on unload Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 168/175] HID: input: fix confusion on conflicting mappings Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 169/175] HID: fixup the conflicting keyboard mappings quirk Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 170/175] drm/radeon: use drm_mode_vrefresh() rather than mode->vrefresh Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 171/175] drm/radeon: fix 1 RB harvest config setup for TN/RL Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 172/175] ACPI / video: Load the module even if ACPI is disabled Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 173/175] NFSv4: Don't call put_rpccred() under the rcu_read_lock() Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 174/175] ath5k: fix spontaneus AR5312 freezes Jiri Slaby
2015-03-17  8:42 ` [PATCH 3.12 175/175] clk-gate: fix bit # check in clk_register_gate() Jiri Slaby
2015-03-17 16:36 ` [PATCH 3.12 000/175] 3.12.39-stable review Guenter Roeck
2015-03-19 15:08   ` Jiri Slaby
2015-03-18 18:11 ` Shuah Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=48f80a96dd46107d0612605bfc0d6038d7f25e47.1426581621.git.jslaby@suse.cz \
    --to=jslaby@suse.cz \
    --cc=gleb@kernel.org \
    --cc=james.hogan@imgtec.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@linux-mips.org \
    --cc=pbonzini@redhat.com \
    --cc=ralf@linux-mips.org \
    --cc=sanjayl@kymasys.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.