linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Amit Shah <amit.shah@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Rusty Russell <rusty@rustcorp.com.au>
Subject: [PATCH 3.17 085/319] virtio_pci: fix virtio spec compliance on restore
Date: Wed, 12 Nov 2014 10:13:43 +0900	[thread overview]
Message-ID: <20141112011006.696816363@linuxfoundation.org> (raw)
In-Reply-To: <20141112010952.553519040@linuxfoundation.org>

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

------------------

From: "Michael S. Tsirkin" <mst@redhat.com>

commit 6fbc198cf623944ab60a1db6d306a4d55cdd820d upstream.

On restore, virtio pci does the following:
+ set features
+ init vqs etc - device can be used at this point!
+ set ACKNOWLEDGE,DRIVER and DRIVER_OK status bits

This is in violation of the virtio spec, which
requires the following order:
- ACKNOWLEDGE
- DRIVER
- init vqs
- DRIVER_OK

This behaviour will break with hypervisors that assume spec compliant
behaviour.  It seems like a good idea to have this patch applied to
stable branches to reduce the support butden for the hypervisors.

Cc: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/virtio/virtio_pci.c |   33 ++++++++++++++++++++++++++++++---
 1 file changed, 30 insertions(+), 3 deletions(-)

--- a/drivers/virtio/virtio_pci.c
+++ b/drivers/virtio/virtio_pci.c
@@ -789,6 +789,7 @@ static int virtio_pci_restore(struct dev
 	struct pci_dev *pci_dev = to_pci_dev(dev);
 	struct virtio_pci_device *vp_dev = pci_get_drvdata(pci_dev);
 	struct virtio_driver *drv;
+	unsigned status = 0;
 	int ret;
 
 	drv = container_of(vp_dev->vdev.dev.driver,
@@ -799,14 +800,40 @@ static int virtio_pci_restore(struct dev
 		return ret;
 
 	pci_set_master(pci_dev);
+	/* We always start by resetting the device, in case a previous
+	 * driver messed it up. */
+	vp_reset(&vp_dev->vdev);
+
+	/* Acknowledge that we've seen the device. */
+	status |= VIRTIO_CONFIG_S_ACKNOWLEDGE;
+	vp_set_status(&vp_dev->vdev, status);
+
+	/* Maybe driver failed before freeze.
+	 * Restore the failed status, for debugging. */
+	status |= vp_dev->saved_status & VIRTIO_CONFIG_S_FAILED;
+	vp_set_status(&vp_dev->vdev, status);
+
+	if (!drv)
+		return 0;
+
+	/* We have a driver! */
+	status |= VIRTIO_CONFIG_S_DRIVER;
+	vp_set_status(&vp_dev->vdev, status);
+
 	vp_finalize_features(&vp_dev->vdev);
 
-	if (drv && drv->restore)
+	if (drv->restore) {
 		ret = drv->restore(&vp_dev->vdev);
+		if (ret) {
+			status |= VIRTIO_CONFIG_S_FAILED;
+			vp_set_status(&vp_dev->vdev, status);
+			return ret;
+		}
+	}
 
 	/* Finally, tell the device we're all set */
-	if (!ret)
-		vp_set_status(&vp_dev->vdev, vp_dev->saved_status);
+	status |= VIRTIO_CONFIG_S_DRIVER_OK;
+	vp_set_status(&vp_dev->vdev, status);
 
 	return ret;
 }



  parent reply	other threads:[~2014-11-12  4:06 UTC|newest]

Thread overview: 312+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-12  1:12 [PATCH 3.17 000/319] 3.17.3-stable review Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 001/319] tracing/syscalls: Ignore numbers outside NR_syscalls range Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 002/319] KVM: emulator: fix execution close to the segment limit Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 003/319] x86: bpf_jit: fix two bugs in eBPF JIT compiler Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 004/319] ipv4: fix nexthop attlen check in fib_nh_match Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 005/319] vxlan: fix a use after free in vxlan_encap_bypass Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 006/319] vxlan: using pskb_may_pull as early as possible Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 007/319] vxlan: fix a free after use Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 008/319] ipv4: dst_entry leak in ip_send_unicast_reply() Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 009/319] ipv4: fix a potential use after free in ip_tunnel_core.c Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 010/319] tipc: fix bug in bundled buffer reception Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 011/319] ax88179_178a: fix bonding failure Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 012/319] netlink: Re-add locking to netlink_lookup() and seq walker Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 013/319] net: tso: fix unaligned access to crafted TCP header in helper API Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 014/319] net: fix saving TX flow hash in sock for outgoing connections Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 015/319] hyperv: Fix the total_data_buflen in send path Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 016/319] tcp: md5: do not use alloc_percpu() Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 017/319] macvlan: fix a race on port dismantle and possible skb leaks Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 018/319] cxgb4 : Fix missing initialization of win0_lock Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 019/319] ipv4: Do not cache routing failures due to disabled forwarding Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 020/319] net/mlx4_en: Dont attempt to TX offload the outer UDP checksum for VXLAN Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 021/319] mlx4: Avoid leaking steering rules on flow creation error flow Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 022/319] gre: Use inner mac length when computing tunnel length Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 023/319] drivers/net: Disable UFO through virtio Greg Kroah-Hartman
2014-11-12 21:03   ` Ben Hutchings
2014-11-13 10:26     ` Luis Henriques
2014-11-13 17:48     ` Jiri Slaby
2014-11-13 18:35       ` Ben Hutchings
2014-11-13 18:45         ` Jiri Slaby
2014-11-14 17:46     ` Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 024/319] drivers/net, ipv6: Select IPv6 fragment idents for virtio UFO packets Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 025/319] drivers/net: macvtap and tun depend on INET Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 026/319] stmmac: pci: set default of the filter bins Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 027/319] lockd: Try to reconnect if statd has moved Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 028/319] SUNRPC: Dont wake tasks during connection abort Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 029/319] SUNRPC: Add missing support for RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 030/319] Revert "percpu: free percpu allocation info for uniprocessor system" Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 031/319] pata_serverworks: disable 64-KB DMA transfers on Broadcom OSB4 IDE Controller Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 032/319] libata-sff: Fix controllers with no ctl port Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 033/319] ASoC: core: fix use after free in snd_soc_remove_platform() Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 034/319] ASoC: soc-dapm: fix use after free Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 035/319] ASoC: soc-pcm: fix sig_bits determination in soc_pcm_apply_msb() Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 036/319] ASoC: tlv320aic3x: fix PLL D configuration Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 037/319] ASoC: Intel: HSW/BDW only support S16 and S24 formats Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 038/319] ASoC: adau1761: Fix input PGA volume Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 039/319] mmc: core: sdio: Fix unconditional wake_up_process() on sdio thread Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 040/319] mmc: sdhci-pxav3: set_uhs_signaling is initialized twice differently Greg Kroah-Hartman
2014-11-12  1:12 ` [PATCH 3.17 041/319] mmc: rtsx_usb_sdmmc: fix incorrect last byte in R2 response Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 042/319] mmc: dont request CD IRQ until mmc_start_host() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 043/319] mmc: rtsx_pci_sdmmc: fix incorrect last byte in R2 response Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 044/319] mmc: sdhci-s3c: fix runtime PM handling on sdhci_add_host() failure Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 045/319] fs: make cont_expand_zero interruptible Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 046/319] fs: Fix theoretical division by 0 in super_cache_scan() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 047/319] fs: allow open(dir, O_TMPFILE|..., 0) with mode 0 Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 048/319] UBIFS: fix a race condition Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 049/319] UBIFS: fix free log space calculation Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 050/319] vfs: fix data corruption when blocksize < pagesize for mmaped data Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 051/319] x86: Reject x32 executables if x32 ABI not supported Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 052/319] x86, fpu: __restore_xstate_sig()->math_state_restore() needs preempt_disable() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 053/319] x86, fpu: shift drop_init_fpu() from save_xstate_sig() to handle_signal() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 054/319] x86_64, entry: Filter RFLAGS.NT on entry from userspace Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 055/319] x86_64, entry: Fix out of bounds read on sysenter Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 056/319] x86, pageattr: Prevent overflow in slow_virt_to_phys() for X86_PAE Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 057/319] perf: Fix unclone_ctx() vs. locking Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 058/319] evm: properly handle INTEGRITY_NOXATTRS EVM status Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 059/319] evm: check xattr value length and type in evm_inode_setxattr() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 060/319] ALSA: hda - Add workaround for CMI8888 snoop behavior Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 061/319] ALSA: bebob: Uninitialized id returned by saffirepro_both_clk_src_get Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 062/319] ALSA: pcm: Zero-clear reserved fields of PCM status ioctl in compat mode Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 063/319] missing data dependency barrier in prepend_name() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 064/319] [jffs2] kill wbuf_queued/wbuf_dwork_lock Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 065/319] fix misuses of f_count() in ppp and netlink Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 066/319] rbd: rbd workqueues need a resque worker Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 067/319] libceph: ceph-msgr workqueue needs " Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 068/319] sched: Use dl_bw_of() under RCU read lock Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 069/319] um: ubd: Fix for processes stuck in D state forever Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 070/319] random: add and use memzero_explicit() for clearing data Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 071/319] s390/topology: call set_sched_topology early Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 072/319] UBI: block: Fix block device size setting Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 073/319] UBI: block: Add support for the UBI_VOLUME_UPDATED notification Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 074/319] UBI: Dispatch update notification if the volume is updated Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 075/319] UBI: add missing kmem_cache_free() in process_pool_aeb error path Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 076/319] mnt: Prevent pivot_root from creating a loop in the mount tree Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 077/319] mfd: ti_am335x_tscadc: Fix TSC operation after ADC continouous mode Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 078/319] mfd: ti_am335x_tscadc: Fix TSC resume Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 079/319] mfd: rtsx_pcr: Fix MSI enable error handling Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 080/319] iommu: Rework iommu_group_get_for_pci_dev() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 081/319] iommu/amd: Split init_iommu_group() from iommu_init_device() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 082/319] pstore: Fix duplicate {console,ftrace}-efi entries Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 083/319] selinux: fix inode security list corruption Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 084/319] power: charger-manager: Fix NULL pointer exception with missing cm-fuel-gauge Greg Kroah-Hartman
2014-11-12  1:13 ` Greg Kroah-Hartman [this message]
2014-11-12  1:13 ` [PATCH 3.17 086/319] xen/blkback: unmap all persistent grants when frontend gets disconnected Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 088/319] drm/cirrus: bind also to qemu-xen-traditional Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 089/319] blk-mq: fix potential hang if rolling wakeup depth is too high Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 090/319] dm bufio: update last_accessed when relinking a buffer Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 091/319] dm bufio: when done scanning return from __scan immediately Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 092/319] drbd: compute the end before rb_insert_augmented() Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 093/319] block: fix alignment_offset math that assumes io_min is a power-of-2 Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 094/319] Revert "block: all blk-mq requests are tagged" Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 095/319] dm log userspace: fix memory leak in dm_ulog_tfr_init failure path Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 096/319] modules, lock around setting of MODULE_STATE_UNFORMED Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 097/319] framebuffer: fix screen corruption when copying Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 098/319] framebuffer: fix border color Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 099/319] Input: synaptics - gate forcepad support by DMI check Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 100/319] Input: i8042 - add noloop quirk for Asus X750LN Greg Kroah-Hartman
2014-11-12  1:13 ` [PATCH 3.17 101/319] Input: alps - fix v4 button press recognition Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 102/319] Input: i8042 - quirks for Fujitsu Lifebook A544 and Lifebook AH544 Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 103/319] HID: input: Fix TransducerSerialNumber implementation Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 104/319] drm/ast: Fix HW cursor image Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 105/319] drm/nouveau/gpio: rename g92 class to g94 Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 106/319] drm/i915: Do not store the error pointer for a failed userptr registration Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 107/319] drm/i915: Do not leak pages when freeing userptr objects Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 108/319] drm/vmwgfx: Fix drm.h include Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 109/319] drm/tilcdc: Fix the error path in tilcdc_load() Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 110/319] drm/nouveau/bios: memset dcb struct to zero before parsing Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 111/319] drm/gt214-/kms: fix hda eld regression Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 112/319] media: v4l2-common: fix overflow in v4l_bound_align_image() Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 113/319] media: usb: uvc: add a quirk for Dell XPS M1330 webcam Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 115/319] media: siano: add support for PCTV 77e Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 116/319] media: m88ts2022: fix 32bit overflow on filter calc Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 119/319] media: imon: fix other RC type protocol support Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 120/319] media: ds3000: fix LNB supply voltage on Tevii S480 on initialization Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 122/319] media: tda7432: Fix setting TDA7432_MUTE bit for TDA7432_RF register Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 123/319] media: vmalloc_sg: off by one in error handling Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 124/319] KVM: emulate: avoid accessing NULL ctxt->memopp Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 125/319] kvm: fix excessive pages un-pinning in kvm_iommu_map error path Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 126/319] KVM: x86: Decoding guest instructions which cross page boundary may fail Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 127/319] KVM: x86: Emulator does not decode clflush well Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 128/319] KVM: x86: PREFETCH and HINT_NOP should have SrcMem flag Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 129/319] KVM: x86: Prevent host from panicking on shared MSR writes Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 130/319] KVM: x86: Improve thread safety in pit Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 131/319] KVM: x86: Check non-canonical addresses upon WRMSR Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 132/319] kvm: x86: dont kill guest on unknown exit reason Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 133/319] KVM: x86: Fix wrong masking on relative jump/call Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 134/319] KVM: x86: Emulator fixes for eip canonical checks on near branches Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 135/319] KVM: x86: Handle errors when RIP is set during far jumps Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 136/319] kvm: vmx: handle invvpid vm exit gracefully Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 137/319] ARC: [nsimosci] Allow "headless" models to boot Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 138/319] ARC: Update order of registers in KGDB to match GDB 7.5 Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 139/319] ARC: unbork FPU save/restore Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 140/319] qla_target: dont delete changed nacls Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 141/319] iser-target: Disable TX completion interrupt coalescing Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 142/319] target: Fix queue full status NULL pointer for SCF_TRANSPORT_TASK_SENSE Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 143/319] target: Fix APTPL metadata handling for dynamic MappedLUNs Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 144/319] MIPS: ptrace.h: Add a missing include Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 145/319] MIPS: loongson2_cpufreq: Fix CPU clock rate setting mismerge Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 146/319] MIPS: cp1emu: Fix ISA restrictions for cop1x_op instructions Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 147/319] MIPS: ftrace: Fix a microMIPS build problem Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 148/319] MIPS: tlbex: Properly fix HUGE TLB Refill exception handler Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 150/319] jbd2: free bh when descriptor block checksum fails Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 151/319] ext4: check EA value offset when loading Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 152/319] ext4: dont check quota format when there are no quota files Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 153/319] ext4: fix mmap data corruption when blocksize < pagesize Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 154/319] ext4: grab missed write_count for EXT4_IOC_SWAP_BOOT Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 155/319] ext4: add ext4_iget_normal() which is to be used for dir tree lookups Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 156/319] ext4: dont orphan or truncate the boot loader inode Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 157/319] ext4: fix reservation overflow in ext4_da_write_begin Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 158/319] ext4: Replace open coded mdata csum feature to helper function Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 159/319] ext4: move error report out of atomic context in ext4_init_block_bitmap() Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 160/319] ext4: check s_chksum_driver when looking for bg csum presence Greg Kroah-Hartman
2014-11-12  1:14 ` [PATCH 3.17 161/319] ext4: fix oops when loading block bitmap failed Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 162/319] ext4: fix overflow when updating superblock backups after resize Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 163/319] ext4: enable journal checksum when metadata checksum feature enabled Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 164/319] ext4: prevent bugon on race between write/fcntl Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 165/319] futex: Fix a race condition between REQUEUE_PI and task death Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 166/319] drm/nouveau: fix regression on agp boards Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 167/319] drm/i915: intel_backlight scale() math WA Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 169/319] drm/radeon: fix speaker allocation setup Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 170/319] drm/radeon: use gart memory for DMA ring tests Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 171/319] drm/radeon: fix vm page table block size calculation Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 172/319] cpufreq: expose scaling_cur_freq sysfs file for set_policy() drivers Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 173/319] cpufreq: intel_pstate: Reflect current no_turbo state correctly Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 175/319] x86/platform/intel/iosf: Add Braswell PCI ID Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 176/319] x86: Add cpu_detect_cache_sizes to init_intel() add Quark legacy_cache() Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 177/319] rtc: Disable EFI rtc for x86 Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 178/319] intel_pstate: Dont lose sysfs settings during cpu offline Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 179/319] intel_pstate: Fix BYT frequency reporting Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 180/319] intel_pstate: Correct BYT VID values Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 181/319] freezer: Do not freeze tasks killed by OOM killer Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 182/319] fix inode leaks on d_splice_alias() failure exits Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 183/319] ACPI: invoke acpi_device_wakeup() with correct parameters Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 184/319] x86: ACPI: Do not translate GSI number if IOAPIC is disabled Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 185/319] ACPI, irq, x86: Return IRQ instead of GSI in mp_register_gsi() Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 187/319] OOM, PM: OOM killed task shouldnt escape PM suspend Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 188/319] iio: st_sensors: Fix buffer copy Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 189/319] iio: adc: mxs-lradc: Disable the clock on probe failure Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 190/319] staging:iio:ad5933: Fix NULL pointer deref when enabling buffer Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 191/319] staging:iio:ad5933: Drop "raw" from channel names Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 192/319] iio: as3935: allocate correct iio_device size Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 193/319] staging:iio:ade7758: Fix NULL pointer deref when enabling buffer Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 194/319] staging:iio:ade7758: Fix check if channels are enabled in prenable Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 195/319] staging:iio:ade7758: Remove "raw" from channel name Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 196/319] serial: msm_serial: Fix kgdb continue Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 198/319] USB: serial: cp210x: add Silicon Labs 358x VID and PID Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 199/319] usb: serial: ftdi_sio: add Awinda Station and Dongle products Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 200/319] usb: serial: ftdi_sio: add "bricked" FTDI device PID Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 201/319] USB: cdc-acm: add device id for GW Instek AFG-2225 Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 202/319] USB: cdc-acm: only raise DTR on transitions from B0 Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 203/319] USB: cdc-acm: add quirk for control-line state requests Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 204/319] phy: omap-usb2: Enable runtime PM of omap-usb2 phy properly Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 205/319] usb: option: add support for Telit LE910 Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 206/319] USB: option: add Haier CE81B CDMA modem Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 208/319] wireless: rt2x00: add new rt2800usb device Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 209/319] Revert "usb: dwc3: dwc3-omap: Disable/Enable only wrapper interrupts in prepare/complete" Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 210/319] usb: dwc3: gadget: Properly initialize LINK TRB Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 211/319] spi: pl022: Fix incorrect dma_unmap_sg Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 212/319] spi: fsl-dspi: Fix CTAR selection Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 213/319] spi: pxa2xx: toggle clocks on suspend if not disabled by runtime PM Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 214/319] uas: Add NO_ATA_1X for VIA VL711 devices Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 215/319] uas: Add US_FL_NO_ATA_1X quirk for 2 more Seagate models Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 216/319] uas: Add US_FL_NO_ATA_1X quirk for 1 more Seagate model Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 217/319] usb: musb: cppi41: restart hrtimer only if not yet done Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 218/319] usb: musb: dsps: start OTG timer on resume again Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 219/319] usb: gadget: f_fs: remove redundant ffs_data_get() Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 220/319] usb: ffs: fix regression when quirk_ep_out_aligned_size flag is set Greg Kroah-Hartman
2014-11-12  1:15 ` [PATCH 3.17 221/319] usb: chipidea: Fix oops when removing the ci_hdrc module Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 223/319] USB: quirks: enable device-qualifier quirk for Elan Touchscreen Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 224/319] USB: quirks: enable device-qualifier quirk for another Elan touchscreen Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 225/319] USB: quirks: enable device-qualifier quirk for yet " Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 226/319] HID: usbhid: add always-poll quirk Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 227/319] HID: usbhid: enable always-poll quirk for Elan Touchscreen Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 228/319] HID: usbhid: fix PIXART optical mouse Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 229/319] HID: usbhid: add another mouse that needs QUIRK_ALWAYS_POLL Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 230/319] HID: usbhid: enable always-poll quirk for Elan Touchscreen 009b Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 231/319] HID: usbhid: enable always-poll quirk for Elan Touchscreen 016f Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 232/319] usb: gadget: udc: core: fix kernel oops with soft-connect Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 233/319] ALSA: usb-audio: Fix device_del() sysfs warnings at disconnect Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 234/319] usb-storage: handle a skipped data phase Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 235/319] USB: opticon: fix non-atomic allocation in write path Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 236/319] usb: Do not allow usb_alloc_streams on unconfigured devices Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 237/319] USB: kobil_sct: fix non-atomic allocation in write path Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 238/319] usb: Remove references to non-existent PLAT_S5P symbol Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 239/319] ima: check xattr value length and type in the ima_inode_setxattr() Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 240/319] sh: fix sh770x SCIF memory regions Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 241/319] mm: free compound page with correct order Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 242/319] cgroup/kmemleak: add kmemleak_free() for cgroup deallocations Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 243/319] mm: page-writeback: inline account_page_dirtied() into single caller Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 244/319] mm: memcontrol: fix missed end-writeback page accounting Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 245/319] lib/bitmap.c: fix undefined shift in __bitmap_shift_{left|right}() Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 246/319] mm/balloon_compaction: fix deflation when compaction is disabled Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 247/319] xhci: no switching back on non-ULT Haswell Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 248/319] xhci: Disable streams on Asmedia 1042 xhci controllers Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 249/319] scsi: Fix error handling in SCSI_IOCTL_SEND_COMMAND Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 250/319] lib/scatterlist: fix memory leak with scsi-mq Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 251/319] scsi: set REQ_QUEUE for the blk-mq case Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 252/319] i82860_edac: Report CE events properly Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 253/319] i3200_edac: " Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 254/319] e7xxx_edac: " Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 255/319] cpc925_edac: Report UE " Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 256/319] nfsd4: fix response size estimation for OP_SEQUENCE Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 257/319] nfsd4: fix crash on unknown operation number Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 258/319] zap_pte_range: update addr when forcing flush after TLB batching faiure Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 259/319] iwlwifi: mvm: BT Coex - update the MPLUT Boost register value Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 260/319] iwlwifi: configure the LTR Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 261/319] iwlwifi: dvm: drop non VO frames when flushing Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 262/319] Revert "iwlwifi: mvm: treat EAPOLs like mgmt frames wrt rate" Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 263/319] ext3: Dont check quota format when there are no quota files Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 264/319] PCI: Rename sysfs enabled file back to enable Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 265/319] quota: Properly return errors from dquot_writeback_dquots() Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 266/319] tty/vt: dont set font mappings on vc not supporting this Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 267/319] tty: Fix high cpu load if tty is unreleaseable Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 268/319] PM / Sleep: fix async suspend_late/freeze_late error handling Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 269/319] PM / Sleep: fix recovery during resuming from hibernation Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 270/319] staging: comedi: (regression) channel list must be set for COMEDI_CMD ioctl Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 271/319] staging: comedi: fix memory leak / bad pointer freeing for chanlist Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 272/319] mac80211: fix typo in starting baserate for rts_cts_rate_idx Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 273/319] mtd: cfi_cmdset_0001.c: fix resume for LH28F640BF chips Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 274/319] posix-timers: Fix stack info leak in timer_create() Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 275/319] x86, apic: Handle a bad TSC more gracefully Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 276/319] mm: Remove false WARN_ON from pagecache_isize_extended() Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 277/319] media: Remove references to non-existent PLAT_S5P symbol Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 278/319] crypto: algif - avoid excessive use of socket buffer in skcipher Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 279/319] [PATCH] mtd: m25p80: Fix module aliases for m25p80 Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 280/319] usb: dwc3: gadget: fix set_halt() bug with pending transfers Greg Kroah-Hartman
2014-11-12  1:16 ` [PATCH 3.17 281/319] usb: gadget: function: acm: make f_acm pass USB20CV Chapter9 Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 282/319] sched: Use rq->rd in sched_setaffinity() under RCU read lock Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 283/319] x86, intel-mid: Create IRQs for APB timers and RTC timers Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 284/319] drm/vmwgfx: Filter out modes those cannot be supported by the current VRAM size Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 285/319] drm/radeon/dpm: disable ulv support on SI Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 287/319] drm/radeon: dpm fixes for asrock systems Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 288/319] drm/radeon: remove invalid pci id Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 292/319] mm: cma: Dont crash on allocation if CMA area cant be activated Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 293/319] rbd: Fix error recovery in rbd_obj_read_sync() Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 294/319] acer-wmi: Add acpi_backlight=video quirk for the Acer KAV80 Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 295/319] samsung-laptop: Add broken-acpi-video quirk for NC210/NC110 Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 296/319] fix breakage in o2net_send_tcp_msg() Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 297/319] pinctrl: baytrail: show output gpio state correctly on Intel Baytrail Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 298/319] ARM: pxa: fix hang on startup with DEBUG_LL Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 299/319] powerpc: use device_online/offline() instead of cpu_up/down() Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 300/319] powerpc/powernv: Properly fix LPC debugfs endianness Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 301/319] powerpc: do_notify_resume can be called with bad thread_info flags argument Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 302/319] ALSA: hda - fix mute led problem for three HP laptops Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 303/319] regulator: max77693: Fix use of uninitialized regulator config Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 304/319] irqchip: armada-370-xp: Fix MSI interrupt handling Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 305/319] irqchip: armada-370-xp: Fix MPIC " Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 306/319] i2c: at91: dont account as iowait Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 307/319] sysfs: driver core: Fix glue dir race condition by gdp_mutex Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 309/319] of: Fix overflow bug in string property parsing functions Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 310/319] Btrfs: fix kfree on list_head in btrfs_lookup_csums_range error cleanup Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 311/319] xfs: bulkstat doesnt release AGI buffer on error Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 312/319] xfs: Check error during inode btree iteration in xfs_bulkstat() Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 313/319] xfs: bulkstat btree walk doesnt terminate Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 314/319] xfs: bulkstat chunk formatting cursor is broken Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 315/319] xfs: bulkstat chunk-formatter has issues Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 316/319] xfs: bulkstat main loop logic is a mess Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 317/319] xfs: bulkstat error handling is broken Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 318/319] xfs: track bulkstat progress by agino Greg Kroah-Hartman
2014-11-12  1:17 ` [PATCH 3.17 319/319] HID: add keyboard input assist hid usages Greg Kroah-Hartman
2014-11-12  6:25 ` [PATCH 3.17 000/319] 3.17.3-stable review Guenter Roeck
2014-11-12  7:29   ` Greg Kroah-Hartman
2014-11-13 15:24 ` 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=20141112011006.696816363@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=amit.shah@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=rusty@rustcorp.com.au \
    --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).