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, Al Viro <viro@zeniv.linux.org.uk>,
	Paul Moore <paul@paul-moore.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.17 194/324] ipv6: make ipv6_renew_options() interrupt/kernel safe
Date: Thu, 23 Aug 2018 09:54:20 +0200	[thread overview]
Message-ID: <20180823075005.879130706@linuxfoundation.org> (raw)
In-Reply-To: <20180823074955.885811006@linuxfoundation.org>

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

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

From: Paul Moore <paul@paul-moore.com>

[ Upstream commit a9ba23d48dbc6ffd08426bb10f05720e0b9f5c14 ]

At present the ipv6_renew_options_kern() function ends up calling into
access_ok() which is problematic if done from inside an interrupt as
access_ok() calls WARN_ON_IN_IRQ() on some (all?) architectures
(x86-64 is affected).  Example warning/backtrace is shown below:

 WARNING: CPU: 1 PID: 3144 at lib/usercopy.c:11 _copy_from_user+0x85/0x90
 ...
 Call Trace:
  <IRQ>
  ipv6_renew_option+0xb2/0xf0
  ipv6_renew_options+0x26a/0x340
  ipv6_renew_options_kern+0x2c/0x40
  calipso_req_setattr+0x72/0xe0
  netlbl_req_setattr+0x126/0x1b0
  selinux_netlbl_inet_conn_request+0x80/0x100
  selinux_inet_conn_request+0x6d/0xb0
  security_inet_conn_request+0x32/0x50
  tcp_conn_request+0x35f/0xe00
  ? __lock_acquire+0x250/0x16c0
  ? selinux_socket_sock_rcv_skb+0x1ae/0x210
  ? tcp_rcv_state_process+0x289/0x106b
  tcp_rcv_state_process+0x289/0x106b
  ? tcp_v6_do_rcv+0x1a7/0x3c0
  tcp_v6_do_rcv+0x1a7/0x3c0
  tcp_v6_rcv+0xc82/0xcf0
  ip6_input_finish+0x10d/0x690
  ip6_input+0x45/0x1e0
  ? ip6_rcv_finish+0x1d0/0x1d0
  ipv6_rcv+0x32b/0x880
  ? ip6_make_skb+0x1e0/0x1e0
  __netif_receive_skb_core+0x6f2/0xdf0
  ? process_backlog+0x85/0x250
  ? process_backlog+0x85/0x250
  ? process_backlog+0xec/0x250
  process_backlog+0xec/0x250
  net_rx_action+0x153/0x480
  __do_softirq+0xd9/0x4f7
  do_softirq_own_stack+0x2a/0x40
  </IRQ>
  ...

While not present in the backtrace, ipv6_renew_option() ends up calling
access_ok() via the following chain:

  access_ok()
  _copy_from_user()
  copy_from_user()
  ipv6_renew_option()

The fix presented in this patch is to perform the userspace copy
earlier in the call chain such that it is only called when the option
data is actually coming from userspace; that place is
do_ipv6_setsockopt().  Not only does this solve the problem seen in
the backtrace above, it also allows us to simplify the code quite a
bit by removing ipv6_renew_options_kern() completely.  We also take
this opportunity to cleanup ipv6_renew_options()/ipv6_renew_option()
a small amount as well.

This patch is heavily based on a rough patch by Al Viro.  I've taken
his original patch, converted a kmemdup() call in do_ipv6_setsockopt()
to a memdup_user() call, made better use of the e_inval jump target in
the same function, and cleaned up the use ipv6_renew_option() by
ipv6_renew_options().

CC: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 include/net/ipv6.h       |    9 ---
 net/ipv6/calipso.c       |    9 +--
 net/ipv6/exthdrs.c       |  111 ++++++++++++-----------------------------------
 net/ipv6/ipv6_sockglue.c |   27 ++++++++---
 4 files changed, 53 insertions(+), 103 deletions(-)

--- a/include/net/ipv6.h
+++ b/include/net/ipv6.h
@@ -354,14 +354,7 @@ struct ipv6_txoptions *ipv6_dup_options(
 struct ipv6_txoptions *ipv6_renew_options(struct sock *sk,
 					  struct ipv6_txoptions *opt,
 					  int newtype,
-					  struct ipv6_opt_hdr __user *newopt,
-					  int newoptlen);
-struct ipv6_txoptions *
-ipv6_renew_options_kern(struct sock *sk,
-			struct ipv6_txoptions *opt,
-			int newtype,
-			struct ipv6_opt_hdr *newopt,
-			int newoptlen);
+					  struct ipv6_opt_hdr *newopt);
 struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space,
 					  struct ipv6_txoptions *opt);
 
