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, Leon Romanovsky <leonro@nvidia.com>,
	Jason Gunthorpe <jgg@nvidia.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.8 374/633] RDMA/cma: Fix use after free race in roce multicast join
Date: Tue, 27 Oct 2020 14:51:57 +0100	[thread overview]
Message-ID: <20201027135540.244587512@linuxfoundation.org> (raw)
In-Reply-To: <20201027135522.655719020@linuxfoundation.org>

From: Jason Gunthorpe <jgg@nvidia.com>

[ Upstream commit b5de0c60cc30c2a3513c7188c73f3f29acc29234 ]

The roce path triggers a work queue that continues to touch the id_priv
but doesn't hold any reference on it. Futher, unlike in the IB case, the
work queue is not fenced during rdma_destroy_id().

This can trigger a use after free if a destroy is triggered in the
incredibly narrow window after the queue_work and the work starting and
obtaining the handler_mutex.

The only purpose of this work queue is to run the ULP event callback from
the standard context, so switch the design to use the existing
cma_work_handler() scheme. This simplifies quite a lot of the flow:

- Use the cma_work_handler() callback to launch the work for roce. This
  requires generating the event synchronously inside the
  rdma_join_multicast(), which in turn means the dummy struct
  ib_sa_multicast can become a simple stack variable.

- cm_work_handler() used the id_priv kref, so we can entirely eliminate
  the kref inside struct cma_multicast. Since the cma_multicast never
  leaks into an unprotected work queue the kfree can be done at the same
  time as for IB.

- Eliminating the general multicast.ib requires using cma_set_mgid() in a
  few places to recompute the mgid.

Fixes: 3c86aa70bf67 ("RDMA/cm: Add RDMA CM support for IBoE devices")
Link: https://lore.kernel.org/r/20200902081122.745412-9-leon@kernel.org
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/infiniband/core/cma.c | 196 +++++++++++++++-------------------
 1 file changed, 88 insertions(+), 108 deletions(-)

diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c
index 32cb654fe4b8c..d28c7c6940b00 100644
--- a/drivers/infiniband/core/cma.c
+++ b/drivers/infiniband/core/cma.c
@@ -68,6 +68,9 @@ static const char * const cma_events[] = {
 	[RDMA_CM_EVENT_TIMEWAIT_EXIT]	 = "timewait exit",
 };
 
