public inbox for stable@vger.kernel.org
 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, Kamal Heib <kamalheib1@gmail.com>,
	Yi Zhang <yi.zhang@redhat.com>, kernel test robot <lkp@intel.com>,
	Bernard Metzler <bmt@zurich.ibm.com>,
	Jason Gunthorpe <jgg@nvidia.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 138/340] RDMA/siw: Fix handling of zero-sized Read and Receive Queues.
Date: Mon,  1 Mar 2021 17:11:22 +0100	[thread overview]
Message-ID: <20210301161055.109143551@linuxfoundation.org> (raw)
In-Reply-To: <20210301161048.294656001@linuxfoundation.org>

From: Bernard Metzler <bmt@zurich.ibm.com>

[ Upstream commit 661f385961f06f36da24cf408d461f988d0c39ad ]

During connection setup, the application may choose to zero-size inbound
and outbound READ queues, as well as the Receive queue.  This patch fixes
handling of zero-sized queues, but not prevents it.

Kamal Heib says in an initial error report:

 When running the blktests over siw the following shift-out-of-bounds is
 reported, this is happening because the passed IRD or ORD from the ulp
 could be zero which will lead to unexpected behavior when calling
 roundup_pow_of_two(), fix that by blocking zero values of ORD or IRD.

   UBSAN: shift-out-of-bounds in ./include/linux/log2.h:57:13
   shift exponent 64 is too large for 64-bit type 'long unsigned int'
   CPU: 20 PID: 3957 Comm: kworker/u64:13 Tainted: G S     5.10.0-rc6 #2
   Hardware name: Dell Inc. PowerEdge R630/02C2CP, BIOS 2.1.5 04/11/2016
   Workqueue: iw_cm_wq cm_work_handler [iw_cm]
   Call Trace:
    dump_stack+0x99/0xcb
    ubsan_epilogue+0x5/0x40
    __ubsan_handle_shift_out_of_bounds.cold.11+0xb4/0xf3
    ? down_write+0x183/0x3d0
    siw_qp_modify.cold.8+0x2d/0x32 [siw]
    ? __local_bh_enable_ip+0xa5/0xf0
    siw_accept+0x906/0x1b60 [siw]
    ? xa_load+0x147/0x1f0
    ? siw_connect+0x17a0/0x17a0 [siw]
    ? lock_downgrade+0x700/0x700
    ? siw_get_base_qp+0x1c2/0x340 [siw]
    ? _raw_spin_unlock_irqrestore+0x39/0x40
    iw_cm_accept+0x1f4/0x430 [iw_cm]
    rdma_accept+0x3fa/0xb10 [rdma_cm]
    ? check_flush_dependency+0x410/0x410
    ? cma_rep_recv+0x570/0x570 [rdma_cm]
    nvmet_rdma_queue_connect+0x1a62/0x2680 [nvmet_rdma]
    ? nvmet_rdma_alloc_cmds+0xce0/0xce0 [nvmet_rdma]
    ? lock_release+0x56e/0xcc0
    ? lock_downgrade+0x700/0x700
    ? lock_downgrade+0x700/0x700
    ? __xa_alloc_cyclic+0xef/0x350
    ? __xa_alloc+0x2d0/0x2d0
    ? rdma_restrack_add+0xbe/0x2c0 [ib_core]
    ? __ww_mutex_die+0x190/0x190
    cma_cm_event_handler+0xf2/0x500 [rdma_cm]
    iw_conn_req_handler+0x910/0xcb0 [rdma_cm]
    ? _raw_spin_unlock_irqrestore+0x39/0x40
    ? trace_hardirqs_on+0x1c/0x150
    ? cma_ib_handler+0x8a0/0x8a0 [rdma_cm]
    ? __kasan_kmalloc.constprop.7+0xc1/0xd0
    cm_work_handler+0x121c/0x17a0 [iw_cm]
    ? iw_cm_reject+0x190/0x190 [iw_cm]
    ? trace_hardirqs_on+0x1c/0x150
    process_one_work+0x8fb/0x16c0
    ? pwq_dec_nr_in_flight+0x320/0x320
    worker_thread+0x87/0xb40
    ? __kthread_parkme+0xd1/0x1a0
    ? process_one_work+0x16c0/0x16c0
    kthread+0x35f/0x430
    ? kthread_mod_delayed_work+0x180/0x180
    ret_from_fork+0x22/0x30

Fixes: a531975279f3 ("rdma/siw: main include file")
Fixes: f29dd55b0236 ("rdma/siw: queue pair methods")
Fixes: 8b6a361b8c48 ("rdma/siw: receive path")
Fixes: b9be6f18cf9e ("rdma/siw: transmit path")
Fixes: 303ae1cdfdf7 ("rdma/siw: application interface")
Link: https://lore.kernel.org/r/20210108125845.1803-1-bmt@zurich.ibm.com
Reported-by: Kamal Heib <kamalheib1@gmail.com>
Reported-by: Yi Zhang <yi.zhang@redhat.com>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Bernard Metzler <bmt@zurich.ibm.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/infiniband/sw/siw/siw.h       |   2 +-
 drivers/infiniband/sw/siw/siw_qp.c    | 271 ++++++++++++++------------
 drivers/infiniband/sw/siw/siw_qp_rx.c |  26 ++-
 drivers/infiniband/sw/siw/siw_qp_tx.c |   4 +-
 drivers/infiniband/sw/siw/siw_verbs.c |  20 +-
 5 files changed, 177 insertions(+), 146 deletions(-)

