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, Ben Hutchings <ben@decadent.org.uk>,
	"David S. Miller" <davem@davemloft.net>
Subject: [PATCH 3.17 023/319] drivers/net: Disable UFO through virtio
Date: Wed, 12 Nov 2014 10:12:41 +0900	[thread overview]
Message-ID: <20141112010956.540146480@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: Ben Hutchings <ben@decadent.org.uk>

[ Upstream commit 3d0ad09412ffe00c9afa201d01effdb6023d09b4 ]

IPv6 does not allow fragmentation by routers, so there is no
fragmentation ID in the fixed header.  UFO for IPv6 requires the ID to
be passed separately, but there is no provision for this in the virtio
net protocol.

Until recently our software implementation of UFO/IPv6 generated a new
ID, but this was a bug.  Now we will use ID=0 for any UFO/IPv6 packet
passed through a tap, which is even worse.

Unfortunately there is no distinction between UFO/IPv4 and v6
features, so disable UFO on taps and virtio_net completely until we
have a proper solution.

We cannot depend on VM managers respecting the tap feature flags, so
keep accepting UFO packets but log a warning the first time we do
this.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Fixes: 916e4cf46d02 ("ipv6: reuse ip6_frag_id from ip6_ufo_append_data")
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/net/macvtap.c    |   13 +++++--------
 drivers/net/tun.c        |   19 +++++++++++--------
 drivers/net/virtio_net.c |   24 ++++++++++++++----------
 3 files changed, 30 insertions(+), 26 deletions(-)

--- a/drivers/net/macvtap.c
+++ b/drivers/net/macvtap.c
@@ -65,7 +65,7 @@ static struct cdev macvtap_cdev;
 static const struct proto_ops macvtap_socket_ops;
 
 #define TUN_OFFLOADS (NETIF_F_HW_CSUM | NETIF_F_TSO_ECN | NETIF_F_TSO | \
-		      NETIF_F_TSO6 | NETIF_F_UFO)
+		      NETIF_F_TSO6)
 #define RX_OFFLOADS (NETIF_F_GRO | NETIF_F_LRO)
 #define TAP_FEATURES (NETIF_F_GSO | NETIF_F_SG)
 
@@ -569,6 +569,8 @@ static int macvtap_skb_from_vnet_hdr(str
 			gso_type = SKB_GSO_TCPV6;
 			break;
 		case VIRTIO_NET_HDR_GSO_UDP:
+			pr_warn_once("macvtap: %s: using disabled UFO feature; please fix this program\n",
+				     current->comm);
 			gso_type = SKB_GSO_UDP;
 			break;
 		default:
@@ -614,8 +616,6 @@ static void macvtap_skb_to_vnet_hdr(cons
 			vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
 		else if (sinfo->gso_type & SKB_GSO_TCPV6)
 			vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
-		else if (sinfo->gso_type & SKB_GSO_UDP)
-			vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
 		else
 			BUG();
 		if (sinfo->gso_type & SKB_GSO_TCP_ECN)
@@ -950,9 +950,6 @@ static int set_offload(struct macvtap_qu
 			if (arg & TUN_F_TSO6)
 				feature_mask |= NETIF_F_TSO6;
 		}
-
-		if (arg & TUN_F_UFO)
-			feature_mask |= NETIF_F_UFO;
 	}
 
 	/* tun/tap driver inverts the usage for TSO offloads, where
@@ -963,7 +960,7 @@ static int set_offload(struct macvtap_qu
 	 * When user space turns off TSO, we turn off GSO/LRO so that
 	 * user-space will not receive TSO frames.
 	 */
-	if (feature_mask & (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_UFO))
+	if (feature_mask & (NETIF_F_TSO | NETIF_F_TSO6))
 		features |= RX_OFFLOADS;
 	else
 		features &= ~RX_OFFLOADS;
@@ -1064,7 +1061,7 @@ static long macvtap_ioctl(struct file *f
 	case TUNSETOFFLOAD:
 		/* let the user check for future flags */
 		if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
-			    TUN_F_TSO_ECN | TUN_F_UFO))
+			    TUN_F_TSO_ECN))
 			return -EINVAL;
 
 		rtnl_lock();
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -174,7 +174,7 @@ struct tun_struct {
 	struct net_device	*dev;
 	netdev_features_t	set_features;
 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
-			  NETIF_F_TSO6|NETIF_F_UFO)
+			  NETIF_F_TSO6)
 
 	int			vnet_hdr_sz;
 	int			sndbuf;