--- a/net/ipv6/calipso.c
+++ b/net/ipv6/calipso.c
@@ -799,8 +799,7 @@ static int calipso_opt_update(struct soc
 {
 	struct ipv6_txoptions *old = txopt_get(inet6_sk(sk)), *txopts;
 
-	txopts = ipv6_renew_options_kern(sk, old, IPV6_HOPOPTS,
-					 hop, hop ? ipv6_optlen(hop) : 0);
+	txopts = ipv6_renew_options(sk, old, IPV6_HOPOPTS, hop);
 	txopt_put(old);
 	if (IS_ERR(txopts))
 		return PTR_ERR(txopts);
@@ -1222,8 +1221,7 @@ static int calipso_req_setattr(struct re
 	if (IS_ERR(new))
 		return PTR_ERR(new);
 
-	txopts = ipv6_renew_options_kern(sk, req_inet->ipv6_opt, IPV6_HOPOPTS,
-					 new, new ? ipv6_optlen(new) : 0);
+	txopts = ipv6_renew_options(sk, req_inet->ipv6_opt, IPV6_HOPOPTS, new);
 
 	kfree(new);
 
@@ -1260,8 +1258,7 @@ static void calipso_req_delattr(struct r
 	if (calipso_opt_del(req_inet->ipv6_opt->hopopt, &new))
 		return; /* Nothing to do */
 
-	txopts = ipv6_renew_options_kern(sk, req_inet->ipv6_opt, IPV6_HOPOPTS,
-					 new, new ? ipv6_optlen(new) : 0);
+	txopts = ipv6_renew_options(sk, req_inet->ipv6_opt, IPV6_HOPOPTS, new);
 
 	if (!IS_ERR(txopts)) {
 		txopts = xchg(&req_inet->ipv6_opt, txopts);
--- a/net/ipv6/exthdrs.c
+++ b/net/ipv6/exthdrs.c
@@ -1028,29 +1028,21 @@ ipv6_dup_options(struct sock *sk, struct
 }
 EXPORT_SYMBOL_GPL(ipv6_dup_options);
 
-static int ipv6_renew_option(void *ohdr,
-			     struct ipv6_opt_hdr __user *newopt, int newoptlen,
-			     int inherit,
-			     struct ipv6_opt_hdr **hdr,
-			     char **p)
+static void ipv6_renew_option(int renewtype,
+			      struct ipv6_opt_hdr **dest,
+			      struct ipv6_opt_hdr *old,
+			      struct ipv6_opt_hdr *new,
+			      int newtype, char **p)
 {
-	if (inherit) {
-		if (ohdr) {
-			memcpy(*p, ohdr, ipv6_optlen((struct ipv6_opt_hdr *)ohdr));
-			*hdr = (struct ipv6_opt_hdr *)*p;
-			*p += CMSG_ALIGN(ipv6_optlen(*hdr));
-		}
-	} else {
-		if (newopt) {
-			if (copy_from_user(*p, newopt, newoptlen))
-				return -EFAULT;
-			*hdr = (struct ipv6_opt_hdr *)*p;
-			if (ipv6_optlen(*hdr) > newoptlen)
-				return -EINVAL;
-			*p += CMSG_ALIGN(newoptlen);
-		}
-	}
-	return 0;
+	struct ipv6_opt_hdr *src;
+
+	src = (renewtype == newtype ? new : old);
+	if (!src)
+		return;
+
+	memcpy(*p, src, ipv6_optlen(src));
+	*dest = (struct ipv6_opt_hdr *)*p;
+	*p += CMSG_ALIGN(ipv6_optlen(*dest));
 }
 
 /**
@@ -1076,13 +1068,11 @@ static int ipv6_renew_option(void *ohdr,
  */
 struct ipv6_txoptions *
 ipv6_renew_options(struct sock *sk, struct ipv6_txoptions *opt,
-		   int newtype,
-		   struct ipv6_opt_hdr __user *newopt, int newoptlen)
+		   int newtype, struct ipv6_opt_hdr *newopt)
 {
 	int tot_len = 0;
 	char *p;
 	struct ipv6_txoptions *opt2;
-	int err;
 
 	if (opt) {
 		if (newtype != IPV6_HOPOPTS && opt->hopopt)
@@ -1095,8 +1085,8 @@ ipv6_renew_options(struct sock *sk, stru
 			tot_len += CMSG_ALIGN(ipv6_optlen(opt->dst1opt));
 	}
 
-	if (newopt && newoptlen)
-		tot_len += CMSG_ALIGN(newoptlen);
+	if (newopt)
+		tot_len += CMSG_ALIGN(ipv6_optlen(newopt));
 
 	if (!tot_len)
 		return NULL;
@@ -1111,29 +1101,19 @@ ipv6_renew_options(struct sock *sk, stru
 	opt2->tot_len = tot_len;
 	p = (char *)(opt2 + 1);
 
-	err = ipv6_renew_option(opt ? opt->hopopt : NULL, newopt, newoptlen,
-				newtype != IPV6_HOPOPTS,
-				&opt2->hopopt, &p);
-	if (err)
-		goto out;
-
-	err = ipv6_renew_option(opt ? opt->dst0opt : NULL, newopt, newoptlen,
-				newtype != IPV6_RTHDRDSTOPTS,
-				&opt2->dst0opt, &p);
-	if (err)
-		goto out;
-
-	err = ipv6_renew_option(opt ? opt->srcrt : NULL, newopt, newoptlen,
-				newtype != IPV6_RTHDR,
-				(struct ipv6_opt_hdr **)&opt2->srcrt, &p);
-	if (err)
-		goto out;
-
-	err = ipv6_renew_option(opt ? opt->dst1opt : NULL, newopt, newoptlen,
-				newtype != IPV6_DSTOPTS,
-				&opt2->dst1opt, &p);
-	if (err)
-		goto out;
+	ipv6_renew_option(IPV6_HOPOPTS, &opt2->hopopt,
+			  (opt ? opt->hopopt : NULL),
+			  newopt, newtype, &p);
+	ipv6_renew_option(IPV6_RTHDRDSTOPTS, &opt2->dst0opt,
+			  (opt ? opt->dst0opt : NULL),
+			  newopt, newtype, &p);
+	ipv6_renew_option(IPV6_RTHDR,
+			  (struct ipv6_opt_hdr **)&opt2->srcrt,
+			  (opt ? (struct ipv6_opt_hdr *)opt->srcrt : NULL),
+			  newopt, newtype, &p);
+	ipv6_renew_option(IPV6_DSTOPTS, &opt2->dst1opt,
+			  (opt ? opt->dst1opt : NULL),
+			  newopt, newtype, &p);
 
 	opt2->opt_nflen = (opt2->hopopt ? ipv6_optlen(opt2->hopopt) : 0) +
 			  (opt2->dst0opt ? ipv6_optlen(opt2->dst0opt) : 0) +
@@ -1141,37 +1121,6 @@ ipv6_renew_options(struct sock *sk, stru
 	opt2->opt_flen = (opt2->dst1opt ? ipv6_optlen(opt2->dst1opt) : 0);
 
 	return opt2;
-out:
-	sock_kfree_s(sk, opt2, opt2->tot_len);
-	return ERR_PTR(err);
-}
-
-/**
- * ipv6_renew_options_kern - replace a specific ext hdr with a new one.
- *
- * @sk: sock from which to allocate memory
- * @opt: original options
- * @newtype: option type to replace in @opt
- * @newopt: new option of type @newtype to replace (kernel-mem)
- * @newoptlen: length of @newopt
- *
- * See ipv6_renew_options().  The difference is that @newopt is
- * kernel memory, rather than user memory.
- */
-struct ipv6_txoptions *
-ipv6_renew_options_kern(struct sock *sk, struct ipv6_txoptions *opt,
-			int newtype, struct ipv6_opt_hdr *newopt,
-			int newoptlen)
-{
-	struct ipv6_txoptions *ret_val;
-	const mm_segment_t old_fs = get_fs();
-
-	set_fs(KERNEL_DS);
-	ret_val = ipv6_renew_options(sk, opt, newtype,
-				     (struct ipv6_opt_hdr __user *)newopt,
-				     newoptlen);
-	set_fs(old_fs);
-	return ret_val;
 }
 
 struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space,
--- a/net/ipv6/ipv6_sockglue.c
+++ b/net/ipv6/ipv6_sockglue.c
@@ -398,6 +398,12 @@ static int do_ipv6_setsockopt(struct soc
 	case IPV6_DSTOPTS:
 	{
 		struct ipv6_txoptions *opt;
+		struct ipv6_opt_hdr *new = NULL;
+
+		/* hop-by-hop / destination options are privileged option */
+		retv = -EPERM;
+		if (optname != IPV6_RTHDR && !ns_capable(net->user_ns, CAP_NET_RAW))
+			break;
 
 		/* remove any sticky options header with a zero option
 		 * length, per RFC3542.
@@ -409,17 +415,22 @@ static int do_ipv6_setsockopt(struct soc
 		else if (optlen < sizeof(struct ipv6_opt_hdr) ||
 			 optlen & 0x7 || optlen > 8 * 255)
 			goto e_inval;
-
-		/* hop-by-hop / destination options are privileged option */
-		retv = -EPERM;
-		if (optname != IPV6_RTHDR && !ns_capable(net->user_ns, CAP_NET_RAW))
-			break;
+		else {
+			new = memdup_user(optval, optlen);
+			if (IS_ERR(new)) {
+				retv = PTR_ERR(new);
+				break;
+			}
+			if (unlikely(ipv6_optlen(new) > optlen)) {
+				kfree(new);
+				goto e_inval;
+			}
+		}
 
 		opt = rcu_dereference_protected(np->opt,
 						lockdep_sock_is_held(sk));
-		opt = ipv6_renew_options(sk, opt, optname,
-					 (struct ipv6_opt_hdr __user *)optval,
-					 optlen);
+		opt = ipv6_renew_options(sk, opt, optname, new);
+		kfree(new);
 		if (IS_ERR(opt)) {
 			retv = PTR_ERR(opt);
 			break;



  parent reply	other threads:[~2018-08-23  8:59 UTC|newest]

Thread overview: 309+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-23  7:51 [PATCH 4.17 000/324] 4.17.19-stable review Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 001/324] arm: dts: armada: Fix "#cooling-cells" propertys name Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 002/324] vfio: ccw: fix error return in vfio_ccw_sch_event Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 003/324] perf tools: Fix error index for pmu event parser Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 004/324] HID: google: Add support for whiskers Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 005/324] IB/rxe: avoid double kfree skb Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 006/324] RDMA/qedr: Fix NULL pointer dereference when running over iWARP without RDMA-CM Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 007/324] Input: synaptics-rmi4 - fix axis-swap behavior Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 008/324] IB/mlx4: Fix an error handling path in mlx4_ib_rereg_user_mr() Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 009/324] clocksource/drivers/stm32: Fix error return code Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 010/324] drm/bridge/sii8620: fix loops in EDID fetch logic Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 011/324] drm/bridge/sii8620: fix display modes validation Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 012/324] drm/bridge/sii8620: fix potential buffer overflow Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 013/324] ARC: Explicitly add -mmedium-calls to CFLAGS Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 014/324] selftests/bpf: test offloads even with BPF programs present Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 015/324] smb3: increase initial number of credits requested to allow write Greg Kroah-Hartman
     [not found]   ` <CAMXdgSCTnXuR=N052yAJt2YEmCX4k=k35gD0cncx7TgM9-S9Lg@mail.gmail.com>
2018-08-23 15:28     ` Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 017/324] hwmon: (nct6775) Fix loop limit Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 018/324] soc: imx: gpcv2: correct PGC offset Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 019/324] usb: dwc3: pci: add support for Intel IceLake Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 020/324] usb: gadget: ffs: Fix BUG when userland exits with submitted AIO transfers Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 021/324] usb: dwc2: gadget: Fix issue in dwc2_gadget_start_isoc() Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 022/324] usb: dwc3: of-simple: fix use-after-free on remove Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 023/324] ACPI / EC: Use ec_no_wakeup on Thinkpad X1 Carbon 6th Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 024/324] netfilter: ipv6: nf_defrag: reduce struct net memory waste Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 025/324] netfilter: nf_ct_helper: Fix possible panic after nf_conntrack_helper_unregister Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 026/324] selftests: pstore: return Kselftest Skip code for skipped tests Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 027/324] selftests: static_keys: " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 028/324] selftests: sysctl: " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 029/324] selftests: user: " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 030/324] selftests: zram: " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 031/324] selftests: vm: " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 032/324] selftests: sync: add config fragment for testing sync framework Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 033/324] ARM: dts: NSP: Fix i2c controller interrupt type Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 034/324] ARM: dts: NSP: Fix PCIe controllers interrupt types Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 035/324] ARM: dts: HR2: Fix interrupt types for i2c and PCIe Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 036/324] ARM: dts: BCM5301x: Fix i2c controller interrupt type Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 037/324] ARM: dts: Cygnus: Fix I2C " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 038/324] ARM: dts: Cygnus: Fix PCIe " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 039/324] arm64: dts: specify 1.8V EMMC capabilities for bcm958742k Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 040/324] arm64: dts: specify 1.8V EMMC capabilities for bcm958742t Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 041/324] arm64: dts: ns2: Fix I2C controller interrupt type Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 042/324] arm64: dts: ns2: Fix PCIe " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 043/324] arm64: dts: Stingray: Fix I2C " Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 044/324] drivers/perf: xgene_pmu: Fix IOB SLOW PMU parser error Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 045/324] drm/arm/malidp: Ensure that the crtcs are shutdown before removing any encoder/connector Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 047/324] drm/arm/malidp: Preserve LAYER_FORMAT contents when setting format Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 048/324] drm/mali-dp: Rectify the width and height passed to rotmem_required() Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 049/324] IB/rxe: Fix missing completion for mem_reg work requests Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 050/324] libahci: Fix possible Spectre-v1 pmp indexing in ahci_led_store() Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 051/324] dmaengine: ti: omap-dma: Fix OMAP1510 incorrect residue_granularity Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 052/324] usb: dwc2: Fix host exit from hibernation flow Greg Kroah-Hartman
2018-08-23  7:51 ` [PATCH 4.17 053/324] usb: dwc2: alloc dma aligned buffer for isoc split in Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 054/324] usb: dwc2: fix isoc split in transfer with no data Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 055/324] usb: gadget: composite: fix delayed_status race condition when set_interface Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 056/324] usb: gadget: dwc2: fix memory leak in gadget_init() Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 057/324] dwc2: gadget: Fix ISOC IN DDMA PID bitfield value calculation Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 058/324] powerpc: smp_send_stop do not offline stopped CPUs Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 059/324] xen: add error handling for xenbus_printf Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 060/324] pNFS: Always free the session slot on error in nfs4_layoutget_handle_exception Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 061/324] scsi: xen-scsifront: add error handling for xenbus_printf Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 062/324] xen/scsiback: " Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 063/324] arm64: dma-mapping: clear buffers allocated with FORCE_CONTIGUOUS flag Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 064/324] arm64: make secondary_start_kernel() notrace Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 065/324] qed: Fix possible memory leak in Rx error path handling Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 066/324] qed: Add sanity check for SIMD fastpath handler Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 067/324] qed: Do not advertise DCBX_LLD_MANAGED capability Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 068/324] enic: initialize enic->rfs_h.lock in enic_probe Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 069/324] net: hamradio: use eth_broadcast_addr Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 070/324] net: propagate dev_get_valid_name return code Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 071/324] net: stmmac: socfpga: add additional ocp reset line for Stratix10 Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 072/324] nvme-rdma: fix possible double free condition when failing to create a controller Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 073/324] nvme-rdma: Fix command completion race at error recovery Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 074/324] nvmet: reset keep alive timer in controller enable Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 075/324] blk-mq-debugfs: Off by one in blk_mq_rq_state_name() Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 076/324] block: sed-opal: Fix a couple off by one bugs Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 077/324] ARC: Enable machine_desc->init_per_cpu for !CONFIG_SMP Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 078/324] selftests: net: add config fragments Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 079/324] nbd: Add the nbd NBD_DISCONNECT_ON_CLOSE config flag Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 080/324] net: davinci_emac: match the mdio device against its compatible if possible Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 081/324] sctp: fix erroneous inc of snmp SctpFragUsrMsgs Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 082/324] KVM: arm/arm64: Drop resource size check for GICV window Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 083/324] drm/bridge/sii8620: fix display of packed pixel modes in MHL2 Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 084/324] nvme-pci: move nvme_kill_queues to nvme_remove_dead_ctrl Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 085/324] clk: sunxi-ng: replace lib-y with obj-y Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 086/324] locking/lockdep: Do not record IRQ state within lockdep code Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 087/324] selftests: bpf: notification about privilege required to run test_kmod.sh testing script Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 089/324] irqchip/gic-v2m: Fix SPI release on error path Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 090/324] irqchip/gic-v3-its: Fix reprogramming of redistributors on CPU hotplug Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 091/324] x86/microcode/intel: Fix memleak in save_microcode_patch() Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 092/324] ipv6: mcast: fix unsolicited report interval after receiving querys Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 093/324] Smack: Mark inode instant in smack_task_to_inode Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 094/324] arm64: dts: msm8916: fix Coresight ETF graph connections Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 095/324] batman-adv: Fix bat_ogm_iv best gw refcnt after netlink dump Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 096/324] batman-adv: Fix bat_v " Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 097/324] batman-adv: Fix debugfs path for renamed hardif Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 098/324] batman-adv: Fix debugfs path for renamed softif Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 101/324] cxgb4: when disabling dcb set txq dcb priority to 0 Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 102/324] iio: pressure: bmp280: fix relative humidity unit Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 103/324] brcmfmac: stop watchdog before detach and free everything Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 104/324] ipmi: kcs_bmc: fix IRQ exception if the channel is not open Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 105/324] ARM: dts: am437x: make edt-ft5x06 a wakeup source Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 106/324] ALSA: seq: Fix UBSAN warning at SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT ioctl Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 107/324] nfp: bpf: dont stop offload if replace failed Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 108/324] usb: xhci: remove the code build warning Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 109/324] usb: xhci: increase CRS timeout value Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 110/324] NFC: pn533: Fix wrong GFP flag usage Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 111/324] typec: tcpm: Fix a msecs vs jiffies bug Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 112/324] kconfig: fix line numbers for if-entries in menu tree Greg Kroah-Hartman
2018-08-23  7:52 ` [PATCH 4.17 113/324] perf record: Support s390 random socket_id assignment Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 114/324] perf test session topology: Fix test on s390 Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 115/324] perf report powerpc: Fix crash if callchain is empty Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 116/324] perf tests: Add event parsing error handling to parse events test Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 118/324] perf bench: Fix numa report output code Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 119/324] perf script: Fix crash because of missing evsel->priv Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 120/324] perf tools: Fix crash caused by accessing feat_ops[HEADER_LAST_FEATURE] Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 121/324] clk: davinci: cfgchip: testing the wrong variable Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 122/324] usb: chipidea: host: fix disconnection detect issue Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 123/324] ARM: davinci: board-da850-evm: fix WP pin polarity for MMC/SD Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 124/324] netfilter: nf_log: fix uninit read in nf_log_proc_dostring Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 125/324] ceph: fix dentry leak in splice_dentry() Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 126/324] net/mlx5: E-Switch, Disallow vlan/spoofcheck setup if not being esw manager Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 127/324] rds: clean up loopback rds_connections on netns deletion Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 128/324] nfp: cast sizeof() to int when comparing with error code Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 129/324] selftests/x86/sigreturn/64: Fix spurious failures on AMD CPUs Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 130/324] selftests/x86/sigreturn: Do minor cleanups Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 131/324] ARM: dts: da850: Fix interrups property for gpio Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 132/324] arm64: dts: uniphier: fix widget name of headphone for LD11/LD20 boards Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 133/324] arm64: Avoid flush_icache_range() in alternatives patching code Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 134/324] ARM64: dts: meson-axg: fix ethernet stability issue Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 135/324] ARM64: dts: meson-gxl: fix Mali GPU compatible string Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 136/324] dmaengine: pl330: report BURST residue granularity Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 137/324] dmaengine: k3dma: Off by one in k3_of_dma_simple_xlate() Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 139/324] drm/amd/powerplay: correct vega12 thermal support as true Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 140/324] md/raid10: fix that replacement cannot complete recovery after reassemble Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 141/324] dev-dax: check_vma: ratelimit dev_info-s Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 142/324] mac80211: disable BHs/preemption in ieee80211_tx_control_port() Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 143/324] nl80211: relax ht operation checks for mesh Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 144/324] nl80211: check nla_parse_nested() return values Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 145/324] drm/exynos: gsc: Fix support for NV16/61, YUV420/YVU420 and YUV422 modes Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 146/324] drm/exynos: decon5433: Fix per-plane global alpha for XRGB modes Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 147/324] drm/exynos: decon5433: Fix WINCONx reset value Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 148/324] blk-mq: dont queue more if we get a busy return Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 149/324] drbd: Fix drbd_request_prepare() discard handling Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 150/324] bpf, s390: fix potential memleak when later bpf_jit_prog fails Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 151/324] PCI: xilinx: Add missing of_node_put() Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 152/324] PCI: xilinx-nwl: " Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 153/324] PCI: faraday: " Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 154/324] bnx2x: Fix receiving tx-timeout in error or recovery state Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 155/324] fsl/fman: fix parser reporting bad checksum on short frames Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 156/324] dpaa_eth: DPAA SGT needs to be 256B Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 157/324] s390/qeth: consistently re-enable device features Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 158/324] acpi/nfit: fix cmd_rc for acpi_nfit_ctl to always return a value Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 159/324] tools/testing/nvdimm: advertise a write cache for nfit_test Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 160/324] openrisc: entry: Fix delay slot exception detection Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 161/324] crypto: arm/speck - fix building in Thumb2 mode Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 163/324] objtool: Support GCC 8 -fnoreorder-functions Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 164/324] ipvlan: call dev_change_flags when ipvlan mode is reset Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 165/324] usb: xhci: dbc: Dont decrement runtime PM counter if DBC is not started Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 166/324] drm/amdgpu: fix swapped emit_ib_size in vce3 Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 167/324] nds32: Fix the dts pointer is not passed correctly issue Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 168/324] sched/nohz: Skip remote tick on idle task entirely Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 169/324] sched/fair: Fix bandwidth timer clock drift condition Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 170/324] sched/util_est: Fix util_est_dequeue() for throttled cfs_rq Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 171/324] kthread, sched/core: Fix kthread_parkme() (again...) Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 172/324] x86/mm/32: Initialize the CR4 shadow before __flush_tlb_all() Greg Kroah-Hartman
2018-08-23  7:53 ` [PATCH 4.17 173/324] HID: wacom: Correct touch maximum XY of 2nd-gen Intuos Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 174/324] ARM: imx_v6_v7_defconfig: Select ULPI support Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 175/324] ARM: imx_v4_v5_defconfig: " Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 176/324] tls: fix skb_to_sgvec returning unhandled error Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 177/324] r8169: fix mac address change Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 178/324] bpf: hash map: decrement counter on error Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 180/324] kasan: fix shadow_size calculation error in kasan_module_alloc Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 181/324] net: phy: marvell: change default m88e1510 LED configuration Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 182/324] smsc75xx: Add workaround for gigabit link up hardware errata Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 183/324] drm/bridge/sii8620: Fix display of packed pixel modes Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 184/324] RISC-V: fix R_RISCV_ADD32/R_RISCV_SUB32 relocations Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 185/324] RISC-V: Dont include irq-riscv-intc.h Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 186/324] RISC-V: Fix PTRACE_SETREGSET bug Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 187/324] samples/bpf: add missing <linux/if_vlan.h> Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 189/324] samples/bpf: Check the error of write() and read() Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 190/324] ieee802154: mcr20a: add missing includes Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 191/324] ieee802154: 6lowpan: set IFLA_LINK Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 192/324] netfilter: x_tables: set module owner for icmp(6) matches Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 193/324] qed: off by one in qed_parse_mcp_trace_buf() Greg Kroah-Hartman
2018-08-23  7:54 ` Greg Kroah-Hartman [this message]
2018-08-23  7:54 ` [PATCH 4.17 195/324] net: qrtr: Broadcast messages only from control port Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 196/324] net: qrtr: Reset the node and port ID of broadcast messages Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 197/324] sh_eth: fix invalid context bug while calling auto-negotiation by ethtool Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 198/324] sh_eth: fix invalid context bug while changing link options " Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 199/324] ravb: fix invalid context bug while calling auto-negotiation " Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 200/324] ravb: fix invalid context bug while changing link options " Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 201/324] tipc: fix wrong return value from function tipc_node_try_addr() Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 202/324] tipc: correct discovery message handling during address trial period Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 203/324] tipc: fix correct setting of message type in second discoverer Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 204/324] tipc: make function tipc_net_finalize() thread safe Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 205/324] cxgb4: assume flash part size to be 4MB, if it cant be determined Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 206/324] ARM: pxa: irq: fix handling of ICMR registers in suspend/resume Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 207/324] net: macb: Free RX ring for all queues Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 208/324] net/sched: act_csum: fix NULL dereference when goto chain is used Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 209/324] net/sched: act_tunnel_key: " Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 210/324] nvmem: Dont let a NULL cell_id for nvmem_cell_get() crash us Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 211/324] bpf: fix sk_skb programs without skb->dev assigned Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 212/324] ipfrag: really prevent allocation on netns exit Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 213/324] drm/sun4i: link in front-end code if needed Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 214/324] ieee802154: at86rf230: switch from BUG_ON() to WARN_ON() on problem Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 215/324] ieee802154: at86rf230: use __func__ macro for debug messages Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 216/324] ieee802154: fakelb: switch from BUG_ON() to WARN_ON() on problem Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 217/324] gpu: host1x: Skip IOMMU initialization if firewall is enabled Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 218/324] gpu: host1x: Check whether size of unpin isnt 0 Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 219/324] drm/tegra: Fix comparison operator for buffer size Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 220/324] net: ieee802154: adf7242: Fix erroneous RX enable Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 221/324] net: ieee802154: adf7242: Fix OCL calibration runs Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 222/324] drm/armada: fix colorkey mode property Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 223/324] drm/armada: fix irq handling Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 224/324] netfilter: nft_compat: explicitly reject ERROR and standard target Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 225/324] netfilter: nf_conntrack: Fix possible possible crash on module loading Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 226/324] ARC: [plat-hsdk]: Configure APB GPIO controller on ARC HSDK platform Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 227/324] ARC: Improve cmpxchg syscall implementation Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 229/324] bnxt_en: Fix inconsistent BNXT_FLAG_AGG_RINGS logic Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 230/324] bnxt_en: Always set output parameters in bnxt_get_max_rings() Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 231/324] bnxt_en: Do not modify max IRQ count after RDMA driver requests/frees IRQs Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 232/324] bnxt_en: Fix for system hang if request_irq fails Greg Kroah-Hartman
2018-08-23  7:54 ` [PATCH 4.17 233/324] samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 234/324] scsi: hpsa: correct enclosure sas address Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 235/324] scsi: qedf: Send the driver state to MFW Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 236/324] scsi: qedi: Send " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 237/324] perf llvm-utils: Remove bashism from kernel include fetch script Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 238/324] perf test shell: Prevent temporary editor files from being considered test scripts Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 240/324] perf script python: Fix dict reference counting Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 241/324] perf tools: Use python-config --includes rather than --cflags Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 242/324] nfit: fix unchecked dereference in acpi_nfit_ctl Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 243/324] RDMA/mlx5: Fix memory leak in mlx5_ib_create_srq() error path Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 244/324] ARM: 8780/1: ftrace: Only set kernel memory back to read-only after boot Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 245/324] sfp: ensure we clean up properly on bus registration failure Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 246/324] sfp: fix module initialisation with netdev already up Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 247/324] ARM: DRA7/OMAP5: Enable ACTLR[0] (Enable invalidates of BTB) for secondary cores Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 248/324] ARM: dts: am3517.dtsi: Disable reference to OMAP3 OTG controller Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 249/324] ixgbe: Be more careful when modifying MAC filters Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 250/324] amd/dc/dce100: On dce100, set clocks to 0 on suspend Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 251/324] ixgbe: Off by one in ixgbe_ipsec_tx() Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 252/324] tools: build: Fixup host c flags Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 253/324] tools: build: Use HOSTLDFLAGS with fixdep Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 255/324] sfc: avoid hang from nested use of the filter_sem Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 256/324] sfc: hold filter_sem consistently during reset Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 257/324] packet: reset network header if packet shorter than ll reserved space Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 258/324] rtc: fix alarm read and set offset Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 259/324] qlogic: check kstrtoul() for errors Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 260/324] tcp: remove DELAYED ACK events in DCTCP Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 261/324] pinctrl: ingenic: Fix inverted direction for < JZ4770 Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 262/324] pinctrl: nsp: off by ones in nsp_pinmux_enable() Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 263/324] pinctrl: nsp: Fix potential NULL dereference Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 264/324] net/9p/client.c: put refcount of trans_mod in error case in parse_opts() Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 265/324] kvm: nVMX: Restore exit qual for VM-entry failure due to MSR loading Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 266/324] sched/deadline: Fix switched_from_dl() warning Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 267/324] drm/nouveau/gem: off by one bugs in nouveau_gem_pushbuf_reloc_apply() Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 268/324] of: overlay: update phandle cache on overlay apply and remove Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 269/324] ibmvnic: Revise RX/TX queue error messages Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 270/324] hv/netvsc: fix handling of fallback to single queue mode Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 271/324] net/ethernet/freescale/fman: fix cross-build error Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 272/324] ibmvnic: Fix error recovery on login failure Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 273/324] ARM: dts: omap4-droid4: fix dts w.r.t. pwm Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 274/324] btrfs: scrub: Dont use inode page cache in scrub_handle_errored_block() Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 275/324] nvme: ensure forward progress during Admin passthru Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 276/324] octeon_mgmt: Fix MIX registers configuration on MTU setup Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 277/324] net: usb: rtl8150: demote allmulti message to dev_dbg() Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 278/324] kvmclock: fix TSC calibration for nested guests Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 279/324] net/smc: reset recv timeout after clc handshake Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 280/324] PCI: OF: Fix I/O space page leak Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 281/324] PCI: xgene: " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 282/324] PCI: versatile: " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 283/324] PCI: designware: " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 284/324] PCI: aardvark: " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 285/324] PCI: faraday: " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 286/324] PCI: mediatek: " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 287/324] PCI: v3-semi: " Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 288/324] net: qca_spi: Avoid packet drop during initial sync Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 289/324] net: qca_spi: Make sure the QCA7000 reset is triggered Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 290/324] net: qca_spi: Fix log level if probe fails Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 291/324] net: cavium: Add fine-granular dependencies on PCI Greg Kroah-Hartman
2018-08-23  7:55 ` [PATCH 4.17 293/324] soc: imx: gpc: restrict register range for regmap access Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 294/324] ACPI / EC: Use ec_no_wakeup on more Thinkpad X1 Carbon 6th systems Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 297/324] nvme: fix handling of metadata_len for NVME_IOCTL_IO_CMD Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 298/324] mm: use helper functions for allocating and freeing vm_area structs Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 299/324] mm: make vm_area_dup() actually copy the old vma data Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 300/324] mm: make vm_area_alloc() initialize core fields Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 301/324] EDAC: Add missing MEM_LRDDR4 entry in edac_mem_types[] Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 302/324] pty: fix O_CLOEXEC for TIOCGPTPEER Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 303/324] mm: Allow non-direct-map arguments to free_reserved_area() Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 304/324] x86/mm/init: Pass unconverted symbol addresses to free_init_pages() Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 305/324] x86/mm/init: Add helper for freeing kernel image pages Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 306/324] x86/mm/init: Remove freed kernel image areas from alias mapping Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 307/324] ext4: fix spectre gadget in ext4_mb_regular_allocator() Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 308/324] drm/i915/kvmgt: Fix potential Spectre v1 Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 309/324] drm/amdgpu/pm: " Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 312/324] xfrm_user: prevent leaking 2 bytes of kernel memory Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 313/324] netfilter: conntrack: dccp: treat SYNC/SYNCACK as invalid if no prior state Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 314/324] packet: refine ring v3 block size test to hold one frame Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 315/324] net/smc: no shutdown in state SMC_LISTEN Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 317/324] PCI / ACPI / PM: Resume all bridges on suspend-to-RAM Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 318/324] PCI: hotplug: Dont leak pci_slot on registration failure Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 319/324] PCI: Skip MPS logic for Virtual Functions (VFs) Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 320/324] PCI: pciehp: Fix use-after-free on unplug Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 321/324] PCI: pciehp: Fix unprotected list iteration in IRQ handler Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 322/324] i2c: core: ACPI: Properly set status byte to 0 for multi-byte writes Greg Kroah-Hartman
2018-08-23  7:56 ` [PATCH 4.17 324/324] reiserfs: fix broken xattr handling (heap corruption, bad retval) Greg Kroah-Hartman
2018-08-23 19:16 ` [PATCH 4.17 000/324] 4.17.19-stable review Shuah Khan
2018-08-23 20:11 ` Guenter Roeck
2018-08-24  5:10 ` Naresh Kamboju

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=20180823075005.879130706@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.levin@microsoft.com \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=paul@paul-moore.com \
    --cc=stable@vger.kernel.org \
    --cc=viro@zeniv.linux.org.uk \
    /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).