diff --git a/drivers/infiniband/sw/siw/siw.h b/drivers/infiniband/sw/siw/siw.h
index dba4535494abd..4d8bc995b4503 100644
--- a/drivers/infiniband/sw/siw/siw.h
+++ b/drivers/infiniband/sw/siw/siw.h
@@ -667,7 +667,7 @@ static inline struct siw_sqe *orq_get_free(struct siw_qp *qp)
 {
 	struct siw_sqe *orq_e = orq_get_tail(qp);
 
-	if (orq_e && READ_ONCE(orq_e->flags) == 0)
+	if (READ_ONCE(orq_e->flags) == 0)
 		return orq_e;
 
 	return NULL;
diff --git a/drivers/infiniband/sw/siw/siw_qp.c b/drivers/infiniband/sw/siw/siw_qp.c
index b4317480cee74..5927ac5923dd8 100644
--- a/drivers/infiniband/sw/siw/siw_qp.c
+++ b/drivers/infiniband/sw/siw/siw_qp.c
@@ -199,26 +199,26 @@ void siw_qp_llp_write_space(struct sock *sk)
 
 static int siw_qp_readq_init(struct siw_qp *qp, int irq_size, int orq_size)
 {
-	irq_size = roundup_pow_of_two(irq_size);
-	orq_size = roundup_pow_of_two(orq_size);
-
-	qp->attrs.irq_size = irq_size;
-	qp->attrs.orq_size = orq_size;
-
-	qp->irq = vzalloc(irq_size * sizeof(struct siw_sqe));
-	if (!qp->irq) {
-		siw_dbg_qp(qp, "irq malloc for %d failed\n", irq_size);
-		qp->attrs.irq_size = 0;
-		return -ENOMEM;
+	if (irq_size) {
+		irq_size = roundup_pow_of_two(irq_size);
+		qp->irq = vzalloc(irq_size * sizeof(struct siw_sqe));
+		if (!qp->irq) {
+			qp->attrs.irq_size = 0;
+			return -ENOMEM;
+		}
 	}
-	qp->orq = vzalloc(orq_size * sizeof(struct siw_sqe));
-	if (!qp->orq) {
-		siw_dbg_qp(qp, "orq malloc for %d failed\n", orq_size);
-		qp->attrs.orq_size = 0;
-		qp->attrs.irq_size = 0;
-		vfree(qp->irq);
-		return -ENOMEM;
+	if (orq_size) {
+		orq_size = roundup_pow_of_two(orq_size);
+		qp->orq = vzalloc(orq_size * sizeof(struct siw_sqe));
+		if (!qp->orq) {
+			qp->attrs.orq_size = 0;
+			qp->attrs.irq_size = 0;
+			vfree(qp->irq);
+			return -ENOMEM;
+		}
 	}
+	qp->attrs.irq_size = irq_size;
+	qp->attrs.orq_size = orq_size;
 	siw_dbg_qp(qp, "ORD %d, IRD %d\n", orq_size, irq_size);
 	return 0;
 }
@@ -288,13 +288,14 @@ int siw_qp_mpa_rts(struct siw_qp *qp, enum mpa_v2_ctrl ctrl)
 	if (ctrl & MPA_V2_RDMA_WRITE_RTR)
 		wqe->sqe.opcode = SIW_OP_WRITE;
 	else if (ctrl & MPA_V2_RDMA_READ_RTR) {
-		struct siw_sqe *rreq;
+		struct siw_sqe *rreq = NULL;
 
 		wqe->sqe.opcode = SIW_OP_READ;
 
 		spin_lock(&qp->orq_lock);
 
-		rreq = orq_get_free(qp);
+		if (qp->attrs.orq_size)
+			rreq = orq_get_free(qp);
 		if (rreq) {
 			siw_read_to_orq(rreq, &wqe->sqe);
 			qp->orq_put++;
@@ -877,135 +878,88 @@ void siw_read_to_orq(struct siw_sqe *rreq, struct siw_sqe *sqe)
 	rreq->num_sge = 1;
 }
 
-/*
- * Must be called with SQ locked.
- * To avoid complete SQ starvation by constant inbound READ requests,
- * the active IRQ will not be served after qp->irq_burst, if the
- * SQ has pending work.
- */
-int siw_activate_tx(struct siw_qp *qp)
+static int siw_activate_tx_from_sq(struct siw_qp *qp)
 {
-	struct siw_sqe *irqe, *sqe;
+	struct siw_sqe *sqe;
 	struct siw_wqe *wqe = tx_wqe(qp);
 	int rv = 1;
 
-	irqe = &qp->irq[qp->irq_get % qp->attrs.irq_size];
-
-	if (irqe->flags & SIW_WQE_VALID) {
-		sqe = sq_get_next(qp);
-
-		/*
-		 * Avoid local WQE processing starvation in case
-		 * of constant inbound READ request stream
-		 */
-		if (sqe && ++qp->irq_burst >= SIW_IRQ_MAXBURST_SQ_ACTIVE) {
-			qp->irq_burst = 0;
-			goto skip_irq;
-		}
-		memset(wqe->mem, 0, sizeof(*wqe->mem) * SIW_MAX_SGE);
-		wqe->wr_status = SIW_WR_QUEUED;
-
-		/* start READ RESPONSE */
-		wqe->sqe.opcode = SIW_OP_READ_RESPONSE;
-		wqe->sqe.flags = 0;
-		if (irqe->num_sge) {
-			wqe->sqe.num_sge = 1;
-			wqe->sqe.sge[0].length = irqe->sge[0].length;
-			wqe->sqe.sge[0].laddr = irqe->sge[0].laddr;
-			wqe->sqe.sge[0].lkey = irqe->sge[0].lkey;
-		} else {
-			wqe->sqe.num_sge = 0;
-		}
-
-		/* Retain original RREQ's message sequence number for
-		 * potential error reporting cases.
-		 */
-		wqe->sqe.sge[1].length = irqe->sge[1].length;
-
-		wqe->sqe.rkey = irqe->rkey;
-		wqe->sqe.raddr = irqe->raddr;
+	sqe = sq_get_next(qp);
+	if (!sqe)
+		return 0;
 
-		wqe->processed = 0;
-		qp->irq_get++;
+	memset(wqe->mem, 0, sizeof(*wqe->mem) * SIW_MAX_SGE);
+	wqe->wr_status = SIW_WR_QUEUED;
 
-		/* mark current IRQ entry free */
-		smp_store_mb(irqe->flags, 0);
+	/* First copy SQE to kernel private memory */
+	memcpy(&wqe->sqe, sqe, sizeof(*sqe));
 
+	if (wqe->sqe.opcode >= SIW_NUM_OPCODES) {
+		rv = -EINVAL;
 		goto out;
 	}
-	sqe = sq_get_next(qp);
-	if (sqe) {
-skip_irq:
-		memset(wqe->mem, 0, sizeof(*wqe->mem) * SIW_MAX_SGE);
-		wqe->wr_status = SIW_WR_QUEUED;
-
-		/* First copy SQE to kernel private memory */
-		memcpy(&wqe->sqe, sqe, sizeof(*sqe));
-
-		if (wqe->sqe.opcode >= SIW_NUM_OPCODES) {
+	if (wqe->sqe.flags & SIW_WQE_INLINE) {
+		if (wqe->sqe.opcode != SIW_OP_SEND &&
+		    wqe->sqe.opcode != SIW_OP_WRITE) {
 			rv = -EINVAL;
 			goto out;
 		}
-		if (wqe->sqe.flags & SIW_WQE_INLINE) {
-			if (wqe->sqe.opcode != SIW_OP_SEND &&
-			    wqe->sqe.opcode != SIW_OP_WRITE) {
-				rv = -EINVAL;
-				goto out;
-			}
-			if (wqe->sqe.sge[0].length > SIW_MAX_INLINE) {
-				rv = -EINVAL;
-				goto out;
-			}
-			wqe->sqe.sge[0].laddr = (uintptr_t)&wqe->sqe.sge[1];
-			wqe->sqe.sge[0].lkey = 0;
-			wqe->sqe.num_sge = 1;
+		if (wqe->sqe.sge[0].length > SIW_MAX_INLINE) {
+			rv = -EINVAL;
+			goto out;
 		}
-		if (wqe->sqe.flags & SIW_WQE_READ_FENCE) {
-			/* A READ cannot be fenced */
-			if (unlikely(wqe->sqe.opcode == SIW_OP_READ ||
-				     wqe->sqe.opcode ==
-					     SIW_OP_READ_LOCAL_INV)) {
-				siw_dbg_qp(qp, "cannot fence read\n");
-				rv = -EINVAL;
-				goto out;
-			}
-			spin_lock(&qp->orq_lock);
+		wqe->sqe.sge[0].laddr = (uintptr_t)&wqe->sqe.sge[1];
+		wqe->sqe.sge[0].lkey = 0;
+		wqe->sqe.num_sge = 1;
+	}
+	if (wqe->sqe.flags & SIW_WQE_READ_FENCE) {
+		/* A READ cannot be fenced */
+		if (unlikely(wqe->sqe.opcode == SIW_OP_READ ||
+			     wqe->sqe.opcode ==
+				     SIW_OP_READ_LOCAL_INV)) {
+			siw_dbg_qp(qp, "cannot fence read\n");
+			rv = -EINVAL;
+			goto out;
+		}
+		spin_lock(&qp->orq_lock);
 
-			if (!siw_orq_empty(qp)) {
-				qp->tx_ctx.orq_fence = 1;
-				rv = 0;
-			}
-			spin_unlock(&qp->orq_lock);
+		if (qp->attrs.orq_size && !siw_orq_empty(qp)) {
+			qp->tx_ctx.orq_fence = 1;
+			rv = 0;
+		}
+		spin_unlock(&qp->orq_lock);
 
-		} else if (wqe->sqe.opcode == SIW_OP_READ ||
-			   wqe->sqe.opcode == SIW_OP_READ_LOCAL_INV) {
-			struct siw_sqe *rreq;
+	} else if (wqe->sqe.opcode == SIW_OP_READ ||
+		   wqe->sqe.opcode == SIW_OP_READ_LOCAL_INV) {
+		struct siw_sqe *rreq;
 
-			wqe->sqe.num_sge = 1;
+		if (unlikely(!qp->attrs.orq_size)) {
+			/* We negotiated not to send READ req's */
+			rv = -EINVAL;
+			goto out;
+		}
+		wqe->sqe.num_sge = 1;
 
-			spin_lock(&qp->orq_lock);
+		spin_lock(&qp->orq_lock);
 
-			rreq = orq_get_free(qp);
-			if (rreq) {
-				/*
-				 * Make an immediate copy in ORQ to be ready
-				 * to process loopback READ reply
-				 */
-				siw_read_to_orq(rreq, &wqe->sqe);
-				qp->orq_put++;
-			} else {
-				qp->tx_ctx.orq_fence = 1;
-				rv = 0;
-			}
-			spin_unlock(&qp->orq_lock);
+		rreq = orq_get_free(qp);
+		if (rreq) {
+			/*
+			 * Make an immediate copy in ORQ to be ready
+			 * to process loopback READ reply
+			 */
+			siw_read_to_orq(rreq, &wqe->sqe);
+			qp->orq_put++;
+		} else {
+			qp->tx_ctx.orq_fence = 1;
+			rv = 0;
 		}
-
-		/* Clear SQE, can be re-used by application */
-		smp_store_mb(sqe->flags, 0);
-		qp->sq_get++;
-	} else {
-		rv = 0;
+		spin_unlock(&qp->orq_lock);
 	}
+
+	/* Clear SQE, can be re-used by application */
+	smp_store_mb(sqe->flags, 0);
+	qp->sq_get++;
 out:
 	if (unlikely(rv < 0)) {
 		siw_dbg_qp(qp, "error %d\n", rv);
@@ -1014,6 +968,65 @@ out:
 	return rv;
 }
 
+/*
+ * Must be called with SQ locked.
+ * To avoid complete SQ starvation by constant inbound READ requests,
+ * the active IRQ will not be served after qp->irq_burst, if the
+ * SQ has pending work.
+ */
+int siw_activate_tx(struct siw_qp *qp)
+{
+	struct siw_sqe *irqe;
+	struct siw_wqe *wqe = tx_wqe(qp);
+
+	if (!qp->attrs.irq_size)
+		return siw_activate_tx_from_sq(qp);
+
+	irqe = &qp->irq[qp->irq_get % qp->attrs.irq_size];
+
+	if (!(irqe->flags & SIW_WQE_VALID))
+		return siw_activate_tx_from_sq(qp);
+
+	/*
+	 * Avoid local WQE processing starvation in case
+	 * of constant inbound READ request stream
+	 */
+	if (sq_get_next(qp) && ++qp->irq_burst >= SIW_IRQ_MAXBURST_SQ_ACTIVE) {
+		qp->irq_burst = 0;
+		return siw_activate_tx_from_sq(qp);
+	}
+	memset(wqe->mem, 0, sizeof(*wqe->mem) * SIW_MAX_SGE);
+	wqe->wr_status = SIW_WR_QUEUED;
+
+	/* start READ RESPONSE */
+	wqe->sqe.opcode = SIW_OP_READ_RESPONSE;
+	wqe->sqe.flags = 0;
+	if (irqe->num_sge) {
+		wqe->sqe.num_sge = 1;
+		wqe->sqe.sge[0].length = irqe->sge[0].length;
+		wqe->sqe.sge[0].laddr = irqe->sge[0].laddr;
+		wqe->sqe.sge[0].lkey = irqe->sge[0].lkey;
+	} else {
+		wqe->sqe.num_sge = 0;
+	}
+
+	/* Retain original RREQ's message sequence number for
+	 * potential error reporting cases.
+	 */
+	wqe->sqe.sge[1].length = irqe->sge[1].length;
+
+	wqe->sqe.rkey = irqe->rkey;
+	wqe->sqe.raddr = irqe->raddr;
+
+	wqe->processed = 0;
+	qp->irq_get++;
+
+	/* mark current IRQ entry free */
+	smp_store_mb(irqe->flags, 0);
+
+	return 1;
+}
+
 /*
  * Check if current CQ state qualifies for calling CQ completion
  * handler. Must be called with CQ lock held.
diff --git a/drivers/infiniband/sw/siw/siw_qp_rx.c b/drivers/infiniband/sw/siw/siw_qp_rx.c
index 0520e70084f97..c7c38f7fd29d6 100644
--- a/drivers/infiniband/sw/siw/siw_qp_rx.c
+++ b/drivers/infiniband/sw/siw/siw_qp_rx.c
@@ -680,6 +680,10 @@ static int siw_init_rresp(struct siw_qp *qp, struct siw_rx_stream *srx)
 	}
 	spin_lock_irqsave(&qp->sq_lock, flags);
 
+	if (unlikely(!qp->attrs.irq_size)) {
+		run_sq = 0;
+		goto error_irq;
+	}
 	if (tx_work->wr_status == SIW_WR_IDLE) {
 		/*
 		 * immediately schedule READ response w/o
@@ -712,8 +716,9 @@ static int siw_init_rresp(struct siw_qp *qp, struct siw_rx_stream *srx)
 		/* RRESP now valid as current TX wqe or placed into IRQ */
 		smp_store_mb(resp->flags, SIW_WQE_VALID);
 	} else {
-		pr_warn("siw: [QP %u]: irq %d exceeded %d\n", qp_id(qp),
-			qp->irq_put % qp->attrs.irq_size, qp->attrs.irq_size);
+error_irq:
+		pr_warn("siw: [QP %u]: IRQ exceeded or null, size %d\n",
+			qp_id(qp), qp->attrs.irq_size);
 
 		siw_init_terminate(qp, TERM_ERROR_LAYER_RDMAP,
 				   RDMAP_ETYPE_REMOTE_OPERATION,
@@ -740,6 +745,9 @@ static int siw_orqe_start_rx(struct siw_qp *qp)
 	struct siw_sqe *orqe;
 	struct siw_wqe *wqe = NULL;
 
+	if (unlikely(!qp->attrs.orq_size))
+		return -EPROTO;
+
 	/* make sure ORQ indices are current */
 	smp_mb();
 
@@ -796,8 +804,8 @@ int siw_proc_rresp(struct siw_qp *qp)
 		 */
 		rv = siw_orqe_start_rx(qp);
 		if (rv) {
-			pr_warn("siw: [QP %u]: ORQ empty at idx %d\n",
-				qp_id(qp), qp->orq_get % qp->attrs.orq_size);
+			pr_warn("siw: [QP %u]: ORQ empty, size %d\n",
+				qp_id(qp), qp->attrs.orq_size);
 			goto error_term;
 		}
 		rv = siw_rresp_check_ntoh(srx, frx);
@@ -1290,11 +1298,13 @@ static int siw_rdmap_complete(struct siw_qp *qp, int error)
 					      wc_status);
 		siw_wqe_put_mem(wqe, SIW_OP_READ);
 
-		if (!error)
+		if (!error) {
 			rv = siw_check_tx_fence(qp);
-		else
-			/* Disable current ORQ eleement */
-			WRITE_ONCE(orq_get_current(qp)->flags, 0);
+		} else {
+			/* Disable current ORQ element */
+			if (qp->attrs.orq_size)
+				WRITE_ONCE(orq_get_current(qp)->flags, 0);
+		}
 		break;
 
 	case RDMAP_RDMA_READ_REQ:
diff --git a/drivers/infiniband/sw/siw/siw_qp_tx.c b/drivers/infiniband/sw/siw/siw_qp_tx.c
index e7cd04eda04ac..424918eb1cd4a 100644
--- a/drivers/infiniband/sw/siw/siw_qp_tx.c
+++ b/drivers/infiniband/sw/siw/siw_qp_tx.c
@@ -1107,8 +1107,8 @@ next_wqe:
 		/*
 		 * RREQ may have already been completed by inbound RRESP!
 		 */
-		if (tx_type == SIW_OP_READ ||
-		    tx_type == SIW_OP_READ_LOCAL_INV) {
+		if ((tx_type == SIW_OP_READ ||
+		     tx_type == SIW_OP_READ_LOCAL_INV) && qp->attrs.orq_size) {
 			/* Cleanup pending entry in ORQ */
 			qp->orq_put--;
 			qp->orq[qp->orq_put % qp->attrs.orq_size].flags = 0;
diff --git a/drivers/infiniband/sw/siw/siw_verbs.c b/drivers/infiniband/sw/siw/siw_verbs.c
index 1b1a40db529c6..2c3704f0f10fa 100644
--- a/drivers/infiniband/sw/siw/siw_verbs.c
+++ b/drivers/infiniband/sw/siw/siw_verbs.c
@@ -387,13 +387,23 @@ struct ib_qp *siw_create_qp(struct ib_pd *pd,
 	if (rv)
 		goto err_out;
 
+	num_sqe = attrs->cap.max_send_wr;
+	num_rqe = attrs->cap.max_recv_wr;
+
 	/* All queue indices are derived from modulo operations
 	 * on a free running 'get' (consumer) and 'put' (producer)
 	 * unsigned counter. Having queue sizes at power of two
 	 * avoids handling counter wrap around.
 	 */
-	num_sqe = roundup_pow_of_two(attrs->cap.max_send_wr);
-	num_rqe = roundup_pow_of_two(attrs->cap.max_recv_wr);
+	if (num_sqe)
+		num_sqe = roundup_pow_of_two(num_sqe);
+	else {
+		/* Zero sized SQ is not supported */
+		rv = -EINVAL;
+		goto err_out;
+	}
+	if (num_rqe)
+		num_rqe = roundup_pow_of_two(num_rqe);
 
 	if (qp->kernel_verbs)
 		qp->sendq = vzalloc(num_sqe * sizeof(struct siw_sqe));
@@ -401,7 +411,6 @@ struct ib_qp *siw_create_qp(struct ib_pd *pd,
 		qp->sendq = vmalloc_user(num_sqe * sizeof(struct siw_sqe));
 
 	if (qp->sendq == NULL) {
-		siw_dbg(base_dev, "SQ size %d alloc failed\n", num_sqe);
 		rv = -ENOMEM;
 		goto err_out_xa;
 	}
@@ -434,7 +443,6 @@ struct ib_qp *siw_create_qp(struct ib_pd *pd,
 				vmalloc_user(num_rqe * sizeof(struct siw_rqe));
 
 		if (qp->recvq == NULL) {
-			siw_dbg(base_dev, "RQ size %d alloc failed\n", num_rqe);
 			rv = -ENOMEM;
 			goto err_out_xa;
 		}
@@ -982,9 +990,9 @@ int siw_post_receive(struct ib_qp *base_qp, const struct ib_recv_wr *wr,
 	unsigned long flags;
 	int rv = 0;
 
-	if (qp->srq) {
+	if (qp->srq || qp->attrs.rq_size == 0) {
 		*bad_wr = wr;
-		return -EOPNOTSUPP; /* what else from errno.h? */
+		return -EINVAL;
 	}
 	if (!qp->kernel_verbs) {
 		siw_dbg_qp(qp, "no kernel post_recv for user mapped sq\n");
-- 
2.27.0




  parent reply	other threads:[~2021-03-01 17:44 UTC|newest]

Thread overview: 348+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-01 16:09 [PATCH 5.4 000/340] 5.4.102-rc1 review Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 001/340] vmlinux.lds.h: add DWARF v5 sections Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 002/340] kvm: x86: replace kvm_spec_ctrl_test_value with runtime test on the host Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 003/340] debugfs: be more robust at handling improper input in debugfs_lookup() Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 004/340] debugfs: do not attempt to create a new file before the filesystem is initalized Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 005/340] kdb: Make memory allocations more robust Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 006/340] PCI: qcom: Use PHY_REFCLK_USE_PAD only for ipq8064 Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 007/340] PCI: Decline to resize resources if boot config must be preserved Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 008/340] virt: vbox: Do not use wait_event_interruptible when called from kernel context Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 009/340] bfq: Avoid false bfq queue merging Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 010/340] ALSA: usb-audio: Fix PCM buffer allocation in non-vmalloc mode Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 011/340] MIPS: vmlinux.lds.S: add missing PAGE_ALIGNED_DATA() section Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 012/340] random: fix the RNDRESEEDCRNG ioctl Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 013/340] ath10k: Fix error handling in case of CE pipe init failure Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 014/340] Bluetooth: btqcomsmd: Fix a resource leak in error handling paths in the probe function Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 015/340] Bluetooth: hci_uart: Fix a race for write_work scheduling Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 016/340] Bluetooth: Fix initializing response id after clearing struct Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 017/340] ARM: dts: exynos: correct PMIC interrupt trigger level on Artik 5 Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 018/340] ARM: dts: exynos: correct PMIC interrupt trigger level on Monk Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 019/340] ARM: dts: exynos: correct PMIC interrupt trigger level on Rinato Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 020/340] ARM: dts: exynos: correct PMIC interrupt trigger level on Spring Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 021/340] ARM: dts: exynos: correct PMIC interrupt trigger level on Arndale Octa Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 022/340] ARM: dts: exynos: correct PMIC interrupt trigger level on Odroid XU3 family Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 023/340] arm64: dts: exynos: correct PMIC interrupt trigger level on TM2 Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 024/340] arm64: dts: exynos: correct PMIC interrupt trigger level on Espresso Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 025/340] memory: mtk-smi: Fix PM usage counter unbalance in mtk_smi ops Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 026/340] bpf: Add bpf_patch_call_args prototype to include/linux/bpf.h Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 027/340] bpf: Avoid warning when re-casting __bpf_call_base into __bpf_call_base_args Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 028/340] arm64: dts: allwinner: A64: properly connect USB PHY to port 0 Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 029/340] arm64: dts: allwinner: H6: " Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 030/340] arm64: dts: allwinner: Drop non-removable from SoPine/LTS SD card Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 031/340] arm64: dts: allwinner: H6: Allow up to 150 MHz MMC bus frequency Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 032/340] arm64: dts: allwinner: A64: Limit MMC2 bus frequency to 150 MHz Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 033/340] cpufreq: brcmstb-avs-cpufreq: Free resources in error path Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 034/340] cpufreq: brcmstb-avs-cpufreq: Fix resource leaks in ->remove() Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 035/340] ACPICA: Fix exception code class checks Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 036/340] usb: gadget: u_audio: Free requests only after callback Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 037/340] Bluetooth: drop HCI device reference before return Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 038/340] Bluetooth: Put HCI device if inquiry procedure interrupts Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 039/340] memory: ti-aemif: Drop child node when jumping out loop Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 040/340] ARM: dts: Configure missing thermal interrupt for 4430 Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 041/340] usb: dwc2: Do not update data length if it is 0 on inbound transfers Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 042/340] usb: dwc2: Abort transaction after errors with unknown reason Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 043/340] usb: dwc2: Make "trimming xfer length" a debug message Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 044/340] staging: rtl8723bs: wifi_regd.c: Fix incorrect number of regulatory rules Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 045/340] ARM: dts: armada388-helios4: assign pinctrl to LEDs Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 046/340] ARM: dts: armada388-helios4: assign pinctrl to each fan Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 047/340] arm64: dts: armada-3720-turris-mox: rename u-boot mtd partition to a53-firmware Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 048/340] Bluetooth: btusb: Fix memory leak in btusb_mtk_wmt_recv Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 049/340] arm64: dts: msm8916: Fix reserved and rfsa nodes unit address Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 050/340] ARM: s3c: fix fiq for clang IAS Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 051/340] soc: aspeed: snoop: Add clock control logic Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 052/340] bpf_lru_list: Read double-checked variable once without lock Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 053/340] ath9k: fix data bus crash when setting nf_override via debugfs Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 054/340] ibmvnic: Set to CLOSED state even on error Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.4 055/340] bnxt_en: reverse order of TX disable and carrier off Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 056/340] xen/netback: fix spurious event detection for common event case Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 057/340] mac80211: fix potential overflow when multiplying to u32 integers Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 058/340] bpf: Fix bpf_fib_lookup helper MTU check for SKB ctx Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 059/340] tcp: fix SO_RCVLOWAT related hangs under mem pressure Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 060/340] net: axienet: Handle deferred probe on clock properly Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 061/340] cxgb4/chtls/cxgbit: Keeping the max ofld immediate data size same in cxgb4 and ulds Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 062/340] b43: N-PHY: Fix the update of coef for the PHY revision >= 3case Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 063/340] ibmvnic: add memory barrier to protect long term buffer Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 064/340] ibmvnic: skip send_request_unmap for timeout reset Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 065/340] net: amd-xgbe: Reset the PHY rx data path when mailbox command timeout Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 066/340] net: amd-xgbe: Fix NETDEV WATCHDOG transmit queue timeout warning Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 067/340] net: amd-xgbe: Reset link when the link never comes back Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 068/340] net: amd-xgbe: Fix network fluctuations when using 1G BELFUSE SFP Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 069/340] net: mvneta: Remove per-cpu queue mapping for Armada 3700 Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 070/340] fbdev: aty: SPARC64 requires FB_ATY_CT Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 071/340] drm/gma500: Fix error return code in psb_driver_load() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 072/340] gma500: clean up error handling in init Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 073/340] drm/fb-helper: Add missed unlocks in setcmap_legacy() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 074/340] crypto: sun4i-ss - linearize buffers content must be kept Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 075/340] crypto: sun4i-ss - fix kmap usage Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 076/340] crypto: arm64/aes-ce - really hide slower algos when faster ones are enabled Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 077/340] drm/amdgpu: Fix macro name _AMDGPU_TRACE_H_ in preprocessor if condition Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 078/340] MIPS: c-r4k: Fix section mismatch for loongson2_sc_init Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 079/340] MIPS: lantiq: Explicitly compare LTQ_EBU_PCC_ISTAT against 0 Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 080/340] media: i2c: ov5670: Fix PIXEL_RATE minimum value Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 081/340] media: imx: Unregister csc/scaler only if registered Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 082/340] media: imx: Fix csc/scaler unregister Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 083/340] media: camss: missing error code in msm_video_register() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 084/340] media: vsp1: Fix an error handling path in the probe function Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 085/340] media: em28xx: Fix use-after-free in em28xx_alloc_urbs Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 086/340] media: media/pci: Fix memleak in empress_init Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 087/340] media: tm6000: Fix memleak in tm6000_start_stream Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 088/340] media: aspeed: fix error return code in aspeed_video_setup_video() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 089/340] ASoC: cs42l56: fix up error handling in probe Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 090/340] evm: Fix memleak in init_desc Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 091/340] crypto: bcm - Rename struct device_private to bcm_device_private Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 092/340] drm/sun4i: tcon: fix inverted DCLK polarity Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 093/340] MIPS: properly stop .eh_frame generation Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 094/340] bsg: free the request before return error code Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 095/340] drm/amd/display: Fix 10/12 bpc setup in DCE output bit depth reduction Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 096/340] drm/amd/display: Fix HDMI deep color output for DCE 6-11 Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 097/340] media: software_node: Fix refcounts in software_node_get_next_child() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 098/340] media: lmedm04: Fix misuse of comma Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 099/340] media: qm1d1c0042: fix error return code in qm1d1c0042_init() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 100/340] media: cx25821: Fix a bug when reallocating some dma memory Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 101/340] media: pxa_camera: declare variable when DEBUG is defined Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 102/340] media: uvcvideo: Accept invalid bFormatIndex and bFrameIndex values Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 103/340] sched/eas: Dont update misfit status if the task is pinned Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 104/340] mtd: parser: imagetag: fix error codes in bcm963xx_parse_imagetag_partitions() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 105/340] crypto: talitos - Work around SEC6 ERRATA (AES-CTR mode data size error) Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 106/340] drm/nouveau: bail out of nouveau_channel_new if channel init fails Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 107/340] ata: ahci_brcm: Add back regulators management Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 108/340] ASoC: cpcap: fix microphone timeslot mask Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 109/340] mtd: parsers: afs: Fix freeing the part name memory in failure Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 110/340] f2fs: fix to avoid inconsistent quota data Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 111/340] drm/amdgpu: Prevent shift wrapping in amdgpu_read_mask() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 112/340] f2fs: fix a wrong condition in __submit_bio Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 113/340] Drivers: hv: vmbus: Avoid use-after-free in vmbus_onoffer_rescind() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 114/340] ASoC: SOF: debug: Fix a potential issue on string buffer termination Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.4 115/340] btrfs: clarify error returns values in __load_free_space_cache Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 116/340] hwrng: timeriomem - Fix cooldown period calculation Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 117/340] crypto: ecdh_helper - Ensure len >= secret.len in decode_key() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 118/340] ima: Free IMA measurement buffer on error Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 119/340] ima: Free IMA measurement buffer after kexec syscall Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 120/340] ASoC: simple-card-utils: Fix device module clock Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 121/340] fs/jfs: fix potential integer overflow on shift of a int Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 122/340] jffs2: fix use after free in jffs2_sum_write_data() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 123/340] ubifs: Fix memleak in ubifs_init_authentication Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 124/340] ubifs: Fix error return code in alloc_wbufs() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 125/340] capabilities: Dont allow writing ambiguous v3 file capabilities Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 126/340] HSI: Fix PM usage counter unbalance in ssi_hw_init Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 127/340] clk: meson: clk-pll: fix initializing the old rate (fallback) for a PLL Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 128/340] clk: meson: clk-pll: make "ret" a signed integer Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 129/340] clk: meson: clk-pll: propagate the error from meson_clk_pll_set_rate() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 130/340] selftests/powerpc: Make the test check in eeh-basic.sh posix compliant Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 131/340] quota: Fix memory leak when handling corrupted quota file Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 132/340] i2c: iproc: handle only slave interrupts which are enabled Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 133/340] i2c: iproc: update slave isr mask (ISR_MASK_SLAVE) Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 134/340] i2c: iproc: handle master read request Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 135/340] spi: cadence-quadspi: Abort read if dummy cycles required are too many Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 136/340] clk: sunxi-ng: h6: Fix CEC clock Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 137/340] HID: core: detect and skip invalid inputs to snto32() Greg Kroah-Hartman
2021-03-01 16:11 ` Greg Kroah-Hartman [this message]
2021-03-01 16:11 ` [PATCH 5.4 139/340] dmaengine: fsldma: Fix a resource leak in the remove function Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 140/340] dmaengine: fsldma: Fix a resource leak in an error handling path of the probe function Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 141/340] dmaengine: owl-dma: Fix a resource leak in the remove function Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 142/340] dmaengine: hsu: disable spurious interrupt Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 143/340] mfd: bd9571mwv: Use devm_mfd_add_devices() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 144/340] fdt: Properly handle "no-map" field in the memory region Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 145/340] of/fdt: Make sure no-map does not remove already reserved regions Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 146/340] power: reset: at91-sama5d2_shdwc: fix wkupdbc mask Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 147/340] rtc: s5m: select REGMAP_I2C Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 148/340] clocksource/drivers/ixp4xx: Select TIMER_OF when needed Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 149/340] clocksource/drivers/mxs_timer: Add missing semicolon when DEBUG is defined Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 150/340] RDMA/mlx5: Use the correct obj_id upon DEVX TIR creation Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 151/340] clk: sunxi-ng: h6: Fix clock divider range on some clocks Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 152/340] regulator: axp20x: Fix reference cout leak Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 153/340] certs: Fix blacklist flag type confusion Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 154/340] regulator: s5m8767: Fix reference count leak Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 155/340] spi: atmel: Put allocated master before return Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 156/340] regulator: s5m8767: Drop regulators OF node reference Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 157/340] regulator: core: Avoid debugfs: Directory ... already present! error Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 158/340] isofs: release buffer head before return Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 159/340] auxdisplay: ht16k33: Fix refresh rate handling Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 160/340] objtool: Fix error handling for STD/CLD warnings Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 161/340] objtool: Fix ".cold" section suffix check for newer versions of GCC Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 162/340] IB/umad: Return EIO in case of when device disassociated Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 163/340] IB/umad: Return EPOLLERR " Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 164/340] KVM: PPC: Make the VMX instruction emulation routines static Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 165/340] powerpc/47x: Disable 256k page size Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 166/340] powerpc/sstep: Fix incorrect return from analyze_instr() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 167/340] mmc: sdhci-sprd: Fix some resource leaks in the remove function Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 168/340] mmc: usdhi6rol0: Fix a resource leak in the error handling path of the probe Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 169/340] mmc: renesas_sdhi_internal_dmac: Fix DMA buffer alignment from 8 to 128-bytes Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 170/340] ARM: 9046/1: decompressor: Do not clear SCTLR.nTLSMD for ARMv7+ cores Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 171/340] i2c: qcom-geni: Store DMA mapping data in geni_i2c_dev struct Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 172/340] i2c: i2c-qcom-geni: Add shutdown callback for i2c Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 173/340] amba: Fix resource leak for drivers without .remove Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 174/340] IB/mlx5: Return appropriate error code instead of ENOMEM Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.4 175/340] IB/cm: Avoid a loop when device has 255 ports Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 176/340] tracepoint: Do not fail unregistering a probe due to memory failure Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 177/340] perf tools: Fix DSO filtering when not finding a map for a sampled address Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 178/340] perf vendor events arm64: Fix Ampere eMag event typo Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 179/340] RDMA/rxe: Fix coding error in rxe_recv.c Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 180/340] RDMA/rxe: Fix coding error in rxe_rcv_mcast_pkt Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 181/340] RDMA/rxe: Correct skb on loopback path Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 182/340] spi: stm32: properly handle 0 byte transfer Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 183/340] mfd: wm831x-auxadc: Prevent use after free in wm831x_auxadc_read_irq() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 184/340] powerpc/pseries/dlpar: handle ibm, configure-connector delay status Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 185/340] powerpc/8xx: Fix software emulation interrupt Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 186/340] clk: qcom: gcc-msm8998: Fix Alpha PLL type for all GPLLs Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 187/340] RDMA/hns: Fixed wrong judgments in the goto branch Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 188/340] RDMA/siw: Fix calculation of tx_valid_cpus size Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 189/340] RDMA/hns: Fix type of sq_signal_bits Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 190/340] spi: pxa2xx: Fix the controller numbering for Wildcat Point Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 191/340] regulator: qcom-rpmh: fix pm8009 ldo7 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 192/340] clk: aspeed: Fix APLL calculate formula from ast2600-A2 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 193/340] nfsd: register pernet ops last, unregister first Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 194/340] RDMA/hns: Fixes missing error code of CMDQ Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 195/340] Input: sur40 - fix an error code in sur40_probe() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 196/340] perf intel-pt: Fix missing CYC processing in PSB Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 197/340] perf intel-pt: Fix premature IPC Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 198/340] perf test: Fix unaligned access in sample parsing test Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 199/340] Input: elo - fix an error code in elo_connect() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 200/340] sparc64: only select COMPAT_BINFMT_ELF if BINFMT_ELF is set Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 201/340] misc: eeprom_93xx46: Fix module alias to enable module autoprobe Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 202/340] phy: rockchip-emmc: emmc_phy_init() always return 0 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 203/340] misc: eeprom_93xx46: Add module alias to avoid breaking support for non device tree users Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 204/340] soundwire: cadence: fix ACK/NAK handling Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 205/340] pwm: rockchip: rockchip_pwm_probe(): Remove superfluous clk_unprepare() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 206/340] VMCI: Use set_page_dirty_lock() when unregistering guest memory Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 207/340] PCI: Align checking of syscall user config accessors Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 208/340] mei: hbm: call mei_set_devstate() on hbm stop response Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 209/340] drm/msm/dsi: Correct io_start for MSM8994 (20nm PHY) Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 210/340] drm/msm/mdp5: Fix wait-for-commit for cmd panels Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 211/340] vfio/iommu_type1: Fix some sanity checks in detach group Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 212/340] ext4: fix potential htree index checksum corruption Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 213/340] nvmem: core: Fix a resource leak on error in nvmem_add_cells_from_of() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 214/340] nvmem: core: skip child nodes not matching binding Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 215/340] regmap: sdw: use _no_pm functions in regmap_read/write Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 216/340] i40e: Fix flow for IPv6 next header (extension header) Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 217/340] i40e: Add zero-initialization of AQ command structures Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 218/340] i40e: Fix overwriting flow control settings during driver loading Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 219/340] i40e: Fix addition of RX filters after enabling FW LLDP agent Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 220/340] i40e: Fix VFs not created Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 221/340] Take mmap lock in cacheflush syscall Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 222/340] i40e: Fix add TC filter for IPv6 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 223/340] vfio/type1: Use follow_pte() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 224/340] net/mlx4_core: Add missed mlx4_free_cmd_mailbox() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 225/340] vxlan: move debug check after netdev unregister Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 226/340] ocfs2: fix a use after free on error Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 227/340] mm/memory.c: fix potential pte_unmap_unlock pte error Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 228/340] mm/hugetlb: fix potential double free in hugetlb_register_node() error path Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 229/340] mm/compaction: fix misbehaviors of fast_find_migrateblock() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 230/340] r8169: fix jumbo packet handling on RTL8168e Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 231/340] arm64: Add missing ISB after invalidating TLB in __primary_switch Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 232/340] i2c: brcmstb: Fix brcmstd_send_i2c_cmd condition Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 233/340] mm/rmap: fix potential pte_unmap on an not mapped pte Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 234/340] scsi: bnx2fc: Fix Kconfig warning & CNIC build errors Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.4 235/340] blk-settings: align max_sectors on "logical_block_size" boundary Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 236/340] ACPI: property: Fix fwnode string properties matching Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 237/340] ACPI: configfs: add missing check after configfs_register_default_group() Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 238/340] HID: logitech-dj: add support for keyboard events in eQUAD step 4 Gaming Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 239/340] HID: wacom: Ignore attempts to overwrite the touch_max value from HID Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 240/340] Input: raydium_ts_i2c - do not send zero length Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 241/340] Input: xpad - add support for PowerA Enhanced Wired Controller for Xbox Series X|S Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 242/340] Input: joydev - prevent potential read overflow in ioctl Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 243/340] Input: i8042 - add ASUS Zenbook Flip to noselftest list Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 244/340] media: mceusb: Fix potential out-of-bounds shift Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 245/340] USB: serial: option: update interface mapping for ZTE P685M Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 246/340] usb: musb: Fix runtime PM race in musb_queue_resume_work Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 247/340] usb: dwc3: gadget: Fix setting of DEPCFG.bInterval_m1 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 248/340] usb: dwc3: gadget: Fix dep->interval for fullspeed interrupt Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 249/340] USB: serial: ftdi_sio: fix FTX sub-integer prescaler Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 250/340] USB: serial: mos7840: fix error code in mos7840_write() Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 251/340] USB: serial: mos7720: fix error code in mos7720_write() Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 252/340] ALSA: hda: Add another CometLake-H PCI ID Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 253/340] ALSA: hda/realtek: modify EAPD in the ALC886 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 254/340] Revert "bcache: Kill btree_io_wq" Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 255/340] bcache: Give btree_io_wq correct semantics again Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 256/340] bcache: Move journal work to new flush wq Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 257/340] drm/amd/display: Add vupdate_no_lock interrupts for DCN2.1 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 258/340] drm/amdgpu: Set reference clock to 100Mhz on Renoir (v2) Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 259/340] drm/nouveau/kms: handle mDP connectors Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 260/340] drm/sched: Cancel and flush all outstanding jobs before finish Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 261/340] erofs: initialized fields can only be observed after bit is set Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 262/340] tpm_tis: Fix check_locality for correct locality acquisition Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 263/340] tpm_tis: Clean up locality release Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 264/340] KEYS: trusted: Fix migratable=1 failing Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 265/340] btrfs: abort the transaction if we fail to inc ref in btrfs_copy_root Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 266/340] btrfs: fix reloc root leak with 0 ref reloc roots on recovery Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 267/340] btrfs: splice remaining dirty_bgs onto the transaction dirty bg list Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 268/340] btrfs: fix extent buffer leak on failure to copy root Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 269/340] crypto: arm64/sha - add missing module aliases Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 270/340] crypto: aesni - prevent misaligned buffers on the stack Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 271/340] crypto: sun4i-ss - checking sg length is not sufficient Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 272/340] crypto: sun4i-ss - IV register does not work on A10 and A13 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 273/340] crypto: sun4i-ss - handle BigEndian for cipher Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 274/340] crypto: sun4i-ss - initialize need_fallback Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 275/340] seccomp: Add missing return in non-void function Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 276/340] misc: rtsx: init of rts522a add OCP power off when no card is present Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 277/340] drivers/misc/vmw_vmci: restrict too big queue size in qp_host_alloc_queue Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 278/340] pstore: Fix typo in compression option name Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 279/340] dts64: mt7622: fix slow sd card access Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 280/340] staging/mt7621-dma: mtk-hsdma.c->hsdma-mt7621.c Greg Kroah-Hartman
2021-03-01 17:41   ` Ilya Lipnitskiy
2021-03-01 16:13 ` [PATCH 5.4 281/340] staging: gdm724x: Fix DMA from stack Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 282/340] staging: rtl8188eu: Add Edimax EW-7811UN V2 to device table Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 283/340] media: ipu3-cio2: Fix mbus_code processing in cio2_subdev_set_fmt() Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 284/340] x86/virt: Eat faults on VMXOFF in reboot flows Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 285/340] x86/reboot: Force all cpus to exit VMX root if VMX is supported Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 286/340] powerpc/prom: Fix "ibm,arch-vec-5-platform-support" scan Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 287/340] rcu: Pull deferred rcuog wake up to rcu_eqs_enter() callers Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 288/340] rcu/nocb: Perform deferred wake up before last idles need_resched() check Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 289/340] rcu/nocb: Trigger self-IPI on late deferred wake up before user resume Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 290/340] floppy: reintroduce O_NDELAY fix Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 291/340] arm64: kexec_file: fix memory leakage in create_dtb() when fdt_open_into() fails Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 292/340] arm64: uprobe: Return EOPNOTSUPP for AARCH32 instruction probing Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 293/340] watchdog: qcom: Remove incorrect usage of QCOM_WDT_ENABLE_IRQ Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 294/340] watchdog: mei_wdt: request stop on unregister Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.4 295/340] mtd: spi-nor: sfdp: Fix last erase region marking Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 296/340] mtd: spi-nor: sfdp: Fix wrong erase type bitmask for overlaid region Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 297/340] mtd: spi-nor: core: Fix erase type discovery " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 298/340] mtd: spi-nor: core: Add erase size check for erase command initialization Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 299/340] mtd: spi-nor: hisi-sfc: Put child node np on error path Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 300/340] fs/affs: release old buffer head " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 301/340] seq_file: document how per-entry resources are managed Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 302/340] x86: fix seq_file iteration for pat/memtype.c Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 303/340] hugetlb: fix update_and_free_page contig page struct assumption Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 304/340] hugetlb: fix copy_huge_page_from_user " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 305/340] arm64: Extend workaround for erratum 1024718 to all versions of Cortex-A55 Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 306/340] media: smipcie: fix interrupt handling and IR timeout Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 307/340] module: Ignore _GLOBAL_OFFSET_TABLE_ when warning for undefined symbols Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 308/340] mmc: sdhci-esdhc-imx: fix kernel panic when remove module Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 309/340] powerpc/32s: Add missing call to kuep_lock on syscall entry Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 310/340] spmi: spmi-pmic-arb: Fix hw_irq overflow Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 311/340] gpio: pcf857x: Fix missing first interrupt Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 312/340] printk: fix deadlock when kernel panic Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 313/340] cpufreq: intel_pstate: Get per-CPU max freq via MSR_HWP_CAPABILITIES if available Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 314/340] s390/vtime: fix inline assembly clobber list Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 315/340] virtio/s390: implement virtio-ccw revision 2 correctly Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 316/340] um: mm: check more comprehensively for stub changes Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 317/340] f2fs: fix out-of-repair __setattr_copy() Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 318/340] sparc32: fix a user-triggerable oops in clear_user() Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 319/340] spi: spi-synquacer: fix set_cs handling Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 320/340] gfs2: Dont skip dlm unlock if glock has an lvb Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 321/340] gfs2: Recursive gfs2_quota_hold in gfs2_iomap_end Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 322/340] dm: fix deadlock when swapping to encrypted device Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 323/340] dm writecache: fix writing beyond end of underlying device when shrinking Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 324/340] dm era: Recover committed writeset after crash Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 325/340] dm era: Verify the data block size hasnt changed Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 326/340] dm era: Fix bitset memory leaks Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 327/340] dm era: Use correct value size in equality function of writeset tree Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 328/340] dm era: Reinitialize bitset cache before digesting a new writeset Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 329/340] dm era: only resize metadata in preresume Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 330/340] drm/i915: Reject 446-480MHz HDMI clock on GLK Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 331/340] icmp: introduce helper for natd source address in network device context Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 332/340] gtp: use icmp_ndo_send helper Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 333/340] sunvnet: " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 334/340] xfrm: interface: " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 335/340] ipv6: icmp6: avoid indirect call for icmpv6_send() Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 336/340] ipv6: silence compilation warning for non-IPV6 builds Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 337/340] net: icmp: pass zeroed opts from icmp{,v6}_ndo_send before sending Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 338/340] net: sched: fix police ext initialization Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 339/340] dm era: Update in-core bitset after committing the metadata Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.4 340/340] net: qrtr: Fix memory leak in qrtr_tun_open Greg Kroah-Hartman
2021-03-02  6:42 ` [PATCH 5.4 000/340] 5.4.102-rc1 review Hanjun Guo
2021-03-02  6:48   ` Greg Kroah-Hartman
2021-03-02 12:31   ` Greg Kroah-Hartman
2021-03-02 12:56     ` Hanjun Guo
2021-03-03  8:11 ` Hanjun Guo
2021-03-04  9:26   ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210301161055.109143551@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bmt@zurich.ibm.com \
    --cc=jgg@nvidia.com \
    --cc=kamalheib1@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=yi.zhang@redhat.com \
    /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