+static void cma_set_mgid(struct rdma_id_private *id_priv, struct sockaddr *addr,
+			 union ib_gid *mgid);
+
 const char *__attribute_const__ rdma_event_msg(enum rdma_cm_event_type event)
 {
 	size_t index = event;
@@ -345,13 +348,10 @@ struct ib_device *cma_get_ib_dev(struct cma_device *cma_dev)
 
 struct cma_multicast {
 	struct rdma_id_private *id_priv;
-	union {
-		struct ib_sa_multicast *ib;
-	} multicast;
+	struct ib_sa_multicast *sa_mc;
 	struct list_head	list;
 	void			*context;
 	struct sockaddr_storage	addr;
-	struct kref		mcref;
 	u8			join_state;
 };
 
@@ -363,12 +363,6 @@ struct cma_work {
 	struct rdma_cm_event	event;
 };
 
-struct iboe_mcast_work {
-	struct work_struct	 work;
-	struct rdma_id_private	*id;
-	struct cma_multicast	*mc;
-};
-
 union cma_ip_addr {
 	struct in6_addr ip6;
 	struct {
@@ -477,14 +471,6 @@ static void cma_attach_to_dev(struct rdma_id_private *id_priv,
 					  rdma_start_port(cma_dev->device)];
 }
 
-static inline void release_mc(struct kref *kref)
-{
-	struct cma_multicast *mc = container_of(kref, struct cma_multicast, mcref);
-
-	kfree(mc->multicast.ib);
-	kfree(mc);
-}
-
 static void cma_release_dev(struct rdma_id_private *id_priv)
 {
 	mutex_lock(&lock);
@@ -1780,14 +1766,10 @@ static void cma_release_port(struct rdma_id_private *id_priv)
 static void destroy_mc(struct rdma_id_private *id_priv,
 		       struct cma_multicast *mc)
 {
-	if (rdma_cap_ib_mcast(id_priv->id.device, id_priv->id.port_num)) {
-		ib_sa_free_multicast(mc->multicast.ib);
-		kfree(mc);
-		return;
-	}
+	if (rdma_cap_ib_mcast(id_priv->id.device, id_priv->id.port_num))
+		ib_sa_free_multicast(mc->sa_mc);
 
-	if (rdma_protocol_roce(id_priv->id.device,
-				      id_priv->id.port_num)) {
+	if (rdma_protocol_roce(id_priv->id.device, id_priv->id.port_num)) {
 		struct rdma_dev_addr *dev_addr =
 			&id_priv->id.route.addr.dev_addr;
 		struct net_device *ndev = NULL;
@@ -1796,11 +1778,15 @@ static void destroy_mc(struct rdma_id_private *id_priv,
 			ndev = dev_get_by_index(dev_addr->net,
 						dev_addr->bound_dev_if);
 		if (ndev) {
-			cma_igmp_send(ndev, &mc->multicast.ib->rec.mgid, false);
+			union ib_gid mgid;
+
+			cma_set_mgid(id_priv, (struct sockaddr *)&mc->addr,
+				     &mgid);
+			cma_igmp_send(ndev, &mgid, false);
 			dev_put(ndev);
 		}
-		kref_put(&mc->mcref, release_mc);
 	}
+	kfree(mc);
 }
 
 static void cma_leave_mc_groups(struct rdma_id_private *id_priv)
@@ -2663,6 +2649,8 @@ static void cma_work_handler(struct work_struct *_work)
 	mutex_unlock(&id_priv->handler_mutex);
 	cma_id_put(id_priv);
 out_free:
+	if (work->event.event == RDMA_CM_EVENT_MULTICAST_JOIN)
+		rdma_destroy_ah_attr(&work->event.param.ud.ah_attr);
 	kfree(work);
 }
 
@@ -4276,53 +4264,66 @@ int rdma_disconnect(struct rdma_cm_id *id)
 }
 EXPORT_SYMBOL(rdma_disconnect);
 
+static void cma_make_mc_event(int status, struct rdma_id_private *id_priv,
+			      struct ib_sa_multicast *multicast,
+			      struct rdma_cm_event *event,
+			      struct cma_multicast *mc)
+{
+	struct rdma_dev_addr *dev_addr;
+	enum ib_gid_type gid_type;
+	struct net_device *ndev;
+
+	if (!status)
+		status = cma_set_qkey(id_priv, be32_to_cpu(multicast->rec.qkey));
+	else
+		pr_debug_ratelimited("RDMA CM: MULTICAST_ERROR: failed to join multicast. status %d\n",
+				     status);
+
+	event->status = status;
+	event->param.ud.private_data = mc->context;
+	if (status) {
+		event->event = RDMA_CM_EVENT_MULTICAST_ERROR;
+		return;
+	}
+
+	dev_addr = &id_priv->id.route.addr.dev_addr;
+	ndev = dev_get_by_index(dev_addr->net, dev_addr->bound_dev_if);
+	gid_type =
+		id_priv->cma_dev
+			->default_gid_type[id_priv->id.port_num -
+					   rdma_start_port(
+						   id_priv->cma_dev->device)];
+
+	event->event = RDMA_CM_EVENT_MULTICAST_JOIN;
+	if (ib_init_ah_from_mcmember(id_priv->id.device, id_priv->id.port_num,
+				     &multicast->rec, ndev, gid_type,
+				     &event->param.ud.ah_attr)) {
+		event->event = RDMA_CM_EVENT_MULTICAST_ERROR;
+		goto out;
+	}
+
+	event->param.ud.qp_num = 0xFFFFFF;
+	event->param.ud.qkey = be32_to_cpu(multicast->rec.qkey);
+
+out:
+	if (ndev)
+		dev_put(ndev);
+}
+
 static int cma_ib_mc_handler(int status, struct ib_sa_multicast *multicast)
 {
-	struct rdma_id_private *id_priv;
 	struct cma_multicast *mc = multicast->context;
+	struct rdma_id_private *id_priv = mc->id_priv;
 	struct rdma_cm_event event = {};
 	int ret = 0;
 
-	id_priv = mc->id_priv;
 	mutex_lock(&id_priv->handler_mutex);
 	if (id_priv->state != RDMA_CM_ADDR_BOUND &&
 	    id_priv->state != RDMA_CM_ADDR_RESOLVED)
 		goto out;
 
-	if (!status)
-		status = cma_set_qkey(id_priv, be32_to_cpu(multicast->rec.qkey));
-	else
-		pr_debug_ratelimited("RDMA CM: MULTICAST_ERROR: failed to join multicast. status %d\n",
-				     status);
-	event.status = status;
-	event.param.ud.private_data = mc->context;
-	if (!status) {
-		struct rdma_dev_addr *dev_addr =
-			&id_priv->id.route.addr.dev_addr;
-		struct net_device *ndev =
-			dev_get_by_index(dev_addr->net, dev_addr->bound_dev_if);
-		enum ib_gid_type gid_type =
-			id_priv->cma_dev->default_gid_type[id_priv->id.port_num -
-			rdma_start_port(id_priv->cma_dev->device)];
-
-		event.event = RDMA_CM_EVENT_MULTICAST_JOIN;
-		ret = ib_init_ah_from_mcmember(id_priv->id.device,
-					       id_priv->id.port_num,
-					       &multicast->rec,
-					       ndev, gid_type,
-					       &event.param.ud.ah_attr);
-		if (ret)
-			event.event = RDMA_CM_EVENT_MULTICAST_ERROR;
-
-		event.param.ud.qp_num = 0xFFFFFF;
-		event.param.ud.qkey = be32_to_cpu(multicast->rec.qkey);
-		if (ndev)
-			dev_put(ndev);
-	} else
-		event.event = RDMA_CM_EVENT_MULTICAST_ERROR;
-
+	cma_make_mc_event(status, id_priv, multicast, &event, mc);
 	ret = cma_cm_event_handler(id_priv, &event);
-
 	rdma_destroy_ah_attr(&event.param.ud.ah_attr);
 	if (ret) {
 		destroy_id_handler_unlock(id_priv);
@@ -4412,23 +4413,10 @@ static int cma_join_ib_multicast(struct rdma_id_private *id_priv,
 			     IB_SA_MCMEMBER_REC_MTU |
 			     IB_SA_MCMEMBER_REC_HOP_LIMIT;
 
-	mc->multicast.ib = ib_sa_join_multicast(&sa_client, id_priv->id.device,
-						id_priv->id.port_num, &rec,
-						comp_mask, GFP_KERNEL,
-						cma_ib_mc_handler, mc);
-	return PTR_ERR_OR_ZERO(mc->multicast.ib);
-}
-
-static void iboe_mcast_work_handler(struct work_struct *work)
-{
-	struct iboe_mcast_work *mw = container_of(work, struct iboe_mcast_work, work);
-	struct cma_multicast *mc = mw->mc;
-	struct ib_sa_multicast *m = mc->multicast.ib;
-
-	mc->multicast.ib->context = mc;
-	cma_ib_mc_handler(0, m);
-	kref_put(&mc->mcref, release_mc);
-	kfree(mw);
+	mc->sa_mc = ib_sa_join_multicast(&sa_client, id_priv->id.device,
+					 id_priv->id.port_num, &rec, comp_mask,
+					 GFP_KERNEL, cma_ib_mc_handler, mc);
+	return PTR_ERR_OR_ZERO(mc->sa_mc);
 }
 
 static void cma_iboe_set_mgid(struct sockaddr *addr, union ib_gid *mgid,
@@ -4463,52 +4451,47 @@ static void cma_iboe_set_mgid(struct sockaddr *addr, union ib_gid *mgid,
 static int cma_iboe_join_multicast(struct rdma_id_private *id_priv,
 				   struct cma_multicast *mc)
 {
-	struct iboe_mcast_work *work;
+	struct cma_work *work;
 	struct rdma_dev_addr *dev_addr = &id_priv->id.route.addr.dev_addr;
 	int err = 0;
 	struct sockaddr *addr = (struct sockaddr *)&mc->addr;
 	struct net_device *ndev = NULL;
+	struct ib_sa_multicast ib;
 	enum ib_gid_type gid_type;
 	bool send_only;
 
 	send_only = mc->join_state == BIT(SENDONLY_FULLMEMBER_JOIN);
 
-	if (cma_zero_addr((struct sockaddr *)&mc->addr))
+	if (cma_zero_addr(addr))
 		return -EINVAL;
 
 	work = kzalloc(sizeof *work, GFP_KERNEL);
 	if (!work)
 		return -ENOMEM;
 
-	mc->multicast.ib = kzalloc(sizeof(struct ib_sa_multicast), GFP_KERNEL);
-	if (!mc->multicast.ib) {
-		err = -ENOMEM;
-		goto out1;
-	}
-
 	gid_type = id_priv->cma_dev->default_gid_type[id_priv->id.port_num -
 		   rdma_start_port(id_priv->cma_dev->device)];
-	cma_iboe_set_mgid(addr, &mc->multicast.ib->rec.mgid, gid_type);
+	cma_iboe_set_mgid(addr, &ib.rec.mgid, gid_type);
 
-	mc->multicast.ib->rec.pkey = cpu_to_be16(0xffff);
+	ib.rec.pkey = cpu_to_be16(0xffff);
 	if (id_priv->id.ps == RDMA_PS_UDP)
-		mc->multicast.ib->rec.qkey = cpu_to_be32(RDMA_UDP_QKEY);
+		ib.rec.qkey = cpu_to_be32(RDMA_UDP_QKEY);
 
 	if (dev_addr->bound_dev_if)
 		ndev = dev_get_by_index(dev_addr->net, dev_addr->bound_dev_if);
 	if (!ndev) {
 		err = -ENODEV;
-		goto out2;
+		goto err_free;
 	}
-	mc->multicast.ib->rec.rate = iboe_get_rate(ndev);
-	mc->multicast.ib->rec.hop_limit = 1;
-	mc->multicast.ib->rec.mtu = iboe_get_mtu(ndev->mtu);
+	ib.rec.rate = iboe_get_rate(ndev);
+	ib.rec.hop_limit = 1;
+	ib.rec.mtu = iboe_get_mtu(ndev->mtu);
 
 	if (addr->sa_family == AF_INET) {
 		if (gid_type == IB_GID_TYPE_ROCE_UDP_ENCAP) {
-			mc->multicast.ib->rec.hop_limit = IPV6_DEFAULT_HOPLIMIT;
+			ib.rec.hop_limit = IPV6_DEFAULT_HOPLIMIT;
 			if (!send_only) {
-				err = cma_igmp_send(ndev, &mc->multicast.ib->rec.mgid,
+				err = cma_igmp_send(ndev, &ib.rec.mgid,
 						    true);
 			}
 		}
@@ -4517,24 +4500,22 @@ static int cma_iboe_join_multicast(struct rdma_id_private *id_priv,
 			err = -ENOTSUPP;
 	}
 	dev_put(ndev);
-	if (err || !mc->multicast.ib->rec.mtu) {
+	if (err || !ib.rec.mtu) {
 		if (!err)
 			err = -EINVAL;
-		goto out2;
+		goto err_free;
 	}
 	rdma_ip2gid((struct sockaddr *)&id_priv->id.route.addr.src_addr,
-		    &mc->multicast.ib->rec.port_gid);
+		    &ib.rec.port_gid);
 	work->id = id_priv;
-	work->mc = mc;
-	INIT_WORK(&work->work, iboe_mcast_work_handler);
-	kref_get(&mc->mcref);
+	INIT_WORK(&work->work, cma_work_handler);
+	cma_make_mc_event(0, id_priv, &ib, &work->event, mc);
+	/* Balances with cma_id_put() in cma_work_handler */
+	cma_id_get(id_priv);
 	queue_work(cma_wq, &work->work);
-
 	return 0;
 
-out2:
-	kfree(mc->multicast.ib);
-out1:
+err_free:
 	kfree(work);
 	return err;
 }
@@ -4558,7 +4539,7 @@ int rdma_join_multicast(struct rdma_cm_id *id, struct sockaddr *addr,
 	    !cma_comp(id_priv, RDMA_CM_ADDR_RESOLVED))
 		return -EINVAL;
 
-	mc = kmalloc(sizeof *mc, GFP_KERNEL);
+	mc = kzalloc(sizeof(*mc), GFP_KERNEL);
 	if (!mc)
 		return -ENOMEM;
 
@@ -4568,7 +4549,6 @@ int rdma_join_multicast(struct rdma_cm_id *id, struct sockaddr *addr,
 	mc->join_state = join_state;
 
 	if (rdma_protocol_roce(id->device, id->port_num)) {
-		kref_init(&mc->mcref);
 		ret = cma_iboe_join_multicast(id_priv, mc);
 		if (ret)
 			goto out_err;
-- 
2.25.1




  parent reply	other threads:[~2020-10-27 16:56 UTC|newest]

Thread overview: 639+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-27 13:45 [PATCH 5.8 000/633] 5.8.17-rc1 review Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 001/633] xgb4: handle 4-tuple PEDIT to NAT mode translation Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 002/633] ibmveth: Switch order of ibmveth_helper calls Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 003/633] ibmveth: Identify ingress large send packets Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 004/633] ipv4: Restore flowi4_oif update before call to xfrm_lookup_route Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 005/633] mlx4: handle non-napi callers to napi_poll Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 006/633] net: dsa: microchip: fix race condition Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 007/633] net: fec: Fix phy_device lookup for phy_reset_after_clk_enable() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 008/633] net: fec: Fix PHY init after phy_reset_after_clk_enable() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 009/633] net: fix pos incrementment in ipv6_route_seq_next Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 010/633] net: ipa: skip suspend/resume activities if not set up Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 011/633] net: mptcp: make DACK4/DACK8 usage consistent among all subflows Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 012/633] net: sched: Fix suspicious RCU usage while accessing tcf_tunnel_info Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 013/633] net/smc: fix use-after-free of delayed events Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 014/633] net/smc: fix valid DMBE buffer sizes Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 015/633] net/tls: sendfile fails with ktls offload Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.8 016/633] net: usb: qmi_wwan: add Cellient MPL200 card Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 017/633] tipc: fix the skb_unshare() in tipc_buf_append() Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 018/633] socket: fix option SO_TIMESTAMPING_NEW Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 019/633] socket: dont clear SOCK_TSTAMP_NEW when SO_TIMESTAMPNS is disabled Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 020/633] can: m_can_platform: dont call m_can_class_suspend in runtime suspend Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 021/633] can: j1935: j1939_tp_tx_dat_new(): fix missing initialization of skbcnt Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 022/633] net: j1939: j1939_session_fresh_new(): " Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 023/633] net/ipv4: always honour route mtu during forwarding Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 024/633] net_sched: remove a redundant goto chain check Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 025/633] r8169: fix data corruption issue on RTL8402 Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 026/633] binder: fix UAF when releasing todo list Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 027/633] ALSA: bebob: potential info leak in hwdep_read() Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 028/633] ALSA: hda: fix jack detection with Realtek codecs when in D3 Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 029/633] ALSA: hda/hdmi: fix incorrect locking in hdmi_pcm_close Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 030/633] tipc: re-configure queue limit for broadcast link Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 031/633] tipc: fix incorrect setting window for bcast link Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 032/633] chelsio/chtls: fix socket lock Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 033/633] chelsio/chtls: correct netdevice for vlan interface Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 034/633] chelsio/chtls: fix panic when server is on ipv6 Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 035/633] chelsio/chtls: Fix panic when listen on multiadapter Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 036/633] chelsio/chtls: correct function return and return type Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 037/633] chelsio/chtls: fix writing freed memory Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 038/633] ibmvnic: save changed mac address to adapter->mac_addr Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 039/633] icmp: randomize the global rate limiter Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 040/633] mptcp: initialize mptcp_options_receiveds ahmac Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 041/633] net: ftgmac100: Fix Aspeed ast2600 TX hang issue Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 042/633] net: hdlc: In hdlc_rcv, check to make sure dev is an HDLC device Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 043/633] net: hdlc_raw_eth: Clear the IFF_TX_SKB_SHARING flag after calling ether_setup Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 044/633] net: Properly typecast int values to set sk_max_pacing_rate Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 045/633] net/sched: act_ct: Fix adding udp port mangle operation Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 046/633] net/sched: act_tunnel_key: fix OOB write in case of IPv6 ERSPAN tunnels Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 047/633] nexthop: Fix performance regression in nexthop deletion Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 048/633] nfc: Ensure presence of NFC_ATTR_FIRMWARE_NAME attribute in nfc_genl_fw_download() Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 049/633] r8169: fix operation under forced interrupt threading Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 050/633] selftests: forwarding: Add missing rp_filter configuration Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 051/633] selftests: rtnetlink: load fou module for kci_test_encap_fou() test Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 052/633] tcp: fix to update snd_wl1 in bulk receiver fast path Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 053/633] net: ethernet: mtk-star-emac: select REGMAP_MMIO Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 054/633] net/sched: act_gate: Unlock ->tcfa_lock in tc_setup_flow_action() Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 055/633] ALSA: hda - Dont register a cb func if it is registered already Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 056/633] ALSA: hda - Fix the return value if cb func is already registered Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 057/633] ALSA: usb-audio: Line6 Pod Go interface requires static clock rate quirk Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 058/633] ALSA: hda/realtek - The front Mic on a HP machine doesnt work Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 059/633] ALSA: hda/realtek - set mic to auto detect on a HP AIO machine Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 060/633] ALSA: hda/realtek - Add mute Led support for HP Elitebook 845 G7 Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 061/633] ALSA: hda/realtek: Enable audio jacks of ASUS D700SA with ALC887 Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 062/633] cifs: remove bogus debug code Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 063/633] cifs: Return the error from crypt_message when enc/dec key not found Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 064/633] SMB3: Resolve data corruption of TCP server info fields Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 065/633] SMB3.1.1: Fix ids returned in POSIX query dir Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 066/633] smb3: do not try to cache root directory if dir leases not supported Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 067/633] smb3: fix stat when special device file and mounted with modefromsid Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 068/633] arm64: Make use of ARCH_WORKAROUND_1 even when KVM is not enabled Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 069/633] KVM: nVMX: Morph notification vector IRQ on nested VM-Enter to pending PI Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 070/633] KVM: nVMX: Reset the segment cache when stuffing guest segs Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 071/633] KVM: nVMX: Reload vmcs01 if getting vmcs12s pages fails Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 072/633] KVM: x86/mmu: Commit zap of remaining invalid pages when recovering lpages Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 073/633] KVM: x86: Intercept LA57 to inject #GP fault when its reserved Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 074/633] KVM: SVM: Initialize prev_ga_tag before use Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 075/633] ima: Dont ignore errors from crypto_shash_update() Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.8 076/633] crypto: algif_aead - Do not set MAY_BACKLOG on the async path Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 077/633] crypto: caam/qi - add fallback for XTS with more than 8B IV Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 078/633] crypto: caam/qi - add support for more XTS key lengths Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 079/633] RAS/CEC: Fix cec_init() prototype Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 080/633] sched/fair: Fix wrong negative conversion in find_energy_efficient_cpu() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 081/633] microblaze: fix kbuild redundant file warning Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 082/633] EDAC/i5100: Fix error handling order in i5100_init_one() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 083/633] EDAC/aspeed: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 084/633] EDAC/ti: " Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 085/633] perf/x86/intel/ds: Fix x86_pmu_stop warning for large PEBS Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 086/633] x86/fpu: Allow multiple bits in clearcpuid= parameter Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 087/633] arm64: kprobe: add checks for ARMv8.3-PAuth combined instructions Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 088/633] drivers/perf: xgene_pmu: Fix uninitialized resource struct Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 089/633] drivers/perf: thunderx2_pmu: Fix memory resource error handling Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 090/633] sched/fair: Fix wrong cpu selecting from isolated domain Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 091/633] sched/fair: Use dst group while checking imbalance for NUMA balancer Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 092/633] arm64: perf: Add missing ISB in armv8pmu_enable_counter() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 093/633] perf/x86/intel/uncore: Update Ice Lake uncore units Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 094/633] perf/x86/intel/uncore: Reduce the number of CBOX counters Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 095/633] perf/x86/intel/uncore: Fix the scale of the IMC free-running events Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 096/633] x86/nmi: Fix nmi_handle() duration miscalculation Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 097/633] x86/events/amd/iommu: Fix sizeof mismatch Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 098/633] pinctrl: qcom: Set IRQCHIP_SET_TYPE_MASKED and IRQCHIP_MASK_ON_SUSPEND flags Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 099/633] pinctrl: qcom: Use return value from irq_set_wake() call Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 100/633] perf/x86: Fix n_pair for cancelled txn Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 101/633] perf/core: Fix race in the perf_mmap_close() function Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 102/633] crypto: algif_skcipher - EBUSY on aio should be an error Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 103/633] crypto: mediatek - Fix wrong return value in mtk_desc_ring_alloc() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 104/633] crypto: ixp4xx - Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 105/633] crypto: picoxcell - Fix potential race condition bug Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 106/633] media: vivid: Fix global-out-of-bounds read in precalculate_color() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 107/633] media: tuner-simple: fix regression in simple_set_radio_freq Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 108/633] crypto: ccree - fix runtime PM imbalance on error Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 109/633] media: Revert "media: exynos4-is: Add missed check for pinctrl_lookup_state()" Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 110/633] media: hantro: h264: Get the correct fallback reference buffer Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 111/633] media: hantro: postproc: Fix motion vector space allocation Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 112/633] media: ov5640: Correct Bit Div register in clock tree diagram Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 113/633] media: m5mols: Check function pointer in m5mols_sensor_power Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 114/633] fscrypt: restrict IV_INO_LBLK_32 to ino_bits <= 32 Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 115/633] media: uvcvideo: Set media controller entity functions Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 116/633] media: uvcvideo: Silence shift-out-of-bounds warning Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 117/633] media: staging/intel-ipu3: css: Correctly reset some memory Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 118/633] media: omap3isp: Fix memleak in isp_probe Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 119/633] media: i2c: ov5640: Remain in power down for DVP mode unless streaming Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 120/633] media: i2c: ov5640: Separate out mipi configuration from s_power Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 121/633] media: i2c: ov5640: Enable data pins on poweron for DVP mode Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 122/633] media: rcar_drif: Fix fwnode reference leak when parsing DT Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 123/633] media: rcar_drif: Allocate v4l2_async_subdev dynamically Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 124/633] media: rcar-csi2: " Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 125/633] spi: fsi: Handle 9 to 15 byte transfers lengths Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 126/633] spi: fsi: Fix use of the bneq+ sequencer instruction Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 127/633] spi: fsi: Implement restricted size for certain controllers Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 128/633] spi: dw-pci: free previously allocated IRQs if desc->setup() fails Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 129/633] crypto: omap-sham - fix digcnt register handling with export/import Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 130/633] hwmon: (pmbus/max34440) Fix status register reads for MAX344{51,60,61} Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 131/633] hwmon: (w83627ehf) Fix a resource leak in probe Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 132/633] cypto: mediatek - fix leaks in mtk_desc_ring_alloc Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 133/633] crypto: stm32/crc32 - Avoid lock if hardware is already used Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 134/633] crypto: sun8i-ce - handle endianness of t_common_ctl Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 135/633] media: mx2_emmaprp: Fix memleak in emmaprp_probe Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.8 136/633] media: tc358743: initialize variable Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 137/633] media: tc358743: cleanup tc358743_cec_isr Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 138/633] media: rcar-vin: Fix a reference count leak Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 139/633] media: rockchip/rga: " Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 140/633] media: platform: fcp: " Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 141/633] media: camss: " Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 142/633] media: s5p-mfc: " Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 143/633] media: stm32-dcmi: " Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 144/633] media: ti-vpe: Fix a missing check and " Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 145/633] regulator: resolve supply after creating regulator Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 146/633] pinctrl: bcm: fix kconfig dependency warning when !GPIOLIB Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 147/633] spi: spi-s3c64xx: swap s3c64xx_spi_set_cs() and s3c64xx_enable_datapath() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 148/633] spi: spi-s3c64xx: Check return values Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 149/633] hwmon: (bt1-pvt) Test sensor power supply on probe Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 150/633] hwmon: (bt1-pvt) Cache current update timeout Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 151/633] hwmon: (bt1-pvt) Wait for the completion with timeout Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 152/633] btrfs: add owner and fs_info to alloc_state io_tree Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 153/633] blk-mq: move cancel of hctx->run_work to the front of blk_exit_queue Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 154/633] ath10k: provide survey info as accumulated data Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 155/633] drm/vkms: fix xrgb on compute crc Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 156/633] Bluetooth: hci_uart: Cancel init work before unregistering Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 157/633] drm/amd/display: Fix wrong return value in dm_update_plane_state() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 158/633] drm/vgem: add missing platform_device_unregister() in vgem_init() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 159/633] drm/vkms: add missing platform_device_unregister() in vkms_init() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 160/633] drm: panel: Fix bus format for OrtusTech COM43H4M85ULC panel Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 161/633] ath6kl: prevent potential array overflow in ath6kl_add_new_sta() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 162/633] ath9k: Fix potential out of bounds in ath9k_htc_txcompletion_cb() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 163/633] ath10k: Fix the size used in a dma_free_coherent() call in an error handling path Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 164/633] wcn36xx: Fix reported 802.11n rx_highest rate wcn3660/wcn3680 Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 165/633] ASoC: qcom: lpass-platform: fix memory leak Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 166/633] ASoC: qcom: lpass-cpu: fix concurrency issue Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 167/633] ath11k: Fix possible memleak in ath11k_qmi_init_service Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 168/633] brcmfmac: check ndev pointer Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 169/633] mwifiex: Do not use GFP_KERNEL in atomic context Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 170/633] staging: rtl8192u: " Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 171/633] drm/amd/display: fix potential integer overflow when shifting 32 bit variable bl_pwm Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 172/633] selftests/bpf: Fix test_vmlinux test to use bpf_probe_read_user() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 173/633] drm/gma500: fix error check Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 174/633] scsi: qla4xxx: Fix an error handling path in qla4xxx_get_host_stats() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 175/633] scsi: qla2xxx: Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 176/633] scsi: qla2xxx: Fix wrong return value in qlt_chk_unresolv_exchg() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 177/633] scsi: qla2xxx: Fix wrong return value in qla_nvme_register_hba() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 178/633] scsi: csiostor: Fix wrong return value in csio_hw_prep_fw() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 179/633] libbpf: Fix unintentional success return code in bpf_object__load Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 180/633] wilc1000: Fix memleak in wilc_sdio_probe Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 181/633] wilc1000: Fix memleak in wilc_bus_probe Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 182/633] rtw88: dont treat NULL pointer as an array Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 183/633] backlight: sky81452-backlight: Fix refcount imbalance on error Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 184/633] staging: emxx_udc: Fix passing of NULL to dma_alloc_coherent() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 185/633] VMCI: check return value of get_user_pages_fast() for errors Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 186/633] mm/error_inject: Fix allow_error_inject function signatures Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 187/633] drm: panel: Fix bpc for OrtusTech COM43H4M85ULC panel Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 188/633] samples/bpf: Fix to xdpsock to avoid recycling frames Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 189/633] drm/crc-debugfs: Fix memleak in crc_control_write Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 190/633] Bluetooth: Clear suspend tasks on unregister Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 191/633] selftests: vm: add fragment CONFIG_GUP_BENCHMARK Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 192/633] scsi: ufs: Make ufshcd_print_trs() consider UFSHCD_QUIRK_PRDT_BYTE_GRAN Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 193/633] binder: Remove bogus warning on failed same-process transaction Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 194/633] tty: serial: earlycon dependency Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 195/633] tty: hvcs: Dont NULL tty->driver_data until hvcs_cleanup() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.8 196/633] pty: do tty_flip_buffer_push without port->lock in pty_write Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 197/633] pwm: lpss: Fix off by one error in base_unit math in pwm_lpss_prepare() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 198/633] pwm: lpss: Add range limit check for the base_unit register value Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 199/633] drivers/virt/fsl_hypervisor: Fix error handling path Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 200/633] ath11k: fix a double free and a memory leak Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 201/633] video: fbdev: vga16fb: fix setting of pixclock because a pass-by-value error Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 202/633] video: fbdev: sis: fix null ptr dereference Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 203/633] video: fbdev: radeon: Fix memleak in radeonfb_pci_register Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 204/633] ASoC: fsl: imx-es8328: add missing put_device() call in imx_es8328_probe() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 205/633] scsi: ufs: ufs-mediatek: Fix HOST_PA_TACTIVATE quirk Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 206/633] HID: roccat: add bounds checking in kone_sysfs_write_settings() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 207/633] drm/msm: Avoid div-by-zero in dpu_crtc_atomic_check() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 208/633] drm/panfrost: Ensure GPU quirks are always initialised Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 209/633] iomap: Clear page error before beginning a write Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 210/633] iomap: Mark read blocks uptodate in write_begin Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 211/633] selftests/lkdtm: Use "comm" instead of "diff" for dmesg Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 212/633] Bluetooth: Re-order clearing suspend tasks Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 213/633] pinctrl: mcp23s08: Fix mcp23x17_regmap initialiser Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 214/633] pinctrl: mcp23s08: Fix mcp23x17 precious range Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 215/633] pinctrl: devicetree: Keep deferring even on timeout Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 216/633] drm/msm/adreno: fix probe without iommu Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 217/633] net/mlx5: Fix uninitialized variable warning Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 218/633] net/mlx5: Dont call timecounter cyc2time directly from 1PPS flow Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 219/633] scsi: mpt3sas: Fix sync irqs Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 220/633] net: stmmac: Fix incorrect location to set real_num_rx|tx_queues Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 221/633] net: stmmac: use netif_tx_start|stop_all_queues() function Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 222/633] xfs: force the log after remapping a synchronous-writes file Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 223/633] cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 224/633] drm: mxsfb: check framebuffer pitch Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 225/633] ima: Fix NULL pointer dereference in ima_file_hash Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 226/633] ASoC: topology: disable size checks for bytes_ext controls if needed Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 227/633] ASoC: tlv320adcx140: Fix digital gain range Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 228/633] coresight: etm4x: Fix etm4_count race by moving cpuhp callbacks to init Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 229/633] coresight: fix offset by one error in counting ports Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 230/633] coresight: cti: disclaim device only when its claimed Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 231/633] coresight: cti: remove pm_runtime_get_sync() from CPU hotplug Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 232/633] coresight: etm4x: Ensure default perf settings filter user/kernel Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 233/633] coresight: etm4x: Fix issues within reset interface of sysfs Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 234/633] coresight: cti: Write regsiters directly in cti_enable_hw() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 235/633] coresight: etm4x: Handle unreachable sink in perf mode Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 236/633] coresight: etm4x: Fix issues on trcseqevr access Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 237/633] nvmem: core: fix missing of_node_put() in of_nvmem_device_get() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 238/633] selftests: mptcp: interpret \n as a new line Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 239/633] selftests/bpf: Fix endianness issue in sk_assign Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 240/633] selftests/bpf: Fix endianness issue in test_sockopt_sk Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 241/633] xhci: dont create endpoint debugfs entry before ring buffer is set Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 242/633] net: dsa: rtl8366: Check validity of passed VLANs Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 243/633] net: dsa: rtl8366: Refactor VLAN/PVID init Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 244/633] net: dsa: rtl8366: Skip PVID setting if not requested Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 245/633] net: wilc1000: clean up resource in error path of init mon interface Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 246/633] ASoC: tas2770: Fix calling reset in probe Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 247/633] ASoC: tas2770: Add missing bias level power states Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 248/633] ASoC: tas2770: Fix required DT properties in the code Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 249/633] ASoC: tas2770: Fix error handling with update_bits Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 250/633] ASoC: tlv320aic32x4: Fix bdiv clock rate derivation Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 251/633] net: dsa: rtl8366rb: Support all 4096 VLANs Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 252/633] ASoC: SOF: control: add size checks for ext_bytes control .put() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 253/633] ASoC: tas2770: Fix unbalanced calls to pm_runtime Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 254/633] spi: omap2-mcspi: Improve performance waiting for CHSTAT Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 255/633] ath11k: Add checked value for ath11k_ahb_remove Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.8 256/633] ath6kl: wmi: prevent a shift wrapping bug in ath6kl_wmi_delete_pstream_cmd() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 257/633] drm: rcar-du: Put reference to VSP device Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 258/633] phy: rockchip-dphy-rx0: Include linux/delay.h Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 259/633] dmaengine: dmatest: Check list for emptiness before access its last entry Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 260/633] ASoC: cros_ec_codec: fix kconfig dependency warning for SND_SOC_CROS_EC_CODEC Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 261/633] misc: mic: scif: Fix error handling path Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 262/633] ALSA: seq: oss: Avoid mutex lock for a long-time ioctl Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 263/633] usb: dwc2: Fix parameter type in function pointer prototype Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 264/633] usb: dwc3: core: Properly default unspecified speed Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 265/633] usb: dwc2: Add missing cleanups when usb_add_gadget_udc() fails Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 266/633] rtw88: Fix probe error handling race with firmware loading Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 267/633] rtw88: Fix potential probe error handling race with wow " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 268/633] mt76: mt7915: fix possible memory leak in mt7915_mcu_add_beacon Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 269/633] quota: clear padding in v2r1_mem2diskdqb() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 270/633] slimbus: core: check get_addr before removing laddr ida Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 271/633] slimbus: core: do not enter to clock pause mode in core Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 272/633] slimbus: qcom-ngd-ctrl: disable ngd in qmi server down callback Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 273/633] ASoC: fsl_sai: Instantiate snd_soc_dai_driver Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 274/633] HID: hid-input: fix stylus battery reporting Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 275/633] tty: hvc: fix link error with CONFIG_SERIAL_CORE_CONSOLE=n Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 276/633] nvmem: core: fix possibly memleak when use nvmem_cell_info_to_nvmem_cell() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 277/633] hv: clocksource: Add notrace attribute to read_hv_sched_clock_*() functions Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 278/633] nl80211: fix OBSS PD min and max offset validation Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 279/633] iomap: Use kzalloc to allocate iomap_page Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 280/633] coresight: etm: perf: Fix warning caused by etm_setup_aux failure Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 281/633] coresight: cti: Fix remove sysfs link error Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 282/633] coresight: cti: Fix bug clearing sysfs links on callback Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 283/633] coresight: etm4x: Fix save and restore of TRCVMIDCCTLR1 register Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 284/633] ibmvnic: set up 200GBPS speed Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 285/633] bpf: disallow attaching modify_return tracing functions to other BPF programs Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 286/633] selftests: Remove fmod_ret from test_overhead Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 287/633] qtnfmac: fix resource leaks on unsupported iftype error return path Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 288/633] pinctrl: aspeed: Use the right pinconf mask Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 289/633] iommu/qcom: add missing put_device() call in qcom_iommu_of_xlate() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 290/633] iio: adc: stm32-adc: fix runtime autosuspend delay when slow polling Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 291/633] net: enic: Cure the enic api locking trainwreck Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 292/633] mfd: sm501: Fix leaks in probe() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 293/633] ASoC: wm_adsp: Pass full name to snd_ctl_notify Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 294/633] iwlwifi: mvm: split a print to avoid a WARNING in ROC Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 295/633] iwlwifi: dbg: remove no filter condition Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 296/633] iwlwifi: dbg: run init_cfg function once per driver load Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 297/633] usb: gadget: f_ncm: fix ncm_bitrate for SuperSpeed and above Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 298/633] usb: gadget: u_serial: clear suspended flag when disconnecting Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 299/633] usb: gadget: u_ether: enable qmult on SuperSpeed Plus as well Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 300/633] bus: mhi: core: Fix the building of MHI module Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 301/633] ocxl: fix kconfig dependency warning for OCXL Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 302/633] nl80211: fix non-split wiphy information Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 303/633] usb: dwc2: Fix INTR OUT transfers in DDMA mode Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 304/633] scsi: target: tcmu: Fix warning: page may be used uninitialized Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 305/633] scsi: be2iscsi: Fix a theoretical leak in beiscsi_create_eqs() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 306/633] dmaengine: ioat: Allocate correct size for descriptor chunk Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 307/633] ipmi_si: Fix wrong return value in try_smi_init() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 308/633] tracing: Fix parse_synth_field() error handling Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 309/633] platform/x86: mlx-platform: Remove PSU EEPROM configuration Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 310/633] mwifiex: fix double free Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 311/633] drm/panfrost: increase readl_relaxed_poll_timeout values Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 312/633] ipvs: clear skb->tstamp in forwarding path Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 313/633] bpf, sockmap: Remove skb_orphan and let normal skb_kfree do cleanup Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 314/633] net: korina: fix kfree of rx/tx descriptor array Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 315/633] netfilter: nf_log: missing vlan offload tag and proto Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.8 316/633] mm/swapfile.c: fix potential memory leak in sys_swapon Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 317/633] mm/memcg: fix device private memcg accounting Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 318/633] mm, oom_adj: dont loop through tasks in __set_oom_adj when not necessary Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 319/633] fs: fix NULL dereference due to data race in prepend_path() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 320/633] selftests/ftrace: Change synthetic event name for inter-event-combined test Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 321/633] tracing: Handle synthetic event array field type checking correctly Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 322/633] i3c: master add i3c_master_attach_boardinfo to preserve boardinfo Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 323/633] IB/mlx4: Fix starvation in paravirt mux/demux Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 324/633] IB/mlx4: Adjust delayed work when a dup is observed Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 325/633] powerpc/pseries: Fix missing of_node_put() in rng_init() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 326/633] powerpc/icp-hv: Fix missing of_node_put() in success path Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 327/633] rcu/tree: Force quiescent state on callback overload Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 328/633] rcutorture: Properly set rcu_fwds for OOM handling Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 329/633] RDMA/ucma: Fix locking for ctx->events_reported Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 330/633] RDMA/ucma: Add missing locking around rdma_leave_multicast() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 331/633] mtd: lpddr: fix excessive stack usage with clang Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 332/633] RDMA/hns: Add a check for current state before modifying QP Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 333/633] RDMA/umem: Fix signature of stub ib_umem_find_best_pgsz() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 334/633] powerpc/pseries: explicitly reschedule during drmem_lmb list traversal Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 335/633] pseries/drmem: dont cache node id in drmem_lmb struct Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 336/633] RDMA/mlx5: Fix potential race between destroy and CQE poll Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 337/633] mtd: mtdoops: Dont write panic data twice Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 338/633] perf tools: Make GTK2 support opt-in Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 339/633] tools feature: Add missing -lzstd to the fast path feature detection Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 340/633] ARM: 9007/1: l2c: fix prefetch bits init in L2X0_AUX_CTRL using DT values Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 341/633] xfs: fix finobt btree block recovery ordering Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 342/633] m68knommu: include SDHC support only when hardware has it Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 343/633] arc: plat-hsdk: fix kconfig dependency warning when !RESET_CONTROLLER Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 344/633] ida: Free allocated bitmap in error path Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 345/633] xfs: limit entries returned when counting fsmap records Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 346/633] xfs: fix deadlock and streamline xfs_getfsmap performance Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 347/633] nfs: add missing "posix" local_lock constant table definition Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 348/633] xfs: fix high key handling in the rt allocators query_range function Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 349/633] RDMA/rtrs-srv: Incorporate ib_register_client into rtrs server init Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 350/633] RDMA/core: Delete function indirection for alloc/free kernel CQ Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 351/633] RDMA: Allow fail of destroy CQ Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 352/633] RDMA/umem: Fix ib_umem_find_best_pgsz() for mappings that cross a page boundary Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 353/633] RDMA/umem: Prevent small pages from being returned by ib_umem_find_best_pgsz() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 354/633] RDMA/qedr: Fix qp structure memory leak Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 355/633] RDMA/qedr: Fix doorbell setting Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 356/633] RDMA/qedr: Fix use of uninitialized field Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 357/633] RDMA/qedr: Fix return code if accept is called on a destroyed qp Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 358/633] RDMA/qedr: Fix inline size returned for iWARP Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 359/633] powerpc/pseries/svm: Allocate SWIOTLB buffer anywhere in memory Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 360/633] powerpc/watchpoint: Fix quadword instruction handling on p10 predecessors Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 361/633] powerpc/watchpoint: Fix handling of vector instructions Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 362/633] powerpc/watchpoint: Add hw_len wherever missing Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 363/633] powerpc/book3s64/hash/4k: Support large linear mapping range with 4K Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 364/633] powerpc/tau: Use appropriate temperature sample interval Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 365/633] powerpc/tau: Convert from timer to workqueue Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 366/633] powerpc/tau: Remove duplicated set_thresholds() call Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 367/633] powerpc/tau: Check processor type before enabling TAU interrupt Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 368/633] powerpc/tau: Disable TAU between measurements Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 369/633] powerpc/kasan: Fix CONFIG_KASAN_VMALLOC for 8xx Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 370/633] powerpc/64s/radix: Fix mm_cpumask trimming race vs kthread_use_mm Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 371/633] RDMA/cma: Combine cma_ndev_work with cma_work Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 372/633] RDMA/cma: Remove dead code for kernel rdmacm multicast Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 373/633] RDMA/cma: Consolidate the destruction of a cma_multicast in one place Greg Kroah-Hartman
2020-10-27 13:51 ` Greg Kroah-Hartman [this message]
2020-10-27 13:51 ` [PATCH 5.8 375/633] perf intel-pt: Fix "context_switch event has no tid" error Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.8 376/633] RDMA/qedr: Fix resource leak in qedr_create_qp Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 377/633] RDMA/hns: Set the unsupported wr opcode Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 378/633] RDMA/mlx5: Use set_mkc_access_pd_addr_fields() in reg_create() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 379/633] RDMA/mlx5: Make mkeys always owned by the kernels PD when not enabled Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 380/633] RDMA/mlx5: Disable IB_DEVICE_MEM_MGT_EXTENSIONS if IB_WR_REG_MR cant work Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 381/633] i40iw: Add support to make destroy QP synchronous Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 382/633] perf stat: Skip duration_time in setup_system_wide Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 383/633] RDMA/hns: Add check for the validity of sl configuration Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 384/633] RDMA/hns: Solve the overflow of the calc_pg_sz() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 385/633] RDMA/hns: Fix the wrong value of rnr_retry when querying qp Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 386/633] RDMA/hns: Fix configuration of ack_req_freq in QPC Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 387/633] RDMA/hns: Fix missing sq_sig_type when querying QP Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 388/633] mtd: hyperbus: hbmc-am654: Fix direct mapping setup flash access Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 389/633] mtd: rawnand: stm32_fmc2: fix a buffer overflow Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 390/633] mtd: rawnand: vf610: disable clk on error handling path in probe Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 391/633] mtd: spinand: gigadevice: Only one dummy byte in QUADIO Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 392/633] mtd: spinand: gigadevice: Add QE Bit Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 393/633] mtd: rawnand: ams-delta: Fix non-OF build warning Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 394/633] kdb: Fix pager search for multi-line strings Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 395/633] overflow: Include header file with SIZE_MAX declaration Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 396/633] RDMA/ipoib: Set rtnl_link_ops for ipoib interfaces Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 397/633] powerpc/64: fix irq replay missing preempt Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 398/633] powerpc/64: fix irq replay pt_regs->softe value Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 399/633] powerpc/perf: Exclude pmc5/6 from the irrelevant PMU group constraints Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 400/633] powerpc/perf/hv-gpci: Fix starting index value Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 401/633] perf stat: Fix out of bounds CPU map access when handling armv8_pmu events Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 402/633] i3c: master: Fix error return in cdns_i3c_master_probe() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 403/633] powerpc/papr_scm: Add PAPR command family to pass-through command-set Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 404/633] cpufreq: powernv: Fix frame-size-overflow in powernv_cpufreq_reboot_notifier Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 405/633] IB/rdmavt: Fix sizeof mismatch Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 406/633] RDMA/rxe: Fix skb lifetime in rxe_rcv_mcast_pkt() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 407/633] f2fs: reject CASEFOLD inode flag without casefold feature Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 408/633] um: vector: Use GFP_ATOMIC under spin lock Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 409/633] um: time-travel: Fix IRQ handling in time_travel_handle_message() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 410/633] maiblox: mediatek: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 411/633] perf trace: Fix off by ones in memset() after realloc() in arches using libaudit Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 412/633] selftests/powerpc: Fix eeh-basic.sh exit codes Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 413/633] f2fs: wait for sysfs kobject removal before freeing f2fs_sb_info Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 414/633] afs: Fix rapid cell addition/removal by not using RCU on cells tree Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 415/633] afs: Fix cell refcounting by splitting the usage counter Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 416/633] afs: Fix cell purging with aliases Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 417/633] afs: Fix cell removal Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 418/633] RDMA/rxe: Handle skb_clone() failure in rxe_recv.c Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 419/633] mm/page_owner: change split_page_owner to take a count Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 420/633] lib/crc32.c: fix trivial typo in preprocessor condition Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 421/633] ramfs: fix nommu mmap with gaps in the page cache Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 422/633] rapidio: fix error handling path Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 423/633] rapidio: fix the missed put_device() for rio_mport_add_riodev Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 424/633] mailbox: avoid timer start from callback Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 425/633] clk: meson: axg-audio: separate axg and g12a regmap tables Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 426/633] rtc: ds1307: Clear OSF flag on DS1388 when setting time Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 427/633] i2c: rcar: Auto select RESET_CONTROLLER Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 428/633] clk: meson: g12a: mark fclk_div2 as critical Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 429/633] PCI: designware-ep: Fix the Header Type check Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 430/633] PCI: aardvark: Fix compilation on s390 Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 431/633] PCI: aardvark: Check for errors from pci_bridge_emul_init() call Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 432/633] PCI: iproc: Set affinity mask on MSI interrupts Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 433/633] rpmsg: smd: Fix a kobj leak in in qcom_smd_parse_edge() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 434/633] rpmsg: Avoid double-free in mtk_rpmsg_register_device Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 435/633] PCI/IOV: Mark VFs as not implementing PCI_COMMAND_MEMORY Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.8 436/633] vfio: add a singleton check for vfio_group_pin_pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 437/633] s390/pci: Mark all VFs as not implementing PCI_COMMAND_MEMORY Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 438/633] vfio/pci: Decouple PCI_COMMAND_MEMORY bit checks from is_virtfn Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 439/633] vfio: fix a missed vfio group put in vfio_pin_pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 440/633] vfio/type1: fix dirty bitmap calculation in vfio_dma_rw Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 441/633] clk: qcom: gcc-sdm660: Fix wrong parent_map Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 442/633] clk: keystone: sci-clk: fix parsing assigned-clock data during probe Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 443/633] pwm: rockchip: Keep enabled PWMs running while probing Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 444/633] pwm: img: Fix null pointer access in probe Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 445/633] remoteproc/mediatek: fix null pointer dereference on null scp pointer Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 446/633] PCI: hv: Fix hibernation in case interrupts are not re-created Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 447/633] clk: rockchip: Initialize hw to error to avoid undefined behavior Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 448/633] clk: mediatek: add UART0 clock support Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 449/633] module: statically initialize init section freeing data Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 450/633] clk: at91: clk-main: update key before writing AT91_CKGR_MOR Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 451/633] clk: bcm2835: add missing release if devm_clk_hw_register fails Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 452/633] kbuild: deb-pkg: do not build linux-headers package if CONFIG_MODULES=n Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 453/633] watchdog: Fix memleak in watchdog_cdev_register Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 454/633] watchdog: Use put_device on error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 455/633] watchdog: sp5100: Fix definition of EFCH_PM_DECODEEN3 Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 456/633] svcrdma: fix bounce buffers for unaligned offsets and multiple pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 457/633] ext4: fix dead loop in ext4_mb_new_blocks Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 458/633] ext4: discard preallocations before releasing group lock Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 459/633] ext4: disallow modifying DAX inode flag if inline_data has been set Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 460/633] ext4: limit entries returned when counting fsmap records Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 461/633] vfio/pci: Clear token on bypass registration failure Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 462/633] vfio iommu type1: Fix memory leak in vfio_iommu_type1_pin_pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 463/633] clk: imx8mq: Fix usdhc parents order Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 464/633] SUNRPC: fix copying of multiple pages in gss_read_proxy_verf() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 465/633] platform/chrome: cros_ec_lightbar: Reduce ligthbar get version command Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 466/633] Input: elants_i2c - fix typo for an attribute to show calibration count Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 467/633] Input: imx6ul_tsc - clean up some errors in imx6ul_tsc_resume() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 468/633] Input: stmfts - fix a & vs && typo Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 469/633] Input: ep93xx_keypad - fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 470/633] Input: omap4-keypad " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 471/633] Input: twl4030_keypad " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 472/633] Input: sun4i-ps2 " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 473/633] KVM: x86: emulating RDPID failure shall return #UD rather than #GP Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 474/633] scsi: bfa: Fix error return in bfad_pci_init() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 475/633] arm64: mm: use single quantity to represent the PA to VA translation Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 476/633] netfilter: conntrack: connection timeout after re-register Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 477/633] netfilter: ebtables: Fixes dropping of small packets in bridge nat Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 478/633] netsec: ignore phy-mode device property on ACPI systems Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 479/633] netfilter: nf_fwd_netdev: clear timestamp in forwarding path Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 480/633] soc: xilinx: Fix error code in zynqmp_pm_probe() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 481/633] arm64: dts: meson: vim3: correct led polarity Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 482/633] ARM: dts: imx6sl: fix rng node Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 483/633] ARM: at91: pm: of_node_put() after its usage Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 484/633] ARM: s3c24xx: fix mmc gpio lookup tables Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 485/633] ARM: dts: sun8i: r40: bananapi-m2-ultra: Fix dcdc1 regulator Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 486/633] arm64: dts: allwinner: h5: remove Mali GPU PMU module Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 487/633] memory: omap-gpmc: Fix a couple off by ones Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 488/633] memory: omap-gpmc: Fix build error without CONFIG_OF Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 489/633] arm64: dts: qcom: sc7180: Fix the LLCC base register size Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 490/633] memory: fsl-corenet-cf: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 491/633] firmware: arm_scmi: Fix NULL pointer dereference in mailbox_chan_free Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 492/633] arm64: dts: imx8mq: Add missing interrupts to GPC Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 493/633] arm64: dts: qcom: sc7180: Drop flags on mdss irqs Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 494/633] soc: qcom: pdr: Fixup array type of get_domain_list_resp message Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 495/633] arm64: dts: qcom: msm8916: Remove one more thermal trip point unit name Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.8 496/633] arm64: dts: qcom: pm8916: Remove invalid reg size from wcd_codec Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 497/633] arm64: dts: qcom: msm8916: Fix MDP/DSI interrupts Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 498/633] soc: qcom: apr: Fixup the error displayed on lookup failure Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 499/633] dt-bindings: crypto: Specify that allwinner, sun8i-a33-crypto needs reset Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 500/633] arm64: dts: renesas: r8a77990: Fix MSIOF1 DMA channels Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 501/633] arm64: dts: renesas: r8a774c0: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 502/633] arm64: dts: mt8173: elm: Fix nor_flash node property Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 503/633] arm64: dts: actions: limit address range for pinctrl node Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 504/633] ARM: dts: owl-s500: Fix incorrect PPI interrupt specifiers Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 505/633] soc: fsl: qbman: Fix return value on success Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 506/633] ARM: OMAP2+: Restore MPU power domain if cpu_cluster_pm_enter() fails Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 507/633] ARM: dts: stm32: Fix sdmmc2 pins on AV96 Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 508/633] ARM: dts: stm32: lxa-mc1: Fix kernel warning about PHY delays Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 509/633] ARM: dts: stm32: Move ethernet PHY into DH SoM DT Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 510/633] ARM: dts: stm32: Swap PHY reset GPIO and TSC2004 IRQ on DHCOM SOM Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 511/633] ARM: dts: stm32: Fix DH PDK2 display PWM channel Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 512/633] ARM: dts: iwg20d-q7-common: Fix touch controller probe failure Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 513/633] soc: mediatek: cmdq: add clear option in cmdq_pkt_wfe api Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 514/633] drm/mediatek: reduce clear event Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 515/633] arm64: dts: zynqmp: Remove additional compatible string for i2c IPs Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 516/633] ARM: dts: meson8: remove two invalid interrupt lines from the GPU node Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 517/633] lightnvm: fix out-of-bounds write to array devices->info[] Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 518/633] powerpc/powernv/dump: Fix race while processing OPAL dump Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 519/633] powerpc/pseries: Avoid using addr_to_pfn in real mode Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 520/633] nvmet: fix uninitialized work for zero kato Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 521/633] KVM: ioapic: break infinite recursion on lazy EOI Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 522/633] NTB: hw: amd: fix an issue about leak system resources Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 523/633] ntb: intel: Fix memleak in intel_ntb_pci_probe Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 524/633] sched/features: Fix !CONFIG_JUMP_LABEL case Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 525/633] perf: correct SNOOPX field offset Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 526/633] i2c: core: Restore acpi_walk_dep_device_list() getting called after registering the ACPI i2c devs Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 527/633] md/bitmap: fix memory leak of temporary bitmap Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 528/633] block: ratelimit handle_bad_sector() message Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 529/633] x86/dumpstack: Fix misleading instruction pointer error message Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 530/633] crypto: ccp - fix error handling Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 531/633] x86/asm: Replace __force_order with a memory clobber Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 532/633] x86/mce: Add Skylake quirk for patrol scrub reported errors Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 533/633] media: firewire: fix memory leak Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 534/633] media: ati_remote: sanity check for both endpoints Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 535/633] media: st-delta: Fix reference count leak in delta_run_work Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 536/633] media: sti: Fix reference count leaks Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 537/633] media: exynos4-is: Fix several reference count leaks due to pm_runtime_get_sync Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 538/633] media: exynos4-is: Fix a reference count leak " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 539/633] media: exynos4-is: Fix a reference count leak Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 540/633] media: vsp1: Fix runtime PM imbalance on error Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 541/633] media: platform: s3c-camif: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 542/633] media: platform: sti: hva: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 543/633] media: bdisp: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 544/633] media: media/pci: prevent memory leak in bttv_probe Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 545/633] x86/mce: Annotate mce_rd/wrmsrl() with noinstr Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 546/633] crypto: hisilicon - fixed memory allocation error Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 547/633] spi: fsi: Fix clock running too fast Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 548/633] x86/mce: Make mce_rdmsrl() panic on an inaccessible MSR Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 549/633] media: uvcvideo: Ensure all probed info is returned to v4l2 Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 550/633] mmc: sdio: Check for CISTPL_VERS_1 buffer size Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 551/633] media: saa7134: avoid a shift overflow Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 552/633] media: atomisp: fix memleak in ia_css_stream_create Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 553/633] media: venus: fixes for list corruption Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 554/633] fs: dlm: fix configfs memory leak Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 555/633] media: venus: core: Fix error handling in probe Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.8 556/633] media: venus: core: Fix runtime PM imbalance in venus_probe Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 557/633] ntfs: add check for mft record size in superblock Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 558/633] ip_gre: set dev->hard_header_len and dev->needed_headroom properly Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 559/633] mac80211: handle lack of sband->bitrates in rates Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 560/633] staging: wfx: fix handling of MMIC error Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 561/633] libbpf: Close map fd if init map slots failed Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 562/633] bpf: Use raw_spin_trylock() for pcpu_freelist_push/pop in NMI Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 563/633] PM: hibernate: remove the bogus call to get_gendisk() in software_resume() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 564/633] scsi: mvumi: Fix error return in mvumi_io_attach() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 565/633] scsi: target: core: Add CONTROL field for trace events Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 566/633] mic: vop: copy data to kernel space then write to io memory Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 567/633] misc: vop: add round_up(x,4) for vring_size to avoid kernel panic Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 568/633] usb: dwc3: Add splitdisable quirk for Hisilicon Kirin Soc Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 569/633] usb: gadget: function: printer: fix use-after-free in __lock_acquire Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 570/633] rtw88: pci: Power cycle device during shutdown Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 571/633] udf: Limit sparing table size Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 572/633] udf: Avoid accessing uninitialized data on failed inode read Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 573/633] rtw88: increse the size of rx buffer size Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 574/633] selftests/bpf: Fix overflow tests to reflect iter size increase Greg Kroah-Hartman
2020-10-27 15:42   ` Alan Maguire
2020-10-28 22:08     ` Sasha Levin
2020-10-27 13:55 ` [PATCH 5.8 575/633] USB: cdc-acm: handle broken union descriptors Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 576/633] usb: dwc3: simple: add support for Hikey 970 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 577/633] habanalabs: cast to u64 before shift > 31 bits Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 578/633] can: flexcan: flexcan_chip_stop(): add error handling and propagate error value Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 579/633] HID: multitouch: Lenovo X1 Tablet Gen3 trackpoint and buttons Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 580/633] ath9k: hif_usb: fix race condition between usb_get_urb() and usb_kill_anchored_urbs() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 581/633] drm/panfrost: add Amlogic GPU integration quirks Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 582/633] drm/panfrost: add amlogic reset quirk callback Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 583/633] drm/panfrost: add support for vendor quirk Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 584/633] bpf: Limit callers stack depth 256 for subprogs with tailcalls Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 585/633] misc: rtsx: Fix memory leak in rtsx_pci_probe Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 586/633] reiserfs: only call unlock_new_inode() if I_NEW Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 587/633] opp: Prevent memory leak in dev_pm_opp_attach_genpd() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 588/633] xfs: make sure the rt allocator doesnt run off the end Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 589/633] usb: ohci: Default to per-port over-current protection Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 590/633] drm: fix double free for gbo in drm_gem_vram_init and drm_gem_vram_create Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 591/633] Bluetooth: Only mark socket zapped after unlocking Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 592/633] drm/msm/a6xx: fix a potential overflow issue Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 593/633] iomap: fix WARN_ON_ONCE() from unprivileged users Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 594/633] scsi: ibmvfc: Fix error return in ibmvfc_probe() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 595/633] scsi: qla2xxx: Warn if done() or free() are called on an already freed srb Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 596/633] selftests/bpf: Fix test_sysctl_loop{1, 2} failure due to clang change Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 597/633] brcmsmac: fix memory leak in wlc_phy_attach_lcnphy Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 598/633] rtl8xxxu: prevent potential memory leak Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 599/633] Fix use after free in get_capset_info callback Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 600/633] HID: ite: Add USB id match for Acer One S1003 keyboard dock Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 601/633] scsi: qedf: Return SUCCESS if stale rport is encountered Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 602/633] scsi: qedi: Mark all connections for recovery on link down event Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 603/633] scsi: qedi: Protect active command list to avoid list corruption Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 604/633] scsi: qedi: Fix list_del corruption while removing active I/O Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 605/633] fbmem: add margin check to fb_check_caps() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 606/633] tty: ipwireless: fix error handling Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 607/633] Bluetooth: btusb: Fix memleak in btusb_mtk_submit_wmt_recv_urb Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 608/633] ipvs: Fix uninit-value in do_ip_vs_set_ctl() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 609/633] reiserfs: Fix memory leak in reiserfs_parse_options() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 610/633] s390/qeth: strictly order bridge address events Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 611/633] mwifiex: dont call del_timer_sync() on uninitialized timer Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 612/633] ALSA: hda/ca0132 - Add AE-7 microphone selection commands Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 613/633] ALSA: hda/ca0132 - Add new quirk ID for SoundBlaster AE-7 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 614/633] ASoC: SOF: Add topology filename override based on dmi data match Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 615/633] ASoC: Intel: sof_rt5682: override quirk data for tgl_max98373_rt5682 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.8 616/633] scsi: smartpqi: Avoid crashing kernel for controller issues Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 617/633] brcm80211: fix possible memleak in brcmf_proto_msgbuf_attach Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 618/633] usb: core: Solve race condition in anchor cleanup functions Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 619/633] scsi: ufs: ufs-qcom: Fix race conditions caused by ufs_qcom_testbus_config() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 620/633] drm/amd/display: Screen corruption on dual displays (DP+USB-C) Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 621/633] dmaengine: dw: Add DMA-channels mask cell support Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 622/633] dmaengine: dw: Activate FIFO-mode for memory peripherals only Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 623/633] ath10k: check idx validity in __ath10k_htt_rx_ring_fill_n() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 624/633] net: korina: cast KSEG0 address to pointer in kfree Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 625/633] s390/qeth: dont let HW override the configured port role Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 626/633] tty: serial: lpuart: fix lpuart32_write usage Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 627/633] tty: serial: fsl_lpuart: fix lpuart32_poll_get_char Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 628/633] usb: gadget: bcm63xx_udc: fix up the error of undeclared usb_debug_root Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 629/633] usb: cdc-acm: add quirk to blacklist ETAS ES58X devices Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 630/633] USB: cdc-wdm: Make wdm_flush() interruptible and add wdm_fsync() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 631/633] usb: cdns3: gadget: free interrupt after gadget has deleted Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 632/633] eeprom: at25: set minimum read/write access stride to 1 Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.8 633/633] usb: gadget: f_ncm: allow using NCM in SuperSpeed Plus gadgets Greg Kroah-Hartman
2020-10-27 18:50 ` [PATCH 5.8 000/633] 5.8.17-rc1 review Jeffrin Thalakkottoor
2020-10-28  6:26 ` Naresh Kamboju
     [not found] ` <20201028171138.GF118534@roeck-us.net>
2020-10-28 19:56   ` Guenter Roeck

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=20201027135540.244587512@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jgg@nvidia.com \
    --cc=leonro@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@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).