@@ -1149,8 +1149,18 @@ static ssize_t tun_get_user(struct tun_s
 			skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
 			break;
 		case VIRTIO_NET_HDR_GSO_UDP:
+		{
+			static bool warned;
+
+			if (!warned) {
+				warned = true;
+				netdev_warn(tun->dev,
+					    "%s: using disabled UFO feature; please fix this program\n",
+					    current->comm);
+			}
 			skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
 			break;
+		}
 		default:
 			tun->dev->stats.rx_frame_errors++;
 			kfree_skb(skb);
@@ -1251,8 +1261,6 @@ static ssize_t tun_put_user(struct tun_s
 				gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
 			else if (sinfo->gso_type & SKB_GSO_TCPV6)
 				gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
-			else if (sinfo->gso_type & SKB_GSO_UDP)
-				gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
 			else {
 				pr_err("unexpected GSO type: "
 				       "0x%x, gso_size %d, hdr_len %d\n",
@@ -1762,11 +1770,6 @@ static int set_offload(struct tun_struct
 				features |= NETIF_F_TSO6;
 			arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
 		}
-
-		if (arg & TUN_F_UFO) {
-			features |= NETIF_F_UFO;
-			arg &= ~TUN_F_UFO;
-		}
 	}
 
 	/* This gives the user a way to test for new features in future by
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -497,8 +497,17 @@ static void receive_buf(struct receive_q
 			skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
 			break;
 		case VIRTIO_NET_HDR_GSO_UDP:
+		{
+			static bool warned;
+
+			if (!warned) {
+				warned = true;
+				netdev_warn(dev,
+					    "host using disabled UFO feature; please fix it\n");
+			}
 			skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
 			break;
+		}
 		case VIRTIO_NET_HDR_GSO_TCPV6:
 			skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
 			break;
@@ -885,8 +894,6 @@ static int xmit_skb(struct send_queue *s
 			hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
 		else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
 			hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
-		else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
-			hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
 		else
 			BUG();
 		if (skb_shinfo(skb)->gso_type & SKB_GSO_TCP_ECN)
@@ -1710,7 +1717,7 @@ static int virtnet_probe(struct virtio_d
 			dev->features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
 
 		if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
-			dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
+			dev->hw_features |= NETIF_F_TSO
 				| NETIF_F_TSO_ECN | NETIF_F_TSO6;
 		}
 		/* Individual feature bits: what can host handle? */
@@ -1720,11 +1727,9 @@ static int virtnet_probe(struct virtio_d
 			dev->hw_features |= NETIF_F_TSO6;
 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
 			dev->hw_features |= NETIF_F_TSO_ECN;
-		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
-			dev->hw_features |= NETIF_F_UFO;
 
 		if (gso)
-			dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
+			dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
 		/* (!csum && gso) case will be fixed by register_netdev() */
 	}
 	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
@@ -1764,8 +1769,7 @@ static int virtnet_probe(struct virtio_d
 	/* If we can receive ANY GSO packets, we must allocate large ones. */
 	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
 	    virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
-	    virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
-	    virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
+	    virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN))
 		vi->big_packets = true;
 
 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
@@ -1965,9 +1969,9 @@ static struct virtio_device_id id_table[
 static unsigned int features[] = {
 	VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM,
 	VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC,
-	VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6,
+	VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_TSO6,
 	VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6,
-	VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO,
+	VIRTIO_NET_F_GUEST_ECN,
 	VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ,
 	VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN,
 	VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ,



  parent reply	other threads:[~2014-11-12  1:20 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 ` Greg Kroah-Hartman [this message]
2014-11-12 21:03   ` [PATCH 3.17 023/319] drivers/net: Disable UFO through virtio 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 ` [PATCH 3.17 085/319] virtio_pci: fix virtio spec compliance on restore Greg Kroah-Hartman
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=20141112010956.540146480@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ben@decadent.org.uk \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --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).