From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Andrea Arcangeli <aarcange@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: [PATCH 4.0 010/148] kvm: fix crash in kvm_vcpu_reload_apic_access_page
Date: Wed, 3 Jun 2015 21:08:00 +0900 [thread overview]
Message-ID: <20150603114205.802248834@linuxfoundation.org> (raw)
In-Reply-To: <20150603114205.337615117@linuxfoundation.org>
4.0-stable review patch. If anyone has any objections, please let me know.
------------------
From: Andrea Arcangeli <aarcange@redhat.com>
commit e8fd5e9e9984675f45b9a5485909c143fbde248f upstream.
memslot->userfault_addr is set by the kernel with a mmap executed
from the kernel but the userland can still munmap it and lead to the
below oops after memslot->userfault_addr points to a host virtual
address that has no vma or mapping.
[ 327.538306] BUG: unable to handle kernel paging request at fffffffffffffffe
[ 327.538407] IP: [<ffffffff811a7b55>] put_page+0x5/0x50
[ 327.538474] PGD 1a01067 PUD 1a03067 PMD 0
[ 327.538529] Oops: 0000 [#1] SMP
[ 327.538574] Modules linked in: macvtap macvlan xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT iptable_filter ip_tables tun bridge stp llc rpcsec_gss_krb5 nfsv4 dns_resolver nfs fscache xprtrdma ib_isert iscsi_target_mod ib_iser libiscsi scsi_transport_iscsi ib_srpt target_core_mod ib_srp scsi_transport_srp scsi_tgt ib_ipoib rdma_ucm ib_ucm ib_uverbs ib_umad rdma_cm ib_cm iw_cm ipmi_devintf iTCO_wdt iTCO_vendor_support intel_powerclamp coretemp dcdbas intel_rapl kvm_intel kvm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel lrw gf128mul glue_helper ablk_helper cryptd pcspkr sb_edac edac_core ipmi_si ipmi_msghandler acpi_pad wmi acpi_power_meter lpc_ich mfd_core mei_me
[ 327.539488] mei shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc mlx4_ib ib_sa ib_mad ib_core mlx4_en vxlan ib_addr ip_tunnel xfs libcrc32c sd_mod crc_t10dif crct10dif_common crc32c_intel mgag200 syscopyarea sysfillrect sysimgblt i2c_algo_bit drm_kms_helper ttm drm ahci i2c_core libahci mlx4_core libata tg3 ptp pps_core megaraid_sas ntb dm_mirror dm_region_hash dm_log dm_mod
[ 327.539956] CPU: 3 PID: 3161 Comm: qemu-kvm Not tainted 3.10.0-240.el7.userfault19.4ca4011.x86_64.debug #1
[ 327.540045] Hardware name: Dell Inc. PowerEdge R420/0CN7CM, BIOS 2.1.2 01/20/2014
[ 327.540115] task: ffff8803280ccf00 ti: ffff880317c58000 task.ti: ffff880317c58000
[ 327.540184] RIP: 0010:[<ffffffff811a7b55>] [<ffffffff811a7b55>] put_page+0x5/0x50
[ 327.540261] RSP: 0018:ffff880317c5bcf8 EFLAGS: 00010246
[ 327.540313] RAX: 00057ffffffff000 RBX: ffff880616a20000 RCX: 0000000000000000
[ 327.540379] RDX: 0000000000002014 RSI: 00057ffffffff000 RDI: fffffffffffffffe
[ 327.540445] RBP: ffff880317c5bd10 R08: 0000000000000103 R09: 0000000000000000
[ 327.540511] R10: 0000000000000000 R11: 0000000000000000 R12: fffffffffffffffe
[ 327.540576] R13: 0000000000000000 R14: ffff880317c5bd70 R15: ffff880317c5bd50
[ 327.540643] FS: 00007fd230b7f700(0000) GS:ffff880630800000(0000) knlGS:0000000000000000
[ 327.540717] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 327.540771] CR2: fffffffffffffffe CR3: 000000062a2c3000 CR4: 00000000000427e0
[ 327.540837] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[ 327.540904] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
[ 327.540974] Stack:
[ 327.541008] ffffffffa05d6d0c ffff880616a20000 0000000000000000 ffff880317c5bdc0
[ 327.541093] ffffffffa05ddaa2 0000000000000000 00000000002191bf 00000042f3feab2d
[ 327.541177] 00000042f3feab2d 0000000000000002 0000000000000001 0321000000000000
[ 327.541261] Call Trace:
[ 327.541321] [<ffffffffa05d6d0c>] ? kvm_vcpu_reload_apic_access_page+0x6c/0x80 [kvm]
[ 327.543615] [<ffffffffa05ddaa2>] vcpu_enter_guest+0x3f2/0x10f0 [kvm]
[ 327.545918] [<ffffffffa05e2f10>] kvm_arch_vcpu_ioctl_run+0x2b0/0x5a0 [kvm]
[ 327.548211] [<ffffffffa05e2d02>] ? kvm_arch_vcpu_ioctl_run+0xa2/0x5a0 [kvm]
[ 327.550500] [<ffffffffa05ca845>] kvm_vcpu_ioctl+0x2b5/0x680 [kvm]
[ 327.552768] [<ffffffff810b8d12>] ? creds_are_invalid.part.1+0x12/0x50
[ 327.555069] [<ffffffff810b8d71>] ? creds_are_invalid+0x21/0x30
[ 327.557373] [<ffffffff812d6066>] ? inode_has_perm.isra.49.constprop.65+0x26/0x80
[ 327.559663] [<ffffffff8122d985>] do_vfs_ioctl+0x305/0x530
[ 327.561917] [<ffffffff8122dc51>] SyS_ioctl+0xa1/0xc0
[ 327.564185] [<ffffffff816de829>] system_call_fastpath+0x16/0x1b
[ 327.566480] Code: 0b 31 f6 4c 89 e7 e8 4b 7f ff ff 0f 0b e8 24 fd ff ff e9 a9 fd ff ff 66 66 66 66 66 66 2e 0f 1f 84 00 00 00 00 00 66 66 66 66 90 <48> f7 07 00 c0 00 00 55 48 89 e5 75 2a 8b 47 1c 85 c0 74 1e f0
Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/x86/kvm/x86.c | 2 ++
1 file changed, 2 insertions(+)
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -6141,6 +6141,8 @@ void kvm_vcpu_reload_apic_access_page(st
return;
page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
+ if (is_error_page(page))
+ return;
kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
/*
next prev parent reply other threads:[~2015-06-03 12:16 UTC|newest]
Thread overview: 148+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-03 12:07 [PATCH 4.0 000/148] 4.0.5-stable review Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 001/148] mnt: Fail collect_mounts when applied to unmounted mounts Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 002/148] fs_pin: Allow for the possibility that m_list or s_list go unused Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 003/148] iommu/amd: Fix bug in put_pasid_state_wait Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 004/148] iommu/arm-smmu: Fix sign-extension of upstream bus addresses at stage 1 Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 005/148] Revert "KVM: x86: drop fpu_activate hook" Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 006/148] x86/mce: Fix MCE severity messages Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 007/148] x86/fpu: Disable XSAVES* support for now Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 008/148] KVM: MMU: fix CR4.SMEP=1, CR0.WP=0 with shadow pages Greg Kroah-Hartman
2015-06-03 12:07 ` [PATCH 4.0 009/148] KVM: MMU: fix smap permission check Greg Kroah-Hartman
2015-06-03 12:08 ` Greg Kroah-Hartman [this message]
2015-06-03 12:08 ` [PATCH 4.0 011/148] KVM: MMU: fix SMAP virtualization Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 012/148] kvm/fpu: Enable eager restore kvm FPU for MPX Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 013/148] ktime: Fix ktime_divns to do signed division Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 014/148] fs, omfs: add NULL terminator in the end up the token list Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 015/148] omfs: fix sign confusion for bitmap loop counter Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 016/148] xfs: xfs_attr_inactive leaves inconsistent attr fork state behind Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 017/148] xfs: xfs_iozero can return positive errno Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 018/148] lguest: fix out-by-one error in address checking Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 019/148] ovl: dont remove non-empty opaque directory Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 020/148] ovl: mount read-only if workdir cant be created Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 021/148] mfd: da9052: Fix broken regulator probe Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 022/148] libceph: request a new osdmap if lingering request maps to no osd Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 023/148] Revert "libceph: clear r_req_lru_item in __unregister_linger_request()" Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 024/148] Btrfs: fix racy system chunk allocation when setting block group ro Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 025/148] xen/events: dont bind non-percpu VIRQs with percpu chip Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 026/148] hwmon: (ntc_thermistor) Ensure iio channel is of type IIO_VOLTAGE Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 027/148] iio/axp288_adc: add missing channel info mask Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 028/148] iio:st_sensors: Fix oops when probing SPI devices Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 029/148] iio: light: hid-sensor-prox: Fix modifier Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 030/148] iio: pressure: hid-sensor-press: " Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 031/148] iio: adc: spmi-vadc: Fix overflow in output value normalization Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 032/148] iio: adc: cc10001: Fix the channel number mapping Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 033/148] iio: adc: cc10001: Fix incorrect use of power-up/power-down register Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 034/148] iio: adc: cc10001: Add delay before setting START bit Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 035/148] iio: adc: cc10001: Fix regulator_get_voltage() return value check Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 036/148] iio: adc: xilinx: Fix register addresses Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 037/148] iio: adc: xilinx: Fix "vccaux" channel .address Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 038/148] iio: adc: xilinx: Fix VREFP scale Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 039/148] iio: adc: xilinx: Fix VREFN sign Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 040/148] hwmon: (tmp401) Do not auto-detect chip on I2C address 0x37 Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 041/148] hwmon: (nct6775) Add missing sysfs attribute initialization Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 042/148] hwmon: (nct6683) " Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 043/148] clk: exynos5420: Restore GATE_BUS_TOP on suspend Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 044/148] clk: add missing lock when call clk_core_enable in clk_set_parent Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 045/148] brcmfmac: avoid null pointer access when brcmf_msgbuf_get_pktid() fails Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 046/148] lib: Fix strnlen_user() to not touch memory after specified maximum Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 047/148] d_walk() might skip too much Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 048/148] module: Call module notifier on failure after complete_formation() Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 049/148] ALSA: usb-audio: Add quirk for MS LifeCam Studio Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 050/148] ALSA: hda - Add Conexant codecs CX20721, CX20722, CX20723 and CX20724 Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 051/148] ALSA: hda - Add headphone quirk for Lifebook E752 Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 052/148] ALSA: hda - Add headset mic quirk for Dell Inspiron 5548 Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 053/148] ALSA: hda/realtek - ALC292 dock fix for Thinkpad L450 Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 054/148] ALSA: usb-audio: Add quirk for MS LifeCam HD-3000 Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 056/148] ALSA: hda - Fix noise on AMD radeon 290x controller Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 057/148] ASoC: mc13783: Fix wrong mask value used in mc13xxx_reg_rmw() calls Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 058/148] ASoC: uda1380: Avoid accessing i2c bus when codec is disabled Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 059/148] ASoC: dapm: Modify widget stream name according to prefix Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 060/148] ASoC: wm8960: fix "RINPUT3" audio route error Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 061/148] ASoC: wm8994: correct BCLK DIV 348 to 384 Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 062/148] RDMA/core: Fix for parsing netlink string attribute Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 064/148] staging: vt6656: use ieee80211_tx_info to select packet type Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 065/148] staging: vt6655: device_free_tx_buf use only ieee80211_tx_status_irqsafe Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 066/148] staging: vt6655: implement IEEE80211_TX_STAT_NOACK_TRANSMITTED Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 067/148] staging: vt6655: Fix 80211 control and management status reporting Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 068/148] staging: vt6655: vnt_tx_packet Correct TX order of OWNED_BY_NIC Greg Kroah-Hartman
2015-06-03 12:08 ` [PATCH 4.0 069/148] staging: vt6655: lock MACvWriteBSSIDAddress Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 070/148] perf/x86/rapl: Enable Broadwell-U RAPL support Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 071/148] target/pscsi: Dont leak scsi_host if hba is VIRTUAL_HOST Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 072/148] xhci: fix isoc endpoint dequeue from advancing too far on transaction error Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 073/148] xhci: Solve full event ring by increasing TRBS_PER_SEGMENT to 256 Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 074/148] xhci: gracefully handle xhci_irq dead device Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 075/148] USB: visor: Match I330 phone more precisely Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 076/148] USB: pl2303: Remove support for Samsung I330 Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 077/148] USB: cp210x: add ID for KCF Technologies PRN device Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 078/148] usb-storage: Add NO_WP_DETECT quirk for Lacie 059f:0651 devices Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 079/148] usb: gadget: configfs: Fix interfaces array NULL-termination Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 080/148] powerpc/mce: fix off by one errors in mce event handling Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 081/148] powerpc: Align TOC to 256 bytes Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 082/148] mmc: atmel-mci: fix bad variable type for clkdiv Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 083/148] tty/n_gsm.c: fix a memory leak when gsmtty is removed Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 084/148] pty: Fix input race when closing Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 085/148] ext4: fix lazytime optimization Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 086/148] ext4: fix NULL pointer dereference when journal restart fails Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 087/148] ext4: check for zero length extent explicitly Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 088/148] jbd2: fix r_count overflows leading to buffer overflow in journal recovery Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 089/148] ahci: avoton port-disable reset-quirk Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 090/148] libata: Add helper to determine when PHY events should be ignored Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 091/148] libata: Ignore spurious PHY event on LPM policy change Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 093/148] arm64: bpf: fix signedness bug in loading 64-bit immediate Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 094/148] rt2x00: add new rt2800usb device DWA 130 Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 095/148] ARM: 8325/1: exynos: move resume code to .text section Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 096/148] gpio: gpio-kempld: Fix get_direction return value Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 097/148] crypto: s390/ghash - Fix incorrect ghash icv buffer handling Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 098/148] mac80211: move WEP tailroom size check Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 099/148] mac80211: dont use napi_gro_receive() outside NAPI context Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 100/148] s390/mm: correct return value of pmd_pfn Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 101/148] sched: Handle priority boosted tasks proper in setscheduler() Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 102/148] sched: always use blk_schedule_flush_plug in io_schedule_out Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 103/148] ARM: 8356/1: mm: handle non-pmd-aligned end of RAM Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 104/148] ARM: EXYNOS: Fix dereference of ERR_PTR returned by of_genpd_get_from_provider Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 106/148] ARM: dts: fix imx27 dtb build rule Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 107/148] ARM: dts: set display clock correctly for exynos4412-trats2 Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 108/148] ARM: fix missing syscall trace exit Greg Kroah-Hartman
2015-06-03 20:07 ` Josh Stone
2015-06-03 12:09 ` [PATCH 4.0 109/148] parisc,metag: Fix crashes due to stack randomization on stack-grows-upwards architectures Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 110/148] gfp: add __GFP_NOACCOUNT Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 111/148] kernfs: do not account ino_ida allocations to memcg Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 112/148] tools/vm: fix page-flags build Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 113/148] mm, numa: really disable NUMA balancing by default on single node machines Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 114/148] nfsd/blocklayout: pretend we can send deviceid notifications Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 115/148] nfsd: fix the check for confirmed openowner in nfs4_preprocess_stateid_op Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 116/148] svcrpc: fix potential GSSX_ACCEPT_SEC_CONTEXT decoding failures Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 117/148] firmware: dmi_scan: Fix ordering of product_uuid Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 118/148] thermal: armada: Update Armada 380 thermal sensor coefficients Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 119/148] md/raid5: dont record new size if resize_stripes fails Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 120/148] md/raid0: fix restore to sector variable in raid0_make_request Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 121/148] Revert "HID: logitech-hidpp: support combo keyboard touchpad TK820" Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 122/148] MIPS: fix FP mode selection in lieu of .MIPS.abiflags data Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 123/148] rtlwifi: rtl8192cu: Fix kernel deadlock Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 124/148] Input: elantech - fix semi-mt protocol for v3 HW Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 125/148] storvsc: Set the SRB flags correctly when no data transfer is needed Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 126/148] sd: Disable support for 256 byte/sector disks Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 127/148] ACPI / init: Fix the ordering of acpi_reserve_resources() Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 128/148] iwlwifi: mvm: clean net-detect info if device was reset during suspend Greg Kroah-Hartman
2015-06-03 12:09 ` [PATCH 4.0 129/148] iwlwifi: mvm: Free fw_status after use to avoid memory leak Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 130/148] iwlwifi: pcie: prevent using unmapped memory in fw monitor Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 131/148] drm/radeon: add new bonaire pci id Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 133/148] drm/radeon: retry dcpd fetch Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 134/148] drm/plane-helper: Adapt cursor hack to transitional helpers Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 135/148] drm/radeon: dont share plls if monitors differ in audio support Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 136/148] drm/radeon/audio: make sure connector is valid in hotplug case Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 137/148] Revert "drm/radeon: only mark audio as connected if the monitor supports it (v3)" Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 139/148] dm: fix casting bug in dm_merge_bvec() Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 140/148] dm: fix reload failure of 0 path multipath mapping on blk-mq devices Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 141/148] drm/amdkfd: Dont report local memory size Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 142/148] vfs: read file_handle only once in handle_to_path Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 143/148] power/reset: at91: fix return value check in at91_reset_platform_probe() Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 144/148] ARC: unbork !LLSC build Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 145/148] UBI: block: Add missing cache flushes Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 146/148] pwm: img: Impose upper and lower timebase steps value Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 147/148] md: fix race when unfreezing sync_action Greg Kroah-Hartman
2015-06-03 12:10 ` [PATCH 4.0 148/148] fs/binfmt_elf.c:load_elf_binary(): return -EINVAL on zero-length mappings Greg Kroah-Hartman
2015-06-03 16:53 ` [PATCH 4.0 000/148] 4.0.5-stable review Shuah Khan
2015-06-04 6:17 ` Greg Kroah-Hartman
2015-06-03 18:16 ` Guenter Roeck
2015-06-04 6:17 ` Greg Kroah-Hartman
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=20150603114205.802248834@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=aarcange@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pbonzini@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).